0byt3m1n1
Path:
/
data
/
18
/
3
/
1
/
112
/
3653764
/
meta
/
4064454
/
mysql.backup
/
[
Home
]
File: geny_0.mysqlv113.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv113 Database: geny_0 -- ------------------------------------------------------ -- Server version 5.0.91 /*!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 `xe_action_forward` -- DROP TABLE IF EXISTS `xe_action_forward`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_action_forward` ( `act` varchar(80) NOT NULL, `module` varchar(60) NOT NULL, `type` varchar(15) NOT NULL, UNIQUE KEY `idx_foward` (`act`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_action_forward` -- LOCK TABLES `xe_action_forward` WRITE; /*!40000 ALTER TABLE `xe_action_forward` DISABLE KEYS */; INSERT INTO `xe_action_forward` VALUES ('rss','rss','view'),('atom','rss','view'),('IS','integration_search','view'); /*!40000 ALTER TABLE `xe_action_forward` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_addons` -- DROP TABLE IF EXISTS `xe_addons`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_addons` ( `addon` varchar(250) NOT NULL, `is_used` char(1) NOT NULL default 'Y', `is_used_m` char(1) NOT NULL default 'N', `is_fixed` char(1) NOT NULL default 'N', `extra_vars` text, `regdate` varchar(14) default NULL, PRIMARY KEY (`addon`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_addons` -- LOCK TABLES `xe_addons` WRITE; /*!40000 ALTER TABLE `xe_addons` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_addons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_addons_site` -- DROP TABLE IF EXISTS `xe_addons_site`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_addons_site` ( `site_srl` bigint(11) NOT NULL default '0', `addon` varchar(250) NOT NULL, `is_used` char(1) NOT NULL default 'Y', `is_used_m` char(1) NOT NULL default 'N', `extra_vars` text, `regdate` varchar(14) default NULL, UNIQUE KEY `unique_addon_site` (`site_srl`,`addon`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_addons_site` -- LOCK TABLES `xe_addons_site` WRITE; /*!40000 ALTER TABLE `xe_addons_site` DISABLE KEYS */; INSERT INTO `xe_addons_site` VALUES (0,'autolink','Y','N',NULL,'20150114171532'),(0,'blogapi','N','N',NULL,'20150114171532'),(0,'member_communication','Y','N',NULL,'20150114171532'),(0,'member_extra_info','Y','N',NULL,'20150114171532'),(0,'mobile','Y','N',NULL,'20150114171532'),(0,'resize_image','Y','N',NULL,'20150114171532'),(0,'openid_delegation_id','N','N',NULL,'20150114171532'),(0,'point_level_icon','N','N',NULL,'20150114171532'),(0,'adminlogging','N','N',NULL,'20150114183955'),(0,'captcha','N','N',NULL,'20150114183955'),(0,'captcha_member','N','N',NULL,'20150114183955'),(0,'counter','N','N',NULL,'20150114183955'),(0,'oembed','N','N',NULL,'20150114183955'); /*!40000 ALTER TABLE `xe_addons_site` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_admin_favorite` -- DROP TABLE IF EXISTS `xe_admin_favorite`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_admin_favorite` ( `admin_favorite_srl` bigint(11) NOT NULL, `site_srl` bigint(11) default '0', `module` varchar(80) default NULL, `type` varchar(30) default NULL, PRIMARY KEY (`admin_favorite_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_admin_favorite` -- LOCK TABLES `xe_admin_favorite` WRITE; /*!40000 ALTER TABLE `xe_admin_favorite` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_admin_favorite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_admin_log` -- DROP TABLE IF EXISTS `xe_admin_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_admin_log` ( `ipaddress` varchar(100) NOT NULL, `regdate` varchar(14) default NULL, `site_srl` bigint(11) default '0', `module` varchar(100) default NULL, `act` varchar(100) default NULL, `request_vars` text, KEY `idx_admin_ip` (`ipaddress`), KEY `idx_admin_date` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_admin_log` -- LOCK TABLES `xe_admin_log` WRITE; /*!40000 ALTER TABLE `xe_admin_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_admin_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_ai_installed_packages` -- DROP TABLE IF EXISTS `xe_ai_installed_packages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_ai_installed_packages` ( `package_srl` bigint(11) NOT NULL default '0', `version` varchar(255) default NULL, `current_version` varchar(255) default NULL, `need_update` char(1) default 'N', KEY `idx_package_srl` (`package_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_ai_installed_packages` -- LOCK TABLES `xe_ai_installed_packages` WRITE; /*!40000 ALTER TABLE `xe_ai_installed_packages` DISABLE KEYS */; INSERT INTO `xe_ai_installed_packages` VALUES (22716306,'1.1','1.1','N'),(22753353,'1.2','1.2','N'),(22017658,'1.3.7','1.3.7','N'),(20972639,'1.1','1.7','N'),(18910976,'0.1','1.7','N'),(18745485,'4.0','4.0','N'),(18378362,'0.2','1.7','N'),(18325662,'1.7.9','1.7.9','N'),(18324327,'0.1','1.7','N'),(18324266,'0.1','1.7','N'),(18324167,'1.7.1.1','1.7.2','N'); /*!40000 ALTER TABLE `xe_ai_installed_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_ai_remote_categories` -- DROP TABLE IF EXISTS `xe_ai_remote_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_ai_remote_categories` ( `category_srl` bigint(11) NOT NULL default '0', `parent_srl` bigint(11) NOT NULL default '0', `title` varchar(250) NOT NULL, `list_order` bigint(11) NOT NULL, PRIMARY KEY (`category_srl`), KEY `idx_parent_srl` (`parent_srl`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_ai_remote_categories` -- LOCK TABLES `xe_ai_remote_categories` WRITE; /*!40000 ALTER TABLE `xe_ai_remote_categories` DISABLE KEYS */; INSERT INTO `xe_ai_remote_categories` VALUES (18322977,18322919,'회원레벨 아이콘',15),(18904838,18322919,'에디터 스타일',14),(18322952,18322919,'위젯 스타일',13),(18322950,18322919,'위젯 스킨',12),(18994170,18322919,'모듈 모바일 스킨',11),(18322943,18322919,'모듈 스킨',10),(18994172,18322919,'모바일 레이아웃',9),(18322954,18322919,'레이아웃',8),(18322919,0,'스킨',7),(18631347,18322917,'단락에디터컴포넌트',6),(18322929,18322917,'에디터컴포넌트',5),(18322927,18322917,'위젯',4),(18322925,18322917,'애드온',3),(18322923,18322917,'모듈',2),(18322907,18322917,'XE 코어',1),(18322917,0,'프로그램',0); /*!40000 ALTER TABLE `xe_ai_remote_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_autoinstall_packages` -- DROP TABLE IF EXISTS `xe_autoinstall_packages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_autoinstall_packages` ( `package_srl` bigint(11) NOT NULL default '0', `category_srl` bigint(11) default '0', `path` varchar(250) NOT NULL, `have_instance` char(1) NOT NULL default 'N', `updatedate` varchar(14) default NULL, `latest_item_srl` bigint(11) NOT NULL default '0', `version` varchar(255) default NULL, UNIQUE KEY `unique_path` (`path`), KEY `idx_package_srl` (`package_srl`), KEY `idx_category_srl` (`category_srl`), KEY `idx_regdate` (`updatedate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_autoinstall_packages` -- LOCK TABLES `xe_autoinstall_packages` WRITE; /*!40000 ALTER TABLE `xe_autoinstall_packages` DISABLE KEYS */; INSERT INTO `xe_autoinstall_packages` VALUES (18324167,18322923,'./modules/board','N','20150117010141',21940502,'1.7.1.1'),(18324168,18322923,'./modules/homepage','N','20150116231405',21854391,'1.7.0.1'),(18324169,18322923,'./modules/issuetracker','N','20150117014338',21278648,'1.2.1'),(18324171,18322923,'./modules/livexe','N','20150116111847',19624726,'0.6'),(18324175,18322923,'./modules/material','N','20150116141243',18669818,'1.0'),(18324186,18322923,'./modules/textyle','N','20150116080526',21795348,'1.7.0'),(18324187,18322923,'./modules/textylehub','N','20150115172911',21795365,'1.7.0'),(18324188,18322923,'./modules/planet','N','20150115124501',21015994,'0.1.4'),(18324189,18322923,'./modules/referer_old','N','20150111194713',18325389,'0.15'),(18324191,18322923,'./modules/resource','N','20150116145953',21854259,'1.7.0'),(18324199,18322923,'./modules/tccommentnotify','N','20150117045549',18365815,'1.1.0'),(18324210,18322923,'./modules/wiki','N','20150116225105',21985871,'1.7.0.1'),(18324211,18322943,'./modules/board/skins/xe_board','N','20150116111636',18325569,'0.1'),(18324212,18322943,'./modules/board/skins/xe_default','N','20150117001009',18325513,'0.1'),(18324213,18322943,'./modules/editor/skins/dreditor','N','20150116080538',18865892,'1.3.0'),(18324214,18322943,'./modules/editor/skins/fckeditor','N','20150116112906',18325501,'0.1'),(18324221,18322943,'./modules/editor/skins/xquared','N','20150115062558',18325496,'0.1'),(18324225,18322943,'./modules/textyle/skins/wordPressDefault','N','20150115062634',18325484,'0.1'),(18324226,18322925,'./addons/keyword_link','N','20150115151616',18325653,'0.1'),(18324227,18322925,'./addons/member_join_extend','N','20150116181615',18325647,'0.1'),(18324228,18322925,'./addons/planet_bookmark','N','20150113230939',21017018,'0.1.1'),(18324233,18322925,'./addons/planet_todo','N','20150115153312',21016986,'0.1.1'),(18324241,18322925,'./addons/referer_old','N','20150109004318',18325632,'0.1'),(18324247,18322925,'./addons/tccommentnotify','N','20150117045549',18365845,'1.0'),(18324248,18322925,'./addons/wiki_link','N','20150112172242',21813902,'1.7.0'),(18324261,18322929,'./modules/editor/components/cc_license','N','20150115134733',18325227,'0.1'),(18324266,18322929,'./modules/editor/components/emoticon','N','20150116111752',18325232,'0.1'),(18324271,18322929,'./modules/editor/components/naver_map','N','20150116110333',18325239,'0.1'),(18324273,18322929,'./modules/editor/components/quotation','N','20150114152749',18325248,'0.1'),(18324280,18322929,'./modules/editor/components/photo_editor','N','20150116154044',18325257,'0.1'),(18324292,18322954,'./layouts/cafeXE','N','20150116231406',21802168,'1.7.0'),(18324297,18322954,'./layouts/ideation','N','20150114111700',18325198,'0.1'),(18324299,18322954,'./layouts/xe_official_v2','N','20150117023743',20391868,'1.0'),(18324320,18322927,'./widgets/archive_list','N','20150110140640',18325093,'0.1'),(18324321,18322927,'./widgets/calendar','N','20150117062038',20591626,'0.2'),(18324326,18322927,'./widgets/category','N','20150116141243',18325077,'0.1'),(18324327,18322927,'./widgets/counter_status','N','20150115162946',18325071,'0.1'),(18324328,18322927,'./widgets/DroArc_clock','N','20150112120009',18325065,'0.1'),(18324330,18322927,'./widgets/forum','N','20141227171215',18325054,'0.1'),(18324331,18322927,'./widgets/ideationBanner','N','20150116230938',18325042,'0.1'),(18324332,18322927,'./widgets/ideationPopular','N','20150116131651',18325026,'0.1'),(18324335,18322927,'./widgets/image_counter','N','20150117030435',19099243,'0.2'),(18324336,18322927,'./widgets/logged_members','N','20150116231406',18325004,'0.1'),(18324337,18322927,'./widgets/member_group','N','20150116231406',18324998,'0.1'),(18324338,18322927,'./widgets/navigator','N','20150117013311',21801528,'1.7.0'),(18324343,18322927,'./widgets/newest_comment','N','20150116234124',18324984,'0.1'),(18324344,18322927,'./widgets/newest_document','N','20150117051907',20893807,'1.0'),(18324345,18322927,'./widgets/newest_trackback','N','20141216023532',18324957,'0.1'),(18324346,18322927,'./widgets/planet_document','N','20150115170029',18327255,'0.2'),(18324348,18322927,'./widgets/rank_count','N','20150116103326',18324851,'1.5'),(18324352,18322927,'./widgets/rank_point','N','20150116032848',18324818,'1.0'),(18324353,18322927,'./widgets/rss_reader','N','20150114181507',18324791,'#7'),(18324355,18322927,'./widgets/site_info','N','20150117013324',21801496,'1.7.0'),(18324359,18322927,'./widgets/tab_newest_document','N','20150116233503',18324658,'0.1'),(18324360,18322927,'./widgets/tag_list','N','20150117013748',18324768,'0.1'),(18324361,18322927,'./widgets/webzine','N','20150115184027',18324711,'0.1'),(18324362,18322927,'./widgets/xeBanner','N','20150117063427',18324697,'0.1'),(18324391,18322950,'./widgets/content/skins/xeHome','N','20150116114438',18324681,'0.1'),(18324395,18322950,'./widgets/tab_newest_document/skins/ideationTab','N','20150116143945',18324647,'0.1'),(18324396,18322952,'./widgetstyles/colorbox','N','20150114210513',18324641,'0.1'),(18324398,18322952,'./widgetstyles/memo','N','20150116105425',18324622,'0.1'),(18324401,18322952,'./widgetstyles/postitWire','N','20150113184633',18324610,'0.1'),(18324402,18322952,'./widgetstyles/roundFace','N','20150116105433',18324603,'0.1'),(18324403,18322952,'./widgetstyles/roundWire','N','20150116170521',18324590,'0.1'),(18324404,18322952,'./widgetstyles/simpleRound','N','20150115213158',18324575,'0.1'),(18324405,18322952,'./widgetstyles/simpleSquare','N','20150115173743',18324565,'0.1'),(18324406,18322952,'./widgetstyles/simpleTitle','N','20150113184545',18324546,'0.1'),(18325662,18322907,'.','N','20150117073634',22754502,'1.7.9'),(18325755,18322927,'./widgets/popular_planet_document','N','20150115152631',18325772,'0.1'),(18325790,18322923,'./modules/ad','N','20150117063808',19741760,'0.5.2'),(18325791,18322927,'./widgets/lineadWidget','N','20150115214743',19739261,'0.8'),(18325803,18322929,'./modules/editor/components/code_highlighter','N','20150116150427',22272034,'1.3'),(18325813,18322925,'./addons/tag_relation','N','20150116220403',22274979,'1.4.1'),(18325941,18322923,'./modules/sms','N','20150116070404',18745231,'1.3.10'),(18325946,18322923,'./modules/minishop','N','20150116150842',22754398,'1.3.2'),(18325951,18322925,'./addons/sms_alert','N','20150111150050',18326173,'1.0'),(18325952,18322927,'./widgets/sms','N','20150108093448',18326180,'1.1'),(18325989,18322929,'./modules/editor/components/google_translate','N','20150114165100',18777700,'0.2'),(18326005,18322929,'./modules/editor/components/textbox','N','20150116111807',18326938,'0.1'),(18326011,18322925,'./addons/hidden_module','N','20150114134903',18337264,'0.3'),(18326030,18322923,'./modules/statistics','N','20150116220352',18327023,'1.0.1b'),(18326038,18322925,'./addons/statistics','N','20150116131654',18327083,'1.0.1b'),(18326351,18322925,'./addons/remove_id_search','N','20150115001336',18326429,'1.0'),(18326352,18322925,'./addons/guest_name','N','20150115000928',19010744,'1.1.2'),(18326353,18322925,'./addons/write_limit','N','20150115001032',18637861,'1.2.1'),(18326553,18322954,'./layouts/habile_layout','N','20141218030214',18330571,'1.3'),(18327285,18322954,'./layouts/bcptwta','N','20150109165258',18328111,'1.0'),(18327287,18322950,'./widgets/tag_list/skins/tagcloud','N','20150117003402',18328078,'1.0'),(18327419,18322954,'./layouts/mh_simple','N','20150109165328',18327611,'1.1'),(22245529,18322977,'./modules/point/icons/2sis_icon','N','20150117042144',22245577,'1'),(18327462,18322927,'./widgets/gagachat','N','20150116220207',22555267,'3.7'),(18327743,18322954,'./layouts/Treasurej_Heart_Note','N','20150114221102',19334770,'1.6'),(18327995,18322950,'./widgets/counter_status/skins/miznkiz_simple_counter','N','20150114234018',18339071,'0.1'),(18328243,18322927,'./widgets/CoolirisPlayer','N','20150114194902',18332482,'2.0'),(18328356,18322927,'./widgets/newest_medias','N','20150116100837',18330464,'v0.1'),(18328672,18322954,'./layouts/PXE_leaflet_lite','N','20150114233549',18339574,'1.02 Final'),(18328730,18322950,'./widgets/login_info/skins/treasurej_simple150px','N','20150115012928',18953730,'1.5.3'),(18330288,18322950,'./widgets/login_info/skins/sleepless_simple','N','20150106150509',18332123,'1.0.0'),(18330488,18322927,'./widgets/webzine/skins/LILY_GoodStyle','N','20150116230850',18333192,'1.0'),(18330513,18322950,'./widgets/tag_list/skins/treasurej_tagcloud','N','20150117030214',18778301,'1.2'),(18330814,18322954,'./layouts/messenger','N','20141210120221',18331384,'Messenger_v0.1'),(18331803,18322943,'./modules/board/skins/p_board_p','N','20150116140755',18845219,'3.2.0'),(18334573,18322952,'./widgetstyles/webslice','N','20150113184600',18338237,'0.0.1'),(18334938,18322923,'./modules/kin','N','20150116150451',21965762,'1.7.0'),(18334979,18322925,'./addons/popup','N','20150116103235',18335423,'0.1'),(18334980,18322925,'./addons/piclens','N','20150116050829',20168732,'1.5'),(18334989,18322925,'./addons/func_include','N','20150116110726',18336654,'v1.0'),(18334990,18322925,'./addons/entry','N','20150114140821',18685479,'1.2'),(18334996,18322923,'./modules/media','N','20150114020331',18336696,'v0.1'),(18335009,18322927,'./widgets/rnq_newest_document','N','20150116110726',18336745,'1.1.5'),(18335021,18322927,'./widgets/division','N','20150111003003',20582119,'1.1'),(18335028,18322950,'./widgets/login_info/skins/rnq_login','N','20141228032815',18337247,'v0.2'),(18335034,18322950,'./widgets/rnq_newest_document/skins/rnq_newest_integrate','N','20150116203659',18798607,'0.3.1'),(18335040,18322950,'./widgets/rnq_newest_document/skins/rnq_newest_default','N','20150116203653',18798214,'0.3'),(18335043,18322923,'./modules/nms','N','20150109234750',19520872,'0.9.0'),(18335048,18322927,'./widgets/nms_info','N','20150109234749',18349106,'0.1.3'),(18335090,18322943,'./modules/board/skins/xe_naradesign','N','20150116155858',18335100,'1.0'),(18335281,18322923,'./modules/join_extend','N','20150116103539',18988537,'0.5.3.4'),(18335356,18322943,'./modules/textyle/skins/corporate','N','20150111002304',18335357,'0.9'),(18335369,18322950,'./widgets/content/skins/naradesign','N','20150117002822',18335372,'0.3'),(18335382,18322950,'./widgets/login_info/skins/webmini','N','20150109001836',18336191,'3.1'),(18337279,18322950,'./widgets/rnq_newest_document/skins/rnq_newest_notice','N','20150116203647',18798196,'0.3'),(18338697,18322925,'./addons/uccup','N','20150110212205',18338747,'v2.3'),(18338699,18322943,'./modules/board/skins/xe_uccup','N','20150115142854',18338792,'v2.3'),(18342939,18322925,'./addons/comment_new','N','20150115001252',18670429,'1.1.1'),(18346921,18322927,'./widgets/randomchat','N','20150114222405',18517236,'1.2'),(18347510,18322954,'./layouts/aginet_official_v2','N','20141223185140',18575161,'2.0.7'),(18351409,18322923,'./modules/zzz_menu_new','N','20150117050944',21832040,'1.7.0'),(18354173,18322952,'./widgetstyles/sz_gradient','N','20150116221721',18354312,'0.1.0'),(18354463,18322977,'./modules/point/icons/lv','N','20141226200946',19013505,'0.2'),(18354979,18322977,'/ modules / point / icons','N','20150115113148',18355002,'SuddenAttack + 확장'),(18357476,18322954,'./layouts/xe_sunooDMLg','N','20150116174439',19462033,'1.0'),(18358588,18322927,'./widgets/newest_memo','N','20150112112727',18363998,'0.1'),(18360610,18322927,'./widgets/flowing_pictures','N','20150116011438',18648791,'1.1.7'),(18362403,18322954,'./layouts/xe_sunooDMRg','N','20150111002646',19462101,'1.0'),(18366133,18322943,'./modules/join_extend/skins','N','20150116023419',18366143,'1'),(18369597,18322925,'./addons/DisableDrag','N','20150112053208',19229654,'0.3'),(18378357,18322954,'./layouts/xe_cafe','N','20150116231407',21803889,'1.7.0'),(18378362,18322950,'./widgets/login_info/skins/default','N','20141225135116',20168245,'0.2'),(18381054,18322954,'./layouts/naver_photo_style','N','20150115171244',18429470,'1.2.1'),(18383233,18322954,'./layouts/Jungbok_layout_V3.0','N','20150108160713',18389790,'V3.0'),(18386463,18322943,'./modules/textyle/skins','N','20141226151034',19100013,'2.5'),(18388093,18322925,'./addons/bekmeProhibite','N','20150116165641',18388181,'1.0'),(18398352,18322943,'./modules/board/skins/xe_official_planner123','N','20150117070741',22592909,'4.3.0'),(18399622,18322977,'./modules/poin/954','N','20150115004455',18404551,'1.0.1'),(18409541,18322954,'./layouts/hankooktown2','N','20150111002557',19512809,'1.2.2'),(18409634,18322950,'./widgets/login_info/skins/hk','N','20150111002543',18547214,'0.4'),(18410867,18322923,'./modules/pointsend','N','20150116022651',22643085,'1.2.5.1'),(18410868,18322925,'./addons/member_pointsend','N','20150117041752',21227458,'0.2.2'),(18411910,18322950,'./widgets/newest_comment/skins','N','20150102130821',18413214,'1.0'),(18414428,18322954,'./layouts/Gom-e.net_Hankooktown2_Layout','N','20150112023712',18445386,'1.0.7'),(18419537,18322954,'./layouts/kindguyLayout(joins_200911_1)','N','20150110094144',18422597,'v.200911'),(18424676,18322954,'./layouts/gomenet_xe_official_v2','N','20150114215208',18426534,'1.0.1'),(18432183,18322954,'./layouts/kindguyLayout(munhwa_200911_1)','N','20141207235728',18432699,'v.200911'),(18432187,18322954,'./layouts/kindguyLayout(munhwa_200911_2)','N','20141129184249',18432723,'v.200911'),(18435775,18322927,'./widgets/level_point','N','20150116163753',22595479,'1.0'),(18447927,18322954,'./layouts/Gom2netLayoutEngland','N','20141231151649',18454140,'1.0.1'),(18448761,18322943,'./modules/board/skins/xe_official_hancoma_title_skin','N','20150117001916',18461302,'0.2'),(18454611,18322954,'./layouts/kindguyLayout(khan_200911_1)','N','20150109113413',18454709,'v.200911'),(18454629,18322954,'./layouts/kindguyLayout(khan_200911_2)','N','20150109105054',18454718,'v.200911'),(18459111,18322925,'./addons/addthis','N','20150115170639',18459913,'0.1'),(18510031,18322943,'./modules/textyle/skins/zirho','N','20150111144013',18569108,'0.0.1'),(18511514,18322925,'./addons/adult_keyword','N','20150115194224',22754386,'1.0'),(18512505,18322954,'./layouts/kindguyLayout(BlueN_200912_1)','N','20150113150702',18516495,'200912'),(18512506,18322954,'./layouts/kindguyLayout(BlueN_200912_2)','N','20150109114747',18516511,'200912'),(18527888,18322923,'./modules/oneban','N','20150114162553',18529981,'1.0'),(18536532,18322952,'./widgetstyles/xe_official','N','20150116224947',22754400,'1.0'),(18539546,18322925,'./addons/addvote','N','20150116213649',21244042,'1.0'),(18555205,18322950,'./widgets/counter_status/skins/sworld_counter','N','20150115151239',18591528,'0.1'),(18555654,18322952,'./widgetstyles/tingenara','N','20150116230813',18557124,'1'),(18561875,18322923,'./modules/smsontextyle','N','20150112103448',18569729,'1.0.1'),(18561895,18322927,'./widgets/sms_textyle','N','20150112191022',18569743,'1.0.1'),(18572882,18322954,'./layouts/xdom_v2','N','20150116141728',19595474,'2.5.2.4'),(18572883,18322950,'./widgets/login_info/skins/xdom_login_v2','N','20150116081623',19051343,'2.3.1'),(18577507,18322927,'./widgets/chat25','N','20150111182912',18587408,'0.0.1'),(18579525,18322950,'./widgets/login_info/skins/tingenaralogin','N','20150116140948',18587232,'1'),(18589320,18322923,'./modules/cashbook','N','20150115162928',19603368,'0.3.7'),(18591523,18322927,'./widgets/module_point','N','20150116222457',19298594,'0.2'),(18595500,18322943,'./modules/integration_search/skins/default_xgenesis','N','20150111002221',18596361,'0.1.1'),(18595504,18322954,'./layouts/xe_official_v2_xgenesis','N','20150116135009',18596408,'0.1.1'),(18595711,18322943,'./modules/communication/skins/name','N','20150110170023',18597241,'0.1'),(18604859,18322927,'./widgets/bannerWidget','N','20150117063512',19739272,'0.3'),(18606308,18322954,'./layouts/elkha_fge','N','20150116201353',18657582,'1.2'),(18606314,18322954,'./layouts/elkha_sky','N','20150115183824',19822870,'1.4.5'),(18606318,18322954,'./layouts/paper_layer','N','20150114025517',18611976,'1.0'),(18607436,18322923,'./modules/wizardxe','N','20150116162641',19150177,'0.0.6'),(18607444,18322927,'./widgets/gallery_frame','N','20150116215056',18619741,'0.0.2'),(18607471,18322927,'./widgets/bangbang_alltogether','N','20150110072031',18645219,'0.0.3'),(18607483,18322954,'./layouts/zirho_layout','N','20141229145354',18645390,'0.0.3'),(18608455,18322923,'./modules/keywordstatistics','N','20150114031114',18631041,'0.3'),(18608457,18322925,'./addons/keywordstatistics','N','20150114031115',18611543,'0.1'),(18610979,18322923,'./modules/msg_admin','N','20150115165557',18614159,'0.1'),(18612951,18322954,'./layouts/elkha_simple','N','20150114025531',18633735,'1.1'),(18617496,18322943,'./modules/textyle/skins/Viewfinder','N','20141222154734',18678663,'0.3'),(18618046,18322950,'./widgets/counter_status/skins/tingenara','N','20150117000511',18620661,'1'),(18621989,18322923,'./modules/gagafilemd5','N','20150114162556',18684166,'1.0'),(18626854,18322927,'./widgets/ota_convert','N','20150116092214',19230465,'0.2'),(18626856,18322943,'./modules/integration_search/skins/default_ota','N','20150106154237',19230489,'0.2'),(18627986,18322927,'./widgets/banner_script','N','20141231140358',18634779,'0.1'),(18631776,18322950,'./widgets/content/skins/official_board_style','N','20150116192118',18638860,'1.2'),(18631835,18322954,'./layouts/kindguyLayout(201001_Kindguy4_1_xe1.3.1.2)','N','20150107182016',18634134,'201001'),(18631838,18322954,'./layouts/kindguyLayout(201001_Kindguy4_2_xe1.3.1.2)','N','20141224230023',18634163,'201001'),(18632016,18322943,'./modules/board/skins/faq','N','20150116175333',18636828,'1.3'),(18634568,18322927,'./widgets/quick_menu','N','20150116133641',18638902,'0.1.0'),(18634632,18322927,'./widgets/lnb_menu','N','20150116170107',20558937,'0.2.0'),(18634838,18322954,'./layouts/vz_clear_blue','N','20150113211817',18635623,'0.2'),(18635216,18322950,'./widgets/login_info/skins/xgenesis_login','N','20150116164958',18638870,'0.1.0'),(18636930,18322927,'./widgets/MinionInXE','N','20150112230238',18835506,'1.4'),(18637860,18322954,'./layouts/xgenesis_official','N','20150116165056',19516685,'0.2.2'),(18640942,18322923,'./modules/pop_up','N','20150116211852',18646378,'0.0.4'),(18640943,18322925,'./addons/pop_up','N','20150117061011',19149746,'0.0.8'),(18642464,18322954,'./layouts/elkha_graystyle','N','20150116205932',19722768,'2.0.1'),(18642836,18322952,'./widgetstyles/gray_style','N','20150116205932',18826509,'1.2.1'),(18646646,18631347,'./modules/editor/skins/dreditor/drcomponents/iframe','N','20150114001323',18646655,'0.1'),(18647145,18322952,'./widgetstyles/mo_colorline','N','20150115175446',18654291,'0.3'),(18648969,18322925,'./addons/soo_for_muzik_player','N','20150115195811',19687129,'0.3.1'),(18649607,18322929,'./modules/editor/components/jowrney_logmap','N','20150115221138',19533339,'0.4.0'),(18649610,18322950,'./widgets/login_info/skins/2010_jowrney_release','N','20150116150405',18654744,'0.1.0'),(18649613,18322954,'./layouts/2010_jowrney','N','20150114173904',19060126,'0.2.5'),(18650492,18322954,'./layouts/elkha_sky2','N','20150116220028',18865308,'1.4.5'),(18650580,18322929,'./modules/editor/components/soo_naver_bookinfo','N','20150116050743',19044122,'0.3.1'),(18652557,18631347,'./modules/editor/skins/dreditor/drcomponents/code','N','20150116144325',18652761,'0.1'),(18655593,18322954,'./xe/layouts','N','20150114025551',18667484,'1.0'),(18662544,18322954,'./layouts/blooz_layout_ver3','N','20150116030646',18701665,'3.2'),(18663182,18322954,'./layouts/shx_chameleon','N','20150115150959',18668568,'0.1.1'),(18664319,18322925,'./addons/P3P','N','20150104090046',18668421,'1.0'),(18666669,18322923,'./modules/stopsmoking','N','20150108004330',19493136,'0.2.2'),(18669571,18322977,'./modules/point/icons/dark','N','20150116234259',18672429,'1.0'),(18673912,18322929,'./modules/editor/components/soo_google_map','N','20150117071037',22231835,'0.9'),(18677776,18322954,'./layouts/lay','N','20150115203435',18682153,'0.1'),(18678675,18322943,'./modules/textyle/skins/Emplode','N','20150111205142',18700716,'0.6'),(18679839,18322929,'./modules/editor/components/soo_naver_image','N','20150112041005',18690439,'1.0.2'),(18681809,18322925,'./addons/age_restrictions','N','20150113233021',18687595,'1.0'),(18682481,18322925,'./addons/soo_js_exif','N','20150114124307',18859459,'0.3.4'),(18682907,18322954,'./layouts/ueo','N','20150108112018',19051858,'0.2'),(18686122,18322943,'./modules/board/skins/elkha_xe_official','N','20150115142628',18687734,'1.0'),(18697182,18322927,'./widgets/calendar_plannerXE123','N','20150117003147',22592897,'4.3.0'),(18700386,18322954,'./layouts/koo','N','20150110110906',18707058,'0.1'),(18703085,18322954,'./layouts/jimseung_nate','N','20150113112111',18705555,'1.0'),(18703356,18322954,'./layouts/how','N','20141230140855',18707091,'0.1'),(18705012,18322954,'./layouts/layoutSkin(kindguy5.1_xe1.4.0.5)','N','20150116195254',18708750,'201002'),(18705013,18322954,'./layouts/layoutSkin(kindguy5.2_xe1.4.0.5)','N','20150116134407',18708767,'201002'),(18706109,18322954,'./layouts/jimseung_biz','N','20141224164415',18711864,'0.1'),(18706113,18322954,'./layouts/jimseung_simplesub','N','20141205153802',18709461,'1'),(18712555,18322954,'./layouts/nom','N','20150109173845',18712759,'0.1'),(18712640,18322927,'./widgets/JW_player','N','20150116015930',18712773,'1.0'),(18714842,18322954,'./layouts/eond_portal_main_2col_right','N','20150116130739',21776053,'0.7'),(18716138,18322954,'./layouts/bom','N','20150106213346',18722236,'0.1'),(18716480,18322954,'./layouts/voo','N','20150114025309',18722243,'0.1'),(18717385,18322925,'./addons/music24','N','20150116235048',18722175,'1.0.0'),(18722759,18322954,'./layouts/xe_sunooEmLg','N','20150115160156',19462122,'1.0'),(18730576,18322929,'./modules/editor/components/interpark_book_search','N','20150113085747',18740294,'0.1'),(18731809,18322943,'./modules/board/skins/loser_guestbook','N','20150113043804',19235463,'0.1'),(18735942,18322954,'./layouts/mediaOn','N','20150116143729',18746917,'1.02'),(18739967,18322950,'widgets/content/skins/YGH_line','N','20150116164617',18741565,'0.1'),(18745485,18322923,'./modules/syndication','N','20150116202515',22754349,'4.0'),(18748689,18322954,'./layouts/daerew_v4_layout','N','20150114125718',18926143,'1.2'),(18750254,18322950,'./widgets/login_info/skins/daerew_v4_login','N','20150114133537',18751630,'1.0'),(18766685,18322954,'./layouts/elkha_graystyle2_lite','N','20150116105351',18844159,'1.0.3'),(18766699,18322943,'./modules/board/skins/quiet_board','N','20150115142619',18766890,'2.3'),(18766704,18322925,'./addons/member_layer_config','N','20150109184738',18766875,'1.1'),(18773076,18322923,'./modules/blogshop','N','20150116150842',18920619,'1.1'),(18773077,18631347,'./modules/editor/skins/dreditor/drcomponents/blogshop_writer','N','20150116150842',18920604,'1.1'),(18775186,18322950,'xe/modules/member/skins/default','N','20150117060855',18784334,'0.2'),(18777712,18322925,'./addons/add_document','N','20150115104702',18794485,'0.1.1'),(18779239,18322925,'./addons/daumview_vote','N','20150113133116',18898435,'0.5.5'),(18790298,18322925,'./addon/hellomaster','N','20150117045429',18794783,'1.0.0'),(18790924,18322954,'./layouts/xe_sunooEmRg','N','20150112193251',19462147,'1.0'),(18800584,18322923,'./modules/sboard','N','20150116214145',18878072,'2.1.0'),(18802611,18322950,'./widgets/content/skins/daerew_webzine_notice','N','20150115102956',18810316,'1.0'),(18802619,18322950,'./widgets/counter_status/skins/daerew_counter','N','20150116020359',19433478,'1.1'),(18809955,18322943,'./modules/editor/skins/tinyMCE','N','20150116030323',18810260,'1.4'),(18818977,18322954,'./layouts/blackcity','N','20150116160703',18832088,'1.0'),(18827207,18322950,'./widgets/login_info/skins/git_login_simple','N','20150116164753',18993961,'2.0'),(18832037,18322954,'./layouts/rom','N','20150114025333',18837238,'0.1'),(18832352,18322923,'/editer/skins','N','20150106132200',18838645,'1.0'),(18835470,18322927,'./widgets/splanner','N','20150116150133',18878338,'0.3.0'),(18846103,18322954,'./layouts/SORRENT_LAYOUT_RELEASE','N','20150113054824',18851320,'1.0'),(18846109,18322950,'./widgets/login_info/skins/SORRENT_LOGIN','N','20150115165352',18851330,'1.0'),(18849332,18322954,'./layouts/layout_skin(xenara1.1_xe1.4.0.10)','N','20150108154221',18853151,'201004'),(18852198,18322952,'./widgetstyle','N','20150113182940',18853308,'1.0.0'),(18853350,18322925,'./addons/member_join_captcha','N','20150116165238',18855317,'0.1.4'),(18855088,18322954,'./layouts/elkha_dr4','N','20150114125638',19703575,'1.0.2'),(18864982,18322977,'./modules/point/icons/cs_level','N','20150116234242',18866619,'0.1a'),(18866481,18322954,'./layouts/Treasurej_Lifestyle','N','20150116062703',21971882,'1.1'),(18867310,18322923,'./modules/project','N','20150115142552',21278683,'1.3.1'),(18877427,18322954,'./layouts/Treasurej_Craftwork','N','20150114024623',19032188,'1.0.1'),(18882151,18322925,'./addons/facebook_social','N','20150115220637',18882152,'0.1'),(18900548,18322954,'./layouts/layout_skin(kindguy1.0_type1_xe1.4.1.1)','N','20150114025215',18901309,'201005'),(18900551,18322954,'./layouts/layout_skin(kindguy1.1_type2_xe1.4.1.1)','N','20150114015006',18901322,'201005'),(18904767,18322977,'./modules/point/icons/raycity_m','N','20150113003646',18908827,'0.1v'),(18904819,18322977,'./modules/point/icons/raycity_f','N','20150108020058',18908837,'0.1v'),(18905882,18322923,'./modules/loginlog','N','20150117060443',22754452,'0.5.1'),(18910976,18904838,'./modules/editor/styles/dreditor','N','20150105093020',18910977,'0.1'),(18915805,18322943,'./modules/textyle/skins/babyBlack','N','20150116152100',18918781,'v0.1'),(18917848,18322954,'./layouts/xeVector','N','20150107141242',18918526,'0.2'),(18929288,18322954,'./layouts/mcube','N','20150106062555',18957849,'0.2'),(18929292,18322923,'./modules/mcubeimg','N','20150116200813',18983143,'0.3'),(18939397,18322950,'./widgets/login_info/skins/kan_login','N','20150108220914',18948357,'0.1'),(18943118,18322943,'./modules/bodex/skins','N','20141216221640',18953950,'완성버전'),(18953963,18322943,'./modules/board/skins/xe_official_sky','N','20150115144535',18971884,'1.2'),(18956310,18322923,'./modules/iconshop','N','20150116210517',18999633,'0.4'),(18956315,18322925,'./addons/member_icon_print','N','20150116204736',18968140,'0.3'),(18957505,18322927,'./widgets/cu3er','N','20150115174957',18983161,'0.2'),(18959079,18322954,'./layouts/layoutskin_wave_blue','N','20150115202526',21382225,'1.1.0'),(18968288,18322954,'./layouts/kinesis_sitelist','N','20150116222815',19348039,'0.1.1'),(18975451,18322954,'./layouts/layout_skin(kindguy5.0_type2_xe1.4.1.1)','N','20141227172123',18981166,'201006'),(18975452,18322954,'./layouts/layout_skin(kindguy5.1_type2_xe1.4.1.1)','N','20150107131215',18981176,'201006'),(18980346,18322943,'./modules/board/skins/sejin7940_board','N','20150117013909',20120497,'3.7'),(18982154,18322925,'./addons/addfooter','N','20150115222137',18983942,'0.2'),(18982156,18322925,'./addons/additional_mid','N','20150109004110',18983989,'0.2'),(18982164,18322925,'./addons/header_editor','N','20150113115053',18984012,'0.3'),(18982175,18322925,'./addons/id_rejection','N','20150113194805',18984037,'0.2'),(18982191,18322925,'./addons/meta_add','N','20150109233436',19814958,'0.2.2'),(18982192,18322925,'./addons/q_emphasis','N','20150109004119',18984109,'0.1'),(18982195,18322925,'./addons/soo_add_content','N','20150116201157',22651867,'0.5'),(18982196,18322925,'./addons/soo_autolang','N','20150115190109',19687115,'1.0.3'),(18982221,18322925,'./addons/soo_parking','N','20150117024627',20367602,'0.2.2'),(18990092,18322925,'./addons/IEblock','N','20141217130720',18993329,'0.1'),(18990133,18322925,'./addons/referercheck','N','20150115200143',19009627,'2.1'),(18990588,18322925,'./addons/soo_mcrblog_link','N','20150116151728',21924371,'1.2.14'),(18994748,18904838,'./modules/editor/components/emoticon/tpl/images/pink','N','20150115142814',18995710,'1.0'),(18995899,18322952,'./widgetstyles/sorrent_simplebox','N','20150116105321',18998803,'0.1'),(18997142,18322977,'./modules/point/icons/300','N','20150103023710',18998204,'1.0'),(18997930,18322923,'./modules/coupon','N','20150116034147',21627586,'1.0'),(18998734,18994172,'./m.layouts/naverstyle','N','20150116112004',19000655,'1.0'),(18999302,18322950,'./widgets/login_info/skins/kan_login_v2','N','20141206064714',19002080,'0.1'),(19009872,18904838,'./modules/editor/components/emoticon/tpl/images/congcon','N','20150116111940',19010544,'1.0'),(19015265,18322977,'./modules/point/icons/cool','N','20141221011757',19026346,'0.1v'),(19015269,18322977,'./modules/point/icons/CA_L_Mark','N','20150113073328',19026360,'0.1v'),(19018202,18322943,'./modules/board/skins/simple_blue','N','20150115190520',19023717,'1.0'),(19020313,18322943,'./modules/board/skins/pastel_light_purple','N','20150113211846',19028626,'1.0'),(19024107,18322923,'./modules/lottery','N','20150116172712',19027139,'0.1'),(19027281,18322950,'./widgets/attendance_check/skins/sky_next_line','N','20150112131743',19029151,'1'),(19030767,18322950,'./widgets/tab_newest_document/skins/tab_sky','N','20150111181013',19039476,'0.2'),(19030768,18322943,'./modules/attendance/skins/sky_at_board','N','20150115123831',19038444,'1'),(19031365,18322954,'./layouts/elkha_neutral','N','20150116213801',20692034,'0.5'),(19032971,18322954,'./layouts/Treasurej_Craftwork_C','N','20150114024636',19038047,'1.0.1'),(19034752,18322954,'./layouts/elkha_x610','N','20150110223247',19072093,'0.1'),(19044000,18322954,'./layouts/kom','N','20150107092805',19050135,'1.0'),(19044001,18322950,'./widgets/login_info/skins/tingenara','N','20150116140401',19050124,'1.0'),(19049200,18322925,'./addons/domain_check','N','20141220002214',19050476,'0.2'),(19050369,18322954,'./layouts/crom_fixy_layout_private','N','20150116232018',19053826,'1.0'),(19051939,18322954,'./layouts/zom','N','20150114032638',19087062,'0.2'),(19056755,18994170,'./modules/board/m.skins/xe_official_planner123','N','20150117070858',22592881,'4.3.0'),(19060125,18994172,'./m.layouts/2010_jowrney_mobile','N','20150117052739',19063585,'0.1.3'),(19060827,18322954,'./layouts/xom','N','20150108112009',19092257,'0.2'),(19064264,18322977,'./modules/point/icons/getam','N','20150113003637',19064959,'0.1a'),(19064410,18322977,'./modules/point/icons/simple_TS','N','20150111232715',19064414,'1.0'),(19068106,18322977,'./modules/point/icons/nova2','N','20150113073058',19068107,'0.1a'),(19069946,18322925,'./addons/cookie-free_domains','N','20141118134906',19070012,'1.0'),(19071245,18322950,'./widgets/point_status/skins/cloverworld_skin','N','20141231184759',19071386,'1.0.0.0'),(19073125,18322954,'./layouts/fsfsdas_neutral','N','20150110224356',19848942,'0.4.4'),(19073195,18322923,'./modules/krzip_popup','N','20150116221614',19073196,'0.1'),(19073227,18322943,'./modules/member/skins/default_krzip','N','20150113164743',19073228,'0.1'),(19076083,18322927,'./widgets/sayradio','N','20150115085900',19077336,'1.0.1'),(19077792,18322927,'./widgets/twitter_follow','N','20150108141142',19077793,'1.0'),(19080637,18322950,'./widgets/rank_point/skins/elkha','N','20150115143927',19080640,'0.1'),(19081557,18322950,'./widgets/newest_document/skins/layoutskin_webzine_v2','N','20150116231000',21596748,'1.2'),(19081914,18322925,'./addons/tweet_button','N','20150111153524',19083524,'0.1'),(21127741,18322927,'./widgets/contentextended','N','20150116235851',21189359,'2.45'),(19088764,18322954,'./layouts/crom_black_box_layout','N','20150114213603',19089573,'1.0'),(19090619,18322954,'./layouts/nabul2_milate_8T','N','20150110144238',19092504,'2.0'),(19097462,18322954,'./layouts/pb','N','20150104005650',19125110,'1.2'),(19098862,18322954,'./layouts/crom_groove_eco_private','N','20150114024855',19099350,'1.0'),(19099015,18322954,'./layouts/ure','N','20141227152730',19099016,'0.1'),(19100570,18322954,'./layouts/PXE_koi','N','20150116013230',19504533,'1.0.1'),(19109313,18322927,'./widgets/content_specificdoc','N','20150114105055',19109314,'0.2'),(19116278,18322954,'./layouts/modern_line','N','20150116215547',19135412,'1.0'),(19122280,18322952,'./widgets/widgetstyles','N','20150113184434',19122812,'1.0.0'),(19125571,18322943,'./moudles/board/skins','N','20150111031359',19128667,'v2'),(19130198,18322923,'./modules/analytics','N','20150117004103',22104216,'0.3.0'),(19130808,18322927,'./widgets/analytics_flash_counter','N','20150116234926',19157494,'0.2'),(19133209,18322927,'./widgets/newest_document_category','N','20150116163607',19134377,'0.1'),(19133654,18322954,'./layouts/Rebirth_A','N','20150114203808',19224091,'1.1.2'),(19135133,18322954,'./layouts/seven','N','20150115112835',19955250,'1.2'),(19135768,18322950,'./widgets/newest_document/skins/factory_basic_2','N','20150105003515',19135769,'2.0'),(19136412,18322950,'./widgets/newest_comment/skins/factory_basic_2','N','20150108213906',19136413,'2.0'),(19137447,18322925,'./addons/rainbow_link','N','20150116092038',19431548,'0.3'),(19138636,18322954,'./layouts/xenoriter_simple','N','20150113091319',19138637,'1.0'),(19141813,18322950,'./widgets/webzine/skins','N','20150115183950',19141814,'1.0'),(19145884,18322925,'./addons/always_follower','N','20150114232946',19503998,'1.1'),(19157569,18322925,'./addons/google_analytics','N','20150115125438',19157571,'1.0.0'),(19178969,18322954,'./layouts/xe_official_v2_TmaKing','N','20150116134954',19186638,'0.1.1'),(19182698,18322943,'./modules/board/skins/new_faq','N','20150117023027',20467493,'2.1'),(19187623,18322925,'./addons/refhide','N','20141125031611',19191147,'0.1.1'),(19197538,18322950,'./modules/editor/skins/webhard','N','20150116071926',19291157,'0.2'),(19197549,18322943,'./modules/board/skins/webhard','N','20150115142528',19291163,'0.2'),(19201015,18322954,'./layouts/kinesis_cs01f','N','20150108190641',19201021,'1.0.1'),(19201082,18322923,'./modules/mail_m9','N','20150116210435',19201083,'0.1'),(19202124,18322923,'./modules/lunar','N','20150111001430',19213083,'0.1.1'),(19202128,18322943,'./modules/member/skins/default(lunar)','N','20150111001430',19467792,'0.3'),(19202617,18322954,'./layouts/gom2net_layout','N','20141221193544',19204527,'1.0.2'),(19202629,18322925,'./addons/webfontface','N','20150115171007',19206513,'0.1'),(19208301,18322927,'./widgets/coinslider','N','20150116202052',20182294,'1.5'),(19212262,18322923,'./modules/lucene','N','20150109161943',19315303,'1.2'),(19213125,18322927,'./widgets/solarlunar','N','20150111003211',19213126,'0.1'),(19218468,18322927,'./widgets/birthday','N','20150107003855',19218473,'0.1'),(19219093,18322954,'./layouts/kia','N','20150110225055',19219094,'0.1'),(19219428,18322927,'./widgets/srchat','N','20150116195132',22754137,'219.45'),(19226818,18322954,'./layouts/gom2net_2nd_layout','N','20150115202826',19273763,'2.0.6'),(21344825,18322977,'./modules/point/icons/level','N','20150116212531',21360732,'2.0'),(19230703,18322954,'./layouts/eond_official','N','20150116163007',21382865,'1.4.1'),(19231437,18322950,'./widgets/planet_document/skins/eond','N','20150114021652',19283934,'1.0'),(19231709,18322952,'./widgetstyles/eond_webzine','N','20150116163551',19231710,'0.2'),(19231756,18322952,'./widgetstyles/eond_doubleline','N','20150115173511',19231762,'0.1'),(19232784,18322954,'./layouts/nabul2_Wishful','N','20150111040212',19232785,'1.0'),(19234197,18322954,'./layouts/eond_mynote','N','20150116130936',21723208,'1.4.4'),(19235403,18322943,'./modules/board/skins/eond_board','N','20150116181627',19235419,'0.2'),(19235552,18322950,'./widgets/login_info/skins/eond_mynote','N','20150116130937',21651021,'0.8'),(19235579,18322950,'./widgets/counter_status/skins/mynote','N','20150116130937',19252856,'0.1'),(19248816,18322954,'./layouts/xe_official_v2_Toyou','N','20150115173238',19258583,'c'),(19260194,18322927,'./widgets/contentslider','N','20150116175148',20199435,'2.1.1'),(19270268,18322950,'./widgets/bgw_menu/skins/naradesign','N','20150116224229',19270269,'0.1'),(19271512,18322950,'./widgets/point_status/skins/eond_official_login','N','20150113153519',19271513,'0.1'),(19274574,18322925,'./addons/a_soo_wikidoc_pointfixer','N','20150111231751',19274579,'1'),(19280154,18322954,'./layouts/kinesis_pl001f','N','20141215003444',19280155,'1.0'),(19283251,18322954,'./layouts/gom2net_3rd_layout','N','20150114013913',19283257,'3.0.1'),(19285120,18322943,'./modules/board/skins/win_guestbook','N','20150116183156',19295125,'0.5'),(19293487,18322925,'./addons/soo_mobile_top','N','20150110224859',20892008,'3'),(19299608,18322977,'./modules/point/icons/ToYou_level','N','20150110203305',19299609,'ToYou_level_icon v1.'),(19302110,18322954,'./layouts/gardenoforchids','N','20141224110442',19302111,'1.0'),(19306395,18322925,'./addons/shortcut','N','20150111231743',19306492,'0.9.9.2'),(19306873,18904838,'./modules/editor/components/emoticon/tpl/images/hicon','N','20150116112113',19310220,'1.0.0'),(19310933,18322927,'./widgets/xclient','N','20150116162031',19660872,'1.2.0'),(19320728,18322954,'./layouts/darkdream','N','20141230140701',19320733,'1.0'),(19322818,18322954,'./layouts/darkgrid','N','20150108091431',19322819,'1.0'),(19323693,18322923,'./modules/antiaccess','N','20150115111616',20181898,'1.0.3.1'),(19325680,18322923,'./modules/pipingxe','N','20150117014116',19546936,'1.0.5'),(19330518,18322927,'./widgets/tocplus','N','20150116142102',19348560,'0.2'),(19330741,18322950,'./widgets/tab_newest_document/skins/colorful','N','20150116103524',19330742,'1.0'),(19336589,18322925,'./addons/soo_block_UA','N','20141206080710',19336590,'0.1'),(19340331,18322954,'./layouts/CN_No1','N','20141230140429',19344956,'1.0.1'),(19344633,18322943,'./modules/member/skins','N','20150116214633',19349355,'1.0.0'),(19346257,18322927,'./widgets/googlesearch','N','20150115144642',19349099,'1.0.1'),(19348911,18322943,'./modules/board/skins/simpleborder_guestbook','N','20150115190507',19356183,'1.2'),(19349000,18322943,'./modules/board/skins/xe_board_extended','N','20150116170743',19349001,'1.0'),(19351727,18322954,'./layouts/crom_eco','N','20150114024104',19351728,'1.0'),(19353209,18322950,'./widgets/tab_newest_document/skins/tab_flash','N','20150113154002',19353210,'1.0'),(19355038,18322950,'./widgets/googlesearch/skin/multi_box','N','20150115144642',19355039,'1.0'),(19355511,18904838,'./modules/editor/skins/simple_editor','N','20150115150206',19355526,'1.0'),(19355521,18322950,'./widgets/googlesearch/skin/translate','N','20150107014538',19355602,'1.0'),(19360170,18322954,'./layouts/layout_skin(xenara_v1.0_type1_xe1.4.4.1)','N','20150114110405',19360187,'201010'),(19360171,18322954,'./layouts/layout_skin(xenara_v1.1_type3_xe1.4.4.1)','N','20141228143916',19360205,'201010'),(19426823,18322943,'./modules/poll/skins/clevis_poll','N','20150116154704',19440072,'0.3'),(19428586,18322954,'./layouts/fullmetal_by_daramkun','N','20141230140401',19432660,'1.0.0'),(19431275,18322943,'./module/board/skins','N','20150111002040',19432793,'0.2'),(19431519,18322925,'./addons/favicon','N','20150114203044',19434038,'1.1'),(19433415,18322925,'./addons/jquery_external_load','N','20150115143314',22674018,'2.0'),(19440527,18322954,'./layouts/CN_No2','N','20150114024210',19440528,'1.0.1'),(19442769,18322925,'./addons/sex_restrictions','N','20150115014705',19455388,'0.1.1'),(19456847,18322977,'modules/point/icons','N','20150107192314',19456896,'0.2'),(19456969,18322954,'./layouts/impress-06','N','20141228143811',19464583,'1.0.1'),(19458868,18322925,'./addons/soo_feed_delay','N','20150111160650',19458869,'0.1'),(19462008,18322927,'./widgets/login_sunoo','N','20150117013441',19462009,'1.0'),(19462173,18322954,'./layouts/xe_sunooNSLg','N','20150111002615',19462174,'1.0'),(19462195,18322954,'./layouts/xe_sunooWALg','N','20150111184035',19462196,'1.0'),(19473533,18322943,'./modules/integration_search/skins/xgenesis_official','N','20150113145135',19473716,'0.1.0'),(19476930,18322927,'./widgets/stopsmoking_status','N','20150108004331',19476931,'0.1.0'),(19491937,18322954,'./layouts/xe_sunooTALg','N','20150114230449',19491938,'1.0'),(19497436,18322923,'./modules/analysis','N','20150106210018',19528063,'0.1.2'),(19503269,18322925,'./addons/analysis','N','20150106210018',19527972,'0.1.2'),(19506416,18322954,'./layouts/PXE_clio','N','20150117002227',19506418,'1.1'),(19509849,18322954,'./layouts/hankooktown','N','20150111002543',19509864,'1.0'),(19510234,18322954,'./layouts/gallery_layout','N','20150117012056',19532739,'0.2'),(19510889,18322923,'./modules/portalpoint','N','20150116131050',19741258,'1.2'),(19512714,18322954,'./layouts/heaven','N','20150114012134',19514431,'Alpha'),(19513447,18322925,'./addons/sns_linker_lite','N','20150116132759',22754189,'1.1'),(19513978,18322954,'./layouts/layout_photoGalleryA_Free','N','20150116163857',19514630,'1.0'),(19514688,18322927,'./widgets/xgenesis_login','N','20150116165055',19539957,'0.1.1'),(19515289,18322927,'./widgets/minion4','N','20150113173342',19635737,'2.0.1'),(19515672,18322954,'./layouts/xe_sunooBCLg','N','20150108100725',19515673,'1.0'),(19518187,18322923,'./modules/socialxe','N','20150117030408',22123379,'1.0.11'),(19518188,18322923,'./modules/socialxeserver','N','20150116214853',22120897,'1.0.11'),(19518196,18322925,'./addons/socialxe_helper','N','20150117030408',20361435,'1.0.6'),(19518201,18322927,'./widgets/socialxe_comment','N','20150117030408',20361452,'1.0.8'),(19518204,18322927,'./widgets/socialxe_info','N','20150116174533',19679127,'1.0.6'),(19519171,18322950,'./widgets/tab_newest_document/skins/xe_official','N','20150115144601',19519369,'xe_official'),(19519182,18322923,'./modules/aroundmap','N','20150116152349',19519377,'0.2'),(19519186,18322925,'./addons/qrcode','N','20150115220617',19528193,'0.2'),(19519188,18322923,'./modules/rssboard','N','20150115114836',19539111,'0.3'),(19519235,18322923,'./modules/sphinx','N','20150111160412',19519336,'0.2'),(19522899,18322923,'./modules/bannermgm','N','20150117063948',19523059,'0.1'),(19522900,18322927,'./widgets/bannermgm_widget','N','20150117063948',19525794,'0.2'),(19524346,18322950,'./widgets/login_info/skins/gallery_layout_login','N','20150113055151',19527566,'0.2'),(19524575,18322923,'./modules/alliance','N','20150111001332',19652232,'1.2.2'),(19524576,18322923,'./modules/alliancehub','N','20141220052314',19542992,'1.0.1'),(19524772,18322925,'./addons/alliancexe_grab_comment','N','20141230210112',19586763,'0.3'),(19525249,18322943,'./modules/textyle/skins/fotowallXE','N','20150117025502',19526784,'0.4.0'),(19526505,18322927,'./widgets/bible_read','N','20150117044656',19585818,'1.1'),(19526573,18322943,'./modules/board/skins/lune_board','N','20150116081314',20290780,'1.04'),(19527443,18322925,'./addons/event_board','N','20150115014504',19527447,'0.1'),(19527550,18322927,'./widgets/gallery_layout_widget','N','20150116214929',19532746,'1.0.0'),(19527787,18322927,'./widgets/sitemap','N','20150116053108',19527788,'0.1.0'),(19529399,18322954,'./layouts/crom_iXE','N','20150116041044',19600243,'1.0.3'),(19529916,18322943,'./modules/editor/skins/jowrneyEditor','N','20150115114006',19533373,'0.1.0'),(19529917,18322977,'해당사항없음','N','20150115142740',19533355,'0.1.0'),(19530900,18322950,'./widgets/content/skins/church_skin','N','20150117025150',19532808,'0.2'),(19530901,18322950,'./widgets/login_info/skins/church_layout_login','N','20141214224949',19530913,'0.1'),(19532317,18322954,'./layouts/portal_layout','N','20150114101442',19533824,'0.3'),(19532779,18322954,'./layouts/church_layout','N','20150115171822',19532784,'0.2'),(19533731,18322977,'./modules/point/icons/xeicon_coa','N','20150117071136',19736559,'3.0'),(19534671,18322927,'./widgets/sejin7940_calendar','N','20150116163915',19534672,'1.0'),(19548524,18322927,'./widgets/newest_document_tab','N','20150117030309',19548663,'0.2'),(19549401,18322925,'./addons/source_marking','N','20150115214719',19549402,'0.3'),(19550402,18322925,'./addons/socialxe_mid_forwarder','N','20150113184629',20361446,'1.0.3'),(19551431,18322977,'./modules/document/tpl/icons','N','20150107104510',19551432,'0.1'),(19555797,18322925,'./addons/prettyphoto','N','20150116215006',21336236,'1.1.3.0'),(19555878,18322925,'./addons/webfont','N','20150112210313',21378394,'1.1.3.1'),(19555887,18322925,'./addons/css3pie','N','20150116164626',20878725,'1.3.3.0'),(19555890,18322954,'./layouts/sketchbook5','N','20150117013748',21336191,'1.6.3.6'),(19555903,18322943,'./modules/board/skins/sketchbook5','N','20150117064246',22754336,'1.7.0'),(19555926,18322925,'./addons/tag_relation/skins/default','N','20150117053519',19915132,'0.9.5'),(19555927,18322950,'./widgets/socialxe_comment/skins/sketchbook5','N','20150117030408',22509535,'1.7.0'),(19560898,18322943,'./modules/member/skins/photoGalleryA','N','20150117060921',19560902,'1.0'),(19565911,18322925,'./addons/soo_body_content','N','20150111231705',19565912,'0.2'),(19566135,18322977,'./modules/point/icons/NetCabin_Lvic','N','20150108020403',19576465,'0.1'),(19570840,18322954,'./layouts/CN_No3','N','20150115202124',19582438,'1.0.4'),(19574799,18322925,'./addons/smenubox_scaleupdown','N','20150116095152',19576713,'0.1'),(19583417,18322925,'./addons/wiki-link','N','20150115151047',19600787,'0.2'),(19594292,18994172,'./m.layouts/sketchbook5Mobile','N','20150117043823',20557098,'1.2.2.3'),(19594435,18994170,'./modules/board/m.skins/sketchbook5Mobile','N','20150116130350',20973906,'1.2.3.3'),(19600206,18322925,'./addons/autowww','N','20150116140154',19604227,'1.0'),(19608490,18322925,'./addons/del-www','N','20150116191540',19608585,'0.1'),(19618448,18322954,'./layouts/Tony','N','20141231184759',19620083,'0.1.1'),(19618480,18322950,'./widgets/login_info/skins/Tony','N','20150113055140',19618481,'0.1.0'),(19623053,18322950,'./widgets/login_info/skins/neutral','N','20150116213801',20803425,'0.2'),(19623082,18322950,'./widgets/login_info/skins/graystyle','N','20150116205932',20702518,'0.21'),(19623904,18322954,'./layouts/layout_photoGalleyA_sub','N','20150117060920',19623910,'1.2'),(19623994,18322954,'./layouts/layout_newsMagazine_free','N','20150114160926',19623995,'1.0'),(19624853,18322950,'./widgets/login_info/skins/Quad','N','20150116134909',19624859,'1.0.0'),(19624858,18322954,'./layouts/Quad','N','20150111205230',19630832,'1.0.3'),(19630138,18322954,'./layouts/SimpleDropDown','N','20150114220120',20467486,'2.0.0'),(19637507,18322943,'./modules/board/skins/JB_erebus_board','N','20150116230758',22450338,'1.3.1'),(19639463,18322952,'./widgetstyles/lineBox','N','20150117022229',19639464,'0.1'),(19655120,18322954,'./layouts/NetCabin_X3','N','20150117002038',20430977,'0.2.2'),(19657758,18322954,'./layouts/NetCabin_X2','N','20150110173551',19657761,'0.1'),(19657941,18322929,'./modules/editor/components/chess','N','20150116200945',19688815,'1.1.2'),(19673444,18904838,'./modules/editor/styles/NomarginPTag','N','20150116112106',19675462,'0.0.1.1'),(19674194,18904838,'./modules/editor/styles/misol','N','20150116110700',19674198,'0.1'),(19674471,18322927,'./widgets/twitter','N','20150117035517',19676523,'0.2'),(19684891,18322954,'./layouts/elkha_pieces','N','20141230125239',19788968,'0.2'),(19684961,18322950,'./widgets/login_info/skins/eond_gateway','N','20150116021007',19684962,'0.5'),(19692489,18322927,'./widgets/music24_kr_clock','N','20150113031014',19692490,'1.0.0'),(19700913,18322954,'./layouts/elkha_monochrome','N','20150114195445',19803893,'0.12'),(19702417,18322950,'./widgets/login_info/skins/monochrome','N','20150114195445',20803243,'0.2'),(19702419,18322950,'./widgets/language_select/skins/monochrome','N','20150114195445',19702444,'0.1'),(19705472,18322927,'./widgets/content/skins/XEgrid_content','N','20150114161347',19705666,'1.1'),(19707673,18322950,'./widgets/newest_document/skins/CN_No_series','N','20150113191353',19707678,'1.1'),(19707730,18322952,'./widgetstyles/CN_No_series','N','20150116170452',19707731,'1.1'),(19707750,18322954,'./layouts/CN_No4','N','20150114204252',19708324,'1.1'),(19708869,18322927,'./widgets/navigation','N','20150117013450',19712189,'0.4'),(19711536,18322954,'./layouts/people blue','N','20150114204536',19744693,'0.5'),(19712183,18322954,'./layouts/smart','N','20150116102450',20902184,'0.9.9'),(19712751,18322954,'./layouts/layout_skin(xenara_v1.2_type2_xe1.4.5.2)','N','20150112163602',19712752,'1.2'),(19723352,18322927,'./widgets/facebook','N','20150116203714',19723353,'0.1'),(19740666,18322943,'./modules/textyle/skins/PHOTOGRAPHER','N','20150117025922',19757669,'0.2'),(19740680,18322943,'./modules/textyle/skins/DESIGNER','N','20150117025421',19757652,'0.2'),(19740711,18322943,'./modules/textyle/skins/designspiration','N','20150112172306',19757610,'0.2'),(19744664,18322943,'./modules/textyle/skins/BlueMood','N','20150111002006',19757584,'0.2'),(19749792,18322954,'./layouts/layoutwotc_text','N','20150116132145',22596494,'1.0.7'),(19754728,18322977,'./modules/point/icons/ca_ladder_60','N','20150115231525',19755182,'0.1'),(19759864,18322927,'./widgets/google_map','N','20150116231021',19759892,'0.2'),(19765252,18322954,'./layouts/XEgrid_Free','N','20150114225901',19765321,'1.0.3'),(19767397,18322954,'./layouts/columnist','N','20150116204935',20270404,'1.5.1'),(19775760,18322950,'./widgets/content/skins/Photographer','N','20150117025922',19775761,'0.1'),(19775788,18322950,'./widgets/content/skins/default_new','N','20150117025421',19775789,'0.1'),(19775816,18322950,'./widgets/content/skins/default2','N','20150112115039',19775820,'0.1'),(19775829,18322950,'./widgets/tag_list/skins/default1','N','20150117025421',19775830,'0.1'),(19775849,18322950,'./widgets/tag_list/skins/default2','N','20150112172306',19775850,'0.1'),(19775878,18322950,'./widgets/tag_list/skins/default3','N','20150111041920',19775879,'0.1'),(19775899,18322950,'./widgets/counter_status/skins/Designspiration','N','20150112172306',19775901,'0.1'),(19775908,18322950,'./widgets/counter_status/skins/default_new','N','20150117025421',19775909,'0.1'),(19775924,18322950,'./widgets/counter_status/skins/default2','N','20150111002007',19775928,'0.1'),(19775942,18322950,'./widgets/category/skins/Designspiration','N','20150112172306',19775943,'0.1'),(19775958,18322950,'./widgets/category/skins/BlogskinDesigner','N','20150115140124',19775962,'0.1'),(19775971,18322950,'./widgets/category/skins/default_new','N','20150117025421',19775972,'0.1'),(19804189,18322925,'./addons/elkha_www','N','20150116134303',20702493,'0.11'),(19806836,18322977,'./modules/point/icons/elkha_poporina_zerostar50','N','20150115113103',19806837,'0.1'),(19807569,18322950,'./widgets/login_info/skins/webengine_black','N','20150109165844',19827659,'1.2'),(19816429,18322954,'./layouts/CN_No5','N','20150114201313',19816430,'1.0'),(19816467,18322950,'./widgets/newest_document/skins/CN_No5','N','20150115102932',19816468,'1.0'),(19816486,18322950,'./widgets/newest_comment/skins/CN_No5','N','20150114151538',19816487,'1.0'),(19817434,18322929,'./modules/editor/components/eh_player','N','20150117002111',19828441,'0.3'),(19818901,18322954,'./layouts/ikarusv1simple','N','20150111004731',19829113,'1.1.0'),(19831182,18322954,'./layouts/layout_skin(xenara_v3.0_type2_xe1.4.4.4)','N','20150113170610',19831183,'3.0'),(19831194,18322954,'./layouts/layout_skin(xenara_v3.1_type2_xe1.4.4.4)','N','20150106155845',19831195,'3.1'),(19833041,18322952,'./widgetstyles/sctb','N','20150117022339',20213631,'6.0'),(19834157,18322954,'xe/layouts','N','20141227171852',19834158,'0.2.1'),(19849619,18322952,'./widgetstyles/SteelblueRound','N','20150116171433',19849620,'0.1'),(19854096,18322927,'./widgets/qrcode_creator','N','20150115131624',19854097,'0.1'),(19859881,18322925,'./addons/googleplus','N','20150117052434',19864516,'0.1.1'),(19862381,18322925,'./addons/soo_googleplus','N','20150111231611',19890691,'0.2.1'),(19875631,18322925,'./addons/gosite','N','20150115010103',19875632,'0.1'),(19885185,18322943,'./modules/board/skins/sr_memo','N','20150117033351',20959847,'0.9.1'),(19891355,18322954,'./layouts/steelblue4_Basic','N','20150102140335',19891356,'4'),(19894029,18322943,'./modules/bodex/skins/sw_contact','N','20150115152457',19902554,'0.9'),(19901434,18994170,'./modules/board/m.skins','N','20150116224507',19902394,'0.1'),(19906026,18322925,'./addons/mypeople','N','20150109220607',19906139,'0.0.1'),(19918081,18322943,'./modules/board/skins/CNboard','N','20150116183138',19918082,'1.0'),(19918823,18322954,'./layouts/cimple_plus','N','20150117003255',19921280,'1.3c'),(19923002,18322925,'./addons/sejin7940_write_limit','N','20150117011232',22687892,'1.5.2'),(19960240,18322925,'./addons/sejin7940_readed_count','N','20150116141010',19960243,'1.6'),(19962621,18322943,'./modules/member/skins/noangel_black','N','20150116114530',19962952,'1.0a'),(19964934,18322950,'./widgets/login_info/skins/cronos_free','N','20150117002236',20187569,'1.1'),(19974913,18322954,'./layouts/Dynamic','N','20150116165819',20429124,'3.0'),(19976643,18322950,'./modules/message/skins/naruCD','N','20150113144456',19984421,'0.1.2'),(19496679,18904838,'./modules/editor/components/emoticon/tpl/images','N','20150116100050',19504007,'0.1'),(19988049,18322977,'./modules/point/icons','N','20141231184759',19988222,'1.1.1'),(20003560,18322977,'레이아웃에서 직접 업로드','N','20141231181858',20003621,'1.0'),(20006558,18322950,'./widgets/counter_status/skins/mamgood_counter','N','20150115125132',20017755,'1.0'),(20048768,18322954,'./layouts/store_style','N','20150114023248',20048864,'1.2'),(20048812,18322950,'./widgets/point_status/skins/save_style','N','20141226162410',20048823,'1.0'),(20070033,18322927,'./widgets/widget_kgcalendar','N','20150116132240',20117642,'1.1'),(20070206,18322927,'./widgets/widget_kgcontent','N','20150116235727',20315271,'1.2'),(20072467,18322954,'./layouts/store_style2','N','20150110230000',20072471,'2.0'),(20074878,18322954,'./layouts/elkha_tskorea','N','20150112152354',20691958,'0.2'),(20075809,18322950,'./widgets/language_select/skins/tskorea','N','20150112225859',20092424,'0.1'),(20075810,18322927,'./widgets/layout_info','N','20150106121830',20092486,'0.1'),(20078903,18322950,'./widgets/counter_status/skins/mamgood_counter2','N','20150116014234',20078904,'1.0'),(20078936,18322950,'./widgets/content/skins/mamgood_content','N','20150116014234',20078937,'1.0'),(20078965,18322950,'./widgets/login_info/skins/mamgood_login','N','20150112201244',20078966,'1.0'),(20079057,18322954,'./layouts/minipaper_style','N','20150116014233',20634505,'1.5'),(20079764,18322950,'./widgets/counter_status/skins/flash','N','20150116163022',20079797,'0.1'),(20091784,18322927,'./widgets/shopxeslider','N','20150116142924',20123108,'V1.1'),(20092690,18322950,'widgets/content/skins/elkha_nivo','N','20150116174137',20092697,'0.1'),(20092760,18322925,'./addons/elkha_packer','N','20150109003804',20702463,'0.11'),(20117694,18322943,'.modules/board/skins','N','20150117010742',20117695,'1.0'),(20118343,18322925,'./addon/cufon','N','20150109003913',20190605,'0.1.0'),(20120961,18322927,'./widgets/treasurej_popular','N','20150117002108',22550390,'1.0.5'),(20122381,18322950,'./widgets/treasurej_popular/skins/treasurej_popular_tabr','N','20150116151751',21972737,'1.1'),(20155119,18322943,'./modules/member/skins/XET_member','N','20150116155617',21197586,'1.2'),(20155171,18322943,'./modules/communication/skins/XET_communication','N','20150117002053',21344485,'1.2.1'),(20168220,18322954,'./layouts/xe_cafe_site','N','20150116231407',21803913,'1.7.0'),(20168286,18322950,'./widgets/login_info/skins/cafe_site','N','20150116231407',21802090,'1.7.0'),(20168297,18322950,'./widgets/language_select/skins/cafe_site','N','20150116231407',21802140,'1.7.0'),(20176065,18322954,'./layouts/store_style25','N','20150115151912',20176066,'2.5'),(20185969,18322927,'./widgets/autoredirect','N','20150116112602',20185972,'1.0'),(20186750,18322950,'./widgets/treasurej_popular/skins/treasurej_popular_tabs','N','20150116150800',21972593,'1.1'),(20187337,18322923,'./modules/guestbook','N','20150116230036',21962590,'1.7.0.1'),(20187411,18322923,'./modules/faq','N','20150117060201',21854296,'1.7.0.1'),(20187450,18322923,'./modules/contact','N','20150117060056',21968983,'1.7.0.2'),(20191860,18322925,'./addons/me2plugin','N','20150104022825',20191861,'1.0'),(20236415,18322943,'./modules/attendance/skins/sr_at_skin','N','20150116175529',20236418,'0.1'),(20242228,18322943,'/modules/editor/skins','N','20150116002703',20624981,'0.1'),(20259612,18322954,'./layouts/HappyTravel_v1','N','20150115134806',20261781,'1.0'),(20276661,18322950,'./widgets/login_info/skins/cafe_official','N','20150116231408',21801927,'1.7.0'),(20276676,18322950,'./widgets/language_select/skins/xe_cafe_language','N','20150116231408',20276677,'0.1'),(20276726,18322954,'./layouts/xe_cafe_hub','N','20150116231408',21803871,'1.7.0'),(20277082,18322943,'./modules/homepage/skins/xe_cafe_v2','N','20150117032647',20309227,'0.1.1'),(20277901,18322925,'./addons/controlbox','N','20150116062424',20632434,'1.0.1'),(20279228,18322923,'./modules/boardauction','N','20150116080938',20295567,'0.1.1'),(20279332,18322943,'./modules/board/skins/xe_auction','N','20150116080936',20369078,'0.1.1'),(20290703,18994170,'./modules/board/m.skins/m_sr_memo','N','20150117013823',20300033,'0.3.6'),(20324298,18322923,'./modules/textmessage','N','20150116191837',22754396,'2.3'),(20324311,18322923,'./modules/notification','N','20150116191900',22754451,'2.3.4'),(20330088,18322954,'./layouts/layoutwotc_portal','N','20150114212143',20691619,'1.0.2'),(20340640,18322925,'./addons/iphone_checkbox','N','20150115132531',20409821,'1.0a'),(20350195,18322927,'./widgets/contentslist','N','20150116165419',20350196,'0.5'),(20393822,18322923,'./modules/newposts','N','20150116191803',22754134,'2.1.5'),(20401336,18322954,'./layouts/style_a_lite','N','20150117004920',22754384,'2.1.3'),(20415487,18322943,'./modules/lottery/skins/simple','N','20150116075150',20451828,'1.1'),(20427455,18322952,'./widgetstyles/admin_ws','N','20150117054123',20454155,'0.2'),(20453531,18322925,'./addons/bodyfade','N','20150116132250',21401825,'0.2.3'),(20458826,18322954,'./layouts/we_home','N','20150116204837',20980624,'1.8'),(20464644,18322927,'./widgets/vanner','N','20150117063924',20464663,'0.2'),(20466120,18322925,'./addons/elfinder','N','20150114012701',20480086,'0.1.1'),(20472943,18322954,'./layouts/xe_solid_enterprise_LeCiel_v1','N','20150116190511',20613484,'1.7'),(20473328,18904838,'./modules/editor/skins/fckplus','N','20150116233713',20487316,'1.1a'),(20473753,18322943,'./modules/editor/skins/xeed','N','20150113145026',20473754,'0.2'),(20476783,18904838,'./modules/editor/skins/fckplus_SimpleWhite','N','20150116171647',20487172,'1.1a'),(20476937,18322943,'./modules/contact/skins/cameron','N','20150117025640',21970579,'1.5'),(20493834,18322950,'./widgets/content/skins/updatenews','N','20150116204837',21134264,'1.8'),(20495669,18322943,'./modules/member/skins/simple','N','20150117025605',20507441,'0.1'),(20502461,18322943,'./modules/message/skins/cmd_message','N','20150103102441',20502462,'0.1'),(20509760,18322943,'./modules/page/skins/sejin7940_page','N','20150116195443',22572810,'1.4.1'),(20514706,18322943,'./modules/board/skins/simple_board','N','20150117025148',22754093,'1.3'),(20519604,18322943,'./modules/member/skins/simple_for_14','N','20150116155746',21193099,'0.2'),(20520233,18322952,'./widgetstyles/sketchbook5_wincomi','N','20150117021732',20798858,'3.0'),(20520855,18322925,'./addons/color_message','N','20150111231524',20520858,'1.1'),(20522778,18322925,'./addons/color_message_for_14','N','20150111231545',20522789,'1.0'),(20522820,18322950,'./widgets/bible_read/skins/KnDol','N','20150117044655',20590447,'1.1.0'),(20525058,18322925,'./addons/popup_menu_like_1_4','N','20150111231433',20798880,'1.0'),(20526823,18322925,'./addons/me2plugin_for_14','N','20150111231520',20526828,'1.0'),(20531619,18322954,'./layouts/white_square_layout','N','20150114030637',20882875,'1.3'),(20533710,18322950,'./widgets/xeBanner/skins','N','20150117063426',20533711,'1.0.0'),(20547035,18322925,'./addons/exif','N','20150112142401',21378417,'0.9.2.2'),(20557173,18322950,'./widgets/content/skins/xe2011_contributor_present','N','20150115165902',20557174,'0.1'),(20558958,18322950,'./widgets/lnb_menu/skins','N','20150116010017',20558964,'0.1.0'),(20564368,18322925,'./addons/sejin7940_align','N','20150112180157',20564370,'1.0'),(20579823,18322954,'./layouts/SilverCloud','N','20150112010900',20579824,'1.0'),(20605745,18322927,'./widgets/widget_kgmedia','N','20150117044724',20695833,'1.1'),(20612563,18322927,'./widgets/contentsmedia','N','20150117050503',20696865,'0.7'),(20644220,18322925,'./addons/prohibit_monologue','N','20150108150849',20644221,'0.1'),(20649732,18322925,'./addons/commentwritedownload','N','20150113115035',20681999,'0.3'),(20670102,18322923,'./modules/lisense','N','20150116111717',20692149,'0.1'),(20673638,18322925,'./addons/html5audio_flash','N','20150117073340',22541039,'1.5.1'),(20673640,18322925,'./addons/falling_snow','N','20150111234639',20697610,'1.5.0'),(20673970,18322923,'./modules/referer','N','20150117054310',22754462,'3.8.1'),(20673999,18322925,'./addons/referer','N','20150117054406',22754459,'3.4.0'),(20687933,18322954,'./layouts/xdt_offical_2','N','20150115115009',20949015,'1.4'),(20707031,18322943,'/modules/contact/skins','N','20150116231840',20707032,'1.0'),(20710471,18322923,'./modules/checkip','N','20150116234745',20765854,'0.2.2'),(20789735,18322943,'./modules/socialxe/skins/bootstrap.single','N','20150111235248',20789736,'1.0'),(20792413,18322950,'./widgets/content/skins/sticky_note','N','20150115110146',20792414,'1.0.3.0'),(20796792,18322927,'./widgets/notice','N','20150117012231',22754121,'1.0.4'),(20806148,18322925,'./addons/nonebutton','N','20141231184759',20823285,'0.1.1'),(20832909,18322927,'./widgets/user_finder','N','20150116150133',20836373,'0.1'),(20832931,18322923,'./modules/user_finder','N','20150116150133',20836347,'0.1'),(20882492,18322923,'./modules/purplebook','N','20150116191839',22754128,'3.0'),(20908270,18322923,'./modules/detail_search','N','20150117002251',20949711,'0.1.1'),(20908354,18322950,'./widgets/dswidget','N','20150115222654',20950044,'0.1.1'),(20927819,18322950,'./widgets/login_info/skins/photo15','N','20150117015511',22253694,'1.1'),(20936395,18322923,'./modules/umessage','N','20150117002133',20943903,'1.1'),(20949728,18322925,'./addons/CssOutPlus','N','20141230070654',20952200,'1.1'),(20951206,18322925,'./addons/css3pie_js','N','20150115220054',20966650,'1.1.1'),(20954749,18322925,'./addons/message_alarm','N','20150117023252',21041089,'2.0'),(20957609,18322925,'./addons/wating_message','N','20150103140901',20957612,'0.1.1'),(20959091,18322925,'./addons/doc_viewer','N','20150116155853',20959094,'0.1.2'),(20966755,18322954,'./layouts/xdt_community','N','20150115203037',21002067,'1.1'),(20971314,18322925,'./addons/kakao_link','N','20150115220518',20975200,'0.2'),(20972639,18322943,'./modules/editor/skins/xpresseditor','N','20150115015742',20973083,'1.1'),(20989209,18322954,'./layouts/Chemistry_lite','N','20150115011835',20989210,'1.0'),(20999893,18322927,'./widgets/sys_status','N','20150114031522',21005314,'3.1.1'),(21003996,18322927,'./widgets/xestream','N','20150117042353',21014531,'0.2'),(21004386,18322950,'./widgets/sys_status/skin/simple','N','20141219132735',21004387,'0.1'),(21009029,18322954,'./layouts/xdt_community_2','N','20150116043631',21009030,'1.0'),(21014822,18322929,'./modules/editor/components/soo_youtube','N','20150116133645',21039496,'0.5.1'),(21015635,18322925,'./addons/appoint_view_user','N','20150117061836',21409930,'1.0'),(21038796,18322950,'./widgets/point_status/skins/bootstrap','N','20150117070037',21146775,'1.2'),(21038825,18322950,'./widgets/content/skins/sketchbook5_style','N','20150117040323',21648135,'1.0'),(21090780,18322954,'./layouts/pleasure','N','20150114021746',21092056,'1.2'),(21092346,18322925,'./addons/xdt_button','N','20150116112251',21739119,'2.1'),(21124707,18322925,'./addons/soo_add_ssl','N','20150111120201',21124708,'0.1'),(21146815,18322950,'./widgets/sys_status/skins/tb','N','20150109001534',21146816,'1.0'),(21154641,18322925,'./addons/iframe_resize','N','20150117053622',21189969,'0.2'),(21189057,18322925,'./addons/settitle','N','20150116155507',21383555,'1.3'),(21189175,18322925,'./addons/texteffect','N','20150111231323',21197591,'0.2 beta'),(21190663,18322925,'./addons/report_addon','N','20150115000728',21194703,'0.2'),(21194822,18322929,'./modules/editor/components/simple_jw','N','20150117000500',21364752,'0.3.0'),(21194850,18322925,'./addons/bootstrap_btn','N','20150115190354',21194883,'1.0'),(21195053,18322925,'./addons/bootstrap_icon','N','20150115142246',21202617,'1.1a'),(21195185,18322923,'./modules/authentication','N','20150116191834',22754169,'3.1.2'),(21196855,18322927,'./widgets/camtv','N','20150112161513',21228634,'0.1'),(21204144,18322925,'./addons/number_display','N','20150116192256',21204145,'0.1'),(21211103,18322923,'./modules/sejin7940_comment','N','20150116163259',22724164,'1.5'),(21220010,18322925,'./addons/limit_message','N','20150116030431',21229637,'0.2'),(21221462,18322925,'./addons/naver_analytics','N','20150116015641',22658323,'1.2'),(21231044,18322923,'./modules/reset_password','N','20150116191800',22728311,'1.2'),(21245296,18322954,'./layouts/xe_official_v2.2','N','20150115173249',21295736,'v.2.2'),(21262112,18322925,'./addons/scrollbar','N','20150114081551',21262114,'0.9.1'),(21267409,18322954,'./layouts/qookrabbit','N','20150115222343',21363221,'1.9.8'),(21289114,18322925,'./addons/division','N','20150112205938',21294767,'1.0'),(21290615,18994170,'./modules/board/m.skins/xenon_m_board','N','20150115175031',21393065,'1.5'),(21290617,18994170,'./modules/page/m.skins/xenon_m_page','N','20150115184146',21295253,'1.1'),(21290626,18994170,'./modules/member/m.skins/xenon_m_member','N','20150115165919',21429905,'1.0'),(21290627,18994172,'./m.layouts/XenonMoblie','N','20150117031056',21815540,'1.9.1'),(21298003,18322925,'./addons/layerpopup','N','20150117000625',22754287,'1.10'),(21302525,18322954,'./layouts/xdt_pure','N','20150117043317',22403094,'1.3'),(21305288,18322952,'./widgetstyles/nico','N','20150117021516',21532773,'2.0'),(21305881,18322923,'./modules/xewall','N','20150116134724',22754355,'0.3.1'),(21352246,18322950,'./widgets/counter_status/skins/qookrabbit_status','N','20150115222344',21352247,'0.1'),(21352623,18322925,'./addons/mresizer','N','20150116183716',21526220,'1.5'),(21354730,18322925,'./addons/msg_point','N','20150115093005',21354731,'1.0'),(21354767,18322925,'./addons/change_nickname','N','20150116201704',22754182,'2.0'),(21364832,18322950,'./widgets/newest_comment/skins/mynote','N','20150113115348',21364833,'0.1'),(21367559,18322954,'/layout','N','20150116190243',21389903,'0.0.2'),(21369594,18322925,'./addons/my_comment_addon','N','20150116150336',21394119,'1.1.2'),(21369690,18322950,'./widgets/newest_comment/skins/xenon_m_com','N','20150114104400',21370425,'1.1'),(21369691,18322950,'./widgets/newest_document/skins/xenon_m_doc','N','20150116174933',21369734,'1.0'),(21369692,18322950,'./widgets/newest_document/skins/xenon_m_gel','N','20150116141232',21369738,'1.0'),(21370287,18322923,'./modules/smartux','N','20150110185637',21370289,'1.0.2'),(21373345,18322925,'./addons/searchhighlight','N','20150114235753',21394152,'0.2'),(21374711,18322923,'./modules/ncenterlite','N','20150117050400',22754455,'2.1.2'),(21378491,18994170,'./modules/board/m.skins/sketchbook5','N','20150117064246',22754337,'1.7.0'),(21382622,18322925,'./addon/jquery_snow','N','20150110174431',21391227,'0.0.1'),(21384926,18322925,'./addons/dragcolor','N','20150114202655',21385023,'1.0'),(21388442,18322923,'./modules/mobileex','N','20150117014011',22107721,'0.6.1'),(21391263,18322925,'./addons/mbanner','N','20150114104422',21391414,'1.0'),(21393465,18322927,'./widgets/uchat','N','20150117050009',22754477,'1.1.7'),(21396254,18322950,'./widgets/content/skins/tb_sb','N','20150117070037',21396255,'1.0'),(21398290,18322925,'./addons/pagechange','N','20150111211145',21432465,'3.0'),(21400134,18322925,'./addons/securityPlus','N','20141231195207',21400135,'1.0.0'),(21410063,18322952,'./widgetstyles/xdt_windless','N','20150116204305',21410071,'1.0'),(21411060,18322943,'./modules/socialxe/skins/tb','N','20150116224239',22122003,'1.1'),(21411087,18322943,'./modules/socialxeserver/skins/tb','N','20150109225756',21411095,'1.0'),(21411172,18322943,'./modules/contact/skins/tb','N','20150116232128',21411184,'1.0'),(21412475,18322923,'./modules/recruit','N','20150117060412',21412476,'1.0'),(21413017,18322927,'./widgets/xegallery','N','20150116204340',21433519,'0.3'),(21415137,18322925,'./addons/setitle2','N','20150116155500',21415140,'2.1.0'),(21428178,18322954,'./layouts/xdt_simple_home','N','20150116234014',22403086,'1.4'),(21439563,18322925,'./addons/kru_sslhelper','N','20150115034049',21711242,'3.0.1'),(21526323,18322925,'./addons/noclick','N','20150117044607',22754294,'1.3'),(21535219,18322954,'./layouts/live_login','N','20150115012639',21768603,'1.5.0.0'),(21591779,18322925,'./addons/radarURL','N','20150115135146',21594258,'1.2'),(21606824,18322925,'./addons/href_fixed1','N','20150115204511',21606841,'1.0'),(21620531,18322925,'./addons/opengraph','N','20150116115046',21620532,'0.0.2'),(21626541,18322925,'./addons/Redirection','N','20150115220607',21626542,'1.0a'),(21643081,18322950,'./widgets/content/skins/mynote','N','20150116130937',21643082,'0.1'),(21643233,18322954,'./layouts/Express999','N','20150114142722',21838875,'2.1'),(21648251,18322950,'./widgets/content/skins/tb_cw','N','20150117060611',21978061,'2.2'),(21651786,18322925,'./addons/scmplayer','N','20150116200958',22299133,'1.5'),(21715889,18322943,'./modules/message/skins/eond','N','20150115142330',21715890,'0.1'),(21717275,18322923,'./modules/okname','N','20150116202918',21726208,'0.2.0'),(21717279,18322925,'./addons/okname','N','20150116202918',21726233,'0.2.0'),(21736776,18322925,'./addons/kru_dab','N','20150117061845',21748943,'1.1'),(21749191,18322954,'./layouts/Simple_Style_S','N','20150116215105',21852443,'1.3.1'),(21749702,18994170,'./modules/textyle/m.skins','N','20150116114118',21762837,'0.9'),(21752944,18322925,'./addons/layerAlert','N','20150115211131',21753018,'1.1'),(21761048,18322954,'./layouts/eond_rosso','N','20150115180011',21791719,'0.3.3'),(21776217,18322954,'./layouts/eond_starter','N','20150116130732',21776218,'0.1'),(21782412,18322954,'./layouts/eond_compact','N','20150116213657',21782413,'0.8.4'),(21788706,18322925,'./addons/AntiProxy','N','20150115194521',21788708,'1.0.0'),(21798677,18322943,'./modules/ncenterlite/skins/playerplace','N','20150113174536',21798682,'1.0.1'),(21802016,18322943,'./modules/board/skins/xe_official_planner123/colorset','N','20150117025111',22754341,'0.4'),(21805731,18322925,'./addons/activescrollbar','N','20150111231035',21805732,'1.0'),(21807603,18322927,'./widgets/xehoverdir','N','20150117051651',21807604,'0.1'),(21810388,18322954,'./layouts/xdt_black_time','N','20150117002641',22403080,'1.2'),(21813965,18322943,'./modules/board/skins/xe_v3_gallery_haan','N','20150117004806',21814028,'0.3.1'),(21838367,18322927,'./widgets/foodin','N','20150113184110',21845017,'0.0.3'),(21838368,18322950,'./widgets/foodin/skin/simple','N','20150113184110',21845033,'0.0.1'),(21842038,18322925,'./addons/scrolltopcontrol','N','20150117050132',21845072,'1.1.0'),(21854312,18322923,'./modules/forum','N','20150115142108',21956789,'1.7.0.1'),(21855754,18322927,'./widgets/server_status','N','20150114211538',21885905,'0.2'),(21861240,18322943,'./modules/member/skins/tb','N','20150117070037',21861246,'1.0'),(21861251,18322943,'./modules/communication/skins/tb','N','20150117070037',21861263,'1.0'),(21861272,18322943,'./modules/message/skins/tb','N','20150117070037',21861277,'1.0'),(21861282,18322943,'./modules/integration_search/skins/tb','N','20150117070037',21861307,'1.0'),(21862798,18322954,'./layouts/brownwhite','N','20150116090503',21863022,'1.1'),(21876980,18322923,'./modules/multidomain','N','20150117031159',22504901,'1.3.1'),(21876999,18322925,'./addons/multidomain','N','20150116160301',22280906,'1.2'),(21883072,18322954,'./layouts/the_bootstrap','N','20150117070036',22456562,'3.5.1.2'),(21889835,18322925,'./addons/counter_ex','N','20150114222603',22754120,'1.0.3'),(21901097,18322925,'./addons/today_fortune','N','20150116133832',21908882,'1.0.1'),(21933112,18322925,'./addons/to_sns','N','20150116012743',22104881,'0.2.1'),(21933295,18322923,'./modules/realnotice','N','20150117021012',21933310,'0.5'),(21950613,18322925,'./addons/sejin7940_mustlogin','N','20150115012609',21959492,'0.2'),(21961680,18322925,'./addons/stoptrackback','N','20150114013704',21973651,'0.3'),(21978106,18322925,'./addons/sejin7940_autotrash','N','20150116230746',21978124,'1.1.1'),(22017658,18322954,'./layouts/xecenter','N','20150117074103',22633469,'1.3.7'),(22069845,18322927,'./widgets/traffic_status','N','20150117002513',22069874,'1.0'),(22073155,18322923,'./modules/cash','N','20150116161328',22074809,'0.1'),(22115065,18322954,'./layouts/awake','N','20150117014820',22754348,'1.0.4'),(22115651,18322923,'./modules/pa','N','20150107195102',22121058,'1.0'),(22141994,18322977,'./modules/point/icons/level_icon','N','20150116083818',22734341,'SSS'),(22160991,18322977,'./modules/point/icons/wf_lv','N','20150115113030',22161011,'0.2'),(22186881,18322977,'./modules/point/icons/star','N','20150111232328',22186890,'S'),(22194465,18322925,'./addons/member_join_ex','N','20150115164142',22194483,'0.2.3'),(22208650,18322923,'/messageTalk','N','20150116075025',22208679,'1.1'),(22208653,18322925,'./addons/font-awesome','N','20150117012620',22226740,'1.0'),(22223413,18322925,'./addons/wiki_extend','N','20150115104341',22223443,'0.1'),(22228663,18322925,'./addons/addon_insert_sticker','N','20150116084255',22228684,'1.0'),(22235916,18322925,'./addons/zipped_xe','N','20150116062203',22278143,'0.3'),(22243421,18322977,'./modules/point/icons/xecenter_icon','N','20150114231323',22243436,'1.0.0'),(22245450,18322943,'./widgets/logged_members/skins/w_redtokbox','N','20150116075023',22277385,'1.2'),(22260417,18322925,'./addons/301moved','N','20150114173055',22265949,'0.2'),(22263678,18322927,'./widgets/eh_whcarousel','N','20150117005215',22754205,'0.4'),(22266089,18322977,'./modules/point/icons/default_J','N','20150109085840',22266113,'PK_CP'),(22280542,18322954,'./layouts/simplestrap','N','20150117054548',22754303,'1.4.2'),(22282486,18322950,'./widgets/content/skins/simplestrap_sb','N','20150117034841',22417886,'1.0.1'),(22283649,18322943,'./modules/member/skins/simplestrap','N','20150117034841',22537469,'1.2'),(22283657,18322943,'./modules/communication/skins/simplestrap','N','20150117034841',22537484,'1.3'),(22288778,18322927,'./widgets/talkbox','N','20150117000444',22460980,'1.1'),(22301990,18322943,'./modules/board/skins/sketchbook5_youtube','N','20150117053619',22304077,'0.3'),(22303618,18322977,'./modules/point/icons/donek','N','20141228181825',22303661,'Acc'),(22305559,18322977,'./modules/point/icons/KJA_Love','N','20150111214329',22305588,'R'),(22332211,18322954,'./layouts/xdt_cool','N','20150116205940',22595789,'1.2.2'),(22337183,18322977,'./modules/point/icons/typical-t','N','20150116153459',22337194,'Timeless'),(22337993,18322954,'/layouts','N','20150116171851',22337998,'1.0.0'),(22348667,18322954,'./layouts/blue','N','20150116210835',22348685,'1.0'),(22351328,18322943,'./modules/forum/skins/flat_forum_lite','N','20150114235911',22374400,'1.0.4'),(22356670,18322943,'./modules/integration_search/skins/yjsoft_ggcse','N','20150116150141',22379825,'0.1.0'),(22356680,18322977,'./modules/point/icons/zanazana','N','20150111205422',22356690,'I don\'t no'),(22359020,18322925,'./addons/elkha_simple_spam','N','20150116153542',22359071,'0.1'),(22377937,18322954,'./layouts/hestia','N','20150117023232',22754444,'2.1.4'),(22393789,18322950,'widgets/counter_status/skins/hestia_status','N','20150117023901',22393813,'1.0'),(22396862,18322954,'./layouts/xdt_style_b','N','20150116114810',22658304,'1.2.4'),(22402420,18322977,'./modules/point/icons/500-983','N','20150114145430',22402437,'fort'),(22440981,18322950,'./widgets/content/skins/eond_ygh','N','20150116112041',22440999,'0.3'),(22443686,18322925,'./addons/stalk','N','20150116162357',22443696,'0.1'),(22446815,18322923,'./modules/upgletyle','N','20150116141242',22692647,'0.1.4'),(22450636,18322943,'./modules/editor/skins/xpresseditor_axupload5','N','20150116182400',22504927,'1.1'),(22452877,18904838,'./modules/editor/styles/simplestrap','N','20150116111846',22452885,'0.1'),(22454021,18322923,'./messageTalk','N','20150117000445',22460914,'2.0.1'),(22455366,18322925,'./addons/block_document','N','20150116112406',22456090,'0.1'),(22456939,18322925,'./addons/xdt_scrollbar','N','20150113115207',22456955,'1.0'),(22466915,18322923,'./modules/plusad','N','20150116214400',22530791,'0.5'),(22466916,18322927,'./widgets/plusadWidget','N','20150116214358',22530804,'0.6'),(22467273,18322943,'./modules/board/skins/phiz_A_zine2','N','20150116190326',22471747,'1.0'),(22470148,18322954,'./layouts/layout_intermission','N','20150117020456',22545808,'0.9.6'),(22473723,18322954,'./layouts/daol_official','N','20150116170616',22715041,'1.1'),(22481310,18322977,'./modules/point/icons/Dandy_TJ','N','20150103160502',22481349,'I\'m very Dandy'),(22488105,18322954,'./layouts/webengine_white','N','20150116171506',22602278,'1.2'),(22495339,18322927,'./widgets/ddayWidget','N','20150114155553',22530866,'0.4'),(22497371,18322925,'./addons/url_shortener','N','20150116143152',22574332,'1.12'),(22501400,18322950,'./widgets/newest_document/skins/luke_doc','N','20150116213455',22502529,'v1.0'),(22501977,18322954,'./layouts/dark_white','N','20150116231509',22508454,'v1.1'),(22505945,18322950,'./widgets/newest_comment/skins/luke_doc','N','20150116234124',22505955,'v1.0'),(22508537,18322923,'./modules/rockgame','N','20150116114104',22541336,'0.4'),(22511691,18322925,'./addons/member_activity_check','N','20150116135333',22754292,'0.4'),(22514693,18994172,'./m.layouts/xenon_nx','N','20150116231726',22754354,'0.9.3'),(22516532,18322925,'./addons/langfilter','N','20150117023105',22754507,'0.7'),(22526030,18322927,'./widgets/simple_clock','N','20150116033934',22537348,'1.1'),(22526528,18322925,'./addons/falling_snow2','N','20150115092650',22528351,'1.0.0'),(22526756,18322925,'./addons/falling_snow3','N','20150111233527',22528554,'1.0.0'),(22529553,18322927,'./widgets/browserWidget','N','20150114152223',22532112,'0.2'),(22529686,18322927,'./widgets/simple_calendar','N','20150116193221',22579892,'1.3'),(22529898,18322950,'./widgets/browserWidget/skins/simplestrap','N','20150113184039',22529948,'0.1'),(22530581,18322943,'./modules/board/skins/contact_write','N','20150117063122',22754505,'1.12'),(22531811,18322950,'./widgets/treasurej_popular/skins/neat_popular_tabs','N','20150116193458',22754295,'1.1'),(22535332,18322954,'./layouts/xeschool_red','N','20150114140001',22535344,'red'),(22535350,18322977,'./modules/point/icons/redskiicons','N','20150116150017',22535354,'redski'),(22535360,18322977,'./modules/point/icons/plusalpine','N','20150114201121',22535364,'plusAlpha'),(22537451,18322925,'./addons/bootstrap3_css','N','20150116133751',22537493,'1.0'),(22539420,18322927,'./widgets/cute_clock','N','20150116135514',22539425,'1.0'),(22540074,18322954,'./layouts/s4us_1.0','N','20150116154405',22540131,'1.0'),(22540502,18322943,'./modules/contact/skins/phizContact','N','20150116163241',22540527,'1.0'),(22540996,18322929,'./modules/editor/components/multimedia_link','N','20150117012012',22616932,'1.2.0'),(22542943,18322954,'./layouts/Fresh','N','20150117003730',22543307,'1.0'),(22544858,18322925,'./addons/html5video_flash','N','20150116105230',22544908,'1.0.0'),(22547855,18994170,'./modules/member/m.skins/Blouse','N','20150116084035',22568070,'1.3'),(22549104,18322925,'./addons/recommend','N','20150115020154',22549119,'1.0'),(22553944,18322925,'./addons/xdt_css','N','20150114210252',22553960,'1.0'),(22556480,18322927,'./widgets/moonchat','N','20150116224810',22556507,'0.0.1'),(22562932,18322950,'./widgets/sitemap/skins/select','N','20150114171433',22585636,'0.3.3'),(22563110,18322950,'./widgets/content/skins/s4utabview','N','20150117035454',22563143,'1.0'),(22563158,18322954,'./layouts/nextep','N','20150117031418',22581078,'nextep v1.2'),(22566102,18322943,'./modules/board/skins/wmboard','N','20150116140038',22573020,'2.1'),(22568598,18322954,'./layouts/xdt_simple_home2','N','20150116212733',22715996,'1.0.1'),(22572346,18322927,'./widgets/hindole','N','20150117043915',22572496,'1.0'),(22572358,18322950,'./widgets/newest_comment/skins/hindole_v1_com','N','20150116173036',22572455,'1.0'),(22572362,18322954,'./layout/book_layout','N','20150117002412',22572485,'1.0'),(22572365,18322952,'./widgetstyles/hindole_box','N','20150117065256',22600170,'1.1'),(22572369,18322952,'./widgetstyles/simple-style','N','20150116204000',22572466,'1.0'),(22572375,18322950,'./widgets/newest_document/skins/hindole_v1_doc','N','20150116173029',22572430,'1.0'),(22577184,18322923,'./modules/sejin7940_copy','N','20150116210505',22618584,'1.2'),(22579388,18322923,'./modules/money','N','20150116211709',22702291,'0.1.3'),(22580059,18322925,'./addons/xesticky','N','20150116183349',22580144,'0.1'),(22581369,18322927,'./widgets/towc_new_docu','N','20150117050627',22638452,'1.9'),(22583905,18322950,'./widgets/content/skins/phiz_rwd_images','N','20150116222249',22583963,'1.0'),(22583972,18322954,'./layouts/phizRWDThemes','N','20150117005758',22714063,'1.2'),(22585779,18322943,'./modules/board/skins/sm','N','20150117015148',22696276,'1.9.7'),(22587055,18994170,'./modules/board/m.skins/sm','N','20150117015714',22693248,'0.5.8'),(22589792,18994172,'./m.layouts/webbuilder','N','20150117021957',22589821,'1.0.1'),(22590268,18322923,'./modules/quizgame','N','20150115150449',22590276,'0.1'),(22590697,18322943,'./modules/editor/skins/ckeditor','N','20150115071535',22590711,'1.0.0'),(22591861,18322954,'./layouts/webbuilder_layout','N','20150116161642',22610423,'1.0.3'),(22594541,18322923,'./modules/nproduct','N','20150117034934',22754412,'1.6.2'),(22594546,18322923,'./modules/nstore','N','20150117035011',22754425,'2.1'),(22594548,18322923,'./modules/store_review','N','20150117034935',22596375,'0.2'),(22594549,18322923,'./modules/ncart','N','20150117034936',22754416,'1.6.1'),(22594556,18322923,'./modules/epay','N','20150117034937',22754420,'2.1'),(22594557,18322923,'./modules/nmileage','N','20150117034939',22754160,'1.5.4'),(22594571,18322927,'./widgets/frontdisplay','N','20150117035051',22596682,'1.0'),(22594576,18322927,'./widgets/category_menu','N','20150117035043',22596721,'1.2'),(22594585,18322925,'./addons/trolley','N','20150116192258',22596756,'0.3'),(22596809,18322923,'./modules/nstore_digital','N','20150116173548',22754165,'1.9'),(22596810,18322923,'./modules/nstore_digital_contents','N','20150116192215',22597002,'1.1'),(22597020,18322923,'./modules/license','N','20150117034958',22635123,'1.2.1'),(22597112,18322923,'./modules/cympusadmin','N','20150117034934',22754161,'1.3'),(22597120,18322923,'./modules/store_search','N','20150116191743',22597129,'0.9'),(22597227,18322923,'./modules/paynoty','N','20150116191746',22597244,'1.1'),(22597855,18322943,'./modules/board/skins/rest_default','N','20150117060904',22723910,'1.2.1'),(22605220,18322925,'./addons/cameron_plugin','N','20150117063517',22754521,'1.2'),(22607524,18322925,'./addons/dsori_submanager_free','N','20150116161845',22608742,'0.1740.2'),(22610153,18322943,'./modules/editor/skins/dsori_ckeditor','N','20150114221517',22624901,'0.1740.3'),(22610154,18322925,'./addons/dsori_ckeditor_setting','N','20150114221518',22624891,'0.1740.3'),(22610502,18322954,'./layouts/webbuilder_layout2','N','20150117015113',22614812,'1.0.3'),(22611192,18322925,'./addons/dsori_facebook_comment','N','20150116145649',22613855,'0.1740.2'),(22616427,18322925,'./addons/pushwing','N','20150114145216',22663888,'0.5'),(22616439,18322925,'./addons/pushwing_comment','N','20150116203307',22639689,'0.5'),(22617898,18322923,'./modules/automail','N','20150116191748',22617911,'0.1'),(22618830,18322925,'./addons/checklen','N','20150114234015',22754320,'1.3'),(22622633,18322925,'./addons/blockact','N','20150115030227',22622739,'1.0'),(22627992,18322954,'./layouts/orange_simple','N','20150116184548',22670250,'1.4'),(22631178,18322925,'./addons/mobile_redirect','N','20150116032919',22631183,'1.0'),(22631822,18322954,'./layouts/xeview_layout','N','20150116202811',22631830,'1.2'),(22631837,18322954,'./layouts/five_start','N','20150115201640',22631859,'1.0'),(22634250,18322925,'./addons/browser_helper','N','20150117002829',22634254,'1.0'),(22634927,18322952,'./widgetstyles/m_cronos_ws','N','20150116211203',22647143,'1.1'),(22634955,18322950,'./widgets/mcontent/skins/m_cronos_w','N','20150117015215',22647135,'1.1'),(22640952,18322925,'./addons/twoc_memo_del','N','20150116222517',22640972,'1.1'),(22641332,18322954,'./layouts/Imagemonster','N','20150117061220',22754363,'2.1'),(22641961,18322927,'./widgets/photoslider','N','20150117073324',22641966,'1.0'),(22643750,18322925,'./addons/bot_title_control','N','20150114224731',22643845,'0.2'),(22644317,18322925,'./addons/member_control','N','20150114224850',22644546,'0.1'),(22646356,18322943,'./modules/member/skins/sketchbook5_member_skin','N','20150116155848',22718814,'0.4.5'),(22646443,18322943,'./modules/communication/skins/sketchbook5_communication_skin','N','20150116035427',22718953,'0.4.5'),(22646468,18994170,'./modules/member/m.skins/sketchbook5_member_m.skin','N','20150116163244',22719660,'0.4.6'),(22646488,18994170,'./modules/communication/m.skins/sketchbook5_communication_m.skin','N','20150116163252',22719741,'0.4.6'),(22648755,18322923,'./modules/upgletyle_plugin_daumview','N','20150111225117',22648765,'0.1.0.b1'),(22648862,18322925,'./addons/robotcontrol','N','20150117053433',22649123,'1.1.0'),(22649096,18322925,'./addons/fa_loader','N','20150117022820',22754343,'4.2.0'),(22649328,18322925,'./addons/checkkorean','N','20150117015814',22651662,'1.1'),(22650410,18322925,'./addons/login_defencer','N','20150116015956',22650418,'1.0'),(22651543,18322954,'./layouts/flat_series','N','20150117001329',22754140,'1.0.22'),(22651552,18322950,'./widgets/login_info/skins/flat_series','N','20150117013832',22744104,'1.0.1'),(22652987,18322925,'./addons/confirm_declare','N','20150114231115',22652996,'1.0'),(22653121,18322923,'./modules/xpay','N','20150116154227',22681674,'1.0'),(22653449,18322925,'./addons/block_ip','N','20150116031512',22754110,'2.0'),(22654408,18322925,'./addons/authentication_change','N','20150116192254',22654433,'0.1'),(22655078,18322954,'./layouts/emergence','N','20150115115327',22660012,'1.0.0'),(22657234,18322925,'./addons/xdt_google_analytics','N','20150117052212',22754376,'1.1'),(22658404,18994170,'./modules/board/m.skins/sosifam_memo','N','20150117015051',22738369,'0.5'),(22658524,18322927,'./widgets/hb_bank','N','20150116175045',22658668,'0.1'),(22660923,18994172,'./m.layouts/phizMobileThemes','N','20150117052802',22754202,'1.2'),(22660940,18994170,'./modules/member/m.skins/phizMobile','N','20150117025824',22660950,'1.0'),(22660953,18994170,'./modules/communication/m.skin/phizMobile','N','20150116210157',22660956,'1.0'),(22664861,18322927,'./widgets/cameronSlider','N','20150117054649',22754523,'1.0.2'),(22664862,18322950,'./widgets/cameronSlider/skins/cameraSlider','N','20150117044606',22754329,'1.0.1'),(22665526,18322950,'./widgets/cameronSlider/skins/bxSlider','N','20150116233843',22754330,'1.0.1'),(22665670,18322950,'./widgets/cameronSlider/skins/FlexSlider2','N','20150116232946',22754331,'1.0.1'),(22669010,18322954,'./layouts/css3_simple','N','20150116194635',22687348,'1.1'),(22672196,18322925,'./addons/new_document_notify','N','20150117022923',22754335,'2.0'),(22673162,18322925,'./addons/fileicon','N','20150113102659',22716823,'1.1'),(22673736,18322925,'./addons/jqueryuicdn','N','20150116162432',22673740,'1.0'),(22677441,18322925,'./addons/jquerycdn','N','20150116174632',22714080,'1.0.3'),(22678527,18322954,'./layouts/awake2','N','20150117044730',22678540,'1.6'),(22678880,18322925,'./addons/jsecure_xe','N','20150116021058',22684436,'0.2'),(22690074,18322923,'./modules/sejin7940_vote','N','20150116134849',22754377,'1.3'),(22692901,18322927,'./widgets/srchat_count','N','20150116164329',22692906,'1.0'),(22694914,18322954,'./layouts/xdt_sewol','N','20150114220302',22715019,'1.1'),(22703904,18322925,'./addons/xetrace','N','20150117015706',22703936,'1.0.0'),(22705169,18322923,'./modules/moneysend','N','20150116224143',22705176,'0.0.1'),(22706212,18322925,'./addons/hide_mid','N','20150116135340',22706230,'0.1.0'),(22711628,18322954,'./layouts/xelab_ll1','N','20150116220542',22712736,'1.0.2'),(22715595,18322925,'./addons/captbha','N','20150112013441',22715603,'0.5'),(22716306,18322954,'./layouts/firstkenta','N','20150117053340',22754179,'1.1'),(22716407,18322925,'./addons/autodeny','N','20150115102001',22716411,'0.7'),(22718477,18322925,'./addons/fa_fileicon','N','20150114232307',22754338,'1.1.2'),(22720710,18322943,'./modules/upgletyle/skins/emplode','N','20150114172151',22720745,'0.7'),(22723913,18322925,'./addons/dyform_no_spam','N','20150117014703',22754375,'0.3.3'),(22726124,18322923,'./modules/ggmailing','N','20150117025248',22754515,'0.3.7'),(22730394,18322943,'./modules/sejin7940_comment/skins/sketchbook5_mycomment_skin','N','20150114204419',22730414,'1.0.0'),(22730395,18994170,'./modules/sejin7940_comment/m.skins/sketchbook5_mycomment_mskin','N','20150116163259',22730475,'1.0.0'),(22730560,18322954,'./layouts/purexe','N','20150116202312',22754180,'1.1'),(22753344,18322954,'./layouts/simple_is_best','N','20150116223819',22754147,'1.0'),(22735026,18322925,'./addons/sejin7940_mobile_resize','N','20150116141819',22735066,'1.0'),(22736227,18322925,'./addons/memberinfo','N','20150117001251',22754342,'1.10'),(22736353,18322925,'./addons/bbCode','N','20150103110400',22736356,'1.0'),(22736372,18322925,'./addons/placeHolders','N','20150112201907',22736378,'1.0'),(22737353,18322977,'./modules/point/icons/semo','N','20150116033416',22737363,'Volkswagen'),(22737874,18322925,'./addons/ggstopspam','N','20150116143129',22737893,'0.1'),(22743728,18322925,'./addons/aa_insert_ad','N','20150117070048',22743740,'1.0.0'),(22744282,18322925,'./addons/stop_spambot_xe','N','20150117051227',22754146,'0.6'),(22745646,18322925,'./addons/point_pang_pang','N','20150115042746',22745649,'0.1.1'),(22752234,18322925,'./addons/block_country','N','20150115205206',22752338,'0.2'),(22753306,18322927,'./widgets/ggboardmailing_widget','N','20150117051508',22754403,'0.2'),(22753312,18322925,'./addons/new_document_notify2','N','20150117044656',22754204,'1.0.12'),(22753313,18322923,'./modules/attendance','N','20150116220641',22754314,'5.0.5'),(22753314,18322923,'./modules/privilege','N','20150116230515',22754353,'0.1.2'),(22753315,18322925,'./addons/sns_card','N','20150116113200',22754099,'1.1'),(22753316,18322954,'./layouts/doorweb_v4','N','20150117052206',22754256,'1.7'),(22753317,18322950,'./widgets/content/skins/doorweb','N','20150117052212',22754080,'1.7'),(22753322,18322954,'./layouts/rkt001','N','20150116194809',22754084,'1.0.0'),(22753326,18322923,'./modules/ajaxboard','N','20150116162120',22754482,'2.1.1'),(22753327,18322950,'./widgets/content/skins/funnyxeGallery','N','20150116175742',22754107,'1.1'),(22753328,18322954,'./layouts/verti','N','20150116114810',22754108,'0.1.0'),(22753334,18322943,'./modules/editor/skins/xpresseditor_datauri','N','20150110154451',22754114,'1.7'),(22753336,18322925,'./addons/font_awesome_new','N','20150115202556',22754115,'1.0'),(22753339,18322954,'./layouts/rkt002','N','20150116170336',22754118,'1.0.0'),(22753340,18322925,'./addons/font_nanum_gothic','N','20150116225511',22754124,'1.0'),(22753341,18322954,'./layouts/The_Simple_Classic_Lite','N','20150117003637',22754141,'1.1'),(22753342,18322927,'./widgets/slideimg','N','20150116210945',22754339,'1.1.2'),(22753343,18322925,'./addons/multimedia_thumbnail','N','20150117011127',22754311,'2.0.0'),(22753345,18994172,'./m.layouts/simple_is_best_mobile','N','20150116110834',22754148,'1.0'),(22753346,18322923,'./modules/currency','N','20150117034940',22754151,'1.0'),(22753348,18322923,'./modules/inipay','N','20150116191851',22754422,'1.2'),(22753349,18322923,'./modules/inipaymobile','N','20150116191808',22754154,'1.0'),(22753350,18322923,'./modules/kcp','N','20150117013933',22754421,'1.1'),(22753351,18322923,'./modules/cashpay','N','20150116191820',22754156,'1.0'),(22753352,18322923,'./modules/paypal','N','20150116222847',22754157,'1.0'),(22753353,18322954,'./layouts/kbfree','N','20150116193609',22754197,'1.2'),(22753428,18322927,'./widgets/sejin7940_navermap','N','20150116152454',22754347,'0.2.1'),(22753356,18322923,'./modules/gdata','N','20150116214256',22754185,'0.5'),(22753358,18322927,'./widgets/picasa_recent_images','N','20150115214047',22754183,'0.1'),(22753359,18322925,'./addons/my_reading','N','20150116220029',22754203,'1.1'),(22753373,18322925,'./addons/updatecategory','N','20150117033018',22754190,'1.0'),(22753374,18322927,'./widgets/xelayout_weather','N','20150116142708',22754198,'0.2'),(22753381,18322925,'./addons/sxe_block_write','N','20150109002937',22754220,'0.2'),(22753382,18322925,'./addons/sxe_now_connected','N','20150115235250',22754221,'0.2'),(22753386,18322954,'./layouts/b_black','N','20150116194050',22754231,'1.0'),(22753387,18322925,'./addons/sxe_bbcode_lite','N','20150109002933',22754233,'0.1'),(22753388,18322923,'./modules/sejin7940_nick','N','20150116115451',22754240,'1.0.2'),(22753390,18322925,'./addons/sxe_writing_format','N','20150115141424',22754246,'0.2'),(22753393,18322925,'./addons/sxe_ncenter_plus','N','20150114101602',22754245,'0.2'),(22753396,18322923,'./modules/ximember','N','20150117014326',22754333,'1.4'),(22753397,18322923,'./modules/board_extend','N','20150117014256',22754254,'1.1'),(22753489,18322925,'./addons/member_ajaxboard','N','20150116233001',22754483,'2.1.1'),(22753399,18322943,'./modules/ncenterlite/skins/wild_ones','N','20150117020649',22754258,'0.1'),(22753403,18322927,'./widgets/opageWidget','N','20150115231811',22754271,'1.0'),(22753406,18322929,'./modules/editor/components/map_components','N','20150116175249',22754298,'1.1'),(22753408,18322925,'./addons/member_extra_vars_check','N','20150115151400',22754283,'1.0'),(22753411,18322925,'./addons/block_control','N','20150117042851',22754291,'1.0'),(22753413,18322927,'./widgets/sitemap_selectbox','N','20150116141943',22754293,'0.1.0'),(22753416,18322925,'./addons/auto_multimedia','N','20150116160455',22754308,'1.0'),(22753417,18322925,'./addons/addon_write_insert_media','N','20150116094345',22754309,'0.1'),(22753419,18322925,'./addons/addon_insert_video','N','20150117060303',22754313,'0.1'),(22753420,18322923,'./modules/pointhistory','N','20150117060621',22754374,'0.1.4'),(22753422,18322950,'./widgets/treasurej_popular/skins/smart_popular_tabs','N','20150117002023',22754327,'1.1'),(22753429,18322943,'./modules/board/skins/sosi_memo','N','20150117014717',22754360,'0.1'),(22753437,18322950,'./widgets/calendar/skins/UXF_CALENDER_TYPE_01','N','20150117062120',22754368,'1.1.0'),(22753449,18322925,'./addons/xss_session_protector','N','20150116095702',22754383,'0.1'),(22753457,18322954,'./layouts/simplicity','N','20150117002317',22754391,'1.0'),(22753458,18322925,'./addons/youtube_control','N','20150117062945',22754401,'1.2'),(22753459,18322923,'./modules/maps','N','20150117055803',22754414,'1.1.1'),(22753460,18322927,'./widgets/maps_widget','N','20150116200026',22754453,'1.1.2'),(22753462,18322925,'./addons/download_wanna_reply','N','20150116174957',22754407,'1.0'),(22753463,18322925,'./addons/image_preview','N','20150116175049',22754413,'1.0'),(22753464,18322943,'./modules/board/skins/mixitup','N','20150116175731',22754418,'1.0'),(22753465,18322923,'./modules/easyxe','N','20150117061613',22754542,'1.20.1'),(22753466,18322925,'./addons/auto_nick','N','20150114214004',22754428,'1.0'),(22753474,18322943,'./modules/lottery/skins/eond_v1','N','20150116072946',22754439,'0.1'),(22753475,18322943,'./modules/board/skins/bbsmusic','N','20150116234536',22754456,'1.7.0'),(22753476,18322954,'./layouts/CustomStrap','N','20150117021500',22754447,'1.0'),(22753478,18322927,'./widgets/ggwmmemberexcel_widget','N','20150115175608',22754450,'0.1'),(22753481,18322925,'./addons/sejin7940_kakao_link','N','20150116193754',22754488,'0.5.2'),(22753482,18322925,'./addons/tag_relation_add','N','20150117052406',22754457,'1.4.1'),(22753484,18322925,'./addons/html5multimedia_flash','N','20150116133348',22754465,'1.0.0'),(22753488,18322923,'./modules/sitemap','N','20150117023345',22754508,'1.2'),(22753492,18322925,'./addons/okiz_easyadmin_logout','N','20150116204622',22754522,'1.1'),(22753493,18322929,'./modules/editor/components/search_keyword','N','20150115140645',22754476,'1.0'),(22753497,18994170,'./modules/board/m.skins/ms_m_board','N','20150117014350',22754517,'1.0'),(22753498,18322950,'./widgets/login_info/skins/eond_ppomppu','N','20150116191953',22754494,'1.0'),(22753500,18322925,'./addons/sejin7940_addvote','N','20150116211924',22754501,'1.1'),(22753501,18322925,'./addons/ssl_support','N','20150117004449',22754509,'0.1'),(22753502,18322927,'./widgets/ggboardinsert_widget','N','20150117063711',22754540,'0.4'),(22753504,18322923,'./modules/timeline','N','20150117064714',22754546,'1.0.0-beta2'),(22753508,18322925,'./addons/sejin7940_all_notice','N','20150117023007',22754528,'1.1'),(22753510,18322925,'./addons/member_block_addon','N','20150117022833',22754530,'0.2'),(22753515,18322925,'./addons/denied_word','N','20150117045425',22754545,'1.001'),(22753517,18322923,'./modules/bulkmsg','N','20150117021340',22754543,'1.0'); /*!40000 ALTER TABLE `xe_autoinstall_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_comment_declared` -- DROP TABLE IF EXISTS `xe_comment_declared`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_comment_declared` ( `comment_srl` bigint(11) NOT NULL, `declared_count` bigint(11) NOT NULL default '0', PRIMARY KEY (`comment_srl`), KEY `idx_declared_count` (`declared_count`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_comment_declared` -- LOCK TABLES `xe_comment_declared` WRITE; /*!40000 ALTER TABLE `xe_comment_declared` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_comment_declared` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_comment_declared_log` -- DROP TABLE IF EXISTS `xe_comment_declared_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_comment_declared_log` ( `comment_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_comment_srl` (`comment_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_comment_declared_log` -- LOCK TABLES `xe_comment_declared_log` WRITE; /*!40000 ALTER TABLE `xe_comment_declared_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_comment_declared_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_comment_voted_log` -- DROP TABLE IF EXISTS `xe_comment_voted_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_comment_voted_log` ( `comment_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, `point` bigint(11) NOT NULL, KEY `idx_comment_srl` (`comment_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_comment_voted_log` -- LOCK TABLES `xe_comment_voted_log` WRITE; /*!40000 ALTER TABLE `xe_comment_voted_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_comment_voted_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_comments` -- DROP TABLE IF EXISTS `xe_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_comments` ( `comment_srl` bigint(11) NOT NULL, `module_srl` bigint(11) NOT NULL default '0', `document_srl` bigint(11) NOT NULL default '0', `parent_srl` bigint(11) NOT NULL default '0', `is_secret` char(1) NOT NULL default 'N', `content` longtext NOT NULL, `voted_count` bigint(11) NOT NULL default '0', `blamed_count` bigint(11) NOT NULL default '0', `notify_message` char(1) NOT NULL default 'N', `password` varchar(60) default NULL, `user_id` varchar(80) default NULL, `user_name` varchar(80) NOT NULL, `nick_name` varchar(80) NOT NULL, `member_srl` bigint(11) NOT NULL, `email_address` varchar(250) NOT NULL, `homepage` varchar(250) NOT NULL, `uploaded_count` bigint(11) NOT NULL default '0', `regdate` varchar(14) default NULL, `last_update` varchar(14) default NULL, `ipaddress` varchar(128) NOT NULL, `list_order` bigint(11) NOT NULL, `status` bigint(1) NOT NULL default '1', PRIMARY KEY (`comment_srl`), UNIQUE KEY `idx_module_list_order` (`module_srl`,`list_order`), KEY `idx_module_srl` (`module_srl`), KEY `idx_document_srl` (`document_srl`), KEY `idx_voted_count` (`voted_count`), KEY `idx_blamed_count` (`blamed_count`), KEY `idx_member_srl` (`member_srl`), KEY `idx_uploaded_count` (`uploaded_count`), KEY `idx_regdate` (`regdate`), KEY `idx_last_update` (`last_update`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_list_order` (`list_order`), KEY `idx_status` (`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_comments` -- LOCK TABLES `xe_comments` WRITE; /*!40000 ALTER TABLE `xe_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_comments_list` -- DROP TABLE IF EXISTS `xe_comments_list`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_comments_list` ( `comment_srl` bigint(11) NOT NULL, `document_srl` bigint(11) NOT NULL default '0', `head` bigint(11) NOT NULL default '0', `arrange` bigint(11) NOT NULL default '0', `module_srl` bigint(11) NOT NULL default '0', `regdate` varchar(14) default NULL, `depth` bigint(11) NOT NULL default '0', PRIMARY KEY (`comment_srl`), KEY `idx_list` (`document_srl`,`head`,`arrange`), KEY `idx_date` (`module_srl`,`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_comments_list` -- LOCK TABLES `xe_comments_list` WRITE; /*!40000 ALTER TABLE `xe_comments_list` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_comments_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_counter_log` -- DROP TABLE IF EXISTS `xe_counter_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_counter_log` ( `site_srl` bigint(11) NOT NULL default '0', `ipaddress` varchar(250) NOT NULL, `regdate` varchar(14) default NULL, `user_agent` varchar(250) default NULL, KEY `idx_site_counter_log` (`site_srl`,`ipaddress`), KEY `idx_counter_log` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_counter_log` -- LOCK TABLES `xe_counter_log` WRITE; /*!40000 ALTER TABLE `xe_counter_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_counter_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_counter_site_status` -- DROP TABLE IF EXISTS `xe_counter_site_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_counter_site_status` ( `site_srl` bigint(11) NOT NULL, `regdate` bigint(11) NOT NULL, `unique_visitor` bigint(11) default '0', `pageview` bigint(11) default '0', UNIQUE KEY `site_status` (`site_srl`,`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_counter_site_status` -- LOCK TABLES `xe_counter_site_status` WRITE; /*!40000 ALTER TABLE `xe_counter_site_status` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_counter_site_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_counter_status` -- DROP TABLE IF EXISTS `xe_counter_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_counter_status` ( `regdate` bigint(11) NOT NULL, `unique_visitor` bigint(11) default '0', `pageview` bigint(11) default '0', PRIMARY KEY (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_counter_status` -- LOCK TABLES `xe_counter_status` WRITE; /*!40000 ALTER TABLE `xe_counter_status` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_counter_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_aliases` -- DROP TABLE IF EXISTS `xe_document_aliases`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_aliases` ( `alias_srl` bigint(11) NOT NULL default '0', `module_srl` bigint(11) NOT NULL default '0', `document_srl` bigint(11) NOT NULL default '0', `alias_title` varchar(250) NOT NULL, PRIMARY KEY (`alias_srl`), UNIQUE KEY `idx_module_title` (`module_srl`,`alias_title`), KEY `idx_module_srl` (`module_srl`), KEY `idx_document_srl` (`document_srl`), KEY `idx_alias_title` (`alias_title`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_aliases` -- LOCK TABLES `xe_document_aliases` WRITE; /*!40000 ALTER TABLE `xe_document_aliases` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_aliases` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_categories` -- DROP TABLE IF EXISTS `xe_document_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_categories` ( `category_srl` bigint(11) NOT NULL default '0', `module_srl` bigint(11) NOT NULL default '0', `parent_srl` bigint(12) NOT NULL default '0', `title` varchar(250) default NULL, `expand` char(1) default 'N', `document_count` bigint(11) NOT NULL default '0', `regdate` varchar(14) default NULL, `last_update` varchar(14) default NULL, `list_order` bigint(11) NOT NULL, `group_srls` text, `color` varchar(11) default NULL, `description` varchar(200) default NULL, PRIMARY KEY (`category_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_categories` -- LOCK TABLES `xe_document_categories` WRITE; /*!40000 ALTER TABLE `xe_document_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_declared` -- DROP TABLE IF EXISTS `xe_document_declared`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_declared` ( `document_srl` bigint(11) NOT NULL, `declared_count` bigint(11) NOT NULL default '0', PRIMARY KEY (`document_srl`), KEY `idx_declared_count` (`declared_count`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_declared` -- LOCK TABLES `xe_document_declared` WRITE; /*!40000 ALTER TABLE `xe_document_declared` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_declared` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_declared_log` -- DROP TABLE IF EXISTS `xe_document_declared_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_declared_log` ( `document_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_document_srl` (`document_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_declared_log` -- LOCK TABLES `xe_document_declared_log` WRITE; /*!40000 ALTER TABLE `xe_document_declared_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_declared_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_extra_keys` -- DROP TABLE IF EXISTS `xe_document_extra_keys`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_extra_keys` ( `module_srl` bigint(11) NOT NULL, `var_idx` bigint(11) NOT NULL, `var_name` varchar(250) NOT NULL, `var_type` varchar(50) NOT NULL, `var_is_required` char(1) NOT NULL default 'N', `var_search` char(1) NOT NULL default 'N', `var_default` text, `var_desc` text, `eid` varchar(40) default NULL, UNIQUE KEY `unique_module_keys` (`module_srl`,`var_idx`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_extra_keys` -- LOCK TABLES `xe_document_extra_keys` WRITE; /*!40000 ALTER TABLE `xe_document_extra_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_extra_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_extra_vars` -- DROP TABLE IF EXISTS `xe_document_extra_vars`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_extra_vars` ( `module_srl` bigint(11) NOT NULL, `document_srl` bigint(11) NOT NULL, `var_idx` bigint(11) NOT NULL, `lang_code` varchar(10) NOT NULL, `value` longtext, `eid` varchar(40) default NULL, UNIQUE KEY `unique_extra_vars` (`module_srl`,`document_srl`,`var_idx`,`lang_code`), KEY `idx_document_list_order` (`document_srl`,`module_srl`,`var_idx`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_extra_vars` -- LOCK TABLES `xe_document_extra_vars` WRITE; /*!40000 ALTER TABLE `xe_document_extra_vars` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_extra_vars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_histories` -- DROP TABLE IF EXISTS `xe_document_histories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_histories` ( `history_srl` bigint(11) NOT NULL default '0', `module_srl` bigint(11) NOT NULL default '0', `document_srl` bigint(11) NOT NULL default '0', `content` longtext, `nick_name` varchar(80) NOT NULL, `member_srl` bigint(11) default NULL, `regdate` varchar(14) default NULL, `ipaddress` varchar(128) NOT NULL, PRIMARY KEY (`history_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_document_srl` (`document_srl`), KEY `idx_regdate` (`regdate`), KEY `idx_ipaddress` (`ipaddress`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_histories` -- LOCK TABLES `xe_document_histories` WRITE; /*!40000 ALTER TABLE `xe_document_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_readed_log` -- DROP TABLE IF EXISTS `xe_document_readed_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_readed_log` ( `document_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_document_srl` (`document_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_readed_log` -- LOCK TABLES `xe_document_readed_log` WRITE; /*!40000 ALTER TABLE `xe_document_readed_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_readed_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_trash` -- DROP TABLE IF EXISTS `xe_document_trash`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_trash` ( `trash_srl` bigint(11) NOT NULL default '0', `document_srl` bigint(11) NOT NULL default '0', `module_srl` bigint(11) NOT NULL default '0', `trash_date` varchar(14) default NULL, `description` text, `ipaddress` varchar(128) NOT NULL, `user_id` varchar(80) default NULL, `user_name` varchar(80) NOT NULL, `nick_name` varchar(80) NOT NULL, `member_srl` bigint(11) NOT NULL, PRIMARY KEY (`trash_srl`), KEY `idx_document_srl` (`document_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_trash_date` (`trash_date`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_member_srl` (`member_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_trash` -- LOCK TABLES `xe_document_trash` WRITE; /*!40000 ALTER TABLE `xe_document_trash` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_trash` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_document_voted_log` -- DROP TABLE IF EXISTS `xe_document_voted_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_document_voted_log` ( `document_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, `point` bigint(11) NOT NULL, KEY `idx_document_srl` (`document_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_document_voted_log` -- LOCK TABLES `xe_document_voted_log` WRITE; /*!40000 ALTER TABLE `xe_document_voted_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_document_voted_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_documents` -- DROP TABLE IF EXISTS `xe_documents`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_documents` ( `document_srl` bigint(11) NOT NULL, `module_srl` bigint(11) NOT NULL default '0', `category_srl` bigint(11) NOT NULL default '0', `lang_code` varchar(10) NOT NULL default '', `is_notice` char(1) NOT NULL default 'N', `title` varchar(250) default NULL, `title_bold` char(1) NOT NULL default 'N', `title_color` varchar(7) default NULL, `content` longtext NOT NULL, `readed_count` bigint(11) NOT NULL default '0', `voted_count` bigint(11) NOT NULL default '0', `blamed_count` bigint(11) NOT NULL default '0', `comment_count` bigint(11) NOT NULL default '0', `trackback_count` bigint(11) NOT NULL default '0', `uploaded_count` bigint(11) NOT NULL default '0', `password` varchar(60) default NULL, `user_id` varchar(80) default NULL, `user_name` varchar(80) NOT NULL, `nick_name` varchar(80) NOT NULL, `member_srl` bigint(11) NOT NULL, `email_address` varchar(250) NOT NULL, `homepage` varchar(250) NOT NULL, `tags` text, `extra_vars` text, `regdate` varchar(14) default NULL, `last_update` varchar(14) default NULL, `last_updater` varchar(80) default NULL, `ipaddress` varchar(128) NOT NULL, `list_order` bigint(11) NOT NULL, `update_order` bigint(11) NOT NULL, `allow_trackback` char(1) NOT NULL default 'Y', `notify_message` char(1) NOT NULL default 'N', `status` varchar(20) default 'PUBLIC', `comment_status` varchar(20) default 'ALLOW', PRIMARY KEY (`document_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_category_srl` (`category_srl`), KEY `idx_is_notice` (`is_notice`), KEY `idx_readed_count` (`readed_count`), KEY `idx_voted_count` (`voted_count`), KEY `idx_blamed_count` (`blamed_count`), KEY `idx_comment_count` (`comment_count`), KEY `idx_trackback_count` (`trackback_count`), KEY `idx_uploaded_count` (`uploaded_count`), KEY `idx_member_srl` (`member_srl`), KEY `idx_regdate` (`regdate`), KEY `idx_last_update` (`last_update`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_list_order` (`list_order`), KEY `idx_update_order` (`update_order`), KEY `idx_module_list_order` (`module_srl`,`list_order`), KEY `idx_module_update_order` (`module_srl`,`update_order`), KEY `idx_module_readed_count` (`module_srl`,`readed_count`), KEY `idx_module_voted_count` (`module_srl`,`voted_count`), KEY `idx_module_notice` (`module_srl`,`is_notice`), KEY `idx_module_document_srl` (`module_srl`,`document_srl`), KEY `idx_module_blamed_count` (`module_srl`,`blamed_count`), KEY `idx_module_status` (`module_srl`,`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_documents` -- LOCK TABLES `xe_documents` WRITE; /*!40000 ALTER TABLE `xe_documents` DISABLE KEYS */; INSERT INTO `xe_documents` VALUES (70,65,0,'en','N','Welcome mobile XE','N','N','<link rel=\"stylesheet\" href=\"./modules/install/script/welcome_content/welcome.css\" />\n<article class=\"welcomeXE\">\n <h1>XE core \'1.7.8\' has been successfully installed!</h1>\n <section class=\"i1\">\n <h1>Change the site title</h1>\n <p>After login as administrator, you can change the \'site title\' as \'<a href=\"/xe/index.php?module=admin&act=dispAdminConfigGeneral\">Admin > Settings > General > Primary...</a>\' progress.</p>\n <a href=\"/xe/index.php?module=admin&act=dispAdminConfigGeneral\">Settings</a>\n </section>\n <section class=\"i2\">\n <h1>Change the menu structure</h1>\n <p>After login as administrator, you can change the \'menu structure\' as \'<a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteMap\">Admin > Menu > Menu Editor...</a>\' progress.</p>\n <a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteMap\">Settings</a>\n </section>\n <section class=\"i3\">\n <h1>Change the layout design</h1>\n <p>After login as administrator, you can change the \'layout design\' as \'<a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteDesign\">Admin > Menu > Site Design...</a>\' progress.</p>\n <a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteDesign\">Settings</a>\n </section>\n <section class=\"i4\">\n <h1>Main page replacement</h1>\n <p>After login as administrator, you can change the \'main page\' as \'<a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteMap\">Admin > Menu > Menu Editor...</a>\' progress.</p>\n <a href=\"/xe/index.php?module=admin&act=dispMenuAdminSiteMap\">Settings</a>\n </section>\n <section class=\"i5\">\n <h1>Main page decoration</h1>\n <p>After login as administrator, you can edit the \'main page\' by click the \'<a href=\"/xe/index.php?act=dispPageAdminContentModify\">Modify...</a>\' button.</p>\n <a href=\"/xe/index.php?act=dispPageAdminContentModify\">Settings</a>\n </section>\n <section class=\"i6\">\n <h1>Module installation</h1>\n <p>After login as administrator, you can install the \'module\' as \'<a href=\"/xe/index.php?module=admin&act=dispAutoinstallAdminIndex\">Admin > Advanced > Easy install...</a>\' progress.</p>\n <a href=\"/xe/index.php?module=admin&act=dispAutoinstallAdminIndex\">Settings</a>\n </section>\n</article>\n',0,0,0,0,0,0,NULL,'htcho','admin','jamesc',4,'cht04@hotmail.com','',NULL,'N;','20150114171537','20150114171537',NULL,'24.30.225.80',-70,-70,'N','N','PUBLIC','DENY'); /*!40000 ALTER TABLE `xe_documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_editor_autosave` -- DROP TABLE IF EXISTS `xe_editor_autosave`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_editor_autosave` ( `member_srl` bigint(11) default '0', `ipaddress` varchar(128) default NULL, `module_srl` bigint(11) default NULL, `document_srl` bigint(11) NOT NULL default '0', `title` varchar(250) default NULL, `content` longtext NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_module_srl` (`module_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_editor_autosave` -- LOCK TABLES `xe_editor_autosave` WRITE; /*!40000 ALTER TABLE `xe_editor_autosave` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_editor_autosave` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_editor_components` -- DROP TABLE IF EXISTS `xe_editor_components`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_editor_components` ( `component_name` varchar(250) NOT NULL, `enabled` char(1) NOT NULL default 'N', `extra_vars` text, `list_order` bigint(11) NOT NULL, PRIMARY KEY (`component_name`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_editor_components` -- LOCK TABLES `xe_editor_components` WRITE; /*!40000 ALTER TABLE `xe_editor_components` DISABLE KEYS */; INSERT INTO `xe_editor_components` VALUES ('colorpicker_text','Y',NULL,41),('colorpicker_bg','Y',NULL,43),('emoticon','Y',NULL,45),('url_link','Y',NULL,47),('image_link','Y',NULL,49),('multimedia_link','Y',NULL,51),('quotation','Y',NULL,53),('table_maker','Y',NULL,55),('poll_maker','Y',NULL,57),('image_gallery','Y',NULL,59); /*!40000 ALTER TABLE `xe_editor_components` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_editor_components_site` -- DROP TABLE IF EXISTS `xe_editor_components_site`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_editor_components_site` ( `site_srl` bigint(11) NOT NULL default '0', `component_name` varchar(250) NOT NULL, `enabled` char(1) NOT NULL default 'N', `extra_vars` text, `list_order` bigint(11) NOT NULL, UNIQUE KEY `unique_component_site` (`site_srl`,`component_name`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_editor_components_site` -- LOCK TABLES `xe_editor_components_site` WRITE; /*!40000 ALTER TABLE `xe_editor_components_site` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_editor_components_site` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_files` -- DROP TABLE IF EXISTS `xe_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_files` ( `file_srl` bigint(11) NOT NULL, `upload_target_srl` bigint(11) NOT NULL default '0', `upload_target_type` char(3) default NULL, `sid` varchar(60) default NULL, `module_srl` bigint(11) NOT NULL default '0', `member_srl` bigint(11) NOT NULL, `download_count` bigint(11) NOT NULL default '0', `direct_download` char(1) NOT NULL default 'N', `source_filename` varchar(250) default NULL, `uploaded_filename` varchar(250) default NULL, `file_size` bigint(11) NOT NULL default '0', `comment` varchar(250) default NULL, `isvalid` char(1) default 'N', `regdate` varchar(14) default NULL, `ipaddress` varchar(128) NOT NULL, PRIMARY KEY (`file_srl`), KEY `idx_upload_target_srl` (`upload_target_srl`), KEY `idx_upload_target_type` (`upload_target_type`), KEY `idx_module_srl` (`module_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_download_count` (`download_count`), KEY `idx_file_size` (`file_size`), KEY `idx_is_valid` (`isvalid`), KEY `idx_regdate` (`regdate`), KEY `idx_ipaddress` (`ipaddress`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_files` -- LOCK TABLES `xe_files` WRITE; /*!40000 ALTER TABLE `xe_files` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_lang` -- DROP TABLE IF EXISTS `xe_lang`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_lang` ( `site_srl` bigint(11) NOT NULL, `name` varchar(255) NOT NULL, `lang_code` varchar(10) NOT NULL, `value` text, KEY `idx_lang` (`site_srl`,`name`,`lang_code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_lang` -- LOCK TABLES `xe_lang` WRITE; /*!40000 ALTER TABLE `xe_lang` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_lang` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_layouts` -- DROP TABLE IF EXISTS `xe_layouts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_layouts` ( `layout_srl` bigint(12) NOT NULL, `site_srl` bigint(11) NOT NULL default '0', `layout` varchar(250) default NULL, `title` varchar(250) default NULL, `extra_vars` text, `layout_path` varchar(250) default NULL, `module_srl` bigint(12) default '0', `regdate` varchar(14) default NULL, `layout_type` char(1) default 'P', PRIMARY KEY (`layout_srl`), KEY `menu_site_srl` (`site_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_layouts` -- LOCK TABLES `xe_layouts` WRITE; /*!40000 ALTER TABLE `xe_layouts` DISABLE KEYS */; INSERT INTO `xe_layouts` VALUES (67,0,'default','default','O:8:\"stdClass\":4:{s:3:\"GNB\";i:64;s:11:\"LAYOUT_TYPE\";s:9:\"MAIN_PAGE\";s:10:\"VISUAL_USE\";s:3:\"YES\";s:14:\"menu_name_list\";a:1:{i:64;s:12:\"Welcome menu\";}}',NULL,0,'20150114171535','P'),(68,0,'default','welcome_mobile_layout','O:8:\"stdClass\":4:{s:3:\"GNB\";i:64;s:11:\"LAYOUT_TYPE\";s:9:\"MAIN_PAGE\";s:10:\"VISUAL_USE\";s:3:\"YES\";s:14:\"menu_name_list\";a:1:{i:64;s:12:\"Welcome menu\";}}',NULL,0,'20150114171535','M'),(104,0,'user_layout','Test Layout',NULL,NULL,0,'20150115121551','P'),(105,0,'xe_official','XE Official website layout',NULL,NULL,0,'20150115121551','P'),(163,0,'simplicity','SIMPLICITY',NULL,NULL,0,'20150115173830','P'),(109,0,'style_a_lite','style_a_lite','O:8:\"stdClass\":9:{s:16:\"error_return_url\";s:4:\"/xe/\";s:7:\"ruleset\";s:12:\"updateLayout\";s:12:\"_layout_type\";s:1:\"P\";s:15:\"xe_validator_id\";s:37:\"modules/layout/tpl/lyaout_info_view/1\";s:10:\"body_style\";s:4:\"main\";s:3:\"top\";s:3:\"yes\";s:12:\"banner_style\";s:1:\"y\";s:9:\"main_menu\";s:2:\"-1\";s:14:\"menu_name_list\";a:1:{i:64;s:12:\"Welcome menu\";}}',NULL,0,'20150115162548','P'),(164,0,'phizRWDThemes','phiz Responsive Themes',NULL,NULL,0,'20150115173835','P'),(165,0,'firstkenta','firstkenta','O:8:\"stdClass\":7:{s:16:\"error_return_url\";s:4:\"/xe/\";s:7:\"ruleset\";s:12:\"updateLayout\";s:12:\"_layout_type\";s:1:\"P\";s:15:\"xe_validator_id\";s:37:\"modules/layout/tpl/lyaout_info_view/1\";s:4:\"type\";s:4:\"main\";s:9:\"main_menu\";s:2:\"64\";s:14:\"menu_name_list\";a:1:{i:64;s:4:\"Main\";}}',NULL,0,'20150115174420','P'),(166,0,'kbfree','kbfree',NULL,NULL,0,'20150115175458','P'),(167,0,'xecenter','쿡래빗 XE 센터','O:8:\"stdClass\":159:{s:16:\"error_return_url\";s:4:\"/xe/\";s:7:\"ruleset\";s:12:\"updateLayout\";s:12:\"_layout_type\";s:1:\"P\";s:15:\"xe_validator_id\";s:37:\"modules/layout/tpl/lyaout_info_view/1\";s:11:\"layout_type\";s:4:\"main\";s:11:\"layout_font\";s:13:\"굴림, Gulim\";s:13:\"screen_width1\";s:3:\"980\";s:13:\"screen_width2\";s:4:\"1200\";s:13:\"screen_width3\";s:4:\"1300\";s:13:\"screen_height\";s:2:\"10\";s:16:\"screen_width_use\";s:3:\"yes\";s:17:\"screen_height_use\";s:3:\"yes\";s:18:\"screen_content_use\";s:3:\"yes\";s:15:\"login_info_type\";s:4:\"icon\";s:10:\"search_use\";s:3:\"yes\";s:10:\"signin_use\";s:3:\"yes\";s:23:\"login_info_language_use\";s:3:\"yes\";s:19:\"menu_bottom_bar_use\";s:2:\"no\";s:15:\"menu_bottom_use\";s:2:\"no\";s:12:\"site_map_use\";s:2:\"no\";s:15:\"move_target_use\";s:2:\"no\";s:13:\"sns_login_use\";s:2:\"no\";s:17:\"colorset_test_use\";s:2:\"no\";s:13:\"admin_bar_use\";s:3:\"yes\";s:16:\"error_msg_effect\";s:3:\"yes\";s:12:\"site_pattern\";s:12:\"pattern1.png\";s:19:\"site_image_autosize\";s:2:\"no\";s:21:\"update_new_widget_img\";s:11:\"simple0.png\";s:14:\"enjoy_site_use\";s:2:\"no\";s:16:\"enjoy_site_start\";s:6:\"bottom\";s:15:\"enjoy_site_auto\";s:3:\"yes\";s:24:\"enjoy_site_text_url_type\";s:6:\"direct\";s:20:\"enjoy_site_login_use\";s:3:\"yes\";s:21:\"enjoy_site_signup_use\";s:3:\"yes\";s:20:\"enjoy_site_close_use\";s:3:\"yes\";s:14:\"login_site_use\";s:3:\"yes\";s:16:\"login_site_start\";s:6:\"bottom\";s:15:\"login_site_auto\";s:3:\"yes\";s:24:\"login_site_text_url_type\";s:6:\"direct\";s:20:\"login_site_close_use\";s:3:\"yes\";s:20:\"login_site_btn1_link\";s:6:\"direct\";s:20:\"login_site_btn2_link\";s:6:\"direct\";s:20:\"login_site_btn3_link\";s:6:\"direct\";s:14:\"simple_bar_use\";s:2:\"no\";s:21:\"simple_bar_img_select\";s:14:\"simplebar1.png\";s:17:\"simplebar_etc_use\";s:3:\"yes\";s:26:\"simplebar_link1_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link1_type\";s:5:\"popup\";s:26:\"simplebar_link2_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link2_type\";s:5:\"popup\";s:26:\"simplebar_link3_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link3_type\";s:5:\"popup\";s:26:\"simplebar_link4_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link4_type\";s:5:\"popup\";s:26:\"simplebar_link5_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link5_type\";s:5:\"popup\";s:26:\"simplebar_link6_img_select\";s:11:\"simple0.png\";s:20:\"simplebar_link6_type\";s:5:\"popup\";s:12:\"chat_bar_use\";s:2:\"no\";s:19:\"chat_bar_img_select\";s:9:\"chat0.png\";s:14:\"chat_close_use\";s:3:\"yes\";s:16:\"top_site_map_use\";s:3:\"yes\";s:17:\"top_site_map_open\";s:4:\"fold\";s:18:\"site_map_top_fixed\";s:2:\"no\";s:23:\"site_map_top_text_align\";s:4:\"left\";s:10:\"banner_use\";s:2:\"no\";s:15:\"banner_stop_use\";s:3:\"yes\";s:15:\"banner_sign_use\";s:3:\"yes\";s:14:\"banner_pattern\";s:12:\"pattern0.png\";s:16:\"banner_position1\";s:6:\"center\";s:16:\"banner_position2\";s:6:\"center\";s:17:\"banner_border_use\";s:2:\"no\";s:15:\"banner_text_use\";s:2:\"no\";s:15:\"side_banner_use\";s:2:\"no\";s:15:\"side_banner_fix\";s:3:\"yes\";s:20:\"left_side_banner_use\";s:2:\"no\";s:20:\"left_side_banner_fix\";s:3:\"yes\";s:14:\"menu_top_fixed\";s:3:\"yes\";s:11:\"menu_effect\";s:2:\"00\";s:11:\"menu_height\";s:2:\"50\";s:15:\"menu_top_margin\";s:1:\"0\";s:14:\"menu_font_size\";s:2:\"16\";s:16:\"menu_font_weight\";s:4:\"bold\";s:17:\"menu_font_weight2\";s:4:\"bold\";s:13:\"menu_pipe_use\";s:3:\"yes\";s:16:\"menu_pipe1_color\";s:6:\"000000\";s:18:\"menu_bottom_strong\";s:3:\"yes\";s:12:\"menu_li_type\";s:3:\"fix\";s:14:\"menu2_list_use\";s:3:\"yes\";s:19:\"menu2_list_position\";s:4:\"left\";s:17:\"menu_li_image_use\";s:3:\"yes\";s:20:\"user_pattern_content\";s:12:\"no_image.png\";s:15:\"content_top_use\";s:3:\"yes\";s:23:\"simple_link1_img_select\";s:11:\"simple0.png\";s:17:\"simple_link1_type\";s:5:\"popup\";s:23:\"simple_link2_img_select\";s:11:\"simple0.png\";s:17:\"simple_link2_type\";s:5:\"popup\";s:23:\"simple_link3_img_select\";s:11:\"simple0.png\";s:17:\"simple_link3_type\";s:5:\"popup\";s:23:\"simple_link4_img_select\";s:11:\"simple0.png\";s:17:\"simple_link4_type\";s:5:\"popup\";s:18:\"content_bottom_use\";s:3:\"yes\";s:10:\"subbar_use\";s:2:\"no\";s:15:\"subbar_position\";s:4:\"left\";s:13:\"subbar_select\";s:3:\"yes\";s:13:\"sub_menu_type\";s:6:\"normal\";s:19:\"sub_move_target_use\";s:3:\"yes\";s:20:\"sub_move_target_type\";s:6:\"scroll\";s:12:\"sub_menu_fix\";s:3:\"yes\";s:19:\"sub_menu_fix_effect\";s:6:\"linear\";s:17:\"sub_menu_text_use\";s:3:\"yes\";s:18:\"sub_menu_text_type\";s:6:\"center\";s:14:\"widget_bar_use\";s:2:\"no\";s:11:\"counter_use\";s:2:\"no\";s:16:\"counter_position\";s:6:\"center\";s:16:\"counter_use_user\";s:3:\"yes\";s:16:\"counter_use_page\";s:3:\"yes\";s:16:\"counter_use_info\";s:3:\"yes\";s:17:\"counter_info_user\";s:3:\"yes\";s:21:\"counter_info_document\";s:3:\"yes\";s:20:\"counter_info_comment\";s:3:\"yes\";s:17:\"bottom_widget_use\";s:2:\"no\";s:14:\"bottom_pattern\";s:12:\"no_image.png\";s:20:\"bottom_logo_position\";s:4:\"left\";s:13:\"site_term_use\";s:3:\"yes\";s:20:\"simple_menu_use_wrap\";s:2:\"no\";s:16:\"simple_menu1_use\";s:3:\"yes\";s:16:\"simple_menu1_new\";s:11:\"direct_link\";s:17:\"simple_menu1_icon\";s:11:\"simple1.png\";s:16:\"simple_menu2_use\";s:3:\"yes\";s:16:\"simple_menu2_new\";s:11:\"direct_link\";s:17:\"simple_menu2_icon\";s:11:\"simple1.png\";s:16:\"simple_menu3_use\";s:3:\"yes\";s:16:\"simple_menu3_new\";s:11:\"direct_link\";s:17:\"simple_menu3_icon\";s:11:\"simple1.png\";s:16:\"simple_menu4_use\";s:3:\"yes\";s:16:\"simple_menu4_new\";s:11:\"direct_link\";s:17:\"simple_menu4_icon\";s:11:\"simple1.png\";s:16:\"simple_menu5_use\";s:3:\"yes\";s:16:\"simple_menu5_new\";s:11:\"direct_link\";s:17:\"simple_menu5_icon\";s:11:\"simple1.png\";s:16:\"simple_menu6_use\";s:3:\"yes\";s:16:\"simple_menu6_new\";s:11:\"direct_link\";s:17:\"simple_menu6_icon\";s:11:\"simple1.png\";s:15:\"family_site_use\";s:2:\"no\";s:8:\"colorset\";s:5:\"white\";s:24:\"user_common_colorset_use\";s:2:\"no\";s:22:\"user_main_menu_pattern\";s:12:\"no_image.png\";s:21:\"user_menu_two_pattern\";s:12:\"no_image.png\";s:24:\"user_pattern_content_top\";s:12:\"no_image.png\";s:27:\"user_pattern_content_bottom\";s:12:\"no_image.png\";s:21:\"user_pattern_sub_menu\";s:12:\"no_image.png\";s:24:\"user_bottom_menu_pattern\";s:12:\"no_image.png\";s:29:\"user_common_colorset_font_use\";s:2:\"no\";s:9:\"main_menu\";s:2:\"64\";s:11:\"bottom_menu\";s:1:\"0\";s:17:\"top_site_map_menu\";s:1:\"0\";s:13:\"site_map_menu\";s:1:\"0\";s:14:\"menu_name_list\";a:1:{i:64;s:4:\"Main\";}}',NULL,0,'20150116174222','P'); /*!40000 ALTER TABLE `xe_layouts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member` -- DROP TABLE IF EXISTS `xe_member`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member` ( `member_srl` bigint(11) NOT NULL, `user_id` varchar(80) NOT NULL, `email_address` varchar(250) NOT NULL, `password` varchar(60) NOT NULL, `email_id` varchar(80) NOT NULL, `email_host` varchar(160) default NULL, `user_name` varchar(40) NOT NULL, `nick_name` varchar(40) NOT NULL, `find_account_question` bigint(11) default NULL, `find_account_answer` varchar(250) default NULL, `homepage` varchar(250) default NULL, `blog` varchar(250) default NULL, `birthday` char(8) default NULL, `allow_mailing` char(1) NOT NULL default 'Y', `allow_message` char(1) NOT NULL default 'Y', `denied` char(1) default 'N', `limit_date` varchar(14) default NULL, `regdate` varchar(14) default NULL, `last_login` varchar(14) default NULL, `change_password_date` varchar(14) default NULL, `is_admin` char(1) default 'N', `description` text, `extra_vars` text, `list_order` bigint(11) NOT NULL, PRIMARY KEY (`member_srl`), UNIQUE KEY `unique_user_id` (`user_id`), UNIQUE KEY `unique_email_address` (`email_address`), UNIQUE KEY `unique_nick_name` (`nick_name`), KEY `idx_email_host` (`email_host`), KEY `idx_allow_mailing` (`allow_mailing`), KEY `idx_is_denied` (`denied`), KEY `idx_regdate` (`regdate`), KEY `idx_last_login` (`last_login`), KEY `idx_is_admin` (`is_admin`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member` -- LOCK TABLES `xe_member` WRITE; /*!40000 ALTER TABLE `xe_member` DISABLE KEYS */; INSERT INTO `xe_member` VALUES (4,'htcho','cht04@hotmail.com','5b460bf3f9ba9c5daf09c2eff7b99875','cht04','hotmail.com','admin','jamesc',NULL,NULL,'','',NULL,'N','Y','N',NULL,'20150114171529','20150116174023','20150114171529','Y',NULL,NULL,-4); /*!40000 ALTER TABLE `xe_member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_auth_mail` -- DROP TABLE IF EXISTS `xe_member_auth_mail`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_auth_mail` ( `auth_key` varchar(60) NOT NULL, `member_srl` bigint(11) NOT NULL, `user_id` varchar(80) NOT NULL, `new_password` varchar(80) NOT NULL, `is_register` char(1) default 'N', `regdate` varchar(14) default NULL, UNIQUE KEY `unique_key` (`auth_key`,`member_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_auth_mail` -- LOCK TABLES `xe_member_auth_mail` WRITE; /*!40000 ALTER TABLE `xe_member_auth_mail` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_auth_mail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_autologin` -- DROP TABLE IF EXISTS `xe_member_autologin`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_autologin` ( `autologin_key` varchar(80) NOT NULL, `member_srl` bigint(11) NOT NULL, UNIQUE KEY `unique_key` (`autologin_key`,`member_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_autologin` -- LOCK TABLES `xe_member_autologin` WRITE; /*!40000 ALTER TABLE `xe_member_autologin` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_autologin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_count_history` -- DROP TABLE IF EXISTS `xe_member_count_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_count_history` ( `member_srl` bigint(11) NOT NULL, `content` longtext NOT NULL, `last_update` varchar(14) default NULL, PRIMARY KEY (`member_srl`), KEY `idx_last_update` (`last_update`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_count_history` -- LOCK TABLES `xe_member_count_history` WRITE; /*!40000 ALTER TABLE `xe_member_count_history` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_count_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_denied_nick_name` -- DROP TABLE IF EXISTS `xe_member_denied_nick_name`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_denied_nick_name` ( `nick_name` varchar(80) NOT NULL, `regdate` varchar(14) default NULL, `description` text, PRIMARY KEY (`nick_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_denied_nick_name` -- LOCK TABLES `xe_member_denied_nick_name` WRITE; /*!40000 ALTER TABLE `xe_member_denied_nick_name` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_denied_nick_name` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_denied_user_id` -- DROP TABLE IF EXISTS `xe_member_denied_user_id`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_denied_user_id` ( `user_id` varchar(80) NOT NULL, `regdate` varchar(14) default NULL, `description` text, `list_order` bigint(11) NOT NULL, PRIMARY KEY (`user_id`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_denied_user_id` -- LOCK TABLES `xe_member_denied_user_id` WRITE; /*!40000 ALTER TABLE `xe_member_denied_user_id` DISABLE KEYS */; INSERT INTO `xe_member_denied_user_id` VALUES ('addon','20150114171532','',-5),('admin','20150114171532','',-6),('adminlogging','20150114171532','',-7),('autoinstall','20150114171532','',-8),('board','20150114171532','',-9),('comment','20150114171532','',-10),('communication','20150114171532','',-11),('counter','20150114171532','',-12),('document','20150114171532','',-13),('editor','20150114171532','',-14),('file','20150114171532','',-15),('importer','20150114171532','',-16),('install','20150114171532','',-17),('integration_search','20150114171532','',-18),('krzip','20150114171532','',-19),('layout','20150114171532','',-20),('member','20150114171532','',-21),('menu','20150114171532','',-22),('message','20150114171532','',-23),('module','20150114171532','',-24),('page','20150114171532','',-25),('point','20150114171532','',-26),('poll','20150114171532','',-27),('rss','20150114171532','',-28),('session','20150114171532','',-29),('spamfilter','20150114171532','',-30),('syndication','20150114171532','',-31),('tag','20150114171532','',-32),('trash','20150114171532','',-33),('widget','20150114171532','',-34),('www','20150114171532','',-35),('root','20150114171532','',-36),('administrator','20150114171532','',-37),('telnet','20150114171532','',-38),('ftp','20150114171532','',-39),('http','20150114171532','',-40); /*!40000 ALTER TABLE `xe_member_denied_user_id` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_friend` -- DROP TABLE IF EXISTS `xe_member_friend`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_friend` ( `friend_srl` bigint(11) NOT NULL, `friend_group_srl` bigint(11) NOT NULL default '0', `member_srl` bigint(11) NOT NULL, `target_srl` bigint(11) NOT NULL, `list_order` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`friend_srl`), KEY `idx_friend_group_srl` (`friend_group_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_target_srl` (`target_srl`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_friend` -- LOCK TABLES `xe_member_friend` WRITE; /*!40000 ALTER TABLE `xe_member_friend` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_friend` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_friend_group` -- DROP TABLE IF EXISTS `xe_member_friend_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_friend_group` ( `friend_group_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `title` varchar(250) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`friend_group_srl`), KEY `index_owner_member_srl` (`member_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_friend_group` -- LOCK TABLES `xe_member_friend_group` WRITE; /*!40000 ALTER TABLE `xe_member_friend_group` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_friend_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_group` -- DROP TABLE IF EXISTS `xe_member_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_group` ( `site_srl` bigint(11) NOT NULL default '0', `group_srl` bigint(11) NOT NULL, `list_order` bigint(11) NOT NULL, `title` varchar(80) NOT NULL, `regdate` varchar(14) default NULL, `is_default` char(1) default 'N', `is_admin` char(1) default 'N', `image_mark` text, `description` text, PRIMARY KEY (`group_srl`), UNIQUE KEY `idx_site_title` (`site_srl`,`title`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_group` -- LOCK TABLES `xe_member_group` WRITE; /*!40000 ALTER TABLE `xe_member_group` DISABLE KEYS */; INSERT INTO `xe_member_group` VALUES (0,1,1,'Managing Group','20150114171529','N','Y','',''),(0,2,2,'Associate Member','20150114171529','Y','N','',''),(0,3,3,'Regular Member','20150114171529','N','N','',''); /*!40000 ALTER TABLE `xe_member_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_group_member` -- DROP TABLE IF EXISTS `xe_member_group_member`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_group_member` ( `site_srl` bigint(11) NOT NULL default '0', `group_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_site_srl` (`site_srl`), KEY `idx_group_member` (`group_srl`,`member_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_group_member` -- LOCK TABLES `xe_member_group_member` WRITE; /*!40000 ALTER TABLE `xe_member_group_member` DISABLE KEYS */; INSERT INTO `xe_member_group_member` VALUES (0,1,4,'20150114171529'); /*!40000 ALTER TABLE `xe_member_group_member` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_join_form` -- DROP TABLE IF EXISTS `xe_member_join_form`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_join_form` ( `member_join_form_srl` bigint(11) NOT NULL, `column_type` varchar(60) NOT NULL, `column_name` varchar(60) NOT NULL, `column_title` varchar(60) NOT NULL, `required` char(1) NOT NULL default 'N', `default_value` text, `is_active` char(1) default 'Y', `description` text, `list_order` bigint(11) NOT NULL default '1', `regdate` varchar(14) default NULL, PRIMARY KEY (`member_join_form_srl`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_join_form` -- LOCK TABLES `xe_member_join_form` WRITE; /*!40000 ALTER TABLE `xe_member_join_form` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_join_form` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_login_count` -- DROP TABLE IF EXISTS `xe_member_login_count`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_login_count` ( `ipaddress` varchar(128) NOT NULL, `count` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, `last_update` varchar(14) default NULL, KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`), KEY `idx_last_update` (`last_update`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_login_count` -- LOCK TABLES `xe_member_login_count` WRITE; /*!40000 ALTER TABLE `xe_member_login_count` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_login_count` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_message` -- DROP TABLE IF EXISTS `xe_member_message`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_message` ( `message_srl` bigint(11) NOT NULL, `related_srl` bigint(11) NOT NULL, `sender_srl` bigint(11) NOT NULL, `receiver_srl` bigint(11) NOT NULL, `message_type` char(1) NOT NULL default 'S', `title` varchar(250) NOT NULL, `content` text NOT NULL, `readed` char(1) NOT NULL default 'N', `list_order` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, `readed_date` varchar(14) default NULL, PRIMARY KEY (`message_srl`), KEY `idx_related_srl` (`related_srl`), KEY `idx_sender_srl` (`sender_srl`), KEY `idx_receiver_srl` (`receiver_srl`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_message` -- LOCK TABLES `xe_member_message` WRITE; /*!40000 ALTER TABLE `xe_member_message` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_member_scrap` -- DROP TABLE IF EXISTS `xe_member_scrap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_member_scrap` ( `member_srl` bigint(11) NOT NULL, `document_srl` bigint(11) NOT NULL, `title` varchar(250) default NULL, `user_id` varchar(80) default NULL, `user_name` varchar(80) NOT NULL, `nick_name` varchar(80) NOT NULL, `target_member_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, `list_order` bigint(11) NOT NULL, UNIQUE KEY `unique_scrap` (`member_srl`,`document_srl`), KEY `idx_regdate` (`regdate`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_member_scrap` -- LOCK TABLES `xe_member_scrap` WRITE; /*!40000 ALTER TABLE `xe_member_scrap` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_member_scrap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_menu` -- DROP TABLE IF EXISTS `xe_menu`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_menu` ( `menu_srl` bigint(12) NOT NULL, `site_srl` bigint(11) NOT NULL default '0', `title` varchar(250) default NULL, `listorder` bigint(11) default '0', `regdate` varchar(14) default NULL, PRIMARY KEY (`menu_srl`), KEY `menu_site_srl` (`site_srl`), KEY `idx_title` (`title`), KEY `idx_listorder` (`listorder`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_menu` -- LOCK TABLES `xe_menu` WRITE; /*!40000 ALTER TABLE `xe_menu` DISABLE KEYS */; INSERT INTO `xe_menu` VALUES (64,0,'Main',-64,'20150114171534'),(71,0,'__ADMINMENU_V17__',-71,'20150114171547'); /*!40000 ALTER TABLE `xe_menu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_menu_item` -- DROP TABLE IF EXISTS `xe_menu_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_menu_item` ( `menu_item_srl` bigint(12) NOT NULL, `parent_srl` bigint(12) NOT NULL default '0', `menu_srl` bigint(12) NOT NULL, `name` text, `url` varchar(250) default NULL, `is_shortcut` char(1) default 'N', `open_window` char(1) default 'N', `expand` char(1) default 'N', `normal_btn` varchar(255) default NULL, `hover_btn` varchar(255) default NULL, `active_btn` varchar(255) default NULL, `group_srls` text, `listorder` bigint(11) default '0', `regdate` varchar(14) default NULL, PRIMARY KEY (`menu_item_srl`), KEY `idx_menu_srl` (`menu_srl`), KEY `idx_listorder` (`listorder`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_menu_item` -- LOCK TABLES `xe_menu_item` WRITE; /*!40000 ALTER TABLE `xe_menu_item` DISABLE KEYS */; INSERT INTO `xe_menu_item` VALUES (66,0,64,'Home','geny_1','N','N','N',NULL,NULL,NULL,NULL,-66,'20150114171535'),(72,0,71,'{$lang->menu_gnb[\'dashboard\']}','index.php?module=admin','N','N','N',NULL,NULL,NULL,NULL,-72,'20150114171548'),(73,0,71,'{$lang->menu_gnb[\'menu\']}','#','N','N','N',NULL,NULL,NULL,NULL,-73,'20150114171548'),(74,0,71,'{$lang->menu_gnb[\'user\']}','#','N','N','N',NULL,NULL,NULL,NULL,-74,'20150114171548'),(75,0,71,'{$lang->menu_gnb[\'content\']}','#','N','N','N',NULL,NULL,NULL,NULL,-75,'20150114171548'),(76,0,71,'{$lang->menu_gnb[\'configuration\']}','#','N','N','N',NULL,NULL,NULL,NULL,-76,'20150114171548'),(77,0,71,'{$lang->menu_gnb[\'advanced\']}','#','N','N','N',NULL,NULL,NULL,NULL,-77,'20150114171548'),(78,73,71,'{$lang->menu_gnb_sub[\'siteMap\']}','index.php?module=admin&act=dispMenuAdminSiteMap','N','N','N','','','','1',-78,'20150114171548'),(79,73,71,'{$lang->menu_gnb_sub[\'siteDesign\']}','index.php?module=admin&act=dispMenuAdminSiteDesign','N','N','N','','','','1',-79,'20150114171548'),(80,74,71,'{$lang->menu_gnb_sub[\'userList\']}','index.php?module=admin&act=dispMemberAdminList','N','N','N','','','','1',-80,'20150114171548'),(81,74,71,'{$lang->menu_gnb_sub[\'userSetting\']}','index.php?module=admin&act=dispMemberAdminConfig','N','N','N','','','','1',-81,'20150114171548'),(82,74,71,'{$lang->menu_gnb_sub[\'userGroup\']}','index.php?module=admin&act=dispMemberAdminGroupList','N','N','N','','','','1',-82,'20150114171548'),(83,75,71,'{$lang->menu_gnb_sub[\'document\']}','index.php?module=admin&act=dispDocumentAdminList','N','N','N','','','','1',-83,'20150114171548'),(84,75,71,'{$lang->menu_gnb_sub[\'comment\']}','index.php?module=admin&act=dispCommentAdminList','N','N','N','','','','1',-84,'20150114171548'),(85,75,71,'{$lang->menu_gnb_sub[\'file\']}','index.php?module=admin&act=dispFileAdminList','N','N','N','','','','1',-85,'20150114171548'),(86,75,71,'{$lang->menu_gnb_sub[\'poll\']}','index.php?module=admin&act=dispPollAdminList','N','N','N','','','','1',-86,'20150114171548'),(87,75,71,'{$lang->menu_gnb_sub[\'rss\']}','index.php?module=admin&act=dispRssAdminIndex','N','N','N','','','','1',-87,'20150114171548'),(88,75,71,'{$lang->menu_gnb_sub[\'multilingual\']}','index.php?module=admin&act=dispModuleAdminLangcode','N','N','N','','','','1',-88,'20150114171548'),(89,75,71,'{$lang->menu_gnb_sub[\'importer\']}','index.php?module=admin&act=dispImporterAdminImportForm','N','N','N','','','','1',-89,'20150114171548'),(90,75,71,'{$lang->menu_gnb_sub[\'trash\']}','index.php?module=admin&act=dispTrashAdminList','N','N','N','','','','1',-90,'20150114171548'),(91,77,71,'{$lang->menu_gnb_sub[\'easyInstall\']}','index.php?module=admin&act=dispAutoinstallAdminIndex','N','N','N','','','','1',-91,'20150114171548'),(92,77,71,'{$lang->menu_gnb_sub[\'installedLayout\']}','index.php?module=admin&act=dispLayoutAdminInstalledList','N','N','N','','','','1',-92,'20150114171548'),(93,77,71,'{$lang->menu_gnb_sub[\'installedModule\']}','index.php?module=admin&act=dispModuleAdminContent','N','N','N','','','','1',-93,'20150114171548'),(94,77,71,'{$lang->menu_gnb_sub[\'installedWidget\']}','index.php?module=admin&act=dispWidgetAdminDownloadedList','N','N','N','','','','1',-94,'20150114171548'),(95,77,71,'{$lang->menu_gnb_sub[\'installedAddon\']}','index.php?module=admin&act=dispAddonAdminIndex','N','N','N','','','','1',-95,'20150114171548'),(96,77,71,'{$lang->menu_gnb_sub[\'editor\']}','index.php?module=admin&act=dispEditorAdminIndex','N','N','N','','','','1',-96,'20150114171548'),(97,75,71,'{$lang->menu_gnb_sub[\'spamFilter\']}','index.php?module=admin&act=dispSpamfilterAdminDeniedIPList','N','N','N','','','','1',-97,'20150114171548'),(98,76,71,'{$lang->menu_gnb_sub[\'adminConfigurationGeneral\']}','index.php?module=admin&act=dispAdminConfigGeneral','N','N','N','','','','1',-98,'20150114171548'),(99,76,71,'{$lang->menu_gnb_sub[\'adminConfigurationFtp\']}','index.php?module=admin&act=dispAdminConfigFtp','N','N','N','','','','1',-99,'20150114171548'),(100,76,71,'{$lang->menu_gnb_sub[\'adminMenuSetup\']}','index.php?module=admin&act=dispAdminSetup','N','N','N','','','','1',-100,'20150114171548'),(101,76,71,'{$lang->menu_gnb_sub[\'fileUpload\']}','index.php?module=admin&act=dispFileAdminConfig','N','N','N','','','','1',-101,'20150114171548'),(102,76,71,'{$lang->menu_gnb_sub[\'filebox\']}','index.php?module=admin&act=dispModuleAdminFileBox','N','N','N','','','','1',-102,'20150114171548'),(103,74,71,'{$lang->menu_gnb_sub[\'point\']}','index.php?module=admin&act=dispPointAdminConfig','N','N','N','','','','1',-103,'20150114171548'),(122,118,64,'Faculity','geny_2_3','N','N','N',NULL,NULL,NULL,NULL,-122,'20150115165015'),(117,118,64,'Mission Statement','geny_2_2','N','N','N',NULL,NULL,NULL,NULL,-121,'20150115163925'),(118,0,64,'School','geny_2_1','Y','N','N',NULL,NULL,NULL,NULL,-122,'20150115164209'),(120,118,64,'About GENY','geny_2_1','N','N','N',NULL,NULL,NULL,NULL,-120,'20150115164532'),(124,118,64,'Schedule','geny_2_4','N','N','N',NULL,NULL,NULL,NULL,-124,'20150115165041'),(126,118,64,'Activities','geny_2_5','N','N','N',NULL,NULL,NULL,NULL,-126,'20150115165136'),(127,0,64,'Program','#','Y','N','N',NULL,NULL,NULL,NULL,-127,'20150115165321'),(129,127,64,'ESL','geny_3_1','N','N','N',NULL,NULL,NULL,NULL,-129,'20150115165345'),(131,127,64,'TOEFL Prep','geny_3_2','N','N','N',NULL,NULL,NULL,NULL,-131,'20150115165411'),(133,127,64,'Accounting','geny_3_3','N','N','N',NULL,NULL,NULL,NULL,-133,'20150115165436'),(135,127,64,'Graphic Design','geny_3_4','N','N','N',NULL,NULL,NULL,NULL,-135,'20150115165456'),(137,127,64,'Fashion Design','geny_3_5','N','N','N',NULL,NULL,NULL,NULL,-137,'20150115165528'),(139,127,64,'Web Design','geny_3_16','N','N','N',NULL,NULL,NULL,NULL,-139,'20150115165556'),(141,127,64,'NCLEX Prep','geny_3_7','N','N','N',NULL,NULL,NULL,NULL,-141,'20150115165636'),(143,127,64,'-IELTS Prep','geny_3_8','N','N','N',NULL,NULL,NULL,NULL,-143,'20150115165707'),(145,127,64,'-Medical Teminology','geny_3_9','N','N','N',NULL,NULL,NULL,NULL,-145,'20150115165758'),(147,127,64,'Color Theory','geny_3_10','N','N','N',NULL,NULL,NULL,NULL,-147,'20150115165816'),(149,127,64,'Allied Health','geny_3_11','N','N','N',NULL,NULL,NULL,NULL,-149,'20150115165850'),(150,0,64,'Admission','geny_4_1','Y','N','N',NULL,NULL,NULL,NULL,-150,'20150115170705'),(156,150,64,'Registration Info','geny_4_2','N','N','N',NULL,NULL,NULL,NULL,-156,'20150115170952'),(154,150,64,'Apply','geny_4_1','N','N','N',NULL,NULL,NULL,NULL,0,'20150115170801'),(158,0,64,'Contact','geny_5','N','N','N',NULL,NULL,NULL,NULL,-158,'20150115171422'),(160,0,64,'GENY BLOG','geny_6','N','N','N',NULL,NULL,NULL,NULL,-160,'20150115171453'); /*!40000 ALTER TABLE `xe_menu_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_menu_layout` -- DROP TABLE IF EXISTS `xe_menu_layout`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_menu_layout` ( `menu_srl` bigint(12) NOT NULL, `layout_srl` bigint(12) NOT NULL, PRIMARY KEY (`menu_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_menu_layout` -- LOCK TABLES `xe_menu_layout` WRITE; /*!40000 ALTER TABLE `xe_menu_layout` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_menu_layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_admins` -- DROP TABLE IF EXISTS `xe_module_admins`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_admins` ( `module_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, UNIQUE KEY `unique_module_admin` (`module_srl`,`member_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_admins` -- LOCK TABLES `xe_module_admins` WRITE; /*!40000 ALTER TABLE `xe_module_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_categories` -- DROP TABLE IF EXISTS `xe_module_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_categories` ( `module_category_srl` bigint(11) NOT NULL default '0', `title` varchar(250) default NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`module_category_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_categories` -- LOCK TABLES `xe_module_categories` WRITE; /*!40000 ALTER TABLE `xe_module_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_config` -- DROP TABLE IF EXISTS `xe_module_config`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_config` ( `module` varchar(250) NOT NULL, `site_srl` bigint(11) NOT NULL, `config` text, `regdate` varchar(14) default NULL, PRIMARY KEY (`module`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_config` -- LOCK TABLES `xe_module_config` WRITE; /*!40000 ALTER TABLE `xe_module_config` DISABLE KEYS */; INSERT INTO `xe_module_config` VALUES ('comment',0,'N;','20150114171526'),('editor',0,'N;','20150114171526'),('file',0,'O:8:\"stdClass\":3:{s:16:\"allowed_filesize\";s:1:\"2\";s:19:\"allowed_attach_size\";s:1:\"2\";s:17:\"allowed_filetypes\";s:3:\"*.*\";}','20150114171528'),('layout',0,'N;','20150114171526'),('point',0,'O:8:\"stdClass\":21:{s:9:\"max_level\";i:30;s:10:\"level_step\";a:30:{i:1;i:90;i:2;i:360;i:3;i:810;i:4;i:1440;i:5;i:2250;i:6;i:3240;i:7;i:4410;i:8;i:5760;i:9;i:7290;i:10;i:9000;i:11;i:10890;i:12;i:12960;i:13;i:15210;i:14;i:17640;i:15;i:20250;i:16;i:23040;i:17;i:26010;i:18;i:29160;i:19;i:32490;i:20;i:36000;i:21;i:39690;i:22;i:43560;i:23;i:47610;i:24;i:51840;i:25;i:56250;i:26;i:60840;i:27;i:65610;i:28;i:70560;i:29;i:75690;i:30;i:81000;}s:12:\"signup_point\";i:10;s:11:\"login_point\";i:5;s:10:\"point_name\";s:5:\"point\";s:10:\"level_icon\";s:7:\"default\";s:16:\"disable_download\";b:0;s:15:\"insert_document\";i:10;s:19:\"insert_document_act\";s:23:\"procBoardInsertDocument\";s:19:\"delete_document_act\";s:23:\"procBoardDeleteDocument\";s:14:\"insert_comment\";i:5;s:18:\"insert_comment_act\";s:44:\"procBoardInsertComment,procBlogInsertComment\";s:18:\"delete_comment_act\";s:44:\"procBoardDeleteComment,procBlogDeleteComment\";s:11:\"upload_file\";i:5;s:15:\"upload_file_act\";s:14:\"procFileUpload\";s:15:\"delete_file_act\";s:14:\"procFileDelete\";s:13:\"download_file\";i:-5;s:17:\"download_file_act\";s:16:\"procFileDownload\";s:13:\"read_document\";i:0;s:5:\"voted\";i:0;s:6:\"blamed\";i:0;}','20150114171532'),('rss',0,'N;','20150114171526'),('module',0,'O:8:\"stdClass\":1:{s:18:\"isUpdateFixedValue\";b:1;}','20150114171527'),('autoinstall',0,'O:8:\"stdClass\":1:{s:14:\"downloadServer\";s:33:\"http://download.xpressengine.com/\";}','20150114171527'),('poll',0,'O:8:\"stdClass\":2:{s:4:\"skin\";s:7:\"default\";s:8:\"colorset\";s:6:\"normal\";}','20150114171528'),('member',0,'O:8:\"stdClass\":23:{s:11:\"enable_join\";s:1:\"Y\";s:13:\"enable_openid\";s:1:\"N\";s:16:\"enable_auth_mail\";s:1:\"N\";s:10:\"image_name\";s:1:\"N\";s:10:\"image_mark\";s:1:\"N\";s:13:\"profile_image\";s:1:\"N\";s:20:\"image_name_max_width\";N;s:21:\"image_name_max_height\";N;s:20:\"image_mark_max_width\";N;s:21:\"image_mark_max_height\";N;s:23:\"profile_image_max_width\";N;s:24:\"profile_image_max_height\";N;s:16:\"group_image_mark\";s:1:\"N\";s:17:\"password_strength\";s:6:\"normal\";s:10:\"signupForm\";a:13:{i:0;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:1;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:7:\"user_id\";s:5:\"title\";s:7:\"User ID\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:1;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:13:\"email_address\";s:5:\"title\";s:5:\"Email\";s:12:\"mustRequired\";b:1;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:2;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:8:\"password\";s:5:\"title\";s:8:\"Password\";s:12:\"mustRequired\";b:1;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"N\";}i:3;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:9:\"user_name\";s:5:\"title\";s:9:\"User Name\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:4;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:9:\"nick_name\";s:5:\"title\";s:9:\"Nick Name\";s:12:\"mustRequired\";b:1;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:5;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:21:\"find_account_question\";s:5:\"title\";s:34:\"Question for a temporary password.\";s:12:\"mustRequired\";b:1;s:9:\"imageType\";b:0;s:8:\"required\";b:1;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"N\";}i:6;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:8:\"homepage\";s:5:\"title\";s:8:\"Homepage\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:0;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:7;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:4:\"blog\";s:5:\"title\";s:4:\"Blog\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:0;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:8;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:8:\"birthday\";s:5:\"title\";s:8:\"Birthday\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:0;s:5:\"isUse\";b:1;s:8:\"isPublic\";s:1:\"Y\";}i:9;O:8:\"stdClass\":9:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:9:\"signature\";s:5:\"title\";s:9:\"Signature\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:0;s:8:\"required\";b:0;s:5:\"isUse\";b:0;s:8:\"isPublic\";s:1:\"N\";}i:10;O:8:\"stdClass\":11:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:13:\"profile_image\";s:5:\"title\";s:13:\"Profile Image\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:1;s:8:\"required\";b:0;s:5:\"isUse\";b:0;s:8:\"isPublic\";s:1:\"N\";s:9:\"max_width\";N;s:10:\"max_height\";N;}i:11;O:8:\"stdClass\":11:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:10:\"image_name\";s:5:\"title\";s:10:\"Image Name\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:1;s:8:\"required\";b:0;s:5:\"isUse\";b:0;s:8:\"isPublic\";s:1:\"N\";s:9:\"max_width\";N;s:10:\"max_height\";N;}i:12;O:8:\"stdClass\":11:{s:12:\"isIdentifier\";b:0;s:13:\"isDefaultForm\";b:1;s:4:\"name\";s:10:\"image_mark\";s:5:\"title\";s:10:\"Image Mark\";s:12:\"mustRequired\";b:0;s:9:\"imageType\";b:1;s:8:\"required\";b:0;s:5:\"isUse\";b:0;s:8:\"isPublic\";s:1:\"N\";s:9:\"max_width\";N;s:10:\"max_height\";N;}}s:10:\"identifier\";s:7:\"user_id\";s:9:\"limit_day\";i:0;s:21:\"limit_day_description\";N;s:9:\"agreement\";N;s:12:\"redirect_url\";N;s:21:\"signature_editor_skin\";s:12:\"xpresseditor\";s:19:\"sel_editor_colorset\";s:5:\"white\";s:9:\"signature\";s:1:\"N\";}','20150114171751'); /*!40000 ALTER TABLE `xe_module_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_extend` -- DROP TABLE IF EXISTS `xe_module_extend`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_extend` ( `parent_module` varchar(80) NOT NULL, `extend_module` varchar(80) NOT NULL, `type` varchar(15) NOT NULL, `kind` varchar(5) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_extend` -- LOCK TABLES `xe_module_extend` WRITE; /*!40000 ALTER TABLE `xe_module_extend` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_extend` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_extra_vars` -- DROP TABLE IF EXISTS `xe_module_extra_vars`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_extra_vars` ( `module_srl` bigint(11) NOT NULL, `name` varchar(80) NOT NULL, `value` text, UNIQUE KEY `unique_module_vars` (`module_srl`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_extra_vars` -- LOCK TABLES `xe_module_extra_vars` WRITE; /*!40000 ALTER TABLE `xe_module_extra_vars` DISABLE KEYS */; INSERT INTO `xe_module_extra_vars` VALUES (65,'page_type','WIDGET'),(65,'regdate','20150114171535'),(123,'regdate','20150115165041'),(119,'regdate','20150115164532'),(119,'page_type','WIDGET'),(116,'page_type','WIDGET'),(121,'regdate','20150115165015'),(125,'regdate','20150115165136'),(121,'page_type','WIDGET'),(123,'page_type','WIDGET'),(125,'page_type','WIDGET'),(128,'regdate','20150115165345'),(130,'page_type','WIDGET'),(132,'page_type','WIDGET'),(134,'regdate','20150115165456'),(136,'regdate','20150115165528'),(138,'regdate','20150115165556'),(140,'page_type','WIDGET'),(142,'regdate','20150115165706'),(144,'regdate','20150115165758'),(146,'page_type','WIDGET'),(148,'page_type','WIDGET'),(128,'page_type','WIDGET'),(130,'regdate','20150115165411'),(132,'regdate','20150115165436'),(132,'xe_js_callback','top.opener.top.fullSetupDone'),(134,'page_type','WIDGET'),(136,'page_type','WIDGET'),(138,'page_type','WIDGET'),(140,'regdate','20150115165636'),(142,'page_type','WIDGET'),(144,'page_type','WIDGET'),(146,'regdate','20150115165816'),(148,'regdate','20150115165850'),(155,'regdate','20150115170952'),(153,'regdate','20150115170801'),(155,'page_type','WIDGET'),(153,'page_type','WIDGET'),(157,'page_type','WIDGET'),(159,'page_type','WIDGET'); /*!40000 ALTER TABLE `xe_module_extra_vars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_filebox` -- DROP TABLE IF EXISTS `xe_module_filebox`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_filebox` ( `module_filebox_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `filename` varchar(250) NOT NULL, `fileextension` varchar(4) NOT NULL, `filesize` bigint(11) NOT NULL default '0', `comment` varchar(250) default NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`module_filebox_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_fileextension` (`fileextension`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_filebox` -- LOCK TABLES `xe_module_filebox` WRITE; /*!40000 ALTER TABLE `xe_module_filebox` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_filebox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_grants` -- DROP TABLE IF EXISTS `xe_module_grants`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_grants` ( `module_srl` bigint(11) NOT NULL, `name` varchar(20) NOT NULL, `group_srl` bigint(11) NOT NULL, UNIQUE KEY `unique_module` (`module_srl`,`name`,`group_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_grants` -- LOCK TABLES `xe_module_grants` WRITE; /*!40000 ALTER TABLE `xe_module_grants` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_grants` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_locks` -- DROP TABLE IF EXISTS `xe_module_locks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_locks` ( `lock_name` varchar(40) NOT NULL, `deadline` varchar(14) default NULL, `member_srl` bigint(11) default NULL, UNIQUE KEY `unique_lock_name` (`lock_name`), KEY `idx_deadline` (`deadline`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_locks` -- LOCK TABLES `xe_module_locks` WRITE; /*!40000 ALTER TABLE `xe_module_locks` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_locks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_mobile_skins` -- DROP TABLE IF EXISTS `xe_module_mobile_skins`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_mobile_skins` ( `module_srl` bigint(11) NOT NULL, `name` varchar(80) NOT NULL, `value` text, UNIQUE KEY `unique_module_mobile_skins` (`module_srl`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_mobile_skins` -- LOCK TABLES `xe_module_mobile_skins` WRITE; /*!40000 ALTER TABLE `xe_module_mobile_skins` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_mobile_skins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_part_config` -- DROP TABLE IF EXISTS `xe_module_part_config`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_part_config` ( `module` varchar(250) NOT NULL, `module_srl` bigint(11) NOT NULL, `config` text, `regdate` varchar(14) default NULL, KEY `idx_module_part_config` (`module`,`module_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_part_config` -- LOCK TABLES `xe_module_part_config` WRITE; /*!40000 ALTER TABLE `xe_module_part_config` DISABLE KEYS */; INSERT INTO `xe_module_part_config` VALUES ('layout',106,'O:8:\"stdClass\":1:{s:13:\"header_script\";N;}','20150115162343'),('layout',109,'O:8:\"stdClass\":1:{s:13:\"header_script\";N;}','20150115163028'),('layout',111,'O:8:\"stdClass\":1:{s:13:\"header_script\";N;}','20150115173558'),('layout',165,'O:8:\"stdClass\":1:{s:13:\"header_script\";N;}','20150115174658'),('layout',167,'O:8:\"stdClass\":1:{s:13:\"header_script\";N;}','20150116180821'); /*!40000 ALTER TABLE `xe_module_part_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_skins` -- DROP TABLE IF EXISTS `xe_module_skins`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_skins` ( `module_srl` bigint(11) NOT NULL, `name` varchar(80) NOT NULL, `value` text, UNIQUE KEY `unique_module_skins` (`module_srl`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_skins` -- LOCK TABLES `xe_module_skins` WRITE; /*!40000 ALTER TABLE `xe_module_skins` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_module_skins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_module_trigger` -- DROP TABLE IF EXISTS `xe_module_trigger`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_module_trigger` ( `trigger_name` varchar(80) NOT NULL, `called_position` varchar(15) NOT NULL, `module` varchar(80) NOT NULL, `type` varchar(15) NOT NULL, `called_method` varchar(80) NOT NULL, UNIQUE KEY `idx_trigger` (`trigger_name`,`called_position`,`module`,`type`,`called_method`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_module_trigger` -- LOCK TABLES `xe_module_trigger` WRITE; /*!40000 ALTER TABLE `xe_module_trigger` DISABLE KEYS */; INSERT INTO `xe_module_trigger` VALUES ('comment.deleteComment','after','file','controller','triggerCommentDeleteAttached'),('comment.deleteComment','after','point','controller','triggerDeleteComment'),('comment.deleteComment','after','poll','controller','triggerDeleteCommentPoll'),('comment.getCommentMenu','after','member','controller','triggerGetCommentMenu'),('comment.insertComment','after','file','controller','triggerCommentAttachFiles'),('comment.insertComment','after','point','controller','triggerInsertComment'),('comment.insertComment','after','poll','controller','triggerInsertCommentPoll'),('comment.insertComment','before','file','controller','triggerCommentCheckAttached'),('comment.insertComment','before','spamfilter','controller','triggerInsertComment'),('comment.updateComment','after','file','controller','triggerCommentAttachFiles'),('comment.updateComment','after','poll','controller','triggerUpdateCommentPoll'),('comment.updateComment','before','file','controller','triggerCommentCheckAttached'),('comment.updateComment','before','spamfilter','controller','triggerInsertComment'),('communication.sendMessage','before','spamfilter','controller','triggerSendMessage'),('display','before','editor','controller','triggerEditorComponentCompile'),('display','before','widget','controller','triggerWidgetCompile'),('document.deleteDocument','after','comment','controller','triggerDeleteDocumentComments'),('document.deleteDocument','after','file','controller','triggerDeleteAttached'),('document.deleteDocument','after','point','controller','triggerDeleteDocument'),('document.deleteDocument','after','poll','controller','triggerDeleteDocumentPoll'),('document.deleteDocument','after','syndication','controller','triggerDeleteDocument'),('document.deleteDocument','after','tag','controller','triggerDeleteTag'),('document.deleteDocument','before','point','controller','triggerBeforeDeleteDocument'),('document.getDocumentMenu','after','member','controller','triggerGetDocumentMenu'),('document.insertDocument','after','editor','controller','triggerDeleteSavedDoc'),('document.insertDocument','after','file','controller','triggerAttachFiles'),('document.insertDocument','after','point','controller','triggerInsertDocument'),('document.insertDocument','after','poll','controller','triggerInsertDocumentPoll'),('document.insertDocument','after','syndication','controller','triggerInsertDocument'),('document.insertDocument','after','tag','controller','triggerInsertTag'),('document.insertDocument','before','file','controller','triggerCheckAttached'),('document.insertDocument','before','spamfilter','controller','triggerInsertDocument'),('document.insertDocument','before','tag','controller','triggerArrangeTag'),('document.moveDocumentModule','after','syndication','controller','triggerMoveDocumentModule'),('document.moveDocumentToTrash','after','syndication','controller','triggerMoveDocumentToTrash'),('document.restoreTrash','after','syndication','controller','triggerRestoreTrash'),('document.updateDocument','after','editor','controller','triggerDeleteSavedDoc'),('document.updateDocument','after','file','controller','triggerAttachFiles'),('document.updateDocument','after','poll','controller','triggerUpdateDocumentPoll'),('document.updateDocument','after','syndication','controller','triggerUpdateDocument'),('document.updateDocument','after','tag','controller','triggerInsertTag'),('document.updateDocument','before','file','controller','triggerCheckAttached'),('document.updateDocument','before','point','controller','triggerUpdateDocument'),('document.updateDocument','before','spamfilter','controller','triggerInsertDocument'),('document.updateDocument','before','tag','controller','triggerArrangeTag'),('document.updateReadedCount','after','point','controller','triggerUpdateReadedCount'),('document.updateVotedCount','after','point','controller','triggerUpdateVotedCount'),('editor.deleteSavedDoc','after','file','controller','triggerDeleteAttached'),('file.deleteFile','after','point','controller','triggerDeleteFile'),('file.downloadFile','after','point','controller','triggerDownloadFile'),('file.downloadFile','before','point','controller','triggerBeforeDownloadFile'),('file.insertFile','after','point','controller','triggerInsertFile'),('member.doLogin','after','point','controller','triggerAfterLogin'),('member.getMemberMenu','after','board','controller','triggerMemberMenu'),('member.insertMember','after','point','controller','triggerInsertMember'),('menu.getModuleListInSitemap','after','board','model','triggerModuleListInSitemap'),('module.deleteModule','after','comment','controller','triggerDeleteModuleComments'),('module.deleteModule','after','document','controller','triggerDeleteModuleDocuments'),('module.deleteModule','after','file','controller','triggerDeleteModuleFiles'),('module.deleteModule','after','syndication','controller','triggerDeleteModule'),('module.deleteModule','after','tag','controller','triggerDeleteModuleTags'),('module.dispAdditionSetup','after','point','view','triggerDispPointAdditionSetup'),('module.dispAdditionSetup','before','comment','view','triggerDispCommentAdditionSetup'),('module.dispAdditionSetup','before','document','view','triggerDispDocumentAdditionSetup'),('module.dispAdditionSetup','before','editor','view','triggerDispEditorAdditionSetup'),('module.dispAdditionSetup','before','file','view','triggerDispFileAdditionSetup'),('module.dispAdditionSetup','before','rss','view','triggerDispRssAdditionSetup'),('module.procModuleAdminCopyModule','after','comment','controller','triggerCopyModule'),('module.procModuleAdminCopyModule','after','document','controller','triggerCopyModule'),('module.procModuleAdminCopyModule','after','document','controller','triggerCopyModuleExtraKeys'),('module.procModuleAdminCopyModule','after','editor','controller','triggerCopyModule'),('module.procModuleAdminCopyModule','after','file','controller','triggerCopyModule'),('module.procModuleAdminCopyModule','after','point','controller','triggerCopyModule'),('module.procModuleAdminCopyModule','after','rss','controller','triggerCopyModule'),('moduleHandler.proc','after','rss','controller','triggerRssUrlInsert'),('trackback.insertTrackback','before','spamfilter','controller','triggerInsertTrackback'); /*!40000 ALTER TABLE `xe_module_trigger` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_modules` -- DROP TABLE IF EXISTS `xe_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_modules` ( `module_srl` bigint(11) NOT NULL, `module` varchar(80) NOT NULL, `module_category_srl` bigint(11) default '0', `layout_srl` bigint(11) default '0', `use_mobile` char(1) default 'N', `mlayout_srl` bigint(11) default '0', `menu_srl` bigint(11) default '0', `site_srl` bigint(11) NOT NULL default '0', `mid` varchar(40) NOT NULL, `is_skin_fix` char(1) NOT NULL default 'Y', `skin` varchar(250) default NULL, `is_mskin_fix` char(1) NOT NULL default 'Y', `mskin` varchar(250) default NULL, `browser_title` varchar(250) NOT NULL, `description` text, `is_default` char(1) NOT NULL default 'N', `content` longtext, `mcontent` longtext, `open_rss` char(1) NOT NULL default 'Y', `header_text` text, `footer_text` text, `regdate` varchar(14) default NULL, PRIMARY KEY (`module_srl`), UNIQUE KEY `idx_site_mid` (`site_srl`,`mid`), KEY `idx_module` (`module`), KEY `idx_module_category` (`module_category_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_modules` -- LOCK TABLES `xe_modules` WRITE; /*!40000 ALTER TABLE `xe_modules` DISABLE KEYS */; INSERT INTO `xe_modules` VALUES (65,'page',0,167,'Y',-1,64,0,'geny_1','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Home','','N','','<img hasContent=\"true\" class=\"zbxe_widget_output\" widget=\"widgetContent\" style=\"width: 100%; float: left;\" body=\"\" document_srl=\"70\" widget_padding_left=\"0\" widget_padding_right=\"0\" widget_padding_top=\"0\" widget_padding_bottom=\"0\" />','Y','','','20150114171535'),(121,'page',0,167,'Y',-1,64,0,'geny_2_3','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Faculity','','N',NULL,NULL,'Y','','','20150115165015'),(123,'page',0,167,'Y',-1,64,0,'geny_2_4','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Schedule','','N',NULL,NULL,'Y','','','20150115165041'),(116,'page',0,167,'Y',-1,64,0,'geny_2_2','N',NULL,'N',NULL,'Mission Statement',NULL,'N',NULL,NULL,'Y',NULL,NULL,'20150115163925'),(119,'page',0,167,'Y',-1,64,0,'geny_2_1','N','/USE_DEFAULT/','N','/USE_DEFAULT/','About GENY','','N',NULL,NULL,'Y','','','20150115164532'),(125,'page',0,167,'Y',-1,64,0,'geny_2_5','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Activities','','N',NULL,NULL,'Y','','','20150115165136'),(128,'page',0,167,'Y',-1,64,0,'geny_3_1','N','/USE_DEFAULT/','N','/USE_DEFAULT/','ESL','','N',NULL,NULL,'Y','','','20150115165345'),(130,'page',0,167,'Y',-1,64,0,'geny_3_2','N','/USE_DEFAULT/','N','/USE_DEFAULT/','TOEFL Prep','','N',NULL,NULL,'Y','','','20150115165411'),(132,'page',0,167,'Y',-1,64,0,'geny_3_3','Y',NULL,'Y',NULL,'Accounting','','N',NULL,NULL,'Y','','','20150115165436'),(134,'page',0,167,'Y',-1,64,0,'geny_3_4','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Graphic Design','','N',NULL,NULL,'Y','','','20150115165456'),(136,'page',0,167,'Y',-1,64,0,'geny_3_5','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Fashion Design','','N',NULL,NULL,'Y','','','20150115165528'),(138,'page',0,167,'Y',-1,64,0,'geny_3_16','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Web Design','','N',NULL,NULL,'Y','','','20150115165556'),(140,'page',0,167,'Y',-1,64,0,'geny_3_7','N','/USE_DEFAULT/','N','/USE_DEFAULT/','NCLEX Prep','','N',NULL,NULL,'Y','','','20150115165636'),(142,'page',0,167,'Y',-1,64,0,'geny_3_8','N','/USE_DEFAULT/','N','/USE_DEFAULT/','-IELTS Prep','','N',NULL,NULL,'Y','','','20150115165706'),(144,'page',0,167,'Y',-1,64,0,'geny_3_9','N','/USE_DEFAULT/','N','/USE_DEFAULT/','-Medical Teminology','','N',NULL,NULL,'Y','','','20150115165758'),(146,'page',0,167,'Y',-1,64,0,'geny_3_10','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Color Theory','','N',NULL,NULL,'Y','','','20150115165816'),(148,'page',0,167,'Y',-1,64,0,'geny_3_11','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Allied Health','','N',NULL,NULL,'Y','','','20150115165850'),(155,'page',0,167,'Y',-1,64,0,'geny_4_2','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Registration Info','','N',NULL,NULL,'Y','','','20150115170952'),(153,'page',0,167,'Y',-1,64,0,'geny_4_1','N','/USE_DEFAULT/','N','/USE_DEFAULT/','Apply','','N',NULL,NULL,'Y','','','20150115170801'),(157,'page',0,167,'Y',-1,64,0,'geny_5','N',NULL,'N',NULL,'Contact',NULL,'N',NULL,NULL,'Y',NULL,NULL,'20150115171422'),(159,'page',0,167,'Y',-1,64,0,'geny_6','N',NULL,'N',NULL,'GENY BLOG',NULL,'N',NULL,NULL,'Y',NULL,NULL,'20150115171453'); /*!40000 ALTER TABLE `xe_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_point` -- DROP TABLE IF EXISTS `xe_point`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_point` ( `member_srl` bigint(11) NOT NULL, `point` bigint(11) NOT NULL default '0', PRIMARY KEY (`member_srl`), KEY `idx_point` (`point`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_point` -- LOCK TABLES `xe_point` WRITE; /*!40000 ALTER TABLE `xe_point` DISABLE KEYS */; INSERT INTO `xe_point` VALUES (4,20); /*!40000 ALTER TABLE `xe_point` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_poll` -- DROP TABLE IF EXISTS `xe_poll`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_poll` ( `poll_srl` bigint(11) NOT NULL, `stop_date` varchar(14) default NULL, `upload_target_srl` bigint(11) NOT NULL, `poll_count` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, `list_order` bigint(11) NOT NULL, PRIMARY KEY (`poll_srl`), KEY `idx_upload_target_srl` (`upload_target_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_poll` -- LOCK TABLES `xe_poll` WRITE; /*!40000 ALTER TABLE `xe_poll` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_poll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_poll_item` -- DROP TABLE IF EXISTS `xe_poll_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_poll_item` ( `poll_item_srl` bigint(11) NOT NULL, `poll_srl` bigint(11) NOT NULL, `poll_index_srl` bigint(11) NOT NULL, `upload_target_srl` bigint(11) NOT NULL, `title` varchar(250) NOT NULL, `poll_count` bigint(11) NOT NULL, PRIMARY KEY (`poll_item_srl`), KEY `index_poll_srl` (`poll_srl`), KEY `idx_poll_index_srl` (`poll_index_srl`), KEY `idx_upload_target_srl` (`upload_target_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_poll_item` -- LOCK TABLES `xe_poll_item` WRITE; /*!40000 ALTER TABLE `xe_poll_item` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_poll_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_poll_log` -- DROP TABLE IF EXISTS `xe_poll_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_poll_log` ( `poll_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, KEY `idx_poll_srl` (`poll_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_poll_log` -- LOCK TABLES `xe_poll_log` WRITE; /*!40000 ALTER TABLE `xe_poll_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_poll_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_poll_title` -- DROP TABLE IF EXISTS `xe_poll_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_poll_title` ( `poll_srl` bigint(11) NOT NULL, `poll_index_srl` bigint(11) NOT NULL, `title` varchar(250) NOT NULL, `checkcount` bigint(11) NOT NULL default '1', `poll_count` bigint(11) NOT NULL, `upload_target_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `ipaddress` varchar(128) NOT NULL, `regdate` varchar(14) default NULL, `list_order` bigint(11) NOT NULL, KEY `idx_poll_srl` (`poll_srl`,`poll_index_srl`), KEY `idx_upload_target_srl` (`upload_target_srl`), KEY `idx_member_srl` (`member_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`), KEY `idx_list_order` (`list_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_poll_title` -- LOCK TABLES `xe_poll_title` WRITE; /*!40000 ALTER TABLE `xe_poll_title` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_poll_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_sequence` -- DROP TABLE IF EXISTS `xe_sequence`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_sequence` ( `seq` bigint(64) NOT NULL auto_increment, PRIMARY KEY (`seq`) ) ENGINE=MyISAM AUTO_INCREMENT=168 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_sequence` -- LOCK TABLES `xe_sequence` WRITE; /*!40000 ALTER TABLE `xe_sequence` DISABLE KEYS */; INSERT INTO `xe_sequence` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(31),(32),(33),(34),(35),(36),(37),(38),(39),(40),(41),(42),(43),(44),(45),(46),(47),(48),(49),(50),(51),(52),(53),(54),(55),(56),(57),(58),(59),(60),(61),(62),(63),(64),(65),(66),(67),(68),(69),(70),(71),(72),(73),(74),(75),(76),(77),(78),(79),(80),(81),(82),(83),(84),(85),(86),(87),(88),(89),(90),(91),(92),(93),(94),(95),(96),(97),(98),(99),(100),(101),(102),(103),(104),(105),(106),(107),(108),(109),(110),(111),(112),(113),(114),(115),(116),(117),(118),(119),(120),(121),(122),(123),(124),(125),(126),(127),(128),(129),(130),(131),(132),(133),(134),(135),(136),(137),(138),(139),(140),(141),(142),(143),(144),(145),(146),(147),(148),(149),(150),(151),(152),(153),(154),(155),(156),(157),(158),(159),(160),(161),(162),(163),(164),(165),(166),(167); /*!40000 ALTER TABLE `xe_sequence` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_session` -- DROP TABLE IF EXISTS `xe_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_session` ( `session_key` varchar(255) NOT NULL, `member_srl` bigint(11) NOT NULL, `expired` varchar(14) default NULL, `val` longtext, `ipaddress` varchar(128) NOT NULL, `last_update` varchar(14) default NULL, `cur_mid` varchar(128) default NULL, PRIMARY KEY (`session_key`), KEY `idx_session_member_srl` (`member_srl`), KEY `idx_session_expired` (`expired`), KEY `idx_session_update` (`last_update`), KEY `idx_session_cur_mid` (`cur_mid`), KEY `idx_session_update_mid` (`member_srl`,`last_update`,`cur_mid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_session` -- LOCK TABLES `xe_session` WRITE; /*!40000 ALTER TABLE `xe_session` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_site_admin` -- DROP TABLE IF EXISTS `xe_site_admin`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_site_admin` ( `site_srl` bigint(11) NOT NULL, `member_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, UNIQUE KEY `idx_site_admin` (`site_srl`,`member_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_site_admin` -- LOCK TABLES `xe_site_admin` WRITE; /*!40000 ALTER TABLE `xe_site_admin` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_site_admin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_sites` -- DROP TABLE IF EXISTS `xe_sites`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_sites` ( `site_srl` bigint(11) NOT NULL, `index_module_srl` bigint(11) default '0', `domain` varchar(255) NOT NULL, `default_language` varchar(255) default NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`site_srl`), UNIQUE KEY `unique_domain` (`domain`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_sites` -- LOCK TABLES `xe_sites` WRITE; /*!40000 ALTER TABLE `xe_sites` DISABLE KEYS */; INSERT INTO `xe_sites` VALUES (0,65,'03a7dba.netsolhost.com/xe/','en','20150114171521'); /*!40000 ALTER TABLE `xe_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_spamfilter_denied_ip` -- DROP TABLE IF EXISTS `xe_spamfilter_denied_ip`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_spamfilter_denied_ip` ( `ipaddress` varchar(250) NOT NULL, `description` varchar(250) default NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_spamfilter_denied_ip` -- LOCK TABLES `xe_spamfilter_denied_ip` WRITE; /*!40000 ALTER TABLE `xe_spamfilter_denied_ip` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_spamfilter_denied_ip` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_spamfilter_denied_word` -- DROP TABLE IF EXISTS `xe_spamfilter_denied_word`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_spamfilter_denied_word` ( `word` varchar(250) NOT NULL, `hit` bigint(20) NOT NULL default '0', `latest_hit` varchar(14) default NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`word`), KEY `idx_hit` (`hit`), KEY `idx_latest_hit` (`latest_hit`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_spamfilter_denied_word` -- LOCK TABLES `xe_spamfilter_denied_word` WRITE; /*!40000 ALTER TABLE `xe_spamfilter_denied_word` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_spamfilter_denied_word` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_spamfilter_log` -- DROP TABLE IF EXISTS `xe_spamfilter_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_spamfilter_log` ( `spamfilter_log_srl` bigint(11) NOT NULL, `ipaddress` varchar(250) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`spamfilter_log_srl`), KEY `idx_ipaddress` (`ipaddress`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_spamfilter_log` -- LOCK TABLES `xe_spamfilter_log` WRITE; /*!40000 ALTER TABLE `xe_spamfilter_log` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_spamfilter_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_syndication_except_modules` -- DROP TABLE IF EXISTS `xe_syndication_except_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_syndication_except_modules` ( `module_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`module_srl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_syndication_except_modules` -- LOCK TABLES `xe_syndication_except_modules` WRITE; /*!40000 ALTER TABLE `xe_syndication_except_modules` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_syndication_except_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_syndication_logs` -- DROP TABLE IF EXISTS `xe_syndication_logs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_syndication_logs` ( `log_srl` bigint(11) NOT NULL, `module_srl` bigint(11) default '0', `document_srl` bigint(11) default '0', `title` varchar(255) default NULL, `summary` varchar(255) default NULL, `regdate` varchar(14) default NULL, UNIQUE KEY `primary_key` (`log_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_syndication_logs` -- LOCK TABLES `xe_syndication_logs` WRITE; /*!40000 ALTER TABLE `xe_syndication_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_syndication_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_tags` -- DROP TABLE IF EXISTS `xe_tags`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_tags` ( `tag_srl` bigint(11) NOT NULL, `module_srl` bigint(11) NOT NULL default '0', `document_srl` bigint(11) NOT NULL default '0', `tag` varchar(240) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`tag_srl`), KEY `idx_module_srl` (`module_srl`), KEY `idx_document_srl` (`document_srl`), KEY `idx_regdate` (`regdate`), KEY `idx_tag` (`document_srl`,`tag`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_tags` -- LOCK TABLES `xe_tags` WRITE; /*!40000 ALTER TABLE `xe_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xe_trash` -- DROP TABLE IF EXISTS `xe_trash`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `xe_trash` ( `trash_srl` bigint(11) NOT NULL, `title` varchar(250) default NULL, `origin_module` varchar(250) NOT NULL default 'document', `serialized_object` longtext NOT NULL, `description` text, `ipaddress` varchar(128) NOT NULL, `remover_srl` bigint(11) NOT NULL, `regdate` varchar(14) default NULL, PRIMARY KEY (`trash_srl`), KEY `idx_regdate` (`regdate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `xe_trash` -- LOCK TABLES `xe_trash` WRITE; /*!40000 ALTER TABLE `xe_trash` DISABLE KEYS */; /*!40000 ALTER TABLE `xe_trash` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'geny_0' -- DELIMITER ;; DELIMITER ; /*!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 2024-09-16 9:55:32