CREATE TABLE IF NOT EXISTS config
(
	siteID TINYINT(3) unsigned NOT NULL auto_increment,
	site_url VARCHAR(255) NOT NULL,
	site_name VARCHAR(100) NOT NULL,
	admin_email VARCHAR(255) NOT NULL,
	keywords VARCHAR(255) DEFAULT 'ddl, download, direct downloads' NOT NULL,
	description VARCHAR(255) DEFAULT 'Direct downloads updated daily!' NOT NULL,
	votelink VARCHAR(255) DEFAULT 'http://www.virtuagirlhd.ca/' NOT NULL,
	cbusername VARCHAR(20) DEFAULT 'none' NOT NULL,
	camsusername VARCHAR(20) DEFAULT 'g656263' NOT NULL,
	videoszusername VARCHAR(20) DEFAULT '18374' NOT NULL,
	skin VARCHAR(100) DEFAULT 'default' NOT NULL,
	hovercolor VARCHAR(7) DEFAULT '#eeeeee' NOT NULL,
	menualign VARCHAR(6) DEFAULT 'right' NOT NULL,            
	pagelimit TINYINT(3) unsigned DEFAULT 100 NOT NULL,
	pagenumbers TINYINT(3) unsigned DEFAULT 15 NOT NULL,
	max_dl INT(6) unsigned DEFAULT 50000 NOT NULL,
	max_que INT(6) unsigned DEFAULT 10000 NOT NULL,
	date_format VARCHAR(5) DEFAULT 'd-m-Y' NOT NULL,
	siteNameLength TINYINT(3) unsigned DEFAULT 60 NOT NULL,
	showTop5 TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	topdownloads TINYINT(3) unsigned DEFAULT 100 NOT NULL,
	sponsoredSearchResults TINYINT(2) unsigned DEFAULT 3 NOT NULL,
	showInstantLE TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	showTopSearches TINYINT(1) unsigned DEFAULT 0 NOT NULL,
	showRecentSearches TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	showRecentDownloads TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	showSponsoredLinks TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	recentdownloads TINYINT(3) unsigned DEFAULT 20 NOT NULL,
	recentsearches TINYINT(3) unsigned DEFAULT 20 NOT NULL,
	topsearches TINYINT(3) unsigned DEFAULT 20 NOT NULL,
	whitelist_threshold SMALLINT(3) unsigned DEFAULT 99 NOT NULL,
	deadlink_threshold TINYINT(3) unsigned DEFAULT 50 NOT NULL,
	auto_allow TINYINT(1) unsigned DEFAULT 0 NOT NULL,
	maximumsubmissions TINYINT(3) unsigned DEFAULT 20 NOT NULL,
	publicAutoSubmitter TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	enableAutoResponder	TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	failedSubmitURLtries SMALLINT(3) unsigned DEFAULT 999 NOT NULL,
	arrowsForProvider TINYINT(1) unsigned DEFAULT 0 NOT NULL,
	instantLEnotify TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	instantLEmaxLinks SMALLINT(3) unsigned DEFAULT 500 NOT NULL,
	instantLEclean TINYINT(1) unsigned DEFAULT 1 NOT NULL,
	instantLEsort VARCHAR(6) DEFAULT 'asc' NOT NULL,
	partnerLinksSort VARCHAR(6) NOT NULL DEFAULT 'random',
	version FLOAT(4,1) DEFAULT 3.2 NOT NULL,
	PRIMARY KEY(siteID)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS admin_bannedips
(
	id SMALLINT(4) unsigned NOT NULL auto_increment,
	ip VARCHAR(15) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS admin_logins
(
	id SMALLINT unsigned NOT NULL auto_increment,
	ip VARCHAR(15) NOT NULL,
	loginTime TIMESTAMP NOT NULL,
	loginType TINYINT(1) unsigned NOT NULL,
	viewed TINYINT(1) unsigned NOT NULL DEFAULT 0,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS auth
(
	id TINYINT(1) unsigned NOT NULL auto_increment,
	user CHAR(128) NOT NULL DEFAULT '0fa3f465aa59a428046d7fd2b584cc96bb61594f2620adf5f54cf25ea67218555fb043441cc0f21b4fb4aeeb2c81aed7643a8f769cf83f6d5443ac11b5aacc44',
	pass CHAR(128) NOT NULL DEFAULT '0fa3f465aa59a428046d7fd2b584cc96bb61594f2620adf5f54cf25ea67218555fb043441cc0f21b4fb4aeeb2c81aed7643a8f769cf83f6d5443ac11b5aacc44',
	locked TINYINT(1) unsigned NOT NULL DEFAULT 0,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS bannedwords
(
	id INT(4) unsigned NOT NULL auto_increment,
	word VARCHAR(100) NOT NULL DEFAULT '0',
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS blacklist
(
	id INT(4) unsigned NOT NULL auto_increment,
	url VARCHAR(100) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS category
(
	id TINYINT(2) unsigned NOT NULL auto_increment,
	category VARCHAR(100) NOT NULL,
	active TINYINT(1) unsigned NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS downloads
(
	id INT(11) unsigned NOT NULL auto_increment,
	type VARCHAR(255) NOT NULL,
	title VARCHAR(255) NOT NULL,
	url VARCHAR(255) NOT NULL,
	sname VARCHAR(100) NOT NULL,
	surl VARCHAR(255) NOT NULL,
	date DATE NOT NULL,
	email VARCHAR(255) NOT NULL,
	views INT(9) unsigned DEFAULT 0 NOT NULL,
	reports INT(9) unsigned DEFAULT 0 NOT NULL,
	rating TINYINT(1) unsigned DEFAULT 0 NOT NULL,
	ip VARCHAR(15) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS downloads_ratings
(
	id INT(11) unsigned NOT NULL,
	rating TINYINT(1) unsigned DEFAULT 0 NOT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS iplog
(
	id INT(9) unsigned NOT NULL auto_increment,
	url VARCHAR(255) NULL,
	date TIMESTAMP NOT NULL,
	ip VARCHAR(15) NULL,
	bannedip VARCHAR(15) NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS news
(
	id INT(11) unsigned NOT NULL auto_increment,
	title VARCHAR(255) NOT NULL,
	date TIMESTAMP DEFAULT 0,
	news longtext NOT NULL,
	type VARCHAR(50) NOT NULL,
	submitted TIMESTAMP NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS partners
(
	id INT(11) unsigned NOT NULL auto_increment,
	siteurl VARCHAR(255) NOT NULL,
	sitename VARCHAR(100) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS que
(
	id INT(11) unsigned NOT NULL auto_increment,
	type VARCHAR(255) NOT NULL,
	title VARCHAR(255) NOT NULL,
	url VARCHAR(255) NOT NULL,
	sname VARCHAR(100) NOT NULL,
	surl VARCHAR(255) NOT NULL,
	date DATE NOT NULL,
	email VARCHAR(255) NOT NULL,
	views INT(9) unsigned NOT NULL DEFAULT 0,
	reports INT(9) unsigned NOT NULL DEFAULT 0,
	ip VARCHAR(15) NOT NULL,
	PRIMARY KEY id(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS rateip
(
	ip VARCHAR(15) NOT NULL DEFAULT '0',
	time TIMESTAMP NOT NULL,
	PRIMARY KEY(ip)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS recents
(
	recentid INT(11) unsigned NOT NULL auto_increment,
	id INT(11) unsigned NOT NULL,
	type CHAR(100) NOT NULL,
	title CHAR(255) NOT NULL,
	date CHAR(16) NOT NULL,
	views INT(11) unsigned NOT NULL DEFAULT 0,
	PRIMARY KEY(recentid)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS reportip
(
	ip VARCHAR(15) NOT NULL DEFAULT '0',
	time TIMESTAMP NOT NULL,
	PRIMARY KEY(ip)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS searches
(
	id INT(11) unsigned NOT NULL auto_increment,
	timestamp TIMESTAMP NOT NULL,
	views INT(11) unsigned NOT NULL default 0,
	query VARCHAR(100) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS spamwords
(
	id INT(4) unsigned NOT NULL auto_increment,
	spamword VARCHAR(100) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS submitter_bannedips
(
	id SMALLINT(4) unsigned NOT NULL auto_increment,
	ip VARCHAR(15) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS suffixes
(
	id INT(11) unsigned NOT NULL auto_increment,
	suffix VARCHAR(100) NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS urllog
(
	id INT(11) unsigned NOT NULL auto_increment,
	url VARCHAR(255) DEFAULT NULL,
	date TIMESTAMP NOT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS useronline
(
	id INT(11) unsigned NOT NULL auto_increment,
	ip VARCHAR(15) DEFAULT NULL,
	timestamp VARCHAR(15) DEFAULT NULL,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS whitelist
(
	id INT(4) unsigned NOT NULL auto_increment,
	url VARCHAR(100),
	vip TINYINT(1) unsigned NOT NULL DEFAULT 0,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS instantle
(
	id INT(11) unsigned NOT NULL auto_increment,
	name VARCHAR(60) NOT NULL,
	email VARCHAR(100) NOT NULL,
	sitename VARCHAR(30) NOT NULL,
	siteurl VARCHAR(100) NOT NULL,
	description VARCHAR(200) NOT NULL,
	checkRecURL TINYINT(1) unsigned NOT NULL default 1,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_AccountEdits
(
	Username VARCHAR(16) NOT NULL,
	Email VARCHAR(128) DEFAULT NULL,
	Site_URL VARCHAR(255) DEFAULT NULL,
	Banner_URL VARCHAR(255) DEFAULT NULL,
	Banner_Height INT(11) unsigned DEFAULT NULL,
	Banner_Width INT(11) unsigned DEFAULT NULL,
	Recip_URL VARCHAR(255) DEFAULT NULL,
	Title TEXT,
	Description TEXT,
	Category VARCHAR(128) DEFAULT NULL,
	Password VARCHAR(32) DEFAULT NULL,
	Field_1 TEXT,
	Field_2 TEXT,
	Field_3 TEXT
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Accounts
(
	Username VARCHAR(16) NOT NULL,
	Email VARCHAR(128) DEFAULT NULL,
	Site_URL VARCHAR(255) DEFAULT NULL,
	Title TEXT,
	Signup TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
	Password VARCHAR(32) DEFAULT NULL,
	Confirm_ID VARCHAR(64) DEFAULT NULL,
	Status ENUM('Unconfirmed','Pending','Approved') DEFAULT NULL,
	Suspended TINYINT(4) DEFAULT NULL,
	Locked TINYINT(4) DEFAULT NULL,
	Last_Reset INT(11) DEFAULT NULL,
	Notes TEXT,
	In_Weight FLOAT DEFAULT NULL,
	Out_Weight FLOAT DEFAULT NULL,
	Current_Prod BIGINT(20) DEFAULT NULL,
	Current_In BIGINT(20) DEFAULT NULL,
	Current_Out BIGINT(20) DEFAULT NULL,
	Total_Prod BIGINT(20) DEFAULT NULL,
	Total_In BIGINT(20) DEFAULT NULL,
	Total_Out BIGINT(20) DEFAULT NULL,
	Last_Prod BIGINT(20) DEFAULT NULL,
	Last_Hits_In BIGINT(20) DEFAULT NULL,
	Last_Hits_Out BIGINT(20) DEFAULT NULL,
	Last_Sort VARCHAR(64) DEFAULT NULL,
	Last_Overall INT(11) DEFAULT NULL,
	Last_Category INT(11) DEFAULT NULL,
	Inactive INT(11) DEFAULT NULL,
	Num_Ratings BIGINT(20) DEFAULT NULL,
	Rating_Total BIGINT(20) DEFAULT NULL,
	Overall_Rank INT(11) DEFAULT NULL,
	Category_Rank INT(11) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_AdminStats
(
	Date_Added DATE DEFAULT NULL,
	Current_Prod BIGINT(20) DEFAULT NULL,
	Current_In BIGINT(20) DEFAULT NULL,
	Current_Out BIGINT(20) DEFAULT NULL,
	Active INT(11) DEFAULT NULL,
	Top_Ranked VARCHAR(16) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_BannedIPs
(
	IP_Address VARCHAR(16) NOT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Blacklist
(
	Type VARCHAR(12) NOT NULL,
	Value VARCHAR(255) NOT NULL,
	IsRegex TINYINT(4) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Cheats
(
	Username VARCHAR(16) NOT NULL,
	Hit_IP_Address INT(11) DEFAULT NULL,
	Hit_Cookie INT(11) DEFAULT NULL,
	Hit_Exp_Session INT(11) DEFAULT NULL,
	Hit_Proxy INT(11) DEFAULT NULL,
	Hit_Referrer INT(11) DEFAULT NULL,
	Hit_Browser INT(11) DEFAULT NULL,
	Hit_Banned_IP INT(11) DEFAULT NULL,
	Hit_No_Cookies INT(11) DEFAULT NULL,
	Rate_IP_Address INT(11) DEFAULT NULL,
	Rate_Cookie INT(11) DEFAULT NULL,
	Rate_Exp_Session INT(11) DEFAULT NULL,
	Rate_Proxy INT(11) DEFAULT NULL,
	Rate_Referrer INT(11) DEFAULT NULL,
	Rate_Browser INT(11) DEFAULT NULL,
	Rate_No_Cookies INT(11) DEFAULT NULL,
	Rate_Banned_IP INT(11) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_HitIPs
(
	Username VARCHAR(16) NOT NULL,
	IP_Address VARCHAR(16) NOT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_MemStats
(
	Username VARCHAR(16) DEFAULT NULL,
	Date_Added DATE DEFAULT NULL,
	Current_Prod BIGINT(20) DEFAULT NULL,
	Current_In BIGINT(20) DEFAULT NULL,
	Current_Out BIGINT(20) DEFAULT NULL,
	Total_Prod BIGINT(20) DEFAULT NULL,
	Total_In BIGINT(20) DEFAULT NULL,
	Total_Out BIGINT(20) DEFAULT NULL,
	Overall_Rank INT(11) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Pages
(
	Identifier VARCHAR(64) NOT NULL,
	Category VARCHAR(128) DEFAULT NULL,
	Forward TINYINT(4) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_RateIPs
(
	Username VARCHAR(16) NOT NULL,
	IP_Address VARCHAR(16) NOT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Snapshot
(
	Username VARCHAR(16) NOT NULL,
	Email VARCHAR(128) DEFAULT NULL,
	Site_URL VARCHAR(255) DEFAULT NULL,
	Title TEXT,
	Signup INT(11) DEFAULT NULL,
	Password VARCHAR(32) DEFAULT NULL,
	Confirm_ID VARCHAR(64) DEFAULT NULL,
	Status ENUM('Unconfirmed','Pending','Approved') DEFAULT NULL,
	Suspended TINYINT(4) DEFAULT NULL,
	Locked TINYINT(4) DEFAULT NULL,
	Last_Reset INT(11) DEFAULT NULL,
	Notes TEXT,
	In_Weight FLOAT DEFAULT NULL,
	Out_Weight FLOAT DEFAULT NULL,
	Current_Prod BIGINT(20) DEFAULT NULL,
	Current_In BIGINT(20) DEFAULT NULL,
	Current_Out BIGINT(20) DEFAULT NULL,
	Total_Prod BIGINT(20) DEFAULT NULL,
	Total_In BIGINT(20) DEFAULT NULL,
	Total_Out BIGINT(20) DEFAULT NULL,
	Last_Prod BIGINT(20) DEFAULT NULL,
	Last_Hits_In BIGINT(20) DEFAULT NULL,
	Last_Hits_Out BIGINT(20) DEFAULT NULL,
	Last_Sort VARCHAR(64) DEFAULT NULL,
	Last_Overall INT(11) DEFAULT NULL,
	Last_Category INT(11) DEFAULT NULL,
	Inactive INT(11) DEFAULT NULL,
	Num_Ratings BIGINT(20) DEFAULT NULL,
	Rating_Total BIGINT(20) DEFAULT NULL,
	Overall_Rank INT(11) DEFAULT NULL,
	Category_Rank INT(11) DEFAULT NULL
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS topsites_Triggers
(
	Unique_ID INT(11) unsigned NOT NULL auto_increment,
	Type ENUM('PreRerank','PostRerank','PreReset','PostReset','PreTotalReset','PostTotalReset','PreRatingReset','PostRatingReset') NULL,
	Username VARCHAR(16) NULL,
	Action VARCHAR(128) NULL,
	PRIMARY KEY(Unique_ID)
) DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS urls
(
	id INT(4) unsigned NOT NULL auto_increment,
	url VARCHAR(255) NOT NULL,
	fails TINYINT(2) unsigned NOT NULL DEFAULT 0,
	PRIMARY KEY(id)
) DEFAULT CHARSET=utf8;

INSERT INTO config VALUES
(
	NULL,
	'http://ddlarab.com',
	'&#1583;&#1604;&#1610;&#1604; &#1575;&#1604;&#1593;&#1585;&#1576;',
	'webmaster@ddlarab.com',
	'ddl, direct downloads, warez',
	'Unlimited Direct Downloads',
	'http://www.freexxxticket.info',
	'none',
	'g656263',
	'18374',
	'default',
	'#eeeeee',
	'right',
	100,
	15,
	50000,
	10000,
	'd-m-Y',
	60,
	1,
	100,
	3,
	1,
	0,
	1,
	1,
	1,
	20,
	20,
	20,
	99,
	50,
	0,
	20,
	1,
	1,
	999,
	0,
	1,
	500,
	1,
	'asc',
	'random',
	3.2
);

INSERT INTO auth VALUES
(
	NULL,
	'0fa3f465aa59a428046d7fd2b584cc96bb61594f2620adf5f54cf25ea67218555fb043441cc0f21b4fb4aeeb2c81aed7643a8f769cf83f6d5443ac11b5aacc44',
	'0fa3f465aa59a428046d7fd2b584cc96bb61594f2620adf5f54cf25ea67218555fb043441cc0f21b4fb4aeeb2c81aed7643a8f769cf83f6d5443ac11b5aacc44',
	0
);

INSERT INTO bannedwords VALUES
	(NULL, 'acdsee'),
	(NULL, 'adobe'),
	(NULL, 'alsscan'),
	(NULL, 'autodesk'),
	(NULL, 'avid express'),
	(NULL, 'ea sports'),
	(NULL, 'evil angel'),
	(NULL, 'microsoft'),
	(NULL, 'norton'),
	(NULL, 'roxio'),
	(NULL, 'symantec'),
	(NULL, 'ulead'),
(NULL, 'vista');

INSERT INTO category VALUES
	(NULL, 'Game', 1),
	(NULL, 'App', 1),
	(NULL, 'Movie', 1),
	(NULL, 'Stream', 0),
	(NULL, 'TV', 0),
	(NULL, 'Music', 1),
	(NULL, 'eBook', 0),
	(NULL, 'Template', 0),
	(NULL, 'Script', 0),
	(NULL, 'Mobile', 0),
	(NULL, 'Xxx', 1),
	(NULL, 'Mac', 0),
(NULL, 'Other', 1);

INSERT INTO downloads VALUES
	(NULL, 'Movie', 'Marley And Me (2009)', 'http://www.omniddl.com/our-downloads/Marley-And-Me-2009--download-19701.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'Watchmen Tales of the Black Freighter (2009)', 'http://www.omniddl.com/our-downloads/Watchmen-Tales-of-the-Black-Freighter-2009--download-19702.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'American High School (2009)', 'http://www.omniddl.com/our-downloads/American-High-School-2009--download-19703.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'Bled (2009)', 'http://www.omniddl.com/our-downloads/Bled-2009-download-19704.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'Chemical Wedding (2008)', 'http://www.omniddl.com/our-downloads/Chemical-Wedding-2008--download-19705.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'My Zinc Bed (2008)', 'http://www.omniddl.com/our-downloads/My-Zinc-Bed-2008--download-19706.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'Movie', 'College (2008)', 'http://www.omniddl.com/our-downloads/College-2008-download-19708.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 2, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'Pimp Parade - Brown Suga', 'http://www.omniddl.com/our-downloads/Pimp-Parade---Brown-Suga-download-19710.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 5, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'Real Ex Girlfriends - Judy', 'http://www.omniddl.com/our-downloads/Real-Ex-Girlfriends---Judy-download-19711.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'LustForAnal - Sandra Romain', 'http://www.omniddl.com/our-downloads/LustForAnal---Sandra-Romain-download-19712.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'LustForAnal - Sabrina M And Samantha M', 'http://www.omniddl.com/our-downloads/LustForAnal---Sabrina-M-And-Samantha-M-download-19713.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'HotLegsAndFeet - Eve Angel and Natasha Nice', 'http://www.omniddl.com/our-downloads/HotLegsAndFeet---Eve-Angel-and-Natasha-Nice-download-19714.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'BlueFantasies - Betcee May', 'http://www.omniddl.com/our-downloads/BlueFantasies---Betcee-May-download-19715.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 4, 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'Super Size My Snatch # 5', 'http://www.omniddl.com/our-downloads/Super-Size-My-Snatch--5-download-19716.html', 'OmniDDL', 'http://www.omniddl.com/', '2009-05-28', 'admin@omniddl.com', 3, 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Raxco PerfectDisk 2008 Build v.9.0 Build 64', 'http://sof7ware.com/news.php?readmore=112', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 10, 0, 0, '0.0.0.0'),
	(NULL, 'Game', 'Potable Atari 2600', 'http://sof7ware.com/news.php?readmore=113', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 10, 0, 0, '0.0.0.0'),
	(NULL, 'App', 'AVG Internet Security v.8.0.0.169', 'http://sof7ware.com/news.php?readmore=114', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 5, 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Universal Translator Deluxe v4.1.0.327 (Orginal ISO)', 'http://sof7ware.com/news.php?readmore=115', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 5, 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Google Earth Pro Gold with   GPS Tracking', 'http://sof7ware.com/news.php?readmore=116', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 9, 0, 0, '0.0.0.0'),
(NULL, 'App', 'Ultimate Bluetooth Mobile Phone Spy 2008', 'http://sof7ware.com/news.php?readmore=117', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-05-14', 'sof7ware@gmail.com', 8, 0, 0, '0.0.0.0');

INSERT INTO instantle VALUES
	(NULL, 'HotfileCrawler', 'admin@HotfileCrawler.com', 'HotfileCrawler', 'http://www.hotfilecrawler.com', 'Search for and find hotfile downloads!', 0),
	(NULL, 'RapidshareCrawler', 'admin@RapidshareCrawler.com', 'RapidshareCrawler', 'http://www.rapidsharecrawler.com', 'Search for and fine rapidshare downloads!', 0),
	(NULL, 'DDL CMS', 'admin@ddlcms.com', 'DDL CMS Script', 'http://www.ddlcms.com', 'The most powerful DDL script in the world!', 0),
	(NULL, 'Warez', 'admin@warezcms.com', 'Warez CMS', 'http://www.warezcms.com/', 'Warez CMS', 0),
(NULL, 'DDL Script', 'admin@scriptddl.com', 'DDL Script', 'http://www.scriptddl.com/', 'DDL Script', 0);

INSERT INTO news VALUES
	(NULL, 'A Test Page (2009) BlueRay 720P', '2009-05-31 16:37:30', 'This is a test page. Please delete this page in your admin panel.', 'Movie', '0000-00-00 00:00:00');

INSERT INTO partners VALUES
	(NULL, 'http://www.katz.cd/', 'Katz.CD'),
	(NULL, 'http://www.softlinkers.org/', 'Softlinkers'),
	(NULL, 'http://www.rapidshareddl.com/', 'Rapidshare DDL'),
	(NULL, 'http://www.hotfiledownloadz.com//', 'Hotfile Downloadz');

INSERT INTO que VALUES
	(NULL, 'App', 'Sony Vegas Platinum Edition v.9.0 and plugins', 'http://sof7ware.com/news.php?readmore=124', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Auction Auto Bidder v6.1.0.604', 'http://sof7ware.com/news.php?readmore=125', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Portable Driver Genius Professional v8.0.0.316', 'http://sof7ware.com/news.php?readmore=126', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Hacking GPS', 'http://sof7ware.com/news.php?readmore=127', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Google Deluxe', 'http://sof7ware.com/news.php?readmore=128', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Mobile Application Collection 2009', 'http://sof7ware.com/news.php?readmore=129', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'App', 'Windows Vista Ultimate 32-bit (only 80 MB) Working 100%', 'http://sof7ware.com/news.php?readmore=130', 'SOF7WARE.COM', 'http://sof7ware.com', '2009-04-02', 'sof7ware@gmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Fast And Surious (OST) 2009', 'http://www.digitolpoint.com/showthread.php?t=837', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Ry Cooder - The UFO Has Landed (2CD Anthology) (2008)', 'http://www.digitolpoint.com/showthread.php?t=838', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Linkin Park - [Meteora]', 'http://www.digitolpoint.com/showthread.php?t=839', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Deep Forest @320', 'http://www.digitolpoint.com/showthread.php?t=840', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'VA - Hotel Lounge by DigitolPoint', 'http://www.digitolpoint.com/showthread.php?t=841', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Switch 13', 'http://www.digitolpoint.com/showthread.php?t=842', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Top 100 Trance And Techno Party Songs Of All Time (2008)', 'http://www.digitolpoint.com/showthread.php?t=843', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Sunrise Avenue - Choose To Be Me - CDM - 2008 - YSP', 'http://www.digitolpoint.com/showthread.php?t=844', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', '[RS] The Prodigy - Their Law The Singles (160 kbps) 2005', 'http://www.digitolpoint.com/showthread.php?t=846', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'Music', 'Girlschool - Play Dirty (1983) (256 Kbps)', 'http://www.digitolpoint.com/showthread.php?t=845', 'Digitol Point', 'http://www.digitolpoint.com', '2009-04-02', 'eminem_show1989@hotmail.com', 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'Peaches And Veronika Carso - Carpet Munching', 'http://www.spamfreeforums.net/xphoto/viewtopic.php?t=83243', 'XPhoto Forum', 'http://www.spamfreeforums.net/xphoto', '2009-04-02', 'xphotoforum@yahoo.com', 0, 0, '0.0.0.0'),
	(NULL, 'XXX', 'Agnes - Seeking Employment', 'http://www.spamfreeforums.net/xphoto/viewtopic.php?t=83244', 'XPhoto Forum', 'http://www.spamfreeforums.net/xphoto', '2009-04-02', 'xphotoforum@yahoo.com', 0, 0, '0.0.0.0'),
(NULL, 'XXX', 'Piper Parker And Tiffany Rose - Barely 18 28', 'http://www.spamfreeforums.net/xphoto/viewtopic.php?t=83256', 'XPhoto Forum', 'http://www.spamfreeforums.net/xphoto', '2009-04-02', 'xphotoforum@yahoo.com', 0, 0, '0.0.0.0');

INSERT INTO spamwords VALUES
	(NULL, 'cialis'),
	(NULL, 'levitra'),
	(NULL, 'phentermine'),
	(NULL, 'phermentine'),
(NULL, 'viagra');

INSERT INTO suffixes VALUES
	(NULL, 'with Crack'),
	(NULL, 'Megaupload Links'),
	(NULL, 'With Keygen'),
	(NULL, 'With Serial'),
	(NULL, 'Pro Version'),
	(NULL, 'New Release'),
	(NULL, 'Rapidshare Links'),
	(NULL, 'Full Version'),
	(NULL, 'Retail ISO'),
	(NULL, 'Multipart RAR Download'),
	(NULL, 'Hotfile Links'),
	(NULL, 'Torrent Links');

INSERT INTO urls VALUES
	(NULL, 'http://clean-start.net/submit.php', 0),
	(NULL, 'http://coolddl.net/submit.php', 0),
	(NULL, 'http://darkddl.com/submit.php', 0),
	(NULL, 'http://ddlforce.com/submit.php', 0),
	(NULL, 'http://ddlfreak.com/submit.php', 0),
	(NULL, 'http://ddlgenie.com/submit.php', 0),
	(NULL, 'http://ddlspider.com/submit.php', 0),
	(NULL, 'http://ddlfinder.com/submit.php', 0),
	(NULL, 'http://ddlmafia.net/submit.php', 0),
	(NULL, 'http://dopeddl.com/submit.php', 0),
	(NULL, 'http://macddl.com/submit.php', 0),
	(NULL, 'http://ddlgod.com/submit.php', 0),
	(NULL, 'http://hellddl.com/submit.php', 0),
	(NULL, 'http://ddlbabe.com/submit.php', 0),
	(NULL, 'http://hyperddl.com/submit.php', 0),
	(NULL, 'http://rapidshareddl.com/submit.php', 0),
	(NULL, 'http://ddl2.com/submit.php', 0),
	(NULL, 'http://ddlshark.com/submit.php', 0),
	(NULL, 'http://infinitewarez.com/submit.php', 0),
	(NULL, 'http://dreamddl.com/submit.php', 0),
	(NULL, 'http://warezomen.com/submit.php', 0),
	(NULL, 'http://united-ddl.com/submit.php', 0),
	(NULL, 'http://rockddl.com/submit.php', 0),
	(NULL, 'http://ddlbay.com/submit.php', 0),
	(NULL, 'http://iceddl.com/submit.php', 0),
	(NULL, 'http://sexleech.com/submit.php', 0),
	(NULL, 'http://ddlspot.com/submit.php', 0),
	(NULL, 'http://ddlzone.com/submit.php', 0),
	(NULL, 'http://powerddl.com/submit.php', 0),
	(NULL, 'http://downloadwarez.org/submit.php', 0),
	(NULL, 'http://smartddl.com/submit.php', 0),
	(NULL, 'http://ddlpump.com/submit.php', 0),
	(NULL, 'http://oday-warez.com/submit.php', 0),
	(NULL, 'http://ddlgold.net/submit.php', 0),
	(NULL, 'http://warez411.com/submit.php', 0),
	(NULL, 'http://ddl.otvali.ru/submit.php', 0),
	(NULL, 'http://unlimitedwarez.com/submit.php', 0),
	(NULL, 'http://gameindexer.com/submit.php', 0),
	(NULL, 'http://pussyddl.com/submit.php', 0),
	(NULL, 'http://twilight.ws/submit.php', 0),
	(NULL, 'http://warezflow.us/submit491.php', 0),
	(NULL, 'http://webodl.com/submit.php', 0),
	(NULL, 'http://warez-downloads.net/submit.php', 0),
	(NULL, 'http://warezworm.com/submit.php', 0),
	(NULL, 'http://fullversions.org/submit.php', 0),
	(NULL, 'http://promoddl.com/submit.php', 0),
	(NULL, 'http://vistablack.com/submit.php', 0),
	(NULL, 'http://omegadownloads.com/submit.php', 0),
	(NULL, 'http://ddlorigin.com/submit.php', 0),
	(NULL, 'http://megauploadddl.com/submit.php', 0),
	(NULL, 'http://warezplay.com/submit.php', 0),
	(NULL, 'http://allcracked.com/submit.php', 0),
	(NULL, 'http://pl1.com/submit.php', 0),
	(NULL, 'http://2ddl.org/submit.php', 0),
	(NULL, 'http://warezfactor.com/submit.php', 0),
	(NULL, 'http://mechoddl.com/submit.php', 0),
	(NULL, 'http://fullreleases.ws/submit.php', 0),
	(NULL, 'http://fulldownload.ws/submit.php', 0),
	(NULL, 'http://bearzddl.com/submit.php', 0),
	(NULL, 'http://midwarez.com/submit.php', 0),
	(NULL, 'http://directdl.com/submit.php', 0),
	(NULL, 'http://twitterddl.com/submit.htm', 6),
	(NULL, 'http://warezko.com/submit.php', 0),
	(NULL, 'http://cletuswarez.com/submit.php', 0),
	(NULL, 'http://jackasswarez.com/submit.php', 0),
	(NULL, 'http://ddlmonkey.com/submit.php', 0),
	(NULL, 'http://undernation.com/submit.php', 0),
	(NULL, 'http://warezbay.com/submit.php', 0),
	(NULL, 'http://warezlinker.com/submit.php', 0),
	(NULL, 'http://fullddl.net/submit.php', 0),
	(NULL, 'http://liteddl.com/submit.php', 0),
	(NULL, 'http://fileserveddl.org/submit.php', 0),
	(NULL, 'http://nexusddl.com/submit.php', 0),
	(NULL, 'http://warezfx.net/submit.php', 0),
	(NULL, 'http://arabwarez.info/submit.php', 0),
	(NULL, 'http://pornoddl.net/submit.php', 0),
	(NULL, 'http://katzddl.com/submit.php', 0),
	(NULL, 'http://ddlslut.com/submit.php', 0),
	(NULL, 'http://inaige.lt/ddl/submit.php', 0),
	(NULL, 'http://ddlsurf.com/submit.php', 0),
	(NULL, 'http://ddldude.com/submit.php', 0),
	(NULL, 'http://ddlgirl.com/submit.php', 0),
	(NULL, 'http://ddlguy.com/submit.php', 0),
	(NULL, 'http://ddlmonster.com/submit.php', 0),
	(NULL, 'http://monsterddl.com/submit.php', 0),
	(NULL, 'http://spicywarez.com/submit.php', 0),
	(NULL, 'http://warezserver.net/submit.php', 0),
	(NULL, 'http://hulkddl.com/submit.php', 0),
	(NULL, 'http://mainddl.com/submit.php', 0),
	(NULL, 'http://megaroticddl.com/submit.php', 0),
	(NULL, 'http://warezrecon.com/submit.php', 0),
	(NULL, 'http://full-xxx-downloads.com/submit.php', 0),
	(NULL, 'http://yahooddl.com/submit.php', 0),
	(NULL, 'http://easywarezddl.com/submit.php', 0),
	(NULL, 'http://ddlbitch.com/submit.php', 0),
	(NULL, 'http://microsoftddl.com/submit.php', 0),
	(NULL, 'http://twocowsddl.com/submit.php', 0),
	(NULL, 'http://warezbitch.com/submit.php', 0),
	(NULL, 'http://warezslut.com/submit.php', 0),
	(NULL, 'http://ddlheaven.com/submit.php', 0),
	(NULL, 'http://zaebb.biz/submit.php', 0),
	(NULL, 'http://ddl-paradise.com/submit.php', 0),
	(NULL, 'http://ddlshack.com/submit.php', 0),
	(NULL, 'http://ddldemon.com/submit.php', 0),
	(NULL, 'http://coreddl.com/submit.php', 0),
	(NULL, 'http://ddl2.me/submit.php', 0),
	(NULL, 'http://ddlwire.com/submit.php', 0),
	(NULL, 'http://ddlhut.com/submit.php', 0),
	(NULL, 'http://rardownload.net/submit.php', 0),
	(NULL, 'http://bigddl.com/submit.php', 0),
	(NULL, 'http://ddlgold.com/submit.php', 0),
	(NULL, 'http://pureddl.com/submit.php', 0),
	(NULL, 'http://dataexit.com/submit.php', 0),
	(NULL, 'http://satanwarez.com/submit.php', 0),
	(NULL, 'http://ddl.warezamp.com/submit.php', 0),
	(NULL, 'http://ddlvista.com/submit.php', 0),
	(NULL, 'http://bestddl.com/submit.php', 0),
	(NULL, 'http://warezfiend.com/submit.php', 0),
	(NULL, 'http://blackddl.com/submit.php', 0),
	(NULL, 'http://ddlboom.com/submit.php', 0),
	(NULL, 'http://ddlcore.com/submit.php', 0),
	(NULL, 'http://ddleasy.com/submit.php', 0),
	(NULL, 'http://ddlhell.com/submit.php', 0),
	(NULL, 'http://ddlrapidshare.com/submit.php', 0),
	(NULL, 'http://ddlrecon.com/submit.php', 0),
	(NULL, 'http://ddlsubmit.com/submit.php', 0),
	(NULL, 'http://ddltown.com/submit.php', 0),
	(NULL, 'http://ddluniverse.com/submit.php', 0),
	(NULL, 'http://donkeywarez.com/submit.php', 0),
	(NULL, 'http://finalddl.com/submit.php', 0),
	(NULL, 'http://fireddl.com/submit.php', 0),
	(NULL, 'http://megasharesddl.com/submit.php', 0),
	(NULL, 'http://myspaceddl.com/submit.php', 0),
	(NULL, 'http://phazewarez.com/submit.php', 0),
	(NULL, 'http://postwarez.com/submit.php', 0),
	(NULL, 'http://reconddl.com/submit.php', 0),
	(NULL, 'http://submitddl.com/submit.php', 0),
	(NULL, 'http://submitwarez.com/submit.php', 0),
	(NULL, 'http://vistaddl.com/submit.php', 0),
	(NULL, 'http://activeddl.com/submit.php', 0),
	(NULL, 'http://ddlhaven.com/submit.php', 0),
	(NULL, 'http://ddlserver.com/submit.php', 0),
	(NULL, 'http://demonddl.com/submit.php', 0),
	(NULL, 'http://officialddl.com/submit.php', 0),
	(NULL, 'http://oracleddl.com/submit.php', 0),
	(NULL, 'http://viperddl.com/submit.php', 0),
	(NULL, 'http://unitedddl.com/submit.php', 0),
	(NULL, 'http://crazyddl.com/submit.php', 0),
	(NULL, 'http://ddlpimp.com/submit.php', 0),
	(NULL, 'http://ddlspace.com/submit.php', 0),
	(NULL, 'http://epicwarez.com/submit.php', 0),
	(NULL, 'http://happyddl.com/submit.php', 0),
	(NULL, 'http://hotfiledownloadz.com/submit.php', 0),
	(NULL, 'http://instantddl.com/submit.php', 0),
	(NULL, 'http://liveddl.com/submit.php', 0),
	(NULL, 'http://myspaceddl.com/submit.php', 0),
	(NULL, 'http://postwarez.com/submit.php', 0),
	(NULL, 'http://realddl.com/submit.php', 0),
	(NULL, 'http://reconddl.com/submit.php', 0),
	(NULL, 'http://simpleddl.com/submit.php', 0),
	(NULL, 'http://submitddl.com/submit.php', 0),
	(NULL, 'http://submitwarez.com/submit.php', 0),
	(NULL, 'http://warezboom.com/submit.php', 0),
(NULL, 'http://warezpass.com/submit.php', 0);

INSERT INTO whitelist VALUES
	(NULL, 'activeddl.com', 0),
	(NULL, 'blackddl.com', 0),
	(NULL, 'coolddl.net', 0),
	(NULL, 'crazyddl.com', 0),
	(NULL, 'clean-start.net', 0),
	(NULL, 'cletuswarez.com', 0),
	(NULL, 'ddlbabe.com', 0),
	(NULL, 'ddlbitch.com', 0),
	(NULL, 'ddlboom.com', 0),
	(NULL, 'ddlcms.com', 0),
	(NULL, 'ddlcore.com', 0),
	(NULL, 'ddldemon.com', 0),
	(NULL, 'ddldream.com', 0),
	(NULL, 'ddldude.com', 0),
	(NULL, 'ddleasy.com', 0),
	(NULL, 'ddlfinder.com', 0),
	(NULL, 'ddlforce.com', 0),
	(NULL, 'ddlfreak.com', 0),
	(NULL, 'ddlgirl.com', 0),
	(NULL, 'ddlgenie.com', 0),
	(NULL, 'ddlgod.com', 0),
	(NULL, 'ddlguy.com', 0),
	(NULL, 'ddlhaven.com', 0),
	(NULL, 'ddlhell.com', 0),
	(NULL, 'ddlmonster.com', 0),
	(NULL, 'ddlpimp.com', 0),
	(NULL, 'ddlrapidshare.com', 0),
	(NULL, 'ddlrecon.com', 0),
	(NULL, 'ddlserver.com', 0),
	(NULL, 'ddlslut.com', 0),
	(NULL, 'ddlspace.com', 0),
	(NULL, 'ddlspider.com', 0),
	(NULL, 'ddlsubmit.com', 0),
	(NULL, 'ddltown.com', 0),
	(NULL, 'ddluniverse.com', 0),
	(NULL, 'demonddl.com', 0),
	(NULL, 'dopeddl.com', 0),
	(NULL, 'easywarezddl.com', 0),
	(NULL, 'epicwarez.com', 0),
	(NULL, 'finalddl.com', 0),
	(NULL, 'fireddl.com', 0),
	(NULL, 'fileserveddl.org', 0),
	(NULL, 'googleddl.com', 0),
	(NULL, 'happyddl.com', 0),
	(NULL, 'haxxx.net', 0),
	(NULL, 'hellddl.com', 0),
	(NULL, 'hotfiledownloadz.com', 0),
	(NULL, 'hulkddl.com', 0),
	(NULL, 'hyperddl.com', 0),
	(NULL, 'instantddl.com', 0),
	(NULL, 'jackasswarez.com', 0),
	(NULL, 'liveddl.com', 0),
	(NULL, 'macddl.com', 0),
	(NULL, 'mainddl.com', 0),
	(NULL, 'megaroticddl.com', 0),
	(NULL, 'megasharesddl.com', 0),
	(NULL, 'megauploadddl.com', 0),
	(NULL, 'microsoftddl.com', 0),
	(NULL, 'msnddl.com', 0),
	(NULL, 'myspaceddl.com', 0),
	(NULL, 'officialddl.com', 0),
	(NULL, 'oracleddl.com', 0),
	(NULL, 'phazewarez.com', 0),
	(NULL, 'postwarez.com', 0),
	(NULL, 'rapidsharecrawler.com', 0),
	(NULL, 'rapidshareddl.com', 0),
	(NULL, 'rapidsharedownloads.net', 0),
	(NULL, 'rapidsharehound.com', 0),
	(NULL, 'realddl.com', 0),
	(NULL, 'reconddl.com', 0),
	(NULL, 'simpleddl.com', 0),
	(NULL, 'soughtafterbeauties.com', 0),
	(NULL, 'submitddl.com', 0),
	(NULL, 'submitwarez.com', 0),
	(NULL, 'twitterddl.com', 0),
	(NULL, 'twocowsddl.com', 0),
	(NULL, 'unitedddl.com', 0),
	(NULL, 'viperddl.com', 0),
	(NULL, 'vistablack.com', 0),
	(NULL, 'vistaddl.com', 0),
	(NULL, 'warezbitch.com', 0),
	(NULL, 'warezboom.com', 0),
	(NULL, 'warezpass.com', 0),
	(NULL, 'warezslut.com', 0),
	(NULL, 'wareztopsite.com', 0),
(NULL, 'yahooddl.com', 0);

