-- MySQL dump 10.9 -- -- Host: localhost Database: heavenlyforum -- ------------------------------------------------------ -- Server version 4.1.16-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!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 `phpbb_auth_access` -- DROP TABLE IF EXISTS `phpbb_auth_access`; CREATE TABLE `phpbb_auth_access` ( `group_id` mediumint(8) NOT NULL default '0', `forum_id` smallint(5) unsigned NOT NULL default '0', `auth_view` tinyint(1) NOT NULL default '0', `auth_read` tinyint(1) NOT NULL default '0', `auth_post` tinyint(1) NOT NULL default '0', `auth_reply` tinyint(1) NOT NULL default '0', `auth_edit` tinyint(1) NOT NULL default '0', `auth_delete` tinyint(1) NOT NULL default '0', `auth_sticky` tinyint(1) NOT NULL default '0', `auth_announce` tinyint(1) NOT NULL default '0', `auth_vote` tinyint(1) NOT NULL default '0', `auth_pollcreate` tinyint(1) NOT NULL default '0', `auth_attachments` tinyint(1) NOT NULL default '0', `auth_mod` tinyint(1) NOT NULL default '0', KEY `group_id` (`group_id`), KEY `forum_id` (`forum_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_auth_access` -- /*!40000 ALTER TABLE `phpbb_auth_access` DISABLE KEYS */; LOCK TABLES `phpbb_auth_access` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_auth_access` ENABLE KEYS */; -- -- Table structure for table `phpbb_banlist` -- DROP TABLE IF EXISTS `phpbb_banlist`; CREATE TABLE `phpbb_banlist` ( `ban_id` mediumint(8) unsigned NOT NULL auto_increment, `ban_userid` mediumint(8) NOT NULL default '0', `ban_ip` varchar(8) NOT NULL default '', `ban_email` varchar(255) default NULL, PRIMARY KEY (`ban_id`), KEY `ban_ip_user_id` (`ban_ip`,`ban_userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_banlist` -- /*!40000 ALTER TABLE `phpbb_banlist` DISABLE KEYS */; LOCK TABLES `phpbb_banlist` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_banlist` ENABLE KEYS */; -- -- Table structure for table `phpbb_categories` -- DROP TABLE IF EXISTS `phpbb_categories`; CREATE TABLE `phpbb_categories` ( `cat_id` mediumint(8) unsigned NOT NULL auto_increment, `cat_title` varchar(100) default NULL, `cat_order` mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (`cat_id`), KEY `cat_order` (`cat_order`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_categories` -- /*!40000 ALTER TABLE `phpbb_categories` DISABLE KEYS */; LOCK TABLES `phpbb_categories` WRITE; INSERT INTO `phpbb_categories` VALUES (1,'Official HEAVENLY Forum',10); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_categories` ENABLE KEYS */; -- -- Table structure for table `phpbb_config` -- DROP TABLE IF EXISTS `phpbb_config`; CREATE TABLE `phpbb_config` ( `config_name` varchar(255) NOT NULL default '', `config_value` varchar(255) NOT NULL default '', PRIMARY KEY (`config_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_config` -- /*!40000 ALTER TABLE `phpbb_config` DISABLE KEYS */; LOCK TABLES `phpbb_config` WRITE; INSERT INTO `phpbb_config` VALUES ('config_id','1'),('board_disable','0'),('sitename','Heavenly'),('site_desc','Official Heavenly Forum'),('cookie_name','phpbb2mysql'),('cookie_path','/'),('cookie_domain',''),('cookie_secure','0'),('session_length','3600'),('allow_html','0'),('allow_html_tags','b,i,u,pre'),('allow_bbcode','1'),('allow_smilies','1'),('allow_sig','1'),('allow_namechange','0'),('allow_theme_create','0'),('allow_avatar_local','0'),('allow_avatar_remote','0'),('allow_avatar_upload','0'),('enable_confirm','0'),('override_user_style','0'),('posts_per_page','15'),('topics_per_page','50'),('hot_threshold','25'),('max_poll_options','10'),('max_sig_chars','255'),('max_inbox_privmsgs','50'),('max_sentbox_privmsgs','25'),('max_savebox_privmsgs','50'),('board_email_sig','Thanks, The Management'),('board_email','raphael@heavenly.fr'),('smtp_delivery','0'),('smtp_host',''),('smtp_username',''),('smtp_password',''),('sendmail_fix','0'),('require_activation','1'),('flood_interval','15'),('board_email_form','0'),('avatar_filesize','6144'),('avatar_max_width','80'),('avatar_max_height','80'),('avatar_path','images/avatars'),('avatar_gallery_path','images/avatars/gallery'),('smilies_path','images/smiles'),('default_style','2'),('default_dateformat','D M d, Y g:i a'),('board_timezone','0'),('prune_enable','1'),('privmsg_disable','0'),('gzip_compress','0'),('coppa_fax',''),('coppa_mail',''),('record_online_users','18'),('record_online_date','1157986942'),('server_name','www.heavenly.fr'),('server_port','80'),('script_path','/forum/'),('version','.0.17'),('board_startdate','1126119710'),('default_lang','english'); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_config` ENABLE KEYS */; -- -- Table structure for table `phpbb_confirm` -- DROP TABLE IF EXISTS `phpbb_confirm`; CREATE TABLE `phpbb_confirm` ( `confirm_id` char(32) NOT NULL default '', `session_id` char(32) NOT NULL default '', `code` char(6) NOT NULL default '', PRIMARY KEY (`session_id`,`confirm_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_confirm` -- /*!40000 ALTER TABLE `phpbb_confirm` DISABLE KEYS */; LOCK TABLES `phpbb_confirm` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_confirm` ENABLE KEYS */; -- -- Table structure for table `phpbb_disallow` -- DROP TABLE IF EXISTS `phpbb_disallow`; CREATE TABLE `phpbb_disallow` ( `disallow_id` mediumint(8) unsigned NOT NULL auto_increment, `disallow_username` varchar(25) NOT NULL default '', PRIMARY KEY (`disallow_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_disallow` -- /*!40000 ALTER TABLE `phpbb_disallow` DISABLE KEYS */; LOCK TABLES `phpbb_disallow` WRITE; INSERT INTO `phpbb_disallow` VALUES (1,'rafos'); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_disallow` ENABLE KEYS */; -- -- Table structure for table `phpbb_forum_prune` -- DROP TABLE IF EXISTS `phpbb_forum_prune`; CREATE TABLE `phpbb_forum_prune` ( `prune_id` mediumint(8) unsigned NOT NULL auto_increment, `forum_id` smallint(5) unsigned NOT NULL default '0', `prune_days` smallint(5) unsigned NOT NULL default '0', `prune_freq` smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (`prune_id`), KEY `forum_id` (`forum_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_forum_prune` -- /*!40000 ALTER TABLE `phpbb_forum_prune` DISABLE KEYS */; LOCK TABLES `phpbb_forum_prune` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_forum_prune` ENABLE KEYS */; -- -- Table structure for table `phpbb_forums` -- DROP TABLE IF EXISTS `phpbb_forums`; CREATE TABLE `phpbb_forums` ( `forum_id` smallint(5) unsigned NOT NULL default '0', `cat_id` mediumint(8) unsigned NOT NULL default '0', `forum_name` varchar(150) default NULL, `forum_desc` text, `forum_status` tinyint(4) NOT NULL default '0', `forum_order` mediumint(8) unsigned NOT NULL default '1', `forum_posts` mediumint(8) unsigned NOT NULL default '0', `forum_topics` mediumint(8) unsigned NOT NULL default '0', `forum_last_post_id` mediumint(8) unsigned NOT NULL default '0', `prune_next` int(11) default NULL, `prune_enable` tinyint(1) NOT NULL default '0', `auth_view` tinyint(2) NOT NULL default '0', `auth_read` tinyint(2) NOT NULL default '0', `auth_post` tinyint(2) NOT NULL default '0', `auth_reply` tinyint(2) NOT NULL default '0', `auth_edit` tinyint(2) NOT NULL default '0', `auth_delete` tinyint(2) NOT NULL default '0', `auth_sticky` tinyint(2) NOT NULL default '0', `auth_announce` tinyint(2) NOT NULL default '0', `auth_vote` tinyint(2) NOT NULL default '0', `auth_pollcreate` tinyint(2) NOT NULL default '0', `auth_attachments` tinyint(2) NOT NULL default '0', PRIMARY KEY (`forum_id`), KEY `forums_order` (`forum_order`), KEY `cat_id` (`cat_id`), KEY `forum_last_post_id` (`forum_last_post_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_forums` -- /*!40000 ALTER TABLE `phpbb_forums` DISABLE KEYS */; LOCK TABLES `phpbb_forums` WRITE; INSERT INTO `phpbb_forums` VALUES (1,1,'Heavenly\'s discussions','General discussions about the band, their music etc etc ...',0,10,1643,70,3466,NULL,0,0,0,0,0,1,1,3,3,1,1,3),(2,1,'Heavenly\'s members','Ask your questions directly to the members of Heavenly !!!',0,20,555,13,3467,NULL,0,0,0,0,0,1,1,3,3,1,1,0),(3,1,'Other bands','Here you can discuss about all the bands you love ...',0,30,861,38,3464,NULL,0,0,0,0,0,1,1,3,3,1,1,0),(4,1,'Do you hate Heavenly ?','You start vomiting everytime you hear one of our song ? \r\nTake it easy !!!\r\nFeel free to insult us just as you like !!!\r\nWe\'ll be understanding and attentive to your anger.',0,40,252,3,3441,NULL,0,0,0,0,0,1,1,3,3,1,1,0); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_forums` ENABLE KEYS */; -- -- Table structure for table `phpbb_groups` -- DROP TABLE IF EXISTS `phpbb_groups`; CREATE TABLE `phpbb_groups` ( `group_id` mediumint(8) NOT NULL auto_increment, `group_type` tinyint(4) NOT NULL default '1', `group_name` varchar(40) NOT NULL default '', `group_description` varchar(255) NOT NULL default '', `group_moderator` mediumint(8) NOT NULL default '0', `group_single_user` tinyint(1) NOT NULL default '1', PRIMARY KEY (`group_id`), KEY `group_single_user` (`group_single_user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_groups` -- /*!40000 ALTER TABLE `phpbb_groups` DISABLE KEYS */; LOCK TABLES `phpbb_groups` WRITE; INSERT INTO `phpbb_groups` VALUES (1,1,'Anonymous','Personal User',0,1),(2,1,'Admin','Personal User',0,1),(3,1,'','Personal User',0,1),(4,1,'','Personal User',0,1),(6,1,'','Personal User',0,1),(7,1,'','Personal User',0,1),(8,1,'','Personal User',0,1),(9,1,'','Personal User',0,1),(10,1,'','Personal User',0,1),(11,1,'','Personal User',0,1),(12,1,'','Personal User',0,1),(13,1,'','Personal User',0,1),(14,1,'','Personal User',0,1),(15,1,'','Personal User',0,1),(16,1,'','Personal User',0,1),(17,1,'','Personal User',0,1),(18,1,'','Personal User',0,1),(19,1,'','Personal User',0,1),(20,1,'','Personal User',0,1),(21,1,'','Personal User',0,1),(22,1,'','Personal User',0,1),(23,1,'','Personal User',0,1),(24,1,'','Personal User',0,1),(25,1,'','Personal User',0,1),(26,1,'','Personal User',0,1),(27,1,'','Personal User',0,1),(28,1,'','Personal User',0,1),(29,1,'','Personal User',0,1),(30,1,'','Personal User',0,1),(31,1,'','Personal User',0,1),(32,1,'','Personal User',0,1),(33,1,'','Personal User',0,1),(34,1,'','Personal User',0,1),(35,1,'','Personal User',0,1),(36,1,'','Personal User',0,1),(37,1,'','Personal User',0,1),(38,1,'','Personal User',0,1),(39,1,'','Personal User',0,1),(40,1,'','Personal User',0,1),(41,1,'','Personal User',0,1),(42,1,'','Personal User',0,1),(43,1,'','Personal User',0,1),(44,1,'','Personal User',0,1),(45,1,'','Personal User',0,1),(46,1,'','Personal User',0,1),(47,1,'','Personal User',0,1),(48,1,'','Personal User',0,1),(49,1,'','Personal User',0,1),(50,1,'','Personal User',0,1),(51,1,'','Personal User',0,1),(52,1,'','Personal User',0,1),(53,1,'','Personal User',0,1),(54,1,'','Personal User',0,1),(55,1,'','Personal User',0,1),(56,1,'','Personal User',0,1),(57,1,'','Personal User',0,1),(58,1,'','Personal User',0,1),(59,1,'','Personal User',0,1),(60,1,'','Personal User',0,1),(61,1,'','Personal User',0,1),(62,1,'','Personal User',0,1),(63,1,'','Personal User',0,1),(64,1,'','Personal User',0,1),(65,1,'','Personal User',0,1),(66,1,'','Personal User',0,1),(67,1,'','Personal User',0,1),(68,1,'','Personal User',0,1),(69,1,'','Personal User',0,1),(70,1,'','Personal User',0,1),(71,1,'','Personal User',0,1),(72,1,'','Personal User',0,1),(73,1,'','Personal User',0,1),(74,1,'','Personal User',0,1),(75,1,'','Personal User',0,1),(76,1,'','Personal User',0,1),(77,1,'','Personal User',0,1),(78,1,'','Personal User',0,1),(79,1,'','Personal User',0,1),(80,1,'','Personal User',0,1),(81,1,'','Personal User',0,1),(82,1,'','Personal User',0,1),(83,1,'','Personal User',0,1),(84,1,'','Personal User',0,1),(85,1,'','Personal User',0,1),(86,1,'','Personal User',0,1),(87,1,'','Personal User',0,1),(88,1,'','Personal User',0,1),(89,1,'','Personal User',0,1),(90,1,'','Personal User',0,1),(91,1,'','Personal User',0,1),(92,1,'','Personal User',0,1),(93,1,'','Personal User',0,1),(94,1,'','Personal User',0,1),(95,1,'','Personal User',0,1),(96,1,'','Personal User',0,1),(97,1,'','Personal User',0,1),(98,1,'','Personal User',0,1),(99,1,'','Personal User',0,1),(100,1,'','Personal User',0,1),(101,1,'','Personal User',0,1),(102,1,'','Personal User',0,1),(103,1,'','Personal User',0,1),(104,1,'','Personal User',0,1),(105,1,'','Personal User',0,1),(106,1,'','Personal User',0,1),(107,1,'','Personal User',0,1),(108,1,'','Personal User',0,1),(109,1,'','Personal User',0,1),(110,1,'','Personal User',0,1),(111,1,'','Personal User',0,1),(112,1,'','Personal User',0,1),(113,1,'','Personal User',0,1),(114,1,'','Personal User',0,1),(115,1,'','Personal User',0,1),(116,1,'','Personal User',0,1),(117,1,'','Personal User',0,1),(118,1,'','Personal User',0,1),(119,1,'','Personal User',0,1),(120,1,'','Personal User',0,1),(121,1,'','Personal User',0,1),(122,1,'','Personal User',0,1),(123,1,'','Personal User',0,1),(124,1,'','Personal User',0,1),(125,1,'','Personal User',0,1),(126,1,'','Personal User',0,1),(127,1,'','Personal User',0,1),(128,1,'','Personal User',0,1); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_groups` ENABLE KEYS */; -- -- Table structure for table `phpbb_posts` -- DROP TABLE IF EXISTS `phpbb_posts`; CREATE TABLE `phpbb_posts` ( `post_id` mediumint(8) unsigned NOT NULL auto_increment, `topic_id` mediumint(8) unsigned NOT NULL default '0', `forum_id` smallint(5) unsigned NOT NULL default '0', `poster_id` mediumint(8) NOT NULL default '0', `post_time` int(11) NOT NULL default '0', `poster_ip` varchar(8) NOT NULL default '', `post_username` varchar(25) default NULL, `enable_bbcode` tinyint(1) NOT NULL default '1', `enable_html` tinyint(1) NOT NULL default '0', `enable_smilies` tinyint(1) NOT NULL default '1', `enable_sig` tinyint(1) NOT NULL default '1', `post_edit_time` int(11) default NULL, `post_edit_count` smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (`post_id`), KEY `forum_id` (`forum_id`), KEY `topic_id` (`topic_id`), KEY `poster_id` (`poster_id`), KEY `post_time` (`post_time`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_posts` -- /*!40000 ALTER TABLE `phpbb_posts` DISABLE KEYS */; LOCK TABLES `phpbb_posts` WRITE; INSERT INTO `phpbb_posts` VALUES (3,2,2,4,1126618597,'52fc67c7','',1,0,1,1,NULL,0),(4,3,2,4,1126625137,'52fc67c7','',1,0,1,1,NULL,0),(5,4,2,4,1126625255,'52fc67c7','',1,0,1,1,NULL,0),(6,5,2,4,1126625320,'52fc67c7','',1,0,1,1,NULL,0),(7,6,2,4,1126625390,'52fc67c7','',1,0,1,1,NULL,0),(9,8,1,5,1126826978,'0cdd4196','',1,0,1,0,NULL,0),(10,3,2,5,1126827189,'0cdd4196','',1,0,1,1,NULL,0),(11,3,2,6,1126903888,'55a0bbd7','',1,0,1,1,NULL,0),(12,2,2,6,1126904077,'55a0bbd7','',1,0,1,1,NULL,0),(13,8,1,6,1126904412,'55a0bbd7','',1,0,1,1,NULL,0),(14,9,3,6,1126904821,'55a0bbd7','',1,0,1,1,NULL,0),(15,10,3,6,1126905050,'55a0bbd7','',1,0,1,1,NULL,0),(16,11,4,6,1126905241,'55a0bbd7','',1,0,1,1,NULL,0),(17,4,2,7,1126948800,'c35d6603','',1,0,1,0,NULL,0),(18,3,2,6,1126950750,'55a09e98','',1,0,1,1,NULL,0),(19,4,2,6,1126952073,'55a09e98','',1,0,1,1,NULL,0),(20,12,1,-1,1126955065,'55a5ffe9','',1,0,1,0,NULL,0),(21,4,2,9,1126961851,'acba99f5','',1,0,1,1,NULL,0),(22,3,2,9,1126961951,'acba99f5','',1,0,1,1,NULL,0),(23,2,2,9,1126962026,'acba99f5','',1,0,1,1,NULL,0),(24,6,2,9,1126962095,'acba99f5','',1,0,1,1,NULL,0),(25,5,2,9,1126962192,'acba99f5','',1,0,1,1,NULL,0),(26,13,1,9,1126962430,'acba99f5','',1,0,1,1,NULL,0),(27,14,1,9,1126963102,'acba99f5','',1,0,1,1,1132567945,3),(28,3,2,10,1126964085,'3e23e042','',1,0,1,1,NULL,0),(29,13,1,6,1126964743,'55a080c3','',1,0,1,1,NULL,0),(30,13,1,9,1126973218,'c35d6603','',1,0,1,1,NULL,0),(31,13,1,6,1126980152,'55a0802a','',1,0,1,1,NULL,0),(32,15,1,11,1127019614,'9b21a4d7','',1,0,1,1,NULL,0),(33,15,1,-1,1127035921,'55a5c5a7','',1,0,1,0,NULL,0),(34,15,1,12,1127042480,'534df2d0','',1,0,1,1,NULL,0),(35,3,2,12,1127042568,'534df2d0','',1,0,1,1,NULL,0),(36,2,2,12,1127042609,'534df2d0','',1,0,1,1,NULL,0),(37,2,2,3,1127048539,'5462a116','',1,0,1,0,NULL,0),(38,15,1,6,1127049235,'55a096ca','',1,0,1,1,NULL,0),(39,15,1,10,1127057223,'3e23e042','',1,0,1,1,NULL,0),(40,11,4,10,1127057629,'3e23e042','',1,0,1,1,NULL,0),(41,10,3,10,1127059021,'3e23e042','',1,0,1,1,NULL,0),(42,3,2,4,1127073324,'52fc28e1','',1,0,1,1,NULL,0),(43,2,2,9,1127131149,'c35d6603','',1,0,1,1,NULL,0),(44,15,1,14,1127143010,'c134ea90','',1,0,1,1,NULL,0),(45,16,1,14,1127143536,'c134ea90','',1,0,1,1,1127143800,1),(48,16,1,15,1127144607,'52ec7e38','',1,0,1,1,NULL,0),(49,16,1,14,1127154833,'d5382241','',1,0,1,1,NULL,0),(50,16,1,6,1127155015,'55a083c2','',1,0,1,1,NULL,0),(51,16,1,14,1127155216,'d5382241','',1,0,1,1,NULL,0),(52,17,1,14,1127156095,'d5382241','',1,0,1,1,NULL,0),(53,12,1,-1,1127157169,'54055e3b','Alex',1,0,1,0,NULL,0),(54,3,2,16,1127161458,'54629d53','',1,0,1,1,NULL,0),(55,17,1,13,1127187251,'cfff9ed1','',1,0,1,0,NULL,0),(56,4,2,7,1127226073,'c35d6603','',1,0,1,0,NULL,0),(57,16,1,18,1127226402,'52e8530b','',1,0,1,0,NULL,0),(58,4,2,18,1127226909,'52e8530b','',1,0,1,0,NULL,0),(59,17,1,14,1127227318,'c134ea90','',1,0,1,1,NULL,0),(60,2,2,18,1127227374,'52e8530b','',1,0,1,0,NULL,0),(61,4,2,7,1127241246,'c35d6603','',1,0,1,0,NULL,0),(62,17,1,6,1127242757,'55a081ea','',1,0,1,1,NULL,0),(63,4,2,6,1127244557,'55a081ea','',1,0,1,1,NULL,0),(64,4,2,7,1127244998,'c35d6603','',1,0,1,0,NULL,0),(65,9,3,13,1127270482,'cfff9ed1','',1,0,1,0,NULL,0),(66,18,1,-1,1127272616,'cb64f71d','dungeonbb',1,0,1,0,NULL,0),(67,5,2,18,1127297096,'52e8530b','',1,0,1,0,NULL,0),(68,2,2,9,1127302763,'c35d6603','',1,0,1,1,NULL,0),(69,4,2,9,1127303001,'c35d6603','',1,0,1,1,NULL,0),(70,5,2,6,1127312443,'55a09562','',1,0,1,1,NULL,0),(71,2,2,18,1127383891,'52e8530b','',1,0,1,0,NULL,0),(72,2,2,18,1127384050,'52e8530b','',1,0,1,0,NULL,0),(73,2,2,9,1127385805,'c35d6603','',1,0,1,1,NULL,0),(74,2,2,6,1127396016,'55a0b60c','',1,0,1,1,NULL,0),(75,2,2,12,1127414753,'534c198b','',1,0,1,1,NULL,0),(76,9,3,12,1127415165,'534c198b','',1,0,1,1,NULL,0),(77,19,1,12,1127415533,'534c198b','',1,0,1,1,NULL,0),(78,19,1,6,1127421331,'55a088b7','',1,0,1,1,NULL,0),(79,19,1,13,1127425937,'cfff9ed1','',1,0,1,0,NULL,0),(80,2,2,3,1127484265,'50769fb3','',1,0,1,0,NULL,0),(81,20,1,4,1127487540,'52fc93ad','',1,0,0,1,NULL,0),(82,20,1,9,1127498204,'c35d6603','',1,0,1,1,NULL,0),(83,20,1,6,1127510875,'55a09f07','',1,0,1,1,NULL,0),(84,15,1,-1,1127692640,'51c1189a','',1,0,1,0,NULL,0),(85,15,1,13,1127693494,'cfff9ed1','',1,0,1,0,NULL,0),(86,6,2,-1,1127742474,'c233dc97','',1,0,1,0,NULL,0),(87,6,2,9,1127747702,'c35d6603','',1,0,1,1,NULL,0),(88,15,1,-1,1127767436,'53b31a95','',1,0,1,0,NULL,0),(89,15,1,5,1127797409,'0cdd4196','',1,0,1,1,NULL,0),(90,19,1,14,1127827690,'c134eab0','',1,0,1,1,NULL,0),(91,2,2,6,1127859063,'55a0a7e1','',1,0,1,1,NULL,0),(92,2,2,18,1127864426,'52e8530b','',1,0,1,0,NULL,0),(93,6,2,18,1127864448,'52e8530b','',1,0,1,0,NULL,0),(94,5,2,18,1127864463,'52e8530b','',1,0,1,0,NULL,0),(95,4,2,18,1127864510,'52e8530b','',1,0,1,0,NULL,0),(96,3,2,18,1127864526,'52e8530b','',1,0,1,0,NULL,0),(97,4,2,7,1127903650,'c35d6603','',1,0,1,0,NULL,0),(98,21,1,-1,1127940822,'cb90a0f6','4876',0,0,1,0,NULL,0),(99,21,1,6,1128000191,'55a0bda4','',1,0,1,1,NULL,0),(100,17,1,7,1128018875,'c35d6603','',1,0,1,0,NULL,0),(101,19,1,-1,1128020465,'d9a20942','Rancord',1,0,1,0,NULL,0),(102,6,2,19,1128079821,'c2d6aa13','',1,0,1,0,NULL,0),(103,17,1,6,1128110347,'55a0971b','',1,0,1,1,NULL,0),(104,6,2,6,1128111430,'55a0971b','',1,0,1,1,NULL,0),(105,19,1,-1,1128207358,'3e007be2','',1,0,1,0,NULL,0),(106,20,1,-1,1128207963,'3e007be2','',1,0,1,0,NULL,0),(107,15,1,-1,1128249862,'da9ac2bd','Guest',1,0,1,0,NULL,0),(108,14,1,9,1128279255,'c35d6603','',1,0,1,1,NULL,0),(109,6,2,9,1128279442,'c35d6603','',1,0,1,1,NULL,0),(110,14,1,13,1128280013,'cfff9ed1','',1,0,1,0,NULL,0),(111,14,1,9,1128330137,'c35d6603','',1,0,1,1,NULL,0),(112,6,2,-1,1128333956,'c2d6aa13','thomas\'s fan',1,0,1,0,NULL,0),(113,6,2,19,1128353433,'c2d6aa13','',1,0,1,0,NULL,0),(114,17,1,14,1128357539,'c134ea90','',1,0,1,1,NULL,0),(115,17,1,6,1128428514,'55a0a5dc','',1,0,1,1,NULL,0),(116,14,1,12,1128429329,'534df31a','',1,0,1,1,NULL,0),(117,6,2,12,1128429540,'534df31a','',1,0,1,1,NULL,0),(118,6,2,6,1128430696,'55a0a5dc','',1,0,1,1,NULL,0),(119,6,2,9,1128455654,'c35d6603','',1,0,1,1,NULL,0),(120,6,2,19,1128509229,'c2d6aa13','',1,0,1,0,NULL,0),(121,4,2,19,1128509457,'c2d6aa13','',1,0,1,0,NULL,0),(122,9,3,-1,1128540127,'d9a20942','Rancord',1,0,1,0,NULL,0),(123,16,1,24,1128640163,'c3bae984','',1,0,1,1,NULL,0),(124,19,1,24,1128640586,'c3bae984','',1,0,1,1,NULL,0),(125,20,1,24,1128641020,'c3bae984','',1,0,1,1,NULL,0),(126,15,1,24,1128641226,'c3bae984','',1,0,1,1,NULL,0),(127,17,1,24,1128641352,'c3bae984','',1,0,1,1,NULL,0),(128,14,1,24,1128641445,'c3bae984','',1,0,1,1,NULL,0),(129,9,3,24,1128641996,'c3bae984','',1,0,1,1,NULL,0),(130,22,1,-1,1128656605,'c8a528fd','Irving',1,0,1,0,NULL,0),(131,14,1,9,1128678737,'c35d6603','',1,0,1,1,NULL,0),(132,23,1,-1,1128688269,'d9a20942','Rancord',1,0,1,0,NULL,0),(133,17,1,6,1128692542,'55a0abf5','',1,0,1,1,NULL,0),(134,16,1,6,1128694415,'55a0abf5','',1,0,1,1,NULL,0),(135,14,1,18,1128703323,'52e8530b','',1,0,1,0,NULL,0),(136,17,1,24,1128727589,'513e8d7f','',1,0,1,1,NULL,0),(137,16,1,24,1128727637,'513e8d7f','',1,0,1,1,NULL,0),(138,14,1,9,1128764261,'c35d6603','',1,0,1,1,NULL,0),(139,16,1,6,1128794173,'55a09d40','',1,0,1,1,NULL,0),(140,14,1,5,1128842580,'0cdd4196','',1,0,1,1,NULL,0),(141,16,1,12,1128939002,'3eca2913','',1,0,1,1,NULL,0),(142,4,2,7,1128970191,'c35d6603','',1,0,1,0,NULL,0),(143,4,2,9,1129028900,'c35d6603','',1,0,1,1,NULL,0),(144,4,2,7,1129054017,'acbb736c','',1,0,1,0,NULL,0),(145,24,1,7,1129054837,'acbb736c','',1,0,1,0,NULL,0),(146,4,2,18,1129064929,'52e8530b','',1,0,1,0,NULL,0),(147,4,2,7,1129151744,'c35d6603','',1,0,1,0,NULL,0),(979,38,1,38,1145012683,'54e6d545','',1,0,1,1,NULL,0),(150,26,1,5,1129177969,'0cd08b31','',1,0,1,1,NULL,0),(151,26,1,6,1129214067,'55a0ae53','',1,0,1,1,NULL,0),(152,26,1,9,1129221036,'c35d6603','',1,0,1,1,NULL,0),(153,4,2,9,1129221144,'c35d6603','',1,0,1,1,NULL,0),(154,4,2,12,1129376247,'534d13a4','',1,0,1,1,NULL,0),(155,3,2,12,1129377143,'534d13a4','',1,0,1,1,NULL,0),(156,2,2,12,1129377223,'534d13a4','',1,0,1,1,NULL,0),(157,15,1,12,1129377342,'534d13a4','',1,0,1,1,NULL,0),(158,17,1,12,1129377405,'534d13a4','',1,0,1,1,NULL,0),(159,16,1,12,1129377472,'534d13a4','',1,0,1,1,NULL,0),(160,26,1,12,1129377508,'534d13a4','',1,0,1,1,NULL,0),(161,8,1,12,1129377584,'534d13a4','',1,0,1,1,NULL,0),(162,10,3,12,1129377725,'534d13a4','',1,0,1,1,NULL,0),(163,11,4,12,1129377800,'534d13a4','',1,0,1,1,NULL,0),(164,3,2,4,1129377955,'52fc2f22','',1,0,1,1,NULL,0),(165,27,1,12,1129377972,'534d13a4','',1,0,1,1,NULL,0),(166,3,2,12,1129378158,'534d13a4','',1,0,1,1,NULL,0),(167,27,1,9,1129378839,'c35d6603','',1,0,1,1,NULL,0),(168,4,2,9,1129378944,'c35d6603','',1,0,1,1,NULL,0),(169,4,2,12,1129379070,'534d13a4','',1,0,1,1,NULL,0),(170,3,2,9,1129379145,'c35d6603','',1,0,1,1,NULL,0),(171,27,1,12,1129379217,'534d13a4','',1,0,1,1,NULL,0),(172,3,2,12,1129379819,'534d13a4','',1,0,1,1,NULL,0),(173,3,2,4,1129383046,'52fc2f22','',1,0,1,1,NULL,0),(174,3,2,12,1129396751,'534d13a4','',1,0,1,1,NULL,0),(175,2,2,-1,1129465248,'50769c18','ben',1,0,1,0,NULL,0),(176,2,2,12,1129468225,'534d1dfb','',1,0,1,1,NULL,0),(177,17,1,6,1129472942,'55a0879a','',1,0,1,1,NULL,0),(178,27,1,6,1129473069,'55a0879a','',1,0,1,1,NULL,0),(179,27,1,13,1129487007,'cfff9ed1','',1,0,1,0,NULL,0),(180,2,2,-1,1129508691,'50769c18','ben',1,0,1,0,NULL,0),(181,2,2,-1,1129531860,'04f21230','Brandon',1,0,1,0,NULL,0),(182,14,1,9,1129557310,'c35d6603','',1,0,1,1,1132568114,1),(183,2,2,12,1129557407,'3ecb132f','',1,0,1,1,NULL,0),(184,2,2,9,1129558807,'c35d6603','',1,0,1,1,NULL,0),(185,2,2,-1,1129594642,'5462a70b','ben',1,0,1,0,NULL,0),(186,27,1,14,1129631419,'c134ea90','',1,0,1,1,NULL,0),(187,17,1,14,1129631675,'c134ea90','',1,0,1,1,NULL,0),(188,8,1,14,1129631857,'c134ea90','',1,0,1,1,NULL,0),(189,2,2,14,1129632153,'c134ea90','',1,0,1,1,NULL,0),(190,8,1,6,1129637779,'55a08775','',1,0,1,1,NULL,0),(191,17,1,6,1129638537,'55a08775','',1,0,1,1,NULL,0),(192,17,1,7,1129642884,'c35d6603','',1,0,1,0,NULL,0),(193,2,2,12,1129645692,'d5032281','',1,0,1,1,NULL,0),(194,17,1,13,1129655007,'92ba3d1e','',1,0,1,0,NULL,0),(195,17,1,14,1129720472,'c134ea90','',1,0,1,1,NULL,0),(196,8,1,14,1129720844,'c134ea90','',1,0,1,1,NULL,0),(197,17,1,18,1129722020,'52e8530b','',1,0,1,0,NULL,0),(198,8,1,6,1129727553,'55a08e4b','',1,0,1,1,NULL,0),(199,2,2,9,1129741340,'c35d6603','',1,0,1,1,NULL,0),(200,8,1,-1,1129748270,'513e18ed','',1,0,1,0,NULL,0),(201,8,1,12,1129748344,'513e18ed','',1,0,1,1,NULL,0),(202,28,1,-1,1129801427,'ceac865d','HEAVENLYRULES!!!!',1,0,1,0,NULL,0),(203,28,1,13,1129860839,'cfff9ed1','',1,0,1,0,NULL,0),(204,27,1,24,1129892953,'3ecb86d5','',1,0,1,1,NULL,0),(205,17,1,24,1129893130,'3ecb86d5','',1,0,1,1,NULL,0),(206,2,2,24,1129893394,'3ecb86d5','',1,0,1,1,NULL,0),(207,10,3,24,1129893533,'3ecb86d5','',1,0,1,1,NULL,0),(208,10,3,6,1129900316,'55a09057','',1,0,1,1,NULL,0),(209,10,3,24,1129936877,'3ecb86d5','',1,0,1,1,NULL,0),(210,10,3,6,1129973666,'55a08690','',1,0,1,1,NULL,0),(211,10,3,12,1129974564,'513e11bc','',1,0,1,1,NULL,0),(212,11,4,34,1130002178,'c251696e','',1,0,1,0,NULL,0),(213,29,3,13,1130048265,'cfff9ed1','',1,0,1,0,NULL,0),(214,29,3,6,1130065498,'55a0b613','',1,0,1,1,NULL,0),(215,10,3,24,1130091776,'534f60df','',1,0,1,1,NULL,0),(216,17,1,-1,1130113538,'5462a029','BEN',1,0,1,0,NULL,0),(217,17,1,-1,1130150856,'54e6c58b','From Finland',1,0,1,0,NULL,0),(218,17,1,14,1130154628,'c134ea90','',1,0,1,1,NULL,0),(219,8,1,14,1130154772,'c134ea90','',1,0,1,1,NULL,0),(220,29,3,14,1130158554,'c134ea90','',1,0,1,1,NULL,0),(221,8,1,24,1130176602,'513e8c75','',1,0,1,1,NULL,0),(222,2,2,-1,1130180010,'d9a20942','',1,0,1,0,NULL,0),(223,8,1,6,1130181791,'55a0989c','',1,0,1,1,NULL,0),(224,29,3,6,1130183346,'55a0989c','',1,0,1,1,NULL,0),(225,29,3,24,1130184099,'513e8c75','',1,0,1,1,1131541961,1),(226,8,1,14,1130237383,'c134ea90','',1,0,1,1,NULL,0),(227,29,3,14,1130245630,'c134ea90','',1,0,1,1,NULL,0),(228,29,3,14,1130246547,'c134ea90','',1,0,1,1,1130267874,1),(229,8,1,6,1130248988,'55a09181','',1,0,1,1,NULL,0),(230,8,1,14,1130249581,'c134ea90','',1,0,1,1,NULL,0),(231,8,1,24,1130250427,'3ecb8014','',1,0,1,1,NULL,0),(232,29,3,6,1130250476,'55a09181','',1,0,1,1,NULL,0),(233,8,1,6,1130251442,'55a09181','',1,0,1,1,NULL,0),(234,8,1,14,1130251588,'c134ea90','',1,0,1,1,NULL,0),(235,8,1,6,1130252268,'55a09181','',1,0,1,1,NULL,0),(236,8,1,14,1130252575,'c134ea90','',1,0,1,1,NULL,0),(237,8,1,12,1130252589,'3eca20b1','',1,0,1,1,NULL,0),(238,8,1,14,1130252673,'c134ea90','',1,0,1,1,NULL,0),(239,8,1,24,1130253114,'3ecb8014','',1,0,1,1,NULL,0),(240,29,3,24,1130253202,'3ecb8014','',1,0,1,1,NULL,0),(241,8,1,14,1130253294,'c134ea90','',1,0,1,1,NULL,0),(242,8,1,12,1130267315,'3eca20b1','',1,0,1,1,NULL,0),(243,8,1,14,1130267756,'d5382241','',1,0,1,1,NULL,0),(244,8,1,24,1130275114,'3ecb8014','',1,0,1,1,NULL,0),(245,8,1,14,1130322456,'c134ea90','',1,0,1,1,NULL,0),(246,8,1,24,1130331191,'c3baea85','',1,0,1,1,NULL,0),(247,30,1,35,1130345357,'93bcfec8','',1,0,1,0,NULL,0),(248,8,1,14,1130436632,'d5382241','',1,0,1,1,NULL,0),(249,30,1,6,1130445290,'55a09d38','',1,0,1,1,NULL,0),(250,12,1,26,1130462783,'46124790','',1,0,1,1,NULL,0),(251,24,1,-1,1130770451,'54e6c58b','From Finland',1,0,1,0,NULL,0),(252,24,1,-1,1130771309,'54e6c58b','From Finland',1,0,1,0,NULL,0),(253,24,1,7,1130776356,'c35d6603','',1,0,1,0,NULL,0),(254,24,1,24,1130784648,'c3baa06f','',1,0,1,1,NULL,0),(255,19,1,-1,1130852447,'d5674853','maskofdarkness',1,0,1,0,NULL,0),(256,31,1,9,1131035601,'56c2580b','',1,0,1,1,NULL,0),(257,31,1,12,1131036515,'3eca28d2','',1,0,1,1,NULL,0),(258,31,1,9,1131211237,'51fbf3da','',1,0,1,1,NULL,0),(259,31,1,12,1131279410,'534df307','',1,0,1,1,NULL,0),(260,17,1,12,1131279468,'534df307','',1,0,1,1,NULL,0),(261,14,1,12,1131279533,'534df307','',1,0,1,1,NULL,0),(262,3,2,4,1131290944,'52fc6ae1','',1,0,1,1,NULL,0),(263,3,2,9,1131294352,'51fbf3da','',1,0,1,1,NULL,0),(264,32,1,38,1131386026,'54e6c58b','',1,0,1,0,NULL,0),(265,3,2,12,1131390048,'d50322db','',1,0,1,1,NULL,0),(266,16,1,39,1131393774,'8de9b561','',1,0,1,0,NULL,0),(267,10,3,39,1131394565,'8de9b561','',1,0,1,0,NULL,0),(268,9,3,39,1131395488,'8de9b561','',1,0,1,0,NULL,0),(269,19,1,39,1131395955,'8de9b561','',1,0,1,0,NULL,0),(270,32,1,6,1131396529,'55a0ab40','',1,0,1,1,NULL,0),(271,20,1,39,1131396790,'8de9b561','',1,0,1,0,NULL,0),(272,3,2,6,1131397606,'55a0ab40','',1,0,1,1,NULL,0),(273,10,3,6,1131398103,'55a0ab40','',1,0,1,1,NULL,0),(274,17,1,6,1131399531,'55a0ab40','',1,0,1,1,NULL,0),(275,32,1,9,1131446399,'c35d6603','',1,0,1,1,NULL,0),(276,33,1,13,1131474201,'92ba3d1e','',1,0,1,0,NULL,0),(277,33,1,12,1131475579,'534d1c13','',1,0,1,1,NULL,0),(278,30,1,14,1131532183,'c134ea90','',1,0,1,1,NULL,0),(279,31,1,14,1131532424,'c134ea90','',1,0,1,1,NULL,0),(280,17,1,14,1131532832,'c134ea90','',1,0,1,1,NULL,0),(312,3,2,14,1131987809,'c134ea90','',1,0,1,1,NULL,0),(282,29,3,14,1131533487,'c134ea90','',1,0,1,1,NULL,0),(283,9,3,14,1131533660,'c134ea90','',1,0,1,1,NULL,0),(284,11,4,14,1131533768,'c134ea90','',1,0,1,1,NULL,0),(285,32,1,38,1131535032,'54e6c58b','',1,0,1,0,NULL,0),(286,31,1,24,1131541565,'c3baae6c','',1,0,1,1,NULL,0),(287,3,2,24,1131541869,'c3baae6c','',1,0,1,1,NULL,0),(288,10,3,24,1131542070,'c3baae6c','',1,0,1,1,1131720571,1),(289,17,1,6,1131545499,'55a09f82','',1,0,1,1,NULL,0),(290,3,2,6,1131547993,'55a09f82','',1,0,1,1,NULL,0),(291,10,3,6,1131548521,'55a09f82','',1,0,1,1,NULL,0),(292,3,2,38,1131552919,'54e6c58b','',1,0,1,0,NULL,0),(293,3,2,12,1131553053,'534dfd43','',1,0,1,1,NULL,0),(294,11,4,12,1131553135,'534dfd43','',1,0,1,1,NULL,0),(295,4,2,38,1131553191,'54e6c58b','',1,0,1,0,NULL,0),(296,32,1,9,1131557456,'c35d6603','',1,0,1,1,NULL,0),(297,4,2,7,1131744041,'c35d6603','',1,0,1,0,NULL,0),(298,24,1,41,1131773908,'98a36508','',1,0,1,0,NULL,0),(299,4,2,38,1131805296,'54e6c58b','',1,0,1,0,NULL,0),(300,19,1,42,1131809201,'53250bc5','',1,0,1,0,NULL,0),(301,15,1,42,1131812914,'53250bc5','',1,0,1,0,NULL,0),(302,16,1,42,1131813049,'53250bc5','',1,0,1,0,NULL,0),(303,15,1,38,1131821198,'54e6c58b','',1,0,1,0,NULL,0),(304,34,1,38,1131822040,'54e6c58b','',1,0,1,0,NULL,0),(305,4,2,24,1131851573,'534c885d','',1,0,1,1,NULL,0),(306,34,1,12,1131875670,'534d1749','',1,0,1,1,NULL,0),(307,34,1,6,1131881479,'55a0b89d','',1,0,1,1,NULL,0),(308,19,1,-1,1131892733,'442f7576','adam',1,0,1,0,NULL,0),(309,15,1,-1,1131894263,'53ed11e2','Onkelskrut',1,0,1,0,NULL,0),(310,16,1,14,1131987310,'c134ea90','',1,0,1,1,NULL,0),(311,34,1,14,1131987482,'c134ea90','',1,0,1,1,NULL,0),(313,11,4,14,1131987865,'c134ea90','',1,0,1,1,NULL,0),(314,16,1,38,1131995455,'54e6d32d','',1,0,1,0,NULL,0),(315,9,3,38,1131995617,'54e6d32d','',1,0,1,0,NULL,0),(316,35,1,43,1132015736,'d541e754','',1,0,1,1,NULL,0),(317,36,3,43,1132015860,'d541e754','',1,0,1,1,NULL,0),(318,3,2,9,1132052720,'c35d6603','',1,0,1,1,NULL,0),(319,3,2,14,1132056784,'c134ea90','',1,0,1,1,NULL,0),(320,35,1,38,1132063070,'54e6d32d','',1,0,1,0,NULL,0),(321,36,3,6,1132085865,'55a0af75','',1,0,1,1,NULL,0),(322,35,1,-1,1132092834,'d541e754','',1,0,1,0,NULL,0),(323,34,1,13,1132119043,'cfff9ed1','',1,0,1,0,NULL,0),(324,35,1,24,1132139637,'534d82d6','',1,0,1,1,NULL,0),(325,15,1,44,1132246697,'acd562ce','',1,0,1,1,NULL,0),(326,34,1,44,1132246830,'acd562ce','',1,0,1,1,NULL,0),(327,2,2,44,1132247073,'acd562ce','',1,0,1,1,NULL,0),(328,9,3,44,1132247997,'acd562ce','',1,0,1,1,NULL,0),(329,15,1,14,1132255245,'d5382241','',1,0,1,1,NULL,0),(330,2,2,-1,1132276587,'50769f1b','ben',1,0,1,0,NULL,0),(331,20,1,-1,1132278209,'d541e754','',1,0,1,0,NULL,0),(332,15,1,45,1132392560,'db4e732b','',1,0,1,1,NULL,0),(333,9,3,45,1132393027,'db4e732b','',1,0,1,1,NULL,0),(334,2,2,44,1132490470,'c35d1503','',1,0,1,1,NULL,0),(335,11,4,44,1132490583,'c35d1503','',1,0,1,1,NULL,0),(336,14,1,9,1132568009,'c35d6603','',1,0,1,1,NULL,0),(337,9,3,14,1132582217,'c134ea90','',1,0,1,1,NULL,0),(338,9,3,44,1132589900,'c35d1529','',1,0,1,1,NULL,0),(339,14,1,44,1132590245,'c35d1504','',1,0,1,1,NULL,0),(340,2,2,6,1132605137,'55a08fde','',1,0,1,1,NULL,0),(341,3,2,4,1132607920,'52fc3466','',1,0,1,1,NULL,0),(342,3,2,6,1132668058,'55a09c5d','',1,0,1,1,NULL,0),(343,3,2,44,1132668158,'c35d1529','',1,0,1,1,NULL,0),(344,3,2,38,1132671934,'54e6d32d','',1,0,1,0,NULL,0),(345,3,2,14,1132740253,'c134ea90','',1,0,1,1,NULL,0),(346,2,2,14,1132740441,'c134ea90','',1,0,1,1,NULL,0),(347,9,3,14,1132740532,'c134ea90','',1,0,1,1,NULL,0),(348,37,1,14,1132741294,'c134ea90','',1,0,1,1,NULL,0),(349,37,1,9,1132745465,'c35d6603','',1,0,1,1,NULL,0),(350,37,1,6,1132757602,'55a0ad33','',1,0,1,1,NULL,0),(351,2,2,6,1132758795,'55a0ad33','',1,0,1,1,NULL,0),(352,37,1,12,1132762191,'534cf2bd','',1,0,1,1,NULL,0),(353,3,2,12,1132762511,'534cf2bd','',1,0,1,1,NULL,0),(354,10,3,45,1132797255,'db4f49d3','',1,0,1,1,NULL,0),(355,15,1,-1,1132798114,'d50de67a','',1,0,1,0,NULL,0),(356,38,1,47,1132938399,'54d9149c','',1,0,1,1,NULL,0),(357,24,1,47,1132938611,'54d9149c','',1,0,1,1,NULL,0),(358,9,3,47,1132938939,'54d9149c','',1,0,1,1,NULL,0),(359,38,1,38,1132949746,'54e6d32d','',1,0,1,0,NULL,0),(360,38,1,-1,1132951086,'54d9149c','',1,0,1,0,NULL,0),(361,36,3,-1,1132951377,'54d9149c','',1,0,1,0,NULL,0),(362,37,1,44,1132967857,'c35d1529','',1,0,1,1,NULL,0),(363,15,1,44,1132968101,'c35d1529','',1,0,1,1,NULL,0),(364,2,2,44,1132968205,'c35d1529','',1,0,1,1,NULL,0),(365,15,1,48,1133018705,'51d89c37','',1,0,1,1,NULL,0),(366,37,1,48,1133019317,'51d89c37','',1,0,1,1,NULL,0),(367,38,1,48,1133019840,'51d89c37','',1,0,1,1,NULL,0),(368,24,1,48,1133019956,'51d89c37','',1,0,1,1,NULL,0),(369,34,1,48,1133019975,'51d89c37','',1,0,1,1,NULL,0),(370,4,2,48,1133020017,'51d89c37','',1,0,1,1,NULL,0),(371,11,4,48,1133021019,'51d89c37','',1,0,1,1,NULL,0),(372,2,2,48,1133021445,'51d89c37','',1,0,1,1,NULL,0),(373,9,3,48,1133021973,'51d89c37','',1,0,1,1,NULL,0),(374,38,1,38,1133025375,'54e6d32d','',1,0,1,0,NULL,0),(375,38,1,48,1133027230,'51d89c37','',1,0,1,1,NULL,0),(376,2,2,-1,1133103291,'5462a066','BEN',1,0,1,0,NULL,0),(377,34,1,14,1133181758,'c134ea90','',1,0,1,1,NULL,0),(378,37,1,14,1133182198,'c134ea90','',1,0,1,1,NULL,0),(379,15,1,14,1133182306,'c134ea90','',1,0,1,1,NULL,0),(380,2,2,14,1133182837,'c134ea90','',1,0,1,1,NULL,0),(381,15,1,-1,1133184726,'54d91dc5','',1,0,1,0,NULL,0),(382,2,2,6,1133193794,'55a0b39e','',1,0,1,1,NULL,0),(383,39,1,6,1133194533,'55a0b39e','',1,0,1,1,1133276887,1),(384,39,1,48,1133198653,'51d89c37','',1,0,1,1,NULL,0),(385,15,1,48,1133198691,'51d89c37','',1,0,1,1,NULL,0),(386,34,1,48,1133198730,'51d89c37','',1,0,1,1,NULL,0),(387,19,1,48,1133213768,'51d89c37','',1,0,1,1,NULL,0),(388,37,1,13,1133275271,'80765504','',1,0,1,0,NULL,0),(389,11,4,13,1133275906,'80765504','',1,0,1,0,NULL,0),(390,39,1,6,1133276617,'55a09669','',1,0,1,1,NULL,0),(391,40,1,6,1133277151,'55a09669','',1,0,1,1,NULL,0),(392,11,4,6,1133278031,'55a09669','',1,0,1,1,NULL,0),(393,40,1,48,1133288415,'51d89c37','',1,0,1,1,NULL,0),(394,39,1,48,1133288491,'51d89c37','',1,0,1,1,NULL,0),(395,11,4,48,1133288745,'51d89c37','',1,0,1,1,NULL,0),(396,39,1,14,1133294707,'d5382241','',1,0,1,1,NULL,0),(397,39,1,38,1133296047,'54e6d32d','',1,0,1,0,NULL,0),(398,11,4,38,1133296344,'54e6d32d','',1,0,1,0,NULL,0),(399,40,1,13,1133310802,'cfff9ed1','',1,0,1,0,NULL,0),(400,39,1,13,1133311064,'cfff9ed1','',1,0,1,0,NULL,0),(401,39,1,48,1133342166,'51d89c37','',1,0,1,1,NULL,0),(402,11,4,48,1133342337,'51d89c37','',1,0,1,1,NULL,0),(403,10,3,52,1133379357,'d4c71a83','',1,0,1,1,NULL,0),(404,9,3,52,1133379408,'d4c71a83','',1,0,1,1,NULL,0),(405,29,3,52,1133379457,'d4c71a83','',1,0,1,1,NULL,0),(406,3,2,52,1133379509,'d4c71a83','',1,0,1,1,NULL,0),(407,16,1,52,1133379558,'d4c71a83','',1,0,1,1,NULL,0),(408,37,1,24,1133388590,'534e62bd','',1,0,1,1,NULL,0),(409,39,1,24,1133388780,'534e62bd','',1,0,1,1,NULL,0),(410,10,3,24,1133391441,'534e62bd','',1,0,1,1,NULL,0),(411,11,4,24,1133391681,'534e62bd','',1,0,1,1,NULL,0),(412,41,3,38,1133444964,'54e6d32d','',1,0,1,0,NULL,0),(413,39,1,48,1133459633,'51d89c37','',1,0,1,1,NULL,0),(414,16,1,48,1133459963,'51d89c37','',1,0,1,1,NULL,0),(415,3,2,48,1133460177,'51d89c37','',1,0,1,1,NULL,0),(416,9,3,48,1133461545,'51d89c37','',1,0,1,1,NULL,0),(417,11,4,48,1133461591,'51d89c37','',1,0,1,1,NULL,0),(418,36,3,48,1133461812,'51d89c37','',1,0,1,1,NULL,0),(419,40,1,14,1133465732,'d5382241','',1,0,1,1,NULL,0),(420,41,3,14,1133466103,'d5382241','',1,0,1,1,NULL,0),(421,39,1,6,1133468899,'55a0a935','',1,0,1,1,NULL,0),(422,16,1,38,1133469496,'54e6d32d','',1,0,1,0,NULL,0),(423,39,1,38,1133469748,'54e6d32d','',1,0,1,0,NULL,0),(424,5,2,6,1133470072,'55a0a935','',1,0,1,1,NULL,0),(425,41,3,6,1133470300,'55a0a935','',1,0,1,1,NULL,0),(426,42,3,6,1133473234,'55a0a935','',1,0,1,1,NULL,0),(427,5,2,9,1133524438,'c35d6603','',1,0,1,1,NULL,0),(428,16,1,48,1133524610,'51d89c37','',1,0,1,1,NULL,0),(429,40,1,48,1133524772,'51d89c37','',1,0,1,1,NULL,0),(430,39,1,48,1133524864,'51d89c37','',1,0,1,1,NULL,0),(431,42,3,48,1133524971,'51d89c37','',1,0,1,1,NULL,0),(432,42,3,38,1133525036,'54e6d32d','',1,0,1,0,NULL,0),(433,39,1,38,1133525282,'54e6d32d','',1,0,1,0,NULL,0),(434,39,1,48,1133526018,'51d89c37','',1,0,1,1,NULL,0),(435,39,1,38,1133526985,'54e6d32d','',1,0,1,0,NULL,0),(436,39,1,48,1133527128,'51d89c37','',1,0,1,1,NULL,0),(437,39,1,38,1133527869,'54e6d32d','',1,0,1,0,NULL,0),(438,39,1,48,1133528959,'51d89c37','',1,0,1,1,NULL,0),(439,37,1,47,1133551533,'54d917ff','',1,0,1,1,NULL,0),(440,40,1,47,1133551707,'54d917ff','',1,0,1,1,NULL,0),(441,5,2,6,1133555978,'55a0bd44','',1,0,1,1,NULL,0),(442,42,3,6,1133556793,'55a0bd44','',1,0,1,1,NULL,0),(443,34,1,-1,1133558643,'d9a20942','Rancord',1,0,1,0,NULL,0),(444,5,2,9,1133610194,'c35d6603','',1,0,1,1,NULL,0),(445,37,1,48,1133696188,'51d89c37','',1,0,1,1,NULL,0),(446,42,3,48,1133696267,'51d89c37','',1,0,1,1,NULL,0),(447,37,1,53,1133700702,'51fb2df4','',1,0,1,0,NULL,0),(448,42,3,6,1133702129,'55a09fae','',1,0,1,1,NULL,0),(449,37,1,9,1133780375,'c35d6603','',1,0,1,1,NULL,0),(450,34,1,18,1133782013,'52e8530b','',1,0,1,0,NULL,0),(451,37,1,18,1133782232,'52e8530b','',1,0,1,0,NULL,0),(452,40,1,18,1133782494,'52e8530b','',1,0,1,0,NULL,0),(453,37,1,12,1133794433,'534c12ba','',1,0,1,1,NULL,0),(454,43,1,38,1133805378,'54e6536a','',1,0,1,0,NULL,0),(455,16,1,38,1133813267,'54e6536a','',1,0,1,0,NULL,0),(456,34,1,38,1133813575,'54e6536a','',1,0,1,0,NULL,0),(457,11,4,44,1133818205,'c35d1529','',1,0,1,1,NULL,0),(458,19,1,44,1133818512,'c35d1529','',1,0,1,1,NULL,0),(459,19,1,38,1133867777,'54e6536a','',1,0,1,0,NULL,0),(460,19,1,26,1133867938,'8d9e94b3','',1,0,1,1,NULL,0),(461,34,1,26,1133868005,'8d9e94b3','',1,0,1,1,NULL,0),(462,37,1,26,1133868202,'8d9e94b3','',1,0,1,1,NULL,0),(463,40,1,26,1133868314,'8d9e94b3','',1,0,1,1,NULL,0),(464,14,1,26,1133868420,'8d9e94b3','',1,0,1,1,NULL,0),(465,31,1,26,1133868515,'8d9e94b3','',1,0,1,1,NULL,0),(466,2,2,26,1133868673,'8d9e94b3','',1,0,1,1,NULL,0),(467,3,2,26,1133869255,'8d9e94b3','',1,0,1,1,NULL,0),(468,44,1,-1,1133869996,'8d9e94b3','WoW',1,0,1,0,NULL,0),(469,44,1,26,1133870143,'8d9e94b3','',1,0,1,1,NULL,0),(470,31,1,9,1133871590,'c35d6603','',1,0,1,1,NULL,0),(471,14,1,9,1133871853,'c35d6603','',1,0,1,1,NULL,0),(472,13,1,9,1133872036,'c35d6603','',1,0,1,1,NULL,0),(473,43,1,14,1133883537,'c134ea90','',1,0,1,1,NULL,0),(474,37,1,13,1133884229,'92ba3d1e','',1,0,1,0,NULL,0),(475,13,1,24,1133889815,'3ecb88d8','',1,0,1,1,NULL,0),(476,2,2,38,1133978692,'54e6536a','',1,0,1,0,NULL,0),(477,37,1,39,1133999805,'8de9b561','',1,0,1,0,NULL,0),(478,42,3,39,1134000334,'8de9b561','',1,0,1,0,NULL,0),(479,37,1,-1,1134018160,'8d9e94b3','',1,0,1,0,NULL,0),(480,37,1,26,1134018237,'8d9e94b3','',1,0,1,1,NULL,0),(481,43,1,26,1134018405,'8d9e94b3','',1,0,1,1,NULL,0),(482,3,2,12,1134037664,'534d178e','',1,0,1,1,NULL,0),(483,34,1,12,1134037833,'534d178e','',1,0,1,1,NULL,0),(484,34,1,-1,1134042412,'8d9e94b3','',1,0,1,0,NULL,0),(485,3,2,-1,1134042504,'8d9e94b3','',1,0,1,0,NULL,0),(486,24,1,-1,1134042620,'8d9e94b3','',1,0,1,0,NULL,0),(487,24,1,7,1134046192,'500ba0b2','',1,0,1,0,NULL,0),(488,24,1,24,1134139276,'c3bae3aa','',1,0,1,1,NULL,0),(489,3,2,24,1134139454,'c3bae3aa','',1,0,1,1,NULL,0),(490,24,1,38,1134142259,'54e6536a','',1,0,1,0,NULL,0),(491,3,2,38,1134143173,'54e6536a','',1,0,1,0,NULL,0),(492,2,2,-1,1134178351,'50769cf9','ben',1,0,1,0,NULL,0),(493,2,2,-1,1134178378,'50769cf9','ben',1,0,1,0,NULL,0),(494,41,3,-1,1134197568,'8d9e94b3','',1,0,1,0,NULL,0),(495,4,2,-1,1134197681,'8d9e94b3','',1,0,1,0,NULL,0),(496,3,2,24,1134223665,'3ecb83a9','',1,0,1,1,NULL,0),(497,3,2,18,1134225356,'52e8530b','',1,0,1,0,NULL,0),(498,3,2,6,1134228207,'55a0917e','',1,0,1,1,NULL,0),(499,3,2,38,1134228986,'54e6536a','',1,0,1,0,NULL,0),(500,3,2,24,1134265446,'513e8d2a','',1,0,1,1,NULL,0),(501,3,2,6,1134300004,'55a087f7','',1,0,1,1,NULL,0),(502,19,1,44,1134302328,'c35d1529','',1,0,1,1,NULL,0),(503,38,1,57,1134328488,'539b7a04','',1,0,1,1,NULL,0),(504,38,1,48,1134335215,'51d89c37','',1,0,1,1,NULL,0),(505,24,1,48,1134335254,'51d89c37','',1,0,1,1,NULL,0),(506,37,1,48,1134335381,'51d89c37','',1,0,1,1,NULL,0),(507,4,2,48,1134335563,'51d89c37','',1,0,1,1,NULL,0),(508,2,2,48,1134335660,'51d89c37','',1,0,1,1,NULL,0),(509,39,1,-1,1134350709,'50769ae8','ben',1,0,1,0,NULL,0),(510,39,1,48,1134375911,'51d89c37','',1,0,1,1,NULL,0),(511,45,1,48,1134388174,'51d89c37','',1,0,1,1,NULL,0),(512,41,3,48,1134388402,'51d89c37','',1,0,1,1,NULL,0),(513,38,1,24,1134388506,'534e6728','',1,0,1,1,NULL,0),(514,11,4,48,1134388523,'51d89c37','',1,0,1,1,NULL,0),(515,38,1,48,1134388575,'51d89c37','',1,0,1,1,NULL,0),(516,45,1,24,1134388921,'534e6728','',1,0,1,1,NULL,0),(517,45,1,48,1134390114,'51d89c37','',1,0,1,1,NULL,0),(518,45,1,24,1134396067,'534e6728','',1,0,1,1,NULL,0),(519,45,1,38,1134397182,'54e6536a','',1,0,1,0,NULL,0),(520,3,2,38,1134397361,'54e6536a','',1,0,1,0,NULL,0),(521,45,1,48,1134397363,'51d89c37','',1,0,1,1,NULL,0),(522,39,1,38,1134397625,'54e6536a','',1,0,1,0,NULL,0),(523,39,1,48,1134397896,'51d89c37','',1,0,1,1,NULL,0),(524,39,1,38,1134398865,'54e6536a','',1,0,1,0,NULL,0),(525,2,2,38,1134399091,'54e6536a','',1,0,1,0,NULL,0),(526,46,4,-1,1134479937,'cf8677b6','BIG FANS',1,0,1,0,NULL,0),(527,45,1,-1,1134506117,'51d89c37','',1,0,1,0,NULL,0),(528,45,1,-1,1134506270,'51d89c37','',1,0,1,0,NULL,0),(529,46,4,-1,1134509683,'51d89c37','',1,0,1,0,NULL,0),(530,45,1,24,1134518970,'534d8a22','',1,0,1,1,NULL,0),(531,38,1,57,1134543585,'539bb38f','',1,0,1,1,NULL,0),(532,38,1,57,1134543739,'539bb38f','',1,0,1,1,NULL,0),(533,11,4,44,1134561121,'c35d1529','',1,0,1,1,NULL,0),(534,39,1,14,1134561260,'c134ea90','',1,0,1,1,NULL,0),(535,2,2,14,1134561542,'c134ea90','',1,0,1,1,NULL,0),(536,39,1,38,1134568955,'54e6c5bd','',1,0,1,0,NULL,0),(537,39,1,48,1134577462,'51d89c37','',1,0,1,1,NULL,0),(538,38,1,48,1134577848,'51d89c37','',1,0,1,1,NULL,0),(539,2,2,-1,1134609115,'50769a1b','BEN the guest',1,0,1,0,NULL,0),(540,2,2,9,1134649898,'c35d6603','',1,0,1,1,NULL,0),(541,46,4,48,1134669895,'51d89c37','',1,0,1,1,NULL,0),(542,11,4,48,1134669954,'51d89c37','',1,0,1,1,NULL,0),(543,2,2,48,1134670092,'51d89c37','',1,0,1,1,NULL,0),(544,45,1,48,1134670178,'51d89c37','',1,0,1,1,NULL,0),(545,2,2,9,1134672448,'c35d6603','',1,0,1,1,NULL,0),(546,45,1,24,1134673045,'534e608c','',1,0,1,1,NULL,0),(547,2,2,38,1134673906,'54e6c5bd','',1,0,1,0,NULL,0),(548,2,2,13,1134703650,'cfff9ed1','',1,0,1,0,NULL,0),(549,45,1,48,1134735347,'51d89c37','',1,0,1,1,NULL,0),(550,2,2,48,1134735629,'51d89c37','',1,0,1,1,NULL,0),(551,15,1,-1,1134841917,'56cb940f','',1,0,1,0,NULL,0),(552,47,1,9,1134929737,'c35d6603','',1,0,1,1,1134934726,1),(553,47,1,48,1134930361,'51d89c37','',1,0,1,1,NULL,0),(554,15,1,48,1134930556,'51d89c37','',1,0,1,1,NULL,0),(555,47,1,24,1134949042,'513e8a0e','',1,0,1,1,NULL,0),(556,15,1,24,1134949074,'513e8a0e','',1,0,1,1,NULL,0),(557,47,1,13,1134955679,'cfff9ed1','',1,0,1,0,NULL,0),(558,47,1,9,1134988187,'c35d6603','',1,0,1,1,NULL,0),(559,47,1,38,1135007962,'54e6c5bd','',1,0,1,0,NULL,0),(560,47,1,14,1135010940,'c134ea90','',1,0,1,1,NULL,0),(561,45,1,14,1135011036,'c134ea90','',1,0,1,1,NULL,0),(562,39,1,14,1135011121,'c134ea90','',1,0,1,1,NULL,0),(563,4,2,12,1135100774,'3eca24bb','',1,0,1,1,NULL,0),(564,2,2,12,1135100860,'3eca24bb','',1,0,1,1,NULL,0),(565,37,1,12,1135100932,'3eca24bb','',1,0,1,1,NULL,0),(566,15,1,12,1135101019,'3eca24bb','',1,0,1,1,NULL,0),(567,47,1,12,1135101123,'3eca24bb','',1,0,1,1,NULL,0),(568,45,1,12,1135101287,'3eca24bb','',1,0,1,1,NULL,0),(569,15,1,38,1135104651,'54e6c5bd','',1,0,1,0,NULL,0),(570,2,2,-1,1135128180,'54629e36','BEN',1,0,1,0,NULL,0),(571,2,2,9,1135161265,'c35d6603','',1,0,1,1,NULL,0),(572,47,1,6,1135179509,'55a09fd7','',1,0,1,1,NULL,0),(573,2,2,6,1135180076,'55a09fd7','',1,0,1,1,NULL,0),(574,47,1,60,1135251711,'52791415','',1,0,1,0,NULL,0),(575,47,1,48,1135335786,'51d89c37','',1,0,1,1,NULL,0),(576,15,1,48,1135335871,'51d89c37','',1,0,1,1,NULL,0),(577,45,1,48,1135335904,'51d89c37','',1,0,1,1,NULL,0),(578,2,2,48,1135336037,'51d89c37','',1,0,1,1,NULL,0),(579,47,1,38,1135343140,'54e6cadb','',1,0,1,0,NULL,0),(580,47,1,48,1135356982,'51d89c37','',1,0,1,1,NULL,0),(581,15,1,24,1135363597,'534d8aa3','',1,0,1,1,NULL,0),(582,47,1,24,1135363688,'534d8aa3','',1,0,1,1,NULL,0),(583,47,1,38,1135364793,'54e6cadb','',1,0,1,0,NULL,0),(584,47,1,48,1135373503,'51d89c37','',1,0,1,1,NULL,0),(585,15,1,48,1135373650,'51d89c37','',1,0,1,1,NULL,0),(586,47,1,6,1135424225,'55a0a225','',1,0,1,1,NULL,0),(587,47,1,48,1135424544,'51d89c37','',1,0,1,1,NULL,0),(588,3,2,4,1135447506,'52fc81fb','',1,0,1,1,NULL,0),(589,3,2,48,1135464671,'51d89c37','',1,0,1,1,NULL,0),(590,3,2,6,1135510683,'55a0a12e','',1,0,1,1,NULL,0),(591,2,2,12,1135531653,'534cfc03','',1,0,1,1,NULL,0),(592,15,1,12,1135531711,'534cfc03','',1,0,1,1,NULL,0),(593,14,1,38,1135617648,'54e6c6fb','',1,0,1,0,NULL,0),(594,14,1,9,1135621192,'c35d6603','',1,0,1,1,NULL,0),(595,3,2,38,1135683001,'54e6c6fb','',1,0,1,0,NULL,0),(596,14,1,6,1135686507,'55a096e8','',1,0,1,1,NULL,0),(597,14,1,9,1135706205,'c35d6603','',1,0,1,1,NULL,0),(598,14,1,6,1135774735,'55a08071','',1,0,1,1,NULL,0),(599,3,2,12,1135792404,'534cfb4f','',1,0,1,1,NULL,0),(600,14,1,12,1135792437,'534cfb4f','',1,0,1,1,NULL,0),(601,14,1,9,1135793971,'c35d6603','',1,0,1,1,NULL,0),(602,14,1,38,1135857133,'c1e5a14d','',1,0,1,0,NULL,0),(603,14,1,9,1135859761,'c35d6603','',1,0,1,1,NULL,0),(604,14,1,38,1135861972,'c1e5a14d','',1,0,1,0,NULL,0),(605,11,4,-1,1135874027,'3a8f3f2f','',1,0,1,1,NULL,0),(606,15,1,-1,1135874046,'3a8f3f2f','',1,0,1,1,NULL,0),(607,21,1,-1,1135874123,'3a8f3f2f','',1,0,1,1,NULL,0),(608,39,1,-1,1135874144,'3a8f3f2f','',1,0,1,1,NULL,0),(609,5,2,-1,1135874164,'3a8f3f2f','',1,0,1,1,NULL,0),(610,14,1,9,1135877725,'c35d6603','',1,0,1,1,NULL,0),(611,14,1,38,1135881252,'c1e5a14d','',1,0,1,0,NULL,0),(612,15,1,12,1135937467,'534df95f','',1,0,1,1,NULL,0),(613,21,1,12,1135937500,'534df95f','',1,0,1,1,NULL,0),(614,14,1,9,1135939477,'c35d6603','',1,0,1,1,NULL,0),(615,15,1,38,1135942721,'c1e5a0e2','',1,0,1,0,NULL,0),(616,15,1,6,1135962126,'55a0bd99','',1,0,1,1,NULL,0),(617,5,2,6,1135964477,'55a0bd99','',1,0,1,1,NULL,0),(618,11,4,38,1135978511,'c1e5a0e2','',1,0,1,0,NULL,0),(619,47,1,38,1136068633,'c1e5a0e2','',1,0,1,0,NULL,0),(620,47,1,12,1136115371,'534c1225','',1,0,1,1,NULL,0),(621,47,1,6,1136125392,'55a09c66','',1,0,1,1,NULL,0),(622,14,1,38,1136130761,'c1e5a0e2','',1,0,1,0,NULL,0),(623,48,1,9,1136133789,'c35d6603','',1,0,1,1,NULL,0),(624,4,2,7,1136144728,'51f9d150','',1,0,1,0,NULL,0),(625,47,1,24,1136211213,'534c857e','',1,0,1,1,NULL,0),(626,2,2,-1,1136251509,'54629ecd','BEN',1,0,1,0,NULL,0),(627,6,2,19,1136280301,'c2d6aa13','',1,0,1,0,NULL,0),(628,45,1,-1,1136312405,'d19e2f8d','',1,0,1,0,NULL,0),(629,45,1,26,1136312515,'d19e2f8d','',1,0,1,1,NULL,0),(630,45,1,38,1136315298,'54e6c059','',1,0,1,0,NULL,0),(631,3,2,4,1136373172,'52fc3197','',1,0,1,1,NULL,0),(632,3,2,38,1136373960,'54e6dba0','',1,0,1,0,NULL,0),(633,45,1,6,1136384933,'55a08ffa','',1,0,1,1,NULL,0),(634,3,2,26,1136407686,'d19e2f8d','',1,0,1,1,NULL,0),(635,15,1,26,1136407993,'d19e2f8d','',1,0,1,1,NULL,0),(636,14,1,9,1136549408,'c35d6603','',1,0,1,1,NULL,0),(637,14,1,38,1136561553,'c1e5a18d','',1,0,1,0,NULL,0),(638,30,1,38,1136907010,'559cb6e6','',1,0,1,0,NULL,0),(639,30,1,24,1136911959,'3ecb8e43','',1,0,1,1,NULL,0),(640,49,3,13,1136991959,'92ba3d1e','',1,0,1,0,NULL,0),(641,49,3,38,1136996901,'559cb6e6','',1,0,1,0,NULL,0),(642,49,3,13,1137005540,'92ba3d1e','',1,0,1,0,NULL,0),(643,49,3,24,1137005969,'513e8bca','',1,0,1,1,NULL,0),(644,14,1,9,1137089152,'c35d6603','',1,0,1,1,NULL,0),(645,14,1,38,1137092063,'559cb6e6','',1,0,1,0,NULL,0),(646,50,1,18,1137192606,'52e8530b','',1,0,1,0,NULL,0),(647,49,3,12,1137232789,'513e1d40','',1,0,1,1,NULL,0),(648,50,1,9,1137236970,'c35d6603','',1,0,1,1,NULL,0),(649,49,3,24,1137246896,'534f68bd','',1,0,1,1,NULL,0),(650,30,1,63,1137332314,'53b1da1f','',1,0,1,0,NULL,0),(651,14,1,38,1137421251,'559cb6e6','',1,0,1,0,NULL,0),(652,14,1,9,1137432570,'c35d6603','',1,0,1,1,NULL,0),(653,14,1,38,1137435385,'559cb6e6','',1,0,1,0,NULL,0),(654,14,1,9,1137439149,'c35d6603','',1,0,1,1,NULL,0),(655,14,1,38,1137442631,'559cb6e6','',1,0,1,0,NULL,0),(656,50,1,-1,1137461756,'5462a76b','BEN',1,0,1,0,NULL,0),(657,50,1,9,1137603447,'c35d6603','',1,0,1,1,NULL,0),(658,37,1,14,1137759439,'c134ea90','',1,0,1,1,NULL,0),(659,40,1,14,1137759505,'c134ea90','',1,0,1,1,NULL,0),(660,2,2,38,1137786966,'559cb6e6','',1,0,1,0,NULL,0),(661,3,2,4,1137957403,'52fc770f','',1,0,1,1,NULL,0),(662,30,1,-1,1138130521,'50aab725','',1,0,1,0,NULL,0),(663,30,1,14,1138131512,'c134ea90','',1,0,1,1,NULL,0),(664,3,2,14,1138132120,'c134ea90','',1,0,1,1,NULL,0),(665,30,1,63,1138180054,'53b3b014','',1,0,1,0,NULL,0),(666,49,3,12,1138189907,'3eca2a56','',1,0,1,1,NULL,0),(667,30,1,14,1138198495,'c134ea90','',1,0,1,1,NULL,0),(668,30,1,38,1138202261,'559cb6e6','',1,0,1,0,NULL,0),(669,49,3,24,1138278821,'513e8b79','',1,0,1,1,NULL,0),(670,30,1,14,1138290911,'c134ea90','',1,0,1,1,NULL,0),(671,49,3,12,1138294645,'513e140e','',1,0,1,1,NULL,0),(672,30,1,38,1138298233,'559cb6e6','',1,0,1,0,NULL,0),(673,30,1,12,1138382863,'3eca2176','',1,0,1,1,NULL,0),(674,49,3,6,1138560184,'3ed1c0b4','',1,0,1,1,NULL,0),(675,49,3,24,1138638117,'513e8738','',1,0,1,1,NULL,0),(676,51,3,12,1139069014,'513e1c26','',1,0,1,1,NULL,0),(677,51,3,38,1139086736,'54e6dbd7','',1,0,1,0,NULL,0),(678,51,3,12,1139132128,'3ecb10ac','',1,0,1,1,NULL,0),(679,52,3,6,1139157406,'3ed1c0b4','',1,0,1,1,NULL,0),(680,51,3,6,1139158620,'3ed1c0b4','',1,0,1,1,NULL,0),(681,51,3,38,1139231540,'54e6d681','',1,0,1,0,NULL,0),(682,52,3,38,1139233044,'54e6d681','',1,0,1,0,NULL,0),(683,52,3,6,1139241605,'3ed1c0b4','',1,0,1,1,NULL,0),(684,52,3,24,1139425768,'c3baad02','',1,0,1,1,NULL,0),(685,11,4,38,1139481528,'54e6d681','',1,0,1,0,NULL,0),(686,11,4,6,1139486652,'3ed1c0b4','',1,0,1,1,NULL,0),(687,11,4,12,1139506377,'534c1397','',1,0,1,1,NULL,0),(688,11,4,38,1139507725,'54e6d681','',1,0,1,0,NULL,0),(689,11,4,6,1139590174,'3ed1c0b4','',1,0,1,1,NULL,0),(690,50,1,9,1140115417,'c35d6647','',1,0,1,1,NULL,0),(691,53,1,12,1140115373,'534df47a','',1,0,1,1,NULL,0),(692,53,1,38,1140207467,'54e6c472','',1,0,1,0,NULL,0),(693,53,1,6,1140260357,'3ed1c0b4','',1,0,1,1,NULL,0),(694,53,1,38,1140261350,'54e6dce7','',1,0,1,0,NULL,0),(695,53,1,58,1140271562,'52f1b101','',1,0,1,1,NULL,0),(696,2,2,-1,1140408347,'3d648c54','',1,0,1,1,NULL,0),(697,10,3,-1,1140408410,'3d648c54','',1,0,1,1,NULL,0),(698,4,2,-1,1140408473,'3d648c54','',1,0,1,1,NULL,0),(699,18,1,-1,1140408548,'3d648c54','',1,0,1,1,NULL,0),(700,47,1,-1,1140408613,'3d648c54','',1,0,1,1,NULL,0),(701,47,1,38,1140438338,'54e6dce7','',1,0,1,0,NULL,0),(702,18,1,6,1140454575,'3ed1c0b4','',1,0,1,1,NULL,0),(703,18,1,38,1140456767,'54e6dce7','',1,0,1,0,NULL,0),(978,30,1,38,1145012246,'54e6d545','',1,0,1,1,NULL,0),(977,19,1,38,1145012173,'54e6d545','',1,0,1,1,NULL,0),(976,3,2,38,1145012005,'54e6d545','',1,0,1,1,NULL,0),(975,77,3,38,1145011899,'54e6d545','',1,0,1,1,NULL,0),(974,30,1,26,1144984469,'47f5037d','',1,0,1,1,NULL,0),(711,2,2,-1,1140571679,'54624345','BEN',1,0,1,0,NULL,0),(712,2,2,-1,1140571910,'54624345','BEN',1,0,1,0,NULL,0),(713,2,2,9,1140603692,'c35d6621','',1,0,1,1,NULL,0),(714,53,1,24,1140605525,'534f603c','',1,0,1,1,NULL,0),(715,47,1,24,1140605589,'534f603c','',1,0,1,1,NULL,0),(716,2,2,38,1140611764,'54e6dce7','',1,0,1,0,NULL,0),(973,57,3,26,1144984393,'47f5037d','',1,0,1,1,NULL,0),(972,19,1,26,1144984311,'47f5037d','',1,0,1,1,NULL,0),(971,77,3,26,1144984100,'47f5037d','',1,0,1,1,NULL,0),(723,45,1,-1,1140981979,'52f1b101','',1,0,1,0,NULL,0),(724,45,1,24,1140999854,'c3baa197','',1,0,1,1,NULL,0),(725,45,1,6,1141036839,'3ed1c0b4','',1,0,1,1,NULL,0),(726,45,1,38,1141043178,'54e6dce7','',1,0,1,0,NULL,0),(727,11,4,38,1141043587,'54e6dce7','',1,0,1,0,NULL,0),(728,53,1,-1,1141044490,'52f1b101','',1,0,1,0,NULL,0),(970,3,2,26,1144983472,'47f5037d','',1,0,1,1,NULL,0),(730,53,1,5,1141090899,'0cdd9553','',1,0,1,1,NULL,0),(731,11,4,6,1141126013,'3ed1c0b4','',1,0,1,1,NULL,0),(732,11,4,38,1141131172,'54e6dce7','',1,0,1,0,NULL,0),(733,11,4,6,1141211399,'3ed1c0b4','',1,0,1,1,NULL,0),(734,11,4,38,1141217289,'54e6dce7','',1,0,1,0,NULL,0),(735,53,1,58,1141251440,'52f1b101','',1,0,1,1,NULL,0),(736,11,4,6,1141295952,'3ed1c0b4','',1,0,1,1,NULL,0),(737,53,1,38,1141300779,'54e6dce7','',1,0,1,0,NULL,0),(738,53,1,58,1141326252,'52f1b101','',1,0,1,1,NULL,0),(739,53,1,38,1141330648,'54e6dce7','',1,0,1,0,NULL,0),(740,51,3,58,1141332849,'52f1b101','',1,0,1,1,NULL,0),(741,41,3,58,1141333003,'52f1b101','',1,0,1,1,NULL,0),(742,9,3,58,1141333491,'52f1b101','',1,0,1,1,NULL,0),(743,42,3,58,1141333722,'52f1b101','',1,0,1,1,NULL,0),(744,53,1,12,1141492088,'534dfccd','',1,0,1,1,NULL,0),(745,51,3,12,1141492132,'534dfccd','',1,0,1,1,NULL,0),(746,9,3,12,1141492233,'534dfccd','',1,0,1,1,NULL,0),(747,9,3,38,1141494515,'54e6dce7','',1,0,1,0,NULL,0),(748,54,3,-1,1141494948,'442f10f8','DFdrummer',1,0,1,0,NULL,0),(749,54,3,38,1141495567,'54e6dce7','',1,0,1,0,NULL,0),(750,9,3,12,1141503048,'534dfccd','',1,0,1,1,NULL,0),(751,9,3,38,1141510826,'54e6dce7','',1,0,1,1,NULL,0),(752,54,3,24,1141563102,'513e88b8','',1,0,1,1,NULL,0),(753,55,3,24,1141563583,'513e88b8','',1,0,1,1,NULL,0),(754,55,3,6,1141581223,'3ed1c0b4','',1,0,1,1,NULL,0),(755,56,3,6,1141585157,'3ed1c0b4','',1,0,1,1,NULL,0),(756,55,3,6,1141585231,'3ed1c0b4','',1,0,1,1,NULL,0),(757,55,3,24,1141586856,'513e88b8','',1,0,1,1,NULL,0),(758,56,3,38,1141649078,'54e6dce7','',1,0,1,1,NULL,0),(759,35,1,-1,1141651571,'d9d11a70','',1,0,1,0,NULL,0),(760,35,1,6,1141661645,'3ed1c0b4','',1,0,1,1,NULL,0),(761,35,1,38,1141664234,'54e6dce7','',1,0,1,1,NULL,0),(762,55,3,38,1141664515,'54e6dce7','',1,0,1,1,NULL,0),(763,11,4,38,1141666168,'54e6dce7','',1,0,1,1,NULL,0),(764,9,3,12,1141670571,'3ecb1b4d','',1,0,1,1,NULL,0),(765,11,4,12,1141670705,'3ecb1b4d','',1,0,1,1,NULL,0),(766,9,3,38,1141671459,'54e6dce7','',1,0,1,1,NULL,0),(767,26,1,38,1141752314,'54e6dce7','',1,0,1,1,NULL,0),(768,3,2,38,1141757670,'54e6dce7','',1,0,1,1,NULL,0),(769,53,1,67,1141880580,'c635068f','',1,0,1,1,NULL,0),(770,53,1,38,1141900702,'54e6dce7','',1,0,1,1,NULL,0),(771,53,1,9,1141917399,'c35d6647','',1,0,1,1,NULL,0),(772,53,1,-1,1141917497,'4669cb66','',1,0,1,0,NULL,0),(969,57,3,70,1144983068,'5123219a','',1,0,1,0,NULL,0),(774,40,1,26,1141917816,'4669cb66','',1,0,1,1,NULL,0),(775,40,1,26,1141917817,'4669cb66','',1,0,1,1,NULL,0),(776,57,3,26,1141918988,'4669cb66','',1,0,1,1,NULL,0),(777,53,1,6,1141919840,'3ed1c0b4','',1,0,1,1,NULL,0),(778,53,1,38,1141919901,'54e6dce7','',1,0,1,1,NULL,0),(779,40,1,38,1141920087,'54e6dce7','',1,0,1,1,NULL,0),(780,57,3,38,1141920506,'54e6dce7','',1,0,1,1,NULL,0),(781,57,3,12,1141920692,'3ecb16f4','',1,0,1,1,NULL,0),(782,57,3,6,1141920803,'3ed1c0b4','',1,0,1,1,NULL,0),(783,57,3,38,1141921029,'54e6dce7','',1,0,1,1,NULL,0),(784,57,3,9,1141923794,'c35d6647','',1,0,1,1,NULL,0),(785,57,3,12,1142007200,'513e11b1','',1,0,1,1,NULL,0),(786,40,1,12,1142009041,'513e11b1','',1,0,1,1,NULL,0),(968,19,1,70,1144982397,'5123219a','',1,0,1,0,NULL,0),(788,57,3,13,1142047323,'cfff9ed1','',1,0,1,0,NULL,0),(789,57,3,-1,1142059715,'4669cb66','',1,0,1,0,NULL,0),(790,57,3,26,1142060036,'4669cb66','',1,0,1,1,NULL,0),(791,40,1,26,1142060161,'4669cb66','',1,0,1,1,NULL,0),(792,3,2,26,1142060582,'4669cb66','',1,0,1,1,NULL,0),(793,58,3,26,1142067404,'4669cb66','',1,0,1,1,NULL,0),(794,57,3,38,1142072599,'54e6dce7','',1,0,1,1,NULL,0),(967,15,1,70,1144981830,'5123219a','',1,0,1,0,NULL,0),(796,40,1,24,1142081269,'534c81e1','',1,0,1,1,NULL,0),(797,40,1,9,1142083764,'c35d6647','',1,0,1,1,NULL,0),(798,14,1,9,1142084165,'c35d6647','',1,0,1,1,NULL,0),(799,13,1,9,1142084290,'c35d6647','',1,0,1,1,NULL,0),(800,14,1,26,1142088085,'4669cb66','',1,0,1,1,NULL,0),(801,40,1,38,1142089248,'54e6dce7','',1,0,1,1,NULL,0),(802,14,1,38,1142089587,'54e6dce7','',1,0,1,1,NULL,0),(803,13,1,24,1142121248,'534e63d1','',1,0,1,1,NULL,0),(804,14,1,24,1142121818,'534e63d1','',1,0,1,1,NULL,0),(805,14,1,67,1142141366,'c635068f','',1,0,1,1,NULL,0),(806,14,1,12,1142161148,'513e186e','',1,0,1,1,NULL,0),(807,14,1,6,1142163446,'3ed1c0b4','',1,0,1,1,NULL,0),(808,40,1,6,1142163645,'3ed1c0b4','',1,0,1,1,NULL,0),(809,3,2,6,1142163735,'3ed1c0b4','',1,0,1,1,NULL,0),(810,57,3,6,1142163920,'3ed1c0b4','',1,0,1,1,NULL,0),(811,40,1,9,1142167329,'c35d6647','',1,0,1,1,NULL,0),(812,57,3,38,1142183787,'54e6dce7','',1,0,1,1,NULL,0),(966,30,1,70,1144981647,'5123219a','',1,0,1,0,NULL,0),(814,57,3,13,1142215429,'cfff9ed1','',1,0,1,0,NULL,0),(965,38,1,38,1144937711,'54e6d545','',1,0,1,1,NULL,0),(816,42,3,38,1142259012,'54e6dce7','',1,0,1,1,NULL,0),(818,3,2,4,1142271448,'52fc56b5','',1,0,1,1,NULL,0),(819,3,2,12,1142272873,'3eca2ee1','',1,0,1,1,NULL,0),(820,3,2,38,1142273006,'54e6dce7','',1,0,1,1,NULL,0),(821,3,2,24,1142273506,'3ecb818c','',1,0,1,1,NULL,0),(964,38,1,47,1144937495,'54d9a868','',1,0,1,1,NULL,0),(823,3,2,6,1142346999,'3ed1c0b4','',1,0,1,1,NULL,0),(824,60,3,38,1142363722,'54e6dce7','',1,0,1,1,NULL,0),(825,60,3,24,1142371512,'5501c838','',1,0,1,1,NULL,0),(826,60,3,13,1142399806,'cfff9ed1','',1,0,1,0,NULL,0),(827,60,3,67,1142401032,'c635068f','',1,0,1,1,1142794898,1),(963,30,1,38,1144928202,'54e6d545','',1,0,1,1,NULL,0),(829,53,1,14,1142413598,'51b9921d','',1,0,1,1,NULL,0),(830,56,3,14,1142414181,'51b9921d','',1,0,1,1,NULL,0),(831,60,3,14,1142414608,'51b9921d','',1,0,1,1,NULL,0),(832,11,4,14,1142416135,'51b9921d','',1,0,1,1,NULL,0),(833,11,4,38,1142417264,'54e6dce7','',1,0,1,1,NULL,0),(834,60,3,38,1142417924,'54e6dce7','',1,0,1,1,NULL,0),(835,60,3,9,1142419178,'c35d6647','',1,0,1,1,NULL,0),(836,60,3,38,1142422819,'54e6dce7','',1,0,1,1,NULL,0),(837,11,4,6,1142430811,'3ed1c0b4','',1,0,1,1,NULL,0),(838,11,4,38,1142431565,'54e6dce7','',1,0,1,1,NULL,0),(962,13,1,9,1144925965,'c35d6647','',1,0,1,1,NULL,0),(840,30,1,34,1142442110,'c251699c','',1,0,1,0,NULL,0),(841,53,1,34,1142442369,'c251699c','',1,0,1,0,NULL,0),(842,31,1,34,1142442671,'c251699c','',1,0,1,0,NULL,0),(843,34,1,34,1142443062,'c251699c','',1,0,1,0,NULL,0),(844,34,1,38,1142443326,'54e6dce7','',1,0,1,1,NULL,0),(845,56,3,26,1142450690,'47f162a7','',1,0,1,1,NULL,0),(846,57,3,26,1142450951,'47f162a7','',1,0,1,1,NULL,0),(847,3,2,26,1142451118,'47f162a7','',1,0,1,1,NULL,0),(848,60,3,9,1142505242,'c35d6647','',1,0,1,1,NULL,0),(961,30,1,9,1144925820,'c35d6647','',1,0,1,1,NULL,0),(850,11,4,6,1142522845,'3ed1c0b4','',1,0,1,1,NULL,0),(851,60,3,67,1142794869,'c635068f','',1,0,1,1,NULL,0),(852,57,3,67,1142794997,'c635068f','',1,0,1,1,NULL,0),(853,53,1,67,1142795249,'c635068f','',1,0,1,1,NULL,0),(854,34,1,67,1142796289,'c635068f','',1,0,1,1,NULL,0),(855,3,2,-1,1142809595,'c251699c','',1,0,1,0,NULL,0),(856,60,3,34,1142812146,'c251699c','',1,0,1,0,NULL,0),(857,57,3,6,1142869642,'3ed1c0b4','',1,0,1,1,NULL,0),(858,57,3,38,1142880649,'54e657aa','',1,0,1,1,NULL,0),(859,60,3,38,1142880729,'54e657aa','',1,0,1,1,NULL,0),(860,30,1,23,1142933681,'55fad069','',1,0,1,0,NULL,0),(861,60,3,9,1142935390,'c35d6647','',1,0,1,1,NULL,0),(862,30,1,6,1142956934,'3ed1c0b4','',1,0,1,1,NULL,0),(863,57,3,6,1142957019,'3ed1c0b4','',1,0,1,1,NULL,0),(864,57,3,38,1142961403,'54e657aa','',1,0,1,1,NULL,0),(865,60,3,34,1142968739,'c251699c','',1,0,1,0,NULL,0),(866,30,1,34,1142973220,'c251699c','',1,0,1,0,NULL,0),(867,57,3,34,1142973873,'c251699c','',1,0,1,0,NULL,0),(868,60,3,-1,1142975242,'53718f94','Lio',1,0,1,0,NULL,0),(869,30,1,23,1142976578,'d98413d0','',1,0,1,0,NULL,0),(870,30,1,5,1142986717,'0cdd9553','',1,0,1,1,NULL,0),(871,30,1,38,1143023907,'54e657aa','',1,0,1,1,NULL,0),(872,30,1,6,1143035568,'3ed1c0b4','',1,0,1,1,NULL,0),(873,57,3,6,1143035622,'3ed1c0b4','',1,0,1,1,NULL,0),(874,30,1,38,1143050867,'54e657aa','',1,0,1,1,NULL,0),(875,30,1,23,1143059772,'3e00b59b','',1,0,1,0,NULL,0),(876,30,1,6,1143127110,'3ed1c0b4','',1,0,1,1,NULL,0),(877,30,1,38,1143130872,'54e657aa','',1,0,1,1,NULL,0),(886,57,3,-1,1143404321,'4669d9f4','',1,0,1,0,NULL,0),(887,57,3,12,1143569590,'534df3a0','',1,0,1,1,NULL,0),(888,57,3,24,1143634538,'c3baa74f','',1,0,1,1,NULL,0),(889,57,3,38,1143637538,'54e6df2d','',1,0,1,1,NULL,0),(890,3,2,-1,1143655032,'4669cac8','',1,0,1,0,NULL,0),(960,38,1,47,1144789027,'54d91762','',1,0,1,1,NULL,0),(885,30,1,6,1143223273,'3ed1c0b4','',1,0,1,1,NULL,0),(891,67,1,-1,1143655077,'4669cac8','',1,0,1,0,NULL,0),(892,67,1,26,1143655137,'4669cac8','',1,0,1,1,NULL,0),(893,67,1,38,1143658623,'54e6df2d','',1,0,1,1,NULL,0),(894,3,2,38,1143658731,'54e6df2d','',1,0,1,1,NULL,0),(895,67,1,24,1143671431,'c3baa74f','',1,0,1,1,NULL,0),(896,57,3,24,1143671701,'c3baa74f','',1,0,1,1,NULL,0),(897,57,3,38,1143714079,'54e6df2d','',1,0,1,1,NULL,0),(898,67,1,9,1143717490,'c35d6647','',1,0,1,1,NULL,0),(899,67,1,38,1143725032,'54e6df2d','',1,0,1,1,NULL,0),(986,78,1,38,1145111935,'54e6d545','',1,0,1,1,NULL,0),(985,35,1,47,1145104511,'54d9a868','',1,0,1,1,NULL,0),(984,78,1,47,1145104146,'54d9a868','',1,0,1,1,NULL,0),(983,38,1,47,1145104035,'54d9a868','',1,0,1,1,NULL,0),(904,67,1,6,1143796579,'3ed1c0b4','',1,0,1,1,NULL,0),(982,30,1,70,1145059473,'5336962b','',1,0,1,0,NULL,0),(981,3,2,9,1145018031,'c35d6647','',1,0,1,1,NULL,0),(980,30,1,6,1145016955,'3ed1c0b4','',1,0,1,1,NULL,0),(908,67,1,38,1143806197,'54e6df2d','',1,0,1,1,NULL,0),(959,38,1,-1,1144788988,'54d91762','',1,0,1,0,NULL,0),(958,30,1,38,1144768250,'54e6d545','',1,0,1,1,NULL,0),(956,38,1,38,1144763008,'54e6d545','',1,0,1,1,NULL,0),(957,30,1,6,1144767174,'3ed1c0b4','',1,0,1,1,NULL,0),(955,38,1,47,1144700438,'54d91762','',1,0,1,1,NULL,0),(916,67,1,26,1143818223,'47f167a2','',1,0,1,1,NULL,0),(917,3,2,4,1143823654,'52414b53','',1,0,1,1,NULL,0),(954,30,1,9,1144694050,'c35d6647','',1,0,1,1,NULL,0),(919,3,2,24,1143830086,'513e8996','',1,0,1,1,NULL,0),(920,76,1,26,1143877052,'47f167a2','',1,0,1,1,NULL,0),(953,30,1,38,1144692405,'54e6d545','',1,0,1,1,NULL,0),(922,3,2,38,1143908296,'54e6df2d','',1,0,1,1,NULL,0),(952,30,1,9,1144685370,'c35d6647','',1,0,1,1,NULL,0),(951,30,1,38,1144657440,'54e6d545','',1,0,1,1,NULL,0),(925,38,1,68,1144009768,'519b45de','',1,0,1,1,NULL,0),(926,38,1,9,1144056094,'c35d6647','',1,0,1,1,NULL,0),(927,38,1,38,1144062182,'559cb74c','',1,0,1,1,NULL,0),(928,3,2,-1,1144077518,'47f15ae4','',1,0,1,0,NULL,0),(929,3,2,26,1144077616,'47f15ae4','',1,0,1,1,NULL,0),(930,55,3,26,1144078047,'47f15ae4','',1,0,1,1,NULL,0),(931,3,2,38,1144087491,'559cb74c','',1,0,1,1,NULL,0),(932,67,1,14,1144187029,'51b991a1','',1,0,1,1,NULL,0),(933,31,1,26,1144187348,'47f14480','',1,0,1,1,NULL,0),(934,30,1,14,1144189138,'51b991a1','',1,0,1,1,NULL,0),(935,67,1,38,1144231601,'559cb74c','',1,0,1,1,NULL,0),(936,30,1,24,1144244940,'513e8e7c','',1,0,1,1,NULL,0),(937,30,1,38,1144248172,'559cb74c','',1,0,1,1,NULL,0),(938,38,1,68,1144271585,'568e7382','',1,0,1,1,NULL,0),(939,38,1,9,1144314580,'c35d6647','',1,0,1,1,NULL,0),(940,38,1,-1,1144448995,'54d91762','',1,0,1,0,NULL,0),(941,38,1,47,1144449050,'54d91762','',1,0,1,1,NULL,0),(942,30,1,24,1144473700,'534c8b8f','',1,0,1,1,NULL,0),(943,38,1,38,1144494433,'c1e5a03e','',1,0,1,1,NULL,0),(944,30,1,38,1144494547,'c1e5a03e','',1,0,1,1,NULL,0),(945,38,1,47,1144536901,'54d91762','',1,0,1,1,NULL,0),(946,57,3,26,1144556986,'47f163cf','',1,0,1,1,NULL,0),(947,38,1,68,1144579413,'51846f1f','',1,0,1,1,NULL,0),(948,38,1,47,1144580559,'54d91762','',1,0,1,1,NULL,0),(949,38,1,38,1144605602,'54e6d545','',1,0,1,1,NULL,0),(950,30,1,9,1144606182,'c35d6647','',1,0,1,1,NULL,0),(987,19,1,26,1145135329,'47f5037d','',1,0,1,1,NULL,0),(988,77,3,26,1145135774,'47f5037d','',1,0,1,1,NULL,0),(989,30,1,53,1145285601,'56c5f540','',1,0,1,0,NULL,0),(990,55,3,53,1145286738,'56c5f540','',1,0,1,0,NULL,0),(991,30,1,38,1145382883,'54e6d545','',1,0,1,1,NULL,0),(992,2,2,48,1145383631,'51d89c37','',1,0,1,1,NULL,0),(993,2,2,38,1145386596,'54e6d545','',1,0,1,1,NULL,0),(994,2,2,48,1145448131,'51d89c37','',1,0,1,1,NULL,0),(995,79,3,14,1145448581,'51b99343','',1,0,1,1,NULL,0),(996,11,4,48,1145448660,'51d89c37','',1,0,1,1,NULL,0),(997,78,1,48,1145448707,'51d89c37','',1,0,1,1,NULL,0),(998,67,1,14,1145448770,'51b99343','',1,0,1,1,NULL,0),(999,55,3,14,1145449381,'51b99343','',1,0,1,1,NULL,0),(1000,79,3,48,1145449672,'51d89c37','',1,0,1,1,NULL,0),(1001,78,1,38,1145451646,'54e6d545','',1,0,1,1,NULL,0),(1002,67,1,38,1145451749,'54e6d545','',1,0,1,1,NULL,0),(1003,55,3,38,1145451933,'54e6d545','',1,0,1,1,NULL,0),(1004,79,3,38,1145452189,'54e6d545','',1,0,1,1,NULL,0),(1005,11,4,38,1145452317,'54e6d545','',1,0,1,1,NULL,0),(1006,11,4,48,1145452863,'51d89c37','',1,0,1,1,NULL,0),(1007,11,4,38,1145453118,'54e6d545','',1,0,1,1,NULL,0),(1008,11,4,48,1145453264,'51d89c37','',1,0,1,1,NULL,0),(1009,11,4,38,1145453369,'54e6d545','',1,0,1,1,NULL,0),(1010,11,4,48,1145453537,'51d89c37','',1,0,1,1,NULL,0),(1011,11,4,38,1145453695,'54e6d545','',1,0,1,1,NULL,0),(1012,11,4,48,1145454031,'51d89c37','',1,0,1,1,NULL,0),(1013,11,4,38,1145454201,'54e6d545','',1,0,1,1,NULL,0),(1014,11,4,48,1145454381,'51d89c37','',1,0,1,1,NULL,0),(1015,30,1,6,1145454745,'3ed1c0b4','',1,0,1,1,NULL,0),(1016,2,2,6,1145454962,'3ed1c0b4','',1,0,1,1,NULL,0),(1017,30,1,48,1145455933,'51d89c37','',1,0,1,1,NULL,0),(1018,2,2,48,1145456002,'51d89c37','',1,0,1,1,NULL,0),(1019,11,4,38,1145457781,'54e6d545','',1,0,1,1,NULL,0),(1020,30,1,38,1145457912,'54e6d545','',1,0,1,1,NULL,0),(1021,38,1,47,1145477576,'54d9adab','',1,0,1,1,NULL,0),(1022,55,3,70,1145510564,'5338a7e6','',1,0,1,0,NULL,0),(1023,9,3,70,1145511000,'5338a7e6','',1,0,1,0,NULL,0),(1024,38,1,38,1145526437,'54e6d545','',1,0,1,1,NULL,0),(1025,13,1,24,1145526538,'c3baa14d','',1,0,1,1,NULL,0),(1026,13,1,38,1145526853,'54e6d545','',1,0,1,1,NULL,0),(1027,30,1,24,1145526921,'c3baa14d','',1,0,1,1,NULL,0),(1028,13,1,24,1145527058,'c3baa14d','',1,0,1,1,NULL,0),(1029,30,1,38,1145527065,'54e6d545','',1,0,1,1,NULL,0),(1030,30,1,24,1145527268,'c3baa14d','',1,0,1,1,1145528125,1),(1031,30,1,38,1145527427,'54e6d545','',1,0,1,1,NULL,0),(1032,77,3,24,1145527781,'c3baa14d','',1,0,1,1,NULL,0),(1033,79,3,24,1145527825,'c3baa14d','',1,0,1,1,NULL,0),(1034,55,3,24,1145527932,'c3baa14d','',1,0,1,1,NULL,0),(1035,79,3,38,1145527965,'54e6d545','',1,0,1,1,NULL,0),(1036,9,3,24,1145528097,'c3baa14d','',1,0,1,1,NULL,0),(1037,30,1,24,1145528257,'c3baa14d','',1,0,1,1,NULL,0),(1038,11,4,24,1145528405,'c3baa14d','',1,0,1,1,NULL,0),(1039,30,1,38,1145528483,'54e6d545','',1,0,1,1,NULL,0),(1040,80,1,47,1145528974,'54d91c39','',1,0,1,1,NULL,0),(1041,30,1,9,1145530005,'c35d6647','',1,0,1,1,NULL,0),(1042,80,1,38,1145531848,'54e6d545','',1,0,1,1,NULL,0),(1043,30,1,24,1145543408,'c3baa14d','',1,0,1,1,NULL,0),(1044,30,1,48,1145544576,'51d89c37','',1,0,1,1,NULL,0),(1045,11,4,48,1145544790,'51d89c37','',1,0,1,1,NULL,0),(1046,30,1,38,1145546570,'54e6d545','',1,0,1,1,NULL,0),(1048,11,4,38,1145547145,'54e6d545','',1,0,1,1,NULL,0),(1049,11,4,38,1145547168,'54e6d545','',1,0,1,1,NULL,0),(1050,30,1,6,1145565786,'3ed1c0b4','',1,0,1,1,NULL,0),(1051,30,1,24,1145567331,'c3baa14d','',1,0,1,1,NULL,0),(1052,13,1,9,1145623353,'c35d6647','',1,0,1,1,NULL,0),(1053,13,1,24,1145630969,'c3baace2','',1,0,1,1,NULL,0),(1054,55,3,67,1145689439,'c635068f','',1,0,1,1,NULL,0),(1055,30,1,48,1145704004,'51d89c37','',1,0,1,1,NULL,0),(1056,11,4,48,1145704103,'51d89c37','',1,0,1,1,NULL,0),(1057,55,3,38,1145732111,'54e6d545','',1,0,1,1,NULL,0),(1058,78,1,23,1145738197,'55facf7b','',1,0,1,0,NULL,0),(1059,81,1,47,1145811990,'54d9149d','',1,0,1,1,NULL,0),(1060,13,1,6,1145873255,'3ed1c0b4','',1,0,1,1,NULL,0),(1061,81,1,38,1145877191,'54e6cbef','',1,0,1,1,NULL,0),(1062,13,1,9,1145881658,'c35d6647','',1,0,1,1,NULL,0),(1063,81,1,9,1145881764,'c35d6647','',1,0,1,1,NULL,0),(1064,11,4,38,1145903256,'54e6cbef','',1,0,1,1,NULL,0),(1065,13,1,38,1145903485,'54e6cbef','',1,0,1,1,NULL,0),(1066,81,1,47,1145914154,'54d9149d','',1,0,1,1,NULL,0),(1067,11,4,6,1145956558,'3ed1c0b4','',1,0,1,1,NULL,0),(1068,11,4,38,1145957704,'54e6cbef','',1,0,1,1,NULL,0),(1069,11,4,48,1145966084,'51d89c37','',1,0,1,1,NULL,0),(1070,11,4,38,1145967584,'54e6cbef','',1,0,1,1,NULL,0),(1071,81,1,48,1145992988,'51d89c37','',1,0,1,1,NULL,0),(1072,11,4,48,1145993044,'51d89c37','',1,0,1,1,NULL,0),(1073,11,4,6,1146066137,'3ed1c0b4','',1,0,1,1,NULL,0),(1074,80,1,12,1146071845,'3ecb10df','',1,0,1,1,NULL,0),(1075,78,1,12,1146071903,'3ecb10df','',1,0,1,1,NULL,0),(1076,79,3,12,1146072149,'3ecb10df','',1,0,1,1,NULL,0),(1077,9,3,12,1146072310,'3ecb10df','',1,0,1,1,NULL,0),(1078,11,4,12,1146072340,'3ecb10df','',1,0,1,1,NULL,0),(1079,9,3,24,1146074012,'c3baa81d','',1,0,1,1,NULL,0),(1080,11,4,24,1146074051,'c3baa81d','',1,0,1,1,NULL,0),(1081,3,2,12,1146074189,'3ecb10df','',1,0,1,1,NULL,0),(1082,9,3,12,1146074629,'3ecb10df','',1,0,1,1,NULL,0),(1083,9,3,24,1146082790,'c3baa81d','',1,0,1,1,NULL,0),(1084,9,3,12,1146128738,'534d15f4','',1,0,1,1,NULL,0),(1085,11,4,38,1146133025,'54e6cbef','',1,0,1,1,NULL,0),(1086,9,3,38,1146133421,'54e6cbef','',1,0,1,1,NULL,0),(1087,80,1,38,1146133567,'54e6cbef','',1,0,1,1,NULL,0),(1088,11,4,48,1146152550,'51d89c37','',1,0,1,1,NULL,0),(1089,11,4,38,1146162068,'54e6cbef','',1,0,1,1,NULL,0),(1090,9,3,12,1146170375,'534d15f4','',1,0,1,1,NULL,0),(1091,11,4,48,1146325996,'51d89c37','',1,0,1,1,NULL,0),(1092,82,1,47,1146335365,'54d91801','',1,0,1,1,NULL,0),(1093,82,1,24,1146350017,'c3bae77b','',1,0,1,1,NULL,0),(1094,82,1,47,1146353018,'54d916fa','',1,0,1,1,NULL,0),(1096,82,1,38,1146478789,'54e6cbef','',1,0,1,1,NULL,0),(1097,82,1,24,1146485839,'534e63fa','',1,0,1,1,NULL,0),(1098,82,1,23,1146495353,'d9848036','',1,0,1,0,NULL,0),(1099,82,1,47,1146498072,'54d911c1','',1,0,1,1,NULL,0),(1100,3,2,38,1146591951,'54e6c3f1','',1,0,1,1,NULL,0),(1101,3,2,48,1146733958,'d98c70dd','',1,0,1,1,NULL,0),(1102,3,2,4,1146759838,'52fcf0e4','',1,0,1,1,NULL,0),(1103,3,2,38,1146766315,'54e6c3f1','',1,0,1,1,NULL,0),(1104,3,2,12,1146767981,'3eca29a9','',1,0,1,1,NULL,0),(1105,83,3,26,1146855813,'4669cefe','',1,0,1,1,NULL,0),(1106,60,3,34,1146872136,'c25169a4','',1,0,1,1,NULL,0),(1107,54,3,34,1146872365,'c25169a4','',1,0,1,1,NULL,0),(1108,60,3,38,1146911113,'54e6c3f1','',1,0,1,1,NULL,0),(1109,83,3,38,1146911321,'54e6c3f1','',1,0,1,1,NULL,0),(1110,2,2,-1,1146963394,'54623ecd','BEN',1,0,1,0,NULL,0),(1111,60,3,12,1146997255,'534cff29','',1,0,1,1,1149181322,2),(1112,60,3,38,1147078906,'54e6c3f1','',1,0,1,1,NULL,0),(1113,11,4,47,1147127320,'54d91f96','',1,0,1,1,NULL,0),(1114,11,4,38,1147166219,'54e6c3f1','',1,0,1,1,NULL,0),(1115,83,3,6,1147184896,'3ed1c0b4','',1,0,1,1,NULL,0),(1116,83,3,38,1147189271,'54e6c3f1','',1,0,1,1,NULL,0),(1134,2,2,14,1147494859,'50775af1','',1,0,1,1,NULL,0),(1118,38,1,-1,1147250301,'3eabc207','',1,0,1,0,NULL,0),(1119,38,1,68,1147250421,'3eabc207','',1,0,1,1,NULL,0),(1120,38,1,38,1147253542,'54e6c3f1','',1,0,1,1,NULL,0),(1121,85,1,-1,1147341169,'54d9116a','',1,0,1,0,NULL,0),(1122,85,1,47,1147341215,'54d9116a','',1,0,1,1,NULL,0),(1123,2,2,47,1147341303,'54d9116a','',1,0,1,1,NULL,0),(1124,85,1,23,1147347249,'d984a6c2','',1,0,1,0,NULL,0),(1125,85,1,38,1147347906,'54e6c3f1','',1,0,1,1,NULL,0),(1126,85,1,48,1147423087,'d98c70dd','',1,0,1,1,NULL,0),(1127,2,2,48,1147423167,'d98c70dd','',1,0,1,1,NULL,0),(1133,60,3,24,1147446199,'550121bf','',1,0,1,1,NULL,0),(1129,3,2,48,1147423310,'d98c70dd','',1,0,1,1,NULL,0),(1130,83,3,48,1147423429,'d98c70dd','',1,0,1,1,NULL,0),(1131,60,3,48,1147423505,'d98c70dd','',1,0,1,1,NULL,0),(1132,11,4,48,1147423540,'d98c70dd','',1,0,1,1,NULL,0),(1135,2,2,48,1147515084,'51d89c37','',1,0,1,1,NULL,0),(1136,11,4,38,1147539994,'54e6c3f1','',1,0,1,1,NULL,0),(1137,26,1,38,1147541162,'54e6c3f1','',1,0,1,1,NULL,0),(1138,86,1,47,1147618694,'54d91c3d','',1,0,1,1,NULL,0),(1139,13,1,9,1147621175,'c35d6647','',1,0,1,1,NULL,0),(1140,86,1,12,1147717701,'534df76c','',1,0,1,1,NULL,0),(1141,86,1,47,1147720224,'54d91fa9','',1,0,1,1,NULL,0),(1147,82,1,-1,1147820176,'54d910a8','',1,0,1,0,NULL,0),(1143,86,1,38,1147772428,'54e6c3f1','',1,0,1,1,NULL,0),(1144,82,1,38,1147772505,'54e6c3f1','',1,0,1,1,NULL,0),(1145,82,1,47,1147780250,'54d91587','',1,0,1,1,NULL,0),(1146,82,1,23,1147781780,'55fa11b5','',1,0,1,0,NULL,0),(1148,23,1,47,1147858132,'54d9185c','',1,0,1,1,NULL,0),(1149,23,1,47,1147877810,'54d9161d','',1,0,1,1,NULL,0),(1150,11,4,48,1147884138,'51d89c37','',1,0,1,1,NULL,0),(1151,11,4,38,1147895476,'54e6c3f1','',1,0,1,1,NULL,0),(1152,23,1,71,1147904927,'803648cf','',1,0,1,0,NULL,0),(1153,88,3,-1,1147905146,'442f10f8','DFdrummer',1,0,1,0,NULL,0),(1154,86,1,9,1147972111,'c35d6647','',1,0,1,1,NULL,0),(1155,3,2,-1,1148138356,'c8cb1650','kevin',1,0,1,0,NULL,0),(1156,3,2,73,1148139278,'c8cb1650','',1,0,1,1,NULL,0),(1157,26,1,6,1148201708,'3ed1c0b4','',1,0,1,1,NULL,0),(1158,11,4,48,1148227858,'51d89c37','',1,0,1,1,NULL,0),(1159,89,1,48,1148687582,'51d89c37','',1,0,1,1,NULL,0),(1160,89,1,9,1148727051,'c35d664a','',1,0,1,1,NULL,0),(1161,89,1,38,1148729021,'54e6c3f1','',1,0,1,1,NULL,0),(1162,90,3,38,1148732446,'54e6c3f1','',1,0,1,1,NULL,0),(1163,90,3,24,1148740897,'513e8c06','',1,0,1,1,NULL,0),(1164,90,3,38,1148746685,'54e6c3f1','',1,0,1,1,NULL,0),(1165,89,1,48,1148814125,'51d89c37','',1,0,1,1,NULL,0),(1166,90,3,48,1148814173,'51d89c37','',1,0,1,1,NULL,0),(1167,89,1,6,1148837983,'3ed1c0b4','',1,0,1,1,NULL,0),(1168,89,1,5,1148843629,'0cd21841','',1,0,1,1,NULL,0),(1169,89,1,48,1148885142,'51d89c37','',1,0,1,1,NULL,0),(1170,89,1,38,1148892739,'54e6c3f1','',1,0,1,1,NULL,0),(1171,90,3,38,1148893047,'54e6c3f1','',1,0,1,1,NULL,0),(1172,89,1,6,1148907965,'3ed1c0b4','',1,0,1,1,NULL,0),(1173,89,1,48,1148914971,'51d89c37','',1,0,1,1,NULL,0),(1174,90,3,48,1148915073,'51d89c37','',1,0,1,1,NULL,0),(1175,90,3,38,1148921018,'54e6c3f1','',1,0,1,1,NULL,0),(1176,89,1,12,1148925810,'d503216f','',1,0,1,1,NULL,0),(1177,89,1,13,1148965276,'cfff9abf','',1,0,1,0,NULL,0),(1178,89,1,6,1148993945,'3ed1c0b4','',1,0,1,1,NULL,0),(1179,89,1,38,1149000522,'54e6c3f1','',1,0,1,1,NULL,0),(1180,91,1,38,1149001639,'54e6c3f1','',1,0,1,1,NULL,0),(1181,89,1,23,1149003762,'d9847c84','',1,0,1,0,NULL,0),(1182,91,1,6,1149084971,'3ed1c0b4','',1,0,1,1,NULL,0),(1183,91,1,38,1149091721,'54e6c3f1','',1,0,1,1,NULL,0),(1184,89,1,24,1149095827,'534f6664','',1,0,1,1,NULL,0),(1185,91,1,24,1149096278,'534f6664','',1,0,1,1,NULL,0),(1186,89,1,38,1149099533,'54e6c3f1','',1,0,1,1,NULL,0),(1187,91,1,38,1149099682,'54e6c3f1','',1,0,1,1,NULL,0),(1188,91,1,47,1149104968,'54d914b6','',1,0,1,1,NULL,0),(1189,91,1,48,1149154069,'d98c70dd','',1,0,1,1,NULL,0),(1190,89,1,48,1149154176,'d98c70dd','',1,0,1,1,NULL,0),(1191,90,3,48,1149154224,'d98c70dd','',1,0,1,1,NULL,0),(1192,90,3,38,1149157610,'54e6c3f1','',1,0,1,1,NULL,0),(1193,91,1,38,1149157918,'54e6c3f1','',1,0,1,1,NULL,0),(1194,89,1,38,1149157985,'54e6c3f1','',1,0,1,1,NULL,0),(1195,92,3,12,1149180834,'55000641','',1,0,1,1,NULL,0),(1196,60,3,12,1149180971,'55000641','',1,0,1,1,NULL,0),(1197,89,1,6,1149181656,'3ed1c0b4','',1,0,1,1,NULL,0),(1198,92,3,6,1149181776,'3ed1c0b4','',1,0,1,1,NULL,0),(1199,92,3,38,1149186733,'54e6c3f1','',1,0,1,1,NULL,0),(1200,92,3,12,1149187931,'55000641','',1,0,1,1,NULL,0),(1201,89,1,12,1149188478,'55000641','',1,0,1,1,NULL,0),(1202,93,3,47,1149203298,'54d914b6','',1,0,1,1,NULL,0),(1203,93,3,12,1149227807,'55000641','',1,0,1,1,NULL,0),(1204,89,1,48,1149235533,'d98c70dd','',1,0,1,1,NULL,0),(1205,92,3,48,1149235634,'d98c70dd','',1,0,1,1,NULL,0),(1206,92,3,48,1149235650,'d98c70dd','',1,0,1,1,NULL,0),(1207,90,3,48,1149235794,'d98c70dd','',1,0,1,1,NULL,0),(1208,93,3,48,1149243491,'51d89c37','',1,0,1,1,NULL,0),(1209,93,3,38,1149244029,'54e6c3f1','',1,0,1,1,NULL,0),(1210,92,3,12,1149259191,'55000641','',1,0,1,1,NULL,0),(1211,89,1,12,1149259271,'55000641','',1,0,1,1,NULL,0),(1212,89,1,68,1149336077,'5688e63c','',1,0,1,1,NULL,0),(1213,91,1,68,1149336185,'5688e63c','',1,0,1,1,NULL,0),(1214,89,1,6,1149336527,'3ed1c0b4','',1,0,1,1,NULL,0),(1215,93,3,34,1149348301,'c25169a4','',1,0,1,1,NULL,0),(1216,91,1,48,1149363879,'51d89c37','',1,0,1,1,NULL,0),(1217,89,1,48,1149363962,'51d89c37','',1,0,1,1,NULL,0),(1218,92,3,48,1149364011,'51d89c37','',1,0,1,1,NULL,0),(1219,89,1,24,1149434550,'3ecb8cf6','',1,0,1,1,NULL,0),(1220,93,3,24,1149434702,'3ecb8cf6','',1,0,1,1,NULL,0),(1221,92,3,24,1149434791,'3ecb8cf6','',1,0,1,1,NULL,0),(1222,91,1,68,1149446519,'5688e6d6','',1,0,1,1,NULL,0),(1223,94,1,68,1149446586,'5688e6d6','',1,0,1,1,NULL,0),(1224,19,1,68,1149446707,'5688e6d6','',1,0,1,1,NULL,0),(1225,15,1,68,1149446898,'5688e6d6','',1,0,1,1,NULL,0),(1226,34,1,68,1149446985,'5688e6d6','',1,0,1,1,NULL,0),(1227,92,3,68,1149447110,'5688e6d6','',1,0,1,1,NULL,0),(1228,93,3,68,1149447330,'5688e6d6','',1,0,1,1,NULL,0),(1229,83,3,68,1149447392,'5688e6d6','',1,0,1,1,NULL,0),(1230,60,3,68,1149448091,'5688e6d6','',1,0,1,1,NULL,0),(1231,89,1,68,1149448769,'5688e6d6','',1,0,1,0,NULL,0),(1232,95,1,68,1149448925,'5688e6d6','',1,0,1,0,NULL,0),(1233,95,1,6,1149501589,'3ed1c0b4','',1,0,1,1,NULL,0),(1234,94,1,6,1149501791,'3ed1c0b4','',1,0,1,1,NULL,0),(1235,92,3,6,1149501899,'3ed1c0b4','',1,0,1,1,NULL,0),(1236,11,4,38,1149510971,'54e6c3f1','',1,0,1,1,NULL,0),(1237,93,3,38,1149511025,'54e6c3f1','',1,0,1,1,NULL,0),(1238,83,3,38,1149511130,'54e6c3f1','',1,0,1,1,NULL,0),(1239,92,3,38,1149511321,'54e6c3f1','',1,0,1,1,NULL,0),(1240,94,1,38,1149511605,'54e6c3f1','',1,0,1,1,NULL,0),(1241,91,1,38,1149511725,'54e6c3f1','',1,0,1,1,NULL,0),(1242,19,1,38,1149511901,'54e6c3f1','',1,0,1,1,NULL,0),(1243,15,1,38,1149511967,'54e6c3f1','',1,0,1,1,NULL,0),(1244,89,1,38,1149512048,'54e6c3f1','',1,0,1,1,NULL,0),(1245,92,3,38,1149512202,'54e6c3f1','',1,0,1,1,NULL,0),(1246,19,1,68,1149531138,'519b4514','',1,0,1,0,NULL,0),(1247,94,1,68,1149531318,'519b4514','',1,0,1,0,NULL,0),(1248,83,3,68,1149531411,'519b4514','',1,0,1,0,NULL,0),(1249,11,4,68,1149531508,'519b4514','',1,0,1,0,NULL,0),(1250,96,3,47,1149532111,'54d91c25','',1,0,1,1,NULL,0),(1251,92,3,12,1149535394,'534c12f7','',1,0,1,1,NULL,0),(1252,94,1,38,1149536652,'54e6c3f1','',1,0,1,1,NULL,0),(1253,11,4,38,1149536875,'54e6c3f1','',1,0,1,1,NULL,0),(1254,94,1,68,1149542382,'56884f76','',1,0,1,0,NULL,0),(1255,11,4,68,1149542440,'56884f76','',1,0,1,0,NULL,0),(1257,2,2,71,1149571648,'8036ae53','',1,0,1,0,NULL,0),(1258,11,4,38,1149581666,'54e6c3f1','',1,0,1,1,NULL,0),(1259,94,1,38,1149581915,'54e6c3f1','',1,0,1,1,NULL,0),(1260,95,1,48,1149582661,'51d89c37','',1,0,1,1,NULL,0),(1261,19,1,48,1149582815,'51d89c37','',1,0,1,1,NULL,0),(1262,94,1,48,1149582937,'51d89c37','',1,0,1,1,NULL,0),(1263,83,3,48,1149583089,'51d89c37','',1,0,1,1,NULL,0),(1264,92,3,48,1149583177,'51d89c37','',1,0,1,1,NULL,0),(1265,11,4,48,1149583280,'51d89c37','',1,0,1,1,NULL,0),(1266,83,3,38,1149590835,'54e6c3f1','',1,0,1,1,NULL,0),(1267,92,3,38,1149590920,'54e6c3f1','',1,0,1,1,NULL,0),(1268,11,4,38,1149590976,'54e6c3f1','',1,0,1,1,NULL,0),(1269,94,1,38,1149591196,'54e6c3f1','',1,0,1,1,NULL,0),(1270,2,2,12,1149608460,'534c12f7','',1,0,1,1,NULL,0),(1271,94,1,9,1149623189,'c35d6647','',1,0,1,1,NULL,0),(1272,94,1,68,1149678976,'3eabc225','',1,0,1,0,NULL,0),(1273,94,1,48,1149683336,'51d89c37','',1,0,1,1,NULL,0),(1274,83,3,48,1149683375,'51d89c37','',1,0,1,1,NULL,0),(1275,11,4,48,1149683411,'51d89c37','',1,0,1,1,NULL,0),(1276,94,1,38,1149683574,'54e6c3f1','',1,0,1,1,NULL,0),(1277,11,4,38,1149683712,'54e6c3f1','',1,0,1,1,NULL,0),(1278,89,1,26,1149684220,'4669c62a','',1,0,1,1,NULL,0),(1279,3,2,26,1149684375,'4669c62a','',1,0,1,1,NULL,0),(1280,83,3,26,1149684559,'4669c62a','',1,0,1,1,NULL,0),(1281,93,3,26,1149684741,'4669c62a','',1,0,1,1,NULL,0),(1282,91,1,26,1149685170,'4669c62a','',1,0,1,1,NULL,0),(1283,91,1,38,1149686547,'54e6c3f1','',1,0,1,1,NULL,0),(1284,83,3,38,1149686859,'54e6c3f1','',1,0,1,1,NULL,0),(1285,92,3,38,1149706369,'54e6c3f1','',1,0,1,1,NULL,0),(1286,91,1,68,1149718913,'568e744e','',1,0,1,0,NULL,0),(1287,94,1,68,1149718957,'568e744e','',1,0,1,0,NULL,0),(1288,83,3,68,1149719077,'568e744e','',1,0,1,0,NULL,0),(1289,93,3,68,1149719203,'568e744e','',1,0,1,0,NULL,0),(1290,19,1,68,1149755679,'569038c9','',1,0,1,0,NULL,0),(1291,11,4,68,1149755754,'569038c9','',1,0,1,0,NULL,0),(1292,92,3,68,1149755795,'569038c9','',1,0,1,0,NULL,0),(1293,54,3,68,1149755830,'569038c9','',1,0,1,0,NULL,0),(1294,93,3,47,1149768501,'54d91c25','',1,0,1,1,NULL,0),(1295,89,1,6,1149769519,'3ed1c0b4','',1,0,1,1,NULL,0),(1296,92,3,6,1149769712,'3ed1c0b4','',1,0,1,1,NULL,0),(1297,19,1,38,1149773014,'54e6c3f1','',1,0,1,1,NULL,0),(1298,19,1,68,1149785196,'d92a4da4','',1,0,1,0,NULL,0),(1299,19,1,38,1149787517,'54e6c3f1','',1,0,1,1,NULL,0),(1300,19,1,68,1149804318,'519b45c9','',1,0,1,0,NULL,0),(1301,60,3,12,1149949552,'3eca2857','',1,0,1,1,NULL,0),(1302,98,3,13,1149956037,'cfff9abf','',1,0,1,0,NULL,0),(1303,60,3,5,1149991093,'4a87272e','',1,0,1,1,NULL,0),(1304,92,3,12,1150047506,'534c13b4','',1,0,1,1,NULL,0),(1305,89,1,48,1150047989,'51d89c37','',1,0,1,1,NULL,0),(1306,11,4,48,1150048110,'51d89c37','',1,0,1,1,NULL,0),(1307,53,1,-1,1150077758,'442f10f8','Freesefan',1,0,1,0,NULL,0),(1308,19,1,24,1150149993,'534e62a2','',1,0,1,1,NULL,0),(1309,34,1,69,1150176453,'c98402c8','',1,0,1,0,NULL,0),(1310,19,1,69,1150176538,'c98402c8','',1,0,1,0,NULL,0),(1311,15,1,69,1150176961,'c98402c8','',1,0,1,0,NULL,0),(1312,53,1,69,1150178299,'c98402c8','',1,0,1,0,NULL,0),(1313,89,1,38,1150190056,'54e6dccd','',1,0,1,1,NULL,0),(1314,89,1,24,1150199155,'534c8be8','',1,0,1,1,NULL,0),(1315,92,3,38,1150199503,'54e6dccd','',1,0,1,1,NULL,0),(1316,89,1,6,1150199514,'3ed1c0b4','',1,0,1,1,NULL,0),(1317,89,1,38,1150199712,'54e6dccd','',1,0,1,1,NULL,0),(1318,15,1,6,1150199732,'3ed1c0b4','',1,0,1,1,NULL,0),(1319,15,1,38,1150199874,'54e6dccd','',1,0,1,1,NULL,0),(1320,89,1,23,1150199935,'55faf9d1','',1,0,1,0,NULL,0),(1321,89,1,38,1150200265,'54e6dccd','',1,0,1,1,NULL,0),(1322,92,3,38,1150200355,'54e6dccd','',1,0,1,1,NULL,0),(1323,89,1,68,1150217286,'51999fbc','',1,0,1,0,NULL,0),(1324,15,1,68,1150217316,'51999fbc','',1,0,1,0,NULL,0),(1325,99,3,68,1150223126,'568e73b4','',1,0,1,0,NULL,0),(1326,58,3,47,1150224504,'54d91c25','',1,0,1,1,NULL,0),(1327,15,1,69,1150245623,'c98402c8','',1,0,1,0,NULL,0),(1328,89,1,69,1150245977,'c98402c8','',1,0,1,0,NULL,0),(1329,15,1,68,1150282177,'d92a4dcd','',1,0,1,0,NULL,0),(1330,89,1,68,1150282215,'d92a4dcd','',1,0,1,0,NULL,0),(1331,15,1,38,1150285452,'54e6dccd','',1,0,1,1,NULL,0),(1332,89,1,6,1150295111,'3ed1c0b4','',1,0,1,1,NULL,0),(1333,92,3,6,1150295215,'3ed1c0b4','',1,0,1,1,NULL,0),(1334,18,1,-1,1150297214,'d20988f1','finalsymphony',1,0,1,0,NULL,0),(1335,53,1,-1,1150297343,'d20988f1','finalsymphony',1,0,1,0,NULL,0),(1336,18,1,38,1150299941,'54e6dccd','',1,0,1,1,NULL,0),(1337,92,3,12,1150301696,'534d1d45','',1,0,1,1,NULL,0),(1338,18,1,-1,1150302128,'d20988f1','finalsymphony',1,0,1,0,NULL,0),(1339,53,1,-1,1150302354,'d20988f1','finalsymphony',1,0,1,0,NULL,0),(1340,19,1,-1,1150302420,'d20988f1','finalsymphony',1,0,1,0,NULL,0),(1341,15,1,69,1150348814,'c98402c8','',1,0,1,0,NULL,0),(1342,99,3,69,1150350478,'c98402c8','',1,0,1,0,NULL,0),(1343,92,3,69,1150350690,'c98402c8','',1,0,1,0,NULL,0),(1344,28,1,69,1150350952,'c98402c8','',1,0,1,0,NULL,0),(1345,39,1,69,1150351202,'c98402c8','',1,0,1,0,NULL,0),(1346,99,3,38,1150363902,'54e6dccd','',1,0,1,1,NULL,0),(1347,39,1,68,1150365329,'56858e0c','',1,0,1,0,NULL,0),(1348,28,1,68,1150365373,'56858e0c','',1,0,1,0,NULL,0),(1349,15,1,68,1150365427,'56858e0c','',1,0,1,0,NULL,0),(1350,19,1,68,1150365472,'56858e0c','',1,0,1,0,NULL,0),(1351,89,1,68,1150365499,'56858e0c','',1,0,1,0,NULL,0),(1352,99,3,68,1150365631,'56858e0c','',1,0,1,0,NULL,0),(1353,89,1,38,1150367637,'54e6dccd','',1,0,1,1,NULL,0),(1354,19,1,38,1150367766,'54e6dccd','',1,0,1,1,NULL,0),(1355,15,1,38,1150367819,'54e6dccd','',1,0,1,1,NULL,0),(1356,42,3,38,1150368371,'54e6dccd','',1,0,1,1,NULL,0),(1357,92,3,38,1150368480,'54e6dccd','',1,0,1,1,NULL,0),(1358,15,1,6,1150371811,'3ed1c0b4','',1,0,1,1,NULL,0),(1359,89,1,6,1150372001,'3ed1c0b4','',1,0,1,1,NULL,0),(1360,92,3,6,1150372472,'3ed1c0b4','',1,0,1,1,NULL,0),(1361,42,3,6,1150372713,'3ed1c0b4','',1,0,1,1,NULL,0),(1362,89,1,6,1150372818,'3ed1c0b4','',1,0,1,1,NULL,0),(1363,89,1,38,1150373947,'54e6dccd','',1,0,1,1,NULL,0),(1364,89,1,68,1150384334,'56858c5e','',1,0,1,0,NULL,0),(1365,19,1,68,1150384393,'56858c5e','',1,0,1,0,NULL,0),(1366,92,3,68,1150384464,'56858c5e','',1,0,1,0,NULL,0),(1367,19,1,38,1150386474,'54e6dccd','',1,0,1,1,NULL,0),(1368,92,3,38,1150386776,'54e6dccd','',1,0,1,1,NULL,0),(1369,19,1,68,1150395488,'568d578d','',1,0,1,0,NULL,0),(1370,19,1,38,1150398887,'54e6dccd','',1,0,1,1,NULL,0),(1371,19,1,68,1150406023,'51812ef7','',1,0,1,0,NULL,0),(1372,15,1,69,1150409806,'c98402c8','',1,0,1,0,NULL,0),(1373,92,3,69,1150411938,'c98402c8','',1,0,1,0,NULL,0),(1374,100,1,69,1150412398,'c98402c8','',1,0,1,0,NULL,0),(1375,100,1,38,1150449686,'54e6dccd','',1,0,1,1,NULL,0),(1376,100,1,69,1150452134,'c98402c8','',1,0,1,0,NULL,0),(1377,100,1,6,1150484889,'3ed1c0b4','',1,0,1,1,NULL,0),(1378,15,1,6,1150484987,'3ed1c0b4','',1,0,1,1,NULL,0),(1379,89,1,6,1150485049,'3ed1c0b4','',1,0,1,1,NULL,0),(1380,92,3,6,1150485133,'3ed1c0b4','',1,0,1,1,NULL,0),(1381,99,3,12,1150537487,'513e1faf','',1,0,1,1,NULL,0),(1382,92,3,12,1150537599,'513e1faf','',1,0,1,1,NULL,0),(1383,92,3,6,1150540672,'3ed1c0b4','',1,0,1,1,NULL,0),(1384,92,3,68,1150545878,'51846f07','',1,0,1,0,NULL,0),(1385,99,3,68,1150545904,'51846f07','',1,0,1,0,NULL,0),(1386,92,3,38,1150551442,'54e6dccd','',1,0,1,1,NULL,0),(1387,92,3,12,1150555853,'513e1faf','',1,0,1,1,NULL,0),(1388,15,1,68,1150569192,'568a21e5','',1,0,1,0,NULL,0),(1389,101,1,26,1150598301,'46124f46','',1,0,1,1,NULL,0),(1390,94,1,26,1150598633,'46124f46','',1,0,1,1,NULL,0),(1391,102,1,26,1150599574,'46124f46','',1,0,1,1,NULL,0),(1392,101,1,12,1150619502,'534cfc53','',1,0,1,1,NULL,0),(1393,101,1,6,1150624046,'3ed1c0b4','',1,0,1,1,NULL,0),(1394,15,1,6,1150624251,'3ed1c0b4','',1,0,1,1,NULL,0),(1395,92,3,6,1150624296,'3ed1c0b4','',1,0,1,1,NULL,0),(1396,101,1,26,1150627164,'46124f46','',1,0,1,1,NULL,0),(1397,101,1,68,1150634336,'568d975c','',1,0,1,0,NULL,0),(1398,15,1,68,1150634371,'568d975c','',1,0,1,0,NULL,0),(1399,94,1,68,1150634446,'568d975c','',1,0,1,0,NULL,0),(1400,92,3,68,1150634469,'568d975c','',1,0,1,0,NULL,0),(1401,102,1,9,1150637001,'c35d6647','',1,0,1,1,NULL,0),(1402,92,3,12,1150659420,'3ecb125f','',1,0,1,1,NULL,0),(1403,92,3,5,1150659735,'4a87272e','',1,0,1,1,NULL,0),(1404,101,1,38,1150713885,'559cb64e','',1,0,1,1,NULL,0),(1405,101,1,68,1150894205,'5688e67e','',1,0,1,0,NULL,0),(1406,101,1,38,1150987555,'54e6d5d8','',1,0,1,1,NULL,0),(1407,89,1,38,1150987718,'54e6d5d8','',1,0,1,1,NULL,0),(1408,89,1,68,1150987963,'568b568e','',1,0,1,0,NULL,0),(1409,101,1,68,1150987990,'568b568e','',1,0,1,0,NULL,0),(1410,42,3,68,1150988115,'568b568e','',1,0,1,0,NULL,0),(1411,103,3,68,1150988168,'568b568e','',1,0,1,0,NULL,0),(1412,38,1,68,1150988232,'568b568e','',1,0,1,0,NULL,0),(1413,20,1,68,1150988378,'568b568e','',1,0,1,0,NULL,0),(1414,95,1,68,1150988518,'568b568e','',1,0,1,0,NULL,0),(1415,42,3,38,1150996900,'54e6d5d8','',1,0,1,1,NULL,0),(1416,103,3,38,1150997089,'54e6d5d8','',1,0,1,1,NULL,0),(1417,89,1,38,1150997193,'54e6d5d8','',1,0,1,1,NULL,0),(1418,38,1,38,1150997378,'54e6d5d8','',1,0,1,1,NULL,0),(1419,20,1,38,1150997466,'54e6d5d8','',1,0,1,1,NULL,0),(1420,20,1,68,1151000735,'569039b8','',1,0,1,0,NULL,0),(1421,38,1,68,1151000772,'569039b8','',1,0,1,0,NULL,0),(1422,89,1,68,1151000793,'569039b8','',1,0,1,0,NULL,0),(1423,103,3,68,1151000823,'569039b8','',1,0,1,0,NULL,0),(1424,42,3,68,1151000847,'569039b8','',1,0,1,0,NULL,0),(1425,42,3,38,1151007251,'54e6d5d8','',1,0,1,1,NULL,0),(1426,42,3,68,1151010973,'5690399b','',1,0,1,0,NULL,0),(1427,89,1,68,1151011054,'5690399b','',1,0,1,0,NULL,0),(1428,92,3,12,1151043022,'534c1cda','',1,0,1,1,NULL,0),(1429,92,3,68,1151062950,'568d57e3','',1,0,1,0,NULL,0),(1430,42,3,38,1151069725,'54e6d5d8','',1,0,1,1,NULL,0),(1431,89,1,38,1151069890,'54e6d5d8','',1,0,1,1,NULL,0),(1432,89,1,6,1151072215,'3ed1c0b4','',1,0,1,1,NULL,0),(1433,20,1,6,1151072402,'3ed1c0b4','',1,0,1,1,NULL,0),(1434,95,1,6,1151072594,'3ed1c0b4','',1,0,1,1,NULL,0),(1435,42,3,6,1151072708,'3ed1c0b4','',1,0,1,1,NULL,0),(1436,103,3,6,1151072937,'3ed1c0b4','',1,0,1,1,NULL,0),(1437,89,1,23,1151080158,'55fac098','',1,0,1,0,NULL,0),(1438,28,1,26,1151084427,'8d9e8c68','',1,0,1,1,NULL,0),(1439,89,1,68,1151087002,'56858a87','',1,0,1,0,NULL,0),(1440,28,1,68,1151087044,'56858a87','',1,0,1,0,NULL,0),(1441,95,1,68,1151087080,'56858a87','',1,0,1,0,NULL,0),(1442,103,3,68,1151087132,'56858a87','',1,0,1,0,NULL,0),(1443,42,3,68,1151087162,'56858a87','',1,0,1,0,NULL,0),(1444,20,1,38,1151097141,'54e6d5d8','',1,0,1,1,NULL,0),(1445,15,1,-1,1151098301,'3e641bcd','werner',1,0,1,0,NULL,0),(1446,15,1,6,1151144841,'3ed1c0b4','',1,0,1,1,NULL,0),(1447,95,1,6,1151144976,'3ed1c0b4','',1,0,1,1,NULL,0),(1448,42,3,6,1151145050,'3ed1c0b4','',1,0,1,1,NULL,0),(1449,103,3,6,1151145095,'3ed1c0b4','',1,0,1,1,NULL,0),(1450,95,1,68,1151150297,'51812f52','',1,0,1,0,NULL,0),(1451,42,3,68,1151150378,'51812f52','',1,0,1,0,NULL,0),(1452,89,1,38,1151157487,'54e6d5d8','',1,0,1,1,NULL,0),(1453,28,1,38,1151157721,'54e6d5d8','',1,0,1,1,NULL,0),(1454,15,1,38,1151157825,'54e6d5d8','',1,0,1,1,NULL,0),(1455,95,1,38,1151157996,'54e6d5d8','',1,0,1,1,NULL,0),(1456,20,1,38,1151158598,'54e6d5d8','',1,0,1,1,NULL,0),(1457,20,1,68,1151168337,'56903886','',1,0,1,0,NULL,0),(1458,15,1,68,1151168370,'56903886','',1,0,1,0,NULL,0),(1459,28,1,68,1151168416,'56903886','',1,0,1,0,NULL,0),(1460,89,1,68,1151168467,'56903886','',1,0,1,0,NULL,0),(1461,20,1,38,1151169125,'54e6d5d8','',1,0,1,1,NULL,0),(1462,15,1,38,1151169354,'54e6d5d8','',1,0,1,1,NULL,0),(1463,89,1,38,1151169512,'54e6d5d8','',1,0,1,1,NULL,0),(1464,83,3,38,1151169626,'54e6d5d8','',1,0,1,1,NULL,0),(1465,89,1,68,1151170734,'56903886','',1,0,1,0,NULL,0),(1466,83,3,68,1151170775,'56903886','',1,0,1,0,NULL,0),(1467,15,1,68,1151170834,'56903886','',1,0,1,0,NULL,0),(1468,15,1,38,1151174579,'54e6d5d8','',1,0,1,1,NULL,0),(1469,104,1,-1,1151185382,'c35d6647','Pupil of Olivier',1,0,1,0,NULL,0),(1470,15,1,68,1151233154,'56858e39','',1,0,1,0,NULL,0),(1471,95,1,6,1151257621,'3ed1c0b4','',1,0,1,1,NULL,0),(1472,15,1,38,1151317973,'54e6d5d8','',1,0,1,1,NULL,0),(1473,95,1,38,1151318098,'54e6d5d8','',1,0,1,1,NULL,0),(1474,92,3,38,1151318157,'54e6d5d8','',1,0,1,1,NULL,0),(1475,95,1,6,1151318823,'3ed1c0b4','',1,0,1,1,NULL,0),(1476,92,3,6,1151318883,'3ed1c0b4','',1,0,1,1,NULL,0),(1477,15,1,68,1151322563,'51999f40','',1,0,1,0,NULL,0),(1478,95,1,68,1151322582,'51999f40','',1,0,1,0,NULL,0),(1479,92,3,68,1151322626,'51999f40','',1,0,1,0,NULL,0),(1480,92,3,13,1151382142,'cfff9abf','',1,0,1,0,NULL,0),(1481,92,3,6,1151401078,'3ed1c0b4','',1,0,1,1,NULL,0),(1482,92,3,68,1151413552,'d92a4d0f','',1,0,1,0,NULL,0),(1484,92,3,38,1151491231,'54e6d5d8','',1,0,1,1,NULL,0),(1485,20,1,34,1151515146,'c25169a6','',1,0,1,1,NULL,0),(1486,20,1,38,1151516569,'54e6d5d8','',1,0,1,1,NULL,0),(1487,60,3,34,1151516937,'c25169a6','',1,0,1,1,NULL,0),(1488,3,2,34,1151521799,'c25169a6','',1,0,1,1,NULL,0),(1489,20,1,34,1151528966,'c25169a6','',1,0,1,1,NULL,0),(1490,20,1,69,1151568340,'c98402c8','',1,0,1,0,NULL,0),(1491,20,1,38,1151581132,'54e6d5d8','',1,0,1,1,NULL,0),(1492,60,3,38,1151581309,'54e6d5d8','',1,0,1,1,NULL,0),(1493,20,1,68,1151591466,'51999eeb','',1,0,1,0,NULL,0),(1494,60,3,68,1151591547,'51999eeb','',1,0,1,0,NULL,0),(1495,60,3,38,1151592478,'54e6d5d8','',1,0,1,1,NULL,0),(1496,53,1,9,1151598221,'c35d6647','',1,0,1,1,NULL,0),(1497,60,3,68,1151605524,'56858e52','',1,0,1,0,NULL,0),(1509,3,2,4,1151713389,'52fced20','',1,0,1,1,NULL,0),(1499,92,3,12,1151647974,'534c132a','',1,0,1,1,NULL,0),(1500,20,1,24,1151669975,'550158a5','',1,0,1,1,NULL,0),(1501,20,1,38,1151670628,'5870bdb6','',1,0,1,1,NULL,0),(1508,3,2,4,1151712947,'52fced20','',1,0,1,1,NULL,0),(1503,53,1,6,1151673104,'3ed1c0b4','',1,0,1,1,NULL,0),(1507,3,2,4,1151712513,'52fced20','',1,0,1,1,NULL,0),(1505,53,1,38,1151679239,'5870bdb6','',1,0,1,1,NULL,0),(1506,92,3,38,1151692709,'5870bdb6','',1,0,1,1,NULL,0),(1510,3,2,4,1151713681,'52fced20','',1,0,1,1,NULL,0),(1511,3,2,4,1151714253,'52fced20','',1,0,1,1,1151757256,1),(1512,53,1,69,1151737236,'c98402c8','',1,0,1,0,NULL,0),(1513,3,2,69,1151740617,'c98402c8','',1,0,1,0,NULL,0),(1514,3,2,38,1151750570,'5870bdb6','',1,0,1,1,NULL,0),(1515,53,1,26,1151752170,'46107496','',1,0,1,1,NULL,0),(1516,20,1,26,1151752361,'46107496','',1,0,1,1,NULL,0),(1517,20,1,26,1151752842,'46107496','',1,0,1,1,NULL,0),(1518,18,1,26,1151752927,'46107496','',1,0,1,1,NULL,0),(1519,42,3,26,1151753008,'46107496','',1,0,1,1,NULL,0),(1520,107,3,26,1151753164,'46107496','',1,0,1,1,NULL,0),(1521,108,1,26,1151753598,'46107496','',1,0,1,1,NULL,0),(1522,4,2,26,1151754644,'46107496','',1,0,1,1,NULL,0),(1523,108,1,6,1151754943,'3ed1c0b4','',1,0,1,1,NULL,0),(1524,3,2,6,1151755499,'3ed1c0b4','',1,0,1,1,NULL,0),(1525,107,3,6,1151755627,'3ed1c0b4','',1,0,1,1,NULL,0),(1526,92,3,6,1151755868,'3ed1c0b4','',1,0,1,1,NULL,0),(1527,42,3,38,1151757875,'5870bdb6','',1,0,1,1,NULL,0),(1528,107,3,38,1151758120,'5870bdb6','',1,0,1,1,NULL,0),(1529,3,2,38,1151758301,'5870bdb6','',1,0,1,1,NULL,0),(1530,4,2,38,1151758508,'5870bdb6','',1,0,1,1,NULL,0),(1531,53,1,38,1151758775,'5870bdb6','',1,0,1,1,NULL,0),(1532,20,1,38,1151758987,'5870bdb6','',1,0,1,1,NULL,0),(1533,18,1,38,1151759224,'5870bdb6','',1,0,1,1,NULL,0),(1534,108,1,38,1151759426,'5870bdb6','',1,0,1,1,NULL,0),(1535,11,4,38,1151759949,'5870bdb6','',1,0,1,1,NULL,0),(1536,3,2,4,1151761834,'52f88b87','',1,0,1,1,NULL,0),(1537,3,2,38,1151770438,'5870bdb6','',1,0,1,1,NULL,0),(1538,4,2,7,1151772651,'5370ce36','',1,0,1,0,NULL,0),(1539,4,2,38,1151774769,'5870bdb6','',1,0,1,1,NULL,0),(1867,107,3,-1,1157046260,'456c4b7a','Terryswv',1,0,1,0,NULL,0),(1541,3,2,38,1151791812,'5870bdb6','',1,0,1,1,NULL,0),(1542,3,2,4,1151794015,'52f95a91','',1,0,1,1,NULL,0),(1543,53,1,5,1151796197,'4a87272e','',1,0,1,1,NULL,0),(1544,110,3,47,1151796278,'54d91db2','',1,0,1,1,NULL,0),(1545,53,1,6,1151832380,'3ed1c0b4','',1,0,1,1,NULL,0),(1546,11,4,6,1151833495,'3ed1c0b4','',1,0,1,1,NULL,0),(1547,53,1,9,1151842272,'c35d6647','',1,0,1,1,NULL,0),(1548,11,4,38,1151843823,'5870bdb6','',1,0,1,1,NULL,0),(1549,53,1,38,1151844269,'5870bdb6','',1,0,1,1,NULL,0),(1550,110,3,38,1151844455,'5870bdb6','',1,0,1,1,NULL,0),(1551,3,2,73,1151866056,'c90a1b22','',1,0,1,1,NULL,0),(1552,3,2,13,1151894215,'cfff9abf','',1,0,1,0,NULL,0),(1553,53,1,68,1151916886,'51812845','',1,0,1,0,NULL,0),(1554,110,3,68,1151916958,'51812845','',1,0,1,0,NULL,0),(1555,11,4,68,1151916998,'51812845','',1,0,1,0,NULL,0),(1556,20,1,68,1151917054,'51812845','',1,0,1,0,NULL,0),(1557,11,4,38,1151921958,'5870bdb6','',1,0,1,1,NULL,0),(1558,53,1,38,1151922146,'5870bdb6','',1,0,1,1,NULL,0),(1559,53,1,68,1151946230,'56884a43','',1,0,1,0,NULL,0),(1560,11,4,68,1151946328,'56884a43','',1,0,1,0,NULL,0),(1561,11,4,38,1151952554,'5870bdb6','',1,0,1,1,NULL,0),(1562,11,4,68,1151963441,'56903972','',1,0,1,0,NULL,0),(1873,11,4,-1,1157060373,'db4052c5','Addie',1,0,1,0,NULL,0),(1564,112,3,-1,1152024497,'442f10f8','Freesefan',1,0,1,0,NULL,0),(1565,6,2,-1,1152024592,'442f10f8','',1,0,1,0,NULL,0),(1566,112,3,47,1152025138,'54d91add','',1,0,1,1,NULL,0),(1872,107,3,26,1157059705,'47f51d17','',1,0,1,1,NULL,0),(1568,113,1,26,1152045371,'46107496','',1,0,1,1,NULL,0),(1871,89,1,26,1157059656,'47f51d17','',1,0,1,1,NULL,0),(1570,3,2,26,1152045663,'46107496','',1,0,1,1,NULL,0),(1572,108,1,26,1152045798,'46107496','',1,0,1,1,NULL,0),(1573,112,3,26,1152045856,'46107496','',1,0,1,1,NULL,0),(1574,110,3,26,1152045959,'46107496','',1,0,1,1,NULL,0),(1575,113,1,38,1152046676,'5870bdb6','',1,0,1,1,NULL,0),(1870,133,1,38,1157052460,'5870bc26','',1,0,1,1,NULL,0),(1577,112,3,68,1152051369,'51812efe','',1,0,1,0,NULL,0),(1869,89,1,38,1157052342,'5870bc26','',1,0,1,1,NULL,0),(1580,113,1,68,1152058536,'51999e9a','',1,0,1,0,NULL,0),(1581,113,1,26,1152238559,'8d9e976b','',1,0,1,1,NULL,0),(1861,89,1,26,1157042105,'47f51d17','',1,0,1,1,NULL,0),(1860,113,1,26,1157041937,'47f51d17','',1,0,1,1,NULL,0),(1584,113,1,38,1152265482,'5870bdb6','',1,0,1,1,NULL,0),(1859,133,1,113,1157027159,'d8a1d8db','',1,0,1,0,NULL,0),(1586,113,1,26,1152298555,'8d9e976b','',1,0,1,1,NULL,0),(1858,107,3,6,1157018285,'3ed1c0b4','',1,0,1,1,NULL,0),(1589,31,1,26,1152348163,'8d9e976b','',1,0,1,1,NULL,0),(1590,31,1,38,1152351816,'5870bdb6','',1,0,1,1,NULL,0),(1591,113,1,24,1152359499,'534e6859','',1,0,1,1,NULL,0),(1592,112,3,24,1152360185,'534e6859','',1,0,1,1,NULL,0),(1593,115,1,84,1152418180,'43a0b697','',1,0,1,0,NULL,0),(1594,115,1,26,1152479483,'47f52303','',1,0,1,1,NULL,0),(1595,115,1,38,1152523947,'5870bd62','',1,0,1,1,NULL,0),(1596,11,4,38,1152524053,'5870bd62','',1,0,1,1,NULL,0),(1597,11,4,6,1152528196,'3ed1c0b4','',1,0,1,1,NULL,0),(1598,116,3,26,1152533196,'461245b5','',1,0,1,1,NULL,0),(1599,11,4,24,1152533700,'5501902c','',1,0,1,1,NULL,0),(1600,116,3,68,1152548137,'d92a4d02','',1,0,1,0,NULL,0),(1601,11,4,38,1152550465,'5870bd62','',1,0,1,1,NULL,0),(1602,116,3,38,1152550649,'5870bd62','',1,0,1,1,NULL,0),(1603,115,1,68,1152635158,'56892fee','',1,0,1,0,NULL,0),(1604,113,1,68,1152635194,'56892fee','',1,0,1,0,NULL,0),(1605,107,3,68,1152635239,'56892fee','',1,0,1,0,NULL,0),(1606,113,1,38,1152642659,'5870bd62','',1,0,1,1,NULL,0),(1607,113,1,68,1152658613,'d92a4d58','',1,0,1,0,NULL,0),(1608,107,3,13,1152666245,'cfff9abf','',1,0,1,0,NULL,0),(1609,92,3,38,1152723556,'5870bcad','',1,0,1,1,NULL,0),(1610,92,3,47,1152729843,'54d91651','',1,0,1,1,NULL,0),(1611,116,3,26,1152739146,'461245b5','',1,0,1,1,NULL,0),(1612,113,1,26,1152739476,'461245b5','',1,0,1,1,NULL,0),(1613,113,1,26,1152739595,'461245b5','',1,0,1,1,NULL,0),(1614,92,3,68,1152740191,'51846f30','',1,0,1,0,NULL,0),(1615,4,2,26,1152740868,'461245b5','',1,0,1,1,NULL,0),(1616,113,1,38,1152783685,'5870bcad','',1,0,1,1,NULL,0),(1617,113,1,69,1152794825,'c98402c8','',1,0,1,0,NULL,0),(1618,116,3,47,1152826370,'54d9118a','',1,0,1,1,NULL,0),(1619,113,1,26,1152844079,'461245b5','',1,0,1,1,NULL,0),(1620,113,1,5,1152851767,'4a87272e','',1,0,1,1,NULL,0),(1621,113,1,5,1152852118,'4a87272e','',1,0,1,1,NULL,0),(1622,3,2,68,1152901834,'51999f51','',1,0,1,0,NULL,0),(1623,108,1,69,1152914300,'c98402c8','',1,0,1,0,NULL,0),(1624,108,1,26,1152928000,'461245b5','',1,0,1,1,NULL,0),(1625,113,1,26,1152928062,'461245b5','',1,0,1,1,NULL,0),(1626,113,1,38,1152961235,'5870bcad','',1,0,1,1,NULL,0),(1627,113,1,69,1152988820,'c98402c8','',1,0,1,0,NULL,0),(1628,108,1,69,1152990055,'c98402c8','',1,0,1,0,NULL,0),(1629,113,1,38,1152995740,'5870bcad','',1,0,1,1,NULL,0),(1630,107,3,38,1152996350,'5870bcad','',1,0,1,1,NULL,0),(1631,113,1,-1,1153017501,'47f15ddf','',1,0,1,0,NULL,0),(1632,113,1,69,1153125075,'c98402c8','',1,0,1,0,NULL,0),(1633,113,1,38,1153132405,'5870bcad','',1,0,1,1,NULL,0),(1634,113,1,69,1153162868,'c98402c8','',1,0,1,0,NULL,0),(1635,42,3,69,1153165033,'c98402c8','',1,0,1,0,NULL,0),(1636,113,1,38,1153165682,'5870bcad','',1,0,1,1,NULL,0),(1637,113,1,69,1153189809,'c98402c8','',1,0,1,0,NULL,0),(1638,24,1,69,1153208721,'c98402c8','',1,0,1,0,NULL,0),(1639,81,1,69,1153209150,'c98402c8','',1,0,1,0,NULL,0),(1640,81,1,38,1153216012,'5870bcad','',1,0,1,1,NULL,0),(1641,24,1,38,1153216254,'5870bcad','',1,0,1,1,NULL,0),(1642,82,1,38,1153216339,'5870bcad','',1,0,1,1,NULL,0),(1643,4,2,7,1153222213,'56cbe340','',1,0,1,0,NULL,0),(1644,4,2,6,1153228185,'3ed1c0b4','',1,0,1,1,NULL,0),(1645,42,3,6,1153228331,'3ed1c0b4','',1,0,1,1,NULL,0),(1646,4,2,38,1153232633,'5870bcad','',1,0,1,1,NULL,0),(1647,81,1,9,1153244799,'c35d6647','',1,0,1,1,NULL,0),(1648,117,1,86,1153271104,'c87f48bd','',1,0,1,0,NULL,0),(1649,117,1,69,1153282200,'c98402c8','',1,0,1,0,NULL,0),(1650,118,3,69,1153295481,'c98402c8','',1,0,1,0,NULL,0),(1651,117,1,38,1153300386,'5870bcad','',1,0,1,1,NULL,0),(1652,117,1,68,1153332950,'568efbb1','',1,0,1,0,NULL,0),(1653,118,3,68,1153332981,'568efbb1','',1,0,1,0,NULL,0),(1654,117,1,-1,1153335085,'c87f48bd','',1,0,1,0,NULL,0),(1655,117,1,86,1153335150,'c87f48bd','',1,0,1,0,NULL,0),(1656,118,3,69,1153337092,'c98402c8','',1,0,1,0,NULL,0),(1657,118,3,68,1153349683,'56887a82','',1,0,1,0,NULL,0),(1658,113,1,88,1153362534,'47223d29','',1,0,1,0,NULL,0),(1659,118,3,69,1153380680,'c98402c8','',1,0,1,0,NULL,0),(1660,118,3,68,1153382168,'51812873','',1,0,1,0,NULL,0),(1661,119,3,68,1153382309,'51812873','',1,0,1,0,NULL,0),(1662,82,1,47,1153395744,'54d9118a','',1,0,1,1,NULL,0),(1663,119,3,47,1153395871,'54d9118a','',1,0,1,1,NULL,0),(1664,118,3,38,1153398126,'5870bcad','',1,0,1,1,NULL,0),(1665,118,3,47,1153410259,'54d9118a','',1,0,1,1,NULL,0),(1666,119,3,68,1153419773,'56884a5b','',1,0,1,0,NULL,0),(1667,92,3,38,1153506135,'5870bcad','',1,0,1,1,NULL,0),(1668,113,1,38,1153506585,'5870bcad','',1,0,1,1,NULL,0),(1669,89,1,38,1153506816,'5870bcad','',1,0,1,1,NULL,0),(1670,89,1,69,1153508937,'c98402c8','',1,0,1,0,NULL,0),(1868,134,1,38,1157052283,'5870bc26','',1,0,1,1,NULL,0),(1672,89,1,68,1153589217,'56858bdf','',1,0,1,0,NULL,0),(1673,89,1,69,1153604022,'c98402c8','',1,0,1,0,NULL,0),(1674,89,1,68,1153620928,'d92ce859','',1,0,1,0,NULL,0),(1675,89,1,69,1153719421,'c98402c8','',1,0,1,0,NULL,0),(1676,3,2,69,1153729507,'c98402c8','',1,0,1,0,NULL,0),(1677,92,3,69,1153729835,'c98402c8','',1,0,1,0,NULL,0),(1678,89,1,68,1153734689,'d92a4e04','',1,0,1,0,NULL,0),(1679,92,3,68,1153734739,'d92a4e04','',1,0,1,0,NULL,0),(1680,92,3,12,1153837210,'534d11c3','',1,0,1,1,NULL,0),(1681,108,1,24,1153841316,'550020c5','',1,0,1,1,NULL,0),(1682,117,1,24,1153841415,'550020c5','',1,0,1,1,NULL,0),(1683,113,1,24,1153841547,'550020c5','',1,0,1,1,NULL,0),(1684,89,1,24,1153841577,'550020c5','',1,0,1,1,NULL,0),(1685,4,2,24,1153841632,'550020c5','',1,0,1,1,NULL,0),(1686,118,3,24,1153841823,'550020c5','',1,0,1,1,NULL,0),(1687,92,3,24,1153841872,'550020c5','',1,0,1,1,NULL,0),(1688,118,3,38,1153842991,'5870bcad','',1,0,1,1,NULL,0),(1689,89,1,38,1153843484,'5870bcad','',1,0,1,1,NULL,0),(1690,92,3,38,1153843857,'5870bcad','',1,0,1,1,NULL,0),(1691,108,1,68,1153871830,'51812fb0','',1,0,1,0,NULL,0),(1692,92,3,68,1153871973,'51812fb0','',1,0,1,0,NULL,0),(1693,92,3,38,1153909035,'5870bcad','',1,0,1,1,NULL,0),(1694,89,1,24,1153909715,'5502af93','',1,0,1,1,NULL,0),(1695,113,1,26,1154052624,'4610706b','',1,0,1,1,NULL,0),(1696,4,2,26,1154052667,'4610706b','',1,0,1,1,NULL,0),(1697,37,1,88,1154095044,'47223d29','',1,0,1,0,NULL,0),(1698,37,1,68,1154114310,'d92a4dce','',1,0,1,0,NULL,0),(1699,92,3,68,1154114456,'d92a4dce','',1,0,1,0,NULL,0),(1700,113,1,38,1154115645,'5870bdb5','',1,0,1,1,NULL,0),(1701,37,1,38,1154115710,'5870bdb5','',1,0,1,1,NULL,0),(1702,113,1,-1,1154121060,'d9a24074','Rancord',1,0,1,0,NULL,0),(1703,37,1,68,1154138959,'51812fca','',1,0,1,0,NULL,0),(1704,37,1,38,1154164718,'5870bdb5','',1,0,1,1,NULL,0),(1705,37,1,68,1154194455,'51846fdc','',1,0,1,0,NULL,0),(1706,92,3,12,1154427251,'534c1b50','',1,0,1,1,NULL,0),(1707,60,3,12,1154427310,'534c1b50','',1,0,1,1,NULL,0),(1708,113,1,-1,1154479492,'461b2e91','FiJo',1,0,1,0,NULL,0),(1709,89,1,6,1154539193,'3ed1c0b4','',1,0,1,1,NULL,0),(1710,118,3,6,1154539467,'3ed1c0b4','',1,0,1,1,NULL,0),(1711,89,1,38,1154546033,'5870bc98','',1,0,1,1,NULL,0),(1712,92,3,6,1154603093,'3ed1c0b4','',1,0,1,1,NULL,0),(1713,92,3,6,1154683255,'3ed1c0b4','',1,0,1,1,NULL,0),(1714,37,1,-1,1154705300,'d2098995','',1,0,1,0,NULL,0),(1715,112,3,-1,1154705656,'d2098995','Tim',1,0,1,0,NULL,0),(1716,92,3,6,1154862087,'3ed1c0b4','',1,0,1,1,NULL,0),(1717,120,1,-1,1154939362,'7d83abd7','Jesy',1,0,1,0,NULL,0),(1718,92,3,68,1154950337,'51846faa','',1,0,1,0,NULL,0),(1719,92,3,38,1155032827,'5870bc26','',1,0,1,1,NULL,0),(1720,120,1,6,1155035935,'3ed1c0b4','',1,0,1,1,NULL,0),(1721,120,1,38,1155041358,'5870bc26','',1,0,1,1,NULL,0),(1722,92,3,47,1155049831,'54d91d3e','',1,0,1,1,NULL,0),(1723,89,1,69,1155079817,'c85c0c5f','',1,0,1,0,NULL,0),(1724,37,1,69,1155081285,'c85c0c5f','',1,0,1,0,NULL,0),(1725,113,1,-1,1155091595,'442f10f8','',1,0,1,0,NULL,0),(1726,120,1,6,1155122119,'3ed1c0b4','',1,0,1,1,NULL,0),(1727,89,1,6,1155122259,'3ed1c0b4','',1,0,1,1,NULL,0),(1728,120,1,38,1155134621,'5870bc26','',1,0,1,1,NULL,0),(1729,89,1,9,1155153347,'56d89ecf','',1,0,1,1,NULL,0),(1730,121,1,-1,1155175045,'461b2e91','FiJo',1,0,1,0,NULL,0),(1731,89,1,69,1155189072,'c984131d','',1,0,1,0,NULL,0),(1732,122,1,-1,1155192184,'de773a55','Jesy',1,0,1,0,NULL,0),(1733,89,1,9,1155200198,'c35d6647','',1,0,1,1,NULL,0),(1734,92,3,6,1155207102,'3ed1c0b4','',1,0,1,1,NULL,0),(1735,89,1,69,1155229036,'c9840333','',1,0,1,0,NULL,0),(1736,92,3,69,1155229145,'c9840333','',1,0,1,0,NULL,0),(1737,107,3,-1,1155251105,'c8906402','Alana',1,0,1,0,NULL,0),(1738,107,3,6,1155306321,'3ed1c0b4','',1,0,1,1,NULL,0),(1739,92,3,6,1155306390,'3ed1c0b4','',1,0,1,1,NULL,0),(1740,107,3,-1,1155364370,'c926ad02','Avelina',1,0,1,0,NULL,0),(1741,92,3,6,1155385525,'3ed1c0b4','',1,0,1,1,NULL,0),(1742,123,1,47,1155391196,'54d9117c','',1,0,1,1,NULL,0),(1743,92,3,24,1155399395,'534d8209','',1,0,1,1,NULL,0),(1744,92,3,38,1155410749,'5870bc26','',1,0,1,1,NULL,0),(1745,57,3,38,1155410981,'5870bc26','',1,0,1,1,NULL,0),(1746,123,1,38,1155411170,'5870bc26','',1,0,1,1,NULL,0),(1747,123,1,47,1155411391,'54d9117c','',1,0,1,1,NULL,0),(1748,11,4,-1,1155458284,'db5dae65','August',1,0,1,0,NULL,0),(1749,123,1,69,1155464117,'c8423eaa','',1,0,1,0,NULL,0),(1750,123,1,6,1155465587,'3ed1c0b4','',1,0,1,1,NULL,0),(1751,92,3,6,1155465658,'3ed1c0b4','',1,0,1,1,NULL,0),(1752,5,2,98,1155491281,'4262c028','',1,0,1,1,NULL,0),(1753,89,1,69,1155535932,'c85c0dc1','',1,0,1,0,NULL,0),(1754,89,1,9,1155545410,'c35d6647','',1,0,1,1,NULL,0),(1755,107,3,12,1155546875,'534c1630','',1,0,1,1,NULL,0),(1756,57,3,12,1155547001,'534c1630','',1,0,1,1,NULL,0),(1757,92,3,12,1155547094,'534c1630','',1,0,1,1,NULL,0),(1758,11,4,12,1155547354,'534c1630','',1,0,1,1,NULL,0),(1759,11,4,38,1155547919,'5870bc26','',1,0,1,1,NULL,0),(1760,57,3,38,1155548047,'5870bc26','',1,0,1,1,NULL,0),(1761,123,1,38,1155548182,'5870bc26','',1,0,1,1,NULL,0),(1762,11,4,12,1155548709,'534c1630','',1,0,1,1,NULL,0),(1763,92,3,6,1155562131,'3ed1c0b4','',1,0,1,1,NULL,0),(1764,5,2,-1,1155565094,'dd20b00f','Ianbhe',1,0,1,0,NULL,0),(1765,124,1,-1,1155583182,'d36bd4fa','Jesy',1,0,1,0,NULL,0),(1766,11,4,38,1155635736,'5870bc26','',1,0,1,1,NULL,0),(1767,124,1,38,1155635955,'5870bc26','',1,0,1,1,NULL,0),(1768,124,1,6,1155651375,'3ed1c0b4','',1,0,1,1,NULL,0),(1769,107,3,24,1155654192,'534e62ad','',1,0,1,1,NULL,0),(1770,107,3,38,1155657206,'5870bc26','',1,0,1,1,NULL,0),(1771,124,1,68,1155764673,'569039ad','',1,0,1,0,NULL,0),(1772,107,3,68,1155764756,'569039ad','',1,0,1,0,NULL,0),(1773,11,4,68,1155764797,'569039ad','',1,0,1,0,NULL,0),(1856,5,2,-1,1157016268,'47ec7ba0','Brianrfq',1,0,1,0,NULL,0),(1857,107,3,-1,1157016982,'44701d4f','Rickang',1,0,1,0,NULL,0),(1777,107,3,38,1155809188,'5870bc26','',1,0,1,1,NULL,0),(1778,124,1,38,1155809357,'5870bc26','',1,0,1,1,NULL,0),(1779,107,3,-1,1155827031,'c91fd06f','Bijou',1,0,1,0,NULL,0),(1780,5,2,-1,1155846278,'540a6568','Aidenxmn',1,0,1,0,NULL,0),(1781,107,3,68,1155846986,'56858b2c','',1,0,1,0,NULL,0),(1782,107,3,38,1155848563,'5870bc26','',1,0,1,1,NULL,0),(1783,113,1,-1,1155867244,'1844d8d5','Guest',1,0,1,0,NULL,0),(1784,5,2,-1,1155872863,'41afc22b','Bobbywhb',1,0,1,0,NULL,0),(1785,11,4,-1,1155895667,'cbacd26e','Arlette',1,0,1,0,NULL,0),(1786,107,3,-1,1155895672,'7df87c05','Ashton',1,0,1,0,NULL,0),(1787,5,2,-1,1155897147,'4219b36f','Teriwrx',1,0,1,0,NULL,0),(1788,107,3,-1,1155922318,'18034f61','Tonylkf',1,0,1,0,NULL,0),(1789,107,3,-1,1155965891,'d2b0021b','Oli',1,0,1,0,NULL,0),(1790,113,1,-1,1155992002,'3e641bcd','werner',1,0,1,0,NULL,0),(1791,5,2,-1,1156024131,'458e3db3','Ginaslm',1,0,1,0,NULL,0),(1792,107,3,-1,1156025191,'43bb34bf','Codyotk',1,0,1,0,NULL,0),(1793,107,3,-1,1156036122,'c2a5825d','August',1,0,1,0,NULL,0),(1794,5,2,-1,1156051676,'181fcbdf','Peteridx',1,0,1,0,NULL,0),(1795,107,3,-1,1156052470,'461b1668','Susanpsd',1,0,1,0,NULL,0),(1796,113,1,5,1156058415,'4a87272e','',1,0,1,1,NULL,0),(1797,107,3,68,1156080235,'56884f25','',1,0,1,0,NULL,0),(1798,107,3,6,1156087924,'3ed1c0b4','',1,0,1,1,NULL,0),(1799,11,4,-1,1156104528,'7df3fbc2','Aida',1,0,1,0,NULL,0),(1800,113,1,24,1156122911,'534c854a','',1,0,1,1,NULL,0),(1801,107,3,24,1156122987,'534c854a','',1,0,1,1,NULL,0),(1802,107,3,38,1156149939,'5870bc26','',1,0,1,1,NULL,0),(1803,92,3,6,1156152031,'3ed1c0b4','',1,0,1,1,NULL,0),(1804,107,3,-1,1156174745,'7df518aa','Ariadne',1,0,1,0,NULL,0),(1805,5,2,-1,1156183590,'48c0f5fd','Lorigti',1,0,1,0,NULL,0),(1806,5,2,-1,1156183620,'444a78fb','Lorigti',1,0,1,0,NULL,0),(1807,11,4,68,1156199564,'56884f1d','',1,0,1,0,NULL,0),(1808,92,3,6,1156240202,'3ed1c0b4','',1,0,1,1,NULL,0),(1809,92,3,24,1156243022,'534e6168','',1,0,1,1,NULL,0),(1810,11,4,-1,1156243093,'c84c24c3','Audra',1,0,1,0,NULL,0),(1811,92,3,68,1156295418,'568b573f','',1,0,1,0,NULL,0),(1812,5,2,-1,1156459089,'411ddad6','Terimlg',1,0,1,0,NULL,0),(1813,107,3,-1,1156460318,'444a78fb','Joselpk',1,0,1,0,NULL,0),(1865,135,3,26,1157045148,'47f51d17','',1,0,1,1,NULL,0),(1815,5,2,-1,1156498803,'46e9bd86','Stacyjnu',1,0,1,0,NULL,0),(1816,107,3,-1,1156499758,'411ddad6','Jessekbn',1,0,1,0,NULL,0),(1864,3,2,26,1157045059,'47f51d17','',1,0,1,1,NULL,0),(1820,107,3,68,1156501028,'5688e6d1','',1,0,1,0,NULL,0),(1821,107,3,38,1156521983,'5870bc26','',1,0,1,1,NULL,0),(1863,3,2,4,1157044336,'5241228c','',1,0,1,1,NULL,0),(1823,5,2,-1,1156538673,'46e1ffea','Haleyvmj',1,0,1,0,NULL,0),(1824,107,3,-1,1156539966,'52fbffa4','Chloewkh',1,0,1,0,NULL,0),(1825,107,3,-1,1156540008,'a44df01f','Chloewkh',1,0,1,0,NULL,0),(1826,5,2,-1,1156568115,'48c0f5fd','Karenpjj',1,0,1,0,NULL,0),(1827,107,3,-1,1156569029,'4356f36d','Blakeatg',1,0,1,0,NULL,0),(1828,107,3,-1,1156581335,'cb6d2122','Bijou',1,0,1,0,NULL,0),(1829,5,2,-1,1156593346,'46e9bd86','Aaronpza',1,0,1,0,NULL,0),(1830,107,3,-1,1156594445,'467d17db','Waynecez',1,0,1,0,NULL,0),(1831,11,4,-1,1156613923,'cb1ace81','Antonia',1,0,1,0,NULL,0),(1862,134,1,26,1157043932,'47f51d17','',1,0,1,1,NULL,0),(1833,5,2,-1,1156631408,'0ce234ba','Mollyhoi',1,0,1,0,NULL,0),(1834,107,3,-1,1156632292,'45466a72','Juanzxh',1,0,1,0,NULL,0),(1835,2,2,-1,1156642461,'400c7447','Metal 4-Ever',1,0,1,0,NULL,0),(1836,2,2,6,1156676554,'3ed1c0b4','',1,0,1,1,NULL,0),(1837,107,3,-1,1156680345,'543f0884','Blake',1,0,1,0,NULL,0),(1838,2,2,24,1156693739,'534f6f21','',1,0,1,1,NULL,0),(1839,130,3,110,1156763635,'53c20419','',1,0,1,1,NULL,0),(1841,5,2,-1,1156827195,'46483797','Paulavdq',1,0,1,0,NULL,0),(1842,107,3,-1,1156828030,'540a6568','Rickyqlv',1,0,1,0,NULL,0),(1843,131,1,83,1156828266,'42c9c356','',1,0,1,0,NULL,0),(1844,131,1,6,1156840905,'3ed1c0b4','',1,0,1,1,NULL,0),(1845,131,1,9,1156848571,'c35d6647','',1,0,1,1,NULL,0),(1846,5,2,-1,1156860059,'4356f36d','Tinatzy',1,0,1,0,NULL,0),(1847,107,3,-1,1156860971,'4434a3b3','Jacknzg',1,0,1,0,NULL,0),(1848,76,1,-1,1156868705,'de23ed57','upload file',1,0,0,0,NULL,0),(1849,5,2,-1,1156891818,'456c4b7a','Vickixli',1,0,1,0,NULL,0),(1850,107,3,-1,1156892704,'456c4b7a','Alexfao',1,0,1,0,NULL,0),(1851,5,2,-1,1156912236,'461b1668','Steveofu',1,0,1,0,NULL,0),(1852,107,3,-1,1156913175,'db237682','Jodinra',1,0,1,0,NULL,0),(1919,53,1,-1,1157156925,'d4964b23','g@tech.tv',1,0,1,0,NULL,0),(1854,107,3,-1,1156934770,'409702f6','Rogerqlv',1,0,1,0,NULL,0),(1866,5,2,-1,1157045229,'45ceefbd','Lucastcd',1,0,1,0,NULL,0),(1874,11,4,-1,1157075236,'db88f94f','',1,0,1,1,NULL,0),(1875,57,3,-1,1157075316,'db88f94f','',1,0,1,1,NULL,0),(1876,134,1,-1,1157075391,'db88f94f','',1,0,1,1,NULL,0),(1877,89,1,-1,1157075456,'db88f94f','',1,0,1,1,NULL,0),(1878,10,3,-1,1157075509,'db88f94f','',1,0,1,1,NULL,0),(1879,5,2,-1,1157077617,'45d1ac9e','Royced',1,0,1,0,NULL,0),(1880,107,3,-1,1157078657,'461b1668','Terrylpp',1,0,1,0,NULL,0),(1881,5,2,-1,1157098796,'45d25e00','Peterknf',1,0,1,0,NULL,0),(1882,107,3,-1,1157099785,'456c4b7a','Teriahp',1,0,1,0,NULL,0),(1883,10,3,38,1157101797,'5870bc26','',1,0,1,1,NULL,0),(1884,38,1,-1,1157119321,'dc55f18e','mb34972ed61@see.it',1,0,1,0,NULL,0),(1885,53,1,-1,1157119795,'d4964b23','icu3qv@come.to',1,0,1,0,NULL,0),(1886,2,2,-1,1157119804,'ca650655','lzl66gcttv@tech.tv',1,0,1,0,NULL,0),(1887,9,3,-1,1157119996,'d4964b23','2@yahoo.com',1,0,1,0,NULL,0),(1888,15,1,-1,1157120067,'d4964b23','aalggcqmi@bigfoot.com',1,0,1,0,NULL,0),(1889,9,3,-1,1157120111,'d4964b23','fhx09bu@does.it',1,0,1,0,NULL,0),(1890,36,3,-1,1157120202,'3a4dceb1','asvf8d@mail.com',1,0,1,0,NULL,0),(1891,30,1,-1,1157120467,'d4964b23','cw0ia02i8r6he@bigfoot.com',1,0,1,0,NULL,0),(1892,57,3,-1,1157120688,'d4964b23','hyuf4id637fk3bq@see.to',1,0,1,0,NULL,0),(1893,38,1,-1,1157120725,'d4964b23','9fqm7u1z8j1@rocketmail.co',1,0,1,0,NULL,0),(1894,35,1,-1,1157121321,'d4964b23','qfd8cbwnraad1es@rocketmai',1,0,1,0,NULL,0),(1895,57,3,-1,1157121420,'d4964b23','fwlccaw65oy@tech.tv',1,0,1,0,NULL,0),(1896,30,1,-1,1157121983,'d34eb0fc','hczjs0zq36@rocketmail.com',1,0,1,0,NULL,0),(1897,39,1,-1,1157122514,'d4964b23','xy196simuyoy@mail.nu',1,0,1,0,NULL,0),(1898,39,1,-1,1157122631,'d52a0217','ba1p9ms@home.com',1,0,1,0,NULL,0),(1899,35,1,-1,1157122740,'d4964b23','y1lqyohsm50rxh5@aol.com',1,0,1,0,NULL,0),(1900,57,3,-1,1157122795,'d4964b23','yepzi835@classnet.pl',1,0,1,0,NULL,0),(1901,19,1,-1,1157122810,'d4964b23','t1476vk@mail.me',1,0,1,0,NULL,0),(1902,10,3,-1,1157122932,'cad5c8e4','s1va@see.it',1,0,1,0,NULL,0),(1903,45,1,-1,1157123531,'d4964b23','2351sphks01@aol.com',1,0,1,0,NULL,0),(1904,37,1,-1,1157123787,'d4964b23','td83c8ntvvtm@mail.nu',1,0,1,0,NULL,0),(1905,5,2,-1,1157123810,'456c4b7a','Jonpmf',1,0,1,0,NULL,0),(1906,30,1,-1,1157124380,'ca1d0efb','ex48yuw6q@home.com',1,0,1,0,NULL,0),(1907,42,3,-1,1157124438,'d52a0217','l9oixsq4j2g@classnet.pl',1,0,1,0,NULL,0),(1908,39,1,-1,1157124534,'d4964b23','49llko@work.com',1,0,1,0,NULL,0),(1909,58,3,-1,1157124958,'d4964b23','z3cnlb501xf@hotmail.com',1,0,1,0,NULL,0),(1910,2,2,-1,1157125067,'d4964b23','mzyusay@yahoo.com',1,0,1,0,NULL,0),(1911,107,3,-1,1157125133,'54a175bd','Jonckz',1,0,1,0,NULL,0),(1912,45,1,-1,1157125238,'d9a24462','ranc',1,0,1,0,NULL,0),(1914,9,3,-1,1157127184,'ca1d0efb','eydk1@tech.tv',1,0,1,0,NULL,0),(1915,29,3,-1,1157127294,'d4964b23','1fd5@classnet.pl',1,0,1,0,NULL,0),(1916,42,3,-1,1157127520,'d4964b23','196la8@rocketmail.com',1,0,1,0,NULL,0),(1917,89,1,26,1157127565,'8d9e99e0','',1,0,1,1,NULL,0),(1918,89,1,38,1157131804,'5870bc26','',1,0,1,1,NULL,0),(1920,38,1,-1,1157157023,'d4964b23','b1ut7pcjznl4@come.to',1,0,1,0,NULL,0),(1921,11,4,-1,1157157049,'3cbffb09','ngel@mail.com',1,0,1,0,NULL,0),(1922,17,1,-1,1157157187,'d4964b23','t36ul4v@tech.tv',1,0,1,0,NULL,0),(1923,2,2,-1,1157157204,'d4964b23','sln741@work.com',1,0,1,0,NULL,0),(1924,9,3,-1,1157157356,'3cbffb09','5qf5iexfe7o@mail.nu',1,0,1,0,NULL,0),(1925,36,3,-1,1157157444,'d4964b23','jghtqb@classnet.pl',1,0,1,0,NULL,0),(2027,17,1,-1,1157244481,'cb710d03','rrb@mail.com',1,0,1,0,NULL,0),(1927,2,2,-1,1157157714,'3dbdf0c4','nic09h2n9c6n0wy@mail.nu',1,0,1,0,NULL,0),(1928,2,2,-1,1157157715,'d4964b23','nic09h2n9c6n0wy@mail.nu',1,0,1,0,NULL,0),(1929,30,1,-1,1157157749,'d4964b23','gps8up7e9fqxf@work.com',1,0,1,0,NULL,0),(1930,38,1,-1,1157158012,'d4964b23','oxws35mrzoy@mail.me',1,0,1,0,NULL,0),(1984,15,1,-1,1157195431,'44742703','krg9ek@come.to',1,0,1,0,NULL,0),(1932,27,1,-1,1157158787,'d4964b23','2rvf@see.to',1,0,1,0,NULL,0),(1933,11,4,-1,1157158973,'d4964b23','mzninu2@arrivo.br',1,0,1,0,NULL,0),(1934,57,3,-1,1157159081,'d5e85d35','7@work.com',1,0,1,0,NULL,0),(1935,57,3,-1,1157159157,'7df071c2','7@work.com',1,0,1,0,NULL,0),(1936,39,1,-1,1157159212,'d4964b23','xsj54@classnet.pl',1,0,1,0,NULL,0),(1985,15,1,-1,1157195435,'d4964b23','krg9ek@come.to',1,0,1,0,NULL,0),(1938,19,1,-1,1157159734,'d4964b23','b1m3nu0aeqdt@bigfoot.com',1,0,1,0,NULL,0),(1939,26,1,-1,1157159905,'d4964b23','v8ez@yahoo.com',1,0,1,0,NULL,0),(1940,2,2,-1,1157159939,'d4964b23','61s06j9@freemail.com',1,0,1,0,NULL,0),(1942,57,3,-1,1157160367,'d4964b23','w45d69ez7@hotmail.com',1,0,1,0,NULL,0),(1943,11,4,-1,1157160439,'d4964b23','8b5l4wpsiq83@aol.com',1,0,1,0,NULL,0),(1944,37,1,-1,1157160857,'d4964b23','pffa1pmu8@yahoo.com',1,0,1,0,NULL,0),(1945,2,2,-1,1157161190,'d4964b23','k6z8lu9vy@see.to',1,0,1,0,NULL,0),(1946,39,1,-1,1157161275,'d4964b23','zfgk@yahoo.com',1,0,1,0,NULL,0),(1947,57,3,-1,1157161549,'d4964b23','2l6xjaja61tjs7@mail.com',1,0,1,0,NULL,0),(1948,53,1,-1,1157161796,'d4964b23','2ytk3@arrivo.br',1,0,1,0,NULL,0),(1949,37,1,-1,1157161996,'d4964b23','bqgtpk9@see.to',1,0,1,0,NULL,0),(1950,37,1,-1,1157162434,'ca1d0efb','chp5a7jytnqgb@mail.me',1,0,1,0,NULL,0),(2026,38,1,-1,1157243946,'5275d307','opw0da5stfvq@tech.tv',1,0,1,0,NULL,0),(1952,54,3,-1,1157163293,'d4964b23','ufsywimxbh@work.com',1,0,1,0,NULL,0),(1953,37,1,26,1157163615,'8d9e99e0','',1,0,1,1,NULL,0),(1954,29,3,-1,1157163665,'d4964b23','20@bigfoot.com',1,0,1,0,NULL,0),(1955,31,1,-1,1157163727,'d4964b23','0qaj@home.com',1,0,1,0,NULL,0),(1956,37,1,26,1157163804,'8d9e99e0','',1,0,1,1,NULL,0),(1957,5,2,-1,1157175593,'0cb7674b','Joeogu',1,0,1,0,NULL,0),(1958,107,3,-1,1157176240,'41afc22b','Kadensot',1,0,1,0,NULL,0),(1959,37,1,38,1157190160,'5870bc26','',1,0,1,1,NULL,0),(1960,53,1,-1,1157191033,'cc0b118f','dd9@classnet.pl',1,0,1,0,NULL,0),(1961,11,4,-1,1157191089,'5275d307','xp0@pisem.net',1,0,1,0,NULL,0),(1962,15,1,-1,1157191316,'d4964b23','4ldeztryl@classnet.pl',1,0,1,0,NULL,0),(1963,37,1,-1,1157191567,'d4964b23','azkpkw8yodcx5@tech.tv',1,0,1,0,NULL,0),(1964,9,3,-1,1157191618,'d4964b23','n0qjz0q@see.to',1,0,1,0,NULL,0),(1965,15,1,-1,1157191715,'d4964b23','vaugduqvr4t@come.to',1,0,1,0,NULL,0),(1983,4,2,-1,1157195335,'d4964b23','bhtkq@see.it',1,0,1,0,NULL,0),(1967,57,3,-1,1157192107,'d4964b23','vj3@does.it',1,0,1,0,NULL,0),(1968,11,4,-1,1157192150,'d4964b23','w7i@classnet.pl',1,0,1,0,NULL,0),(1969,14,1,-1,1157192572,'ca631b7a','tfnlm2@hotmail.com',1,0,1,0,NULL,0),(1986,39,1,-1,1157195558,'d4964b23','owxalz@yahoo.com',1,0,1,0,NULL,0),(1971,57,3,-1,1157192877,'d4964b23','06c7td4zwu@home.com',1,0,1,0,NULL,0),(1987,42,3,-1,1157195808,'d52a0216','4nowq61ep@aol.com',1,0,1,0,NULL,0),(1973,30,1,-1,1157193087,'db88f94f','z@bigfoot.com',1,0,1,0,NULL,0),(1974,53,1,-1,1157193204,'d4964b23','fnx@aol.com',1,0,1,0,NULL,0),(1975,57,3,-1,1157193233,'cb710d03','c9yqyn0h@aol.com',1,0,1,0,NULL,0),(1976,11,4,-1,1157193259,'d4964b23','13rqf@classnet.pl',1,0,1,0,NULL,0),(1977,10,3,-1,1157193283,'d4964b23','sswkw69sh4@mail.me',1,0,1,0,NULL,0),(1988,2,2,-1,1157196106,'cba2593d','ov@see.to',1,0,1,0,NULL,0),(1979,39,1,-1,1157193842,'d4964b23','ovh6apvqe1rnq0@classnet.p',1,0,1,0,NULL,0),(1989,37,1,-1,1157196588,'d4964b23','q404izw@work.com',1,0,1,0,NULL,0),(1981,2,2,-1,1157194176,'d4964b23','41yhi89p@aol.com',1,0,1,0,NULL,0),(1982,2,2,-1,1157195057,'3af7026c','hhtk8@freemail.com',1,0,1,0,NULL,0),(1991,57,3,-1,1157196970,'ca650655','1ffp0ysreh8@aol.com',1,0,1,0,NULL,0),(1992,38,1,-1,1157196980,'d4964b23','pfeixv6a9b39cc@rocketmail',1,0,1,0,NULL,0),(1993,39,1,-1,1157197050,'d4964b23','teyx1fq09d2@does.it',1,0,1,0,NULL,0),(1994,9,3,-1,1157197586,'d4964b23','1hy@see.it',1,0,1,0,NULL,0),(1995,31,1,-1,1157198054,'d4964b23','7kdd4j82yjp8cx2@yahoo.com',1,0,1,0,NULL,0),(1996,38,1,-1,1157209777,'3af7026c','kxzn4c50onzh45@freemail.c',1,0,1,0,NULL,0),(1997,2,2,-1,1157210166,'d4964b23','t59ouahrj325k44@mail.com',1,0,1,0,NULL,0),(1998,17,1,-1,1157210252,'d4964b23','ypql5oe25fwn3@pisem.net',1,0,1,0,NULL,0),(1999,11,4,-1,1157210360,'d4964b23','97r2sfh@mail.com',1,0,1,0,NULL,0),(2000,37,1,-1,1157210460,'d4964b23','qmeu@arrivo.br',1,0,1,0,NULL,0),(2001,15,1,-1,1157210893,'d4964b23','et369ni@yahoo.com',1,0,1,0,NULL,0),(2024,89,1,26,1157234773,'8d9e99e0','',1,0,1,1,NULL,0),(2003,38,1,-1,1157211140,'d4964b23','sr38zqnqs@see.it',1,0,1,0,NULL,0),(2004,40,1,-1,1157211160,'d4964b23','334m@mail.com',1,0,1,0,NULL,0),(2005,57,3,-1,1157212336,'d4964b23','7@mail.com',1,0,1,0,NULL,0),(2006,38,1,-1,1157212366,'d4964b23','emncj1d5ss5lt@usmail.com',1,0,1,0,NULL,0),(2007,35,1,-1,1157212574,'cb710d03','tgo2qiqybuy@mail.nu',1,0,1,0,NULL,0),(2008,27,1,-1,1157212641,'d4964b23','alz4i7dmbu3@see.it',1,0,1,0,NULL,0),(2009,57,3,-1,1157212775,'d4964b23','y2@pisem.net',1,0,1,0,NULL,0),(2010,11,4,-1,1157213012,'d4964b23','ndno4zzm7g3q@rocketmail.c',1,0,1,0,NULL,0),(2011,30,1,-1,1157213306,'cb710d03','i6zw4hq0gs8tbr@home.com',1,0,1,0,NULL,0),(2012,39,1,-1,1157213878,'cb710d03','1y21p0bh@mail.me',1,0,1,0,NULL,0),(2013,35,1,-1,1157214005,'d4964b23','l75aesqfk5v@hotmail.com',1,0,1,0,NULL,0),(2014,57,3,-1,1157214645,'d4964b23','5y9n89pp@does.it',1,0,1,0,NULL,0),(2015,4,2,-1,1157215417,'3d9b1675','wywfj3ltw@does.it',1,0,1,0,NULL,0),(2016,57,3,-1,1157216391,'d4964b23','mp249zd0xeg@come.to',1,0,1,0,NULL,0),(2017,2,2,-1,1157216497,'d4964b23','bvvx0052o1ljp@mail.com',1,0,1,0,NULL,0),(2018,58,3,-1,1157216522,'d4964b23','2@freemail.com',1,0,1,0,NULL,0),(2019,57,3,-1,1157217422,'d4964b23','et@work.com',1,0,1,0,NULL,0),(2020,39,1,-1,1157217787,'d4964b23','3okzjz59ukq4t6o@see.to',1,0,1,0,NULL,0),(2021,39,1,-1,1157217820,'5033ea36','3okzjz59ukq4t6o@see.to',1,0,1,0,NULL,0),(2025,54,3,26,1157234854,'8d9e99e0','',1,0,1,1,NULL,0),(2023,42,3,-1,1157220208,'d4964b23','a86@does.it',1,0,1,0,NULL,0),(2028,42,3,-1,1157244795,'3af7026c','rht39hj1dcuwq@mail.nu',1,0,1,0,NULL,0),(2641,107,3,-1,1157757781,'d19fe55d','Kalebnge',1,0,1,0,NULL,0),(2030,2,2,-1,1157245081,'cb710d03','0211hu@rocketmail.com',1,0,1,0,NULL,0),(2031,38,1,-1,1157245350,'d4964b23','x@bigfoot.com',1,0,1,0,NULL,0),(2032,55,3,-1,1157245542,'d4964b23','dmu1l4jdivhlmza@mail.ru',1,0,1,0,NULL,0),(2033,57,3,-1,1157246113,'cb710d03','4@freemail.com',1,0,1,0,NULL,0),(2034,11,4,-1,1157246128,'d4964b23','fmm@see.it',1,0,1,0,NULL,0),(2035,35,1,-1,1157246363,'d4964b23','mv4jehp0a3oisvx@see.to',1,0,1,0,NULL,0),(2036,4,2,-1,1157246476,'d4964b23','75pyzv@work.com',1,0,1,0,NULL,0),(2037,53,1,-1,1157246657,'cb710d03','27an177o7o@come.to',1,0,1,0,NULL,0),(2038,57,3,-1,1157246712,'d4964b23','29@mail.nu',1,0,1,0,NULL,0),(2039,5,2,-1,1157246842,'181fcbdf','Debrasdz',1,0,1,0,NULL,0),(2040,39,1,-1,1157246868,'d4964b23','f3lrg@aol.com',1,0,1,0,NULL,0),(2640,5,2,-1,1157756825,'52ff9513','Scottsqt',1,0,1,0,NULL,0),(2042,35,1,-1,1157247437,'d4964b23','9ikvd97g6g@freemail.com',1,0,1,0,NULL,0),(2043,53,1,-1,1157247527,'d4964b23','2sp9j48o@mail.com',1,0,1,0,NULL,0),(2044,39,1,-1,1157247559,'cb710d03','mypy@mail.nu',1,0,1,0,NULL,0),(2045,57,3,-1,1157247597,'3dbdf0c4','3@see.to',1,0,1,0,NULL,0),(2046,2,2,-1,1157247601,'cb710d03','c4y@bigfoot.com',1,0,1,0,NULL,0),(2048,57,3,-1,1157247858,'d4964b23','ofi96ix2fy8m4@mail.ru',1,0,1,0,NULL,0),(2049,11,4,-1,1157248013,'d4964b23','if6g@mail.ru',1,0,1,0,NULL,0),(2050,107,3,-1,1157248040,'4831aec2','Henrycgo',1,0,1,0,NULL,0),(2051,2,2,-1,1157248131,'c1e3111e','qo3r41yr24vfl@mail.com',1,0,1,0,NULL,0),(2052,37,1,-1,1157248368,'d4964b23','id6dm8r@mail.com',1,0,1,0,NULL,0),(2053,4,2,-1,1157248604,'d4964b23','e6ichpqbbqzmm1q@does.it',1,0,1,0,NULL,0),(2054,15,1,-1,1157248876,'d4964b23','1@does.it',1,0,1,0,NULL,0),(2055,39,1,-1,1157248931,'d4964b23','3h15hopadu7yj@arrivo.br',1,0,1,0,NULL,0),(2056,57,3,-1,1157249423,'d4964b23','ix@aol.com',1,0,1,0,NULL,0),(2057,58,3,-1,1157249462,'d4964b23','x@freemail.com',1,0,1,0,NULL,0),(2058,57,3,-1,1157249834,'d4964b23','jfp0@work.com',1,0,1,0,NULL,0),(2059,39,1,-1,1157250598,'d4964b23','fls7@bigfoot.com',1,0,1,0,NULL,0),(2060,40,1,-1,1157250675,'cb710d03','kqqmivr@mail.nu',1,0,1,0,NULL,0),(2061,55,3,-1,1157251141,'3bbbda11','h@come.to',1,0,1,0,NULL,0),(2062,29,3,-1,1157251156,'cb710d03','peh@classnet.pl',1,0,1,0,NULL,0),(2063,54,3,-1,1157251183,'deb86696','c1fcw@yahoo.com',1,0,1,0,NULL,0),(2064,42,3,-1,1157251892,'cb710d03','86sofeu7ifs3h@usmail.com',1,0,1,0,NULL,0),(2065,5,2,-1,1157269027,'4571a453','Alexasf',1,0,1,0,NULL,0),(2066,107,3,-1,1157270066,'50484aef','Tammydtm',1,0,1,0,NULL,0),(2067,53,1,-1,1157272925,'dc854c41','z2t@see.to',1,0,1,0,NULL,0),(2068,37,1,-1,1157272939,'d4964b23','hmvv04@see.to',1,0,1,0,NULL,0),(2069,53,1,-1,1157272943,'1804ae20','z2t@see.to',1,0,1,0,NULL,0),(2070,9,3,-1,1157273115,'cb710d03','5aggsd4@arrivo.br',1,0,1,0,NULL,0),(2071,42,3,-1,1157273295,'d4964b23','9mgaeo@classnet.pl',1,0,1,0,NULL,0),(2072,36,3,-1,1157273436,'3dbdf0c4','cydjvrw7jb6zth@bigfoot.co',1,0,1,0,NULL,0),(2073,40,1,-1,1157273529,'509808d2','apoc4p@rocketmail.com',1,0,1,0,NULL,0),(2074,40,1,-1,1157273692,'d4964b23','4t88840c1@classnet.pl',1,0,1,0,NULL,0),(2075,57,3,-1,1157274451,'cb710d03','r2kxlsj5mtbktsh@usmail.co',1,0,1,0,NULL,0),(2076,35,1,-1,1157274573,'cb710d03','79@arrivo.br',1,0,1,0,NULL,0),(2077,11,4,-1,1157274588,'d4964b23','qw@usmail.com',1,0,1,0,NULL,0),(2078,10,3,-1,1157274920,'3dbdf0c4','dxlrh73igan4c@home.com',1,0,1,0,NULL,0),(2079,27,1,-1,1157274945,'d4964b23','n0d@does.it',1,0,1,0,NULL,0),(2080,39,1,-1,1157275017,'d4964b23','gc6bwls@does.it',1,0,1,0,NULL,0),(2081,30,1,-1,1157275107,'d4964b23','yay096wo@mail.ru',1,0,1,0,NULL,0),(2082,57,3,-1,1157275779,'ca650655','y58rcmw5o5gkv9@pisem.net',1,0,1,0,NULL,0),(2083,39,1,-1,1157275904,'3d22a4ee','lpr518b@home.com',1,0,1,0,NULL,0),(2084,35,1,-1,1157275923,'cba2593d','hl1a8ms4ui52@hotmail.com',1,0,1,0,NULL,0),(2085,2,2,-1,1157276091,'cb710d03','2xg@see.it',1,0,1,0,NULL,0),(2086,53,1,-1,1157276211,'c85f216e','2om7mfeeabm8d@hotmail.com',1,0,1,0,NULL,0),(2087,45,1,-1,1157276681,'3dbdf0c4','bdvwu@see.it',1,0,1,0,NULL,0),(2088,2,2,-1,1157276709,'5275d307','k1bohd@does.it',1,0,1,0,NULL,0),(2089,38,1,-1,1157276716,'cb710d03','7nmog2wlsddd@see.it',1,0,1,0,NULL,0),(2090,2,2,-1,1157276736,'cb710d03','k1bohd@does.it',1,0,1,0,NULL,0),(2091,45,1,-1,1157276948,'d4964b23','0xwnwgrlzp5g0t@rocketmail',1,0,1,0,NULL,0),(2092,37,1,-1,1157277027,'cb710d03','o02ctepux1ra2@tech.tv',1,0,1,0,NULL,0),(2093,2,2,-1,1157277510,'deb86696','8@home.com',1,0,1,0,NULL,0),(2094,15,1,-1,1157277623,'cb710d03','2wgd4dm@arrivo.br',1,0,1,0,NULL,0),(2095,30,1,-1,1157277626,'cfd26081','x6xsg4pbooy@work.com',1,0,1,0,NULL,0),(2096,9,3,-1,1157277922,'1804ae20','u@usmail.com',1,0,1,0,NULL,0),(2097,2,2,-1,1157278289,'cb710d03','8g@classnet.pl',1,0,1,0,NULL,0),(2098,57,3,-1,1157278614,'dab36901','30tm8pmvh@classnet.pl',1,0,1,0,NULL,0),(2099,37,1,-1,1157278949,'cb710d03','t7cuvyeekp8ta@freemail.co',1,0,1,0,NULL,0),(2100,9,3,-1,1157279758,'ca479868','4h@freemail.com',1,0,1,0,NULL,0),(2639,9,3,-1,1157745781,'cb710d05','aynmjbnh9hcpw@rocketmail.',1,0,1,0,NULL,0),(2102,31,1,-1,1157280178,'db88f94f','9rkrrmoe@come.to',1,0,1,0,NULL,0),(2103,53,1,-1,1157280468,'ce5282d2','oypzlc00152icw@see.to',1,0,1,0,NULL,0),(2104,138,1,47,1157287415,'54d91a14','',1,0,1,1,NULL,0),(2105,138,1,9,1157287557,'56d86b61','',1,0,1,1,NULL,0),(2106,37,1,-1,1157296467,'cb710d03','8kmn55e@mail.nu',1,0,1,0,NULL,0),(2107,9,3,-1,1157296692,'d24b6a71','18knr8jvrghjvw8@see.it',1,0,1,0,NULL,0),(2108,15,1,-1,1157296825,'cb710d03','bj3ex2jv5rnc@pisem.net',1,0,1,0,NULL,0),(2109,9,3,-1,1157297196,'515e8102','qv@work.com',1,0,1,0,NULL,0),(2110,55,3,-1,1157297440,'cb710d03','gprkvrnet@freemail.com',1,0,1,0,NULL,0),(2111,38,1,-1,1157297461,'3ee99211','9cs62p2pkt@bigfoot.com',1,0,1,0,NULL,0),(2112,14,1,-1,1157298069,'cb710d03','p823@bigfoot.com',1,0,1,0,NULL,0),(2113,35,1,-1,1157298138,'cb710d03','y1b3@mail.nu',1,0,1,0,NULL,0),(2114,57,3,-1,1157298260,'cb710d03','utlwo3js4hd@mail.ru',1,0,1,0,NULL,0),(2115,11,4,-1,1157298485,'d4964b23','fsc53drhgv@mail.ru',1,0,1,0,NULL,0),(2116,30,1,-1,1157298697,'db20ca48','33c93s4mjs2m7@mail.ru',1,0,1,0,NULL,0),(2638,55,3,-1,1157745634,'cc0b118f','1a@mail.me',1,0,1,0,NULL,0),(2118,52,3,-1,1157298813,'d3dbe4e2','fcnyt7wrzh5u0my@yahoo.com',1,0,1,0,NULL,0),(2119,57,3,-1,1157298996,'d4964b23','s8m@yahoo.com',1,0,1,0,NULL,0),(2120,53,1,-1,1157299071,'d4964b23','9z955zw9ai@usmail.com',1,0,1,0,NULL,0),(2637,54,3,-1,1157745428,'d4e35d14','vx3ezpnrzxrlu@yahoo.com',1,0,1,0,NULL,0),(2122,10,3,-1,1157299945,'cb710d03','7wh9v8gp@classnet.pl',1,0,1,0,NULL,0),(2123,9,3,-1,1157299950,'db88f94f','lrpcau35kcl@mail.com',1,0,1,0,NULL,0),(2124,138,1,38,1157300512,'5870bc26','',1,0,1,1,NULL,0),(2125,11,4,-1,1157300694,'d4964b23','jq72yyqxtlas45a@mail.nu',1,0,1,0,NULL,0),(2126,38,1,-1,1157300753,'d4964b23','i4shdj4wqo743c8@home.com',1,0,1,0,NULL,0),(2127,45,1,-1,1157300942,'cb710d03','fu7@usmail.com',1,0,1,0,NULL,0),(2128,15,1,-1,1157301338,'3dbdf0c4','p8yrr1vzrw@mail.com',1,0,1,0,NULL,0),(2129,39,1,-1,1157301593,'d4964b23','uitkbn3kfi2a3sh@classnet.',1,0,1,0,NULL,0),(2130,57,3,-1,1157301889,'cb710d03','jzrhyfifvahu7@mail.me',1,0,1,0,NULL,0),(2131,138,1,9,1157302244,'56d86b61','',1,0,1,1,NULL,0),(2132,37,1,-1,1157302806,'d4964b23','ryzcwx4@freemail.com',1,0,1,0,NULL,0),(2134,19,1,-1,1157303117,'cb710d03','m1@pisem.net',1,0,1,0,NULL,0),(2135,55,3,-1,1157304074,'d4964b23','wb156vr3nw8@yahoo.com',1,0,1,0,NULL,0),(2136,29,3,-1,1157304469,'cb710d03','il50r@aol.com',1,0,1,0,NULL,0),(2137,53,1,-1,1157304580,'d4964b23','5z6hd9abhq@bigfoot.com',1,0,1,0,NULL,0),(2138,11,4,-1,1157336136,'505fa07f','Avril',1,0,1,0,NULL,0),(2139,140,1,-1,1157344140,'c274c30b','ResrapMan',1,0,1,0,NULL,0),(2140,38,1,-1,1157346207,'ca650655','cfvmfrg@yahoo.com',1,0,1,0,NULL,0),(2141,17,1,-1,1157346764,'ca650655','6@home.com',1,0,1,0,NULL,0),(2142,53,1,-1,1157346804,'3ab405ac','tx7m@work.com',1,0,1,0,NULL,0),(2143,2,2,-1,1157346861,'ca650655','v@yahoo.com',1,0,1,0,NULL,0),(2144,9,3,-1,1157347031,'dd740e62','729qo5mkf@mail.ru',1,0,1,0,NULL,0),(2145,11,4,-1,1157347040,'45d3198b','216q@come.to',1,0,1,0,NULL,0),(2146,11,4,-1,1157347081,'d33cab03','216q@come.to',1,0,1,0,NULL,0),(2636,57,3,-1,1157744512,'c896be6d','t23j05dwdh5@yahoo.com',1,0,1,0,NULL,0),(2148,40,1,-1,1157347734,'d4964b23','eb34zk4izxpa@tech.tv',1,0,1,0,NULL,0),(2149,55,3,-1,1157348014,'3dbdf0c4','35r@mail.ru',1,0,1,0,NULL,0),(2151,14,1,-1,1157348428,'ca650655','az8@freemail.com',1,0,1,0,NULL,0),(2152,11,4,-1,1157348684,'ca650655','riueb3@does.it',1,0,1,0,NULL,0),(2153,57,3,-1,1157348712,'45d3198b','4lio@usmail.com',1,0,1,0,NULL,0),(2154,27,1,-1,1157348785,'5033ea36','rp@come.to',1,0,1,0,NULL,0),(2155,10,3,-1,1157348835,'cba2593d','p4s@bigfoot.com',1,0,1,0,NULL,0),(2156,30,1,-1,1157349041,'d272ae60','rekc8rnq0@mail.nu',1,0,1,0,NULL,0),(2157,53,1,-1,1157349251,'d4964b23','xiq@work.com',1,0,1,0,NULL,0),(2158,30,1,-1,1157349362,'d4964b23','e7zwq@bigfoot.com',1,0,1,0,NULL,0),(2159,39,1,-1,1157349477,'d3e4ff4c','z5wfaitup7tv@work.com',1,0,1,0,NULL,0),(2635,57,3,-1,1157743438,'cb25ade1','y3xk15g3iuwnilb@mail.nu',1,0,1,0,NULL,0),(2161,35,1,-1,1157350159,'c8480de2','hzdk6yq7o@tech.tv',1,0,1,0,NULL,0),(2162,2,2,-1,1157350320,'d3e4ff4c','ipr9ek86fnddi2@tech.tv',1,0,1,0,NULL,0),(2163,57,3,-1,1157350676,'d4964b23','vmladk8@bigfoot.com',1,0,1,0,NULL,0),(2164,2,2,-1,1157351324,'cb710d03','cheueo@hotmail.com',1,0,1,0,NULL,0),(2165,2,2,-1,1157351764,'d4964b23','y0520wdlvwre@see.to',1,0,1,0,NULL,0),(2166,39,1,-1,1157351844,'dd740e62','vwvy6fm7e@does.it',1,0,1,0,NULL,0),(2167,57,3,-1,1157353049,'dd740e62','jeya6@arrivo.br',1,0,1,0,NULL,0),(2168,55,3,-1,1157354214,'cba2593d','y@work.com',1,0,1,0,NULL,0),(2634,58,3,-1,1157743369,'cb710d04','k@arrivo.br',1,0,1,0,NULL,0),(2170,53,1,-1,1157354699,'cb710d03','j8@home.com',1,0,1,0,NULL,0),(2171,138,1,38,1157360785,'5870bc26','',1,0,1,1,NULL,0),(2172,138,1,6,1157364922,'3ed1c0b4','',1,0,1,1,NULL,0),(2173,138,1,38,1157370357,'5870bc26','',1,0,1,1,NULL,0),(2174,38,1,-1,1157373036,'cb710d03','nxcuwql6fwq@see.to',1,0,1,0,NULL,0),(2175,2,2,-1,1157373207,'cb710d05','0j87wh895f23o@rocketmail.',1,0,1,0,NULL,0),(2176,9,3,-1,1157373420,'db8e2852','3fqt2za@tech.tv',1,0,1,0,NULL,0),(2177,15,1,-1,1157373678,'cb710d05','6e2itjxufzvt5@hotmail.com',1,0,1,0,NULL,0),(2178,9,3,-1,1157373920,'cb710d05','jyt1epjsu@come.to',1,0,1,0,NULL,0),(2179,2,2,-1,1157374284,'cb710d05','06i1e6ak01c26i@work.com',1,0,1,0,NULL,0),(2633,42,3,-1,1157743106,'d5a0d9d6','vi@see.it',1,0,1,0,NULL,0),(2181,4,2,-1,1157375171,'c8480de2','q3dauto6g932su@mail.nu',1,0,1,0,NULL,0),(2182,11,4,-1,1157375217,'d4964b23','bqz66peaup@see.it',1,0,1,0,NULL,0),(2183,30,1,-1,1157375283,'ca650655','kl3ebh@rocketmail.com',1,0,1,0,NULL,0),(2184,53,1,-1,1157375606,'cb710d03','rl0d@arrivo.br',1,0,1,0,NULL,0),(2185,10,3,-1,1157375643,'d4964b23','5jfqks0by8li0j@pisem.net',1,0,1,0,NULL,0),(2187,39,1,-1,1157376502,'cb710d05','4vnlmzrt6wywl@yahoo.com',1,0,1,0,NULL,0),(2188,35,1,-1,1157376613,'cb710d05','bajdq1@see.it',1,0,1,0,NULL,0),(2189,19,1,-1,1157376676,'ca650655','ar@work.com',1,0,1,0,NULL,0),(2190,53,1,-1,1157376709,'da4b504d','3g7sgybyb456w9j@bigfoot.c',1,0,1,0,NULL,0),(2191,5,2,-1,1157376818,'cb710d05','3gbfmn1znbenyzt@mail.nu',1,0,1,0,NULL,0),(2192,38,1,-1,1157377492,'c8480de2','q7b7k5t74jdz2v@work.com',1,0,1,0,NULL,0),(2193,45,1,-1,1157377569,'cb710d05','gf@work.com',1,0,1,0,NULL,0),(2194,30,1,-1,1157378106,'c3fb0fbe','xpb5ca@mail.me',1,0,1,0,NULL,0),(2195,2,2,-1,1157378336,'d52a0217','fxx9dhoeiiq700e@mail.ru',1,0,1,0,NULL,0),(2196,53,1,-1,1157378403,'c3fb0fbe','bm8@mail.nu',1,0,1,0,NULL,0),(2642,53,1,-1,1157757822,'ca650655','h8zdbtc@pisem.net',1,0,1,0,NULL,0),(2198,57,3,-1,1157379845,'d5ca7c9c','135es@aol.com',1,0,1,0,NULL,0),(2199,11,4,118,1157384750,'4262c028','',1,0,1,1,NULL,0),(2200,9,3,-1,1157398460,'cb710d05','i@see.to',1,0,1,0,NULL,0),(2201,2,2,-1,1157398613,'cb710d05','ta9@work.com',1,0,1,0,NULL,0),(2202,36,3,-1,1157398643,'d4964b23','7@yahoo.com',1,0,1,0,NULL,0),(2203,11,4,-1,1157398717,'cb710d05','zq63shj1@home.com',1,0,1,0,NULL,0),(2204,42,3,-1,1157398874,'d4964b23','6q40g1g8hk3lpln@classnet.',1,0,1,0,NULL,0),(2632,4,2,-1,1157743067,'d45c0701','aqq027mjnynxs@work.com',1,0,1,0,NULL,0),(2206,38,1,-1,1157399717,'cb710d05','n@usmail.com',1,0,1,0,NULL,0),(2631,15,1,-1,1157743017,'d5a0d9d6','h3@mail.com',1,0,1,0,NULL,0),(2208,52,3,-1,1157400842,'d4964b23','ahj6btxv4i3ba@come.to',1,0,1,0,NULL,0),(2209,35,1,-1,1157401595,'cb710d05','ilxk1wji1wrgq4@tech.tv',1,0,1,0,NULL,0),(2210,53,1,-1,1157401821,'cb710d05','1v1ehbyv@mail.me',1,0,1,0,NULL,0),(2211,5,2,-1,1157401875,'cb710d05','ww2@arrivo.br',1,0,1,0,NULL,0),(2212,57,3,-1,1157402022,'cb710d05','4q@see.it',1,0,1,0,NULL,0),(2213,45,1,-1,1157402306,'d4964b23','k@mail.com',1,0,1,0,NULL,0),(2214,4,2,-1,1157402946,'cb710d05','13@usmail.com',1,0,1,0,NULL,0),(2215,42,3,-1,1157403115,'cb710d05','g@aol.com',1,0,1,0,NULL,0),(2216,30,1,-1,1157403219,'cb710d05','wkdbod@see.it',1,0,1,0,NULL,0),(2217,53,1,-1,1157403666,'cb710d05','e@mail.com',1,0,1,0,NULL,0),(2218,2,2,-1,1157403881,'cb710d05','oweec3ew1t@mail.me',1,0,1,0,NULL,0),(2219,57,3,-1,1157404041,'cb710d05','pyvh35gcbjv0u9p@mail.ru',1,0,1,0,NULL,0),(2220,37,1,-1,1157404313,'d4964b23','ari3c2ngqz7x@mail.me',1,0,1,0,NULL,0),(2221,38,1,-1,1157404371,'cb710d05','qg4pqcl6p7@mail.com',1,0,1,0,NULL,0),(2222,57,3,-1,1157404858,'d4964b23','3nh4q@rocketmail.com',1,0,1,0,NULL,0),(2223,55,3,-1,1157405509,'d4964b23','ihkuo0s9du@come.to',1,0,1,0,NULL,0),(2224,53,1,-1,1157405874,'cb710d05','0phsb1biwomgbl@home.com',1,0,1,0,NULL,0),(2225,42,3,-1,1157406225,'cb710d05','2iutvaa91inog@pisem.net',1,0,1,0,NULL,0),(2226,142,1,-1,1157413931,'c274c328','Snigavik',1,0,1,0,NULL,0),(2227,11,4,-1,1157415208,'cb710d05','u8l@pisem.net',1,0,1,0,NULL,0),(2228,36,3,-1,1157415405,'cb710d05','4irwkgse@bigfoot.com',1,0,1,0,NULL,0),(2229,42,3,-1,1157415555,'d426824b','6lqluoig@arrivo.br',1,0,1,0,NULL,0),(2230,9,3,-1,1157415572,'cb710d05','m@hotmail.com',1,0,1,0,NULL,0),(2231,2,2,-1,1157415771,'cb710d05','5iwma4zkhpy@classnet.pl',1,0,1,0,NULL,0),(2232,40,1,-1,1157415924,'cb710d05','zu9houwobyjy3@arrivo.br',1,0,1,0,NULL,0),(2630,57,3,-1,1157742001,'ca650655','kry@freemail.com',1,0,1,0,NULL,0),(2234,11,4,-1,1157416358,'cb710d05','guf36a@mail.me',1,0,1,0,NULL,0),(2235,27,1,-1,1157416706,'c1e3111e','radbqc8081kx1@tech.tv',1,0,1,0,NULL,0),(2236,57,3,-1,1157416772,'dd8f2a91','bt@mail.nu',1,0,1,0,NULL,0),(2238,30,1,-1,1157417050,'cb710d05','kkrwb0d7uz@work.com',1,0,1,0,NULL,0),(2239,30,1,-1,1157417221,'d4964b23','j08w54676oy@home.com',1,0,1,0,NULL,0),(2240,57,3,-1,1157417238,'d4964b23','yxcmdy0f@aol.com',1,0,1,0,NULL,0),(2241,39,1,-1,1157417289,'cb710d05','k318j0xsc9@usmail.com',1,0,1,0,NULL,0),(2242,39,1,-1,1157417411,'d5ca7c9c','ixmfuvchs@arrivo.br',1,0,1,0,NULL,0),(2243,10,3,-1,1157417965,'cb710d05','py@does.it',1,0,1,0,NULL,0),(2629,39,1,-1,1157741331,'42c4f6bb','bwbcblsw@mail.com',1,0,1,0,NULL,0),(2245,2,2,-1,1157418537,'db5e6cea','jnb6t7hjbxb3@mail.ru',1,0,1,0,NULL,0),(2246,37,1,-1,1157418766,'cb710d05','aaghhuemgeowwsq@usmail.co',1,0,1,0,NULL,0),(2247,15,1,-1,1157418972,'d5f0f9da','wiuash@bigfoot.com',1,0,1,0,NULL,0),(2248,4,2,-1,1157418991,'d4964b23','wfs@pisem.net',1,0,1,0,NULL,0),(2249,10,3,-1,1157419078,'cb710d03','ajs67d0904zgwrk@hotmail.c',1,0,1,0,NULL,0),(2250,2,2,-1,1157419312,'d4964b23','frrd9h3cuv4r10@see.to',1,0,1,0,NULL,0),(2251,57,3,-1,1157419619,'cb710d05','jix4p@does.it',1,0,1,0,NULL,0),(2252,2,2,-1,1157420005,'d184e663','i2o9de@come.to',1,0,1,0,NULL,0),(2253,37,1,-1,1157420155,'cb710d05','q10ylv@mail.nu',1,0,1,0,NULL,0),(2254,57,3,-1,1157420184,'cb710d05','d7z6e1o3x@work.com',1,0,1,0,NULL,0),(2255,38,1,-1,1157420520,'cb710d05','lost94n8w@see.it',1,0,1,0,NULL,0),(2256,53,1,-1,1157421743,'cb710d03','45obxcncgurt8i@hotmail.co',1,0,1,0,NULL,0),(2258,11,4,-1,1157423188,'55ff71b9','ajgfckEYRM',1,0,1,0,NULL,0),(2259,5,2,-1,1157442886,'519bb4b8','Jesushxd',1,0,1,0,NULL,0),(2260,107,3,-1,1157443514,'973271d1','Jeanpkg',1,0,1,0,NULL,0),(2261,42,3,-1,1157445694,'d3a23ea1','tk3@see.it',1,0,1,0,NULL,0),(2628,11,4,-1,1157740311,'da4b5725','e5v3pai8hr1y@see.it',1,0,1,0,NULL,0),(2263,57,3,-1,1157446687,'d4964b23','7tt1zxwfbv@hotmail.com',1,0,1,0,NULL,0),(2264,11,4,-1,1157446949,'55ff71b3','zhobDdVZnE',1,0,1,0,NULL,0),(2265,4,2,-1,1157447179,'ce5282d2','50p5zyth5a23uaq@home.com',1,0,1,0,NULL,0),(2627,3,2,-1,1157740231,'44a7565b','xskigmt8gxxa@rocketmail.c',1,0,1,0,NULL,0),(2268,10,3,-1,1157447973,'cb710d03','is6os83etq@mail.nu',1,0,1,0,NULL,0),(2269,30,1,-1,1157448001,'cb710d05','sq353jzymmi@see.it',1,0,1,0,NULL,0),(2270,30,1,-1,1157448111,'cb710d03','az8s@pisem.net',1,0,1,0,NULL,0),(2271,30,1,-1,1157448149,'d3188932','sq353jzymmi@see.it',1,0,1,0,NULL,0),(2272,39,1,-1,1157448413,'dd924be8','ps04hy4vgz@freemail.com',1,0,1,0,NULL,0),(2273,19,1,-1,1157448558,'cba2593d','auz1ovpculz8@see.to',1,0,1,0,NULL,0),(2274,10,3,-1,1157448740,'cb710d03','o0dna3qcw42w64d@mail.me',1,0,1,0,NULL,0),(2275,57,3,-1,1157449160,'cb710d05','fad81ny69ry8@usmail.com',1,0,1,0,NULL,0),(2276,5,2,-1,1157449234,'cb710d03','x5f69kg@work.com',1,0,1,0,NULL,0),(2277,45,1,-1,1157449550,'da4b5725','kfg9o2wg86ophld@hotmail.c',1,0,1,0,NULL,0),(2278,17,1,-1,1157449654,'dc53191a','kop@home.com',1,0,1,0,NULL,0),(2279,2,2,-1,1157451382,'cb710d05','y1myb@arrivo.br',1,0,1,0,NULL,0),(2280,57,3,-1,1157451846,'cb710d05','z7t4t@does.it',1,0,1,0,NULL,0),(2281,38,1,-1,1157451961,'cb710d05','47lryrcc1i4j6y@work.com',1,0,1,0,NULL,0),(2282,39,1,-1,1157452204,'dce49d14','h5z@mail.com',1,0,1,0,NULL,0),(2283,40,1,-1,1157452330,'c36e513b','4ooaivjfyjosvg@mail.me',1,0,1,0,NULL,0),(2284,40,1,-1,1157452651,'dce49d14','8m@classnet.pl',1,0,1,0,NULL,0),(2285,55,3,-1,1157452843,'dc53191a','og2@pisem.net',1,0,1,0,NULL,0),(2286,54,3,-1,1157453003,'cb710d03','i@aol.com',1,0,1,0,NULL,0),(2287,29,3,-1,1157453430,'cb710d04','i@see.it',1,0,1,0,NULL,0),(2288,5,2,-1,1157461879,'535707ba','Stevewnb',1,0,1,0,NULL,0),(2289,107,3,-1,1157462691,'52073ed0','Reneegsy',1,0,1,0,NULL,0),(2290,38,1,-1,1157467519,'d24b6a71','8ae7iyocextx37@freemail.c',1,0,1,0,NULL,0),(2291,17,1,-1,1157468226,'ca650655','z5n1iyh@mail.ru',1,0,1,0,NULL,0),(2292,37,1,-1,1157468269,'cb710d03','j@come.to',1,0,1,0,NULL,0),(2293,15,1,-1,1157468611,'d24b6a71','l8wp70s82vg6i@tech.tv',1,0,1,0,NULL,0),(2294,36,3,-1,1157468732,'cb710d03','wb8p1gpwd79lm@mail.nu',1,0,1,0,NULL,0),(2295,15,1,-1,1157468864,'cb710d05','1cqm@aol.com',1,0,1,0,NULL,0),(2296,42,3,-1,1157468914,'3af7026c','6pd826tbf@mail.nu',1,0,1,0,NULL,0),(2626,35,1,-1,1157739766,'cb710d03','2prmj18okxjorf2@pisem.net',1,0,1,0,NULL,0),(2625,2,2,-1,1157738621,'cc0b118f','a@mail.nu',1,0,1,0,NULL,0),(2299,138,1,6,1157470076,'3ed1c0b4','',1,0,1,1,NULL,0),(2300,27,1,-1,1157470448,'d4964b23','d@aol.com',1,0,1,0,NULL,0),(2301,53,1,-1,1157470759,'cb710d03','prv4jxvr@pisem.net',1,0,1,0,NULL,0),(2302,39,1,-1,1157471098,'cb710d05','ecw2@usmail.com',1,0,1,0,NULL,0),(2624,9,3,-1,1157738299,'45c6ef6f','69cle@pisem.net',1,0,1,0,NULL,0),(2304,5,2,-1,1157471423,'c85645ca','Wyattnya',1,0,1,0,NULL,0),(2305,19,1,-1,1157471627,'538a9493','kiea2sv53gayr@home.com',1,0,1,0,NULL,0),(2306,5,2,-1,1157471958,'cba2593d','uld7t89dbkont@come.to',1,0,1,0,NULL,0),(2307,26,1,-1,1157471971,'cb710d03','kq55y3si3b7x5@aol.com',1,0,1,0,NULL,0),(2308,2,2,-1,1157472815,'cb710d03','mn75ppep9rgz@classnet.pl',1,0,1,0,NULL,0),(2309,4,2,-1,1157472975,'cb710d05','py8r68wb@freemail.com',1,0,1,0,NULL,0),(2310,45,1,-1,1157473032,'cb710d03','omdib7kk3gsfe@yahoo.com',1,0,1,0,NULL,0),(2311,15,1,-1,1157473539,'cb710d03','9k52sagxuf@home.com',1,0,1,0,NULL,0),(2312,58,3,-1,1157473959,'d4964b23','et@mail.nu',1,0,1,0,NULL,0),(2313,2,2,-1,1157474222,'cb710d05','erql2bq7ih@work.com',1,0,1,0,NULL,0),(2314,19,1,-1,1157475513,'cb710d03','c6k@tech.tv',1,0,1,0,NULL,0),(2315,40,1,-1,1157476012,'cb710d05','uws@tech.tv',1,0,1,0,NULL,0),(2316,31,1,-1,1157476487,'dd9562ad','a@see.to',1,0,1,0,NULL,0),(2623,17,1,-1,1157737486,'dc461bc1','9pn1twd70ezv@mail.nu',1,0,1,0,NULL,0),(2622,53,1,-1,1157733420,'dc56c0de','omiogtc@usmail.com',1,0,1,0,NULL,0),(2319,138,1,38,1157486114,'5870bc26','',1,0,1,1,NULL,0),(2320,143,1,-1,1157488959,'c274c335','BranisAkaF',1,0,1,0,NULL,0),(2321,11,4,-1,1157491243,'55ff71b7','oPlbJDuIML',1,0,1,0,NULL,0),(2322,138,1,26,1157491396,'8d9e99e0','',1,0,1,1,NULL,0),(2323,138,1,26,1157491504,'8d9e99e0','',1,0,1,1,NULL,0),(2324,53,1,-1,1157496235,'d4964b23','ub@yahoo.com',1,0,1,0,NULL,0),(2325,11,4,-1,1157496289,'cb710d05','ulkkn70l@work.com',1,0,1,0,NULL,0),(2326,15,1,-1,1157496924,'dd9562ad','ejs5eczdn@aol.com',1,0,1,0,NULL,0),(2328,42,3,-1,1157497116,'3cbffb09','04lg8t@does.it',1,0,1,0,NULL,0),(2329,30,1,-1,1157497391,'538a9493','g9gvli90c9@mail.ru',1,0,1,0,NULL,0),(2330,57,3,-1,1157497507,'3deb692d','6txtrzoajsctf@does.it',1,0,1,0,NULL,0),(2621,53,1,-1,1157733382,'44a7565b','omiogtc@usmail.com',1,0,1,0,NULL,0),(2332,10,3,-1,1157498654,'c91f6682','xy6@come.to',1,0,1,0,NULL,0),(2333,57,3,-1,1157498758,'c91f6682','0257p9@see.it',1,0,1,0,NULL,0),(2334,53,1,-1,1157498788,'cb710d03','s4wlaleq03dqfv@mail.nu',1,0,1,0,NULL,0),(2335,35,1,-1,1157499322,'dd9562ad','35gblg9rf74hw9@tech.tv',1,0,1,0,NULL,0),(2336,10,3,-1,1157499444,'cb710d04','mrkubdv@aol.com',1,0,1,0,NULL,0),(2337,39,1,-1,1157499460,'cb710d03','by80566k805boms@home.com',1,0,1,0,NULL,0),(2338,26,1,-1,1157499504,'cb710d03','tlsc2okzqyxmh@arrivo.br',1,0,1,0,NULL,0),(2339,17,1,-1,1157500006,'cb710d05','op5qdqc83aqys@see.to',1,0,1,0,NULL,0),(2340,45,1,-1,1157500254,'d45dcbdb','753z0@tech.tv',1,0,1,0,NULL,0),(2341,37,1,-1,1157500692,'dd9562ad','fnc0mwhswaec@classnet.pl',1,0,1,0,NULL,0),(2342,39,1,-1,1157501056,'ca650655','cmva6i3p1loflww@home.com',1,0,1,0,NULL,0),(2343,37,1,-1,1157501788,'dd9562ad','zyl96xbnwy@pisem.net',1,0,1,0,NULL,0),(2344,57,3,-1,1157502118,'cb710d03','d62u5mt0itw5w6@work.com',1,0,1,0,NULL,0),(2345,37,1,-1,1157502321,'dd9562ad','k3te8l5e@usmail.com',1,0,1,0,NULL,0),(2346,19,1,-1,1157502346,'cb710d04','8jizec4etio8n8@arrivo.br',1,0,1,0,NULL,0),(2347,40,1,-1,1157502384,'cb710d03','umir9oi0@mail.com',1,0,1,0,NULL,0),(2348,9,3,-1,1157503092,'cb710d04','hb1dn9atldnvfx@pisem.net',1,0,1,0,NULL,0),(2350,55,3,-1,1157503228,'d2d8e78c','8ndsr46rwwq67o@pisem.net',1,0,1,0,NULL,0),(2351,11,4,-1,1157509145,'55ff71b2','xjzyIKhXQM',1,0,1,0,NULL,0),(2352,5,2,-1,1157509505,'44683de8','Jaykug',1,0,1,0,NULL,0),(2353,107,3,-1,1157510830,'18d27864','Devinzgb',1,0,1,0,NULL,0),(2354,138,1,38,1157526067,'5870bc26','',1,0,1,1,NULL,0),(2355,38,1,-1,1157526339,'cb710d03','5to3dh@see.to',1,0,1,0,NULL,0),(2356,53,1,-1,1157527061,'cb710d04','6irsk6vqegt4fv@hotmail.co',1,0,1,0,NULL,0),(2357,9,3,-1,1157527334,'cb710d04','pwif6iiz76g1fki@tech.tv',1,0,1,0,NULL,0),(2358,42,3,-1,1157527362,'cb710d05','d5hbwlcwo502t@see.to',1,0,1,0,NULL,0),(2359,37,1,-1,1157527365,'cb710d03','befnwua5b1qj4hd@tech.tv',1,0,1,0,NULL,0),(2360,38,1,-1,1157527912,'ca650655','ccvxuu7r6lp91@mail.nu',1,0,1,0,NULL,0),(2361,57,3,-1,1157527957,'ca650655','1wpcn4@arrivo.br',1,0,1,0,NULL,0),(2362,55,3,-1,1157527989,'cb710d04','d0uil2536czw9@tech.tv',1,0,1,0,NULL,0),(2363,14,1,-1,1157528553,'cb710d03','dwwb@home.com',1,0,1,0,NULL,0),(2364,27,1,-1,1157528822,'cb710d03','h@work.com',1,0,1,0,NULL,0),(2365,11,4,-1,1157528879,'cb710d04','b9r7zc34ncpgc@yahoo.com',1,0,1,0,NULL,0),(2366,52,3,-1,1157529088,'cb710d03','glhai3qx7uq@see.to',1,0,1,0,NULL,0),(2367,30,1,-1,1157529173,'cb710d04','h@work.com',1,0,1,0,NULL,0),(2368,30,1,-1,1157529416,'cb710d04','ho414x@does.it',1,0,1,0,NULL,0),(2369,39,1,-1,1157529545,'cb710d03','t8x6ju87ce5@mail.me',1,0,1,0,NULL,0),(2370,19,1,-1,1157530021,'cb710d03','wu058lg69trea6n@home.com',1,0,1,0,NULL,0),(2620,3,2,-1,1157733251,'44742703','c08g49y05@yahoo.com',1,0,1,0,NULL,0),(2372,11,4,-1,1157530631,'cb710d03','tdr2euhk9@hotmail.com',1,0,1,0,NULL,0),(2373,45,1,-1,1157530952,'cb710d04','138h4@come.to',1,0,1,0,NULL,0),(2374,37,1,-1,1157531155,'cb710d04','91btlvxszz4sjjo@classnet.',1,0,1,0,NULL,0),(2375,38,1,-1,1157531330,'cb710d03','8kj0cn5z40w2@usmail.com',1,0,1,0,NULL,0),(2376,15,1,-1,1157531371,'cb710d04','d0ciecxyzuygy@come.to',1,0,1,0,NULL,0),(2377,39,1,-1,1157531769,'cb710d05','cmqx1rdebmt2@mail.nu',1,0,1,0,NULL,0),(2378,57,3,-1,1157532954,'cb710d05','ej9uate50gxvfq@tech.tv',1,0,1,0,NULL,0),(2379,39,1,-1,1157533121,'ca650655','po6wogodyuuk1j@mail.ru',1,0,1,0,NULL,0),(2380,19,1,-1,1157533200,'5275d307','6wgu2@home.com',1,0,1,0,NULL,0),(2619,107,3,-1,1157732676,'54980366','Timjfn',1,0,1,0,NULL,0),(2382,40,1,-1,1157533763,'d21126ce','s5lp1dq3dz@yahoo.com',1,0,1,0,NULL,0),(2383,2,2,-1,1157534533,'d1cbe38b','tl84meoymbb@arrivo.br',1,0,1,0,NULL,0),(2384,42,3,-1,1157534816,'c91f6682','57pvlzdxcyn@bigfoot.com',1,0,1,0,NULL,0),(2385,11,4,-1,1157536577,'55ff71b3','eQTiBZmNvn',1,0,1,0,NULL,0),(2386,2,2,-1,1157537881,'3dbdf0c4','es7wufft1m@mail.nu',1,0,1,0,NULL,0),(2387,15,1,-1,1157538695,'44a7565b','18tudsb73kbjhtu@see.to',1,0,1,0,NULL,0),(2388,36,3,-1,1157538864,'dce49d14','t3@see.it',1,0,1,0,NULL,0),(2389,57,3,-1,1157539366,'ca650655','nfkcmcoqcjq@mail.com',1,0,1,0,NULL,0),(2390,4,2,-1,1157539974,'3af7026c','ikemgppveyedd6b@classnet.',1,0,1,0,NULL,0),(2391,27,1,-1,1157540035,'5033ea36','51@pisem.net',1,0,1,0,NULL,0),(2392,53,1,-1,1157540606,'3cbffb09','zmtzpovk3u@pisem.net',1,0,1,0,NULL,0),(2393,39,1,-1,1157540657,'52e360d9','yl8e@usmail.com',1,0,1,0,NULL,0),(2394,30,1,-1,1157540783,'d21126ce','al6rgazea7f6@see.to',1,0,1,0,NULL,0),(2395,9,3,-1,1157541880,'3b013294','w2v5w@pisem.net',1,0,1,0,NULL,0),(2396,57,3,-1,1157542118,'d184e663','si7lsx@home.com',1,0,1,0,NULL,0),(2397,38,1,-1,1157542651,'dce49d14','g585vjdel2@come.to',1,0,1,0,NULL,0),(2398,37,1,-1,1157542733,'de4ccb82','q3bianrn5qepl@mail.ru',1,0,1,0,NULL,0),(2399,53,1,-1,1157543618,'44a7565b','87ob@home.com',1,0,1,0,NULL,0),(2400,9,3,-1,1157543621,'d3f36a1c','oojjauh@pisem.net',1,0,1,0,NULL,0),(2401,37,1,-1,1157544236,'dc772e99','fbgqy05jia@home.com',1,0,1,0,NULL,0),(2402,38,1,-1,1157544756,'44742703','91ht3bxnqdacnwn@see.it',1,0,1,0,NULL,0),(2403,54,3,-1,1157545634,'ca650655','1v7aj@yahoo.com',1,0,1,0,NULL,0),(2404,42,3,-1,1157546460,'ca650655','3np8ec3io78xdj@see.to',1,0,1,0,NULL,0),(2405,2,2,-1,1157546496,'cc0b118f','2ueb3b@arrivo.br',1,0,1,0,NULL,0),(2406,53,1,-1,1157546532,'52c545ef','ms4yusgv8tbd@mail.com',1,0,1,0,NULL,0),(2407,144,1,-1,1157549229,'c3d29139','kristyne',1,0,1,0,NULL,0),(2408,138,1,6,1157558978,'3ed1c0b4','',1,0,1,1,NULL,0),(2409,107,3,-1,1157559305,'c3af2508','Bernardine',1,0,1,0,NULL,0),(2410,53,1,-1,1157563029,'44742703','h@pisem.net',1,0,1,0,NULL,0),(2411,42,3,-1,1157563571,'54561da2','4gbivl@work.com',1,0,1,0,NULL,0),(2412,57,3,-1,1157563886,'ca650655','8ufjomk@see.it',1,0,1,0,NULL,0),(2413,10,3,-1,1157564948,'ca650655','b79h41jjxhppl@classnet.pl',1,0,1,0,NULL,0),(2618,5,2,-1,1157731798,'18e1aca8','Avabvo',1,0,1,0,NULL,0),(2617,58,3,-1,1157731105,'d5a0d9d6','e8@arrivo.br',1,0,1,0,NULL,0),(2416,11,4,-1,1157567112,'55ff71b3','QOMAIlJLFu',1,0,1,0,NULL,0),(2417,2,2,-1,1157567394,'44742703','22z7w@mail.nu',1,0,1,0,NULL,0),(2418,11,4,-1,1157567398,'55ff71b7','ySDurTgUWl',1,0,1,0,NULL,0),(2419,11,4,-1,1157568002,'55ff71b2','yYdiNzlCbS',1,0,1,0,NULL,0),(2420,9,3,-1,1157568196,'44742703','m20expj2@home.com',1,0,1,0,NULL,0),(2421,11,4,-1,1157568230,'55ff71b9','DUnJwSIfCs',1,0,1,0,NULL,0),(2422,58,3,-1,1157568293,'ca650655','vco@freemail.com',1,0,1,0,NULL,0),(2423,53,1,-1,1157568693,'3db9dbeb','pjh@tech.tv',1,0,1,0,NULL,0),(2424,2,2,-1,1157568813,'3df1f919','necy0@come.to',1,0,1,0,NULL,0),(2425,2,2,-1,1157569362,'44742703','5ham6@classnet.pl',1,0,1,0,NULL,0),(2426,57,3,-1,1157569610,'3b1dc334','q9n5epfsp1z4nr@pisem.net',1,0,1,0,NULL,0),(2427,38,1,-1,1157569673,'3dbdf0c4','947b5z@arrivo.br',1,0,1,0,NULL,0),(2428,40,1,-1,1157570175,'3ee7c122','py9i@mail.me',1,0,1,0,NULL,0),(2429,11,4,-1,1157572221,'55ff71b3','TbgGYntOds',1,0,1,0,NULL,0),(2430,11,4,-1,1157575346,'55ff71b2','sOhueMHYKx',1,0,1,0,NULL,0),(2431,11,4,-1,1157575696,'55ff71b7','CIumTthxAD',1,0,1,0,NULL,0),(2432,38,1,-1,1157585156,'d21126ce','q78tohuf@arrivo.br',1,0,1,0,NULL,0),(2433,53,1,-1,1157585620,'ca650655','bto08591lf@does.it',1,0,1,0,NULL,0),(2434,37,1,-1,1157585757,'ca650655','w6@aol.com',1,0,1,0,NULL,0),(2616,37,1,-1,1157730226,'d5a0d9d6','a@come.to',1,0,1,0,NULL,0),(2436,40,1,-1,1157586567,'3cbffb09','26la8y6dhk@freemail.com',1,0,1,0,NULL,0),(2437,38,1,-1,1157586991,'a5e54f32','vjajz@work.com',1,0,1,0,NULL,0),(2438,14,1,-1,1157587503,'3ee7c122','3l8@hotmail.com',1,0,1,0,NULL,0),(2439,11,4,-1,1157587516,'54561da2','m8dsaxlkdc1p@freemail.com',1,0,1,0,NULL,0),(2440,4,2,-1,1157587627,'ca650655','fhubbc4gys5a878@mail.com',1,0,1,0,NULL,0),(2442,57,3,-1,1157587747,'d21126ce','75hbqfi@mail.me',1,0,1,0,NULL,0),(2443,39,1,-1,1157588002,'cba2593d','slh7ezv1qisl83@come.to',1,0,1,0,NULL,0),(2444,53,1,-1,1157588050,'de4ccb82','5h6b6jc8eoa@mail.com',1,0,1,0,NULL,0),(2445,30,1,-1,1157588087,'3af7026c','o12ap6fgf@see.to',1,0,1,0,NULL,0),(2446,39,1,-1,1157588578,'4512da0d','sa4jsucf@aol.com',1,0,1,0,NULL,0),(2447,39,1,-1,1157588780,'3db9dbeb','wmb3bna@pisem.net',1,0,1,0,NULL,0),(2448,5,2,-1,1157589227,'d21126ce','7pd6awz4p56g@come.to',1,0,1,0,NULL,0),(2449,5,2,-1,1157589242,'55ff71b8','sHnCvefpJE',1,0,1,0,NULL,0),(2450,17,1,-1,1157589777,'d21126ce','o9clt@home.com',1,0,1,0,NULL,0),(2451,2,2,-1,1157589929,'dabdd7b6','sbqqdlse8p@see.to',1,0,1,0,NULL,0),(2452,45,1,-1,1157590416,'ca650655','ql2@mail.ru',1,0,1,0,NULL,0),(2453,42,3,-1,1157590840,'de4ccb82','45s2yib14fsll@hotmail.com',1,0,1,0,NULL,0),(2454,11,4,-1,1157591003,'55ff71b8','XeUPgocxyG',1,0,1,0,NULL,0),(2455,145,3,-1,1157591118,'3db9dbeb','',1,0,1,1,NULL,0),(2456,9,3,-1,1157591197,'de4ccb82','o9s8803@rocketmail.com',1,0,1,0,NULL,0),(2457,11,4,-1,1157591253,'55ff71b3','dlOSDxfsEp',1,0,1,0,NULL,0),(2458,58,3,-1,1157591376,'ca8f85f2','g8kmqmoqv@come.to',1,0,1,0,NULL,0),(2459,57,3,-1,1157591675,'ca650655','fxrow8i3bikvx@hotmail.com',1,0,1,0,NULL,0),(2460,40,1,-1,1157592673,'44742703','n8yyo7imx@mail.ru',1,0,1,0,NULL,0),(2461,55,3,-1,1157593010,'ca650655','9x2efu255@rocketmail.com',1,0,1,0,NULL,0),(2615,45,1,-1,1157729876,'da38902a','l9lymku6rxq0i@mail.com',1,0,1,0,NULL,0),(2463,42,3,-1,1157594158,'d5886902','edwjbk8zj0@see.to',1,0,1,0,NULL,0),(2464,146,1,-1,1157598641,'c274c307','SunshineNick',1,0,1,0,NULL,0),(2465,5,2,-1,1157603818,'1896ad48','Juanhnw',1,0,1,0,NULL,0),(2466,107,3,-1,1157605029,'46217cda','Loganybl',1,0,1,0,NULL,0),(2467,107,3,-1,1157605053,'467bd434','Loganybl',1,0,1,0,NULL,0),(2468,17,1,-1,1157611126,'a8bb4812','31m4wr@mail.ru',1,0,1,0,NULL,0),(2469,53,1,-1,1157611183,'ca650655','llgceblus11td@come.to',1,0,1,0,NULL,0),(2470,11,4,-1,1157611347,'ca650655','h1gmg@arrivo.br',1,0,1,0,NULL,0),(2471,37,1,-1,1157611552,'3db9dbeb','cyz4co8cqfj@pisem.net',1,0,1,0,NULL,0),(2472,15,1,-1,1157611714,'db9f49c9','zim@home.com',1,0,1,0,NULL,0),(2473,36,3,-1,1157611766,'ca650655','ura1jnh7hmsdh@classnet.pl',1,0,1,0,NULL,0),(2614,2,2,-1,1157729868,'d5a0d9d6','raeppjl7v2@mail.com',1,0,1,0,NULL,0),(2475,14,1,-1,1157612766,'ca650655','rwa0a32w21h1@usmail.com',1,0,1,0,NULL,0),(2476,4,2,-1,1157612841,'ca650655','uc1@tech.tv',1,0,1,0,NULL,0),(2477,30,1,-1,1157613479,'da65dab6','5qibdp1eo7pexr@see.to',1,0,1,0,NULL,0),(2478,57,3,-1,1157613984,'3cbffb09','rwzfid88d3ydiu@bigfoot.co',1,0,1,0,NULL,0),(2479,5,2,-1,1157614570,'ca650655','fl@tech.tv',1,0,1,0,NULL,0),(2480,5,2,-1,1157614643,'55ff71b7','mNsDWoxGhz',1,0,1,0,NULL,0),(2481,11,4,-1,1157614700,'55ff71b2','mUlOEtLFZu',1,0,1,0,NULL,0),(2482,11,4,-1,1157615225,'5275d307','fukes2fg5xv@does.it',1,0,1,0,NULL,0),(2483,38,1,-1,1157615474,'3cbffb09','4plj@mail.nu',1,0,1,0,NULL,0),(2484,4,2,-1,1157615653,'ca650655','dkdpc@come.to',1,0,1,0,NULL,0),(2485,53,1,-1,1157616217,'d5886902','9f@rocketmail.com',1,0,1,0,NULL,0),(2486,58,3,-1,1157616470,'d38d4dc2','5c72voxgp19u@come.to',1,0,1,0,NULL,0),(2487,5,2,-1,1157616486,'55ff71b7','UrsDhWJzAG',1,0,1,0,NULL,0),(2488,57,3,-1,1157617108,'ca650655','cw951qog4@usmail.com',1,0,1,0,NULL,0),(2489,39,1,-1,1157617927,'ca650655','ukp7wju6ribs@freemail.com',1,0,1,0,NULL,0),(2613,3,2,-1,1157729369,'ca650655','ggx@does.it',1,0,1,0,NULL,0),(2491,38,1,-1,1157620626,'ca650655','nha@work.com',1,0,1,0,NULL,0),(2492,2,2,-1,1157620954,'ca650655','pdun1cfsux4xz@classnet.pl',1,0,1,0,NULL,0),(2493,37,1,-1,1157621197,'ca650655','8ufveop09tc@mail.nu',1,0,1,0,NULL,0),(2494,40,1,-1,1157621720,'ca650655','8ht@come.to',1,0,1,0,NULL,0),(2495,2,2,-1,1157622005,'da4b5725','6@mail.me',1,0,1,0,NULL,0),(2496,30,1,-1,1157622082,'ca650655','bbrxqizujrha@come.to',1,0,1,0,NULL,0),(2497,55,3,-1,1157622380,'dabdd7b6','w3b1fdqmqh6d5u@see.to',1,0,1,0,NULL,0),(2498,14,1,-1,1157622416,'ca650655','n8qy1mr@mail.me',1,0,1,0,NULL,0),(2499,35,1,-1,1157622672,'ca650655','cbjsrxhh2e@mail.com',1,0,1,0,NULL,0),(2500,53,1,-1,1157623412,'ca650655','99h4cifhker@usmail.com',1,0,1,0,NULL,0),(2501,52,3,-1,1157623651,'3cbffb09','brnnw8vrkma@work.com',1,0,1,0,NULL,0),(2502,26,1,-1,1157624316,'da0bcff4','pubutkdvwm@see.to',1,0,1,0,NULL,0),(2503,9,3,-1,1157624533,'ca650655','oiwm1sd0h4g8pc@mail.ru',1,0,1,0,NULL,0),(2504,53,1,-1,1157624678,'ca650655','ak@tech.tv',1,0,1,0,NULL,0),(2505,57,3,-1,1157624876,'ca650655','1baqxf46j4q5chm@mail.com',1,0,1,0,NULL,0),(2506,11,4,-1,1157624952,'da988198','eha2d3o@mail.nu',1,0,1,0,NULL,0),(2507,45,1,-1,1157625259,'3cbffb09','bwziycqsmgf2elk@rocketmai',1,0,1,0,NULL,0),(2508,38,1,-1,1157625478,'ca650655','a@hotmail.com',1,0,1,0,NULL,0),(2509,17,1,-1,1157625524,'ca650655','bsmmsbfszn4@does.it',1,0,1,0,NULL,0),(2510,45,1,-1,1157625929,'d3a23ea1','w00@tech.tv',1,0,1,0,NULL,0),(2511,57,3,-1,1157626600,'5275d307','9mqfhwh6vrtyec@rocketmail',1,0,1,0,NULL,0),(2512,107,3,-1,1157626877,'55ff71b2','wWUZgvOqBy',1,0,1,0,NULL,0),(2513,38,1,-1,1157627491,'d3a23ea1','htc@freemail.com',1,0,1,0,NULL,0),(2514,40,1,-1,1157628143,'ca650655','1x0s2v2zp0prv6@rocketmail',1,0,1,0,NULL,0),(2515,19,1,-1,1157628251,'d3a23ea1','bd@home.com',1,0,1,0,NULL,0),(2516,31,1,-1,1157628738,'ca650655','vpojvp0if@pisem.net',1,0,1,0,NULL,0),(2612,5,2,-1,1157729231,'3e654b0e','q69k6zej0o@does.it',1,0,1,0,NULL,0),(2518,11,4,-1,1157630200,'55ff71b3','xkAwBNjdDJ',1,0,1,0,NULL,0),(2519,5,2,-1,1157636556,'52fd8b36','Noahsxd',1,0,1,0,NULL,0),(2520,107,3,-1,1157638366,'9bfd0a61','Bryanozu',1,0,1,0,NULL,0),(2521,2,2,-1,1157654996,'ca650655','m4r9e2y38tqzw@see.to',1,0,1,0,NULL,0),(2522,53,1,-1,1157655140,'3cbffb09','h58d@bigfoot.com',1,0,1,0,NULL,0),(2523,37,1,-1,1157655154,'da0bcff4','6sbabw@mail.com',1,0,1,0,NULL,0),(2524,15,1,-1,1157655745,'d47a4cd4','z2@come.to',1,0,1,0,NULL,0),(2525,2,2,-1,1157655769,'ca650655','cqfwj@does.it',1,0,1,0,NULL,0),(2526,15,1,-1,1157655808,'7c3fc068','z2@come.to',1,0,1,0,NULL,0),(2527,42,3,-1,1157655828,'ca650655','wrgzu0s4@mail.nu',1,0,1,0,NULL,0),(2528,15,1,-1,1157655868,'3cbffb09','17ed9j6fmya@does.it',1,0,1,0,NULL,0),(2529,38,1,-1,1157656504,'da38902a','306np@mail.me',1,0,1,0,NULL,0),(2530,27,1,-1,1157657402,'ca650655','fc8ydsf7c@arrivo.br',1,0,1,0,NULL,0),(2531,39,1,-1,1157658222,'ca650655','ncjmt7dw1yfwsw1@aol.com',1,0,1,0,NULL,0),(2532,53,1,-1,1157658268,'da38902a','c@work.com',1,0,1,0,NULL,0),(2533,26,1,-1,1157658722,'3ae02232','emb@rocketmail.com',1,0,1,0,NULL,0),(2534,11,4,-1,1157658926,'c803b737','kqf@freemail.com',1,0,1,0,NULL,0),(2535,37,1,-1,1157659492,'ca650655','qpb@see.it',1,0,1,0,NULL,0),(2536,4,2,-1,1157659713,'db9f49c9','ehjddz1kf@aol.com',1,0,1,0,NULL,0),(2537,11,4,-1,1157660126,'55ff71b2','zxdVXuIpag',1,0,1,0,NULL,0),(2538,57,3,-1,1157660358,'da4b5725','iqpfzy28c9e@classnet.pl',1,0,1,0,NULL,0),(2539,39,1,-1,1157660404,'d56025df','hyh3@rocketmail.com',1,0,1,0,NULL,0),(2540,11,4,-1,1157660499,'55ff71b9','nMKmjNBkyS',1,0,1,0,NULL,0),(2541,11,4,-1,1157661217,'55ff71b8','ZXTyEgFYGD',1,0,1,0,NULL,0),(2542,37,1,-1,1157661331,'cbfd5537','1@usmail.com',1,0,1,0,NULL,0),(2543,40,1,-1,1157661823,'d47a4cd4','h13jw3xjkgl@hotmail.com',1,0,1,0,NULL,0),(2611,53,1,-1,1157728883,'ca3988f9','70dvlws@hotmail.com',1,0,1,0,NULL,0),(2545,11,4,-1,1157665190,'55ff71b7','VthepDiXMd',1,0,1,0,NULL,0),(2546,11,4,-1,1157665316,'55ff71b7','aCbrklEmdB',1,0,1,0,NULL,0),(2547,107,3,-1,1157665392,'c88dc202','Nathaniel',1,0,1,0,NULL,0),(2548,107,3,-1,1157666345,'55ff71b2','vVQANLbGyZ',1,0,1,0,NULL,0),(2549,11,4,-1,1157668230,'55ff71b8','wjMGvxUayI',1,0,1,0,NULL,0),(2550,107,3,-1,1157671167,'55ff71b3','AbsjSgWfZD',1,0,1,0,NULL,0),(2551,37,1,-1,1157675460,'da4b5725','dj2wpjs@hotmail.com',1,0,1,0,NULL,0),(2552,9,3,-1,1157675788,'d272ae60','jlm@come.to',1,0,1,0,NULL,0),(2553,42,3,-1,1157675967,'ce5282d2','55bgsncjou1d@yahoo.com',1,0,1,0,NULL,0),(2643,107,3,-1,1157757822,'442d26f1','Kalebnge',1,0,1,0,NULL,0),(2555,55,3,-1,1157676318,'d8d96264','2c56syhzw@come.to',1,0,1,0,NULL,0),(2556,15,1,-1,1157676386,'d47a4cd4','w5zyn8zsg1te@pisem.net',1,0,1,0,NULL,0),(2557,40,1,-1,1157676401,'ca718c08','0cucx0705hb7@freemail.com',1,0,1,0,NULL,0),(2558,14,1,-1,1157676920,'9f94e5fa','8w9c@see.to',1,0,1,0,NULL,0),(2559,38,1,-1,1157677223,'cbfd5537','plhg41b7jm@hotmail.com',1,0,1,0,NULL,0),(2560,5,2,-1,1157677372,'45e4d6b3','Emmaaok',1,0,1,0,NULL,0),(2561,4,2,-1,1157677379,'dc798d65','a8qxci11muv0@mail.me',1,0,1,0,NULL,0),(2562,4,2,-1,1157677460,'9702abcd','a8qxci11muv0@mail.me',1,0,1,0,NULL,0),(2563,57,3,-1,1157677826,'cba2593d','jkn6w2gmll0syx@tech.tv',1,0,1,0,NULL,0),(2564,30,1,-1,1157677840,'ce5282d2','hiz8fjnevw9w@aol.com',1,0,1,0,NULL,0),(2565,39,1,-1,1157678060,'ca650655','ku1pf@aol.com',1,0,1,0,NULL,0),(2610,11,4,-1,1157728087,'ca3988f9','1@come.to',1,0,1,0,NULL,0),(2567,39,1,-1,1157678332,'ca650655','a7@see.to',1,0,1,0,NULL,0),(2568,57,3,-1,1157678740,'44742703','xhix7u492d@yahoo.com',1,0,1,0,NULL,0),(2609,30,1,-1,1157728054,'c896be6d','eiil9m08q4jval@classnet.p',1,0,1,0,NULL,0),(2570,11,4,-1,1157679258,'d5a0d9d6','rc@does.it',1,0,1,0,NULL,0),(2571,45,1,-1,1157679860,'7c3b5439','1lyjn5bmi@usmail.com',1,0,1,0,NULL,0),(2572,30,1,-1,1157680215,'3af7026c','1x0s@pisem.net',1,0,1,0,NULL,0),(2573,9,3,-1,1157680677,'ca650655','ke7u@pisem.net',1,0,1,0,NULL,0),(2574,38,1,-1,1157681604,'44742703','nbab@hotmail.com',1,0,1,0,NULL,0),(2575,57,3,-1,1157681857,'cc0b118f','3m8oy1m848i@see.to',1,0,1,0,NULL,0),(2576,54,3,-1,1157682804,'da38902a','5j09nqwns@mail.nu',1,0,1,0,NULL,0),(2608,35,1,-1,1157727772,'dabdd7b6','i@mail.me',1,0,1,0,NULL,0),(2578,2,2,-1,1157683295,'cb710d04','za8wgxmx6dnyd1x@usmail.co',1,0,1,0,NULL,0),(2579,53,1,-1,1157701449,'3df431da','uku01a3r2nfph@tech.tv',1,0,1,0,NULL,0),(2580,9,3,-1,1157701884,'ca650655','8vw43p@classnet.pl',1,0,1,0,NULL,0),(2581,37,1,-1,1157701947,'c896be6d','ma5@see.it',1,0,1,0,NULL,0),(2582,9,3,-1,1157702165,'cb710d04','m68pcdx0@come.to',1,0,1,0,NULL,0),(2583,40,1,-1,1157702368,'cba2593d','o7@aol.com',1,0,1,0,NULL,0),(2607,38,1,-1,1157726949,'3a9e188c','4tfv2ekrp0cq5@mail.nu',1,0,1,0,NULL,0),(2585,30,1,-1,1157702787,'3af7026c','8e@pisem.net',1,0,1,0,NULL,0),(2586,39,1,-1,1157704282,'3df431da','bbqzbsue1uwtn@does.it',1,0,1,0,NULL,0),(2606,37,1,-1,1157725972,'d4e35d14','sjcy@see.it',1,0,1,0,NULL,0),(2588,19,1,-1,1157704769,'ca3988f9','kso1a8w3r0ftx3@hotmail.co',1,0,1,0,NULL,0),(2589,45,1,-1,1157705478,'d4e35d14','ig6mpxa8nh7@mail.ru',1,0,1,0,NULL,0),(2590,38,1,-1,1157705676,'c896be6d','miyazpqj@classnet.pl',1,0,1,0,NULL,0),(2591,2,2,-1,1157705695,'d4e35d14','3ka0pr6kq5j@rocketmail.co',1,0,1,0,NULL,0),(2592,37,1,-1,1157705944,'d4e35d14','bxl@mail.ru',1,0,1,0,NULL,0),(2593,5,2,-1,1157706465,'18e1aca8','Faithjvr',1,0,1,0,NULL,0),(2594,2,2,-1,1157707281,'ca650655','l@rocketmail.com',1,0,1,0,NULL,0),(2595,37,1,-1,1157707371,'44742703','3mle@tech.tv',1,0,1,0,NULL,0),(2596,57,3,-1,1157707536,'ca650655','1oohym@arrivo.br',1,0,1,0,NULL,0),(2597,107,3,-1,1157707553,'c1ce48b4','Kentyiz',1,0,1,0,NULL,0),(2598,107,3,-1,1157707582,'972aed3f','Kentyiz',1,0,1,0,NULL,0),(2599,138,1,6,1157708015,'3ed1c0b4','',1,0,1,1,NULL,0),(2605,38,1,-1,1157725429,'d4e35d14','kzciradf33@mail.me',1,0,1,0,NULL,0),(2601,31,1,-1,1157709299,'d4e35d14','4m6@mail.com',1,0,1,0,NULL,0),(2602,11,4,-1,1157709974,'55ff71b2','AJVXvcQbqt',1,0,1,0,NULL,0),(2603,138,1,38,1157710974,'5870bc26','',1,0,1,1,NULL,0),(2604,11,4,-1,1157713252,'55ff71b8','CZroPLAIVK',1,0,1,0,NULL,0),(2644,17,1,-1,1157757978,'ca650655','hlyps4@mail.com',1,0,1,0,NULL,0),(2645,36,3,-1,1157758293,'cb710d03','uduqj@bigfoot.com',1,0,1,0,NULL,0),(2646,15,1,-1,1157758507,'ca650655','o2l9k64mb8@usmail.com',1,0,1,0,NULL,0),(2647,3,2,-1,1157758661,'cc0b118f','x25l6fex9prk@mail.ru',1,0,1,0,NULL,0),(2648,11,4,-1,1157758940,'55ff71b7','BRATkbLXjt',1,0,1,0,NULL,0),(2649,55,3,-1,1157759101,'ca650655','cd8e0@mail.com',1,0,1,0,NULL,0),(2650,40,1,-1,1157759226,'d5a0d9d6','o@mail.nu',1,0,1,0,NULL,0),(2651,2,2,-1,1157759277,'ca650655','s@see.it',1,0,1,0,NULL,0),(2652,57,3,-1,1157759284,'d5a0d9d6','bpk00t@aol.com',1,0,1,0,NULL,0),(2653,14,1,-1,1157759784,'3cbffb09','dwoei25ud79v4d@aol.com',1,0,1,0,NULL,0),(2654,10,3,-1,1157759949,'dc365c4a','2obt5yq@mail.com',1,0,1,0,NULL,0),(2655,52,3,-1,1157760346,'cb710d03','wu61dq05gq@usmail.com',1,0,1,0,NULL,0),(2656,19,1,-1,1157760986,'db8e2852','vdq4yuw@mail.nu',1,0,1,0,NULL,0),(2657,10,3,-1,1157761043,'ca650655','n79f@mail.nu',1,0,1,0,NULL,0),(2658,9,3,-1,1157761144,'dcd06786','ypddjauov@rocketmail.com',1,0,1,0,NULL,0),(2659,17,1,-1,1157762089,'cb710d03','lt@classnet.pl',1,0,1,0,NULL,0),(2660,30,1,-1,1157762334,'3cbffb09','i7eo8z@see.to',1,0,1,0,NULL,0),(2661,15,1,-1,1157762511,'dee706ab','j62i@mail.com',1,0,1,0,NULL,0),(2662,9,3,-1,1157762669,'3a6790a5','5htpuz4he2hq8p@rocketmail',1,0,1,0,NULL,0),(2663,39,1,-1,1157762724,'d295787f','z@hotmail.com',1,0,1,0,NULL,0),(2664,38,1,-1,1157763992,'cb710d05','czcx@mail.ru',1,0,1,0,NULL,0),(2665,19,1,-1,1157764235,'cb710d03','j8gql0oiwjxrga@come.to',1,0,1,0,NULL,0),(2666,55,3,-1,1157764838,'ca650655','t5h61bc73qo70@see.it',1,0,1,0,NULL,0),(2667,39,1,-1,1157764989,'ca650655','pz6k0wy46zm@mail.nu',1,0,1,0,NULL,0),(2668,31,1,-1,1157765205,'cb710d03','tdsbeslz7w0y@see.to',1,0,1,0,NULL,0),(2669,42,3,-1,1157765218,'ca650655','8uju9sqoadkumj@bigfoot.co',1,0,1,0,NULL,0),(2670,11,4,-1,1157773545,'55ff71b8','DuHYSQOpRy',1,0,1,0,NULL,0),(2671,11,4,-1,1157773648,'55ff71b8','AOLVYkgNKh',1,0,1,0,NULL,0),(2672,5,2,-1,1157781459,'444a947d','Kylietlw',1,0,1,0,NULL,0),(2673,107,3,-1,1157782088,'4826eae9','Dianeacy',1,0,1,0,NULL,0),(2674,11,4,-1,1157787851,'55ff71b3','vaJfDOMEuA',1,0,1,0,NULL,0),(2675,11,4,-1,1157787897,'55ff71b3','ljvAItPHXn',1,0,1,0,NULL,0),(2676,11,4,-1,1157788867,'55ff71b9','qORUaYDrwl',1,0,1,0,NULL,0),(2677,11,4,-1,1157788884,'55ff71b2','VGdomgrPfy',1,0,1,0,NULL,0),(2678,11,4,-1,1157793669,'55ff71b9','JyAOgKZVmL',1,0,1,0,NULL,0),(2679,38,1,-1,1157794628,'c88b68cb','vyzo7n90ldljy@see.to',1,0,1,0,NULL,0),(2680,37,1,-1,1157794950,'de2d2408','23t2@classnet.pl',1,0,1,0,NULL,0),(2681,9,3,-1,1157795260,'cb710d03','vpa@arrivo.br',1,0,1,0,NULL,0),(2682,36,3,-1,1157795420,'cb710d03','ihqlxap9gbd61o@work.com',1,0,1,0,NULL,0),(2683,3,2,-1,1157795670,'ca650655','o1g@usmail.com',1,0,1,0,NULL,0),(2684,2,2,-1,1157795740,'cb710d03','s87x9d1f6b03@mail.com',1,0,1,0,NULL,0),(2685,57,3,-1,1157796064,'cb710d04','naqt8ndgy@yahoo.com',1,0,1,0,NULL,0),(2686,38,1,-1,1157796579,'cb710d03','yh2@rocketmail.com',1,0,1,0,NULL,0),(2687,11,4,-1,1157796604,'cb710d04','ffxaghd@pisem.net',1,0,1,0,NULL,0),(2688,4,2,-1,1157796734,'cb710d03','z6la6sgisf@tech.tv',1,0,1,0,NULL,0),(2689,35,1,-1,1157796791,'cb710d05','37@yahoo.com',1,0,1,0,NULL,0),(2690,57,3,-1,1157796864,'cb710d05','q2jfdxxp9k@classnet.pl',1,0,1,0,NULL,0),(2691,3,2,-1,1157797089,'cb710d03','euyd@pisem.net',1,0,1,0,NULL,0),(2692,10,3,-1,1157797217,'cb710d04','zn7hzthbk@aol.com',1,0,1,0,NULL,0),(2693,39,1,-1,1157797383,'cb710d03','cvs28@see.it',1,0,1,0,NULL,0),(2694,39,1,-1,1157797590,'cb710d03','mhk20res6fjgah@rocketmail',1,0,1,0,NULL,0),(2695,3,2,-1,1157797711,'cb710d03','mvh49rl6js@mail.com',1,0,1,0,NULL,0),(2696,57,3,-1,1157798165,'cb710d03','9q5p39wa5kg1lu@hotmail.co',1,0,1,0,NULL,0),(2697,53,1,-1,1157798175,'cb710d05','gpc2f@pisem.net',1,0,1,0,NULL,0),(2698,3,2,-1,1157798352,'cb710d03','03ce7u2@classnet.pl',1,0,1,0,NULL,0),(2699,9,3,-1,1157798373,'cb710d05','ny02i@see.it',1,0,1,0,NULL,0),(2700,45,1,-1,1157799003,'cb710d03','hfhaduuq5j@work.com',1,0,1,0,NULL,0),(2701,17,1,-1,1157799139,'cb710d05','txun1b3k32ei@see.to',1,0,1,0,NULL,0),(2702,38,1,-1,1157799170,'cb710d03','ma5@mail.nu',1,0,1,0,NULL,0),(2703,45,1,-1,1157799327,'cb710d03','omg5@aol.com',1,0,1,0,NULL,0),(2704,37,1,-1,1157799380,'ca650655','hk1ovth18wkgt90@tech.tv',1,0,1,0,NULL,0),(2705,15,1,-1,1157799600,'cb710d03','lzisndhjexmy3xs@yahoo.com',1,0,1,0,NULL,0),(2706,4,2,-1,1157799637,'cb710d03','f8u@bigfoot.com',1,0,1,0,NULL,0),(2707,39,1,-1,1157800003,'3e5c2303','dtsuj7@usmail.com',1,0,1,0,NULL,0),(2708,2,2,-1,1157800277,'cb710d05','9it784@mail.com',1,0,1,0,NULL,0),(2709,57,3,-1,1157800290,'cb710d03','p48v@usmail.com',1,0,1,0,NULL,0),(2710,53,1,-1,1157800416,'cb710d03','u5jobqvq33c@see.to',1,0,1,0,NULL,0),(2711,57,3,-1,1157801125,'51d34007','34t6whfj@rocketmail.com',1,0,1,0,NULL,0),(2712,39,1,-1,1157801617,'cba2593d','1qvx@mail.me',1,0,1,0,NULL,0),(2713,40,1,-1,1157801702,'cb710d03','va8haj5ddi5@mail.me',1,0,1,0,NULL,0),(2714,55,3,-1,1157802325,'cb710d03','b89tl70wxdb4p@home.com',1,0,1,0,NULL,0),(2715,42,3,-1,1157803040,'cb710d05','7fhkrslzp@pisem.net',1,0,1,0,NULL,0),(2716,148,1,-1,1157804506,'543b0b97','Marc',1,0,1,0,NULL,0),(2717,5,2,-1,1157806010,'d9ececf9','Helenbqh',1,0,1,0,NULL,0),(2718,107,3,-1,1157806961,'ac885162','Alexdcq',1,0,1,0,NULL,0),(2719,149,3,-1,1157811513,'cb710d05','Chapter',1,0,1,0,NULL,0),(2720,11,4,-1,1157817156,'55ff71b2','oLXskhBucM',1,0,1,0,NULL,0),(2721,11,4,-1,1157817483,'55ff71b8','HfOJuAWdrR',1,0,1,0,NULL,0),(2722,53,1,-1,1157826159,'cb710d03','xre8ofxwiopd0i@yahoo.com',1,0,1,0,NULL,0),(2723,2,2,-1,1157826695,'c88b68cb','dil4zhb7na@aol.com',1,0,1,0,NULL,0),(2724,9,3,-1,1157827068,'cb710d03','bbqibwx@come.to',1,0,1,0,NULL,0),(2725,15,1,-1,1157827355,'d45c0701','c2eaoyqsz4km@see.it',1,0,1,0,NULL,0),(2726,9,3,-1,1157827442,'cb710d04','m4krxtdv8nwtuz@arrivo.br',1,0,1,0,NULL,0),(2727,36,3,-1,1157827506,'cb710d03','8@does.it',1,0,1,0,NULL,0),(2728,3,2,-1,1157827523,'18160fed','7qm@see.it',1,0,1,0,NULL,0),(2729,42,3,-1,1157827562,'cb710d03','kyk2p@hotmail.com',1,0,1,0,NULL,0),(2730,40,1,-1,1157827950,'cb710d05','k@mail.com',1,0,1,0,NULL,0),(2731,2,2,-1,1157827956,'cb710d03','t4njtqezr@classnet.pl',1,0,1,0,NULL,0),(2732,38,1,-1,1157828223,'cb710d03','ir8pb1uht@pisem.net',1,0,1,0,NULL,0),(2733,55,3,-1,1157828223,'cb710d03','wmp9v3@tech.tv',1,0,1,0,NULL,0),(2734,4,2,-1,1157828772,'de2d2408','2rlde81xm9y@does.it',1,0,1,0,NULL,0),(2735,57,3,-1,1157828919,'cb710d03','hnbbcqlu6kloiqy@aol.com',1,0,1,0,NULL,0),(2736,57,3,-1,1157829163,'3dbdf0c4','k4wliek1i6ornh7@see.to',1,0,1,0,NULL,0),(2737,10,3,-1,1157829253,'cb710d05','z32lnz737eu@arrivo.br',1,0,1,0,NULL,0),(2738,39,1,-1,1157829469,'cb710d05','jphqbz@does.it',1,0,1,0,NULL,0),(2739,39,1,-1,1157829716,'cb710d05','8@tech.tv',1,0,1,0,NULL,0),(2740,5,2,-1,1157829871,'4743a2b9','Brentycr',1,0,1,0,NULL,0),(2741,19,1,-1,1157830307,'cb710d03','vnq6zwwd305@yahoo.com',1,0,1,0,NULL,0),(2742,10,3,-1,1157830492,'cb710d03','75dk3uk44jrit@arrivo.br',1,0,1,0,NULL,0),(2743,107,3,-1,1157830794,'51d906e6','Ronqhf',1,0,1,0,NULL,0),(2744,17,1,-1,1157831497,'d3bd5979','l@hotmail.com',1,0,1,0,NULL,0),(2745,45,1,-1,1157831552,'cb710d04','kxxutq8zox@mail.nu',1,0,1,0,NULL,0),(2746,39,1,-1,1157832808,'cb710d04','mstr227@aol.com',1,0,1,0,NULL,0),(2747,37,1,-1,1157836079,'cb710d03','g@classnet.pl',1,0,1,0,NULL,0),(2748,38,1,-1,1157836138,'cb710d03','to4n@usmail.com',1,0,1,0,NULL,0),(2749,19,1,-1,1157836864,'cb710d03','58sa@see.to',1,0,1,0,NULL,0),(2750,39,1,-1,1157837028,'cb710d03','t1fwv614y0yyk@aol.com',1,0,1,0,NULL,0),(2751,11,4,-1,1157839351,'55ff71b8','PsSouHvNer',1,0,1,0,NULL,0),(2752,31,1,-1,1157843967,'cb710d03','yuec5k@pisem.net',1,0,1,0,NULL,0),(2753,53,1,-1,1157845235,'cb710d03','vafcivjqnq71@does.it',1,0,1,0,NULL,0),(2754,5,2,-1,1157852748,'46f0fb09','Jerrylzg',1,0,1,0,NULL,0),(2755,107,3,-1,1157853461,'4a85193a','Jamesvnz',1,0,1,0,NULL,0),(2756,42,3,-1,1157861491,'cb710d05','qm1@yahoo.com',1,0,1,0,NULL,0),(2757,15,1,-1,1157861568,'cb710d04','q2a5wtq@classnet.pl',1,0,1,0,NULL,0),(2758,9,3,-1,1157861732,'cb710d05','b07ppe3umgi@come.to',1,0,1,0,NULL,0),(2759,40,1,-1,1157861762,'51c429f7','zk77lwh@hotmail.com',1,0,1,0,NULL,0),(2760,57,3,-1,1157862025,'cb710d05','izmp0poont47n@home.com',1,0,1,0,NULL,0),(2761,27,1,-1,1157862431,'51c429f7','uq@come.to',1,0,1,0,NULL,0),(2762,4,2,-1,1157862584,'cb710d03','3og@mail.nu',1,0,1,0,NULL,0),(2763,3,2,-1,1157862795,'cb710d03','f0ip88bf0@aol.com',1,0,1,0,NULL,0),(2764,10,3,-1,1157862974,'cb710d03','ptx1dktybxbui@tech.tv',1,0,1,0,NULL,0),(2765,39,1,-1,1157863047,'cb710d05','rc9@mail.ru',1,0,1,0,NULL,0),(2766,30,1,-1,1157863149,'cb710d05','z2vjhmly0bfajk@home.com',1,0,1,0,NULL,0),(2767,19,1,-1,1157863529,'cb710d04','as0@hotmail.com',1,0,1,0,NULL,0),(2768,35,1,-1,1157863764,'c1e3111e','ywv@classnet.pl',1,0,1,0,NULL,0),(2769,9,3,-1,1157864017,'c1e3111e','d8@classnet.pl',1,0,1,0,NULL,0),(2770,2,2,-1,1157864516,'cb710d04','yklkv09h@rocketmail.com',1,0,1,0,NULL,0),(2771,11,4,-1,1157864546,'cb710d04','uo2ggicly@come.to',1,0,1,0,NULL,0),(2772,45,1,-1,1157864680,'cb710d05','4davggwxqlmd@hotmail.com',1,0,1,0,NULL,0),(2773,38,1,-1,1157864855,'cb710d04','kl@arrivo.br',1,0,1,0,NULL,0),(2774,15,1,-1,1157865069,'555b92ce','om8w@see.to',1,0,1,0,NULL,0),(2775,30,1,-1,1157865161,'c1e3111e','qzhuu05@freemail.com',1,0,1,0,NULL,0),(2776,9,3,-1,1157865593,'c9119222','qe55j@classnet.pl',1,0,1,0,NULL,0),(2777,53,1,-1,1157865658,'cb710d05','9gpt54f3vo5rcw@mail.com',1,0,1,0,NULL,0),(2778,2,2,-1,1157865861,'cb710d03','pc5qjzide@usmail.com',1,0,1,0,NULL,0),(2779,2,2,-1,1157866047,'cb710d03','riwwpy6s0d@tech.tv',1,0,1,0,NULL,0),(2780,37,1,-1,1157866684,'cb710d04','oak82lgv@see.it',1,0,1,0,NULL,0),(2781,39,1,-1,1157866875,'cb710d03','1nw@see.it',1,0,1,0,NULL,0),(2782,40,1,-1,1157866924,'cb710d05','n816jr75eoaf@mail.com',1,0,1,0,NULL,0),(2783,40,1,-1,1157867196,'cb710d03','515yady88@mail.me',1,0,1,0,NULL,0),(2784,3,2,-1,1157867454,'cb710d04','f2kqzfu97v0inx@work.com',1,0,1,0,NULL,0),(2785,9,3,-1,1157867758,'c3807f05','a2m@mail.ru',1,0,1,0,NULL,0),(2786,55,3,-1,1157867938,'3e654b0e','qwu@work.com',1,0,1,0,NULL,0),(2787,42,3,-1,1157868228,'cb710d04','ajt21p1cgl@rocketmail.com',1,0,1,0,NULL,0),(2788,5,2,-1,1157871920,'181fcbdf','Lindadsv',1,0,1,0,NULL,0),(2789,107,3,-1,1157872614,'51a5c221','Jaimeeqc',1,0,1,0,NULL,0),(2790,53,1,-1,1157881421,'cb710d04','mgj@bigfoot.com',1,0,1,0,NULL,0),(2791,2,2,-1,1157881560,'cb710d05','xymtjtq@arrivo.br',1,0,1,0,NULL,0),(2792,9,3,-1,1157881705,'cb710d04','0u8@see.it',1,0,1,0,NULL,0),(2793,9,3,-1,1157881751,'c1e3111e','2d0@freemail.com',1,0,1,0,NULL,0),(2794,30,1,-1,1157882245,'c1e3111e','a8x9cdsgmbgkgc@freemail.c',1,0,1,0,NULL,0),(2795,42,3,-1,1157882261,'cb710d03','afe@aol.com',1,0,1,0,NULL,0),(2796,40,1,-1,1157882267,'cb710d0c','y10pn@classnet.pl',1,0,1,0,NULL,0),(2797,11,4,-1,1157882534,'cb710d05','60os@mail.nu',1,0,1,0,NULL,0),(2798,38,1,-1,1157882592,'dabdd7b6','ac@aol.com',1,0,1,0,NULL,0),(2799,39,1,-1,1157883279,'cb710d04','opx3gkt9y@arrivo.br',1,0,1,0,NULL,0),(2800,38,1,-1,1157883298,'cb710d05','4z11iqa0a73@mail.me',1,0,1,0,NULL,0),(2801,3,2,-1,1157883405,'cb710d0c','ctmn@mail.nu',1,0,1,0,NULL,0),(2802,4,2,-1,1157883427,'cb710d05','kot9im17j180@freemail.com',1,0,1,0,NULL,0),(2803,11,4,-1,1157883700,'de2d2408','arrr7lmru9qpqv@usmail.com',1,0,1,0,NULL,0),(2804,30,1,-1,1157883918,'de2d2408','w9fbzgok80@mail.com',1,0,1,0,NULL,0),(2805,39,1,-1,1157884158,'cb710d05','zxd8q2bxdp@see.it',1,0,1,0,NULL,0),(2806,19,1,-1,1157884423,'cb710d03','9janwfj68v@does.it',1,0,1,0,NULL,0),(2807,57,3,-1,1157884528,'cba2593d','pa97wpthimi@hotmail.com',1,0,1,0,NULL,0),(2808,35,1,-1,1157884541,'cb710d04','29fdq003wbfou50@mail.ru',1,0,1,0,NULL,0),(2809,53,1,-1,1157884657,'cb710d0c','ae@classnet.pl',1,0,1,0,NULL,0),(2810,57,3,-1,1157884838,'c8a8d67a','fy0d1zay@work.com',1,0,1,0,NULL,0),(2811,11,4,-1,1157885098,'cb710d03','p@come.to',1,0,1,0,NULL,0),(2812,45,1,-1,1157885288,'cb710d05','v@rocketmail.com',1,0,1,0,NULL,0),(2813,4,2,-1,1157885641,'cb710d04','j2bgi1hky08@come.to',1,0,1,0,NULL,0),(2814,42,3,-1,1157885714,'cb710d05','s8nzqm931ngu@tech.tv',1,0,1,0,NULL,0),(2815,39,1,-1,1157885956,'cb710d03','2nik7m25ldsfur@aol.com',1,0,1,0,NULL,0),(2816,9,3,-1,1157886328,'de2d2408','6m56@rocketmail.com',1,0,1,0,NULL,0),(2817,58,3,-1,1157886520,'cb710d05','wgga@pisem.net',1,0,1,0,NULL,0),(2818,37,1,-1,1157886957,'cb710d03','nekkb2g@mail.com',1,0,1,0,NULL,0),(2819,57,3,-1,1157887173,'cb710d0c','zbuqwub5q0qb@usmail.com',1,0,1,0,NULL,0),(2820,38,1,-1,1157887502,'cb710d03','hcj@mail.ru',1,0,1,0,NULL,0),(2821,39,1,-1,1157887654,'cb710d03','ckhwop785tu3@see.it',1,0,1,0,NULL,0),(2822,54,3,-1,1157888087,'cb710d03','uk@work.com',1,0,1,0,NULL,0),(2823,55,3,-1,1157888311,'cb710d0c','hw28vet9m71ifm@pisem.net',1,0,1,0,NULL,0),(2824,9,3,-1,1157888406,'cb710d05','3@mail.me',1,0,1,0,NULL,0),(2825,53,1,-1,1157892133,'cb710d03','0g1r2@mail.me',1,0,1,0,NULL,0),(2826,17,1,-1,1157892203,'dabdd7b6','h@arrivo.br',1,0,1,0,NULL,0),(2827,36,3,-1,1157892750,'cb710d04','mcdtxtrgx3ry9p5@tech.tv',1,0,1,0,NULL,0),(2828,42,3,-1,1157892992,'dc854c41','j8ujf3ihi@mail.ru',1,0,1,0,NULL,0),(2829,40,1,-1,1157893141,'cb710d05','qx0068t7chsrn0@mail.nu',1,0,1,0,NULL,0),(2830,40,1,-1,1157893328,'cb710d0c','l9@arrivo.br',1,0,1,0,NULL,0),(2831,150,1,86,1157894486,'c9d439ba','',1,0,1,0,NULL,0),(2832,57,3,-1,1157894499,'cb710d04','c91e94t53zpx1rp@mail.com',1,0,1,0,NULL,0),(2833,10,3,-1,1157894845,'cb710d0c','s3y76olz@tech.tv',1,0,1,0,NULL,0),(2834,52,3,-1,1157894899,'cb710d03','7vh8@mail.com',1,0,1,0,NULL,0),(2835,30,1,-1,1157894948,'cb710d05','tpcv42j35ix@pisem.net',1,0,1,0,NULL,0),(2836,30,1,-1,1157894970,'cb710d03','mr52@see.to',1,0,1,0,NULL,0),(2837,53,1,-1,1157895042,'cb710d04','1mbjz2vtxxb5p@see.to',1,0,1,0,NULL,0),(2838,5,2,-1,1157895631,'de2d2408','jc1pgwdsaxm@mail.com',1,0,1,0,NULL,0),(2839,19,1,-1,1157895662,'c1e3111e','z5x80dp0q14@yahoo.com',1,0,1,0,NULL,0),(2840,9,3,-1,1157896067,'cb710d05','exn68kp93@tech.tv',1,0,1,0,NULL,0),(2841,39,1,-1,1157896167,'cb710d0c','hi32ck1@bigfoot.com',1,0,1,0,NULL,0),(2842,57,3,-1,1157896459,'cb710d0c','tlwb8taeddkh@mail.me',1,0,1,0,NULL,0),(2843,17,1,-1,1157896903,'d572e4c2','nk8dj@rocketmail.com',1,0,1,0,NULL,0),(2844,45,1,-1,1157897087,'cb710d04','8zej3@mail.ru',1,0,1,0,NULL,0),(2845,37,1,-1,1157897108,'cb710d03','bt84ckw1om0x@mail.com',1,0,1,0,NULL,0),(2846,15,1,-1,1157897422,'cb710d03','dxv@yahoo.com',1,0,1,0,NULL,0),(2847,30,1,-1,1157897780,'cb710d03','r7rsifoh1gmpxow@arrivo.br',1,0,1,0,NULL,0),(2848,9,3,-1,1157897983,'cb710d0c','yqimv58v@come.to',1,0,1,0,NULL,0),(2849,53,1,-1,1157897999,'cb710d05','r6cf@tech.tv',1,0,1,0,NULL,0),(2850,2,2,-1,1157898169,'cb710d03','e45csznh0iwcj@come.to',1,0,1,0,NULL,0),(2851,151,2,-1,1157899062,'cb710d03','zute@bigfoot.com',1,0,1,0,NULL,0),(2852,37,1,-1,1157899411,'d572e4c2','6m1bpmv@mail.me',1,0,1,0,NULL,0),(2853,19,1,-1,1157899512,'cb710d0c','ihsuuztmdi41wo@bigfoot.co',1,0,1,0,NULL,0),(2854,40,1,-1,1157899529,'cb710d03','zxhl8@see.it',1,0,1,0,NULL,0),(2855,3,2,-1,1157899704,'cb710d03','zhht02eop7ncs@pisem.net',1,0,1,0,NULL,0),(2856,40,1,-1,1157899998,'cb710d05','3rmnng83is@usmail.com',1,0,1,0,NULL,0),(2857,3,2,-1,1157900428,'cb710d04','nghiy03t0bey6@rocketmail.',1,0,1,0,NULL,0),(2858,31,1,-1,1157900523,'cb710d04','vbrwqu3jo1g@pisem.net',1,0,1,0,NULL,0),(2859,2,2,-1,1157900567,'cb710d0c','f3s1phrz9x2s@tech.tv',1,0,1,0,NULL,0),(2860,150,1,38,1157901578,'5870bc26','',1,0,1,1,NULL,0),(2861,3,2,38,1157901795,'5870bc26','',1,0,1,1,NULL,0),(2862,5,2,-1,1157909980,'444b1580','Vickilmk',1,0,1,0,NULL,0),(2863,107,3,-1,1157910665,'461b1668','Bobbyctq',1,0,1,0,NULL,0),(2864,56,3,-1,1157912618,'3af68803','',1,0,1,1,NULL,0),(2865,152,4,-1,1157912636,'3af68803','',1,0,1,1,NULL,0),(2866,153,3,-1,1157912687,'3af68803','',1,0,1,1,NULL,0),(2867,154,3,-1,1157922141,'cb710d04','Topment',1,0,1,0,NULL,0),(2868,107,3,-1,1157922426,'55ff71b7','hedPcAkBjf',1,0,1,0,NULL,0),(2869,11,4,-1,1157924111,'55ff71b9','kLonyAxUPQ',1,0,1,0,NULL,0),(2870,38,1,-1,1157928439,'cb710d03','gjc1uhn@usmail.com',1,0,1,0,NULL,0),(2871,37,1,-1,1157928792,'d257fb6b','6e@freemail.com',1,0,1,0,NULL,0),(2872,9,3,-1,1157928816,'cb710d04','ik8@bigfoot.com',1,0,1,0,NULL,0),(2873,15,1,-1,1157928991,'cb710d0c','h5w@mail.me',1,0,1,0,NULL,0),(2874,42,3,-1,1157929089,'3d880c4c','e72doofduu6xf@aol.com',1,0,1,0,NULL,0),(2875,40,1,-1,1157929146,'cb710d03','ug490@hotmail.com',1,0,1,0,NULL,0),(2876,11,4,-1,1157929219,'cb710d05','cgz@freemail.com',1,0,1,0,NULL,0),(2877,2,2,-1,1157929263,'cb710d0c','pft4rzjxzn43knt@come.to',1,0,1,0,NULL,0),(2878,5,2,-1,1157929296,'53213e7b','Soniapfs',1,0,1,0,NULL,0),(2879,5,2,-1,1157929326,'4356f36d','Soniapfs',1,0,1,0,NULL,0),(2880,57,3,-1,1157929635,'cba2593d','bwg@hotmail.com',1,0,1,0,NULL,0),(2881,35,1,-1,1157929801,'52e360d9','w0yrwa8oh@rocketmail.com',1,0,1,0,NULL,0),(2882,107,3,-1,1157929890,'44c58522','Stacympz',1,0,1,0,NULL,0),(2883,14,1,-1,1157929963,'cb710d05','nvqpjle4gdhmm@classnet.pl',1,0,1,0,NULL,0),(2884,3,2,-1,1157930067,'cb710d04','qkb@freemail.com',1,0,1,0,NULL,0),(2885,4,2,-1,1157930122,'cb710d04','kmlrbt9i@mail.ru',1,0,1,0,NULL,0),(2886,10,3,-1,1157930246,'cb710d05','j8cxiljacpnv2r@mail.ru',1,0,1,0,NULL,0),(2887,57,3,-1,1157930283,'cb710d04','3@classnet.pl',1,0,1,0,NULL,0),(2888,52,3,-1,1157930352,'cb710d03','lu3tkewxk6vu@bigfoot.com',1,0,1,0,NULL,0),(2889,39,1,-1,1157930593,'da1c2ef4','8wllbv29zzj@mail.me',1,0,1,0,NULL,0),(2890,39,1,-1,1157930609,'dbf8d212','8wllbv29zzj@mail.me',1,0,1,0,NULL,0),(2891,35,1,-1,1157930843,'cb710d0c','lm@arrivo.br',1,0,1,0,NULL,0),(2892,19,1,-1,1157930886,'cb710d04','7zvy0noh@freemail.com',1,0,1,0,NULL,0),(2893,2,2,-1,1157930950,'d257fb29','7mcpyeq2lcacm3@tech.tv',1,0,1,0,NULL,0),(2894,57,3,-1,1157930959,'cb710d03','460px48@bigfoot.com',1,0,1,0,NULL,0),(2895,2,2,-1,1157931532,'cb710d05','m@mail.nu',1,0,1,0,NULL,0),(2896,45,1,-1,1157931679,'cb710d0c','in0u8wf5mm8ycn0@bigfoot.c',1,0,1,0,NULL,0),(2897,17,1,-1,1157931695,'cb710d03','aho3513hmt0r7@rocketmail.',1,0,1,0,NULL,0),(2898,11,4,-1,1157931732,'cb710d04','64ip2a4m3dwnjo@freemail.c',1,0,1,0,NULL,0),(2899,42,3,-1,1157932023,'c1e3111e','mcxjkug3i@rocketmail.com',1,0,1,0,NULL,0),(2900,37,1,-1,1157932821,'cb710d0c','jplyb7u0h@pisem.net',1,0,1,0,NULL,0),(2901,19,1,-1,1157933073,'cb710d03','vm@see.it',1,0,1,0,NULL,0),(2902,37,1,-1,1157933106,'cb710d03','cu@work.com',1,0,1,0,NULL,0),(2903,38,1,-1,1157933229,'3d880c4c','9z0m9q24sonm@tech.tv',1,0,1,0,NULL,0),(2904,53,1,-1,1157933766,'cb710d0c','2h0hek5b@tech.tv',1,0,1,0,NULL,0),(2905,40,1,-1,1157933878,'de2d2408','u@freemail.com',1,0,1,0,NULL,0),(2906,2,2,-1,1157934308,'cb710d04','3sws25u@mail.com',1,0,1,0,NULL,0),(2907,17,1,-1,1157945865,'cb710d05','nm4c1jd@usmail.com',1,0,1,0,NULL,0),(2908,53,1,-1,1157946137,'cb710d04','chv9i@yahoo.com',1,0,1,0,NULL,0),(2909,37,1,-1,1157946254,'c1e3111e','djmijnqpb14ba81@usmail.co',1,0,1,0,NULL,0),(2910,36,3,-1,1157946755,'cb710d04','7x0l4r2@home.com',1,0,1,0,NULL,0),(2911,2,2,-1,1157947055,'cb710d05','z7vio@come.to',1,0,1,0,NULL,0),(2912,30,1,-1,1157947095,'cb710d05','zl07h@mail.com',1,0,1,0,NULL,0),(2913,57,3,-1,1157947235,'da4b5725','89elv@mail.com',1,0,1,0,NULL,0),(2914,3,2,-1,1157947713,'cb710d05','l@aol.com',1,0,1,0,NULL,0),(2915,10,3,-1,1157947958,'cb710d05','zkndf62c8iedoq@freemail.c',1,0,1,0,NULL,0),(2916,39,1,-1,1157948288,'cb710d05','fhq0e9@yahoo.com',1,0,1,0,NULL,0),(2917,3,2,-1,1157948348,'cb710d03','sabeq965tpawkx@arrivo.br',1,0,1,0,NULL,0),(2918,35,1,-1,1157948463,'cb710d04','4o2dac12btag@usmail.com',1,0,1,0,NULL,0),(2919,53,1,-1,1157948586,'3e08cbe2','x2i23yttty5hgh9@tech.tv',1,0,1,0,NULL,0),(2920,5,2,-1,1157948590,'cb710d03','0m37z8ycq4jb9q2@mail.nu',1,0,1,0,NULL,0),(2921,57,3,-1,1157948618,'cb710d05','agryetgyvg@usmail.com',1,0,1,0,NULL,0),(2922,10,3,-1,1157948646,'cb710d04','mx3ifty4uu97i@usmail.com',1,0,1,0,NULL,0),(2923,2,2,-1,1157948787,'d257fb29','camxp2ziviqxe@does.it',1,0,1,0,NULL,0),(2924,57,3,-1,1157948815,'cb710d05','7fvcp8x02e@aol.com',1,0,1,0,NULL,0),(2925,45,1,-1,1157949160,'cba2593d','m@see.it',1,0,1,0,NULL,0),(2926,38,1,-1,1157949211,'cb710d05','s2nlr4dbt95kycg@usmail.co',1,0,1,0,NULL,0),(2927,2,2,-1,1157949265,'cb710d04','cvz@see.it',1,0,1,0,NULL,0),(2928,42,3,-1,1157949270,'cb710d05','4kzx7m14o9pz5l2@see.to',1,0,1,0,NULL,0),(2929,37,1,-1,1157949298,'cb710d05','y@bigfoot.com',1,0,1,0,NULL,0),(2930,53,1,-1,1157949927,'cb710d05','ui518yqd18@hotmail.com',1,0,1,0,NULL,0),(2931,2,2,-1,1157949985,'3a4a9f0e','mvaoop@rocketmail.com',1,0,1,0,NULL,0),(2932,57,3,-1,1157950140,'cb710d04','mzbi7zzp5g@arrivo.br',1,0,1,0,NULL,0),(2933,37,1,-1,1157950358,'cb710d05','h5ryv4fjneujjzt@pisem.net',1,0,1,0,NULL,0),(2934,57,3,-1,1157950436,'cb710d05','inbap@rocketmail.com',1,0,1,0,NULL,0),(2935,37,1,-1,1157950568,'cb710d05','sck8@hotmail.com',1,0,1,0,NULL,0),(2936,19,1,-1,1157950819,'cb710d0c','f6@hotmail.com',1,0,1,0,NULL,0),(2937,9,3,-1,1157950868,'cb710d04','h7cyc@does.it',1,0,1,0,NULL,0),(2938,3,2,-1,1157951312,'cb710d04','gwn@bigfoot.com',1,0,1,0,NULL,0),(2939,3,2,-1,1157968555,'cb710d03','ultram@hotmail.com',1,0,1,0,NULL,0),(2940,11,4,-1,1157981716,'cb710d05','28lpaa@home.com',1,0,1,0,NULL,0),(2941,9,3,-1,1157982045,'cb710d0c','wxri@come.to',1,0,1,0,NULL,0),(2942,15,1,-1,1157982153,'cb710d05','f1q77i75uksrk8@see.it',1,0,1,0,NULL,0),(2943,9,3,-1,1157982171,'cb710d05','5lrr11q@rocketmail.com',1,0,1,0,NULL,0),(2944,2,2,-1,1157982351,'c88eb338','frwjh@usmail.com',1,0,1,0,NULL,0),(2945,27,1,-1,1157982771,'cb710d0c','e6o7aqfncu@see.it',1,0,1,0,NULL,0),(2946,57,3,-1,1157982908,'cb710d05','ua87ty@home.com',1,0,1,0,NULL,0),(2947,4,2,-1,1157983007,'cb710d0c','stclgbfhadlz@mail.nu',1,0,1,0,NULL,0),(2948,3,2,-1,1157983219,'cb710d05','fnzthw9ld5l3w@pisem.net',1,0,1,0,NULL,0),(2949,11,4,-1,1157983344,'cb710d05','xhx3rklb57c8@mail.me',1,0,1,0,NULL,0),(2950,3,2,-1,1157983500,'cb710d0c','z5rq17@mail.me',1,0,1,0,NULL,0),(2951,10,3,-1,1157983990,'cb710d05','wnxv8mdoz@usmail.com',1,0,1,0,NULL,0),(2952,11,4,-1,1157984012,'55ff71b7','SpLcbxUZBf',1,0,1,0,NULL,0),(2953,39,1,-1,1157984058,'cb710d0c','mkuet@come.to',1,0,1,0,NULL,0),(2954,9,3,-1,1157984121,'cb710d0c','hxhqc6m@aol.com',1,0,1,0,NULL,0),(2955,11,4,-1,1157984166,'55ff71b2','KYOnxTRAPg',1,0,1,0,NULL,0),(2956,3,2,-1,1157984253,'cb710d05','rmnfjs@freemail.com',1,0,1,0,NULL,0),(2957,2,2,-1,1157984544,'cb710d0c','rm4@mail.com',1,0,1,0,NULL,0),(2958,38,1,-1,1157984619,'d3305666','huwntpboih@yahoo.com',1,0,1,0,NULL,0),(2959,30,1,-1,1157984842,'cb710d0c','os2i5z5h0j9@mail.com',1,0,1,0,NULL,0),(2960,42,3,-1,1157985072,'cb710d05','3seippmbld@come.to',1,0,1,0,NULL,0),(2961,39,1,-1,1157985095,'d3305666','95131z8qbmphupv@mail.nu',1,0,1,0,NULL,0),(2962,57,3,-1,1157985243,'3cbffb09','6vcv92@mail.me',1,0,1,0,NULL,0),(2963,58,3,-1,1157985350,'cb710d0c','snnw5t@tech.tv',1,0,1,0,NULL,0),(2964,37,1,-1,1157985607,'cb710d05','aw@rocketmail.com',1,0,1,0,NULL,0),(2965,2,2,-1,1157985620,'d257fb6f','iszeyxj61on@work.com',1,0,1,0,NULL,0),(2966,57,3,-1,1157985728,'cb710d05','noccgz@home.com',1,0,1,0,NULL,0),(2967,57,3,-1,1157985980,'da107a58','7us5u2qeajt@home.com',1,0,1,0,NULL,0),(2968,155,2,-1,1157985990,'cb710d05','wzrt@pisem.net',1,0,1,0,NULL,0),(2969,31,1,-1,1157986490,'cb710d05','vyu1@classnet.pl',1,0,1,0,NULL,0),(2970,40,1,-1,1157986503,'cb710d0c','l@see.to',1,0,1,0,NULL,0),(2971,55,3,-1,1157986744,'cb710d05','j7fkplws@yahoo.com',1,0,1,0,NULL,0),(2972,3,2,-1,1157986795,'cb710d05','mh4xgulacgy@hotmail.com',1,0,1,0,NULL,0),(2973,29,3,-1,1157986803,'de6c3fad','f064z8tv@come.to',1,0,1,0,NULL,0),(2974,29,3,-1,1157986807,'dbff41c2','f064z8tv@come.to',1,0,1,0,NULL,0),(2975,3,2,-1,1157986854,'44742703','9h0dqzjrusj@arrivo.br',1,0,1,0,NULL,0),(2976,2,2,-1,1157987078,'c18c802e','w6a@mail.nu',1,0,1,0,NULL,0),(2977,107,3,-1,1157987426,'55ff71b8','OzXSfhQApu',1,0,1,0,NULL,0),(2978,11,4,-1,1157988070,'55ff71b8','PGyTNlsJip',1,0,1,0,NULL,0),(2979,11,4,-1,1157988147,'55ff71b2','LoqmVazteI',1,0,1,0,NULL,0),(2980,38,1,-1,1157990422,'cb710d0c','dsxj2rt@does.it',1,0,1,0,NULL,0),(2981,2,2,-1,1157991120,'cb710d0c','1q6nkwiia@see.to',1,0,1,0,NULL,0),(2982,53,1,-1,1157991139,'d3b20746','izb@come.to',1,0,1,0,NULL,0),(2983,11,4,-1,1157991211,'55ff71b7','mfVeYQKAIy',1,0,1,0,NULL,0),(2984,36,3,-1,1157991541,'dc47302e','btqx3d6nct@bigfoot.com',1,0,1,0,NULL,0),(2985,42,3,-1,1157991684,'cb710d0c','zwc@see.to',1,0,1,0,NULL,0),(2986,40,1,-1,1157991785,'44742703','ux7pr9pmz6@aol.com',1,0,1,0,NULL,0),(2987,57,3,-1,1157992110,'cb710d05','s2r2xxbn3osb@mail.com',1,0,1,0,NULL,0),(2988,30,1,-1,1157992187,'de2d2408','n0jb38@arrivo.br',1,0,1,0,NULL,0),(2989,38,1,-1,1157992315,'44742703','xgfev@usmail.com',1,0,1,0,NULL,0),(2990,14,1,-1,1157992460,'cb710d05','e2dqf7k1@come.to',1,0,1,0,NULL,0),(2991,57,3,-1,1157992606,'cb710d0c','6cy4bim@mail.com',1,0,1,0,NULL,0),(2992,35,1,-1,1157992664,'c925e416','5o82qnhf5z@mail.nu',1,0,1,0,NULL,0),(2993,4,2,-1,1157992707,'cbe42f0c','pko8@rocketmail.com',1,0,1,0,NULL,0),(2994,4,2,-1,1157992712,'db9f49c9','pko8@rocketmail.com',1,0,1,0,NULL,0),(2995,11,4,-1,1157992879,'cb710d05','echkk7atly@tech.tv',1,0,1,0,NULL,0),(2996,3,2,-1,1157992918,'cb710d0c','392wmpa5j8vas@does.it',1,0,1,0,NULL,0),(2997,30,1,-1,1157993008,'cb710d0c','4@aol.com',1,0,1,0,NULL,0),(2998,57,3,-1,1157993037,'cb710d0c','z@bigfoot.com',1,0,1,0,NULL,0),(2999,19,1,-1,1157993464,'cb710d05','5@does.it',1,0,1,0,NULL,0),(3000,9,3,-1,1157993631,'cb710d0c','7n2wy3fj@see.it',1,0,1,0,NULL,0),(3001,10,3,-1,1157993731,'cb710d0c','wt2aljxka@see.it',1,0,1,0,NULL,0),(3002,3,2,-1,1157993777,'cb710d05','wqmjhzw4@freemail.com',1,0,1,0,NULL,0),(3003,11,4,-1,1157993963,'cb710d03','ctojs4m8@usmail.com',1,0,1,0,NULL,0),(3004,2,2,-1,1157994077,'cb710d0c','fhkc50ur@aol.com',1,0,1,0,NULL,0),(3005,45,1,-1,1157994306,'44742703','lmu6zo@arrivo.br',1,0,1,0,NULL,0),(3006,53,1,-1,1157994740,'cb710d05','m5hr78tkw9dmijn@come.to',1,0,1,0,NULL,0),(3007,57,3,-1,1157995176,'cb710d05','y1zt@come.to',1,0,1,0,NULL,0),(3008,2,2,-1,1157995282,'cb710d03','94dx4b17x8bsjy8@mail.ru',1,0,1,0,NULL,0),(3009,57,3,-1,1157995291,'d3a23ea1','txehd6u81xpympc@yahoo.com',1,0,1,0,NULL,0),(3010,37,1,-1,1157995743,'d4e35d14','gl6est@yahoo.com',1,0,1,0,NULL,0),(3011,37,1,-1,1157996037,'cb710d0c','8chmv@does.it',1,0,1,0,NULL,0),(3012,3,2,-1,1157996817,'cb710d0c','5z846lu1kfahf9v@see.it',1,0,1,0,NULL,0),(3013,29,3,-1,1157996837,'d3a23ea1','5mkav@hotmail.com',1,0,1,0,NULL,0),(3014,2,2,-1,1157997057,'d3305666','n@usmail.com',1,0,1,0,NULL,0),(3015,11,4,-1,1158005722,'55ff71b7','LQNaBhnTzY',1,0,1,0,NULL,0),(3016,38,1,-1,1158008309,'cb710d05','dh54vfkquyraf@rocketmail.',1,0,1,0,NULL,0),(3017,11,4,-1,1158008357,'cb710d03','pcanv82knooy@aol.com',1,0,1,0,NULL,0),(3018,37,1,-1,1158008437,'551911d2','ld6i@see.it',1,0,1,0,NULL,0),(3019,2,2,-1,1158008451,'3deb692d','0qpthd8@freemail.com',1,0,1,0,NULL,0),(3020,57,3,-1,1158009429,'dde021e3','dxbx684w31ie6@mail.ru',1,0,1,0,NULL,0),(3021,30,1,-1,1158009490,'c18c802e','ariey9i73uyrhx@bigfoot.co',1,0,1,0,NULL,0),(3022,27,1,-1,1158009710,'da1c023e','r2@mail.ru',1,0,1,0,NULL,0),(3023,57,3,-1,1158009905,'cb710d04','wrz@usmail.com',1,0,1,0,NULL,0),(3024,11,4,-1,1158010170,'d3305666','cx2r6v4w@tech.tv',1,0,1,0,NULL,0),(3025,53,1,-1,1158010556,'d3a23ea1','o8@mail.com',1,0,1,0,NULL,0),(3026,30,1,-1,1158010613,'da1c023e','bxg@mail.ru',1,0,1,0,NULL,0),(3027,52,3,-1,1158010648,'dbdf7a14','ba8@see.it',1,0,1,0,NULL,0),(3028,39,1,-1,1158010790,'cbbefa6a','e5xz2e0ts@aol.com',1,0,1,0,NULL,0),(3029,45,1,-1,1158011782,'da4b5725','lp@hotmail.com',1,0,1,0,NULL,0),(3030,38,1,-1,1158012025,'cb710d04','ju@home.com',1,0,1,0,NULL,0),(3031,4,2,-1,1158012184,'cb710d04','55563xcirsv@arrivo.br',1,0,1,0,NULL,0),(3032,30,1,-1,1158012265,'cb710d05','xziu@pisem.net',1,0,1,0,NULL,0),(3033,42,3,-1,1158012303,'c9f5a302','caedlze@come.to',1,0,1,0,NULL,0),(3034,9,3,-1,1158012391,'cb710d03','rsbw0cmf@usmail.com',1,0,1,0,NULL,0),(3035,53,1,-1,1158012618,'cb710d04','b97qz@arrivo.br',1,0,1,0,NULL,0),(3036,2,2,-1,1158012845,'cb710d05','xnm6jb@work.com',1,0,1,0,NULL,0),(3037,57,3,-1,1158012889,'d3305666','9cfl86udu0g4h9@arrivo.br',1,0,1,0,NULL,0),(3038,2,2,-1,1158012922,'da0bcff4','97dsjc4hk6h1d@mail.nu',1,0,1,0,NULL,0),(3039,57,3,-1,1158013282,'d4e35d14','oxgc8a03@arrivo.br',1,0,1,0,NULL,0),(3040,57,3,-1,1158013358,'da107a58','ici@yahoo.com',1,0,1,0,NULL,0),(3041,19,1,-1,1158013606,'c18c802e','le@see.to',1,0,1,0,NULL,0),(3042,38,1,-1,1158013648,'c91476cc','kollslndkv@mail.ru',1,0,1,0,NULL,0),(3043,40,1,-1,1158013805,'dde021e3','j@hotmail.com',1,0,1,0,NULL,0),(3044,3,2,-1,1158014011,'da107a58','no9wy@mail.ru',1,0,1,0,NULL,0),(3045,40,1,-1,1158014050,'cb710d05','9r55nhk@see.to',1,0,1,0,NULL,0),(3046,3,2,-1,1158014296,'44742703','2tdre3a@classnet.pl',1,0,1,0,NULL,0),(3047,2,2,-1,1158015057,'c18c802e','d@mail.me',1,0,1,0,NULL,0),(3048,3,2,-1,1158017151,'cb710d05','adipex@hotmail.com',1,0,1,0,NULL,0),(3049,5,2,-1,1158021743,'46e1bcf9','Tomxwf',1,0,1,0,NULL,0),(3050,107,3,-1,1158022600,'48e19778','Laurawtd',1,0,1,0,NULL,0),(3051,38,1,-1,1158036365,'d9abb006','r38o8otqq@see.it',1,0,1,0,NULL,0),(3052,11,4,-1,1158036813,'3deef456','gjtwkz68lc@home.com',1,0,1,0,NULL,0),(3053,2,2,-1,1158036916,'c18c802e','e@see.to',1,0,1,0,NULL,0),(3054,9,3,-1,1158037133,'cb710d03','qce4j5bd7kj@freemail.com',1,0,1,0,NULL,0),(3055,15,1,-1,1158037164,'cb710d04','8bo2h1c2yqwe@see.to',1,0,1,0,NULL,0),(3056,36,3,-1,1158037292,'c18c802e','1piifus7@hotmail.com',1,0,1,0,NULL,0),(3057,40,1,-1,1158037367,'3e7523c4','0esqvye2r4@hotmail.com',1,0,1,0,NULL,0),(3058,2,2,-1,1158037523,'3b0dc795','vi0np0@see.it',1,0,1,0,NULL,0),(3059,55,3,-1,1158037634,'cb710d05','iqlcaou5uaqq@freemail.com',1,0,1,0,NULL,0),(3060,40,1,-1,1158037663,'551911d2','cp@mail.com',1,0,1,0,NULL,0),(3061,3,2,-1,1158037766,'551911d2','wqb8rdy8@come.to',1,0,1,0,NULL,0),(3062,38,1,-1,1158037833,'cbbefa6a','lpcplhn7l27a6i@does.it',1,0,1,0,NULL,0),(3063,3,2,-1,1158038085,'da05bf7e','hj9gdjklcvebfvf@yahoo.com',1,0,1,0,NULL,0),(3064,35,1,-1,1158038088,'c18c802e','my65w33fq0@usmail.com',1,0,1,0,NULL,0),(3065,30,1,-1,1158038415,'cb710d05','zr@yahoo.com',1,0,1,0,NULL,0),(3066,3,2,-1,1158038532,'d431555e','0vmm7w4zuwtzi@come.to',1,0,1,0,NULL,0),(3067,57,3,-1,1158038555,'cbbefa6a','hlx41@usmail.com',1,0,1,0,NULL,0),(3068,35,1,-1,1158038861,'c18c802e','d@mail.nu',1,0,1,0,NULL,0),(3069,10,3,-1,1158038985,'551911d2','iqlxkxr9gu4sp@rocketmail.',1,0,1,0,NULL,0),(3070,17,1,-1,1158039164,'c18c802e','0jrstl@freemail.com',1,0,1,0,NULL,0),(3071,2,2,-1,1158039397,'cb710d04','7y49y1oss9@home.com',1,0,1,0,NULL,0),(3072,45,1,-1,1158039400,'c18c802e','xawd9@classnet.pl',1,0,1,0,NULL,0),(3073,38,1,-1,1158039495,'c18c802e','5fzv@usmail.com',1,0,1,0,NULL,0),(3074,37,1,-1,1158039626,'cb710d04','t0tb76kxiy2c@mail.ru',1,0,1,0,NULL,0),(3075,42,3,-1,1158039913,'db9f49c9','fzbjindu1kyyc0@tech.tv',1,0,1,0,NULL,0),(3076,2,2,-1,1158039936,'cb710d04','k5l@aol.com',1,0,1,0,NULL,0),(3077,9,3,-1,1158039976,'c18c802e','tm@freemail.com',1,0,1,0,NULL,0),(3078,57,3,-1,1158040177,'5827875a','eqw5zb@bigfoot.com',1,0,1,0,NULL,0),(3079,53,1,-1,1158040210,'cb710d05','ausot@bigfoot.com',1,0,1,0,NULL,0),(3080,37,1,-1,1158040248,'cb710d05','7m63@come.to',1,0,1,0,NULL,0),(3081,39,1,-1,1158041008,'cb710d04','xse@see.to',1,0,1,0,NULL,0),(3082,55,3,-1,1158041212,'c18c802e','j17i0@see.to',1,0,1,0,NULL,0),(3083,40,1,-1,1158041307,'cb710d05','f4nrij@work.com',1,0,1,0,NULL,0),(3084,29,3,-1,1158041485,'cb710d04','vp6qmm61m75vpko@bigfoot.c',1,0,1,0,NULL,0),(3085,42,3,-1,1158041825,'cbbefa6a','jmaw1s0qwp840kb@freemail.',1,0,1,0,NULL,0),(3086,5,2,-1,1158045559,'47ca0682','Aprilkkd',1,0,1,0,NULL,0),(3087,38,1,-1,1158047234,'cb710d04','2k@mail.com',1,0,1,0,NULL,0),(3088,11,4,-1,1158047522,'cbbefa6a','hmadgs73ivp0u3@home.com',1,0,1,0,NULL,0),(3089,42,3,-1,1158047987,'3d880c4b','hn0opcjmyhtk@see.it',1,0,1,0,NULL,0),(3090,15,1,-1,1158048015,'da38902a','lhvogn0@come.to',1,0,1,0,NULL,0),(3091,40,1,-1,1158048241,'d3d71149','ihgl24c@does.it',1,0,1,0,NULL,0),(3092,55,3,-1,1158048346,'cb710d05','g472dgz41qn1o92@rocketmai',1,0,1,0,NULL,0),(3093,57,3,-1,1158048372,'d9abb006','06209pp4tp@mail.ru',1,0,1,0,NULL,0),(3094,35,1,-1,1158048487,'da4b5725','7225d7@come.to',1,0,1,0,NULL,0),(3095,11,4,-1,1158048756,'cb710d05','a00svao8aj@home.com',1,0,1,0,NULL,0),(3096,57,3,-1,1158048859,'cbbefa6a','iq9xmn2ngewn8@home.com',1,0,1,0,NULL,0),(3097,52,3,-1,1158049100,'c18c802e','n81ru5cwvrep@freemail.com',1,0,1,0,NULL,0),(3098,57,3,-1,1158049197,'da0bcff4','djngcbylgcbz7@see.to',1,0,1,0,NULL,0),(3099,19,1,-1,1158049346,'cbbefa6a','r46bhhpgpertv5g@does.it',1,0,1,0,NULL,0),(3100,39,1,-1,1158049624,'cb710d04','2@usmail.com',1,0,1,0,NULL,0),(3101,35,1,-1,1158049698,'cbbefa6a','d46g@come.to',1,0,1,0,NULL,0),(3102,53,1,-1,1158049777,'cb710d04','p06ho8hjdmzrvc0@see.it',1,0,1,0,NULL,0),(3103,10,3,-1,1158049839,'551911d2','w7e9soqrx1iw@freemail.com',1,0,1,0,NULL,0),(3104,45,1,-1,1158050257,'3db9dbeb','6jjvgv30ye@mail.me',1,0,1,0,NULL,0),(3105,45,1,-1,1158050277,'cb710d04','3w8ydwlcpbn9@come.to',1,0,1,0,NULL,0),(3106,37,1,-1,1158050369,'18eff84f','irbkegp77eh0p45@come.to',1,0,1,0,NULL,0),(3107,39,1,-1,1158050492,'cb710d04','enh@see.it',1,0,1,0,NULL,0),(3108,4,2,-1,1158050564,'44742703','lvj@mail.ru',1,0,1,0,NULL,0),(3109,15,1,-1,1158050650,'cb710d03','xtaw@rocketmail.com',1,0,1,0,NULL,0),(3110,30,1,-1,1158050843,'cb710d05','10u1gbazfjcde@classnet.pl',1,0,1,0,NULL,0),(3111,2,2,-1,1158050951,'d3a23ea1','d2vxb3znuu@hotmail.com',1,0,1,0,NULL,0),(3112,57,3,-1,1158051121,'da0bcff4','v3y0a1y@rocketmail.com',1,0,1,0,NULL,0),(3113,38,1,-1,1158051335,'cb710d04','h@home.com',1,0,1,0,NULL,0),(3114,57,3,-1,1158051438,'cbfd4b92','1oiwt47ru@rocketmail.com',1,0,1,0,NULL,0),(3115,156,2,-1,1158051699,'cb710d03','ns67m@come.to',1,0,1,0,NULL,0),(3116,11,4,-1,1158051805,'55ff71b2','fcTohlKsaS',1,0,1,0,NULL,0),(3117,40,1,-1,1158051847,'cb710d04','oc@mail.com',1,0,1,0,NULL,0),(3118,39,1,-1,1158051940,'cbbefa6a','36x9v@hotmail.com',1,0,1,0,NULL,0),(3119,40,1,-1,1158052003,'cb710d03','hcoqcb91b83irrf@see.it',1,0,1,0,NULL,0),(3120,54,3,-1,1158052192,'cb710d05','ngx19c3wqegr@come.to',1,0,1,0,NULL,0),(3121,55,3,-1,1158052194,'cb710d04','so68jk0@usmail.com',1,0,1,0,NULL,0),(3122,3,2,-1,1158052373,'cb710d04','5f4gvpeut@come.to',1,0,1,0,NULL,0),(3123,9,3,-1,1158052430,'cb710d03','swnvy@rocketmail.com',1,0,1,0,NULL,0),(3124,2,2,-1,1158052646,'a5e52f7d','4vf1@mail.com',1,0,1,0,NULL,0),(3125,42,3,-1,1158052819,'cb710d04','1jemwbpx6@see.it',1,0,1,0,NULL,0),(3126,11,4,-1,1158066037,'55ff71b7','pxVayFfXws',1,0,1,0,NULL,0),(3127,3,2,-1,1158066799,'cb710d04','bingo@hotmail.com',1,0,1,0,NULL,0),(3128,11,4,-1,1158067389,'55ff71b7','ZSoVkCOjdB',1,0,1,0,NULL,0),(3129,11,4,-1,1158068879,'55ff71b9','OzxehRAEpc',1,0,1,0,NULL,0),(3130,11,4,-1,1158069063,'55ff71b7','ZkAhceOJiy',1,0,1,0,NULL,0),(3131,11,4,-1,1158070558,'55ff71b8','arHYRlfuzn',1,0,1,0,NULL,0),(3132,38,1,-1,1158072253,'cb710d04','axi@tech.tv',1,0,1,0,NULL,0),(3133,53,1,-1,1158072489,'cb710d04','yp0aex8tz@see.to',1,0,1,0,NULL,0),(3134,11,4,-1,1158072636,'db9f49c9','y1cmqt@rocketmail.com',1,0,1,0,NULL,0),(3135,37,1,-1,1158072780,'cb710d03','vfcom4x2m@arrivo.br',1,0,1,0,NULL,0),(3136,2,2,-1,1158073055,'cb710d03','m@see.to',1,0,1,0,NULL,0),(3137,55,3,-1,1158073328,'cb710d03','vqfsch0y@tech.tv',1,0,1,0,NULL,0),(3138,3,2,-1,1158073529,'cb710d03','3bdjst@see.it',1,0,1,0,NULL,0),(3139,4,2,-1,1158073831,'cb710d03','lvtvuk68nkcjr@mail.ru',1,0,1,0,NULL,0),(3140,35,1,-1,1158073876,'cb710d04','vib9@freemail.com',1,0,1,0,NULL,0),(3141,3,2,-1,1158073933,'cb710d04','02hsp08zx7@pisem.net',1,0,1,0,NULL,0),(3142,53,1,-1,1158074123,'cb710d04','4y5rk51o9i0xc3g@rocketmai',1,0,1,0,NULL,0),(3143,11,4,-1,1158074427,'55ff71b7','UjvzEqDVan',1,0,1,0,NULL,0),(3144,5,2,-1,1158074569,'cb710d04','ywh@does.it',1,0,1,0,NULL,0),(3145,35,1,-1,1158074680,'da4b5725','voj5eovr1@rocketmail.com',1,0,1,0,NULL,0),(3146,11,4,-1,1158074774,'55ff71b8','LqYyIiaZmj',1,0,1,0,NULL,0),(3147,39,1,-1,1158074793,'cb710d04','ni6tyi@work.com',1,0,1,0,NULL,0),(3148,39,1,-1,1158074834,'cb710d03','me@mail.me',1,0,1,0,NULL,0),(3149,57,3,-1,1158074861,'cb710d03','f36juxd@home.com',1,0,1,0,NULL,0),(3150,53,1,-1,1158074971,'cb710d04','89nyugwuja1p@usmail.com',1,0,1,0,NULL,0),(3151,3,2,-1,1158074976,'cb710d03','fooqh6f0y@mail.me',1,0,1,0,NULL,0),(3152,57,3,-1,1158075261,'cb710d05','2ne0oj6t@mail.me',1,0,1,0,NULL,0),(3153,11,4,-1,1158075269,'55ff71b7','GhPbWHIMBd',1,0,1,0,NULL,0),(3154,45,1,-1,1158075423,'3db9dbeb','q6gbo1qd@mail.com',1,0,1,0,NULL,0),(3155,17,1,-1,1158075461,'cb710d04','i6@classnet.pl',1,0,1,0,NULL,0),(3156,38,1,-1,1158075462,'cb710d03','pyt3ukxwt@usmail.com',1,0,1,0,NULL,0),(3157,45,1,-1,1158075552,'3e7523c4','k4k8@pisem.net',1,0,1,0,NULL,0),(3158,11,4,-1,1158075582,'55ff71b8','snIUqWJVbL',1,0,1,0,NULL,0),(3159,37,1,-1,1158075595,'cb710d04','7r5h24gz@mail.ru',1,0,1,0,NULL,0),(3160,11,4,-1,1158075666,'cb710d03','3rngh9wf4w64@mail.me',1,0,1,0,NULL,0),(3161,15,1,-1,1158075852,'d3d71149','xinddpl5u@see.it',1,0,1,0,NULL,0),(3162,15,1,-1,1158075907,'3db9dbeb','a4u1a9@mail.ru',1,0,1,0,NULL,0),(3163,2,2,-1,1158076055,'cb710d04','gde@hotmail.com',1,0,1,0,NULL,0),(3164,30,1,-1,1158076154,'d3d57a9a','xenx@home.com',1,0,1,0,NULL,0),(3165,42,3,-1,1158076189,'cb710d05','u0puf4uhgoaonw@mail.nu',1,0,1,0,NULL,0),(3166,58,3,-1,1158076201,'cb710d04','v9w@mail.nu',1,0,1,0,NULL,0),(3167,9,3,-1,1158076239,'cb710d04','lif6pbkzs4@see.it',1,0,1,0,NULL,0),(3168,53,1,-1,1158076276,'cb710d03','pbbyhyafyuwxcs@mail.nu',1,0,1,0,NULL,0),(3169,57,3,-1,1158076493,'cb710d04','4ombjk9ffvk@see.it',1,0,1,0,NULL,0),(3170,37,1,-1,1158076702,'cb710d04','d0i8awo@mail.nu',1,0,1,0,NULL,0),(3171,40,1,-1,1158077300,'deeb6abf','ew1xu1mpzhnf71@classnet.p',1,0,1,0,NULL,0),(3172,3,2,-1,1158077364,'cb710d05','k8z98qv@arrivo.br',1,0,1,0,NULL,0),(3173,40,1,-1,1158077511,'cb710d04','ves6475sj@classnet.pl',1,0,1,0,NULL,0),(3174,9,3,-1,1158077639,'cb710d05','9k1b6bo1pb@tech.tv',1,0,1,0,NULL,0),(3175,3,2,-1,1158077896,'db990462','nke@arrivo.br',1,0,1,0,NULL,0),(3176,53,1,-1,1158077926,'da4b5725','xi@usmail.com',1,0,1,0,NULL,0),(3177,29,3,-1,1158077982,'cb710d03','s81mz@freemail.com',1,0,1,0,NULL,0),(3178,15,1,-1,1158091579,'cb992d32','4xt1pv1li5gcud0@mail.ru',1,0,1,0,NULL,0),(3179,14,1,-1,1158092319,'cb710d05','3uvvsw@rocketmail.com',1,0,1,0,NULL,0),(3180,40,1,-1,1158092376,'d3c02da0','rfrpu54ppk1w@mail.ru',1,0,1,0,NULL,0),(3181,57,3,-1,1158092688,'cb992d32','iren0w9@rocketmail.com',1,0,1,0,NULL,0),(3182,38,1,-1,1158092831,'cb992d32','ys93p2g@work.com',1,0,1,0,NULL,0),(3183,27,1,-1,1158092978,'da4b5725','bynldgzut23@tech.tv',1,0,1,0,NULL,0),(3184,3,2,-1,1158093134,'da38902a','xec7fm0xol@pisem.net',1,0,1,0,NULL,0),(3185,30,1,-1,1158093135,'cb710d03','hldl6wpsxh77@freemail.com',1,0,1,0,NULL,0),(3186,11,4,-1,1158093273,'55ff71b8','awnYtgrITl',1,0,1,0,NULL,0),(3187,11,4,-1,1158093349,'cb710d04','qvfq3nb8@freemail.com',1,0,1,0,NULL,0),(3188,19,1,-1,1158093569,'d3b20746','byvlspydyzpliw@mail.nu',1,0,1,0,NULL,0),(3189,3,2,-1,1158093629,'3ab405ac','uzfhg8xkez0ftwo@bigfoot.c',1,0,1,0,NULL,0),(3190,35,1,-1,1158093730,'cb710d04','unj0w@see.it',1,0,1,0,NULL,0),(3191,5,2,-1,1158094171,'db9f49c9','jxj65@arrivo.br',1,0,1,0,NULL,0),(3192,2,2,-1,1158094180,'da38902a','cn99pgfofw0@freemail.com',1,0,1,0,NULL,0),(3193,5,2,-1,1158094183,'cb51958c','jxj65@arrivo.br',1,0,1,0,NULL,0),(3194,11,4,-1,1158094495,'da4b5725','ed71xi0mcg838@aol.com',1,0,1,0,NULL,0),(3195,4,2,-1,1158094844,'cb992d32','unn8s379mo@tech.tv',1,0,1,0,NULL,0),(3196,15,1,-1,1158095029,'551911d2','a99rq@mail.ru',1,0,1,0,NULL,0),(3197,39,1,-1,1158095157,'3cbffb09','wku88qkglq8@mail.com',1,0,1,0,NULL,0),(3198,2,2,-1,1158095259,'cb710d05','u5n259a5b6v9fp@come.to',1,0,1,0,NULL,0),(3199,9,3,-1,1158095396,'dc7cdce2','aujq@come.to',1,0,1,0,NULL,0),(3200,57,3,-1,1158096095,'cb710d04','i@pisem.net',1,0,1,0,NULL,0),(3201,157,2,-1,1158096365,'d52a0216','yltygb@freemail.com',1,0,1,0,NULL,0),(3202,3,2,-1,1158096424,'cb710d05','o8tza8ggb@work.com',1,0,1,0,NULL,0),(3203,9,3,-1,1158096699,'3af7026c','a53k6g6r6rfondt@classnet.',1,0,1,0,NULL,0),(3204,55,3,-1,1158096946,'cb710d03','dd4u1@mail.nu',1,0,1,0,NULL,0),(3205,29,3,-1,1158097138,'c9510970','tzyb56hzaqa@see.to',1,0,1,0,NULL,0),(3206,42,3,-1,1158097407,'cb992d32','lps@come.to',1,0,1,0,NULL,0),(3207,11,4,-1,1158098260,'55ff71b8','hCRaovfKkO',1,0,1,0,NULL,0),(3208,5,2,-1,1158098448,'55ff71b8','lmqRiGEvns',1,0,1,0,NULL,0),(3209,107,3,-1,1158100643,'55ff71b9','nrxbgdzamf',1,0,1,0,NULL,0),(3210,11,4,-1,1158100664,'55ff71b9','DlVNycmvjQ',1,0,1,0,NULL,0),(3211,11,4,-1,1158118146,'55ff71b9','ZYsNgfVwWm',1,0,1,0,NULL,0),(3212,38,1,-1,1158124360,'cb710d05','iujg@classnet.pl',1,0,1,0,NULL,0),(3213,9,3,-1,1158124711,'d52a0217','hhiw@usmail.com',1,0,1,0,NULL,0),(3214,9,3,-1,1158124882,'cb992d32','68hic@mail.me',1,0,1,0,NULL,0),(3215,36,3,-1,1158124914,'cb992d32','lzo3@does.it',1,0,1,0,NULL,0),(3216,3,2,-1,1158125509,'d52a0215','n@usmail.com',1,0,1,0,NULL,0),(3217,14,1,-1,1158125639,'3e654b0e','4xf@arrivo.br',1,0,1,0,NULL,0),(3218,27,1,-1,1158125886,'d26f4323','zo46l6vz@yahoo.com',1,0,1,0,NULL,0),(3219,11,4,-1,1158126071,'cba2593d','5lfln0gdjl@see.it',1,0,1,0,NULL,0),(3220,3,2,-1,1158126414,'3ab405ac','1ffrehs3gxe4ua@home.com',1,0,1,0,NULL,0),(3221,19,1,-1,1158126591,'3e654b0e','sxn9nqjap7mruij@mail.ru',1,0,1,0,NULL,0),(3222,39,1,-1,1158126682,'cb992d32','iu54kfir5s5l@work.com',1,0,1,0,NULL,0),(3223,2,2,-1,1158126864,'cb710d05','6s@yahoo.com',1,0,1,0,NULL,0),(3224,38,1,-1,1158127241,'80868917','strm7n79rd8@come.to',1,0,1,0,NULL,0),(3225,17,1,-1,1158127353,'d52a0215','486h61u9@mail.com',1,0,1,0,NULL,0),(3226,2,2,-1,1158127402,'cba2593d','2wjl@arrivo.br',1,0,1,0,NULL,0),(3227,57,3,-1,1158127897,'3ae3bce9','l7fq@bigfoot.com',1,0,1,0,NULL,0),(3228,57,3,-1,1158127929,'3d3c5b3d','l7fq@bigfoot.com',1,0,1,0,NULL,0),(3229,2,2,-1,1158127955,'cb992d32','t@home.com',1,0,1,0,NULL,0),(3230,37,1,-1,1158128225,'db8e2852','yduwjtk4h@mail.nu',1,0,1,0,NULL,0),(3231,57,3,-1,1158128388,'d305cdf3','41rhl6@yahoo.com',1,0,1,0,NULL,0),(3232,19,1,-1,1158128715,'d3733842','lz7zb1l144o@bigfoot.com',1,0,1,0,NULL,0),(3233,40,1,-1,1158128814,'da38902a','snuvj@mail.ru',1,0,1,0,NULL,0),(3234,39,1,-1,1158128817,'cb992d32','f2rii99ly@mail.ru',1,0,1,0,NULL,0),(3235,3,2,-1,1158128889,'cb710d03','721olnr3k81@mail.com',1,0,1,0,NULL,0),(3236,37,1,-1,1158128937,'da38902a','o9r1ohtuv3u@mail.com',1,0,1,0,NULL,0),(3237,37,1,-1,1158128949,'3ae3bce9','o9r1ohtuv3u@mail.com',1,0,1,0,NULL,0),(3238,53,1,-1,1158129047,'d26f4323','77@usmail.com',1,0,1,0,NULL,0),(3239,55,3,-1,1158129212,'d52a020b','9pbrd@come.to',1,0,1,0,NULL,0),(3240,9,3,-1,1158129238,'cb710d05','lbbpeoqalk5my@freemail.co',1,0,1,0,NULL,0),(3241,2,2,-1,1158129537,'3ab405ac','p1h0ki@mail.nu',1,0,1,0,NULL,0),(3242,42,3,-1,1158129558,'3e654b0e','774ifjxrcy0g@bigfoot.com',1,0,1,0,NULL,0),(3243,3,2,-1,1158132635,'d99e447c','card-game@hotmail.com',1,0,1,0,NULL,0),(3244,2,2,-1,1158133934,'d52a0216','w@tech.tv',1,0,1,0,NULL,0),(3245,11,4,-1,1158133948,'cb710d04','kc1y1@arrivo.br',1,0,1,0,NULL,0),(3246,9,3,-1,1158133960,'deef7f92','u29wv@mail.ru',1,0,1,0,NULL,0),(3247,53,1,-1,1158133969,'cb710d04','m3tdw35ld6vl1@rocketmail.',1,0,1,0,NULL,0),(3248,53,1,-1,1158134190,'cb710d04','m3tdw35ld6vl1@rocketmail.',1,0,1,0,NULL,0),(3249,36,3,-1,1158134242,'d26f4323','mh1lnhaf4ypml7@mail.nu',1,0,1,0,NULL,0),(3250,15,1,-1,1158134327,'d52a020b','zd@mail.ru',1,0,1,0,NULL,0),(3251,38,1,-1,1158134363,'cb992d32','nr5m85eg0@does.it',1,0,1,0,NULL,0),(3252,2,2,-1,1158134536,'d41a8922','y9@tech.tv',1,0,1,0,NULL,0),(3253,3,2,-1,1158134783,'d305cdf3','pvwxel6@freemail.com',1,0,1,0,NULL,0),(3254,14,1,-1,1158134901,'cb710d04','0x@freemail.com',1,0,1,0,NULL,0),(3255,11,4,-1,1158134928,'cb992d32','wr84qb1jvqw@see.it',1,0,1,0,NULL,0),(3256,3,2,-1,1158134989,'cb992d32','oe2qe6av@bigfoot.com',1,0,1,0,NULL,0),(3257,39,1,-1,1158135309,'d305cdf3','bbv@mail.ru',1,0,1,0,NULL,0),(3258,10,3,-1,1158135328,'cba2593d','h@yahoo.com',1,0,1,0,NULL,0),(3259,3,2,-1,1158135839,'3e08cbe2','47hr56q60ni@home.com',1,0,1,0,NULL,0),(3260,53,1,-1,1158135881,'cb710d04','l4su8pvd6zkhuht@usmail.co',1,0,1,0,NULL,0),(3261,19,1,-1,1158135906,'d305cdf3','eecjmd@arrivo.br',1,0,1,0,NULL,0),(3262,2,2,-1,1158136259,'d52a0217','r161oo8l@bigfoot.com',1,0,1,0,NULL,0),(3263,2,2,-1,1158136334,'cb992d32','f0o@tech.tv',1,0,1,0,NULL,0),(3264,45,1,-1,1158136521,'cb710d04','2euapunu@bigfoot.com',1,0,1,0,NULL,0),(3265,39,1,-1,1158136876,'cb710d04','aj26@tech.tv',1,0,1,0,NULL,0),(3266,2,2,-1,1158136925,'cb992d32','it@rocketmail.com',1,0,1,0,NULL,0),(3267,2,2,-1,1158137447,'cb710d04','syqm7fue438md8@bigfoot.co',1,0,1,0,NULL,0),(3268,57,3,-1,1158137504,'cbfd4b92','opzf6qk8e1l@see.it',1,0,1,0,NULL,0),(3269,2,2,-1,1158137544,'da0bcff4','4aefyjcpuo@rocketmail.com',1,0,1,0,NULL,0),(3270,57,3,-1,1158137642,'cb710d04','kzv3qnqi6zsmwaf@classnet.',1,0,1,0,NULL,0),(3271,158,2,-1,1158137730,'d305cdf3','3yrse1@hotmail.com',1,0,1,0,NULL,0),(3272,19,1,-1,1158137836,'cb992d32','c@rocketmail.com',1,0,1,0,NULL,0),(3273,40,1,-1,1158138349,'d52a0217','6x6vu1h@aol.com',1,0,1,0,NULL,0),(3274,54,3,-1,1158138385,'cb710d04','5qqs8@classnet.pl',1,0,1,0,NULL,0),(3275,29,3,-1,1158138432,'de774cb4','honrt7cx@yahoo.com',1,0,1,0,NULL,0),(3276,2,2,-1,1158138781,'cb710d04','rx@mail.ru',1,0,1,0,NULL,0),(3277,11,4,-1,1158144712,'55ff71b2','lQzRnBaUMp',1,0,1,0,NULL,0),(3278,11,4,-1,1158144928,'55ff71b2','RiOKwFVvrk',1,0,1,0,NULL,0),(3279,11,4,-1,1158152898,'55ff71b3','agtXZDMOnx',1,0,1,0,NULL,0),(3280,11,4,-1,1158155948,'cb710d03','4sg5sozj261@pisem.net',1,0,1,0,NULL,0),(3281,53,1,-1,1158156086,'d3f9dacc','ie3za6@tech.tv',1,0,1,0,NULL,0),(3282,15,1,-1,1158156101,'da4b5725','yvrp2xo3bpwp@does.it',1,0,1,0,NULL,0),(3283,53,1,-1,1158156105,'da0bcff4','ie3za6@tech.tv',1,0,1,0,NULL,0),(3284,42,3,-1,1158156418,'d3f9dacc','j8690g9l7z6gz@pisem.net',1,0,1,0,NULL,0),(3285,57,3,-1,1158156818,'cb710d04','3ohj9o8oix9@freemail.com',1,0,1,0,NULL,0),(3286,38,1,-1,1158156989,'46888ad2','gn2vuieqpay@yahoo.com',1,0,1,0,NULL,0),(3287,57,3,-1,1158157042,'cb710d04','vh4q0gmdx7x@home.com',1,0,1,0,NULL,0),(3288,38,1,-1,1158157274,'3af7026c','0ic8hdvu6nqz5k@see.to',1,0,1,0,NULL,0),(3289,4,2,-1,1158157307,'cb710d04','5ih41gb2y@does.it',1,0,1,0,NULL,0),(3290,3,2,-1,1158157395,'cb710d04','s9u3unln1mrsz@freemail.co',1,0,1,0,NULL,0),(3291,57,3,-1,1158157648,'cb992d32','7nh@does.it',1,0,1,0,NULL,0),(3292,10,3,-1,1158157682,'d305cdf3','rvxfj4n2tuewrh@see.to',1,0,1,0,NULL,0),(3293,11,4,-1,1158157698,'d305cdf3','tkppjwu79a7qqe@yahoo.com',1,0,1,0,NULL,0),(3294,39,1,-1,1158157755,'d305cdf3','ibxxzo@bigfoot.com',1,0,1,0,NULL,0),(3295,53,1,-1,1158157785,'cff34623','sy@yahoo.com',1,0,1,0,NULL,0),(3296,19,1,-1,1158158258,'d305cdf3','klvc@does.it',1,0,1,0,NULL,0),(3297,5,2,-1,1158158259,'cb710d04','rhzwmhmw511d@mail.nu',1,0,1,0,NULL,0),(3298,39,1,-1,1158158380,'cb710d04','cyf33g@arrivo.br',1,0,1,0,NULL,0),(3299,53,1,-1,1158158579,'d305cdf3','hzwzsq49en@bigfoot.com',1,0,1,0,NULL,0),(3300,45,1,-1,1158158705,'d52a0215','co6isbujat@freemail.com',1,0,1,0,NULL,0),(3301,11,4,-1,1158158766,'d305cdf3','axd6jle@yahoo.com',1,0,1,0,NULL,0),(3302,57,3,-1,1158158951,'ca650655','2blyba18ci7@see.it',1,0,1,0,NULL,0),(3303,45,1,-1,1158159066,'d305cdf3','j3sj7db1@come.to',1,0,1,0,NULL,0),(3304,30,1,-1,1158159532,'cb710d05','zhhsn@does.it',1,0,1,0,NULL,0),(3305,58,3,-1,1158160002,'ca650655','ybz89x94s@mail.ru',1,0,1,0,NULL,0),(3306,57,3,-1,1158160187,'3af7026c','cjgobcl8u@usmail.com',1,0,1,0,NULL,0),(3307,19,1,-1,1158160346,'cb710d04','emh44p0eays@hotmail.com',1,0,1,0,NULL,0),(3308,38,1,-1,1158160447,'cb710d04','u0c5ecpg42nfc@home.com',1,0,1,0,NULL,0),(3309,57,3,-1,1158160613,'da4b5725','yxo85vz19wos1l@see.to',1,0,1,0,NULL,0),(3310,57,3,-1,1158160639,'da0bcff4','yxo85vz19wos1l@see.to',1,0,1,0,NULL,0),(3311,40,1,-1,1158160843,'cb710d04','btn63mi@rocketmail.com',1,0,1,0,NULL,0),(3312,3,2,-1,1158161101,'d305cdf3','e@mail.com',1,0,1,0,NULL,0),(3313,40,1,-1,1158161352,'cb710d03','2so5zzf8410l@come.to',1,0,1,0,NULL,0),(3314,31,1,-1,1158161359,'dee899e9','xfdgi903@arrivo.br',1,0,1,0,NULL,0),(3315,42,3,-1,1158161607,'d305cdf3','vqlqwsh@hotmail.com',1,0,1,0,NULL,0),(3316,53,1,-1,1158161622,'d305cdf3','hcu2g8@mail.nu',1,0,1,0,NULL,0),(3317,2,2,-1,1158161664,'d52a020b','155vdb0icmbhcwc@see.to',1,0,1,0,NULL,0),(3318,5,2,-1,1158167343,'45696152','Fredmod',1,0,1,0,NULL,0),(3319,107,3,-1,1158167989,'51cb7d71','Dalegvv',1,0,1,0,NULL,0),(3320,11,4,-1,1158170608,'55ff71b8','lhcHDzrxuF',1,0,1,0,NULL,0),(3321,11,4,-1,1158171064,'55ff71b7','GPwZBethJK',1,0,1,0,NULL,0),(3322,11,4,-1,1158171281,'55ff71b2','JnSFOuaIqw',1,0,1,0,NULL,0),(3323,11,4,-1,1158171676,'55ff71b8','QZXYlcAIft',1,0,1,0,NULL,0),(3324,11,4,-1,1158174257,'55ff71b8','YkpSElBhuT',1,0,1,0,NULL,0),(3325,11,4,-1,1158175361,'55ff71b7','FnNGeHXBQI',1,0,1,0,NULL,0),(3326,11,4,-1,1158176897,'55ff71b3','sXhZGngAUJ',1,0,1,0,NULL,0),(3327,35,1,-1,1158177970,'55ff71b3','HxSsrvDmwZ',1,0,1,0,NULL,0),(3328,11,4,-1,1158178862,'55ff71b2','GFuQWiPUmN',1,0,1,0,NULL,0),(3329,5,2,-1,1158179781,'55ff71b9','wzWXVElvUm',1,0,1,0,NULL,0),(3330,5,2,-1,1158182140,'55ff71b3','ZcEiVWxCSw',1,0,1,0,NULL,0),(3331,17,1,-1,1158182443,'cb710d05','v4hds@see.to',1,0,1,0,NULL,0),(3332,2,2,-1,1158182837,'d305cdf3','ntk3iupk@work.com',1,0,1,0,NULL,0),(3333,15,1,-1,1158182852,'cb710d04','fiqyb2lglf7@work.com',1,0,1,0,NULL,0),(3334,37,1,-1,1158182868,'cb710d04','o7q14xqvpl9j0@bigfoot.com',1,0,1,0,NULL,0),(3335,11,4,-1,1158183102,'d1cbe38b','jw08zvd@tech.tv',1,0,1,0,NULL,0),(3336,36,3,-1,1158183228,'3af7026c','07@usmail.com',1,0,1,0,NULL,0),(3337,2,2,-1,1158183490,'cb710d03','vpl0fhc68fs@tech.tv',1,0,1,0,NULL,0),(3338,38,1,-1,1158183529,'cb710d03','8@mail.me',1,0,1,0,NULL,0),(3339,55,3,-1,1158183549,'cb710d04','b@see.it',1,0,1,0,NULL,0),(3340,38,1,-1,1158183661,'cb710d04','nw6pjbflo064@tech.tv',1,0,1,0,NULL,0),(3341,3,2,-1,1158183978,'da38902a','levitra@hotmail.com',1,0,1,0,NULL,0),(3342,14,1,-1,1158184118,'d1cbe38b','ucwtht0oux31b@arrivo.br',1,0,1,0,NULL,0),(3343,4,2,-1,1158184153,'d326d382','fwypjn76@rocketmail.com',1,0,1,0,NULL,0),(3344,11,4,-1,1158184193,'cb710d05','50n128@freemail.com',1,0,1,0,NULL,0),(3345,39,1,-1,1158184549,'cb710d03','1ebvqh7n0c97@rocketmail.c',1,0,1,0,NULL,0),(3346,30,1,-1,1158184612,'c92531e5','vvnuwbnd2@home.com',1,0,1,0,NULL,0),(3347,30,1,-1,1158184665,'a5e54f32','vvnuwbnd2@home.com',1,0,1,0,NULL,0),(3348,39,1,-1,1158184803,'cb710d03','9elcn5meuw7stl@arrivo.br',1,0,1,0,NULL,0),(3349,3,2,-1,1158185016,'d305cdf3','ogrzfrpguue8njc@mail.com',1,0,1,0,NULL,0),(3350,57,3,-1,1158185204,'cb710d04','ycwqz4@rocketmail.com',1,0,1,0,NULL,0),(3351,11,4,-1,1158185599,'cb710d04','6vvwskc@mail.me',1,0,1,0,NULL,0),(3352,39,1,-1,1158186119,'51b01447','fq1h@pisem.net',1,0,1,0,NULL,0),(3353,39,1,-1,1158187470,'d305cdf3','8z7@mail.me',1,0,1,0,NULL,0),(3354,3,2,-1,1158187816,'ca650655','o@mail.me',1,0,1,0,NULL,0),(3355,40,1,-1,1158188344,'cba2593d','y@classnet.pl',1,0,1,0,NULL,0),(3356,5,2,-1,1158189805,'421f599e','Petertvj',1,0,1,0,NULL,0),(3357,5,2,-1,1158189835,'42a8688c','Petertvj',1,0,1,0,NULL,0),(3358,107,3,-1,1158190403,'46454473','Julieehp',1,0,1,0,NULL,0),(3359,5,2,-1,1158190496,'55ff71b7','kWHeidBsXg',1,0,1,0,NULL,0),(3360,5,2,-1,1158190540,'55ff71b8','oBTZEfmvJV',1,0,1,0,NULL,0),(3361,35,1,-1,1158191515,'55ff71b2','CHIZTjwdeV',1,0,1,0,NULL,0),(3362,5,2,-1,1158192418,'55ff71b7','tqvQrhnZHc',1,0,1,0,NULL,0),(3363,57,3,-1,1158192498,'55ff71b9','OClDMjiEyu',1,0,1,0,NULL,0),(3364,11,4,-1,1158194307,'55ff71b8','kGPBiDJoFC',1,0,1,0,NULL,0),(3365,5,2,-1,1158196357,'55ff71b3','yzMnBbxltH',1,0,1,0,NULL,0),(3366,57,3,-1,1158198571,'55ff71b7','rZfQVFhtcP',1,0,1,0,NULL,0),(3367,57,3,-1,1158201210,'55ff71b9','URHfTmgNsl',1,0,1,0,NULL,0),(3368,38,1,-1,1158205953,'ca650655','e84rp0qysf2xaq@rocketmail',1,0,1,0,NULL,0),(3369,2,2,-1,1158206141,'3db9dbeb','nnkstg@pisem.net',1,0,1,0,NULL,0),(3370,15,1,-1,1158206266,'cb710d03','spifpur@see.to',1,0,1,0,NULL,0),(3371,36,3,-1,1158206452,'cb710d03','x9ik0fcl@mail.ru',1,0,1,0,NULL,0),(3372,38,1,-1,1158206889,'cb710d05','86px17@mail.me',1,0,1,0,NULL,0),(3373,30,1,-1,1158206915,'cb710d05','lkr@arrivo.br',1,0,1,0,NULL,0),(3374,2,2,-1,1158206959,'da4b5725','98g@tech.tv',1,0,1,0,NULL,0),(3375,40,1,-1,1158206992,'cb710d03','j7gs7lfwuo@come.to',1,0,1,0,NULL,0),(3376,57,3,-1,1158207094,'cb710d03','msw2a23dd@freemail.com',1,0,1,0,NULL,0),(3377,14,1,-1,1158207243,'cb710d04','g7n0@mail.com',1,0,1,0,NULL,0),(3378,10,3,-1,1158207741,'da107a58','l@come.to',1,0,1,0,NULL,0),(3379,30,1,-1,1158207863,'dabdd7b6','i93tfck7zma@aol.com',1,0,1,0,NULL,0),(3380,39,1,-1,1158207908,'ca650655','cj6ce3ba@rocketmail.com',1,0,1,0,NULL,0),(3381,3,2,-1,1158208100,'cb710d03','xr5exhblm9@tech.tv',1,0,1,0,NULL,0),(3382,39,1,-1,1158208266,'cb710d03','wb9prb1z@hotmail.com',1,0,1,0,NULL,0),(3383,3,2,-1,1158208620,'c821bfda','xf9o2pemf@work.com',1,0,1,0,NULL,0),(3384,2,2,-1,1158209733,'da38902a','q1crvts62@mail.com',1,0,1,0,NULL,0),(3385,2,2,-1,1158210032,'cb710d05','08i260snqnst@freemail.com',1,0,1,0,NULL,0),(3386,19,1,-1,1158210299,'da0bcff4','acv7@does.it',1,0,1,0,NULL,0),(3387,57,3,-1,1158210311,'cb710d03','bliavqaa3fujrcl@arrivo.br',1,0,1,0,NULL,0),(3388,159,2,-1,1158210489,'c821bfda','v0lu@mail.ru',1,0,1,0,NULL,0),(3389,40,1,-1,1158210904,'cb710d03','po54jpiez60qb@see.to',1,0,1,0,NULL,0),(3390,35,1,-1,1158211007,'55ff71b9','ENLdeJFRzZ',1,0,1,0,NULL,0),(3391,42,3,-1,1158211272,'cb710d04','baz7dil38d0kjj@home.com',1,0,1,0,NULL,0),(3392,35,1,-1,1158212965,'55ff71b9','BSoARjVQgY',1,0,1,0,NULL,0),(3393,35,1,-1,1158213348,'55ff71b3','jnicTLONZk',1,0,1,0,NULL,0),(3394,5,2,-1,1158215302,'5700201b','Shanemwz',1,0,1,0,NULL,0),(3395,5,2,-1,1158215420,'18d27864','Shanemwz',1,0,1,0,NULL,0),(3396,107,3,-1,1158216317,'542cf54b','Louishbc',1,0,1,0,NULL,0),(3397,11,4,-1,1158217859,'55ff71b3','qRHgbOryzS',1,0,1,0,NULL,0),(3398,11,4,-1,1158217990,'55ff71b2','eWNirVcCmk',1,0,1,0,NULL,0),(3399,37,1,-1,1158225783,'c821bfda','297i96hr7he@mail.me',1,0,1,0,NULL,0),(3400,35,1,-1,1158225833,'55ff71b3','pqhQOUZoJd',1,0,1,0,NULL,0),(3401,35,1,-1,1158225971,'55ff71b8','RmnhcxbJBX',1,0,1,0,NULL,0),(3402,36,3,-1,1158225988,'cb710d03','lc4qh@mail.ru',1,0,1,0,NULL,0),(3403,15,1,-1,1158226057,'41401fd9','t29@yahoo.com',1,0,1,0,NULL,0),(3404,9,3,-1,1158226252,'cb710d03','7zylfadlyx@mail.nu',1,0,1,0,NULL,0),(3405,57,3,-1,1158226537,'c821bfda','o8jdrenmurkmlt@yahoo.com',1,0,1,0,NULL,0),(3406,57,3,-1,1158226990,'3cbffb09','ro46w6@freemail.com',1,0,1,0,NULL,0),(3407,52,3,-1,1158227132,'cb710d03','5bjr@tech.tv',1,0,1,0,NULL,0),(3408,30,1,-1,1158227257,'c821bfda','pkhd7b657zfqjm2@hotmail.c',1,0,1,0,NULL,0),(3409,27,1,-1,1158227302,'3db9dbeb','85dv@rocketmail.com',1,0,1,0,NULL,0),(3410,30,1,-1,1158227320,'3e196069','pkhd7b657zfqjm2@hotmail.c',1,0,1,0,NULL,0),(3411,10,3,-1,1158227409,'dabdd7b6','kefolg@hotmail.com',1,0,1,0,NULL,0),(3412,11,4,-1,1158227484,'3cbffb09','g@bigfoot.com',1,0,1,0,NULL,0),(3413,53,1,-1,1158227599,'da0bcff4','ufo0tra@freemail.com',1,0,1,0,NULL,0),(3414,35,1,-1,1158227957,'ca650655','2klq5d1o8@freemail.com',1,0,1,0,NULL,0),(3415,53,1,-1,1158228085,'da38902a','fpb@home.com',1,0,1,0,NULL,0),(3416,2,2,-1,1158228226,'d3757dfb','9bdvvz3d8@come.to',1,0,1,0,NULL,0),(3417,57,3,-1,1158228313,'5512be07','h@freemail.com',1,0,1,0,NULL,0),(3418,45,1,-1,1158228652,'ca650655','iy429mfvmuqq2@arrivo.br',1,0,1,0,NULL,0),(3419,2,2,-1,1158229164,'cb710d03','sd0ta@come.to',1,0,1,0,NULL,0),(3420,42,3,-1,1158229314,'3b098cdb','fo@rocketmail.com',1,0,1,0,NULL,0),(3421,37,1,-1,1158229869,'da4b5725','2b5hl74ms@see.to',1,0,1,0,NULL,0),(3422,160,2,-1,1158230049,'3af7026c','qwqcx@classnet.pl',1,0,1,0,NULL,0),(3423,35,1,-1,1158230250,'55ff71b9','jmPWpngrCI',1,0,1,0,NULL,0),(3424,19,1,-1,1158230275,'cb710d04','c9gm@aol.com',1,0,1,0,NULL,0),(3425,3,2,-1,1158230367,'d272ae60','8@see.it',1,0,1,0,NULL,0),(3426,40,1,-1,1158230480,'cb710d05','sy016oy4vqn4f9@see.it',1,0,1,0,NULL,0),(3427,29,3,-1,1158230615,'da4b5725','nuekjkc9t7b@see.to',1,0,1,0,NULL,0),(3428,55,3,-1,1158230768,'cb710d04','ggj@classnet.pl',1,0,1,0,NULL,0),(3429,35,1,-1,1158236261,'55ff71b9','BfUwRptrDh',1,0,1,0,NULL,0),(3430,17,1,-1,1158239462,'ca650655','s18jnu2n1@mail.nu',1,0,1,0,NULL,0),(3431,9,3,-1,1158239910,'ca650655','mpz7tw2eydk@mail.com',1,0,1,0,NULL,0),(3432,9,3,-1,1158239916,'cb710d03','64vgd10ze4plc@usmail.com',1,0,1,0,NULL,0),(3433,37,1,-1,1158240165,'d5717b5b','03tno@classnet.pl',1,0,1,0,NULL,0),(3434,15,1,-1,1158240223,'ca650655','n@bigfoot.com',1,0,1,0,NULL,0),(3435,55,3,-1,1158240570,'ca650655','5curcir@classnet.pl',1,0,1,0,NULL,0),(3436,38,1,-1,1158240635,'cb710d05','4k5yeezz9jrdm@see.it',1,0,1,0,NULL,0),(3437,30,1,-1,1158240668,'ca650655','lp@bigfoot.com',1,0,1,0,NULL,0),(3438,11,4,-1,1158240920,'ca650655','zwgiwefil86tev8@come.to',1,0,1,0,NULL,0),(3439,35,1,-1,1158241065,'d5717b5b','d@tech.tv',1,0,1,0,NULL,0),(3440,57,3,-1,1158241106,'dabdd7b6','0hzxfbns@freemail.com',1,0,1,0,NULL,0),(3441,11,4,-1,1158241198,'cb710d03','ejly@mail.nu',1,0,1,0,NULL,0),(3442,53,1,-1,1158241442,'cb710d05','bcot380lgvmi@work.com',1,0,1,0,NULL,0),(3443,57,3,-1,1158241450,'c90e4d1a','6f@freemail.com',1,0,1,0,NULL,0),(3444,52,3,-1,1158241465,'c821bfda','qqq28m2yabp4z@rocketmail.',1,0,1,0,NULL,0),(3445,10,3,-1,1158241787,'dc7d3719','cb6yhv45p9yd@arrivo.br',1,0,1,0,NULL,0),(3446,35,1,-1,1158242015,'ca650655','sxbnztnn2@does.it',1,0,1,0,NULL,0),(3447,53,1,-1,1158242146,'dba6a57a','n9unx1n@mail.nu',1,0,1,0,NULL,0),(3448,5,2,-1,1158242269,'7d81e2f1','pw2mh5zo51zukgg@pisem.net',1,0,1,0,NULL,0),(3449,5,2,-1,1158242280,'8c73758f','pw2mh5zo51zukgg@pisem.net',1,0,1,0,NULL,0),(3450,17,1,-1,1158242720,'d2d3ad14','7jpk8guni@rocketmail.com',1,0,1,0,NULL,0),(3451,35,1,-1,1158242773,'55ff71b3','cDROHWkbhF',1,0,1,0,NULL,0),(3452,45,1,-1,1158242861,'ca650655','jm7l81@mail.ru',1,0,1,0,NULL,0),(3453,38,1,-1,1158242900,'ca650655','b4peaair@mail.me',1,0,1,0,NULL,0),(3454,15,1,-1,1158243215,'ca650655','6cwed578ucamo@mail.nu',1,0,1,0,NULL,0),(3455,39,1,-1,1158243281,'ca650655','rqlnn3vls9win@home.com',1,0,1,0,NULL,0),(3456,30,1,-1,1158243292,'7d81e2f1','wt@freemail.com',1,0,1,0,NULL,0),(3457,57,3,-1,1158243480,'c911ae58','qi5c7t7tleq@work.com',1,0,1,0,NULL,0),(3458,53,1,-1,1158243537,'dba6a57a','mppkjsyq@see.to',1,0,1,0,NULL,0),(3459,58,3,-1,1158243565,'dabdd7b6','962avhvio3dg@mail.com',1,0,1,0,NULL,0),(3460,2,2,-1,1158243753,'cb710d04','vlm5bcu@usmail.com',1,0,1,0,NULL,0),(3461,40,1,-1,1158244153,'ca650655','t00@aol.com',1,0,1,0,NULL,0),(3462,161,2,-1,1158244283,'cb710d03','5vs7rf5b6ytx2l@work.com',1,0,1,0,NULL,0),(3463,54,3,-1,1158244810,'ca650655','3a7gom@aol.com',1,0,1,0,NULL,0),(3464,29,3,-1,1158244966,'ca650655','8a4ys@usmail.com',1,0,1,0,NULL,0),(3465,3,2,-1,1158245038,'cb710d03','igfapp@classnet.pl',1,0,1,0,NULL,0),(3466,31,1,-1,1158245108,'4512da0d','t4@mail.ru',1,0,1,0,NULL,0),(3467,3,2,-1,1158251720,'503791fc','paxil@hotmail.com',1,0,1,0,NULL,0); UNLOCK TABLES; /*!40000 ALTER TABLE `phpbb_posts` ENABLE KEYS */; -- -- Table structure for table `phpbb_posts_text` -- DROP TABLE IF EXISTS `phpbb_posts_text`; CREATE TABLE `phpbb_posts_text` ( `post_id` mediumint(8) unsigned NOT NULL default '0', `bbcode_uid` varchar(10) NOT NULL default '', `post_subject` varchar(60) default NULL, `post_text` text, PRIMARY KEY (`post_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `phpbb_posts_text` -- /*!40000 ALTER TABLE `phpbb_posts_text` DISABLE KEYS */; LOCK TABLES `phpbb_posts_text` WRITE; INSERT INTO `phpbb_posts_text` VALUES (4,'7f7b3d6dc7','Charley\'s Poll','Welcome to MY poll !!!'),(5,'65c29b5346','Olivier\'s poll','Ask your questions to Olivier !!!'),(3,'8767c4163c','Ben\'s Poll','Welcome to the Ben\'s Poll !!!'),(6,'642b5a59ae','Matthieu\'s Poll','Welcome to the Matthieu\'s poll !!!'),(7,'32223cc400','Thomas\'s poll','He\'s waiting for you !!! :twisted:'),(9,'531969df79','I need to learn french. heh/ nevermind...','just realized you can change the language in profile. yay! good to have a forum back up. 8)'),(10,'95e367682e','','how is the new material coming Charley?'),(11,'6d6012d2b0','','Hi Charley, thanks that this forum is here.It´s really great 8) \r\n\r\nBTW you have signature from Queen´s song Don´t Stop Me Now.Great one :D'),(12,'70d4581745','','I just want to say that Ben is one of the best singers I know.\r\nHe can sing soooo high.\r\nGood luck dude.\r\nBTW when did you start with singing?'),(13,'1b8123247e','','Hi.\r\nThe biggest die-hard fan of Heavenly from Czech Republic is finally here :D \r\nI hope that this community will soon grow.Now it´s more like family forum :D'),(14,'6238698d38','Favourite bands?','What are your favourite bands.Mine are(as they come to my mind, no order)\r\n\r\nHeavenly (of course)\r\nStratovarius\r\nHammerFall\r\nNightwish\r\nEdguy\r\nGamma Ray\r\nFreedom Call\r\nBlind Guardian\r\nRhapsody\r\nDIO\r\nQueen\r\nRainbow\r\nIron Maiden\r\nJudas Priest\r\nPrimal Fear\r\nThunderstone\r\nHelloween\r\nTad Morose\r\nWithin Temptation\r\nWizard\r\n\r\nand many others'),(15,'a4802323d4','Situation in Stratovarius?','What do you think about Stratovarius and the situation in the band?\r\nWhat about new album?Do you think it´s good they are together once agian or should they stop playing already?\r\n\r\nI am pleased with their latest album and I´m looking forward to their gig in Zlín 3.12. with Hammerfall.I believe it will be great gig'),(16,'d6b6b1667c','???','I think this is quite useless topic.\r\nIf somebody dislikes your music he can tell it in Heavenly discussion or so.I think we would need something like General Discussion or so :wink:\r\nJust my opinion'),(17,'57cf7b19df','Welcom to my Poll','Hi everyone,\r\n\r\nWelcome to my Poll\r\n\r\nTalk soon\r\n\r\nOlivier'),(18,'8b1c9a2a9a','','One more thanks for great interwiev you´ve done for us. :D \r\nThank you very much \r\nAleš'),(19,'4beace969a','','Hello Olivier.\r\n\r\nIt´s great you are here :D'),(20,'f2a358ef9e','You are awesome','Love your songs guys. i was surprised over the high quality of your songs. This is real metal! Heavenly est chouette! (think that means \"heavenly is great\" in french :lol: )'),(21,'73f71389a2','','hail dude, \r\n\r\nWhat\'s up my couille? \r\n\r\nBe ready for nimport nawak?\r\n\r\nReady, steady go !!!!'),(22,'9d80664961','','Hail Alligator !\r\n\r\nI\'m glad to be one of your ultra fan !!!\r\n\r\nSee You my friend.... your journal La Provence will arrive soon :lol:'),(23,'f4b46886bf','','Ben..... the M\'nMs eater and coca drinker !!!!\r\n\r\nPowa!!!!!!!!!!!!'),(24,'3945ca7a4d','','Hey Tom Tom !\r\n\r\nWhat happens with my canapé?!!!'),(25,'2f8e4ac3d5','','Matthieu..... the multifinger man.\r\n\r\nI\'m waiting news from you dude !'),(26,'dc1035723e','HEAVENLY OFFICIAL FAN CLUB','Hail dudes,\r\n\r\nI\'m Lionel from the Heavenly Official Fan Club.\r\n\r\nFeel free to post here if you need some informations about the subscription or everything about the Fan Club.... :wink:'),(27,'87ac4dc28c','HEAVENLY OFFICIAL MERCHANDISING','Hail everyone,\r\n\r\nIf you need some informations on the Heavenly\'s official merchandising there only one person to contact: ME !!! :lol: :wink: \r\n\r\nHere you\'ll find the complete list of the stuff I got:\r\n\r\nWhite t-shirt with Heavenly logo embroidered (Size S, L & XL) : 10€\r\n\r\n[img:87ac4dc28c]http://i3.photobucket.com/albums/y85/Rei_itchido/c6ca7afd.jpg[/img:87ac4dc28c]\r\n\r\n[img:87ac4dc28c]http://i3.photobucket.com/albums/y85/Rei_itchido/shirtblanc.gif[/img:87ac4dc28c]\r\n\r\nBlack t-shirt with Heavenly logo printed (Size L & XL): 15€\r\n\r\n[img:87ac4dc28c]http://i3.photobucket.com/albums/y85/Rei_itchido/shirtnoir.gif[/img:87ac4dc28c]\r\n\r\nT-shirt Sign Of The Winner (Size XL): [color=red:87ac4dc28c]SOLD OUT !!![/color:87ac4dc28c]\r\n\r\nCD Coming From The Sky: 15€\r\n\r\n[img:87ac4dc28c]http://www.noiserecords.com/shopimages/noise/heavenly1.jpg[/img:87ac4dc28c]\r\n\r\nCD Sign Of The Winner: 15€\r\n\r\n[img:87ac4dc28c]http://www.noiserecords.com/shopimages/noise/heavenly2.jpg[/img:87ac4dc28c]\r\n\r\nCD Dust To Dust: 15€\r\n\r\n[img:87ac4dc28c]http://www.noiserecords.com/noiseimg/heavenly/dust.jpg[/img:87ac4dc28c]\r\n\r\nPost and packaging: 3€ for one item and 5€ for two or 8€ for more....\r\n\r\nSee Ya'),(28,'e7cbfdd4c8','','Ornithorynque poweeeeeeeer !!!! \r\nHi Charley , we\'re waiting for crazy games :)'),(29,'0dc22d6743','','Hello Lionel\r\nThe fanclub site doesn´t work for me.I cen get to the index but I can´t enter the site.Like if the hyperlink does not work :cry:'),(30,'b33fd9c810','','This is the link:\r\n\r\nhttp://heavenlyfanclub.free.fr/home/english/home.html'),(31,'faf0e076bc','','Aha.Thank you it works now :wink:'),(32,'4831f2508d','What country are you from?','I\'m in the US. I\'ve been a Heavenly fan for a few months now. I wish I had known about this amazing band a long time ago. I was introduced to the power metal genre earlier this year and must say it beats anything you can possibly find on the radio in the US. The next time Heavenly starts doing shows... I WILL be there! A bunch of my friends and I would do anything to see these guys play live. I know it isn\'t going to be in this country... but that isn\'t gunna stop me.'),(33,'115f7449f5','','Norway here:)'),(34,'01e8de80ad','','I\'m from switzerland.'),(35,'e1674ef970','','hi charley, thanks for your mail-answer ;) fucking great :D'),(36,'7e40705f7d','','The second Michael Kiske :D'),(37,'fdd76755d3','Thanx guys ..........','Hi there \r\nthis is ben :twisted: \r\nthanx for all congratulations !\r\n\r\nfirst of all, i hate guys wich eat fuckin m&ms .\r\nit stink peanuts at least 2 hours and it makes me sick :( \r\n\r\nand finally i only drink coca cola without caffeine\r\n\r\ntake care of you .........\r\n\r\nben'),(38,'910b066c8c','','Well, Czech repbulick here :)'),(39,'4aeb585870','','Fraaaaance !!!! whahahahaha :D \r\nNice to see heavy metal brothers from everywhere 8)'),(40,'ab0c1c5b0b','','yeah I agree .....'),(41,'793e372cac','','I discovered them in 1998 with Destiny , then I loved their Music .......but I\'ve been dissapointed by Elements part 1 . Not because the music is bad , but I think they begin to repeat themselves , there\'s no surprise and it\'s boring .\r\nThe latest album is a surprise..... good sound , it\'s different ..... totally different . But here is the problem , there\'s no evolution , no links between this album and the others : Stratovarius is just a name which lost all his meaning. \r\nSo let\'s rename this band ! :P .... Torariusvast :D ok ok ok :arrow:'),(42,'871d991194','','Hi everybody !!!\r\n\r\nThanx for all your messages !!! and once again welcome to my poll !!!, here you can post \r\neverykind of message that you want ...\r\n\r\nBut the only condition for that is ........ SPEAK ABOUT ME !!!! ONLY ME !!! ME ME ME ME ME ME\r\n ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME ME [b:871d991194]M EMM EM EM EM EM EM EM EM\r\n EM EM EM EM EM EM EMEM [/b:871d991194]EMEMEM[i:871d991194]EMEMEMEMEMEMEME[/i:871d991194]MEMMEK?OMEGN[b:871d991194]O\r\nA3RUFHNOAMU3BGHFMO[/b:871d991194]U3RBGHARBGMUAERBGUOAMBERGBMA\r\nMRGBVMAEUBRVAOIUBREGVAR !!!!!!!!!!!!!!![b:871d991194]!!!!!!!!!!!\r\n!!!!![/b:871d991194]!!!!!!!!!!!\r\n\r\nOh sorry ... I think I had a \"cat\'s whiskers crisis\"\r\n\r\nAnyway ...\r\n\r\nNice to see you, to see you .......................... nice.\r\n\r\nBut one question for tonight : who has heard the last \r\nMaiden live album and who\'s able to tell me how it is ?\r\n\r\nI\'m waiting for your answers ...\r\n\r\nC U later [b:871d991194]MY[/b:871d991194] alligators ...\r\n\r\nCharley'),(43,'0f5e266921','','Hey hey,\r\n\r\nM\'nMs are fuckin good .... peanuts give some sounds when you\'re eating them... \r\n\r\ndo you want my peanuts????\r\n\r\n :lol: :lol: :twisted:'),(44,'e92f35064f','',':twisted: FRANCE :twisted: \r\n\r\nMy english is not perfect...\r\n\r\nI\'ve known heavenly since one year and \"dust to dust\" is definitively the best album of my discography!\r\n\r\n\r\n*pff ce forum va me faire bosser mon anglais les gars!!* :mrgreen:'),(48,'acdb822f42','','on dit poll ou survey'),(45,'6657c33d09','SONDAGE!!','So my first topic in english... So hard for me so it\'s a sondage (on dit sondage en anglais?)'),(49,'a93fb44fa5','','Pour sondage? ok merci merci!! :oops:'),(50,'9f41e16f09','','It´s clear for me.Dust To Dust is the best one :D'),(51,'6cdf972933','','yaaaaaaaaaaa :twisted:'),(52,'6005889884','Nothing to say? Come here!','Well just a little thing to say that you are here, in the forum...\r\nTo say everything you want or just say hello! :D \r\n\r\nyaaaaaaaaaaaaaaaaaa'),(53,'5d3acb5b04','Stuned !','Hi mates,\r\n\r\nI just celebrated my 33rd birthday... it means that I\'m an old guy for most Heavenly fans.\r\n\r\nI found Dust to Dust last week in a shop... and I can\'t stop listening to it... and I still don\'t imagine that it\'s a French band !\r\n\r\nI\'ve been an helloween fan for almost 20 years, and I really appreciate to see (hear) that the style is still ALIVE ! I thought the SOAD/LINKIN/LIMP and other pophardrock bands would stab in the back our good old speed metal !!! well I suppose I was wrong ...\r\n\r\nIf you plan to tour in France after the launch of your 4th opus... please comme to Brittany Rennes (Mondo Bizarro ??) or nantes (Olympic) ! I\'m sure that you\'ll be warmly welcome...\r\n\r\nCongratulations for your hard work . I\'m sure you\'ll be the keepers of the ... 8th key !\r\n\r\nAlex'),(54,'a1b35af0e3','','Hey Charley !!\r\n\r\nThanx for the great show in St Rémy-de-Provence !! \\m/\r\nCan\'t wait for the next concert :P \r\n\r\nYour Ultra-Fan, \r\n\r\n\r\nOlivier :mrgreen:'),(55,'239aeda718','','Hey all...First post here. I first heard Heavenly through an Internet radio station & I finally bought \"Dust to Dust\" back in 2004. Been hooked ever since.'),(56,'a9879a8c85','','Hi Dudes,\r\n\r\nLionel, \"c\'est toi nimport nawak\"; i\'m eagger to see you to have fun and drink.....\r\n\r\nCrimson Thunder, nice to meet you (don\'t worry to do what you want in my poll, let\'s go freestyle lol)\r\n\r\nTalk soon\r\n\r\nOlivier'),(57,'e36abba9a0','','I have chosen \"Dust to dust\" but I am a little surprised by the result, caus\' I more prefer \"CFTS\" than \"SOTW\".'),(58,'0c84bbe81e','','Cool your new aka \"HeavenLio\" ! \r\n\r\nHail Olivier, the Smiley Guy (except in Holland!) ! ! ! !\r\nVery happy to see you here. I thought that with your wonderfully fast Internet Connexion, you won\'t be with us.\r\nThat\'s pretty cool...\r\n\r\nYou\'ve received my photos, I am happy that you like them. Fortunately for me....\r\n\r\nCome when you want in the South !\r\nSee ya\''),(59,'0032caaf70','','ya!\r\n\r\nI have discovered heavenly when I searched a cd for my best friend\'s birthday!! :D'),(60,'4ed1c0d4c8','','Yeah Ben !\r\n\r\nI\'m with you ! MnMs, Coca and fucking farting guys in the back of the car, that\'s a helly combination :evil: \r\n\r\nCool your pics on the official website 8) \r\n\r\nSee ya\' dude in Bandaù :P'),(61,'9e94e56162','','Hi Fred,\r\n\r\nI\'m happy to see you too!\r\nYou\'re right, smiley except in Holland, but this gonna change lol\r\nI don\'t when i\'ll be in south, but i\'m waiting for you in Paris, dude!\r\nOnce again, thanx a lot for everything you did or do, with or for us.\r\n\r\nSee you soon my friend\r\n\r\nTake care\r\n\r\nOlivier'),(62,'37999a36ca','','Well I discovered Heavenly thanks to Czech metal magazine.I read review about Dust To Dust.It get five points from six.Well so my father bought me this CD and I fell in love with this one.Since then I am real die-hard fan of Heavenly :D'),(63,'e5c5203640','','OK :D \r\nBTW thank you for adding me to your contact list on MSN.I hope we´ll meet sometime and talk through MSN :wink:'),(64,'a982451397','','Crimson thunder, i\'m not connected on the web everytime, but as soon as possible, let\'s go for a chat on msn. (better than a forum discussion)\r\n\r\nTalk soon dude\r\n\r\nOlivier'),(65,'1d4048506c','','Other bands (so far)...\r\n\r\nDream Theater\r\nQueensryche\r\nSymphony X\r\nKamelot\r\nNightwish\r\nSonata Arctica\r\nAdagio\r\nThreshold\r\nRoyal Hunt\r\nTen\r\nVanden Plas'),(66,'2315e38146','Australia!!','heavenly please tour Australia!!!!! we love you down here!!'),(67,'cf7d0c2af5','','Today we are on september, 21 ; so, everybody with me to wish a :\r\n\r\n\"JOYEUSE FETE MATTHIEU\" ! ! ! ! :mrgreen: :mrgreen: :mrgreen: :mrgreen: \r\n\r\nSee ya\' dude'),(68,'ff46e1419d','','The helly guys are saying : shit ! :lol: \r\n\r\nThe travell was better with our sounds and our smells: so funny! isn\'t it?\r\n\r\nI wanna dance on Raï Ben with you or sing on P.A.N !!!!\r\n\r\n@Fred: stop speaking and go to work for the webzine !!!! 8)'),(69,'9114469d2b','','[quote:9114469d2b=\"Olivier Lapauze\"]Hi Dudes,\r\n\r\nLionel, \"c\'est toi nimport nawak\"; i\'m eagger to see you to have fun and drink.....\r\n\r\nCrimson Thunder, nice to meet you (don\'t worry to do what you want in my poll, let\'s go freestyle lol)\r\n\r\nTalk soon\r\n\r\nOlivier[/quote:9114469d2b]\r\n\r\nDon\'t worry dude, I hope I\'ll see you soon and have some funny nights and drinking days with you and why not with your brother?!!!\r\n\r\nHolland was great but Saint Rémy was better: nirvana?!'),(70,'92695139ba','','Wooohooo\r\n\r\nWish you all the best to your name day :D'),(71,'8c8df70e63','','[quote:8c8df70e63=\"HeavenLio\"]I wanna dance on Raï Ben with you or sing on P.A.N !!!!\r\n\r\n@Fred: stop speaking and go to work for the webzine !!!! 8)[/quote:8c8df70e63]\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:\r\n\r\n :evil: :evil: :evil: :evil: :evil: :evil: :evil: :evil:'),(72,'cd41094560','','Today : september, 22 !\r\n\r\nEverybody sings with me !\r\n\r\n\"HAPPY BIRTHDAY TO YOU, HAPPY BIRTHDAY TO YOU, HAPPY BIRTHDAY TO YOU BEN, HAPPY BIRTHDAY TO YOU!\"\r\n\r\nclap clap clap clap clap clap clap clap clap clap clap clap \r\n\r\nHeavy (speed) birthday Ben 8) All the best for you....'),(73,'adb0366472','','Yes, that\'s true guys, it\'s Ben\'s birthday !\r\n\r\nHappy birthday again dude !\r\n\r\nHope you\'re parents will support your future \'cacophonie\' with your new instrument..... mwahahahahaaaaaaaaa...... :roll: :lol:'),(74,'8b16248d19','','Oh yeah man.\r\nHappy heavy birthday.\r\nWish you lot of health, luck and love in your life\r\n :D'),(75,'fa919053cc','','oh, I didnt see :D \r\n\r\nhappy birthday mighty birthday-child :D all the best and carry on with your amazing voice and your amazing band!'),(76,'028b9c84f1','','RHAPSODY, my fav\r\nblind guardian\r\ngrave digger\r\nelvenking\r\nthy majestie\r\nluca turilli\r\nfreedom call\r\nEdguy\r\nhelloween\r\nhammerfall\r\nsonata arctica\r\nnightwish\r\n....\r\nand many more ot the power, melodic, epic genre 8)'),(77,'7995ac160c','Favourite songs?','Which are your favourite songs?\r\n\r\nMy favourite songs are :\r\n\r\nillusions part 2 ( the call of the wild)\r\nMiracle'),(78,'b91e109424','','I can say that I like every song on Dust To Dust.\r\nGreat songs from Sign Of The Winner are Break The Silence, Destiny, The Angel, The World Will Be Better, Until The End\r\nAnd from Coming From The Sky I like Time Machine, Until I Die and Our Only Chance'),(79,'ffde34c9a3','','The ones that stand out for me are:\r\n\r\nLust for Life\r\nIllusions Pt. 2\r\nKeepers of the Earth'),(80,'cfcc18484f','','WAOUW .............. :P \r\nThanks a lot guys to think about my birthday \r\nI am very touched by all your kind words \r\nNow : I promess to enjoy your hearts and ears with our new opus next year ......\r\nall the best dude 8) \r\nben'),(81,'7677e5d25d','Make the perfect set list for Heavenly !!!','Try to make the perfect set list for Heavenly ...\r\n\r\nSeveral things to know :\r\n\r\n- not more than 90 minutes long\r\n- no instrumental \r\n- + cover at the end (included in the 90 mns)\r\n\r\nLast thing, let me remind you our all our tracks :\r\n\r\nCarry Your Heart (4\'19)\r\nRiding Through Hell (6\'21) \r\nTime Machine (7\'07) \r\nNumber One (7\'12) \r\nOur Only Chance (7\'02) \r\nFairytale (0\'32) \r\nMy Turn Will Come (6\'42) \r\nUntil I Die (6\'11) \r\nMillion Ways (5\'08) \r\nDefender (5\'06) \r\nPromised Land (3\'47)\r\nDestiny (6\'59) \r\nSign Of The Winner (4\'05) \r\nThe World Will Be Better (6\'54) \r\nCondemned To Die (6\'15) \r\nThe Angel (2\'06) \r\nStill Believe (5\'02) \r\nThe Sandman (4\'43) \r\nWords Of Change (5\'06) \r\nUntil The End (8\'52) \r\nEvil (6\'12)\r\nLust For Life (6\'14)\r\nVictory (6\'50)\r\nIllusion Part I (2\'06)\r\nIllusion Part II (4\'58)\r\nKeepers Of The Earth (6\'15)\r\nMiracle (9\'08)\r\nFight For Deliverance (6\'57)\r\nKingdom Come (8\'11)\r\nDust To Dust (4\'59)\r\n\r\nThanx dude !!!\r\n\r\nC U later alligators ...\r\n\r\nCharley'),(82,'9e6e9fb88e','','Hail dude !\r\n\r\nThis is my setlist:\r\n\r\nAshes to ashes... (1\'50)\r\nEvil (6\'12)\r\nLust for life (6\'14)\r\nCarry Your heart (4\'19)\r\nCondemned to die (6\'15)\r\nThe world will be better (6\'54)\r\nVictory (6\'50)\r\nPromised Land (3\'47) [For the Fan Club.....]\r\nNumber One (7\'12)\r\nFight For Deliverance (6\'57)\r\nKingdom come (8\'11)\r\nDust To dust / accoustic version [Why not?] (4\'59)\r\n- Rappel- \r\nTime Machine (7\'07)\r\nSign Of The Winner (4\'05)\r\nSweet child o\' mine (Guns And Roses cover)\r\n\r\nTaht\'s it !!!! :wink: \r\n\r\nWhat do you think about it?'),(83,'dc613dd626','','Allright...let´s try.\r\nI don´t know many songs from Coming From The Sky but...:\r\nAshes To Ashes\r\nEvil\r\nLust For Life\r\nDestiny\r\nUntil I Die\r\nIllusion Part 2\r\nThe Angel\r\nMiracle\r\nFight For Deliverance\r\nOur Only Chance\r\nThe World Will Be Better\r\nUntil The End\r\nKingdom Come\r\nDust To Dust\r\n\r\ndon´t know any cover...this is just perfect for me\r\nHope that the time fits...approximately'),(84,'46811419bf','','Portugal!!!!!!!!'),(85,'687ecfa20b','','USA'),(86,'ec2f1b44d9','','Hi everybody!!!!\r\n\r\nLionel, i love your canapé (settee), but you had already weakened it with your big ....mmmmmhhhhhhh...bottom :lol: , and it\'s why I inopportunely broke it....sorry!\r\n\r\nsee you later on the road!\r\n\r\nthomas[/quote]'),(87,'c167179b5b','','It\'s nice to have some news of you dude !\r\n\r\nHope your studies are ok?! \r\n\r\nMy bottom is ok, it\'s yours which is big!!!\r\n\r\nsee You'),(88,'8d7d8004de','Country','France !! The country of Heavenly !! :D \r\nYou are The Best !! you changed my life with your beautiful music :D'),(89,'6e8bd229d7','','Springfield, IL U.S.A.'),(90,'6b15dde2b7','','For me:\r\n\r\nLust for life\r\nEvil...\r\n\r\nIn fact all the songs of \"dust to dust\"... :D'),(91,'13c0e2a7e8','','I just read in your musical influences Smetana.Do you mean Bedřch Smetana?Our czech composer?'),(92,'1413aed372','','I\'ve just watched the \"pictures\" of each member on the official website and I just want to say :\r\n\r\n ! ! ! ! ! ! ! ! ! ! ! ! ! JEAN-PIERRE SAUSER RULES ! ! ! ! ! ! ! ! ! ! ! ! !\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:'),(93,'1c8a8b6cf7','','I\'ve just watched the \"pictures\" of each member on the official website and I just want to say :\r\n\r\n ! ! ! ! ! ! ! ! ! ! ! ! ! JEAN-PIERRE SAUSER RULES ! ! ! ! ! ! ! ! ! ! ! ! !\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:'),(94,'c500bd9111','','I\'ve just watched the \"pictures\" of each member on the official website and I just want to say :\r\n\r\n ! ! ! ! ! ! ! ! ! ! ! ! ! JEAN-PIERRE SAUSER RULES ! ! ! ! ! ! ! ! ! ! ! ! !\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:'),(95,'d65b043ef2','','I\'ve just watched the \"pictures\" of each member on the official website and I just want to say :\r\n\r\n ! ! ! ! ! ! ! ! ! ! ! ! ! JEAN-PIERRE SAUSER RULES ! ! ! ! ! ! ! ! ! ! ! ! !\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:'),(96,'b5f9c64cf0','','I\'ve just watched the \"pictures\" of each member on the official website and I just want to say :\r\n\r\n ! ! ! ! ! ! ! ! ! ! ! ! ! JEAN-PIERRE SAUSER RULES ! ! ! ! ! ! ! ! ! ! ! ! !\r\n\r\n :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol:'),(97,'b490ad63fd','','Hi Fred, I\'m really happy to see that you\'re still crazy!!!!! Don\'t change, dude.\r\nJean pierre sauser rules is the only way of life!!'),(98,'','Hey!!!! I\'m From Thailand!!!!!!','Hey!!!! I\'m From Thailand!!!!!! :wink:'),(99,'186ab6e826','','Wohoo :o 8) \r\nMan it´s pretty far from Europe. :wink: \r\nKeep metal faith in Thailand. :D'),(100,'174c08ff24','','Hie everybody,\r\n\r\nI have nothing to say so i come here, i really like this topic lol\r\nThanx everyone to support the band, see you soon on tour (i do really hope)\r\n\r\nOlivier\r\n\r\nCrimson: hockey rules'),(101,'d63e9f98df','','I like all on Dust to Dust, though sometimes they change the melodic to often and dont fit together.\r\n\r\nAnd I LOVE every song on Sign of the winner. The sandman a bit less, and for its short time Angel a bit more :] The alst songs seems more like a medley though.'),(102,'2fa6ad1cbe','','hey hey hey dude!!!\r\n\r\ncongratulatioooooooooonnnnnnns to j-p sauzer the big star, I hope a future duo between j-p sauzer and ben..... :P \r\n\r\n\r\nkeep on metaaaaaal\r\n\r\nyou can ask me all that you want, I would answer with pleasure \r\n\r\nciao'),(103,'03b2b9b1af','','[quote:03b2b9b1af=\"Olivier Lapauze\"]Hie everybody,\r\n\r\nI have nothing to say so i come here, i really like this topic lol\r\nThanx everyone to support the band, see you soon on tour (i do really hope)\r\n\r\nOlivier\r\n\r\nCrimson: hockey rules[/quote:03b2b9b1af]\r\n\r\nHe he...yeah dude hockey rocks :D \r\nAs you told we could play some match...Heavenly vs. czech fans or so :lol:'),(104,'bced424c83','','So now we have all Heavenly´s members on forum... :D \r\nLet´s rock!!!! :twisted:'),(105,'37a0d908c6','','I know only Dust to Dust but I know it very well.\r\nEvery day I like another song from that album the most.\r\nFirst it was Lust for life, then it became Victory, then Kingdom Come, then Dust to Dust and now I like the Ilusions+Miracle the most.\r\n\r\nThis is simply a perfect album.\r\nevery song is perfect.'),(106,'c45f82cd24','','For me all your have to do is play Dust to Dust album by order.\r\nThat would make a perfect show for me.'),(107,'28432e7d72','','South of Korea. 8)'),(108,'618b808e21','','Hail,\r\n\r\nAll the Heavenly albumd will be available this week !!!! :wink: :P'),(109,'183336e72f','','No no, we are still waiting the bass player... Matthieu !'),(110,'229a060222','','Are there any pictures of the shirts?'),(111,'b408fe559e','','I\'ll take some shots and I\'l try to post them here !'),(112,'2507498640','','thomas is the most beautiful guys of the band......\r\nwe love you\r\n\r\nsee you at the next show!!!!!!\r\n\r\nbiiiiiiiigggggggggggg kiisssssssss :oops: ssssssssssss'),(113,'39dd69e5de','','yeaaaaaaaaaahhhhhhhhhhhhhhhh, i\'ve got fan...hehehehe... :P \r\n\r\nthank you so much!!!! :oops:'),(114,'aa3970cdbb','','[quote:aa3970cdbb=\"Olivier Lapauze\"]\r\n\r\n[...]\r\nI have nothing to say so i come here, i really like this topic lol\r\n[...]\r\n\r\nCrimson: hockey rules[/quote:aa3970cdbb]\r\n\r\nThx thx!! I\'m very proud of me for this topic!!!! looooool :lol:'),(115,'3c5b38b2b1','','Yeah man.Something like our General Discussion :D'),(116,'2de1c36d8e','','Yes, that would be great.'),(117,'58a361119d','','thomas\'fan + thomas = Sex ( faire l\'amour :D )\r\n\r\nhihihihi.... :lol:'),(118,'30be13828d','','[quote:30be13828d=\"HeavenLio\"]No no, we are still waiting the bass player... Matthieu ![/quote:30be13828d]\r\n\r\nMan.....my mistake :oops:'),(119,'605d2a56c3','','[quote:605d2a56c3=\"grave-digger\"]thomas\'fan + thomas = Sex ( faire l\'amour :D )\r\n\r\nhihihihi.... :lol:[/quote:605d2a56c3]\r\n\r\ni love thomas, and he loves my settee ! mwahahahahaaaaaaaa\r\n\r\nnb: I\'m not gay'),(120,'00a6cac72b','','[quote:00a6cac72b=\"grave-digger\"]thomas\'fan + thomas = Sex ( faire l\'amour :D )\r\n\r\nhihihihi.... :lol:[/quote:00a6cac72b]\r\n\r\nyeaaaaaaaahhhhhhhhhh, I want sex on lionel\'s settee, (but without Lionel...of course) :lol: \r\n\r\nbye'),(121,'effbc449d7','','hi!!!!!\r\n\r\nit\'s just to say you ......\"VAS-YYYYYYY, BAISSE LES YEUX....MDRRRRRR\" (in english....look down...??????)\r\n\r\nI give you a kiss\r\n\r\ntom'),(122,'88becf5e13','','Heavenly\r\nSonata Arctica\r\nRhapsory (uh yeah)\r\nLuca Turilli\r\nDionysus\r\nFreedom Call\r\n\r\nI like the songs from rhapsody more, but on rhapsody albums I find songs I dun like wich is not the case with heavenly'),(123,'1ea17142ba','','Hey guys, my first post in this forum.... As I tought, Dust to dust is the most appreciate, best quality of production (thanks to Sasha Paeth), but for me the ultimate album is Sign of the Winner. I know a lot of bands, but the Sign of the Winner of Heavenly.... it\'s just... how should I say ? Perfect. Even if the recording was quite \"hard\", the result\'s higher than I should ever expect. What\'s the reason of that, will you ask ? It\'s because of a guy... a genius named Ben Sotto, who sings high, with a lot of \"clin d\'oeil\" to Kai Hasen, Timo Kotipelto, etc.... And so, even if in Dust to Dust, the production is amazing, tremendeous melodies (just like for Sign of the Winner), we have the feeling tant Ben had to sing in a \"normal way\", and then it lost what get Heavenly so \"priceless\" !\r\n\r\nWell, I\'m dreaming that\' the four opus will be closer of Sign of the Winner than Dust to Dust, but I suppose with a opinion like that, I\'m going to have some \"ennemies\".... ;- D'),(124,'dead1d30ce','','Hum... Let\'s see....\r\n\r\nComing From the Sky :\r\n\r\n- Riding Through Hell\r\n\r\nSign of The Winner :\r\n\r\n- Destiny\r\n- The World Will Be Better\r\n- Words of Change\r\n- Condemned To Die\r\n- Still Believe\r\n- Sandman\r\n- The Angel\r\n- Sign of the Winner\r\n- Until the End\r\n.... Damn, it\'s all of them ^_^\r\n\r\nDust to Dust :\r\n\r\n- Evil\r\n- Fight For Delivrance\r\n- Illusion\r\n- Lust For Life\r\n- Dust to Dust (jap cover)'),(125,'b0b73af776','','Good question, let\'s give a try :- D :\r\n\r\n- Destiny\r\n- Evil\r\n- Riding Through Hell\r\n- Sandman\r\n- Carry Your Heart\r\n- Condemned To Die\r\n- Words of Change\r\n- Lust For Life\r\n- The Angel\r\n- Illusions (Part I & II)\r\n- Sign of the Winner\r\n- Still Believe\r\n- Victory\r\n- Until the End\r\n- The World Will Be Better\r\n\r\nCover Helloween : Eagle Fly Free\r\n\r\nHow\'s that ?'),(126,'83981747b6','','Switzerland, Geneva. (En gros ça veut dire que ma langue de base est le français :wink: ).\r\n\r\nI\'m a heavenly\'s fan from the very beggining, and Sign of the Winner stays my favourite album, thanks to Ben, powerful melodies and great lyrics.'),(127,'3dad3476c7','','Funny, when I saw this topic at first, I tought it was talking about the song of Angra \"Nothing to Say\" :lol: .\r\n\r\nHeavenly.... So many year... still in love with them :oops:'),(128,'6c6d6c9bfc','','Don\'t forget the shots of the t-shirts, I\'m realy interested. :D'),(129,'b7b5814884','','Well.... Seeing guys who loves the true music is always... you know.... beautiful. Well, a really short list of my favorites band (I wanna sleep a bit tonight 8) ), not in the order :\r\n\r\n- Heavenly\r\n- Stratovarius\r\n- Rhapsody\r\n- Helloween\r\n- Gamma Ray\r\n- Freedom Call\r\n- HammerFall\r\n- Angra\r\n- Edguy\r\n- Azrael (japanese band... Amazing.... Ben should listen to them if he can)\r\n- Dionysus\r\n- Manowar\r\n- Luca Turilli\r\n- Blind Guardian\r\n- etc.... etc.... etc....'),(130,'b817c13ea1','Keepers og the earth midi file','Anyone have Keepers od the earth midi file foi send me???\r\ni need urgently!!\r\nthanks'),(131,'055cb69f77','','Photos added !!!! :lol:'),(132,'ba4d748eaf','Mirror mirror on the piano?','Is there any sheet so I can play this part of fight for deliverance on my piano? :)'),(133,'67c9262df2','','Man you have large signature.But it´s nice 8)'),(134,'5ef9372cc7','','[quote:5ef9372cc7=\"SquallSaga\"]but I suppose with a opinion like that, I\'m going to have some \"ennemies\".... ;- D[/quote:5ef9372cc7]\r\n\r\nI don´t think so dude.We all love Heavenly no matter what album it is it´s Heavenly. 8)'),(135,'f67f4746d5','','Nice green bed dude ;)'),(136,'16b545015b','','Yeah, I\'ve tried to fix that, but.... If someone could help me..... :?'),(137,'f8c9df77e8','','Great words of a great guy obviously ;- D'),(138,'c74d40fca0','','Now you can contact me for the t-shirts. \r\n\r\nAnd for those who are interesting by an order, you have to know that I still have signed photos of the new line-up ! An exclusivity :wink:'),(139,'e17f79e7a9','','Thank you man :D'),(140,'d34f85d207','','us fattys need size XXL. 8)'),(141,'44448e35f5','','Dust to Dust. Its perfect, new and original!'),(142,'0f32031b4b','','Hi Tom \"NO RED BULL\" Das neves\r\n\r\nI\'ve only one thing to tell you: \" it\'s my car\"\r\n\r\nSee you soon and \"bein faut mettre une vis\"\r\n\r\nOlivier'),(143,'2e30087278','','Hey dudes !\r\n\r\nI need RED BULL !!!\r\n\r\nBut I also need a s----e à gros seins. Olivier, Thom, what do you think about i?!'),(144,'4191efcca4','','Hie HeavenLio\r\ni know there\'s still a lake fo sexe in your life, but this gonna changeone days, but not YET!!!!!!!!!!!!!!!!!!!!!!!!! (I joke but carry on on that way, you will find the key of this problem)\r\nCome in Paris, there is a lot of women to meet, and sofuckin\' nice for sure.\r\n\r\nTake care my friend\r\n\r\nOlivier'),(145,'738a763743','Do you need guitar solo tabs','Hie everybody,\r\nI wanna make some guitar solo tabs for our website but i don\'t know which one? So if you have an idea or need one specially, ask me!!!!!!!\r\n\r\nKeep on metal \r\n\r\nOlivier'),(146,'83d02c75ad','','No HeavenLio ! Stay in the South, everybody knows that the most beautiful girl are there !\r\n\r\nSo Olivier, just to say that you didn\'t miss me in Paris cause the show has been cancelled at the very last time by Royal Hunt :evil: :evil: :evil: :evil: :evil: :evil:'),(147,'3fea789aa0','','SacredSfred,\r\nbe sure that i\'ll there for your next time in Paris.'),(1183,'ff01124c03','','Thanks a lot dude. 8) Use them if you want to.\r\n\r\nBanners and stuff should be put on different metal sites to inform about Heavenly!'),(1184,'51fb242548','','Well, I\'m here too. Don\'t forget there is an official website and a new forum... Okay, there isn\'t a lot of people there too, but I think things will be fixed when the new album will be relased.'),(1181,'96096438f8','','I guarantee that once Heavenly releases their new album there will be alot of talking here.\r\nJust release it already!!'),(1182,'afbb3a3c04','','Man they are cool 8) \r\nI think that band could use them and put them on their website....and I guess I will put them on my website. Great job :wink:'),(150,'7f913a99fe','kickass video!','that was good stuff. I wanna see Heavenly live!'),(151,'49fd5e28cb','','Yeah me too. It´s great video. Thanks for it guys 8)'),(152,'af35e45024','','Finally, the video is online ! Nice work Olivier\r\n\r\ndon\'t forget our video project !!! :lol: :wink:'),(153,'b7c059ec84','','Mwahahahahaaaaaaaa, hey Fred, don\'t cry, you have seen Gamma Ray on stage and on backstage.... \r\n\r\nLucky fuckin\' boy !\r\n\r\n@Olivier: I hope I\'ll come in paris soon !'),(154,'b9f2d8a880','','heavenlio, one night in paris :lol: hm, I heard many good things and bad things about Paris, but nothing about women 8)'),(155,'411060a92c','','hey charleyboy, why have you cut your hair? :wink: Let the grow :D'),(156,'b74f370806','','ah, 2006 will be an amazing metal year! Heavenly and all the other albums, wouw, couldn\'t wait :P'),(157,'475f5f384c','','another swiss, juhuu 8) Fans from all over the world, sout korean, nice :D'),(158,'9df2262355','','I say it in the angra-language : Nothing to stay - CarolinaIV took the river to the sky 8)'),(159,'7a092158e8','','Yes, Sasha paeth makes amazing productions : rhapsody, edguy, heavenly.... .'),(160,'fb2269f70b','','Nice video! Charley is always a little bit white 8)'),(161,'843c96cd81','','I like family-forums, everyone knows everyone, I like it 8)'),(162,'6a0925392c','','hm, I don\'t like the new album very much. It\'s good, but stratovarius should walk on the older way. I like the special hyms of strato, but now, there aren\'t such hyms.'),(163,'82164bd1cc','','I think, I would a kill a heavenly-hater :lol:'),(164,'8ad7062184','','I cut my hair cos\' I was not able to play guitar with all this hairy mass in front of my eyez :D lol\r\n\r\nAnd also because now I have several white hairs ... :? \r\n\r\nsnif ...'),(165,'7d32bafac2','Best Artwork?','Which is the best artwork of heavenly? \r\n\r\nFor me its Dust to Dust, I love it! This vampire, the town, the light, GREAT!'),(166,'1e5bc4c747','','in your age??? I feel with you. But for your problem with the guitar-playing, there is a easy way to stop the problem: horse-tail :wink:'),(167,'22a8465dac','','Coming from the sky of course !\r\n\r\nIf everything is ok during the next 15 days, I\'ll tatoo the angel !!!'),(168,'0ca8543407','','No Grave, not one night: so many nights with hot women !!!'),(169,'27fdeb5139','','the hottest women come from italy, right? :)'),(170,'01cc4815ed','','Charley is a old guy: white hair and many other problems.... but he loves beers and girls, even if he\'s an old boy'),(171,'111daeb1ab','','wow, I like tatoos, but not on my body 8) If I wanted to make a tatoo, I woul make a rhapsody logo :)'),(172,'ebc4ea067a','','37 years old = old guy ? :wink: 10 years to the midlife-crisis 8)'),(173,'134ec666b4','','[size=24:134ec666b4]37 ????\r\n\r\nHEY ???\r\n\r\nonly 27 !!!\r\n\r\nGod damned shit !!![/size:134ec666b4]'),(174,'9ff8ce754c','','sorry charley, sorry charley!!!!! 1978 to 2000 = 22 years, and I calculate 32 years..... sorry guy, sorry , sorry , didn\'t want to kick your age 8) you look like 18 *slime* :wink:'),(175,'0e9b917650','happy happy happy happy happy','Hi dudes \r\nyes 2006 will be a very important year for heavenly :o \r\nnew album with many many many surprises .....\r\na lot of shows all over the world .....hope so :D \r\nand of course france will win the world football cup :) \r\n\r\nas you can see we have a lot work now !!\r\n\r\nall the best \r\n\r\nben \r\n\r\nps: jean pierre sauzer said : ah ...la merveille ...ba ..c\'est moi meme la merveille .. :x'),(176,'d6919f1b25','','paaah, Switzerland will win the world-cup 8) Switzerland will beat France back in the 12th century :D \r\nYes, I hope that there are many shows around the globe, exspecially one in swizterland 8)'),(177,'c279199ff7','','OK guys let´s talk about football.\r\nWho´s gonna win the championship? I should say czech rep. but I don´t think so. We have to beat Norway now. It won´t be easy task. But maybe that Petr Nedvěd will return to the team.'),(178,'10659d4a6a','','My vote goes to the Sign Of The Winner.\r\nI like that ship'),(179,'51c8edd1e2','','Dust to Dust gets my vote.'),(180,'e9bf6f3c25','switzerland 1 - 1 france','OF course switzerland rules \r\ndo you know the venue called Z7 at prateln ?\r\nthis is one of the best place we played , it\'s really big and the sound is awesome .\r\nand the audience was brilliant \r\nof course we will play there asap 8) \r\nsee ya \r\nben'),(181,'1bff87c37f','','Hey man, I live in Seattle Washington in the US. You guys neeeeed to do some sort of tour and stop by in the great northwest! That would be kick ass!'),(182,'ef218129e1','','Hello dudes !\r\n\r\nFinally, I\'ve received the albums.\r\n\r\nThe Three albums are now available.\r\n\r\nHere are the prices:\r\n\r\nComing from the sky - 15 €\r\n\r\nSign of the winner - 15 €\r\n\r\nDust to dust - 15 €\r\n\r\nA signed photo will be added for teach order !\r\n\r\nSee You'),(337,'e9e34f04b2','','@ Cryo : you made it alphabetically!!! Cool :D'),(183,'8e6fdd10a0','','oh yes ben. I love the z-7, too. Big, but not too big, nice atmosphere, clear soung, you\'re right and I will be there to watching you :wink:'),(184,'9d3d67d7d5','','Heavenly played at the Z7 in 2002 for the metal dayz....\r\n\r\nI was there too !!!\r\n\r\nAmazing gig'),(185,'35803de51d','no subject !','Of course you were there \r\nif my memorie is ok , it was a risky place for me :lol: :lol: :lol: :lol: \r\ni was fall down the stage :oops: \r\ni was not drunk , shame on me !!\r\nthis is heavy metal attitude :roll: ..........almost :lol: \r\nah ah ah \r\nben \r\n\r\n\r\n\r\n\r\n[quote:35803de51d=\"HeavenLio\"]Heavenly played at the Z7 in 2002 for the metal dayz....\r\n\r\nI was there too !!!\r\n\r\nAmazing gig[/quote:35803de51d]'),(186,'84b01bb531','','yaaaaa\r\n dust to dust for me'),(187,'a6f45e88d3','','oh no football?!? :o \r\nI\'m a girl and don\'t want to talk about football you know...(Not because I\'m a girl but \'cause I don\'t like it) What have made with my poll, men?\r\n\r\n :( :cry: lol say what you want of course...'),(188,'c4470052cc','',':cry: I know... anyone... I\'m alone help me!!'),(189,'c30a074125','Re: no subject !','[quote:c30a074125=\"ben\"]i was not drunk , shame on me !!\r\n[/quote:c30a074125]\r\n\r\nlol\r\nI don\'t believe you :lol:'),(190,'2491f8d98d','','I know only grave-digger and Olivier thanks to MSN. \r\nDownload MSN or ICQ and we can talk together :wink: :D'),(191,'dd265b8ddf','','Hm.....OK no football here. I think I´ll start new thread about football but I don´t know which section I should choose. We really need General Discusion here....'),(192,'47f899ff54','','I\'m totally agee with Joe54 \'cause i don\'t really like football too. (Ben and Tom always watch football tv match , and so i\'m forced to watch it with them, arrrrrrhhhhhh)\r\n\r\nOlivier'),(193,'c43b1ca886','','2006, you were in this hall again and I\'ll be there to see the drunken ben 8)'),(194,'8fc8e54786','','This football thing...I have to keep reminding myself that the European/most of the world\'s version of \"football\" is the US version of \"soccer.\" Football here is the NFL, etc. Kinda confusing. :?'),(195,'ae214e6c52','','[quote:ae214e6c52=\"Olivier Lapauze\"] (Ben and Tom always watch football tv match , and so i\'m forced to watch it with them, arrrrrrhhhhhh)\r\n[/quote:ae214e6c52]\r\n\r\nMon pauvre! So bad... lol\r\n\r\n*************************************************************\r\n\r\nHere \"football\" is \"soccer\"'),(196,'77c49bfa3f','','I have MSN!! :) \r\n\r\nI have sent a mail at someone in french but I don\'t know who... Who is henkerugi?\r\n\r\n***********************************************************\r\n\r\nYeah I find!! *grave-digger*'),(197,'efefb4a50a','','Allez l\'OM :twisted: :twisted: :twisted: :twisted: :twisted: :twisted: :twisted: :twisted: :twisted:'),(198,'2ac4256812','','Great.\r\nSo if you want add me to your contac list 8) \r\n\r\nfollow_the_sign_of_crimson_thunder@hotmal.com\r\n\r\nIt´s long I know but i didn´t want to be Crimson_Thunder28 or so...'),(199,'5eda477f2c','Re: no subject !','Of course I remember when you falled down, I was in just in front of you !!!! :lol: :lol: \r\n\r\nAn unforgotten day with Heavenly, Gamma Ray and Savatage !!! \r\n\r\nWow, *dreaming*\r\n\r\nConan the barbarian rules !!!\r\n\r\n\r\n\r\n\r\n[quote:5eda477f2c=\"ben\"]Of course you were there \r\nif my memorie is ok , it was a risky place for me :lol: :lol: :lol: :lol: \r\ni was fall down the stage :oops: \r\ni was not drunk , shame on me !!\r\nthis is heavy metal attitude :roll: ..........almost :lol: \r\nah ah ah \r\nben [/quote:5eda477f2c]'),(200,'a9cbb59d59','','I\'m henkerugi, sorry that I didn\'t write back, but see you on msn 8)'),(201,'8164b5a066','','sorry, forgot to log-in, the last post was mine.'),(202,'31740269ef','North American Tour????','Hello all!\r\n\r\nJust wanted to let you know that your music is heard in every corner of the world! I downloaded Coming from the Sky back in 2000 and have not missed an album since. I purchase them online now seeing as there is nowhere in Canada to buy them! I have about 5 or 6 friends who love your music as much as I do. It is not really...how shall I say this...\"In demand\" where we live so 5 or 6 is actually ALOT! Im sure if people HEARD it...they would fall in love with it like we did! Just wondering if you guys planned to come overseas and grace us with your presence anytime soon. Stratovarius just played in a bar about 1 hour away from my house last month and I got to see them. As I was leaving the show I kept thinking \"My life would be complete if Heavenly were to come here too\" Maybe??? \r\n\r\nWaiting anxiously in Canada...HUGE Heavenly fan!!!'),(203,'45a5b2920e','','North American tour? Sounds good to me! :D'),(204,'98295983ef','','I like Sign of the Winner..... :roll:'),(205,'25016948b0','','There\'s someone who was in Paris to see Gamma Ray last Monday ? I was.... totally amazing !!!!'),(206,'7a0c4a48ab','','Yeah... z-7 is fun, but quite far from Geneva.... Why don\'t you come to Geneva !? :D There\'s a place called \"L\'arena\".... please ! Come there ! :o'),(207,'29de227eba','','I\'m a very big fan of Strato... Their lastest album is... very different. If we take it alone, it\'s a really good album, but, if we think of what they\'re able to do....'),(208,'3d6e418bac','','It is different. It´s more simple. That´s why I like it. It´s something new but next album could be more classic like Episode or Visions. The best Strato albums ever :D'),(209,'c9d4c8a2e3','','Episode and Vision ? Yeah ! I agree ! :o I won\'t forget, your beauty, oh my black diamond !'),(210,'922559deec','','Black Diamond is such a classic song. I love it :D'),(211,'8828c08c5a','','Fathers time!!!'),(212,'19e131a4c0','','This topic is pretty pointless...'),(213,'45e29b76ca','Nightwish Parts With Tarja Turunen','Wow... :shock: \r\n\r\n\r\nhttp://nightwish.com/english/lettertotarjaen.html\r\n\r\n\"Dear Tarja,\r\n\r\n\"It\'s time to choose whether the story of NIGHTWISH ends here or whether it will still continue an undetermined period of time. We\'ve been working with this creation for 9 years and we are not ready to give up yet. NIGHTWISH is a way of life, something to live for, and we\'re certain we can\'t let it go.\r\n\r\n\"Equally certain is the fact that we cannot go on with you and Marcelo any longer. During the last year something sad happened, which I\'ve been going over in my head every single day, morning and night. Your attitude and behavior don\'t go with NIGHTWISH anymore. There are characteristics I would never have believed to see in my old dear friend. People who don\'t talk with each other for a year do not belong in the same band.\r\n\r\n\"We are involved in an industry where the business side of things is a necessary evil and something to worry about all the time. We are also a band which has always done music from the heart, because of friendship and the music itself. The mental satisfaction should always be more important than money! Nightwish is a band, it\'s an emotion.\r\n\r\n\"To you, unfortunately, business, money, and things that have nothing to do with those emotions have become much more important. You feel that you have sacrificed yourself and your musical career for NIGHTWISH, rather than thinking what it has given to you. This attitude was clearly shown to me in the two things you said to me in an airplane in Toronto: \'I don\'t need NIGHTWISH anymore,\' and \'Remember, Tuomas, that I could leave this band at any time, giving you only one day\'s warning in advance.\'\r\n\r\n\"I can\'t simply write any more songs for you to sing.\r\n\r\n\"You have said yourself that you are merely a \'guest musician\' in NIGHTWISH. Now that visit ends and we will continue NIGHTWISH with a new female vocalist. We\'re sure this is an equally big relief to you as it is for us. We have all been feeling bad long enough.\r\n\r\n\"You told us that no matter what, the next NIGHTWISH album will be your last one. However, the rest of us want to continue as long as the fire burns. So there\'s no sense in doing that next album with you, either.\r\n\"The four of us have been going over this situation countless times and we have realized that this is the thing we want to do in life. It\'s all we can do. In December 2004, in Germany, you said that you will never tour again for more than two weeks at a time. You also said that we can forget about U.S. and Australia because the fees and the sizes of venues are too small.\r\n\r\n\"In interviews I\'ve mentioned that if Tarja leaves, that would be the end of the band. I understand that people will think this way. NIGHTWISH is, however, a scenery of my soul and I\'m not ready to let go because of one person. A person who wants to focus her creativity to somewhere else, a person whose values don\'t match mine.\r\n\r\n\"We were never bothered by the fact that you didn\'t participate in writing/arranging songs, you never in 9 years came to rehearse the songs with us before going to the studio. Not the fact that while on tour you always wanted to fly, separately from us with your husband. Not the fact that you are an undisputable front image of the band. We accepted and felt OK about everything except greed, underestimating the fans, and breaking promises. It was agreed by the five of us that NIGHTWISH would be the priority in everything that we do during 2004-2005. Still so many things were more important to you. The ultimate example being the already sold-out show in Oslo, which you wanted to cancel because you needed to rehearse for your solo concerts, meet frieds and go to the movies. Those were the words Marcelo used in an e-mail explaining the cancellation. This being just one example of so many. I couldn\'t think of a worse way of being selfish and dismissing our fans.\r\n\r\n\"NIGHTWISH is a way of life and a job with many obligations. To each other and to the fans. With you we can\'t take care of those duties anymore.\r\n\r\n\"Deep within we don\'t know which one of you drove us to this point. Somehow Marcelo has changed you from the lovely girl you were into a diva, who doesn\'t think or act the way she used to. You are too sure of your irreplaceableness and status.\r\n\r\n\"It\'s obvious that you blame your stress and misery on us four. And you think we don\'t respect or listen to you. Believe us; We have always had the uppermost respect towards you as a wonderful vocalist and as a friend. And very often during the past couple of years the plans were made according to your decisions only. You were always the only one who wanted more money from the shows.\r\n\r\n\"This \'compensation and more money from everything\' attitude is the fact that we are most disappointed of!\r\n\r\n\"We wish that from now on you will listen to your heart instead of Marcelo. Cultural differences combined with greed, opportunism and love is a dangerous combination. Do not wither yourself.\r\n\r\n\"This decision is not something we are especially proud of but you gave us no choice. The gap between us is too wide. And the decision is made by us four unanimously. We are beyond the point where things could be settled by talking.\r\n\r\n\"All the best for your life and career, Tuomas.\"'),(214,'e092d1a42e','','Interesting. Who knows what will be in Tarja´s statement. Anyway the official web does not work at the moment so let´s see what will be posted there.'),(215,'8dc3a7a464','','[quote:8dc3a7a464=\"Crimson_Thunder\"]Black Diamond is such a classic song. I love it :D[/quote:8dc3a7a464]\r\n\r\nYeah, like the most of the songs on this album :- D'),(216,'46a7cb12b2','','Comment ca mon pauvre ???? :lol: \r\nc cool le foot de temps en temps :P \r\n\r\nps: sorry but sometimes it\'s really important to speak french ....\r\n\r\nponton !\r\n\r\nben :shock:'),(217,'9d8108d3b7','','I don\'t know if this is the right place to talk about it, BUT I would really like to know where I could get / hear Heavenly\'s demo songs, those three \'98 demos. If anyone has some kind of information about this, would someone please reply? :cry:'),(218,'38e100a00c','','[quote:38e100a00c=\"BEN\"]Comment ca mon pauvre ???? :lol: \r\nc cool le foot de temps en temps :P \r\nben :shock:[/quote:38e100a00c]\r\n\r\nlooooooooooooool\r\n\r\nolivier n\'a pas de chance... il est tombé sur des fanas de foot!!! lol'),(219,'668a7c46ad','',':wink:'),(220,'4e27278001','','Tarja\'s answer: ([http://fan-sites.org/tarja/])\r\n\r\n\"This was in Finlands TV-news. Tarjas comment was. \r\n\"I\'m shocked. The way they told this is sad and cruel. I\'m also sad that my husband has been dragged into this.\" \r\nTarja is going to held press conference in November. \r\nTuomas told that there will be a new NW book in May, where he will explain everything\"\r\n\r\n\"Dear Lily, Sylvera and Purity, [webmasters : http://fan-sites.org/tarja/]\r\n\r\nI don\'t have words to express my feelings at the moment. I am devastated. This thing happened in a way that I didn\'t have a slight chance to give my opinion about it. I got fired out of a band that represents the last 9 years of my life and I am very sad about it. It has been very cruel the way the band handled this in public. This doesn\'t change the fact that we were doing amazing music together, but I will never forget the fact that they didn\'t give me the chance to say good bye for the people as a Nightwish singer.\r\n\r\nI love you and I really hope to see you soon in my concerts. Thank you very much for your kind words and support. I will never forget you.\r\n\r\nLove,\r\n\r\nTarja\"'),(221,'03622d8b38','','If someone\'s interested, I\'ve also MSN, it\'s gilder_in_dark@hotmail.com \r\n\r\n(Petit rappel : je parle français à la base.... 8) )'),(222,'7b8cd76a57','','We went to c4 to see heavenly, but unfortuanatly inishmore(was quit good) bonfire(sucked like hell) were the only onews there.'),(223,'7ec3fcb6c5','','You were added dued 8)'),(224,'f0d46f3880','','So we have Tarja´s statement. Who´s right that´s question we will probably never know'),(225,'956381ca3d','','I\'ve hope they would hire a male singer..... Well, even though I\'m impatient to hear the new singer :wink:'),(226,'6a6985233b','','I\'ll add you tonight but I hope some of you speak french because I\'m a little lost with english. I do what I can... :roll: Sorry for the mistakes I make (and I think I do)'),(227,'3d3215523a','','Sorry I have only the french for the moment : \r\n\r\n\"Depuis dimanche matin, les magazines, journaux, radios, télés, fan clubs et fans de Finlande et du monde entier m’ont demandé de donner ma réaction face à cet évènement. Tellement de personnes qu’il était physiquement impossible pour moi de trouver le temps d’y répondre à tous individuellement. C’est ainsi que j’ai décidé d’écrire ces quelques mots afin que mes fans, ma famille, mes amis et le public sache comment je ressens ces évènements récents. \r\n\r\nC’est un moment de chagrin et de douleur et il m’est très difficile de m’exprimer.\r\n\r\nActuellement je suis en Argentine. J’espère que vous pouvez comprendre qu’après ce choc dans ma vie comparable à un divorce, je ne voulais pas rester seule chez moi en Finlande. Mon mari avant commandé ses tickets pour l’Argentine il y a plusieurs mois et j’ai décidé de voyager avec lui à la dernière minute.\r\n\r\nMais le fait que je sois en Argentine et la longue distance nous séparant n’est pas une excuse pour ne pas commenter la situation bien sûr. \r\n\r\nVendredi dernier, le 21 Octobre, était un jour que le groupe entier attendait depuis un long moment. \r\n\r\nLes répétitions commencèrent tôt le matin. J’étais très malade et nerveuse à cause du fait que je n’arrivais pas à chanter durant les répétitions.\r\n\r\nJ’étais également nerveuse à cause de la set list du concert qui allait être plus longue qu’un concert classique de Nightwish. De plus nous avions un invité spécial qui allait chanter avec nous, je devais aussi changer plus souvent de robes que d’habitude et pour la première fois il y aurait des écrans géants et une très grosse production sur la scène.\r\n\r\nSans oublier le fait que le concert allait être enregistré et filmé. \r\n\r\nNous l’avons finalement fait, ce soir là au Hartwall Arena d’Helsinki.\r\n\r\nMême si nous savions tous que le concert était complet, arrivés sur scène, voir le public crier, applaudir et se tenir debout devant nous était un sentiment incroyable. \r\n\r\nJe n’oublierai jamais à quel point la réception du public ce soir là était incroyable.\r\n\r\nQuand le concert fut terminé, j’ai pleuré de joie sur scène. Des larmes de joie parce que j’avais été capable de faire de mon mieux même si j’étais malade. Des larmes de joie parce que notre longue tournée se terminait de la plus belle façon possible. Des larmes de joie grâce à la meilleure reconnaissance possible pour un artiste : des applaudissements et des visages souriants. \r\n\r\nA ce moment là je ne savais pas que j’allais encore pleurer très prochainement.\r\n\r\nAprès le concert, les garçons du groupe m’ont invité à les rejoindre en backstage et m’ont demandé de les serrer bien fort tous ensemble. Cela semblait étrange parce que c’était le même genre d’embrassade que nous faisions habituellement avant chaque concert. Cette tradition est restée en nous, même si les tensions et la pression grimpante existaient déjà depuis très longtemps.\r\n\r\nMa réaction immédiate a alors été de les remercier, ce que j’ai fait fortement mais sans recueillir aucune réponse.\r\n\r\nAprès cela, ils m’ont remis une lettre et m’ont demandé de la lire le lendemain. Cette même lettre est celle qui a été publiée sur le net.\r\n\r\nJe l’ai lu et j’ai été choquée.\r\n\r\nJe ne savais pas quoi dire et même encore aujourd’hui, alors que j’écris ces lignes, je ne sais pas. \r\n\r\nJ’ai ressenti une grande colère dans cette lettre et je continue d’avoir des sentiments confus à ce sujet, mais je ne veux pas répondre à la colère par une colère plus grande encore. Les problèmes personnels ne devraient pas être rendus publics. \r\n\r\nJe sais que ce moment que nous traversons est très triste pour tout le monde, comme pour moi et pour les autres membres de Nightwish.\r\n\r\nAlors qu’il y aurait eu tellement de façons possibles d’exprimer ce qu’ils voulaient me dire avec cette lettre, je n’arrive toujours pas à comprendre pourquoi ils ont choisi de procéder ainsi. Je suis désolée que les garçons m’aient si mal compris. Je ne me reconnais pas moi même dans la façon dont ils m’ont décrite. \r\n\r\nIls parlent méchamment de moi mais le fait qu\'ils incluent Marcelo, mon mari, dépasse les limites. C\'est l\'homme que j\'aime, mon ami et il a été mon plus grand soutien ces dernières années.\r\nEux étaient mes amis depuis 9 ans. Nous avons vécu de bons moments mais aussi de moins bons. Je pensais les connaître mais je me trompais.\r\nPourtant, malgré tout ce qui s\'est passé, je ne peux les considérer comme étant mauvais.\r\nAujourd\'hui, il est temps de se calmer et de prendre du recul.\r\nJ\'ai besoin de rassembler mes sentiments et je promets de revenir bientôt au devant du public.\r\nJe vous ferais part d\'une conférence de presse pour parler de mes projets. Cela ne veut pas dire que cette conférence sera une manière d\'attaquer qui que ce soit. Je ne ferais pas cela.\r\nLa merveilleuse musique que nous avons créé ensemble ne sera pas touchée par les événements récents.\r\n\r\nMerci à tous ceux qui me soutiennent durant ces moments tristes. Ma famille, mes amis, mes collègues et les nombreux fans. Je vous aime et je n\'ai vraiment pas l\'impression d\'avoir manqué à mes devoirs envers vous.\r\n\r\nTarja.\"'),(228,'143872e438','','Since last Sunday morning, I have been asked to express my position by magazines, newspapers, radio and TV stations, fan clubs and fans from Finland and from all over the world. So many in total that it is physically impossible for me to find the time to reply to them all individually. Hence I decided to put down a couple of words in this text to let my fans, family and friends and the public know how I feel after the recent events.\r\n\r\nThis is a moment of grief and pain and I find it very hard to speak.\r\n\r\nAt the moment I am in Argentina. I hope you can understand that after this shocking life change comparable to a divorce, I didn’t want to stay alone at home in Finland. My husband had booked his tickets to Argentina many months ago and I decided to travel with him at the last minute.\r\n\r\nBut the fact that I am in Argentina and the long distance should of course not be an excuse not to comment on the situation.\r\n\r\nLast Friday 21st of October was a day the whole band had been waiting for a long time.\r\n\r\nPractice started early in the morning. I was very sick and nervous because of the fact that I was not even able to sing during the rehearsals.\r\n\r\nAlso nervous because the concert programme was going to be longer than usual for a Nightwish concert. Furthermore we were going to have a special guest to perform with us, more wardrobe changes for myself than usual and for the first time big screens and bigger production on stage.\r\n\r\nNot to forget that the concert was going to be recorded and filmed.\r\n\r\nThe five of us had finally made it to play Hartwall Arena.\r\n\r\nEven though every one of us knew in advance that the concert was sold out, finally on stage, we saw that screaming, applauding and standing people took every seat. The feeling was unbelievable.\r\n\r\nI will never forget how amazing it was to experience the Finnish audience’s gorgeous reception.\r\n\r\nWhen the concert was over, I cried of happiness on stage. Happy tears because I was able to do my best as always even though I was sick. Happy tears because our long tour got the greatest possible ending and happy tears because of the best recognition an artist can get: applause and smiling faces.\r\n\r\nAt that moment I didn’t know that I was going to cry again soon.\r\n\r\nAfter the concert, the guys of the band invited me backstage to join them and asked me to hug altogether. This felt strange as it was the same kind of hug we traditionally came together for before every concert. That tradition remained between us, even though the tension and increasing pressure already existed since a long period of time.\r\n\r\nThe immediate feeling in me was to thank them, which I did loudly but without any reply.\r\n\r\nAfter this, they gave me a letter and asked me to read it the following day. The same letter that is now public.\r\n\r\nI read it and was shocked.\r\n\r\nI didn’t know what to say and still at the moment that I am writing these lines, I don’t.\r\n\r\nI sense great anger in that letter and I continue to have very confused feelings about it, but I don’t want to reply to this anger with an even greater anger. Private matters should never be taken to the public.\r\n\r\nI know this moment we are going through is very sad for everybody, including the guys.\r\n\r\nWhile there would have been so many different possibilities and ways to express what they wanted to tell me with the letter, I remain unable to understand the way they chose to handle this. I am sorry that the guys got me so wrong. I don’t recognize myself at all from the way they described me.\r\n\r\n\r\nThey mentioned mean things about me, but the fact that they involved Marcelo, my husband, crossed the line. He is the man I love, my friend and has been my biggest support over the last years.\r\n\r\nWe have been band mates for 9 years, experienced good times and not so good ones. I thought I knew them, but I was wrong.\r\n\r\nStill everything that has happened is not enough to make them evil in my eyes.\r\n\r\nNow comes a time to calm down and reflect upon all of this.\r\n\r\nI need to put my feelings together again and I promise to come back to public soon.\r\nI will announce a press conference where I will be talking about my future plans. This doesn’t mean that you should expect this conference to be an instrument to attack anybody. It won’t.\r\n\r\nThe wonderful music we created together won’t be touched by recent events.\r\n\r\nThanks a lot to all the people who are supporting me during these sad times. My family, friends, colleagues, and the great number of fans. I love you and I really feel I have not failed you.\r\n\r\nTarja'),(229,'bcce6361c4','','I learn French but only one year so I speak really bad...what about speaking Czech ?? :lol:'),(230,'b6efb7b6e4','',':lol: \r\nfunny!!! I will learn to you!!'),(231,'0363e22fb5','','I\'ll teach you french if you want to :roll:'),(232,'d329a654b6','','Thank you Joe 8) \r\n\r\nIt was bright that Tarja will do some statement and she will try to say it´s not her fault. And who knows now....'),(233,'d2d3855476','','HEHE \r\nI can teach you Czech then :lol:'),(234,'86677dc165','','If you want but it will be... euh... hilarious *?* :lol:'),(235,'5cd70cdf9a','','I think so :D \r\nAnd impossible also. Because of pronounciation'),(236,'11a3d0b947','','True :?'),(237,'df91ca6d25','','I\'m learning french 8) But our teacher is a monster, hate him.'),(238,'45c089f618','','roooooooo\r\n\r\nit\'s not so difficult to learn french!!!\r\nlol I know it\'s difficult!!'),(239,'9573ea356a','','French\'s grammar is the worst in the world... Sorry for those who learn it....... :?'),(240,'c6d1c4dab7','','Yeah, but she didnt\' say what the others members have said is wrong, so...'),(241,'3a20ebee69','','Totally agree : a lot of french people don\'t know grammar!!!'),(242,'5b94e8cbde','','oh yes, french to learn is horro :lol: are you proud of your difficult language :D ?'),(243,'a0a752f3c9','','oh que oui!!!!!'),(244,'5fcdb57071','','Absolument, rien que pour le plaisir de voir les autres tenter de déchiffrer cette grammaire plus qu\'horrifiante, qui a plus d\'exceptions que d\'exemples qui confirment une règle, puis des exceptions des exeption, pour arriver au exceptions ultimes..... Enfin bref, sorry, but the only one advantage when you learn french, it\'s that when you\'re speaking, whatever your accent is, we can undertsand you :wink:'),(245,'c99c201231','','You\'re joking!! :shock: \r\nYou understand all the french accents? (Tu comprend un accent bérichon ou marseillais très prononcé toi? L\'accent des ptits vieux de la campagne?)\r\n :)'),(246,'332be2cc22','','All I\'ve heard. (Oui, ceux de la france perdue, du québec, et celui du stéréotype des suisse).'),(247,'ffe42764f7','when can we have another new album?','thats the question? any new songs these days?? :lol:'),(248,'126d06ece2','',':mrgreen: whaou'),(249,'58629c04e0','','As far as I know new album should be out next year. From March until summer. But some samples could be on website soon. Who knows :wink:'),(250,'4bdbdcddb7','','it\'s been years since ive mentioned those bands (linkin, limp) I\'ve forgotten all about that crap. you mentioned Helloween. That\'s one of the first REAL bands i\'ve ever heard. Heavenly really blew me away when I got dust to dust. I hadn\'t heard much before that but once I couldn\'t stop listenin to dust to dust i made sure to get the rest. So rich sounding. awesome fuckin\' stuff'),(251,'c146f50e46','','I would really like to hear how the guitar parts in \"Riding Through Hell\" goes. So if you can tab these I would appreciate it greatly. Thanks in advance!'),(252,'e2f4be0442','','Forgot to say that if you could put it in Guitar Pro format that would be great.'),(253,'5afb8f7a53','','Hi,\r\n \r\nno problem for riding throught hell tabs, i\'m gonna try to do it as soon as possible in gp4 format.\r\n\r\nSee soon\r\n\r\nOlivier'),(254,'11075fe5d8','','Hi,\r\n\r\nI would really like to know the tabs of Destiny..... Thank you so much ! :o'),(255,'c12b8c158e','','Dust to dust ... oh my god ... fucking emotions in my body\r\n\r\nAll tracks in sign of the winner\r\n\r\nRiding through Hell & promised land in Coming from the sky'),(256,'53ce8822ff','HEAVENLY TATOO','Hail dudes !\r\n\r\nJust a post to tell you that finally I\'ve tatoo on my right leg the angel of the coming from the sky album. The tatoo is a kiler piece. :twisted: 8) \r\n\r\nI\'ll send you some shots asap when the tatoo will be ok (no blood etc...)\r\n\r\nSee you\r\n\r\nLionel'),(257,'4392fb3a1e','','no blood :D Yes, want to see a pic. If I want make a tatoo, I will make a rhapsody-logo. 8)'),(258,'366d4fbcd0','','Hey dudes !\r\n\r\nHere you\'ll find the pic of my tattoo.... I\'m sure you think I\'m a crazy guy...\r\n\r\nYou\'re true ! mwahahahahaaaaaaaaaaa :twisted: :twisted: \r\n\r\nEnjoy : \r\n\r\n[img:366d4fbcd0]http://i3.photobucket.com/albums/y85/Rei_itchido/DSCN0511.jpg[/img:366d4fbcd0]\r\n\r\nLionel'),(259,'14e10b99bc','','Very well done! Fucking great tatoo! a little bit jealous... :D'),(260,'57bd5a1d4a','','Silence, Silence everywhere ( grave digger). We need more life in this forum.'),(261,'a2822e9646','','A shirt with the artwork of Dust to Dust would be great, but the other shirts are nice, too.'),(262,'95fac4d915','',':twisted: [size=24:95fac4d915][b:95fac4d915]IS ANYBODY OUT THERE ??? [/b:95fac4d915][/size:95fac4d915]:twisted:'),(263,'3d68eadca7','','I\'m there dude !!!!\r\n\r\nEveryday, waiting a post from a member. But you seem to be on holidays ... hehe'),(264,'7abbdc58d9','Heavenly \'98 demos','Hi everybody, I\'m a new member in this forum. What I would like to know is how many of you people really have these three \'98 demo songs? \r\nI understood that these were downloadable at www.noiserecords.com in 1998 or something... If someone has some info, please tell me! :('),(265,'da7ed14ecd','','Elisa c. Martin said the sentence \"is anybody out there\" so funny with dark moor :D Yes, I\'m here charley-boy 8)'),(266,'b8f62e97f5','','Although Sign of the Winner has amazing piercing high vocals and is a constant speed attack, Dust to Dust is my favorite. It has more variety in song writing and tells a cool story. Production is very good, balance of speed and shredding along with lovely quiet interludes. Ben\'s vocals on the song Dust to Dust gives me chills.\r\n\r\nBut all three are good albums!'),(267,'c1581daab6','','I don\'t like the new album, too slow and simple. It\'s like a mediocre rock album. My favorite Stratovarius albums are Episode, Visions, and Elements Part 1.\r\n\r\nI saw them on tour in the USA two months ago, they put on a great show! Timo Kotipelto is such a wonderful nice guy!'),(268,'de5f615348','','Heavenly, Sonata Arctica, Dragonforce, Time Requiem, Gamma Ray, Stratovarius, Rhapsody, Angra, Iron Maiden, Blind Guardian, Hammerfall, Dungeon, Crystal Eyes, Total Eclipse, Dark Moor, Helloween, Dream Evil, Fairyland, Symphony X, Nocturnal Rites, Falconer, Lost Horizon, Oratory, Royal Hunt, Secret Sphere, Pagan\'s Mind, Dream Theater, Queensryche, Fates Warning, Queen, Running Wild, Manilla Road, Rage, Megadeth, Death Angel, Def Leppard, Guns N Roses, Kansas, Rush, Sentenced, Amorphis, Into Eternity, Children of Bodom, Nightwish, Dimmu Borgir, Satyricon, Bathory, Bal-Sagoth, Emperor, Deceased, Three Inches of Blood, Persuader, Moonspell, Within Temptation, Lacuna Coil, more......'),(269,'7039b096df','','Riding Through Hell\r\nDestiny\r\nSign of the Winner\r\nWords of Change\r\nEvil\r\nVictory (Creature of the Night)\r\nFight For Deliverance\r\nKingdom Come\r\nDust to Dust'),(270,'0ab7bb4795','','I think they used to be also on Heavenly´s website.\r\nBut I am sorry I have no clue, where you can find it. Maybe they released it only in France...'),(271,'45f65d27df','','Evil (6\'12) \r\nRiding Through Hell (6\'21) \r\nCondemned To Die (6\'15) \r\nKeepers Of The Earth (6\'15) \r\nWords Of Change (5\'06) \r\nLust For Life (6\'14) \r\nVictory (6\'50) \r\nThe World Will Be Better (6\'54) \r\nKingdom Come (8\'11) \r\nDust To Dust (4\'59) \r\nDestiny (6\'59) \r\nSign Of The Winner (4\'05) \r\nFight For Deliverance (6\'57) \r\nAngels Cry - Angra'),(272,'33b548e456','','Oh yes me too. We are always here 8)'),(273,'9448c71b74','','[quote:9448c71b74=\"Brandon\"]I don\'t like the new album, too slow and simple. It\'s like a mediocre rock album. My favorite Stratovarius albums are Episode, Visions, and Elements Part 1.\r\n\r\nI saw them on tour in the USA two months ago, they put on a great show! Timo Kotipelto is such a wonderful nice guy![/quote:9448c71b74]\r\n\r\nYou are lucky. I will se Strato with HF next month. :D'),(274,'ce73bd99ab','','@joe54\r\nI´ve never seen you on MSN. You´re always ofline...'),(275,'f228095926','','Hi,\r\n\r\nI have the answer for you: the demo Coming From The Sky 98 is only available at the merchandising area of the band. I haven\'t put it with the shirts on the forum\'s topic because I still have only 1 or 2 signed (Max Pilo - Ben Sotto - Anthony Parker (guitarist at that time) demos on stock ! And they are the last ones !!!!!\r\n\r\nIf you\'re interesting, you can buy these last pieces.\r\n\r\nSee You'),(276,'267ea481d8','Riots','Crazy! Hope you guys are ok over there...\r\n\r\nhttp://www.nytimes.com/2005/11/08/international/europe/08cnd-france.html?ex=1289106000&en=5935d90531510a7e&ei=5088&partner=rssnyt&emc=rss'),(277,'824a223024','','I\'m not french, but I think this is a very bad period for France. I think its an escalation of different reasons.'),(278,'6cd478f4f6','',':D :D :D'),(279,'2934f340f1','','whouho!!! :mrgreen: \r\n\r\ncrazy guy!!!! lol\r\n\r\nIt\'s very beautiful'),(280,'f4b9f04a2e','','Sorry but I can\'t go on msn when I want...\r\nI don\'t go on internet with my computer : they\'re collective ones and I go on msn 1hour when I can... so sorry\r\n\r\nI will do my best to see you soon! I promise'),(312,'cc0ac61b53','',':oops: I\'m here too but it\'s so difficult to talk english that I\'m going crazy!!! lol :P'),(282,'2f01c10c59','','Tarja will make a press conference on friday'),(283,'c3db0fca30','','within temptation, heavenly, nightwish, sonata arctica, euh... lacuna coil, led zep, queen, the corrs, dream theatre, euh... joss stone, zazie, evanescence... and so much more but I don\'t find the names... :oops:'),(284,'a29da4911b','','Strange :? \r\nNobody talks on this topic!! :D lol'),(285,'1e99f4d708','','HeavenLio, isn\'t there any other ways of getting that demo? Because I live in Finland and I think it would be too complicated to get the real one. So is there any possibility of putting the songs to the website for a download? :roll: There was sometime ago some samples... But I understand if it\'s not appropriate.'),(286,'89b3a7992d','','!!!!! So amazing ! You rock ! Hail to Lionel ^^'),(287,'54201041fa','','Even if I\'m hidding in the shadows, I always watch over this mighty forum.... :)'),(288,'e1885b5c86','','I\'ll try to be there too !!!!'),(289,'edef1aebe5','','No problem :wink:'),(290,'7ceccaa5e0','','We are travelling unseen and unheard but we are always here :wink: :D'),(291,'6bb48fae9b','','Don´t forget to tell us how the gig was :wink:'),(292,'d690a57258','','We should get more life to this forum!'),(293,'473f4a6b38','','come, birds,come 8)'),(294,'6db2ef0b98','','oh yes :D Where are the powermetal-haters, come here to discuss :)'),(295,'bc31edb405','','Hi, how are the tabs doing? No hurry, just curious... :D'),(296,'f03ebc5f06','','Hello dude ,\r\n\r\nSo, only one song will be available soon and this song will be only available for the fan club members on the next version of the fan club\'s website. But I understand your point of view.... sorry\r\n\r\nAn advantage for the troopers !\r\n\r\nRegards'),(297,'37abf178d1','','Hi Joro410,\r\nI have to do the tabs but i\'m too busy at this time, so i\'ll do it as soon as possible.\r\n From finland wanted Riding throught hell and SquallSaga wanted Destiny I\'ll do those ones.\r\nIf i don\'t find the time to tab the whole songs, i\'ll only do the solo. (But i\'ll find the time) \r\n\r\nTalk soon \r\n\r\nOliver'),(298,'15e47ab453','keepers of the earth','i picked out the guitar parts in Keepers of the Earth, i would really like a tab from Olivier or Charlie though, in guitar pro 4 format, to see how close i was! thank you very much for taking the time to read this!'),(299,'c6527243a8','','Thanks for the info, btw the nickname \"From Finland\" was me before I registered to this forum :D'),(300,'4bae063bb1','','Evil\r\nDust to dust\r\nLust for life\r\nRidding Throght Hell\r\nFight For Deliverance\r\nKingdom come\r\nThe Angel'),(301,'c0ae686ebd','','Spain here!'),(302,'f325d65760','','Dust to dust is more than heavenly\'s best album, i think it\'s one of the best power metal albums ever'),(303,'2affb8aa0a','','From Finland!! 8)'),(304,'d55a3a1e17','When did you discover Heavenly?','Hi all!\r\n\r\nIn this topic everyone can tell when they heard Heavenly for the first time\r\nand how / where.\r\n\r\nI can tell that I heard Heavenly\'s music in 2003 the first time, it was Riding Through Hell \r\ndemo-version and I found it from the cd \"The Best of Noise 1999\". And after that I have bought \r\nall their three albums and now I\'m waiting for some more!!! :D'),(305,'6d8825d5c2','','I see you haven\'t forgotten ! :D \r\n\r\nBut don\'t get made with that, do it only if you feel you\'re doing it with pleasure ;- D'),(306,'6e8858b80d','','A friend have sent me the song \"dust to dust\". I liked it and then, there was a metal-market. I found the album \"dust to dust\" and bought it. That was my destiny 8)'),(307,'e941f71d1a','','I read about them in Czech metal magazine. I downloaded some songs (Lust For Life was the first Heavenly song I´ve ever heard) and it got me. So I bought \"Dust To Dust\" and lately \"Sign Of The Winner\" :D'),(308,'8042d93c2f','','I only have dust to dust, so i can only say hearing that, but id have to say every song on dust to dust is more amazing than anything ive ever heard, and sure i ablsolutly love the speed of songs like keepers of the earth and evil and lust for life and all the other up tempo songs, but I really think the best song ever written by them, at least on this cd, is miracle. That song right there is an emotional journey every time i listen to it, and ive even gotten people who only listen rap to enjoy that song, that just shows how far the great musicianship of heavenly can go.'),(309,'c691cc9f99','','I\'m from Russia!!!!! Yahha!!'),(310,'3fe252a0b9','','I totally agree with you!! :twisted: It\'s the best one I have in my discography!!!!'),(311,'3443139208','','I was searching an album for my best friend\'s birthday and I found \"dust to dust\"!!!!!'),(313,'42e7d19a34','',':lol: true : come!!!!!!!!'),(314,'e83bfb87ea','','I think all three albums are great. It can be anyone of those, it depends on my mood. One day it can be Dust to Dust and sometimes it\'s SotW or CftS. 8)'),(315,'09a137fef4','','Mainly Heavenly (of course!), DragonForce and Symphony X.'),(316,'5e7ce821bf','I have made a midi file of...','..Break the silence\r\nDownload it here and give me your opinion! http://www.lapislazuli.se/midis/Heavenly_-_Break_the_silence.mid'),(317,'db9fab1663','Check out my band!!','Here is a song that we have made:\r\nhttp://www.lapislazuli.se/lapis2/lapis-filer/Downloads/Lapis%20lazuli%20-%20Archangel.mp3\r\n\r\nAnd here is the url to the site:\r\nwww.lapislazuli.se'),(318,'41696cc06a','','[quote:41696cc06a=\"joe54\"]:oops: I\'m here too but it\'s so difficult to talk english that I\'m going crazy!!! lol :P[/quote:41696cc06a]\r\n\r\nHehe, you can speak french if you want and we\'ll translate asap. But do your best, I know you can :wink: \r\n\r\nnp: Thy Majestie - The Chosen'),(319,'50a78c41af','','I do my best yeah!!!!!!!!!\r\n :twisted:'),(320,'6e97685cd9','','I think it\'s quite good (at least I couldn\'t do better!)\r\nJust keep on tabbing! 8)'),(321,'a6b2cc39e7','','OK I´ll check it up :wink: 8)'),(322,'6637a92df1','','[quote:6637a92df1=\"joro410\"]I think it\'s quite good (at least I couldn\'t do better!)\r\nJust keep on tabbing! 8)[/quote:6637a92df1]\r\n\r\ni´m doing destiny now..'),(323,'a6530d6f9f','','First heard \'em on Progged Radio. :)'),(324,'adb989e1a8','','Yeah ! Good choice ;- )'),(325,'538660717d','','gooo UK woo'),(326,'85a3abd314','','i only dicovered them a few months ago, entirely by accident, i was just typing random words into a search engine, i was a little intoxicated and very bored, and just found this website, i download some mp3\'s, and loved every second of it'),(327,'d22325ee5c','','yay, come to london, i really wanna see u guys live, it will be immense'),(328,'c4c4e44fc3','','Adema, Arch enemy, Atreyu, Avenged Sevenfold, Avalanch, Bad Religion, Brainstorm, Breaking Benjamin, Bullet for my Valentine, Disturbed, Dragonforce (gonna go an see there inhuman tour), Dream theater, Edguy, 18 visions, Evergreen Terrace, Evergrey, Foo Fighters, From First to Last, Funeral for a Freind, Goldfinger, Hammerfall, Hatebreed, He is legend, [color=red:c4c4e44fc3]Heavenly[/color:c4c4e44fc3], Hell is for Heroes, Hundred Reasons, ill Nino, In Flames, InMe, Jameroquai, Jimmy Eat World, Killswitch Engage, Linkin Park, Lost Horizon, Lost Innocence, Machine Head, Megadeth, Metallica, Morifade, Mudvayne, New Found Glory, Opeth, Pantera, Persuader, Primus, Queen, Raising Fear, Rata Blanca, Reef, Reel Big Fish, Renacer, Revielle Rhapsody, Secret Sphere, Sepultura, Slipknot, Soil, Spineshank, Steel Dragon, Stroke 9, Strung Out, Sum 41, Symphony X, System Of A Down, Tenacious D, The Bled, The Used, Tool, Trivium, Zebrahead.\r\n\r\nThats only my favourites, i like alot more but i really can\'t be bothered to list them all :lol:'),(329,'c89cfec723','','The whole world is represented here. :!:'),(330,'4b01cd7002','england rules','Of course we will come to london !\r\nthis is a fuckin good city 8) \r\nunfortunately the food is not good ....... :wink: \r\nnobody is perfect'),(331,'4c7bb580d6','','Evil (6\'12)\r\nUntil I Die (6\'11) \r\nIllusion Part II (4\'58) \r\nTime Machine (7\'07)\r\nThe Angel (2\'06) \r\nRiding Through Hell (6\'21)\r\nKingdom Come (8\'11) \r\nMiracle (9\'08) \r\nLust For Life (6\'14)\r\nDust To Dust (4\'59) \r\nThe World Will Be Better (6\'54)\r\nVictory (6\'50) \r\nDestiny (6\'59) \r\n\r\nhm... and a cover.. Eagle fly free?'),(332,'872cc36aeb','','Fans from Hongkong\r\nHeavenly is great\r\nthe first song i heard is Victory\r\nit\'s cool.....\r\nbut the most upset is.....\r\nthere are no any shops sales Heavenly CDs><\r\nand also....band is not popular there><\r\ni haven\'t seen any good band show there><\r\ni am just waiting and waiting><\r\nit is so good u guys from finland and US\r\nmany good bands..~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'),(333,'2fd449946e','','haha it\'s hard to choose the \'most\'\r\ni love \r\nHeavenly\r\nhelloween \r\nStratovarius < waiting their tour in Hongkong 26/1/2006~!!>\r\nsonata artica'),(334,'04d57c645b','','Brilliant!! next year will be great im already going to a dragonforce gig in feburary, and edguy are supporting, and now heavenly are comin to london, amazing'),(335,'f6cd61616f','','are there any power metal haters, i am yet to meet one'),(336,'e1ba101506','','An update has been made !!!!\r\n\r\nCheck it out now !\r\n\r\nCheers'),(338,'1ad19ce0b7','','hell yeah, i just went down my playlist on my computer and punched in most of the bands on there :lol:'),(339,'8373f30f81','','[quote:8373f30f81=\"grave-digger\"]A shirt with the artwork of Dust to Dust would be great, but the other shirts are nice, too.[/quote:8373f30f81]\r\n\r\nOh yeah that would be amazing.\r\nHmm how about having the balck shirt with the heavenly logo on the front and put the album art on the back, a massive print, oooo thats would be sweet'),(340,'6b045c6eed','','Oh Ben please. Can you post some tips for singers?\r\nI am singing in one band and I need to imporve my voice. Can you post here some hints for singers? \r\nThanks\r\n 8)'),(341,'ecefcba12a','','Hi everybody !!!\r\n\r\nCharley\'s speakin\'\r\n\r\nThanx to all of you for being here on this forum ... 8) \r\n\r\nI hope everybody\'s feeling well !!!\r\n\r\nStill working for the next album ... Olivier and I, are composing our guitar solos ... bends, hammers, pulls off, \r\nslides, trills, sweepings, glissandos, melodic or technical, agressive or languorous ... everything for everybody !!! :D \r\n\r\nHope you\'ll enjoy it !!!\r\n\r\nC U later alligators !!!\r\n\r\nWhish you the best,\r\n\r\nCharley'),(342,'f9cd98a9ca','','Great news :D \r\nThank you for keeping us informed :wink:'),(343,'ef88f9c95f','','thats sounds cool, do u have any idea when this new album might be released? i can\'t wait'),(344,'2854889623','','I can\'t wait too! Wonder what it is going to be like\r\nafter a concept album...'),(345,'5cc29d030f','','yaaaaaaaaaaaaaaaaaa\r\nwell well well :mrgreen: ! thx charley!!!!!!!!!!!!!!! :mrgreen:'),(346,'29a8f6b43d','','Use honey ales!!!! lol \r\nYou sing!?! Interesting!! :wink:'),(347,'b01f380a2a','',':lol: :D alalalalalalalalalalala'),(348,'cac2da7062','Speak about you!','Thus here small a poll to present ourselves a little... come to tell your life\r\n\r\nSo I start!!\r\n\r\nMy name is Alison, I\'m 20 and I\'m french!!!\r\nI make studies of medecine.\r\nI\'m a girl who love metal (and other msic moreover) and I make it like to my friends!! lol\r\neuh... what can I say? :oops: \r\nI have three cats, two fish, well it doesn\'t matter\r\nI\'m totally mad and I love that!!\r\nGive me ideas, I don\'t know what can I say to you : what do you want to know? :?: \r\n\r\nSee you soon!!'),(349,'02f7f9c0c8','','Hehe, I Alison,\r\n\r\nYou\'re speaking english !!! :wink: \r\n\r\nSo, I\'m Lionel, the Heavenly\'s official fan club manager.\r\nI\'m 23 (soon 24) years old.\r\n\r\nI love heavy metal music and having fun.\r\n\r\nI\'m living in the south of France.\r\n\r\n@Joe54: where are you come from?'),(350,'32efad23eb','','OK good topic.\r\n\r\nMy name is Aleš and I live in Czech republic\r\nI am 17 (almost 18) years old. I love metal, especially power, speed and heavy metal. Among my other hobbies - maybe movies, ice hockey, fantasy...\r\n\r\nWhat else? If sombody wants to know something about me, just ask :wink:'),(351,'a8c04aef8e','','Well at least I am trying :D'),(352,'d9a8b91026','','My Name is Urs Müller\r\nI\'m coming from Switzerland \r\nI like making movies, drawing, watching movies. I love Metal, exspecially power, epic, folk, melodic metal\r\nMy favourite films are Braveheart, Friday the 13th series, Rainman, Platoon, Romero\'s Zombie films, etc.\r\nI\'m soon 16 years old. \r\nI\'m a middle-ages fan 8)'),(353,'ffefe5ff3d','','Great news indeed. Looking forward for the album and your solos :P'),(354,'898403a922','','I think their latest album is not very good :(\r\nbut anyway i will watch their Hongkong tour in Jan.\r\nhope that they have a nice performance\r\ni like their old songs black diamond and Speed Of light\r\nmy band always plays their songs :oops:'),(355,'90f857f171','','Portugal!!\r\n\r\nHeavenly is my favorite band, no doubt about that!! :D'),(356,'ead742b70b','Heavenly Tabs?','Is there anyone besides me and Charley who is tabbing Heavenly? in guitar pro format?\r\n\r\nJust like to know... :wink:'),(357,'7c762d6fb0','','Well.. that would be great even tho i could probably figure them out myself.. :wink: \r\nit would be even better if you tab all instruments!! :D \r\nthat\'s so much better.'),(358,'2c2aeb2324','','no order!\r\n\r\nDragonforce\r\nHeavenly\r\nSoul Source\r\nDragonland\r\nSkylark\r\nAngra\r\nDestruction\r\nKreator\r\nWintersun\r\nRhapsody\r\nFairyland\r\nDark Moor\r\nLabÿrinth\r\nAutopsy\r\nLuca Turilli\r\nInsania\r\n\r\nand many more!!'),(359,'e0c49838ad','','Hejsan!\r\n\r\nI really don\'t know anything about tabbing songs but I have to\r\nsay that HolyThunder your tabs are awesome, especially\r\nthe Heavenly and DragonForce ones!!! :twisted: Keep on tabbing!'),(360,'55d4e03cc5','','hej hej! :D \r\n\r\nthanks, that\'s always nice to hear!! :o'),(361,'23a12f5329','','det var ganska bra.. :wink: \r\nbara rösten som var lite sådär...'),(362,'13c1a26ea5','','my name is orin in am a tad intoxicationed atm but who cares, i love power melodic metal and loads of other stules but hthis seems to be my home,\r\nMy mate: ahhhhhhhhhh ur french!!!!!!!!'),(363,'49e80cc1ed','','heavnely are amaxing!!!!!'),(364,'7dce05891f','','drink some tasty bristish akes MMMMMMM tasty'),(365,'d90feeedf6','','I am from sweden, And I rock 8)'),(366,'a6d8ba04d4','','My name\'s Mike and I am from Sweden.\r\n\r\nMy hobbies are music, weight lifting and girls 8) \r\nI tab a lot of songs, and I started to listen to Heavenly yesterday. Holy_Thunder tipsed me 8) \r\nNow I am going to tab their songs! :D \r\n\r\nThey rock btw, heavenly I mean :D'),(367,'9b61e7bc8c','','I am tabbing songs in guitar pro. I am going to tab Heavenly songs from now. \'\r\n\r\nI have tabbed some songs in Guitar pro. Fury of the storm by Dragonfroce was sloppy made. I apoligize for that :P But I will try not to make you dissapointed with my future Heavenly tabs :D \r\nI am going to tab Kingdom Come btw,\r\n\r\n :D'),(368,'8ac7eabe08','','But then there will be no Challange too it Holy_Thunder :wink: \r\n\r\nI think it would be cool if you, Oliver, rated our tabs that we, the fans, send in :P\r\nThat would be cool :)'),(369,'a9754b8587','','Yesterday :P'),(370,'ed9978807b','','How do you get inspiration? :D Your songs rock! :D'),(371,'dc2f6496a9','','Ey, just one question...\r\n\r\nWhat is this forum about???'),(372,'e38811f453','','Hey Ben. I just wanna say that you sing Amazing, and you are fuckin cool! 8) \r\nThat is, I must say, avery good combination :wink: \r\n\r\nI don\'t think I have ever seen a metal singer with short hair... :roll: \r\nBut it is cool 8) \r\n\r\nKeep up the good work! :D'),(373,'59647defe8','','hmm, In no order at all:\r\n\r\n\r\nBlind Guardian. (Well, this may just be my favourite :D ) I love them!\r\nHeavenly - !!!!!! :D \r\nDragonforce - 8) \r\nGamma Ray - (I am going too see them live 14 januari!!!!!)\r\nDream Theater - they just rock :) \r\nNightwish - (Allthough I don\'t know if I am going too like em now with the new singer... :roll:)\r\nBlack Label Society - 8) Zakk rulez 8) \r\nDemons and Wizards - I love them too 8) \r\n\r\nOk, these are the bands Iisten to :D \r\n \r\n(Sorry for the explanation of all bands, but I am a very social type of guy... :roll: )'),(374,'32499e2658','','Metal_Mike, that sounds promising! :D \r\nBtw, your Fury of the Storm isn\'t that bad :wink:'),(375,'48b5bbbdb7','','Ok, thank you Joro :)'),(376,'163fc44a69','tips tips tips','hey guys & [[size=18:163fc44a69]b][u:163fc44a69]GIRLS[/u:163fc44a69][/b][/size:163fc44a69]\r\nyou are very nice with me , thanx a lot \r\nwaouw if you need good advise for singers ....first of all you have to take lessons to improve the technical voice !\r\ni think that it is the best way to be a good singer .\r\ni am doing it since 2004 and the result is fantastic ....really :wink: \r\ni got another advise for you :lol: \r\nbefore a concert don\'t forget to drink a glass of red wine ( a good one if possible ..) it is really cool to warm up the voice ......\r\ntry it !\r\nsee you soon little kids \r\n :twisted: :evil: BEN :evil: :twisted:'),(377,'98d9ce300e','',':shock: whaou'),(378,'9c6bd5b8f2','','@Lio Je viens de bourgogne... J\'habite en saone et loire et je fais mes études en cote d\'or... Et ouais j\'écris en anglais 8) mais je viens de découvrir babel fish donc forcément ça aide!!! lol :lol: \r\n\r\nI forgot to say that I ADORE the cinema!!! I go there practically once a week!'),(379,'b85c206f33','','Aaaaahhh Sweden: THE other country of metal :D'),(380,'c138262e56','Re: tips tips tips','[quote:c138262e56=\"BEN\"] [[size=18:c138262e56]b][u:c138262e56]GIRLS[/u:c138262e56][/b][/size:c138262e56]\r\n[/quote:c138262e56]\r\n\r\nyeah!!\r\nAm I the only girl here??? :oops:'),(381,'08526d66eb','','Sweden dudes!!!!'),(382,'1fc1caf1aa','','@ben: Thank you. I really should start with some lessons.\r\n\r\n@joe 54: hm, let´s make poll about that 8)'),(383,'60f70b0118','Girl or boy???','Is Joe 54 only girl here?\r\nHow many girls and boy are there on this forum??\r\nCome on vote!!! :D'),(384,'57dccfce31','','heh, I voted girl, cus I thought it was a question like= \r\n\"Wich do you prefer?\"\r\n\r\n 8)'),(385,'81dfa7bf13','','Yes, Sweden rock big time! :D \r\n(Many nice girls here 8) )'),(386,'e1fcf12bad','','Yes, I know :P'),(387,'b8e9b91938','','I have only listened too Dust to dust, and I cannot say that I have a favourite... EVERYONE IS SO FUCKIN GOOD! :D \r\n\r\nSorry for that:P But they all rule:)'),(388,'7838342151','','My name\'s Stephanie (Stef for short). I\'m 26 years old, live in a small town in Pennsylvania, USA, and my hobbies include music (listening & performing), travel, computers, and watching college football (the North American kind ;) ).'),(389,'c5a4369ba3','','[quote:c5a4369ba3=\"Cryo\"]are there any power metal haters, i am yet to meet one[/quote:c5a4369ba3]\r\n\r\nThey\'re out there, but thankfully not here. :)'),(390,'3fef745a6c','','LOL. I will edit my post then and make the question more brighter 8)'),(391,'8325582217','Photos','If somebody wants to post her/his pic. \r\n\r\nPics of me :D \r\n\r\nhttp://img.xchat.centrum.cz/images/personal/3/33/4761333_1123160813.jpg\r\n\r\n http://img.xchat.centrum.cz/images/other/3/33/4761333/885265_1124717213.jpg'),(392,'20718ff935','','[quote:20718ff935=\"Metal_Mike\"]Ey, just one question...\r\n\r\nWhat is this forum about???[/quote:20718ff935]\r\n\r\nAbout....nothing.............we can spam as hell here :twisted:'),(393,'7f2f074544','','How do I do to post my pics? Is there some site where I can upload them?'),(394,'8a10d2ecab','','Have you noticed that it is almost only you and me writing on this forum? :P \r\nHow come it\'s so dead here?'),(395,'2e954c478f','','hehe, ok :D'),(396,'b2b474923d','','hé I\'m here too\r\n\r\nGirls come here!!!!! Who are you'),(397,'ce1d7e3e79','','I\'m here too! :twisted:'),(398,'414163bdc9','','I know REALLY one person who hates Heavenly\r\nand thinks that Ben can\'t sing! :shock:'),(399,'d3c62b537c','','I usually use Photobucket.com.'),(400,'744d43ee28','','[quote:744d43ee28=\"joe54\"]hé I\'m here too\r\n\r\nGirls come here!!!!! Who are you[/quote:744d43ee28]\r\n\r\nI\'m here. Already posted a brief bio in the \"Speak about you\" thread.'),(401,'2fa5534de9','','OK, guess I wasn\'t completely right about it. But it\'s still a dead forum :P'),(402,'60268540cf','','Well, that\'s just silly...\r\n\r\nBut actually, I have one thing that I hate them about...\r\nTheir songs get on your brain and they won\'t get off! \r\nThis can be irretating, cus this result in that you have too listen too them all the time...\r\n\r\n :P'),(403,'d46ace8794','Proudly Confused','[quote:d46ace8794=\"SquallSaga\"][/quote:d46ace8794]\n\n I will never understand all of the politics.'),(404,'fd56e77efc','Right..','I got loads more to say about that, but I gotta run - Later!'),(405,'29d74694d7','Come on','[quote:29d74694d7=\"SquallSaga\"]Yeah, but she didnt\' say what the others members have said is wrong, so.[/quote:29d74694d7]\n\nV Oh please I do not think so.'),(406,'5aa8f5122e','Imagine','[quote:5aa8f5122e=\"Newik\"]Ornithorynque poweeeeeeeer !!!![/quote:5aa8f5122e]\n\n:X Now imagine if the world was like that.:I'),(407,'330000beb0','risky?',':wink: But is that not a bit risky?'),(408,'70fb4742ba','','Good thinked topic.\r\n\r\nMy name\'s Romain, I\'m 18, I come from Geneva, I love good music (Melodic, power, speed metal, J rock, some classic and others). I like to go to cinema, I watch a lot of films each weeks. I\'m also a big fan of Japan (I\'ll go next april ! It rocks !).... I dunno what say anymore.... :roll:'),(409,'51f9f02b7c','','Well... I was checking each days, but nothing happens, but now it seems that it have changed.... Good new :wink:'),(410,'8ad15e32bc','','Okay, I went at this gig last week, and it was so.... AMAZING !!!! Schakra didn\'t come, so there was HammerFall and Stratovarius (the reasons of our coming). HammerFall played a dream set list, with almost all their best songs : HammerFall, Heeding the Call, Renegade, Steel Meets Steel, let the HammerFall, Secrets, Bloodbound ect... And even Glory to the Brave, while it was snowing.... Really, really wonderful.\r\n\r\nThen it was Strato. HammerFall was very very good, Strato was far beyond than that. Just incredible..... A lot of magic songs and we even had the chorus of \"Paradise\" in acoustic with a Kotipelto who sang perfectly, and not only on this song, but on ech of them. His performance on \"Father Time\" was beyond our reality, powerful and so high !!!! \r\n\r\nFinally, the best part, it was the backstage, when I met Strato in their loge and spoke to Kotipelto !!! He\'s the... the coolest guy on earth !!!!!\r\nI can\'t realise yet what I\'ve heard, seen and experienced..... Thaks to Stratovarius !'),(411,'6072acf846','','Lol, yeah..... And we just can\'t wait till their next productions :P'),(412,'163f7f211b','Maladaptive','You know, the band that consists of Fred, PE and Max.\r\n\r\nI was almost shocked :shock: when I read that they had parted ways\r\nwith Heavenly. Because I think that it was the best line-up ever\r\nin Heavenly\'s history. :cry: \r\n\r\nSo what are your opinions about this band? I think their style\r\nmusically is something far from Heavenly\'s. But they are still\r\nprofessional musicians. If you haven\'t checked this band go to\r\n :arrow: www.maladaptive.net'),(413,'3546ba5841','','Yes, know when I am here :wink: \r\nMaybe we can all get this forum running again :) Heavenly deserves it! :P'),(414,'d5fe7a4fc2','','I have only heard Dust to dust so it wasn\'t hard for me too choose :wink: \r\nBut if the other albums are as great, then I will be over-exagreatted, (spelling?) and die! :P \r\n\r\n :D'),(415,'b85d47cfa7','','Ok, cool 8) I am, like everyone else, very exited about the next album :) \r\nWe have faith in you guys :D \r\n\r\nAnd btw, you rock ass 8)'),(416,'78302c6fe6','','Too say \'bout what? The bands I like? :P'),(417,'cc71cf9a21','','I agree fully=D'),(418,'988bdad4db','','Eh? That was Swedish in the beginning=D Cool :) I was like =\"Wtf, how can I recieve radio transmissions??\" ehe :D \r\n\r\nOK, tyou should have lower violume on the drums. The vocals was not that good. Other then that, I think it is very cool :D'),(419,'ccaaeca81b','','If you want to show some photos of me go here : (there only two)\r\n\r\n\r\n[url]http://joe54.nrjblog.fr[/url]'),(420,'f9a103b9e7','','I didn\'t even know that the guys had made a new group...'),(421,'26c57c1ed7','','Oh yes. This forum will not die. We just need more new users'),(422,'6bfe6890a9','','I can assure you that SotW won\'t let you down!'),(423,'37d27e827e','','I\'m sure new users will come when Heavenly goes touring.'),(424,'50d5da5bbc','','Hey where´s Matthieu???'),(425,'d13e823836','','I downloaded song from their website. Not bad but it´s not as good as Heavenly...different music style'),(426,'46be387c6d','Ronnie James Dio','In my opinion one of the best heavy metal singers ever. I just love him. What are your opinions?'),(427,'9989e5fa8d','','Matthieu is a student ! A young guy.... :lol: \r\n\r\nI think he will come here to post a message soon..\r\n\r\nSee YOu'),(428,'ba5e3ba19b','','Ok, I must listen to that one then :P'),(429,'dd4808db99','','http://photobucket.com/albums/d124/Metal_Mikkey/?action=view&current=Mike.jpg\r\n\r\nOk, let\'s see if this works now :D \r\nDon\'t mind my right forearm, I know it looks silly :P But the rest of the picture is kinda ok I guess=)'),(430,'9960ddd7b2','','Have they set up any new tour dates yet? :P \r\n\r\nI am Definetly going too see them when they come to Sweden 8)'),(431,'668cccfb01','','Yes, he is cool :) \r\n\r\nI think he was best when he played with \"Rainbow\" :P'),(432,'9988d41209','','Yes, I agree. It\'s just amazing when you think how old he is\r\nand still he can sing so powerfully. Holy Diver is one of his \r\nfew songs that I know and that I like. I don\'t know much about \r\nDio\'s other songs, but he sure can sing!'),(433,'2bec858a7c','','I think they\'ll go touring after the release of their fourth opus \r\nand I hope they\'ll come to Finland!! Perkele! :twisted:'),(434,'9f4bac0f22','','hehe, ok :) \r\n\r\nBtw, what does Perkele mean?'),(435,'c6e0d5006a','','Oh, some Finnish slipped in there! Well, it means almost \r\nthe same as \"Damn!\" in English or \"Djävul\" in Swedish (or something\r\nlike that, I looked it up from a Finnish-Swedish dictionary). :D'),(436,'339f8b61ea','','heh, ok :D \r\nAnd just so you know. \"Djävul\" means \"Devil\". I think you\'re referring too \"Djävlar\", wich means \"Damn\".\r\n :P'),(437,'1266c86522','','Oh yeah. Good point! :D Jag har läst svenska för sex år nu och\r\njag kan bilda satser. Alldeles rätt? Heja Sverige!! :P :P'),(438,'d579cf5107','','hehe :D cool :D \r\n\r\nBut the correct form of it would be= \"Jag har läst svenska sex år nu och \r\njag kan bilda satser. Alldeles rätt? Heja Sverige!!\"\r\n\r\nI removed \"för\". but it does\'nt matter :D It still rocks that you know Swedish :D \r\n\r\n \"Det e skitcoolt att du förstår svenska :D \"\r\n\r\n 8)'),(439,'df7c0adde4','','My name is Tom.\r\nIm from Sweden.\r\nIm 18 years old.\r\nI play guitar and sk8/snowboard on my spare time.\r\n :roll:'),(440,'6ac6ca4cf2','','This is me! if the link works... :P\r\n\r\nhttp://viewmorepics.myspace.com/index.cfm?fuseaction=viewImage&friendID=6522296&imageID=320770089&Mytoken=6D53764D-A906-B7C0-E8A4EB75445689D219943448'),(441,'0306e08522','','Oh I see. How old is he?'),(442,'9524551d02','','I think you should listen to album Dream Evil. In my point of view it is best Dio´s album :wink:'),(443,'af52dcbeb8','','was on amazon browsing rhapsody ppl that like this band also like this band, and found heavenly there. My father bought the cd 1 week later then :)'),(444,'ae68077f27','','He\'s 23 years old.... like me :roll:'),(445,'c91950b923','','Can you handle a kickflip? :wink:'),(446,'9398e46ea4','','Yeah, I think so too, that is great album :) \r\n\r\nBut I prefer the DVD:s actually. I think he rocks on stage 8)'),(447,'c887db2d16','','Hello everyone, my name is Julien, I\'m from France (near Montpellier)... and I\'m a big Heavenly fan since 2003 ! I can\'t wait for their new album... :P \r\n\r\nI love everything that\'s around music and metal, I love singing and writing lyrics/texts etc... btw I\'m an English teacher and I know very well SquallSaga, one of the guy who answered this topic few days ago ! :lol: \r\n\r\n@SquallSaga : Jamais j\'aurais cru te retrouver ici mon twinino, le monde est petit mais le destin est grand ! :)'),(448,'d2945158bf','','Oh yes...Evil Or Divine is really cool DVD. I love it'),(449,'8d474f1acb','','Welcome aboard Julien !!!\r\n\r\nWow, you\'re living not far away from me.... I\'m from Arles 8) \r\n\r\nThat\'s pretty cool !\r\n\r\nSee ya dude \r\n\r\nLio'),(450,'655cd19687','','I discovered them for the release of their first album \"Coming From The Sky\".\r\nSo it was in 2000. Since that day, impossible for me to leave them :)\r\n\r\nI saw Heavenly live four times :\r\nDecember 4, 2000 : Le Cannet (France)\r\nNovember 23, 2001 : Music Division Fest. (France)\r\nJune 18, 2005 : Ragnarock Fest (Holland)\r\nAugust 6, 2005 : Glanum Rock Fest. (France)'),(451,'31f8cd7cf6','','And from me :P \r\n\r\nI am Fred, I\'m 25 and I live in the South of France (Marseille).\r\n\r\nI\'m fond of metal music, soccer and movies.\r\n\r\nI\'m \"working\" for a fucking great website too ! :twisted: \r\n\r\nHope having fun with all the Heavenly troopers that we are ;)'),(452,'fd13b893c6','','Photo of me from the \"Heavenly & friends\" section of the official website with a loving m\'ms guy and a multi-fingers bassist guy :twisted: :\r\n\r\n[img:fd13b893c6]http://www.heavenly.fr/gallery/23/225.jpg[/img:fd13b893c6]'),(453,'33c1f5bead','','The troopers of HEAVenlY Metal 8)'),(454,'45c4caec47','Keyboard solos','I don\'t know about you others, but I would like to hear\r\nsome keybord solos on the next album \'cause\r\nBen is a pro keyboardist!! :mrgreen:'),(455,'7f5dcf0dc7','','It seems that I\'m the only one in here who feels that\r\nCftS is the best at the moment :( , maybe it\'s the way\r\nhow \"plain and simple\" CftS is, it\'s a little German-sounding,\r\nthanks to P. Sielck and the Hansens. :D'),(456,'7fa98de907','','Secret Sfred, you lucky fella! Four times Heavenly live! :P'),(457,'e755846045','','[quote:e755846045=\"Metal_Mike\"]Well, that\'s just silly...\r\n\r\nBut actually, I have one thing that I hate them about...\r\nTheir songs get on your brain and they won\'t get off! \r\nThis can be irretating, cus this result in that you have too listen too them all the time...\r\n\r\n :P[/quote:e755846045]\r\n\r\nOh god i know what u mean, i listen to a song and the its in my head the whole day no matter what i do, this makes me listen to it more and in turn gets it stuck even deeper in my head and it won\'t get out.\r\nI have found only one cure for this, listen to some death metal, or some melodic black metal, its seems to work for me'),(458,'90e3c3586a','','my favourite song definatley has to be Evil, and Fight for Deliverance.\r\n\r\nWhat i wanna know is how, in the beginning of Fight for Deliverance, did the drummer, Thomas, get those pedals going so fast? it sounds like a friggin machine gun'),(459,'6e66071a5c','','Cryo, it\'s not Thomas on the drums. It\'s the [b:6e66071a5c]former[/b:6e66071a5c] lineup \r\nwith [b:6e66071a5c]Maxence Pilo[/b:6e66071a5c] drumming. But anyway, the beginning kicks ass!'),(460,'23f5878eb5','','of course the first i\'ve heard...\r\n\r\nThe world will be better,\r\nRiding through hell...\r\n\r\nand then all the other favorites :)\r\n\r\nLust for Life\r\nKingdom Come\r\nDestiny\r\nTime machine\r\n\r\nso on and so forth'),(461,'b2b82fb78f','','To be honest i can\'t remember how the hell I actually discovered the band. It was one of those nights browsing tons of websites lookin for somethin new and interesting to listen to and this is where i ended up.'),(462,'772716cfc7','','This is for EFXF. I\'m also from a small town in PA :-D\r\nwhereabouts are you from? One day perhaps we\'ll be blessed with the presence of heavenly \\m/>.<\\m/\r\n\r\nSee guys. you need to get the hell over here. We cannot survive without good metal shows.'),(463,'6d5f592e9f','','http://myspace-451.vo.llnwd.net/00027/15/43/27283451_l.jpg'),(464,'97c3623f6f','','yeah a dust to dust shirt is absolutely essential.'),(465,'b7db937423','','I gave my copy of Dust to Dust to be drawn up for my tattoo and never received any reply. So no tattoo, and no more Dust to Dust. need to order a new cd and find a new tattoo artist. \r\n\r\nAlso will be getting Sign of the Winner angel.'),(466,'a06b3968a6','','[quote:a06b3968a6=\"Ben Sotto\"]\r\ndude \r\nben[/quote:a06b3968a6]\r\n\r\n\r\nis that a common word in france?\r\n\r\ni sure as fuck use it too much :-D'),(467,'80ee9161a3','','I do hope for another concept. thatd be sick.\r\n\r\nAnd another song as intense as Destiny? :shock: \r\nas powerful as Dust to Dust. \\m/\r\nas dark as Kingdom Come and of course Hands of darkness. :twisted: \r\nas gallant as Victory! :!: \r\nas uplifting as Words of Change :) :P \r\n\r\nand holy shit. Another appearance by someone like Kai Hansen would be SWEET!\r\n\r\nhttp://clanff.abshost.net/corbiaux.bmp\r\nhope you all enjoy southpark :-D'),(468,'b0133907bb',':)','Who plays?\r\n\r\nI\'m on the Gorefiend server. Oddly enough Guammer wasnt an available name nor was my secondary choice so I was left with no other option but to name myself after.....Charley Corbiaux haha\r\n\r\nSo Corbiaux is my main char name. \r\n\r\nServers are down for maintainance so i\'m left with nothing to do now at 7am except post HUNDREDS of topics on heavenly forum.'),(469,'8626fa7983','','wasnt logged in for that last post. was in reference to World of warcraft \\m/>.<\\m/'),(470,'58a3d0ca79','','[quote:58a3d0ca79=\"Guammer\"]I gave my copy of Dust to Dust to be drawn up for my tattoo and never received any reply. So no tattoo, and no more Dust to Dust. need to order a new cd and find a new tattoo artist. \r\n\r\nAlso will be getting Sign of the Winner angel.[/quote:58a3d0ca79]\r\n\r\nThat\'s bad you had no reply for your tattoo.... :? \r\nHope the next one will be the good one !'),(471,'4594838a58','','Hey dudes ! \r\n\r\nI know that a shirt with the Dust To Dust art will be great but at this point of time, no more shirts will be made.\r\n\r\nBut be sure that for the next album we will made some fuckin\' shirts, new picks and more !\r\n\r\nAt this point of time don\'t forget to get your Heavenly shirt and the albums dudes ! \r\n\r\nI let you know when I\'ve got more infos on the merchandising area\r\n\r\nCheers'),(472,'6d724419b1','Christmas Package !','Hello dudes !\r\n\r\nChristmas is coming and the fan club is realising an exclusive operation:\r\n\r\nIf you join the fan club\'s team during december, a signed demo of \'Coming From the sky 98\' will be added to the package !\r\n\r\nSee You'),(473,'46d2e19d7b','','Oh yes! I\'m totally agree with you joro!'),(474,'27a6700015','','[quote:27a6700015=\"Guammer\"]This is for EFXF. I\'m also from a small town in PA :-D\r\nwhereabouts are you from? One day perhaps we\'ll be blessed with the presence of heavenly \\m/>.<\\m/[/quote:27a6700015]\r\n\r\nState College/Altoona area. You?\r\n\r\n[quote:27a6700015]See guys. you need to get the hell over here. We cannot survive without good metal shows.[/quote:27a6700015]\r\n\r\nOh yeah...Heavenly definitely needs to make an appearance in the US! Maybe they can tour with Sonata Arctica the next time they come here. :D'),(475,'55ee0ef3e5','','Damned ! Only for two weeks..... :('),(476,'65e076d351','','Ben or anyone else, can you predict what would be the approximate\r\nrelease month for the new album? :roll:'),(477,'0d86230664','','Hey there, my name is Brandon, I\'m 21 and from Wisconsin USA. Finishing up studying business at university next year, I am looking forward to traveling through Europe. I first bought Sign of the Winner three years ago. In addition to Heavenly my favorite bands are Sonata Arctica, Stratovarius, Blind Guardian, Dragonforce, Amorphis, Dark Moor, Symphony X, Time Requiem, Symphony X, etc. Seeing Heavenly tour North America would be awesome!'),(478,'bca774a7e7','','Solid voice and lots of energy for so many years. Some of his music is a little bland for my taste though. We Rock, Rainbow in the Dark, and Last in Line are really good songs. Dio gives off positive feeling, what I noticed most when I saw him in concert a year ago was how much he smiled! :D'),(479,'166facf030','','I\'m right between wilkes barre and scranton. currently lookin to move from west wyoming over to west pittston again.'),(480,'cdd6079324','','i need to keep auto login on. idk if its just me either but it seems the board always makes me log intwice before im actually in.'),(481,'162ddbeb0d','','i was thinking a 12 string piece would be really cool.'),(482,'a78afc624b','','a concept album, that would be the greatest. Like dust to dust. :D'),(483,'7e8b92b1ba','','@ guammer, I search new bands with the same strategy 8)'),(484,'d88d84b25a','','<3 www.brutalmetal.com & www.metal-observer.com'),(485,'0b77196f6f','','yeah absolutely. thats definately accounted for half of dust to dust\'s awesomeness.'),(486,'6f061cadf5','','any and all dude. pick YOUR favorites!'),(487,'7612dc86f6','','Hi everyone, \r\n\r\nI don\'t forget all your tabs, i\'ll do it as soon as i\'ll found the time, \'cause we are too busy with the band. \r\n\r\nSo don\'t worry, i don\'t forget\r\n\r\nTalk soon'),(488,'544d8622b3','','Oki, no problem... Thanks to still thinking of us :D .\r\n\r\nBut, if you\'re busy with the band..... That\'s a good new, maybe it means you\'re working a lot on the fourth album :P'),(489,'f1759ba328','','I agree with that... The concept albums are often the best. Look at Gamma Ray : Land of the Free, Somewhere out in Space, Powerplant are No World Order concept albums, and they rock as hell ! :twisted:'),(490,'37c29f939c','','No hurry :D'),(491,'166e1a3cd4','','It would be great if the next would be kind of a \"Sign of the Winner pt 2\"'),(492,'29eda67f1a','GRRRRRRRRRRR!!!!','Hey ..........\r\nwe don\'t exactely when we will release the new album \r\nof course next year !!\r\nof course in the beginning !!!\r\nof course of course :twisted: :twisted: \r\nah ah ah check the news next week you will learn a lot ...\r\nsee you soon my heaven\'s friends :P \r\n\r\nben \"scott \" sotto :lol:'),(493,'7bea74cebb','Re: GRRRRRRRRRRR!!!!','[quote:7bea74cebb=\"ben\"]Hey ..........\r\nwe don\'t know exactely when we will release the new album \r\nof course next year !!\r\nof course in the beginning !!!\r\nof course of course :twisted: :twisted: \r\nah ah ah check the news next week you will learn a lot ...\r\nsee you soon my heaven\'s friends :P \r\n\r\nben \"scott \" sotto :lol:[/quote:7bea74cebb]'),(494,'c09606df5b','','...boring'),(495,'16e492f951','','[quote:16e492f951=\"grave-digger\"]the hottest women come from italy, right? :)[/quote:16e492f951]\r\n\r\n\r\ntheres some truth to that for sure.'),(496,'c948458fca','','Yeah... It\'s exactly what I\'m hoping for... With the same Ben\'s performance on vocals, and with the melodic genius..... Added with the strength of Dust to Dust'),(497,'021e119355','','@ SquallSaga : is it possible that you put a Stratovarius design bigger that your one ?\r\nI find it too small :twisted:'),(498,'188743b93c','','And what´s the story of Sign Of The Winner about? I have this CD but I just don´t understand it... :oops:'),(499,'72886e4816','','As far I\'m on the right trails it also tells a story about a man (like in Dust to Dust) and his life... \r\nIf you read the short stories before every song you might realize some connections...\r\n\r\nThis would be my guess, don\'t know if it is right! :lol:'),(500,'3dd745f190','','@ Secret Sfred : Yeah, I know !!! I was looking for one who take the whole page..... Seriously, I didn\'t manage to shrink it :roll:'),(501,'09ce6781d4','','[quote:09ce6781d4=\"joro410\"]As far I\'m on the right trails it also tells a story about a man (like in Dust to Dust) and his life... \r\nIf you read the short stories before every song you might realize some connections...\r\n\r\nThis would be my guess, don\'t know if it is right! :lol:[/quote:09ce6781d4]\r\n\r\nI know. But it´s quite strange for me. He meets alien, then he is wandering, he knows that we should protect our Earth but then he dies and suddenly we are in future when mankind fights againts androids for survive...it all looks quite confusing to me :roll:'),(502,'2525a3c773','','[quote:2525a3c773=\"joro410\"]Cryo, it\'s not Thomas on the drums. It\'s the [b:2525a3c773]former[/b:2525a3c773] lineup \r\nwith [b:2525a3c773]Maxence Pilo[/b:2525a3c773] drumming. But anyway, the beginning kicks ass![/quote:2525a3c773]\r\n\r\nAh right, sorry for the mistake'),(503,'69375993b9','','Salut a vous heavenly !\r\nJe fait partie d\'un groupe (plutot récent) très désireux de pouvoir jouer vos morceaux pour vous faire connaitre encore plus sur CHARTRES.\r\nCar le problème étant que le bouche a oreille est très lent.\r\nBeaucoup de personnes nous réclament vos morceaux et nous ne pouvons combler leurs attentes de part la difficulté de certains instruments danss la plupart des morceaux (on a pas tous 75 ans d\'instrument derrière nous hin !)\r\nCe qui nous handicape tout autant puisque nos morceaux favoris nous sont hors d\'accès...\r\n\r\nDonc (enfin la partie intéressante du post) j\'aurais aimé savoir s\'il vous était possible de communiquer sur le site les tablatures contenant tous les instruments au format guitar pro par exemple...\r\n\r\nSur ce ma mere hurle après moi pour que j\'aille dinner donc messieurs...\r\n\r\nBonne soirée et continuez a cartonner comme ça !'),(504,'85ca40e85c','','Sorry, but I don\'t understand a shit :)'),(505,'ecf8555351','','hehe, I am looking forward to the next cd\" :D'),(506,'be686a9203','','Welcome guys, hope you\'ll post much here in this forum! :D'),(507,'bd39f4d23c','','The hottest girls is to be find in Sweden! And that is the truth:) I even think they have done some research in that area 8)'),(508,'7447011bda','','So, if we didn\'t get it the first time... :wink: \r\n\r\nhehe :)'),(509,'ee9f87555f','finland finland !!!!','PERKELE SATANAS !!!!!!!!!!! :twisted: \r\n\r\n\r\n[quote:ee9f87555f=\"Metal_Mike\"]hehe :D cool :D \r\n\r\nBut the correct form of it would be= \"Jag har läst svenska sex år nu och \r\njag kan bilda satser. Alldeles rätt? Heja Sverige!!\"\r\n\r\nI removed \"för\". but it does\'nt matter :D It still rocks that you know Swedish :D \r\n\r\n \"Det e skitcoolt att du förstår svenska :D \"\r\n\r\n 8)[/quote:ee9f87555f]'),(510,'7786fe78a6','','hehe :)'),(511,'0604b6ffcb','Time for a new topic: "Bens Voice"','It is great, wonderful, fantastic, awsome, but...\r\n\r\nAm I the only one that found it difficult to hear that it was the same dude in the video?\r\nI didn\'t think he sounded like the same guy... :? \r\n\r\nAlthough he was still very good, it was diffrent. \r\nProblably it was just the recording but anyway....\r\n\r\n\r\n(Don\'t hate me for this, I am still a great fan :wink: )'),(512,'1543bc15bb','',':lol: \r\n\r\nI know. This Forum needs Viagra :lol:'),(513,'10b7a162fe','','He was just asking Heavenly for some guitar tabs :wink:'),(514,'fbc4a2558c','',':lol: \r\n\r\nNo, I don\'t know really :) I kinda hate... Death metal... :wink:'),(515,'71bba32c84','','he should be intruduced to Mysongbook :wink:'),(516,'eec0461924','','If you know Heavenly only by Dust to Dust, it\'s absolutly normal that you find his voice different. But, I thought he sang exactly like on Sign of the Winner (amazing the beginning of Destiny !!!! Congratulations !!!)'),(517,'d250d4f077','','Yes, I know only dust to dust. So I understand if he sounds like the first cd. But still, I think it sounds so diffrent. :?'),(518,'4265e11121','','Ben sang like the second album, SotW, and it\'s really different from Dust to Dust where he\'s surrounded by chorus very often. There, he sings high and alone...... And I\'m very fan of Ben in this album :wink:'),(519,'db63f115d5','','I also noticed just a little something in that vid (almost nothing), although I have\r\nall three albums and yes, Ben\'s voice is different on each album.\r\nAnd yes, the beginning scream on \"Destiny\" is exactly the same as on the cd!!! \r\n\r\nMaybe the video just shows what live performances are for,\r\nI mean you can hardly expect someone to sound just like on the cd with\r\nall it\'s mastering and stuff... Did I say this in a too complicated way? :roll: :lol:'),(520,'786eb520f2','','I agree with you Crimson Thunder, but the main thing is the music, right? :wink:'),(521,'eedb63b2a1','','I understand what you mean, but you should at least sound a little bit like on the cd:s :P \r\n\r\nI still think he has a great voice though :) \r\n\r\nI guess I\'ll find out about it all when they come to sweden :twisted: \r\n\r\n\r\n\r\n\r\n\r\nIf they come to Sweden sometime :('),(522,'2ddfd6bae1','','Whou, now Ben knows one VERY important word in Finnish and almost one in Swedish! :D :D'),(523,'cbc4af4242','','hehe :) \r\n\r\nIf you want too, I can learn you some more \"useful\" swedish words 8)'),(524,'a947c14e2e','','Thanks, I\'ll let you know if it comes necessary! :wink:'),(525,'26f0e6c4a1','','I have been wondering why doesn\'t \"Mr.Sotto\" use his registered name? :roll: \r\nJust a little confusing when he\'s always as a guest here... \r\n\r\nMaybe he\'s just too lazy to login every time :D'),(526,'12e84b3c10','HEAVENLY RULES',':twisted: HEAVENLY 4EVER!!!! :twisted: \r\nCOMMENT VEUX TU D\'ÉNIGRER UN GROUPE COMME CELUI QU\'EST HEAVENLY GOOD WORK BOY\'S'),(527,'04f38c155e','','I have listened to the songs he sang now. I have changed my opinion :) \r\n\r\nBen= Rocks 8)'),(528,'7ad50e944b','','Thought I was online :P \r\n\r\n(It was me that posted up there :) )'),(529,'223d9438b4','','I agree 8)'),(530,'ec8d37a60f','','[quote:ec8d37a60f=\"Anonymous\"]I have listened to the songs he sang now. I have changed my opinion :) \r\n\r\nBen= Rocks 8)[/quote:ec8d37a60f]\r\n\r\nExactly v_v'),(531,'f96ff64903','','For Heavenly guitar pro tabs...\r\nLot of people in my town would see heavenly but heaven ly can\'t do some concerts in a little town (90.000 souls...) so me n my band would play heavenly\'s songs n how they\'re difficult ear the tabs (i know my english is very bad..) i asked them if it\'s possible they give the tabs for all instruments...'),(532,'d5882939f7','','For the tabs i hate mysongbook\r\nI prefer [url=http://www.911tabs.com/]911Tabs[/url]'),(533,'12d4763962','','ah well each to his (or her) own'),(534,'60e16dda0d','','Pff I don\'t understand anything... :('),(535,'c5666f5621','','\"just too lazy\"\r\nyeah I think it\'s that!!! :twisted: lol'),(536,'eab2ea4c20','','Don\'t worry, you\'re not missing anything important :)'),(537,'c6dd87910c','','hehe :)'),(538,'9ae4081ee7','','That depends on wich tabs you download. Some tabs are bad, some good. \r\nFor example Holy_Thunders tabs of Heavenly are very good.'),(539,'ec03cf0454','ah ah ah','[quote:ec03cf0454=\"joe54\"]\"just too lazy\"\r\nyeah I think it\'s that!!! :twisted: lol[/quote:ec03cf0454]\r\n\r\njoe54 said the thruth :lol: \r\ni am too lazy !!\r\n :P :P'),(540,'408b379bf1','Re: ah ah ah','We know that you\'re too lazy Ben, always sitting on your harmchair, eating M & M\'s and drinking coke without cafeine.... mwahahaaaaaa and mainly for the M & M\'s... they are good for you ! :twisted: \r\n\r\nIt\'s not a life for you ! \r\n\r\nYou have to be more active, doing sport... not only the night :lol: :roll: \r\n\r\nSee ya soon dude!\r\n\r\n[quote:408b379bf1=\"BEN the guest\"][quote:408b379bf1=\"joe54\"]\"just too lazy\"\r\nyeah I think it\'s that!!! :twisted: lol[/quote:408b379bf1]\r\n\r\njoe54 said the thruth :lol: \r\ni am too lazy !!\r\n :P :P[/quote:408b379bf1]'),(541,'f72ba0c3a0','','Btw, the guest was me, and I still agree 8)'),(542,'c5f4bd3e6d','','yeah of course :)'),(543,'c2ecb4ce32','','Ben the guest, is that THE Ben?'),(544,'4ef2d7244d','','The two guests up there was me, Metal_Mike... :? I can promise that I logged in :?'),(545,'f13dbb4cdc','','Yes he is !'),(546,'e53ba2a6e6','','I knew it was you :wink:'),(547,'1fb4de69f8','','[quote:1fb4de69f8=\"joro410\"]Just a little confusing when he\'s always as a guest here...[/quote:1fb4de69f8]\r\n\r\nAs I said this is a bit confusing, \"Ben the guest\".'),(548,'5c7f49cc8b','','Just select it to \"remember\" you whenever you log in. I don\'t think I had to retype my name & password since I joined. Ever since then I\'ve been logged in whenever I visit the forum.'),(549,'99626781ca','','cool :wink:'),(550,'15af1df2ad','','Ok cus I thought Bens name here was just \"BEN\" and then all of the sudden it\'s \"Ben the guest\"... I got a little confused :P'),(551,'4e066d2f14','','i\'m from germany.....but i\'m the only one here???'),(552,'c20b0a1529','MERRY Xmas','Hail dudes,\r\n\r\nThe Heavenly Fan Club\'s team wish you a very merry Xmas ! \r\n\r\nDont\' forget to drink a glass of beer or of champagne for each member of the band and of the FC\'s team: so you have to drink at least 8 glasses... and don\'t forget to eat too...\r\n\r\nSee You'),(553,'6a0a85daff','','yeah... merry X-mas everyone...:P'),(554,'501cd4d206','','Maybe you are... There is not much activity here... It wil be more when I get my own computer tomorrow... 8)'),(555,'d1b26d531e','','Isn\'t it the 24 ?'),(556,'7544f54ee4','','We are \"tomorrow\" :P'),(557,'59ff8bf196','','Merry Christmas, everyone! :)\r\n\r\nhttp://ebaumsworld.com/videos/xmaslights.html'),(558,'469f7030df','','[quote:469f7030df=\"SquallSaga\"]Isn\'t it the 24 ?[/quote:469f7030df]\r\n\r\nYes, of course, but the 24 you won\'t see me on the web !!!'),(559,'4873294493','','Now that Christmas is coming, I think this forum needs to be\r\nmodified to fit with the actual Heavenly\'s site. I would be much cooler. 8)'),(560,'13532d7dcb','','Merry Xmas heav-guys and girls!!!!!!\r\n :twisted:'),(561,'c9b35a9e9a','','@Mike : :lol:'),(562,'1a219877e5','','ok, ok... but I don\'t know if I have to trust you... lol :wink:'),(563,'21e3ffded3','','exotic girls, a dream 8)'),(564,'5cf09ad5dd','','the main thing is, that we have our ben here :)'),(565,'3dc02041e5','','oh yes, symphony x are gods!'),(566,'d5c2d3c549','','I\'m your neighbour german guy :lol: \r\n\r\nthere are a few metal-countries in europe : italy, sweden, finnland, germany :wink:'),(567,'bcebe217dc','','merry christmas 8) It was a good metal year but the next will be amazing :wink:'),(568,'ddf8834a73','','I think, ben took singing lessons before dust to dust. Perhaps the reason for the change. His voice is amazing anyway :wink:'),(569,'560116c0a1','','YAW! GO FINLAND! :D'),(570,'ac29c71e22','BEN OR NOT TO BEN .....','[quote:ac29c71e22=\"grave-digger\"]the main thing is, that we have our ben here :)[/quote:ac29c71e22]\r\n\r\nYES IT\'S ME THE REAL BEN :lol: \r\nAND I CAN PROVE IT ....\r\ndon\'t hesitate to ask me some questions that only ben sotto could answer ....\r\nthen you will see !!!\r\nAH AH AH :twisted: \r\n\r\nkeep on merguez \r\n\r\nBEN the \"misterious\"'),(571,'6371d93b60','','Ok dude:\r\n\r\nhere you\'ll find some questions:\r\n\r\nWho loves M n M\'s: Thomas or Lionel?\r\n\r\nWho is the redbull incredibleman?\r\n\r\nWhat is goungoung or jambon forever?'),(572,'be16604f92','','Merry Christmas, girls and boys 8) \r\nLots of presents and snow. Actually I am suprised because we have snow right now and it seems we could have white Christmas. It´s not so usually at last not in last several years.'),(573,'ee5f0c997e','','Or maybe he should sing us... :wink:'),(574,'50da4ebc51','','merry xmas....and a happy new year....'),(575,'cbbae3592e','','tomorrow it\'s christmas...\r\n\r\nI have already bought ny presents... to myself...\r\nhehe :lol: \r\n\r\nAnd to my family ofcourse :)'),(576,'574c3fc666','','Germany is the most Metal country of em all! 8) \r\n\r\n\r\n\r\nI had to say it, even though I am swedish :roll:'),(577,'b3c92d55c7','','Yes of course. He can go really high with it :)'),(578,'82107e7b17','','So... Does he say that \"BEN the guest\" and \"BEN\" are\'nt the same persons? :roll:'),(579,'4dc3e8fe0b','','Yes, Christmas tomorrow!\r\n\r\nMetal_Mike, what is the snow situation in Sweden?\r\nHere in South of Finland there is hardly snow at all, hmm strange... :cry:'),(580,'ef895b4dd1','','We have like, 2 cm high snow :P \r\n\r\nThey say it will be gone tomorrow :( And that sucks... I like it when it\'s snow on Christmas :) Then you get this Feeling... winter feeling... :) \r\n\r\nAnd I know, the winters are getting crazy. It was never warm in the winter before...'),(581,'9ade44cbd1','','He\'s absolutely right :twisted:'),(582,'ea86df97fc','','Okay, I\'m leaving till the 30, so I wish you a merry christmas !!! See you soon dudes :wink:'),(583,'b700e78fd9','','Thanks, have a nice time! 8)'),(584,'2713480744','','Yeah, good luck on whatever you\'re going to do Squall :)'),(585,'1a13f7e761','','I guess Squall\'s from Germany... :roll:'),(586,'518dcf5979','','[quote:518dcf5979=\"Metal_Mike\"]We have like, 2 cm high snow :P \r\n\r\nThey say it will be gone tomorrow :( And that sucks... I like it when it\'s snow on Christmas :) Then you get this Feeling... winter feeling... :) \r\n\r\nAnd I know, the winters are getting crazy. It was never warm in the winter before...[/quote:518dcf5979]\r\n\r\nQuite same as here. Temperature above zero...it sucks.\r\n\r\nBut merry X-Mas dudes :D :D :D :D :D'),(587,'99b69ba4b0','','Yeah, it is Christmas today so everyone: Merry Christmas! :) I hope you\'ll get many presents and eat much food! :D'),(588,'988879981c','','[color=red:988879981c][size=24:988879981c][b:988879981c]MERRY CHRISTMAS TO ALL OF YOU MY FRIENDS !!![/b:988879981c][/size:988879981c][/color:988879981c]\r\n\r\nHave a great christmas night full of Oh ! Oh ! Oh !!! and presents !!!\r\n\r\nC U later Alligators !!!\r\n\r\nThe great Pretender,\r\n\r\nCharley'),(589,'1bc5d4f733','','oh oh oh? :wink: \r\nsounds... kinky... :wink: \r\n\r\nMerry Christmas you too :)'),(590,'4c49569077','','Thank you great Alligator Chraley!!!!!!! :D \r\n\r\n@joro: No doubt music rocks amd that´s the most important thing :wink:'),(591,'17a5079692','','[quote:17a5079692]So... Does he say that \"BEN the guest\" and \"BEN\" are\'nt the same persons?[/quote:17a5079692]\r\n\r\nthats one of the greatest mysteries of mankind :lol:'),(592,'ee0c763574','','squall is Swiss :wink:'),(593,'94d41ac65d','','Hi again, Lionel! 8)\r\n\r\nYou might remember when I talked to you about the Heavenly\'s -98 demo...\r\n\r\nWell, this time I might be interested in buying one (if you still have any left). \r\n\r\nBut I\'m not sure YET, so would you be so kind and save one copy of the demo for me, in case I will buy one?'),(594,'e3fe2ec3a8','','Hello joro,\r\n\r\nYes I remember you :)\r\nI still have Coming from the sky demos of 98....\r\n\r\nI\'m waiting news from you....\r\n\r\nSee You \r\nhope you have passed a merry Xmas'),(595,'8bdae2d246','','I\'ve got a question for you, Charley:\r\n\r\nI noticed that you played in the same band and at the same time with the ex-guitarist [b:8bdae2d246]Fred[/b:8bdae2d246].\r\nHow was it like to play with him in two different bands and in two different styles? :roll:'),(596,'69325f9176','','And how about some longsleevs? Will there be any, Lionel?\r\n\r\nThanks :wink:'),(597,'ccd0472555','','Hey, may be for the next album will made longsleeves !\r\n\r\nBut now, we are looking (it\'s just an idea) for hoods !!!!!\r\n\r\nSee You'),(598,'6a5a3e2407','','Really? Would be great too. 8)'),(599,'377511e3b6','','very good question!'),(600,'d6bfc78d2d','','hoods would be the greatest! I love nothing more than hoods :wink:'),(601,'171dccd52a','','I have to speak about the hoods with the band, but nothing is sure at this point of time !'),(602,'e463bb6706','','Lionel,\r\n\r\nif/when I will buy the demo, could you tell me some details\r\nof how and where to pay the money and how much will this cost?'),(603,'58463210e6','','As you are living in Finland you can pay by cash if you want ;). Euro money is cool... he he. You just have to post it in a registered letter to be sure that it will arrive. :wink: \r\n\r\nIt\'s the same thing for europeans residents !'),(604,'a1d64e5d09','','Can I pay it to an account? I think it would be easier...'),(605,'f2a9594fd7','Hmmm...','Could someone explain this bit to me...\r\n\r\n\r\n\r\n\n[url=http://www.pkak.com/online_casino_blackjack.html]online casino blackjack[/url] [url=http://www.internet-poker.short-run.net]poker sites[/url]'),(606,'0124075ed8','','[quote:0124075ed8=\"Guest\"]South of Korea.[/quote:0124075ed8]\n\n\n[url=http://www.pkak.com/online_casino_blackjack.html]online casino blackjack[/url] [url=http://www.internet-poker.short-run.net]poker sites[/url]'),(607,'a110bfdc76','how','[quote:a110bfdc76=\"4876\"]Hey!!!! I\'m From Thailand!!!!!![/quote:a110bfdc76]\n\n Could some one explain that to me.. xx(\r\n\r\n\r\n\r\n\n[url=http://www.pkak.com/online_casino_blackjack.html]online casino blackjack[/url] [url=http://www.internet-poker.short-run.net]poker sites[/url]'),(608,'bde5dbfa4b','Hello!','I wrote this song, let me know what do you think about it. \"O maiden of the garden, slow and sweet decline, avenger of shadowy treasures, forged in the flames of autumn. Tragic, yet richly apprehensive, this wizardy of the savages. And when the sky will be ready, I shall sing my chansons again.\"\r\n\r\n\r\n\r\n\n[url=http://www.pkak.com/online_casino_blackjack.html]online casino blackjack[/url] [url=http://www.internet-poker.short-run.net]poker sites[/url]'),(609,'ff53b8c07a','Hard to Believe','[quote:ff53b8c07a=\"Secret Sfred\"]Today we are on september, 21 ; so, everybody with me to wish a :[/quote:ff53b8c07a]\n\n It wasn\'t planned, right?\r\n\r\n\r\n\r\n\n[url=http://www.pkak.com/online_casino_blackjack.html]online casino blackjack[/url] [url=http://www.internet-poker.short-run.net]poker sites[/url]'),(610,'b9216347b4','','By bank transfert you mean?'),(611,'170d2d5db0','','I guess it\'s the same... if there is some account I can pay to. I would be able to transfer the money via a web-bank, \r\nbut I think I could also use the registered letter -system. We\'ll see... :D\r\n\r\nBTW, what was the price of the demo?'),(612,'1d38c3d7ff','','crazy!!!??? we don\'t need such advertising here!'),(613,'9aa62ab18a','','Thailand is a country in asia :roll:'),(614,'59b0e284d5','','The price of the signed demo is 10€ \r\n\r\nEnjoy'),(615,'4c64715c92','','Advertising-fools... :x :x'),(616,'f13dc1b4f9','','Somebody should delete this shit'),(617,'7ce2eb4eb0','','Spam, spam, spam,spam and this advertisments.... :roll:'),(618,'acebbc91c2','','Oh my, and what do we have in here?'),(619,'61db2141a9','',':twisted: [color=red:61db2141a9][size=24:61db2141a9][b:61db2141a9]HAPPY NEW YEAR 2006!!![/b:61db2141a9][/size:61db2141a9][/color:61db2141a9] :twisted:'),(620,'8e33c51972','','yes, happy new year here!!! It will be a great metal-year: Heavenly, Blind Guardian, Elvenking, Rhapsody live, Luca turilli, Edguy.....'),(621,'c3714654c7','','Yes, happy new year.....lot of health, succes, lova etc.....and of course lot of good metal music dudes :D :wink: 8)'),(622,'f5c15251e0','','Hey dude, and a happy new year!\r\n\r\nOk, I\'ve decided what to do. I\'m gonna go with the registered letter probably on Monday.\r\n\r\nSo the 10 euros go in the letter, but what is the address?'),(623,'435b5585d8','HAPPY NEW YEAR!','Hello,\r\n\r\nI which you a happy new year, and all the best for you and your family & friends!\r\n\r\nTake care !\r\n\r\nregards\r\n\r\nLionel & the Fan club\'s team'),(624,'3c54cd4a2c','Happy new year','Hi everyone,\r\n\r\nI wish you a happy new year and wish you the best for this year.\r\n\r\nI\'m sorry to not be there often thoses past days but we still work on our next album.\r\n\r\nBut don\'t worry i\'ll be back soon.\r\n\r\nTalk soon \r\n\r\nOlivier'),(625,'d97085c816','','Happy new years everyone ! :D \r\n\r\nGrave-digger is absolutely right for the bands !'),(626,'20808c2ab7','nothing to say ...','Hi everybody !!\r\nHAPPY NEW YEAR :P :P :P :P :P :P :P :P :P :P :P :P :P \r\nyou can believe me 2006 could be the best for heavenly ...............\r\nwe will see :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: :lol: \r\n\r\n\r\nah ah ah \r\n\r\nben sotto :twisted: :twisted: :twisted: :twisted: :twisted:'),(627,'fbfb479428','','i wish you an happy new year, and the best for this year 2006!!!\r\n\r\nthomas'),(628,'b52eaf1cb1','','eh live performances are never the same as a fully mastered studio recording. thats what makes it cool sometimes :-D I was just really excited to see the video. You guys should put a few more up if you can.'),(629,'0fd0ad2eb0','','man i am having trouble with this login. i log in then post but it still says guest and i have to log in again'),(630,'cb42fc44f7','','Yes, it can be annoying. I think this guest-thing is quite useless when all kinds of advertising-idiots can come here. \r\nAnd then Ben could use auto-login every time instead of coming as a guest :D'),(631,'5c15b61882','','[quote:5c15b61882=\"joro410\"]I\'ve got a question for you, Charley:\r\n\r\nI noticed that you played in the same band and at the same time with the ex-guitarist [b:5c15b61882]Fred[/b:5c15b61882].\r\nHow was it like to play with him in two different bands and in two different styles? :roll:[/quote:5c15b61882]\r\n\r\nHi Joro,\r\n\r\nI think you\'re speaking about the time when Fred & I were playing in Memoria and \r\nalso in Heavenly ... right ? :P \r\n\r\nWell, you\'re right it was quite different !!! but very interesting ...\r\n\r\nCos\' in Memoria Fred & I were the founder members of the band and among all the \r\ncomposers of all the songs ...\r\n\r\nIt was a different job compared to Heavenly.\r\n\r\nAnd also a different style of music more agressive and dark (we were playing a kind of \r\na Death Brutal Heavy Black Metal :x )\r\n\r\nCos\' as you know in Heavenly, Fred & I were just performers (concerning myself it\'s still like that !!!)\r\n\r\nBut being \"just a performer\" is not so bad !!! I can tell you !!! now I compose for myself \r\nand maybe for other bands (we will see ... :twisted: )\r\n\r\nConcerning the two different style ... no problem. I think that all along your week \r\nyou have different moods ... same thing for music ... :D \r\n\r\nI hope I answer clearly to your question ...\r\n\r\nC U later alligator,\r\n\r\nCharley'),(632,'ffb06c4fd5','','Thanks for the answer, C. I think it can be only a good thing when playing two different styles, \r\nthere\'s a big possibility of improving :wink:'),(633,'d242a74377','','I agree with joro. I wish ben wasn´t soooo lazy :D'),(634,'71ac2b3598','','It\'s interesting though. After listening to Memoria you can obviously hear the difference in styles but more importantly you can hear the similarity to whats found in Dust to Dust. very cool to hear.'),(635,'f29a2e2675','','I\'m not sure if i replied to this topic yet and i don\'t care to browse to find out. \r\n\r\nSo I am from the U.S in case i haven\'t ;)'),(636,'9172bd95d3','','Hey hey Joro!\r\n\r\nI\'ll send the CD next week ! :wink:'),(637,'f4579680af','','Oh, that would be great! Hope everything is going to work out fine! :D'),(638,'bd218f0787','','Some news and updates would be nice...'),(639,'c77efb9888','','Agree :D'),(640,'336ce339db','Concerts','Hey all,\r\n\r\nWhat concerts do you plan to attend this year? So far I only have tickets to one...Dream Theater at Radio City Music Hall, New York, NY on April 1st. I\'d like to see Heavenly...If they\'d only get over here to the US...'),(641,'f5a882577e','','At last some life in this part of the forum :D \r\n\r\nI can say that I have never been to a real concert, but I\'d like to go to Heavenly\'s one if it would be possible :(, \r\nalso Symphony X and DragonForce would be awesome. \r\nToo bad these types of bands hardly never go touring in the Scandinavia...\r\n\r\nEFXF, I can imagine that the DT\'s concert will be great. I have seen a clip of Jordan Rudess\' solo and it was like WOW!'),(642,'5d73ad5e96','','Yeah...I saw DT perform last year outside Pittsburgh, PA & they were amazing. I\'m really excited about this NYC concert...I heard that they will be filming it & that it\'ll be released on DVD! :D'),(643,'f881d0d006','','I think I\'m gonna go to some gigs, but the only one which\'s scheduled is the one in February, with Edguy and DragonForce in Lyon..... Does anyone coming ?'),(644,'8c1601e130','','Hey Joro, I\'ve sent your order yesterday! :wink: \r\n\r\nPlease tell me when you got it !\r\n\r\ncheers'),(645,'16795b832d','','Okay :)'),(646,'945e36b3ad','HEAVENLY MEMBERS @ FIGHT THE NIGHT','The French webzine www.seigneursdumetal.com is proud to announce the \"fight the night\" party!\r\nMembers of Heavenly and Adagio will be present that night.\r\n\r\nIf you want some, come get some ! :twisted: \r\n\r\n\r\n[img:945e36b3ad]http://www.seigneursdumetal.com/images/reviews/AfficheA6.jpg[/img:945e36b3ad]'),(647,'bfb41e57e4','','6. February : Edguy/Dragonforce in Switzerland :wink: \r\nSeptember: Blind Guardian!!! And we Swiss are the first who see Blind Guardian after 3 or 4 years :wink:'),(648,'faa31759d2','','For Sure I\'ll be there !!!! :roll: :wink:'),(649,'78c7a0aaf6','','Oooooooooooh !? I\'ll be there too ! 8)'),(650,'59f6a2ab2a','','lors de certains concerts un cd est distribué avec un titre ... l\'intulé est \" ? \"\r\nmon avis est que ça ressemble étrangement à Heavenly\r\n\r\nhttp://www.who-are-you.org/'),(651,'0313b15863','','Hey Lionel,\r\n\r\nI got the CD today (Monday). It\'s in pretty good condition \r\nand I also want to thank you for the bonus! :wink: Cheers!'),(652,'21ce2dc108','','Hey hey Joro!\r\n\r\nI\'m glad you receive the CD today and by the fact you love the signed photo !\r\nYou\'re the first finnish guy who got it ! hey hey\r\n\r\nSee Ya... tell what do you think of the demo :wink:'),(653,'6f72edd2b6','','Yes, I am the only Finn who has that photo and I think I\'ll always\r\nbe the only one! :D :D :D\r\n\r\nThe demo is nice, I had only heard \"Riding Through Hell\" and I was very excited to hear the others. \r\nIt\'s cool that those songs are a little bit different from the album versions. It\'s nice to see, how much \r\nthey have developed since the demo.\r\n\r\nThough I was hoping for the original demo, this re-edition will do just fine. :wink:'),(654,'e206f7c535','','Yes, this is a re-edition but this is the only way to get it and mainly coz\' it\'s signed by the first ever line-up !!!!'),(655,'b88b841b6c','','[quote:b88b841b6c=\"HeavenLio\"]it\'s signed by the first ever line-up !!!![/quote:b88b841b6c]\r\nThat\'s probably one of the coolest thing besides the songs! :P'),(656,'a58c9c205e','YES','Hey guys and GIRLS ........\r\ni will be there me too \r\nif you want more info about our new opus and talk with the band \r\njust come to this fuckin great party :lol: \r\nah ah ah .....\r\nBEN :twisted: :twisted: :twisted: :twisted:'),(657,'e535c9f8fa','','Hey hey dudes !\r\n\r\nJust to tell you that i\'ve received yesterday a lot of news gifts for the party !!!\r\n\r\nAs an exemple, i\'ve got Helloween\' posters & postcards & more..., Manowar\' posters & cds, and many many other posters, cds.... and even rare stuff !!!\r\n\r\nBen, I know that you\'ll want my Manowar an Helloween posters !!!! :twisted:'),(658,'a5ea155e8c','','oh! that made a big time that I didn\'t come here! \r\nI was in my exams and after on holiday and I don\'t have Internet! So sorry!! I have a lot of things to read!!!\r\n :shock: \r\n :P'),(659,'2ceda7292a','','I change the url : [url]www.lucrablog.com/gpdb_joe54[/url]\r\nkiss'),(660,'bb28bb8492','','Ben, a question for you! \r\n\r\nI know that you might be very busy at the moment, but you can answer when you find the time :wink: \r\n\r\nSo, I have listened the Coming from the Sky DEMO through a couple of times and it rocks! \r\nBut what caught my attention was the last song, \"Miracle\" that is.\r\n\r\nI really would like to know [b:bb28bb8492]when did you compose it and how old were you then?[/b:bb28bb8492] \r\n\r\nSo, please answer when you have the time!\r\n\r\nAnd, could you PLEASE this time use your [b:bb28bb8492]registered username[/b:bb28bb8492] :D :D :D'),(690,'93c21d7e63','','Hey hey,\r\n\r\nThe party was really amazing. There were Olivier, Charley and Ben.\r\n\r\nAn exclusive song from the new fourthcoming album have been played. \r\n\r\nHope to make an other party for the release of the album !!!!\r\n\r\nTake care\r\n\r\nLionel'),(661,'8efb3988a0','','Hi there,\r\n\r\nHope that everything\'s all right here ...\r\n\r\nStill working for the next album ... I\'ll begin the guitar recording sessions in two weeks ... :x :x :x \r\n\r\nThink about me ... :P \r\n\r\nC U later alligators,\r\n\r\nCharley'),(662,'1b6c4f58f0','','Heavenly begin the recording of the 4th album ....\r\n 8) 8) 8) 8) :twisted: :twisted: :twisted: 8) 8) 8)'),(663,'21fa8a0957','','@ Astaroth : I agree with you... I\'ve just listened \"the dark memories\" and it sounded like heavenly... :roll: \r\nMoreover, I like it :twisted:'),(664,'414cf63717','','[quote:414cf63717=\"Charley Corbiaux\"]I\'ll begin the guitar recording sessions [/quote:414cf63717]\r\n\r\n:mrgreen: That\'s sound so much well in my ear :mrgreen:'),(665,'38ac9abf27','','\"the dark memories\" sounds great :twisted: :twisted: :twisted:'),(666,'e386ae57ce','','I don\'t go to Edguy. I\'m going to rhapsody in March :D'),(667,'596e692b48','','Totally agree :D'),(668,'408b379bf1','','What\'s this \"the dark memories\" thing? :roll:'),(669,'b296021f71','','Yeah, me too again :D . And there will be Manowar as well !!! :o'),(670,'c32dbed9e5','','Go to \"[url]http://www.who-are-you.org[/url], there is a mp3 file to download called \"the dark memories\"...[/url]'),(671,'665b0b4a30','','I just go cos rhapsody. The price for the concert is soo fucking expensive.. Manowar, pahhh, they\'re idiots with good music :wink:'),(672,'a60f5d472a','','I just listened \"The Dark Memories\"... Wow, this is getting a little spooky. :shock: \r\n\r\nI would say that this song IS Heavenly\'s, Ben has so versatile voice and THIS VOICE is just like his. \r\nSo, if this isn\'t Heavenly I wonder what the Heavenly\'s members would say about this...\r\n\r\nStill, this song is awesome, made by whoever!'),(673,'75cb1df455','','That song rules the world!!! I\'m fucking looking forward to the next album :)'),(674,'78a592a333','','Well I will be on Masters Of Rock, biggest czech metal fest (there will be bands like Helloween, Gamma Ray, Masterplan, Korpiklaani, Apocalyptica. Edguy...)\r\nAnd I´d like to see Heavenly and Ronnie James Dio :wink:'),(675,'5d9d831628','','You\'re lucky Crimson Thunder ! By the way, the gig with Manowar will be compromise, their guitarist has been injuried in a motocycle accident......'),(676,'c814535ff9','Seyminhol','Hey guys! Does somebody know that great epicmetal band from France??? They\'re amazing! www.seyminhol.com\r\n\r\n@the french guys here: How are they live :wink: ?'),(677,'dfcd70f3c9','','Yo, I checked them out and listened to some of the available clips, not bad I\'d say. But they\'re not beating Heavenly! 8)'),(678,'791602cea2','','They\'re are different to heavenly, yes. But I wouldn\'t say heavenly is better. Heavenly plays marvellous power metal with amazing choirs and symphonic influences. I love them! But Seyminhol plays epic metal. They are folky, emotional, epic and sometimes very progressiv. They have many intros and sound-effects like epic-metal is :D'),(679,'99fe49404e','Olympos Mons','Well as far as I know a lot of people from this forum know this great finnish band. And those who don´t know go and check out thier web:\r\n\r\nwww.olymposmons.com\r\n\r\nand download kick ass song Through The Ice And Snow\r\n\r\nwww.olymposmons.com/06%20-%20Through%20The%20Ice%20And%20Snow.mp3'),(680,'fe2573028b','','It´s not bad but nothing too special I think'),(681,'05294bce0a','','There\'s one thing that I don\'t really like in epic metal. All these short interludes and prologues are sometimes really annoying if you just want to enjoy just the music and not the \"story-like\" parts. These things just disturb me a little.'),(682,'c4757e7e02','','Interesting... I\'m from Finland and I hadn\'t heard about this band. Might be that they aren\'t so well-known in here. Yeah, the full song on the site is quite cool.'),(683,'0ef689db02','','Maybe...you have soo many bands in Finland...\r\nBut the rest of album is really cool too :wink:'),(684,'27dd4372f3','','Yeah, I confirm that :wink:'),(685,'90fa18e527','','I think it wouldn\'t be a bad idea to change the name of this section into \"[b:90fa18e527]Off-topic[/b:90fa18e527]\" or \"[b:90fa18e527]General Discussion[/b:90fa18e527]\". \r\nNo one here really talks about how lousy Heavenly is.'),(686,'a82d7db21c','','I agree. But it seems that admins are not making any changes on this forum....perhaps they are too busy'),(687,'e1b4704e39','','Yes, but its good they\'re busy, that shows of a new album soon :lol:'),(688,'0a10a3c874','','[quote:0a10a3c874=\"grave-digger\"]Yes, but its good they\'re busy, that shows of a new album soon :lol:[/quote:0a10a3c874]\r\nYeah, thats true. 8) \r\n\r\nI don\'t even think this forum has any moderators or admins, if you don\'t count in the band\'s members.'),(689,'d2f74d04a7','','There have to be some admin. But there are no mods that´s right'),(691,'59cf69a729','What do you expect from the new album?','The title includes the question :wink: \r\n\r\nI would like the same like Dust to Dust: big choirs, catchy melodies, the prog influences, the awesome solos.\r\n\r\nBut I would like more orchestral influences, more epic melodies and probably folky melodies. that are my wishes, but I can live with a heavenly without that :wink: \r\n\r\nWhat do you expect?'),(692,'7e82460bde','','This is a hard one. :? \r\n\r\nI\'d like to see an album that is a mix of all the elements that can be found from all the other albums:\r\n\r\n1. Simple-structured heavy-metalness (is that even word? :D )\r\n2. Symphonic and orchestral aspects\r\n3. :evil: Aggressiveness and evilness :evil: and widely-ranging vocals\r\n\r\nWith these, the album can be the best!\r\n\r\nBut I don\'t think there will be any folk melodies :roll: , it could be heavenly but maybe not Heavenly. :wink:'),(693,'426dd2b898','','I don´t think there will be any sign of folk on CD. I don´t think it´s Heavenly´s style but who knows, maybe it would sound cool. \r\nI hope we will hear some great speed metal songs as well as great heavy riffs and of course great high screams by Mr. Sotto and great high solos by Mr Chraley \"Alligator\" Corbiaux.\r\n 8) 8) 8)'),(694,'cf0a4cbaf3','','Heavenly has been quite speedy indeed lately, it\'s ok.\r\n\r\nBut I\'d like to hear some mid-tempo and slower stuff.\r\nOh, and you can\'t forget the instrumental songs! They\'re always one of the best!'),(695,'5d155bb81b','','Dust To Dust was quite perfect. I say quite because Heavenly still sounded Helloween-like.\r\n\r\nFor the next album I\'d like Heavenly to get their own sound, they have to find it now! I don\'t want to hear poeple around me saying \'it sounds like edguy or stratovarius\'... \r\n\r\nWhy not including a ballad in French? Just to reach your fans in the heart (Blind Guardian, Kamelot and Rhapsody already sung songs in French ;) )!\r\n\r\nAnyway, good luck for the next album and see you on tour!\r\n\r\n\r\nAlex'),(696,'16efe04861','Well Done','[quote:16efe04861=\"HeavenLio\"]Yes, that\'s true guys, it\'s Ben\'s birthday ![/quote:16efe04861]\n\n:(! nice :))\r\n\r\n\r\n\r\n\n[url=http://www.local-jobs.info/portugal-jobs.html]Portugal Jobs[/url] [url=http://www.pkak.com/online_casinos_bonuses.html]online casinos bonuses[/url]'),(697,'302fc54646','Rationalization','[quote:302fc54646=\"Crimson_Thunder\"][/quote:302fc54646]\n\n Now I understand what you meant by \"\". Thanks.\r\n\n[url=http://www.local-jobs.info/portugal-jobs.html]Portugal Jobs[/url] [url=http://www.pkak.com/online_casinos_bonuses.html]online casinos bonuses[/url]'),(698,'98ba1802a3','help..','[quote:98ba1802a3=\"Thomas Das Neves\"]hi!!!!![/quote:98ba1802a3]\n\n I do not know how to stop this.\r\n\r\n\r\n\r\n\n[url=http://www.local-jobs.info/portugal-jobs.html]Portugal Jobs[/url] [url=http://www.pkak.com/online_casinos_bonuses.html]online casinos bonuses[/url]'),(699,'161a775297','No way','[quote:161a775297=\"dungeonbb\"]heavenly please tour Australia!!!!! we love you down here!![/quote:161a775297]\n\n for crying out loud, give us a break from your nonsense.\r\n\r\n\r\n\r\n\n[url=http://www.local-jobs.info/portugal-jobs.html]Portugal Jobs[/url] [url=http://www.pkak.com/online_casinos_bonuses.html]online casinos bonuses[/url]'),(700,'9ac441b636','Result','[quote:9ac441b636=\"joe54\"]Merry Xmas heav-guys and girls!!!!!![/quote:9ac441b636]\n\n At the end, \"heav-guys\" doesn\'t matter at all.\r\n\n[url=http://www.local-jobs.info/portugal-jobs.html]Portugal Jobs[/url] [url=http://www.pkak.com/online_casinos_bonuses.html]online casinos bonuses[/url]'),(701,'29be426e80','','Seriously, this is going too far. F***ing annoying. We definitely need a moderator here. And make registeration a compulsory. :x'),(702,'175e13a655','','We need mod in this forum too :wink:'),(703,'61f8ae0eac','','As soon as the guys have a break from recording someone really should delete these shit messages.'),(1107,'70bb63cf54','','The Bezerker are a little known (for good reason) Australian Death/Gore band who have the fastest drummer in the world.'),(1108,'ffb67653d2','','We all hope so! Though it\'s really hard to top SotW or DtD...'),(1109,'921b616770','','Man, I\'m so jealous. But DF is coming to Finland\'s Tuska festival at last! 8) \r\n\r\nI assume they performed the solo-thing which they do every time, I think.\r\n\r\nAnd Fred is the man, wheter he\'s playing the bass or guitar! :o'),(1110,'304f8fbedd','HEY','just this little message to say that FINLAND & SWEDEN rules !!!!\r\ni really love this country :) \r\nbeautiful landscape, with beautiful girls ....\r\nand great music there \r\nno really .............\r\ni love france too of course \r\ntake care \r\nben :twisted:'),(1111,'1e33cbeda2','','Here goes my list:\r\n\r\nAdagio - underworld\r\n\r\nAngra - Angels cry\r\nAngra - Freedom call ltd.\r\nAngra - Holy land ltd.\r\n\r\nblind guardian - somewhere far beyond\r\nblind guardian - imaginations from the other side\r\nblind guardian - nightfall in middle-earth\r\nBlind Guardian - Fly\r\n\r\nDionysus - sign of the truth\r\n\r\ndomine - dragonlord\r\ndomine - stormbringer ruler\r\ndomine - emperor of the black runes\r\n\r\ndragonhammer - time for expiation\r\n\r\nElvenking - Wyrd ltd.\r\nElvenking - Winter wake\r\n\r\nfairyland - of wars in oshyria\r\n\r\nfalconer - chapters from a vale forlorn\r\n\r\nheavenly - dust to dust\r\n\r\nhuman fortress - defenders of the crown\r\n\r\nhuman race - dirt eater\r\n\r\ngrave digger - tunes of war ltd\r\ngrave digger - knights of the cross ltd\r\ngrave digger - excalibur ltd\r\ngrave digger - rheingold\r\ngrave digger - the last supper ltd\r\n\r\niron maiden - no prayer for dying\r\niron maiden - seventh son of a seventh son\r\niron maiden - fear of the dark\r\niron maiden - brave new world\r\niron maiden - ed hunter ( best of )\r\niron maiden - dance of death\r\n\r\nkiss - revenge\r\nkiss - alive 3\r\nkiss - love gun\r\nkiss - very best of\r\nkiss - greatest hits\r\nkiss - alive 4\r\n\r\nkamelot - epica\r\nkamelot - the fourth legacy\r\n\r\nLana Lane - The queen of the ocean \r\n\r\nLuca turilli - King of the nordic twilight ltd.\r\nLuca Turilli - The infinite wonders of creation ltd.\r\n\r\nMago de oz - Gaia ltd. digibook\r\nMago de Oz- Gaia 2 ltd. digibook\r\nnarnia - long live the king\r\n\r\nQuiet riot - quiet riot\r\n\r\nRebellion - A tragedy of steel: MacBeth\r\nRebellion - Sagas of ice land\r\n\r\nrhapsody - legendary tales ltd\r\nrhapsody - symphony of enchanted lands both ltds\r\nrhapsody - emerald sword ltd\r\nrhapsody - dawn of victory ltd\r\nrhapsdoy - holy thunderforce\r\nrhapsody - rain of a thousand flames ltd\r\nrhapsody - power of the dragonflame ltd\r\nrhapsody - tales from the emerald sword saga ltd.\r\nrhapsody -symphony of enchanted lands 2 ltd\r\nrhapsody - dark secret ltd\r\nrhapsody - magic of the wizards dream ltd.\r\nrhapsody - live in canada ltd.\r\n\r\nSonata arctica - Silence\r\n\r\nSeyminhol - Septentrions walk\r\n\r\nstratovarius - destiny\r\nstratovarius - elements II\r\n\r\nTherion - Deggial\r\n\r\nThy Majestie - Jeanne d\'arc\r\nThy Majestie - The lasting power\r\n\r\nVanden Plas - The god thing\r\nVanden Plas - Christ 0\r\n\r\nWuthering heights - far from the madding crowd'),(1112,'23c34b2424','','Nice list grave-digger, but I\'m very worried about your Heavenly -section... :o \r\n\r\nYou should get Sonata\'s Winterheart\'s Guild, it\'s their best IMO. :wink: \r\n\r\nBut here are a few additions to my previous list:\r\n\r\nSymphony X - The Divine Wings of Tragedy SPECIAL EDITION\r\nSymphony X - V\r\nSymphony X - The Odyssey LIMITED EDITION\r\nTurisas - Battle Metal\r\nDream Theater - Octavarium'),(1113,'ce509a0045','','I love soccer! :D\r\nHave played soccer for about 7 years, but then i quit \'cause i didn\'t feel like\r\ngoing up at 7am every saturday morning for practice!! :P\r\n\r\nI think Sweden can go pretty far in the WC! We have some good players. :D \r\nAnd we\'re in a pretty good group too. :wink:'),(1114,'0636a9566d','','If your soccer skills and tabbing skills are on the same level then you must have been too good! :lol: \r\n\r\nSweden has England in their group, it\'s going to be a classic match!'),(1115,'20749e2df6','','Yeah Fred is multinstrumentalist.....but I don´t like Dragonforce.....'),(1116,'16f4a73957','','DF has a bad habit of writing too cheesy lyrics, but I enjoy their music much more.'),(1134,'d8429c040a','','But heavenly is in France sorry guys!!! lol'),(1135,'4d204b13f1','','Ben I have a question. \r\n\r\nYou know, I compose a lot of music and play much guitar, it\'s like the only thing I do... \r\nSo well I wanna ask you... When you compose, do you write lyrics or music first? I usually write the music first since I haven\'t quite grabbed the lyric part yet, but I dunno, maybe it is better to start with the lyrics and melody... How do you do it?\r\n\r\nthx'),(1118,'3b6c24b795','','Ive started to work out EVIL got pretty much all the sections on guitar(part from solos) but i think i will just send it to Metal_Mike instead of doing it myself\r\n\r\nI stayed up till 1am doing it last night :D'),(1119,'202e401bd9','','That was me ^^^^'),(1120,'d63537f838','','Sounds promising! 8)'),(1121,'106600f498','Dust To Dust tab finished!!','Dust To Dust tab is now finished!!\r\n\r\nBut cant upload it on MSB since the copyright laws and shit!\r\n\r\nIf you want it you have to add me on msn and i\'ll send it to you!\r\n\r\nOr leave your email adress and i\'ll send it there!'),(1122,'3506329c9c','','That was me! I thought i logged on!'),(1123,'32ca3e7ad2','','yeah.. Sweden does rule! :D :P'),(1124,'8dcd97e6e0','','Holy sh*t\r\nNo more MSB!\r\nWhat we gonna do now??\r\n\r\nOh about the tab.\r\nYeah, I\'d like to have it.\r\npls send to yanosh34@walla.com\r\n\r\nThanks.'),(1125,'ae316c8baf','','Quality stuff. 8) \r\n\r\nToo bad about MSB... :cry:'),(1126,'228f854aa3','','cool man send it too me later 8)'),(1127,'0c492b00a0','','Ben likes Sweden.... yeah... 8) \r\n\r\nYup I know, Swedens girls are the nicest... 8)'),(1133,'551ea690c7','','Yeah ! Gamma Ray rules !!! 8)'),(1129,'8f191798f7','','cool solos are the best 8) You sure rock on making em too 8)'),(1130,'c13ae30aaa','','df lyrics sucks but they rock so I don\'t care 8) I am gonna see em on Sweden Rock :)'),(1131,'3c50f157c4','','Dream Theater rocks 8) \r\n\r\nPersonally I like Gamma Ray much too.'),(1132,'69b17102b8','','(got my guitar now)\r\n\r\n 8)'),(1136,'e269368009','','[quote:e269368009=\"Metal_Mike\"](got my guitar now)\r\n\r\n 8)[/quote:e269368009]\r\n\r\nHow\'s it working dude? Are your songs getting better? :)'),(1137,'a6602e6c22','','Speaking of videos, aren\'t they shooting an \"official\" video for some song? I remember something like that being said in the news and that it will possibly be the cover song on new album.\r\n\r\nI wonder what the video will look like, hoping for some quality! 8)'),(1138,'7113e02784','Bonus Tracks!','Someone please send me all the bonus tracks of all albums!\r\nI must have them! So I can tab them.. :D \r\n\r\nIf you got any of them add my msn!\r\n\r\nHoly_Thunder87@hotmail.com'),(1139,'32bd71a345','','Hey hey,\r\n\r\njust a quick message to tell you that an english area is now open on the Heavenly official fanclub\'s forum !!!!\r\n\r\nYou can speak about everything...\r\n\r\ngo to www.heavenly-fanclub.info\r\n\r\nSee Ya\r\n\r\nLionel'),(1140,'855bd74bac','','Nice tactic to get that songs :lol: :lol:'),(1141,'e74e444546','','haha.. :P\r\n\r\nHeavenly albums is no where to be found here!'),(1147,'c898b15859','','got about 150 bars on \"Fight For Deliverance\" now!! :D'),(1148,'16204bc8dd','','Im working on it!'),(1149,'29fc59981c','','I have the tab/notation for the \"mirror mirror\" piano section now!\r\nIf you still want it i could send it to you by email! :)'),(1150,'43be74dbea','','do you mean that they were\'nt good before?! :evil: \r\n\r\njust kidding... \r\n\r\nYeah, or well, I dunno, but my guitar-playing is getting better :wink:'),(1151,'30d6b16174','','No way, I wasn\'t mocking your songs at all! :D I think they\'re awesome.\r\n\r\nI wanna hear some of the new stuff you\'re working on. :wink:'),(1152,'629cd4600e','','would you be ever so kind to email it to me too? \r\nreddrunkdragon@hotmail.com[color=darkred:629cd4600e][/color:629cd4600e]'),(1153,'44b273150c','bands you really should check out','ok theres some really sort of unknown fast metal bands out there that should really be known, and im not talking thrash, death, or any of that, im talking fast and melodic, like heavenly (who could possibly be my fav). ok deff check these bands out, and if u have any to add, feel free and do so\r\n\r\nMasterpiece (prob one of the best on the list and never ever heard of. japanese, check the myspace and listen to the song. get past the accent and ur good)\r\nshining fury\r\nguardians of time\r\ngalneryus (a little more well known)\r\nseventh avenue\r\nnostradameus (old stuff is the best)\r\npower quest\r\nManticora\r\nEddy Antonini (solo album)\r\nMagic Kingdom\r\nEvil Masquerade\r\nCydonia\r\nArthemis\r\nSkylark\r\n\r\nenjoy!'),(1154,'f6492b6f3f','','you can buy the albums at the fanclub dudes !!!!\r\n\r\nthe 3 albums are available, even the demo Coming from the sky !!!!'),(1155,'60c6801fe8','come to brazil','charley, you has forecast to come to Brazil in tour with the heavenly?\r\nI do not say English very well, but I wait that you it understood what I spoke\r\nthankx :)'),(1156,'b27b141e96','Re: come to brazil','[quote:b27b141e96=\"kevin\"]charley, you has forecast to come to Brazil in tour with the heavenly?\r\nI do not say English very well, but I wait that you it understood what I spoke\r\nthankx :)[/quote:b27b141e96]'),(1157,'b9816aeaad','','Yeah Joro is right.....I can´t wait to see that video.... :D'),(1158,'a2ffe74140','','thx joro :) Yeah sure I have some new stuff comin up... Although some stuff are pretty though at the mom. (personal stuff I mean) So I haven\'t done so much the last few days...'),(1159,'a5e6f9553b','What has happened to everyone?','comon guys... We can\'t let this forum die... Heavenly is a kick-as band that requires some forum activity....'),(1160,'b94d1a1366','','I\'m there dude !!!'),(1161,'d62f033616','','I haven\'t disappeared anywhere, seems like there isn\'t much to talk about right now.\r\n\r\nJust waiting for the release... 8)'),(1162,'8fcff8d016','Lordi','So, did anyone watch the Eurovision Song Contest this year?\r\n\r\nFinland\'s representative, monster-rock band [b:8fcff8d016]Lordi[/b:8fcff8d016], won the whole shit! 8)\r\n\r\nHave anyone ever heard of them? They\'re not bringing anything new, but their appearance is quite stunning, dressed as monsters.\r\n\r\nYesterday in Finland there was a huge concert, consisting over 100,000 people! And all this to celebrate the win!\r\n\r\nCheck their website www.lordi.org for info and www.youtube.com to see loads of videos if you want to see what\'s this band all about.\r\n\r\nTheir official videos are awesome! 8)'),(1163,'0805c2cc51','','Yeah, but that means that a METAL band won the Eurovisions ! So producers may give more chances to the unknown metal band.... With over 200 millions people and 35 countries, a metal band which won is a call from all the brothers of metal in the world.\r\n\r\nSo, my friends, I tell you :\r\n\r\nIt\'s the METAL REVOLUTION !!!'),(1164,'a94408835a','','Yes, I hope this means even some change in the Eurovision, as they say: sky\'s the limit! :wink:'),(1165,'9b1c2064b0','','yeah everyone is here but still no one says anything :roll: \r\n\r\nhum... :('),(1166,'eb18a3f2b6','','haha I loved em 8) They kicked ass in the eurovision :D Even my mom cheered for em, (I have a cool mum)\r\n\r\n 8)'),(1167,'b24247e426','','Yes I am here too.\r\nThe biggest Heavenly fan in Czech rep can not leave this forum :wink:'),(1168,'87d4f147d6','','I check the board everyday, but theres just nothing to say'),(1169,'4bb7127595','','yeah this is like the first time I see you here :roll: \r\n\r\nWell, hum... It is hard when there are so few people... :?'),(1170,'e2367416fb','','Hope the new release will bring more people in here, everyone just has to mention the name \"Heavenly\" everywhere they go! :lol:'),(1171,'ea2cc2fd46','','Yeah, it was quite incredible. \r\n\r\nBut the nicest thing was that Sweden gave Lordi 12 points! :shock: (Miracles can happen...) :D\r\n\r\nAt last we beat Sweden!!! Muahahhaa!!! :twisted:'),(1172,'9cd5a59ffb','','Good idea Joro. Make signatures that promote Heavenly....or so ;)'),(1173,'a0a505a745','','yeah.. maybe go out to town with big signs... :roll:'),(1174,'425304a43f','','haha yeah but well, what do you think really? Carola sang a very sucky song. In my opinion everyone exept Lordi sucked ass though of course... :twisted:'),(1175,'2f031d457a','','Well, I don\'t know... There was some decent songs beside Lordi\'s.\r\n\r\nCarola\'s performance really annoyed me, all those freakin\' wind-machines and exaggerations, the song wasn\'t that good either.'),(1176,'efd17d39bb','','I come to the forum every third day, but mostly there aren\'t new messages. Hope for a storm of fans too 8)'),(1177,'4bc0632972','','I visit the site a few times a week...But yeah, there isn\'t a whole lot to talk about so I\'m lurking for the time being.'),(1143,'06556754ea','','There\'s always a chance to order them from the web. :wink: \r\n\r\nBut I wouldn\'t mind getting those tracks also...'),(1144,'0778984118','','Any new tabs coming? 8)'),(1145,'ffcc2a2d96','','[quote:ffcc2a2d96=\"joro410\"]Any new tabs coming? 8)[/quote:ffcc2a2d96]\r\n\r\nI started tabbing \"Fight For Deliverance\" yesterday, but its pretty hard to tab\r\ni think. It will take some time. :P'),(1146,'d01aab0a44','','[quote:d01aab0a44=\"HolyThunder\"][quote:d01aab0a44=\"joro410\"]Any new tabs coming? 8)[/quote:d01aab0a44]\r\n\r\nI started tabbing \"Fight For Deliverance\" yesterday, but its pretty hard to tab\r\ni think. It will take some time. :P[/quote:d01aab0a44]\r\n\r\nAfter seeing your skills with tabbing the other songs, I\'m sure you\'ll eventually tab this one too.'),(1178,'94e3e6acb2','','Well I am doing Czech website of Heavenly so maybe then we can have more fans from Czech republic on forum....'),(1179,'191a6b76e8','','[quote:191a6b76e8=\"Crimson_Thunder\"]Well I am doing Czech website of Heavenly so maybe then we can have more fans from Czech republic on forum....[/quote:191a6b76e8]\r\n\r\nCool, there\'s never too much fansites.'),(1180,'748f809fe5','Banners and Sigs','Okay, I made some crappy banners and sigs cause I was bored...\r\n\r\n[img:748f809fe5]http://img46.imageshack.us/img46/7045/banner0kr.jpg[/img:748f809fe5]\r\n\r\n[img:748f809fe5]http://img116.imageshack.us/img116/5510/coverlogo6cp.jpg[/img:748f809fe5]\r\n\r\n[img:748f809fe5]http://img46.imageshack.us/img46/3533/logot221uh.jpg[/img:748f809fe5]\r\n\r\n[img:748f809fe5]http://img46.imageshack.us/img46/8688/noeffectssig8hk.gif[/img:748f809fe5]\r\n\r\n[img:748f809fe5]http://img116.imageshack.us/img116/8486/noeffectssig21pk.gif[/img:748f809fe5]\r\n\r\nIf someone wants to use them, go ahead. But they\'re not quality stuff... :roll: \r\n\r\nAnd if someone can do better, feel free to put them here. 8)'),(1069,'30883885c8','','Yeah fottball is cool. I played it for 9 years and was about to get into a really good team but I quit... why? Cause my teacher sucked and I wanted to try something else out.\r\n\r\nWriting music rocks football\'s ass :twisted: \r\n\r\nBut yeah, I\'ll check the world cup this summer. I hope Sweden will last longer then they did last year.'),(1070,'54e077b323','','You played 9 years? You must have been a pretty good player. :o \r\n\r\nI\'m also gonna hope that Sweden will do well, cause they have some great players!\r\n\r\nBut hey, we all know it\'s gonna be Brazil who will win. :wink:'),(1071,'d3fcfbf1a3','','hehe the demo version was cool but honestly it was much worse :lol: \r\n\r\nstill rock ass though 8)'),(1072,'e5b5ab03f4','','yeah I was quite good 8) Or well, not maybe THAT good but still good :) \r\n\r\nand I dunno about brazil... they haven\'t been as good as before lately...'),(1073,'24642845f2','','Still I think that Brazil is going to win this time'),(1074,'05d6fe13a8','','Woah, great tabs! Awesome, thank you so much!'),(1075,'c106626011','','Incredible!'),(1076,'7445d92e13','','Don\'t like it, its too modern for me.'),(1077,'76b9cacff5','','Yeah, Angra is a great band. I like it more with Falaschi. I like Matos in some ways,but I get annoying while listening to songs like holy land, because of him. So I don\'t like him that much. But he perfectly fits on my favourite Angra song CAROLINA V!!!'),(1078,'ece2d721ec','','Switzerland will win, they have to 8)'),(1079,'1179e04c33','','How could we don\'t like Andre Matos...... He\'s a god......'),(1080,'c694beac6d','','LOL, I would like to, but I don\'t think so....'),(1081,'7eca655a16','','Hey Charley, how about coming to the Metal Dayz in Switzerland again this year? :wink:'),(1082,'7efda79d7c','','I don\'t think so :D Besides Fabio Lione, Russel Allen, Tony Kakko he seems very small :lol:'),(1083,'9f252d4d32','','Are you JOKING !?\r\n\r\nI love Fabio Lione, but he hasnt\'t something unique, Tony Kakko, if we can understand one word on twenty we are lucky and he hasn\'t anything unique too.... But André Mattos has the purest voice in the world, and he\'s the only who can reach some high note so perfectly.....\r\n\r\n\r\nt-t-t-t-t-t-t-t.......'),(1084,'000b63e8f1','','Sorry but I can\'t agree. Fabio\'s voice is unique, defininitly, there\'s no singer in the metal world who sings like him, who owns such a vibrato. No, Fabio is a singing god :wink: \r\n\r\nTony Kakko\'s voice is also unique, noon has such a voice, noone sings in his way. Unique :wink: \r\n\r\nMatos. Surely a unique voice, no doubts! But its too high for me. Its difficult to describe why I don\'t like him that much. Destiny :wink:'),(1085,'cf6bb6c04c','','I think Switzerland will place second after France in their group, though they\'ll have to fight hard with Korea for it.'),(1086,'c89f98df36','','Tony Kakko is great, sometimes his pronunciation is unclear and it\'s bugging me...\r\n\r\nSpeaking of Angra, which one is singing in the song \"Nova Era\"? Sounds quite a lot like our boy Ben! :)'),(1087,'aafce7f229','','Yeah, and he ain\'t stopping there. More tabs are hopefully on their way... 8)'),(1088,'b2fc23fac9','','Korea sucks...\r\n\r\nor...? :roll: At least that\'s what I have always thought.\r\n\r\n\r\nBtw I\'ll get my new guitar in one week! 8) \r\n\r\nIbanez RG350-DX'),(1089,'eeef1c1144','','Korea placed fourth in the WC 2002, though they\'re not that good anymore... \r\n\r\nMike, this must be your new guitar. Cool I would say!\r\n\r\n[img:eeef1c1144]http://www.ibanez.com/guitars/models/RG350DXWH.jpg[/img:eeef1c1144]'),(1090,'f6cff27300','','Thats Edu Falaschi in Nova Era. That album is a masterpiece :wink:'),(1091,'14d4fb68ff','','yes that is the guitar I\'m getting 8) \r\n\r\nIt\'s a beautiful guitar... I am in love with it...\r\n \r\n8) \r\n\r\nI will have it in my hands next friday.'),(1092,'a3e2d23fdb','Heavenly Tab Requests!','Post your tab requests here! 8)'),(1093,'fc6003d47a','','Destiny please !!!! :D'),(1094,'e8f15ceb59','','I know somebody who is tabbing Destiny.. (as a midi file) :( \r\nMidi import sucks on Guitar Pro, but at least its something.'),(1096,'fac1d5ba9e','','\"Number One\" from \"Coming from the Sky\" would be great, it has the awesome piano intro! :P'),(1097,'9139adfae1','','Ok, thank you :wink:'),(1098,'858948020c','','Anything from Dust to Dust that hasn\'t been tabbed yet but the last song (dust to dust) the most.'),(1099,'2fd654062e','','[quote:2fd654062e=\"yanosh\"]Anything from Dust to Dust that hasn\'t been tabbed yet but the last song (dust to dust) the most.[/quote:2fd654062e]\r\n\r\nI got about 75-80 % tabbed on \"Dust To Dust\" :wink:'),(1100,'4a62511946','','Umm, this thing has been bothering me a long time. And I\'m sorry that I\'m paying attention to these minor details, BUT... \r\n \r\nOn \"Dust to Dust\" there are quite a lot of solos, and there was also two guitarists, Charley and Fred. I\'m sure both of them performed \r\nsolos on the album and I\'m having hard time hearing which solo is made by whom. :( \r\n\r\nBut on \"Sign of the Winner\" the solos were marked and contained mostly just solos from Fred, few were by guest Alex Beyroth...\r\n\r\nSo the point of this post is that if there is going to be solos from both Olivier and you, Charley, I hope the solos will be \r\nmentioned in the booklet of the coming album. 8) \r\n\r\nThat\'s about it, hope this wasn\'t too intrusive comment. :wink:'),(1101,'423aa41889','',':o what a intrusive comment :o \r\n\r\njust kidding I would actually want to know too.'),(1102,'6fa8658895','','[quote:6fa8658895=\"joro410\"]Umm, this thing has been bothering me a long time. And I\'m sorry that I\'m paying attention to these minor details, BUT... \r\n \r\nOn \"Dust to Dust\" there are quite a lot of solos, and there was also two guitarists, Charley and Fred. I\'m sure both of them performed \r\nsolos on the album and I\'m having hard time hearing which solo is made by whom. :( \r\n\r\nBut on \"Sign of the Winner\" the solos were marked and contained mostly just solos from Fred, few were by guest Alex Beyroth...\r\n\r\nSo the point of this post is that if there is going to be solos from both Olivier and you, Charley, I hope the solos will be \r\nmentioned in the booklet of the coming album. 8) \r\n\r\nThat\'s about it, hope this wasn\'t too intrusive comment. :wink:[/quote:6fa8658895]\r\n\r\nYou\'re right Joro ...\r\n\r\nConcerning Dust to Dust ... I asked to get the dispatching of the solozzz in the booklet but everybody said me : \r\n\"nobody\'s really interested in this kind of thing ...\" ... :roll: so ...\r\n\r\nSo feel free to send your request to all the band Joro ... (just in order to show to everybody that I was right ... :twisted: )\r\n\r\nBut I can promess you that on the next album, there finally will be the dispatching of the solozzz ... TRUST ME !!!\r\n\r\nThanx for your request Joro,\r\n\r\nAnd C U later alligators !!! now I have to shake the \"News area\" c u there for more news about the album ... :twisted: \r\n\r\nGnark gnark !!!\r\n\r\nYour worst friend,\r\n\r\nCharley'),(1103,'95ce7dfffb','','Yeah! Thanks a lot Charley, no one should ever underestimate the importance of solos! :x :wink: \r\n\r\nHope that the rest of the band now knows who\'s right!\r\n\r\nJust read the news and this waiting was killing me, great news!\r\n\r\nConcerning the three songs, it\'s cool to hear what are they like with those titles!'),(1104,'8ee624c6c3','','Amazing news, Charley!!! The titles sound great, indeed :) And the news about the orchestration, man, I wonder so damn much. Will we have the first heavenly album with violine, flute or another classical instrument, that would be the greatest! Orchestral Metal is the best :)'),(1105,'5577551814','woo d-force','Got to see dragonforce w/ fred on bass the other night :-D ;) . nice treat for us over in the states where good shows are so scarce!'),(1106,'6e5df36841','','Man, listening to Sign of The Winner is great. It\'s nearly as great as Dust to Dust.\r\n\r\nLets hope the trend of writing better and better albums continues to their next album eh?'),(1068,'cd57245a1d','','Yeah, good for you. Finland\'s soccer team sucks ass so much that they didn\'t qualify... Argh! :x \r\n\r\nI think the Czechs have a good possibility to go far even though they have to face USA and Italy in the Groupe E. But they have one of the best goalies, Petr Chech. :wink: \r\n\r\nThe song will be interesting to hear with all those great names!'),(711,'7714bbfb85','i don\'t understand ???','Hello GIRLS & guys \r\nthis is me again \r\nstill without knowing my username ... :lol: \r\nit\'s not my birthday ?? heavenlio .....\r\nare you drunk ?\r\nyou should learn to play video games men :P \r\nabout our old demo called \" coming from the sky \" \r\nwe released it i think in november 1998 \r\nand if my memorie is ok i wrote the song \"miracle\" in august 1998 \r\ni was in holiday in the south of france ....\r\nso see you soon every body cause we are in STUDIO ......just for you :twisted: \r\n\r\n :shock: ben sotto :shock:'),(712,'5523ee55a5','HEY HEY','Just one thing left before to go ...\r\ni was 17 years old when i compose miracle \r\nhope i answer you as well ...\r\ntake care \r\n\r\n :evil: :twisted:'),(713,'c62f3006d3','Re: i don\'t understand ???','[quote:c62f3006d3=\"BEN\"]\r\nit\'s not my birthday ?? heavenlio .....\r\nare you drunk ?\r\nyou should learn to play video games men :P [/quote:c62f3006d3]\r\n\r\nSo first of all Ben, I haven\'t drunk too much \'coz this message was posted on september 22nd. Check the first page of your topic dude ! :wink: \r\n\r\nAnd for the video games, prepare for war. I\'ll broke your football\' players. I\'ve played with some friends of mine @ Mario smash football and I won everytime. héhé. Soon I\'ll take my revenge. Olivier & you wil loose.\r\n\r\nSee You'),(714,'481f2cabc9','','Yeah, a song in french would be really cool :D . Otherwise, A speed melodic album with Ben singing high is all I want :roll:'),(715,'724d4c9cc0','','The wrath of joro :lol: . But that\'s right.'),(716,'d4507d8530','','Cheers for the answer, Ben.'),(1008,'b1ab250168','','yeah good work joro. Maybe we can be the Forum Viagra group 8)'),(1009,'c20d96e02e','','I think no-one would complain since we\'re ones that use this forum. :lol:'),(1010,'51fa44329b','','heh yes :lol: \r\n\r\nbtw joro, do you have msn?\r\n\r\nif you have, feel free to add me.'),(1011,'40cc456a23','','Yes, I have Messenger AND I have you on my list. And I hope you have me, you already once asked that.\r\n\r\nMight be you haven\'t noticed me cause my nickname there is \"liima\", not joro410.'),(1012,'3d7a7b48d1','','haha sorry forgot :lol: \r\n\r\nhum lemme check 8) \r\n\r\n :lol:\r\n\r\n*you\'re there but i have never seen you online :roll:'),(1013,'35b55ce3e5','','Well, lately I haven\'t been there. But sometimes I login... :wink: \r\n\r\nSee ya there sometimes, now I\'m off to see \"Late Night with Conan O\'Brien\" on TV. 8)'),(1014,'e71219c89b','','heh ok dude :) \r\n\r\ncause if you wanna I can show yo uoms of my songs. That is if you have Guitar Pro.'),(1015,'9b96b97df1','','Stratovarius cover would be nice 8)'),(1016,'22baeafc14','','*NOT RELATED TO BEN SOTTO*\r\n\r\nHey good to see you here Metal Mike :wink:'),(1017,'60715f81c5','','I\'m gonna buy it when it comes 8)'),(1018,'9a43425ac5','','thx man 8)'),(1019,'8e453ce617','','Conan is the man!\r\n\r\nYeah, I have GP4 demo. I can manage with that, I think.\r\n\r\nI\'ve checked some of your songs on MSB.'),(1020,'2f12d57225','','[quote:2f12d57225=\"Metal_Mike\"]I\'m gonna buy it when it comes 8)[/quote:2f12d57225]\r\n\r\nWell, what other choices do you have? :lol: Of course we\'ll buy it!'),(1021,'c6f979f798','','I\'ve just finished Victory now.\r\nI\'ll post a new topic when its uploaded on msb! :)'),(1022,'3e1dbc9922','','Azrael is another spanish metal band. Good musicians, and the album called \"Dimension IV\" is... Well, is €¬@$€\"~ amazing. \r\n\r\n[img:3e1dbc9922]http://hirokawai.at.infoseek.co.jp/music/review/img/212a.jpg[/img:3e1dbc9922]\r\n\r\nLike Stratovarius, Helloween...'),(1023,'24b14bbc71','','Iron Maiden, Helloween, Metallica, Dream Theater, Rage, Slayer, Sepultura (old), WarCry (spanish, good heavy metal), Symphony X, Victor Smolski, W.A.S.P., Azrael (spanish) Angra (with Falaschi), Yngwie Malmsteen, Cacophony, Anthrax (with Bush; Sound of white noise... bff)...\r\n\r\nand Heavenly, of course 8)'),(1024,'351eb8c763','','[quote:351eb8c763=\"HolyThunder\"]I\'ve just finished Victory now.\r\nI\'ll post a new topic when its uploaded on msb! :)[/quote:351eb8c763]\r\n\r\nYou\'re not wasting too much time, are you? :D \r\n\r\nDamn, you rule. 8)\r\n\r\nI reckon you have checked the one on MSB with only guitars.'),(1025,'0bf2f6c9e8','','Argh, I can\'t wait !'),(1026,'37c199b558','','Squall, you\'re back from Japan! How was it? :wink:'),(1027,'96e44759a1','','Hi there !\r\n\r\nI\'m back from Japan, I haven\'t slept for about 48 hours, but it was the best experience in my life ! I get the japanese versions of Sign of the Winner and Dust to Dust, and I haven\'t the strength to say anything else that I did, it\'s tooooooooooooooo much !\r\n\r\nBut it\'s a fact that we\'ll buy the next album, as sure as Ben\'s singing on \"The Dark Memories\", I hope it would be on the next album ! I wanna more news :oops:'),(1028,'e41e20c005','','Yeah, thanks to notice :wink: .\r\n\r\nI said that in the topic \"when can we have another album\", not much, though....'),(1029,'8d7ce69a6b','','[quote:8d7ce69a6b=\"SquallSaga\"]Hi there !\r\n\r\nI\'m back from Japan, I haven\'t slept for about 48 hours, but it was the best experience in my life ! I get the japanese versions of Sign of the Winner and Dust to Dust, and I haven\'t the strength to say anything else that I did, it\'s tooooooooooooooo much !\r\n\r\nBut it\'s a fact that we\'ll buy the next album, as sure as Ben\'s singing on \"The Dark Memories\", I hope it would be on the next album ! I wanna more news :oops:[/quote:8d7ce69a6b]\r\n\r\nI WANT THE JAPANESE VERSIONS NOW!!! :x'),(1030,'0dde271eb1','',':lol: \r\n\r\nWhere I live, Geneva, we could easily find the japanese version of Dust to Dust, but I wanted to buy it in Japan..... So the trip will be a little shorter :D'),(1031,'cbefe3e847','','Well, that\'s good for you... :cry: \r\n\r\nEspecially I want the bonus songs, \"Lonely Tears\" and \"...Dust to Dust\" which is sung in Japanese! It has to be quite funny! :P'),(1032,'b2a6ee1e54','','Yeah..... People likes shit music. Listent to what it is on the popular radio and tv ! Power Metal isn\'t known of the large public (except in japan.... but it\'s another world), so yes Heavenly like many other should be more popular, even well known band such Stratovarius aren\'t known of a lot of people ! Heavenly, that I know from the beginning, get more populat for every album released, so I hope they\'ll becom famous with their 4th album.'),(1033,'0828c2e147','','Don\'t like a lot..... sorry :oops: *running to hide*'),(1034,'4772286479','','Yeah, that\'s another band called Azrael, and there is another one, a black metal band....\r\n\r\nOtherwise... I met Akira, the singer of Azrael and I spent all the evening and the night with him !!!!!!!!'),(1035,'975c85aca0','','[quote:975c85aca0=\"SquallSaga\"]Don\'t like a lot..... sorry :oops: *running to hide*[/quote:975c85aca0]\r\n\r\n :lol:'),(1036,'6e91389c03','','[quote:6e91389c03=\"V\"]Angra (with Falaschi)[/quote:6e91389c03]\r\n\r\nYou mean you don\'t like Angra with Andre Matos ? The \"old\" Angra ?'),(1037,'0d933a1937','','Lonely Tears is not so so so so great, the album has a better end with \"Until the End\" I think *running faster to hide*.\r\n\r\nBut, the japanese version of \"Dust to Dust\" is amazing, Ben sings like in Sign of the Winner, so high, so perfect 8)'),(1038,'49c5942981','','Just say if you wanna that we let you alone..... :roll:'),(1039,'c24b989ae4','','Do you mean that he sings better / higher in Japanese?'),(1040,'bb591d933f','Victory (Creatures Of The Night) tab!!!!!!','Victory (Creatures Of The Night) tab is now finished with all instruments.\r\n\r\nhttp://www.mysongbook.com/tab-tab_list-id_tablature=64103.htm'),(1041,'62d59937b8','','He he, I know that the bonus tracks are wanted. That\'s why all the bonus track will be available on the private area of the fanclub\'s website.... only for the Heavenly troopers. :roll:'),(1042,'e044482574','','Awesome work again dude.\r\n\r\nJust brilliant. And now I\'m out of words.'),(1043,'1195f554da','','Hehe..... \r\n\r\n@ joro : No, but in japanese he sings like in \"Sign of the Winner\", and in this album he sings higher, yes :D'),(1044,'610217ebb6','','I have a question...\r\n\r\nHow come power metal bands and many other bands release special japanese versions? :roll: What is so special about Japan? :roll: Why can\'t they release a special cd for Sweden instead? :roll:'),(1045,'5483823b68','','hey joro yoo said you had checked some of my songs on msb. I only have one that is gp4 and it sucks ass. I wrote it after I had played guitar for 6 months and it is my first song ever.... :roll: \r\n\r\nI have much much better songs belive me 8) \r\n\r\nheh'),(1046,'edc5bbe01a','','[quote:edc5bbe01a=\"Metal_Mike\"]I have a question...\r\n\r\nHow come power metal bands and many other bands release special japanese versions? :roll: What is so special about Japan? :roll: Why can\'t they release a special cd for Sweden instead? :roll:[/quote:edc5bbe01a]\r\nFrom what I\'ve heard the thing is that in Japan CDs and and albums kinda stuff are much more expensive. \r\n\r\nThey need to get something extra that other people don\'t get, bonus tracks and stuff. So that the bonus stuff generally tempts them to buy CDs and albums. Somehow it makes sense in a way... :roll: \r\n\r\nYeah, we want Scandinavian versions! 8)'),(1048,'6c63421c46','','[quote:6c63421c46=\"SquallSaga\"]Just say if you wanna that we let you alone..... :roll:[/quote:6c63421c46]\r\n\r\nIt\'s okay Squall, join in! Not like we own this topic or something. :)'),(1049,'d2d6fff7fc','','[quote:d2d6fff7fc=\"Metal_Mike\"]hey joro yoo said you had checked some of my songs on msb. I only have one that is gp4 and it sucks ass. I wrote it after I had played guitar for 6 months and it is my first song ever.... :roll: \r\n\r\nI have much much better songs belive me 8) \r\n\r\nheh[/quote:d2d6fff7fc]\r\n\r\nThe one that is in .gp4 is kinda boring, but nice. I would check your other ones but my GP5 demo has expired... :cry: \r\n\r\nGood ratings on every song though.'),(1050,'86667ee198','','Why these bonuses can´t be on regular albums? It´s quite unfair when we don´t have bonus tracks in Europe.....but it´s not band´s problem. It´s labels. They need money and so they tell the band to make bonus track for Japan. Perhaps because there are lots of metalheads.....who knows.....but it´s in labels I guess'),(1051,'8748f56dce','','Joro was quite right, but it\'s also because metal bands are as known as Madonna in U.S.A.....'),(1052,'8ea3a09e55','','[quote:8ea3a09e55=\"SquallSaga\"]Argh, I can\'t wait ![/quote:8ea3a09e55]\r\n\r\nHey hey dudes !\r\n\r\nI have a great news for you: the new website will be onilne this week end or on the beginning of the next week !!!!!! :twisted: :twisted: 8) \r\n\r\nSee You :wink:'),(1053,'bf9d46fe07','','Yeaaaaaaaah ! That rocks !\r\n\r\nCongratulations :D'),(1054,'c50c805e99','','Ehh, I\'m not to big on Azrael. For my Japanese metal fix, I head straight to The Sex Machineguns!'),(1055,'d220424e9f','','aha ok now I get it then. Thx Joro :wink:'),(1056,'364929b674','','you wouldn\'t be able to listen to the song as it shouild be anyway cause you cannot listen with RSE with the demo version. But what I have there ain\'t power metal anyway. I am writing some power metal stuff for the mom.'),(1057,'71e84e6d0a','','[quote:71e84e6d0a=\"Element_man\"]Ehh, I\'m not to big on Azrael. For my Japanese metal fix, I head straight to [b:71e84e6d0a]The Sex Machineguns[/b:71e84e6d0a]![/quote:71e84e6d0a]\r\n\r\nSomehow that name just scares me off! :?'),(1058,'c38acfd102','','Congratulation!\r\nGreat job you\'ve done there.'),(1059,'2eb6625f02','Miracle - demo version','Has anyone got \"Miracle\" from their demo?\r\nPlease send it to me!!'),(1060,'3417cba62e','','Hey Lionel new website really rocks :lol: \r\nCool design.\r\nBut I miss English though I understood a bit :wink: \r\nBut it´s reallly cooooooooooooool web. Great job :D'),(1061,'ebb5165cc1','','You should ask HeavenLio if he still has those demos left.\r\n\r\nI can tell you the demo is really worth buying. :wink:'),(1062,'8fb809c9a5','','Yeah thank you guys !!!\r\n\r\nThe english version of the website will come asap. Romain and I have worked one month , 7 hours per day for this version, so now we\'ll make a break a work on the english version soon !\r\n\r\nTake care !\r\n\r\nLionel\r\n\r\nSee you on the FC forum ;)'),(1063,'880531f2f0','','I still got some demos of Coming from the sky... 5 ex I think, no more.\r\n\r\nSee You\r\n\r\nLionel'),(1064,'5f98a9d627','','Okay, let\'s change the subject. 8) \r\n\r\nIs anyone here into football / soccer? Planning to watch the World Cup in the summer?'),(1065,'97eadd9c3e','','Yeah, the site is quite nice. Waiting for the English version. :wink: \r\n\r\nSome unique stuff in the Collectors -section! :lol:'),(1066,'43e6e147e6','','okey.. but i mean an mp3 on the computer... i really wanna hear it!!'),(1067,'8985627dd9','','Of course man :wink: \r\n\r\nI´ll have opportunity to watch Czechs on football championship. It´s great :D \r\nBTW do you know that Uli Kusch wanna record song \"Glorious\" for championship? There will by lots of great musicians....Joacim Cans, Oskar Dronjak, Timo Kotipelto, Tobi Sammet and lot´s of others as guest musicians....it will be great song :wink:'),(1007,'aa97b4996d','','Yeah, this forum is so dead. I\'ve been keeping it alive for a while now. :)'),(1006,'67edbd2951','','heh yeah I wanna spam the forum and kick it to life :wink: \r\n\r\nand yeah I have a band. We rock, or at least we think we do. People hold their hands over their ears though when they listen... I wonder why... :roll: \r\n\r\njust kidding.\r\n\r\nSo yeah here I am, rock you like a hurricane etc.'),(723,'c865d18203','','Ben\'s voice sounds to much like Toni Kakko\'s or Kotipelto\'s. Ben\'s should find is own way of singing or Heavenly will always remain a sound-like-band...'),(724,'78c4065206','','Tony Kakko !? We didn\'t understand a single word when he sings.... Ben\'s much better. And for Kotipelto, it\'s a great comparaison :D'),(725,'dc5eae326a','','[quote:dc5eae326a=\"SquallSaga\"]Tony Kakko !? We didn\'t understand a single word when he sings.... Ben\'s much better. And for Kotipelto, it\'s a great comparaison :D[/quote:dc5eae326a]\r\n\r\nYou´re right. Ben does not sing like Tony Kakko at all. And same with Timo Kotipelto I think'),(726,'c555b19ac9','','Ben sounds the most like Michael Kiske, I\'d say.\r\n\r\nThe first time I heard \"I Want Out\" by Helloween I was like... ??? What?\r\nHeavenly has made a new song!?!? :shock:'),(727,'ff39d6aa7a','','Heeey, did anyone watch the Olympics? :o \r\n\r\nThe whole event ended yesterday, including the icehockey final!'),(728,'de0f6f0dbf','','An epic song or a ballad in French is cool because the language sounds both romantic and medieval to me! \r\n\r\nSven'),(730,'b9f349c3ac','','Dust to Dust was a huge step towards a signature sound.'),(731,'3a213fe45a','','Yes man, of course I did :wink:'),(732,'15f2531177','','Damn, that icehockey final. Finland came so close!\r\n\r\nOur beloved neighbour Sweden snapped the Gold from us! :x \r\n\r\nOh, and Czech Republic came third, winning Bronze! Too bad for Czech that Jagr and some other players ended their national career.'),(733,'ed6abf0b70','','[quote:ed6abf0b70=\"joro410\"]Damn, that icehockey final. Finland came so close!\r\n\r\nOur beloved neighbour Sweden snapped the Gold from us! :x \r\n\r\nOh, and Czech Republic came third, winning Bronze! Too bad for Czech that Jagr and some other players ended their national career.[/quote:ed6abf0b70]\r\n\r\nThis ice hockey championship was really bad for us. We didn´t play good hockey at all. It´s miracle we have bronze. In my opinion it´s couch´s fault. The players were good, so....\r\nYeah Jagr is quite old already. There are great young players who need to get opportunity so this is their chance 8)'),(734,'f970b16cdd','','[quote:f970b16cdd=\"Crimson_Thunder\"][quote:f970b16cdd=\"joro410\"]Damn, that icehockey final. Finland came so close!\r\n\r\nOur beloved neighbour Sweden snapped the Gold from us! :x \r\n\r\nOh, and Czech Republic came third, winning Bronze! Too bad for Czech that Jagr and some other players ended their national career.[/quote:f970b16cdd]\r\n\r\nThis ice hockey championship was really bad for us. We didn´t play good hockey at all. It´s miracle we have bronze. In my opinion it´s couch´s fault. The players were good, so....\r\nYeah Jagr is quite old already. There are great young players who need to get opportunity so this is their chance 8)[/quote:f970b16cdd]\r\n\r\nNot only is Jagr quite old, he got a bad hit from Finland\'s Jarkko Ruutu when they played against us... :o but we won 4-2!!! 8) :wink:'),(735,'593ff777e7','','I hope the new album will be another step foward for Heavenly! They have to become greater than ever!\r\nDon\'t forget Edguy fans, for example, are waiting for this album (check edguy official boards). The world is waiting for Heavenly!\r\n\r\nI hope their label will promote the album worldwide and a world tour!!!'),(736,'4ea7b786a3','','Yeah that hit was really devastating. It was not sportive at all. But the match was exciting.'),(737,'d7dce647fd','','[quote:d7dce647fd=\"Alex De Troy\"]I hope their label will promote the album worldwide and a world tour!!![/quote:d7dce647fd]\r\n\r\nThe label\'s website www.noiserecords.com hasn\'t been updated since 6.7.2005!\r\n\r\nI heard some rumours that the whole company was in some financial trouble. :( Hope not, a world tour would rock!!!'),(738,'6b5acff80c','','Heavenly should sign with Nuclearblast!'),(739,'08a2ed92d2','','[quote:08a2ed92d2=\"Alex De Troy\"]Heavenly should sign with Nuclearblast![/quote:08a2ed92d2]\r\n\r\nYeah, anyway some big label! So that promoting and arranging tours will be efficient.'),(740,'edba72724d','','Seyminhol are just great! Like heavenly they need a big label which could help them to break through. \r\nI think French power metal bands are as good as German or Finnish bands but hey haven\'t yet labels ready to support them and to give them gears to reach a bigger audience.\r\nHeavenly should tour in France with Alkemyst and Seyminhol as support bands!'),(741,'762d0b475b','','I really like Maladaptive music. It\'s not In Flames yet but they are on the way!'),(742,'cbc27955b3','','My favourite bands are:\r\n\r\nGAMMA RAY\r\nEDGUY\r\nIn Flames\r\nHelloween\r\nAngra \r\nHeavenly\r\nRhapsody\r\nMago de Oz\r\nKamelot\r\nEpica\r\nNightwish\r\nIced Earth\r\nAlkemyst\r\nSonata Arctica\r\n\r\nIRON MAIDEN \r\nDEEP PURLE\r\nSCORPIONS\r\nRainbow\r\nJudas Priest\r\nKiss\r\nQueen\r\nBon Jovi\r\nMeat Loaf\r\n\r\nU2\r\nPlacebo\r\nMuse\r\nSerge Gainsbourg'),(743,'1bd6e80539','','Dio and Klaus Meine are the best Hard Rock singers for me!'),(744,'bb4c2fdce2','','Its equal, I only want the album :lol:'),(745,'b5b13b04b1','','Don\'t forget Fairyland :wink:'),(746,'ba64375a39','','Add:\r\n\r\nWintersun (amazing)\r\nEnsiferum\r\nSymphony x\r\nSeyminhol\r\nwuthering heights'),(747,'0d3137ab3d','','[quote:0d3137ab3d=\"grave-digger\"]Wintersun (amazing)\r\nEnsiferum\r\nSymphony x[/quote:0d3137ab3d]\r\n\r\nHell yeah! These three are freakin\' Gods!\r\n\r\n@grave-digger, do you have the newest Ensiferum mini-CD?'),(748,'d9aff45d8e','fast metal bands','alright, i think any1 who is a big fan of heavenly loves them becasue of theyre amazing compositions but also because of their speed. \r\n\r\non this topic, list all of the fast melodic/power/epic/ w/e metal bands that you can think of.\r\n\r\nHeavenly (of course)\r\nDragonforce (one of the fastest)\r\nCellador\r\nSonata Arctica\r\nGalloglass\r\nBlind Guardian\r\nSavage Circus\r\netc.....'),(749,'ff4c2374af','','At least:\r\n\r\nIron Savior\r\nStratovarius\r\nAngra\r\n...\r\n\r\nThose came in my mind for now.\r\n\r\nHey, DFdrummer, you should register here! There is just a few active users in here. :wink:'),(750,'df30c063a2','','Yeah, I\'ve got it. A dream!!! Dragonheads is such a marvellous and amazing song. The new album will be awesome!!'),(751,'a0f48cc5c6','','Dragonheads is cool, but I almost prefer the new versions of the old demo songs on the CD.\r\n\r\nI\'m kinda missing Jari Mäenpää\'s singing, he had such great growls and clean vocals... :( :cry: :(\r\n\r\nBtw, have you taken a listen to the current vocalist\'s band Norther? I personally don\'t quite fancy his vocals there.'),(752,'49217c9d54','','Hum, add to these bands we shoul put Dragonland of course.... Anyone knows them ?'),(753,'d028cacb69','Do you want to listen to melodic music ? ;- )','Oki, There exists a japanese band called \"Azrael\", it\'s a metal band, and their music is just incredible..... Their fourth album will be released shortly, and their third is one of the better album in the world, I really mean it. The singer of this band is named Akira, and he did another project with two guys and released this solo project this month, called \"Prohphesia\". You can check a sample of the 3 songs on it. There\'s one amazing song, then a very melodic song and finally a very powerful ballad.\r\n\r\nHere\'s the adress :\r\n\r\nhttp://michael.loops.jp/prophesia/disc.html\r\n\r\nHope you\'ll enjoy it ! :wink:'),(754,'ba51cc0fa6','','Thanks man, I´ll chcek them out :wink:'),(755,'4e76890132','LOL!!!! :D Chech this out','Have you ever heard cover like this? :D \r\n\r\nhttp://www.wingtunes.com/samples/mp3/cd%2010%20-%20Wing%20Sings%20AC-DC/WingCD1002%20-%20back%20in%20black.mp3\r\n\r\nHere´s official Wing website :wink: \r\n\r\nhttp://www.wingmusic.co.nz/index.html'),(756,'70c81745bf','','Sounds really cool. Really :wink:'),(757,'a379246e97','','I\'m happy you like it :- ). Try to find the Azrael album \"Sunrise in the Dreamland\", and you\'ll discover what amazing music is :wink:'),(758,'f0def94b28','Re: LOL!!!! :D Chech this out','[quote:f0def94b28=\"Crimson_Thunder\"]http://www.wingtunes.com/samples/mp3/cd%2010%20-%20Wing%20Sings%20AC-DC/WingCD1002%20-%20back%20in%20black.mp3[/quote:f0def94b28]\r\n\r\nOMG! I don\'t know what to think about this... :shock:'),(759,'9d08794352','','sweet'),(760,'0bc7baa130','','Hey mates, why don´t you log in to this forum :wink: \r\nIt´s fun here. :D'),(761,'4dba4f8101','','Yeah, the best time of your lives. You don\'t know what you\'re missing!'),(762,'2f216f8bec','','Man, I gotta say that the music is quite ok... but the singer... uffhh.\r\n\r\nI like usually like high-pitched vocals but that was just too much for me.'),(763,'a1b97b506c','','OMG! Crimson_Thunder, 99 posts!!! :o \r\n\r\nOne more and then...'),(764,'c25e09f1a9','','No, I didn\'t. I have to say, I didn\'t know that band. Viking Metal???\r\n\r\nJari\'s voice is marvellous, but itsn\'t that bad, we have Wintersun and thats enough 8)'),(765,'ba7a0556c1','','Yeah, one more :twisted:'),(766,'8dc2acb40b','','Norther plays kinda power metal with harsh vocals and now with some clean too. Also much keyboards are used.\r\n\r\nwww.norther.net you can download some clips if you like.'),(767,'27ef133a39','','WE NEED MORE VIDS!!! 8) \r\n\r\nSome older stuff would be great!'),(768,'ec8c8d9e09','','Hey Charley, is there any website or anything where I could hear some stuff of Memoria? Official site or something...'),(769,'e7b838386d','','[quote:e7b838386d]What do you expect from the new album?[/quote:e7b838386d] For it to be readily available in Canada! :lol: \r\n\r\nI really loved the direction of Dust to Dust. It was incredibly epic, the singing was the best it had ever been, the guitar work was brilliant, upbeat tempos, huge choirs, loved it. I hope the new album stays in this style, but maybe adds in even more epicness/symphonic stuff, and keeps the speed up. It can\'t get enough of that.'),(770,'efae9226b1','','Hey Element_man, welcome to the Heavenly forum! :D Hope you\'ll post here a lot!\r\n \r\nIt\'s been so quite here lately... :('),(771,'c5d9eafdfa','','[quote:c5d9eafdfa=\"joro410\"]Hey Element_man, welcome to the Heavenly forum! :D Hope you\'ll post here a lot!\r\n \r\nIt\'s been so quite here lately... :([/quote:c5d9eafdfa]\r\n\r\n\r\nSo Joro, just to tell you that Heavenly & I are working hard. Me for the fan club and Heavenly for the fourthcoming album ;)\r\n\r\nWe\'ll post some news soon !\r\n\r\nTake care !\r\n\r\n@Element: welcome !!!'),(772,'e68582eff4','',':cry: \r\n\r\nSHIT!\r\n\r\nFinally!\r\n\r\nI\'ve been using the wrong url for the site apparently. Haven\'t logged in for MONTHS...i think\r\n\r\nOK! the new album.\r\n\r\nI want heavy, I want symphonic. \r\n\r\nI really liked the atmosphere and mood of Dust to Dust. I hope they don\'t stray too far from that. The production gave it a perfect sound too. \r\n\r\nI do need some sick riffage though. \r\nMaybe something acoustic in there somewhere?\r\n\r\nCan\'t wait.'),(775,'8d5e48213c','','for some reason it posted twice. didnt know how to delete it so just editing the pictures out so it doesn\'t consume your screens!'),(776,'d3a3ecfc08','2006 going to be good :)','Shaping up to be a good year :-D\r\n\r\nNew heavenly of course right? :!: :!: :!: \r\n\r\nBlind guardian?\r\n\r\nSymphony X is in the studio.\r\n\r\nFalconer brought Mathias back for vocals and are back in the studio again i think.\r\n\r\nHaven\'t checked recently but I\'m anxious to see what becomes of Nightwish and their new voice :?: :?: :?: \r\n\r\nFreedom call began writing new music last year. So hopefully they\'ll be in the studio this year :-D\r\n\r\nSome may not care but I do. Metallica is writing their new music. Again. Who knows what the hell they\'ll do this time. :idea: :idea: :idea: \r\n\r\nDream evil got a better looking website!!!\r\n\r\noh and....NEW HEAVENLY\r\n\r\n\r\nIf theres anything I forgot to add, I\'m sure theres plenty, enlighten us!'),(774,'8184033f4f','','something a little more up to date.\r\n\r\n[img:8184033f4f]http://myspace-488.vo.llnwd.net/00500/88/49/500839488_l.jpg[/img:8184033f4f]\r\n\r\nI\'m on the left. \r\n\r\nand yeah....\r\n\r\nthat is the laundry room behind me.'),(777,'5df163f41a','','Welcome on board Element_Man :D \r\nEnjoy forum'),(778,'27f7675e67','','[quote:27f7675e67=\"HeavenLio\"][quote:27f7675e67=\"joro410\"]Hey Element_man, welcome to the Heavenly forum! :D Hope you\'ll post here a lot!\r\n \r\nIt\'s been so quite here lately... :([/quote:27f7675e67]\r\n\r\n\r\nSo Joro, just to tell you that Heavenly & I are working hard. Me for the fan club and Heavenly for the fourthcoming album ;)\r\n\r\nWe\'ll post some news soon !\r\n\r\nTake care !\r\n\r\n@Element: welcome !!![/quote:27f7675e67]\r\n\r\nNews.... I like the sound of that! :D'),(779,'b0240a388e','','[quote:b0240a388e=\"Guammer\"]something a little more up to date.\r\n\r\n[img:b0240a388e]http://myspace-488.vo.llnwd.net/00500/88/49/500839488_l.jpg[/img:b0240a388e]\r\n\r\nI\'m on the left. \r\n\r\nand yeah....\r\n\r\nthat is the laundry room behind me.[/quote:b0240a388e]\r\n\r\nLol, I like the wallpaper there! :lol:'),(780,'15a666b358','Re: 2006 going to be good :)','Heavenly, the highlight of the year! 8) \r\n\r\nAnd yes, Symphony X! 4 years since the Odyssey...\r\n\r\nSomething that came already, DragonForce\'s new.\r\n\r\nEnsiferum, Wintersun, Gigantour DVD (Symphony X).......\r\n\r\nAnything else? :?\r\n\r\nHmmm, the Metallica\'s new one can be almost anything...'),(781,'541cf7df72','','Luca turilli\r\nLuca turilli\'s dreamquest\r\nOrden Ogan\r\nFairyland\r\nGrave digger\r\nWintersun\r\nEnsiferum\r\nDomine (I hope)\r\nHuman fortress\r\nRebelliion\r\nAngra (hope so)\r\n many more, I\'ll post soon...'),(782,'9b9f2aa791','','And new Iron Maiden in October :wink:'),(783,'f26d309d83','','[quote:f26d309d83=\"grave-digger\"]Luca turilli\r\nLuca turilli\'s dreamquest\r\nOrden Ogan\r\nFairyland\r\nGrave digger\r\nWintersun\r\nEnsiferum\r\nDomine (I hope)\r\nHuman fortress\r\nRebelliion\r\nAngra (hope so)\r\n many more, I\'ll post soon...[/quote:f26d309d83]\r\n\r\nDamn, I think I need to expand my list of bands, I almost don\'t know a half of these names!!!'),(784,'26931489a0','','The Luca Turilli\'s third solo album is announced for april 26th !!! \r\nCan\'t wait !!!\r\n\r\nHeavenly.... hum ...some news soon :twisted:'),(785,'6da76aafe2','','A :twisted: - smiley doesn\'t mean something evil, I guess :lol: \r\n\r\nyeah, Luca\'s Infinite wonders of creation will be awesome!'),(786,'d76d75d309','','Thats me, taken in the last 15 minutes :wink: \r\n\r\n[URL=http://img238.imageshack.us/my.php?image=ugay0043gb.jpg][img:d76d75d309]http://img238.imageshack.us/img238/414/ugay0043gb.jpg[/img:d76d75d309][/URL]'),(1005,'b7b4304a44','','[quote:b7b4304a44=\"Metal_Mike\"]hey dude\'s I\'m back. I couldn\'t enter the Heavenly homepage for some reason for like... a long time.\r\n\r\nbut now I\'m back to spam! :twisted:[/quote:b7b4304a44]\r\n\r\nOh yes, we need more registered spammers! :D \r\n\r\nYou gotta band? That\'s nice. 8)'),(788,'9acc146fe7','','The new Queensryche album is going to be released next month. So far since it has been \"leaked\" I\'ve heard mixed reviews on it. Here\'s hoping it\'s good!'),(789,'7c09e0b3a2','','Twilightning put out their EP in january entitled \"Bedlam\"\r\n\r\nHopefully we\'ll see a full length album soon.'),(790,'54b42156c9','','damn I always forget to login and turn on autologin. \r\n\r\nAlso forgot to mention...\r\n\r\nTad morose has found their new singer. I like the old one. sort of what tad marose was but whatever. I think they already began work on a new album when that happened so that may be in 2006'),(791,'018406d2da','','rofl\r\n\r\nI\'m certainly thrilled that you\'ve taken a liking to my wallpaper. I think the skillet on the top shelf in the laundry room is what really gives the house the warm atmosphere we strive to achieve though.'),(792,'5349a4140f','','sooo......\r\n\r\n\r\nSince it\'s no secret you guys are in the studio. Can we get a better idea WHEN you\'ll be done?!! :D'),(793,'cb91256480','Ventrilo music broadcast','If anyone uses ventrilo, or even if you don\'t, my server has a channel dedicated to broadcasting some tunes. I find it to be a good alternative to paying additional money for an internet radio station. Legalities? Not sure, don\'t really care either. It\'s for me and my friends to listen to music. If anyone\'s interested in listenin to some or sharin\' some (broadcast, no file transfer) the server info is as follows.\r\n\r\n(client download @ www.ventrilo.com)\r\nserver IP : doom2.nrgservers.net\r\nport: 3501\r\n\r\nIt was going to be a dedicated broadcast but that didn\'t happen. Now you basically have to catch me when i\'m on. Which is usually all the time as long as im home ;) \r\n\r\nGames too :-D\r\nCS:S and DoD primarily. we\'re always lookin for new people to play with :-D'),(794,'f132979c3c','Re: 2006 going to be good :)','[quote:f132979c3c=\"Guammer\"]Haven\'t checked recently but I\'m anxious to see what becomes of Nightwish and their new voice :?: :?: :?:[/quote:f132979c3c]\r\n\r\nInteresting indeed, after all it is T. Holopainen who is the man!'),(1004,'79ed38352f','','They have some average and good songs. They\'re ok.\r\n\r\nThe singer is quite nice... :oops:'),(796,'913d00db5f','','Crimson Thunder, I WANT your t-shirt >_< !!!'),(797,'37c82649de','','Nice shots guys !\r\n\r\nFinally I\'ve find a pic of me online. So, I\'m the guy with Ben on the photo. \r\nSo enjoy ! Now you know my face !\r\n\r\n[img:37c82649de]http://www.heavenly.fr/gallery/24/255.jpg[/img:37c82649de]\r\n\r\nIt was on january, for drums recording session :wink: \r\n\r\nSee you'),(798,'2587bb90c9','','Hi everybody !\r\n\r\nI have a question for you. As you know the new album will arrive soon and we (the band and I) want to know what kind of merch you want about Heavenly?\r\n\r\nI mean items like plectrums, shirts, posters etc.... So let me know !\r\n\r\nSee You'),(799,'32068169d0','','hey hey, \r\n\r\nsome news from the Fan club girls and boys:\r\n\r\nI\'m working on the Promised land n°2 ! (fan club\'s fanzine)... I have wrote 12 pages at this point of time. I\'ve got so many shots etc.... \r\n\r\nAlso working on the new fan club website... and on other things :wink: \r\n\r\nTake care'),(800,'b93695e488','','small shirt ;)'),(801,'3927581164','','Heh, from the looks of ^this pic^ it seems that Ben isn\'t too relaxed when he\'s been filmed. :D\r\n\r\nSpeaking of filming, are you guys doing some studio diary or something with that videocam? Would be nice!'),(802,'1f9dd183f8','','Shirts of course and... umm... that\'ll do for now. :?\r\n\r\n100th post!!! 8)'),(803,'0d9bacd619','','Okay, that sounds very good. Try to do a promised Land as good as the first one :wink:'),(804,'38050e638e','','Shirt, posters and I\'d like very much stickers :wink: .\r\n\r\nThanks for asking !!! :D'),(805,'c59529948a','','I\'d go for a decent T-shirt, and/or posters. I like the current black T-shirt with the logo, but an album art one would own.'),(806,'9b55e07cf4','','Hoody!!! I\'d like one with the heavenly logo big on the front and the artwork on the back.'),(807,'86d944ce2c','','Shirts and longsleeves of course :wink: 8)'),(808,'2aef99979c','','[quote:2aef99979c=\"SquallSaga\"]Crimson Thunder, I WANT your t-shirt >_< !!![/quote:2aef99979c]\r\n\r\nLOL....glad you like it....ehm....maybe I could send you pics of that :wink: :lol:'),(809,'3b91800ab1','','I hope it will be soon 8)'),(810,'da82de8ee8','','[quote:da82de8ee8=\"Guammer\"]damn I always forget to login and turn on autologin. \r\n\r\nAlso forgot to mention...\r\n\r\nTad morose has found their new singer. I like the old one. sort of what tad marose was but whatever. I think they already began work on a new album when that happened so that may be in 2006[/quote:da82de8ee8]\r\n\r\nReally? I´ll need to check their web. Anyway Urban breed now sings in Bloodbound, another heavy/power metal band from Sweden (from Bollnäs). They sound great though they look like black metalers. \r\nwww.bloodbound.se\r\n\r\nOh and how about new DIO? They write new material. I hope they will release new CD this year 8)'),(811,'8628ffc14c','','[quote:8628ffc14c=\"joro410\"]Heh, from the looks of ^this pic^ it seems that Ben isn\'t too relaxed when he\'s been filmed. :D\r\n\r\nSpeaking of filming, are you guys doing some studio diary or something with that videocam? Would be nice![/quote:8628ffc14c]\r\n\r\nYes I have wrote a studio report but it will be available on the Promised land \' fanzine n°2 .... the fan club members got some advantages :)'),(812,'a45cb902d6','','[quote:a45cb902d6=\"Crimson_Thunder\"]They sound great though they look like black metalers. \r\nwww.bloodbound.se[/quote:a45cb902d6]\r\n\r\nWhou! Those masks really bluffed me! :o'),(972,'de25535632','','[quote:de25535632=\"V\"]Kingdom Come, Time Machine, Destiny...[/quote:de25535632]\r\n\r\nI\'m not sure what I posted if/when I answered this one but if I had to pick from each album those 3 definately are of the first that come to mind. Dust to Dust is a hard one though because all the songs are equally mind blowing just like kingdom come ;)\r\n\r\nRiding through hell is also on top from it\'s album.'),(973,'9a6f04e9c4','','Finally something better on their album cover.'),(974,'874ff22fd6','','Welcome V :-D\r\n\r\ngood to see more heavenly fans :-D'),(975,'eeafe24bae','','There\'s one thing about Heavenly, too. At the moment they don\'t have the best record label or deal IMO. \r\nDuring the last few years Heavenly hasn\'t been touring much, of course they\'ve been doing their albums, but their label should help them more.\r\n\r\nHere in Finland there are way too many power bands and it feels like they aren\'t bringing anything new, but some are doing well abroad. \r\nThe metal scene is almost dominating the whole country!\r\n\r\nHeavenly\'s great music isn\'t reaching enough people. When they finished \"Dust to Dust\" they had only one performance in 2004. \r\nDon\'t know what\'s the reason but I think they would\'ve deserved more...'),(976,'00ebb0ea03','','More news and updates are welcome. :wink:'),(977,'e54959124c','','I haven\'t answered to this at all, cause all of the songs rule!\r\n\r\nActually I think there aren\'t any weak songs. :roll:'),(978,'a45d845439','','Welcome indeed V.\r\n\r\nSpread the word in Spain! :wink:'),(979,'cff08e6a6d','','This tab is just incredible, just like your other tabs! :wink: \r\n\r\nI didn\'t notice any mistakes, I\'m so speechless... :o \r\n\r\nThank you very much! Hope to see more Heavenly stuff! :D'),(980,'0126e6c352','','Hail to you V :wink: \r\n\r\nGreat to see new member round here :wink:'),(981,'a5f9ba06df','','Hey hey, more news will come soon. Take care\r\n\r\nFor the forum one thing is sure: on the Fan club forum (available soon) all the unregistered guys couldn\'t posts any message !!!!\r\n\r\nAnd I\'ll be an administrator.... See you\r\n\r\n@charley: what\'s up man?'),(982,'98687526dd','','Thanks guys, good people here ;) Heavenly is very famous in Spain (well, a great sector in Spain). See you ^_^'),(983,'46649d18a6','','thanks! :P'),(984,'f87f839e2e','NEW HEAVENLY TAB!','\"Miracle\" tab is now available at:\r\n\r\nhttp://www.mysongbook.com/tab-tab_list-id_tablature=63722.htm'),(985,'8034322175','','fett bra!! :D'),(986,'6537cb7905','','You gotta check out this tab!\r\n\r\nDet är ett mästerligt verk! Heja Sverige! :wink:'),(987,'295b739f1a','','its true. there really isnt. you can\'t say that about everyone'),(988,'4c2a41084d','','Heavenly\'s calibur of music DEFINATELY has potential for them to become something huge but like you said they haven\'t gotten around much. When they do they probably have alot to look forward to. I do think that extra time in the studio is good. I think production is too important to slack on. Even if it means less tour time.\r\n\r\nOf course I\'d like to see any band tour more I think they\'re doin just fine the way they are for now. Their releases to date are incredible and it will give all their new found fans alot to appreciate once they do pick up new fans touring.'),(989,'ddda4ed4d1','','Of course, \"The Dark Memories\" MUST be a Heavenly song, it\'s Ben\'s voice... no doubt about it!\r\n\r\nSo now, anymore news? May is coming soon, and the \"Who-are-you-Heavenly\" album is supposed to be released in May! :lol:'),(990,'6893151470','','Azrael and Galneryus : Japanese power metal at its best!! :P'),(991,'5b51e48681','','I think the release date will be somewhere around summer.\r\n\r\nThere\'s also a cover song on the new album. I bet they\'re doing some Helloween song.'),(992,'fb18973e53','','Ben you were 17 when you composed Miracle? :shock: \r\n\r\nfrom here and on you are my biggest idol.... *bows*\r\n\r\nI am also coompising a lot. Hopefully I\'ll reach your level sometime....\r\n\r\n\r\n\r\n\r\n... maybe not :roll:'),(993,'59cf69a729','','Hey, Metal_Mike! 8) Haven\'t seen you here in a while.\r\n\r\nHur mår du? :wink: Swedish rules!\r\n\r\nI\'m the biggest Ben-fan here! :twisted:'),(994,'9eff4078b8','','hey joro!\r\n\r\nWell thing is I couldn\'t enter Heavenly\'s homepage :? I still can\'t...\r\nBut well, Holy_Thunder linked me to the forums again so I once again could be here! :) \r\n\r\nSo I\'m good. I am going full speed with my band if anyone cared about that :roll: \r\n\r\nbut this is Ben\'s place, so I won\'t talk about me...\r\n\r\nGo Ben woohoo! 8)'),(995,'7c538c1ae6','Evanescence','I don\'t know if you like Ev and I don\'t want to debate. (me? Well I love! :lol: )\r\n\r\nIt\'s just to say that the new album is called \"The Open Door\" and will be released in September... :arrow:'),(996,'d882052e9e','','hey dude\'s I\'m back. I couldn\'t enter the Heavenly homepage for some reason for like... a long time.\r\n\r\nbut now I\'m back to spam! :twisted:'),(997,'ce8a4a9a1c','','how feckin\' fast are you? :evil: \r\n\r\ngreat work man 8)'),(998,'39ee28137f','','I didn\'t have time to see this page... What was there?'),(999,'125c97a29a','','What a voice!! It\'s...high, very high.\r\nI love the music and the singer is cool but I couldn\'t hear him every day! :lol:'),(1000,'a6388df5db','','they are ok, not even near the same class as Heavenly though.'),(1001,'12fefe9ecc','','He had started it many months ago, but finished it in a week or so.\r\n\r\nSo yeah, he is fast. :o'),(1002,'1a5117ed2c','','[quote:1a5117ed2c=\"joe54\"]I didn\'t have time to see this page... What was there?[/quote:1a5117ed2c]\r\n\r\nIt was just a typical band profile with some songs available for listening.'),(1003,'b9bb5c9c18','','[quote:b9bb5c9c18=\"joe54\"]What a voice!! It\'s...high, very high.\r\nI love the music and the singer is cool but I couldn\'t hear him every day! :lol:[/quote:b9bb5c9c18]\r\n\r\nYes, his voice is TOO high... :?'),(814,'8aea38d8d6','','Speaking of Nightwish, here\'s a video of them performing \"Ghost Love Score\" live. :D\r\n\r\nhttp://www.youtube.com/watch?v=C8GOHJAnVh4&search=Ghost%20Love%20Score'),(816,'4999dfb297','','Jesus, I just can\'t stop laughing! :D \r\n\r\nhttp://video.google.com/videoplay?docid=-7723207332582625596&q=holy+diver'),(818,'a3cf916dce','','Hi everybody !!! \r\n\r\nDo you feel all right ??? \r\n\r\nJust back from the south of France where I just finished to record my rythm guitar sessions ... \r\n\r\nI\'m still working on my solozzz ... that I\'ll record later ... \r\n\r\nA first idea of the album ? \r\n\r\nMmmmhmmm ... do you like heavy speed metal with big balls ? 8) \r\n\r\nAre you a creazy headbanger ? :twisted: \r\n\r\nDo you like hot leather ? :mrgreen: \r\n\r\nSo if you answered more than \"1 yes\" to this questions, believe me, you\'ll be creazy about this album !!! \r\n\r\nAs I always say : :twisted: BIG THRILLS FOR SURE !!! :twisted: \r\n\r\nI\'ll keep you informed ... \r\n\r\nYour worst friend ... Charley'),(819,'12cfd1ae95','','Great news Charley guy 8) Can\'t wait and it doesn\'t seem sooo far anymore!\r\nI can respond with: 2 Yes (not the last one :lol: ).\r\n\r\nBut: What about the orchestration, your news made me sooo happy ? :D'),(820,'e0727cdfc9','','So now we have the drums, and at least a part of the guitars.\r\n\r\nWaiting for some fancy solos!'),(821,'c601003ee3','','And for amazing vocals, high and strong :wink:'),(968,'4255166232','','Kingdom Come, Time Machine, Destiny...'),(969,'1b0193d255','','[img:1b0193d255]http://www.rage-on.de/images/cd_cover/cover_speak.jpg[/img:1b0193d255]\r\n\r\nAlbum of the year, amazing.'),(970,'70a4256373','','hey so we got to see some pictures of Ben and Tom in the studio. When can we have some more? or even a finished album or somethin.'),(971,'33ad3e57a2','I\'ve been thinking... :evil:','Power metal, and music like it isn\'t exactly popular where I\'m from but there are a handful of bands with amazing potential and great ability to compose music I\'ve stumbled across from around here that are really getting the shit end of the stick being over here. Music like this isn\'t exactly catered to nor accepted often times and I think alot of good bands and musicians, as well as their would be fans and listeners are really missing out.\r\n\r\nI try not to be too too biased in what I listen to so you will find me throwing a few get-a-buck bands into the mix. Bands that manage to go above and beyond the rest of the carbon copy bands out there. Sadly those seem to be the only musicians getting the proper attention and opportunity to do their compositions justice along the lines of production in U.S. \r\n\r\nI guess this is just a rant but everytime I come across one of these bands I almost feel bad for them because I know, even if they\'re not the best, they have the ability to write completely enjoyable and effective music but just have a shitty deal and come off with shit production and won\'t go anywhere. Of course theres alot of bands that are in fact shit so it\'s nothing to me if I never hear more from them again but often I realize that I just may miss out when I hear something I like but they just didn\'t have the opportunity to take it to the next level and write some loud, professional, mind blowing music!\r\n\r\nI\'m done bitchin\' I guess. Anyone else ever feel that way? :evil: :!:'),(823,'586b1708c6','','Great news Charley. :wink: \r\nRock on Alligators :twisted:'),(824,'419327f841','Your CDs','Submit here the list of the metal/rock CDs you\'ve got! :wink: \r\n\r\nI\'ll start:\r\n\r\nDragonForce - Valley of the Damned\r\nDragonForce - Sonic Firestorm\r\nDragonForce - Inhuman Rampage\r\nEnsiferum - s/t\r\nEnsiferum - Dragonheads\r\nHammerfall - Blood Bound SINGLE\r\nHeavenly - Coming from the Sky DEMO\r\nHeavenly - Coming from the Sky\r\nHeavenly - Sign of the Winner\r\nHeavenly - Dust to Dust\r\nIron Savior - Unification\r\nKamelot - Karma\r\nThunderstone - Tool of the Devil SINGLE\r\nWintersun - s/t\r\n\r\nHmm... it\'s quite short and not so versatile, but I\'m just a beginner! :P \r\n\r\nI\'m sure any of you have longer lists!'),(825,'a4fef6e1b1','','Yeah, it would take hours to give them all.... Maybe only the ones which are dedicaced ? :D \r\n\r\nBy the way, you\'ve a short, but nice list, and it\'ll spread in a close future I think ^^'),(826,'c0413e680d','','Adagio - Sanctus Ignis\r\nAdagio - Underworld\r\nAina - Days of Rising Doom \r\nAngra - Angels Cry\r\nAngra - Fireworks\r\nAngra - Temple Of Shadows \r\nAvantasia - The Metal Opera Pt. I\r\nAyreon - Actual Fantasy: Revisited\r\nBon Jovi - New Jersey\r\nDef Leppard - Rock of Ages: The Definitive Collection\r\nDerek Sherinian - Black Utopia\r\nDream Theater - A Change of Seasons\r\nDream Theater - Awake\r\nDream Theater - Images & Words\r\nDream Theater - Metropolis Pt. 2: Scenes From A Memory \r\nDream Theater - Live Scenes From New York\r\nDream Theater - Six Degrees of Inner Turbulence\r\nDream Theater - Train of Thought\r\nDream Theater - Octavarium\r\nDream Theater - When Dream And Day Unite\r\nEdguy - Hellfire Club\r\nEdguy - Theater of Salvation\r\nElegy - Forbidden Fruit\r\nEvergrey - In Search of Truth\r\nFates Warning - Disconnected\r\nGalloglass - Legends From Now And Nevermore\r\nGamma Ray - Blast From The Past\r\nHeavenly - Dust To Dust\r\nHeavenly - Sign Of The Winner\r\nHeavenly - Coming From The Sky\r\nIced Earth - Horror Show\r\nJourney - Time 3 (Box Set)\r\nKamelot - Epica (Limited Edition)\r\nKamelot - Karma\r\nKamelot - The Black Halo\r\nKamelot - The Fourth Legacy\r\nTimo Kotipelto - Coldness\r\nTimo Kotipelto - Waiting For The Dawn\r\nLabyrinth - Labyrinth\r\nMetallica - S&M\r\nNightwish - Angels Fall First\r\nNightwish - Oceanborn\r\nNightwish - Wishmaster\r\nNightwish - Over The Hills And Far Away\r\nNightwish - Century Child\r\nNightwish - Once \r\nOSI - OSI\r\nPagan’s Mind - Celestial Entrance\r\nPlanet X - Live From Oz\r\nPlanet X - Moonbabies\r\nPorcupine Tree - In Absentia\r\nQueensryche - EP\r\nQueensryche - The Warning\r\nQueensryche - Rage For Order\r\nQueensryche - Operation: Mindcrime\r\nQueensryche - Empire\r\nQueensryche - Promised Land\r\nQueensryche - Hear In The Now Frontier\r\nQueensryche - Operation: LIVEcrime\r\nQueensryche - Live Evolution\r\nQueensryche - Q2K\r\nQueensryche - Tribe\r\nRhapsody - Power of the Dragonflame\r\nRhapsody - Symphony of Enchanted Lands II - The Dark Secret\r\nRoyal Hunt - The Watchers\r\nRoyal Hunt - Paradox\r\nRoyal Hunt - The Mission\r\nSecret Sphere - A Time Never Come\r\nShadow Gallery - Tyranny\r\nShadow Gallery - Room V\r\nSonata Arctica - Ecliptica\r\nSonata Arctica - Silence\r\nSonata Arctica - Winterheart’s Guild\r\nSonata Arctica - Reckoning Night\r\nSpock’s Beard - Snow\r\nStar One - Live On Earth\r\nStratovarius - Intermission\r\nStratovarius - Elements Pt. 1\r\nStratovarius - Elements Pt. 2\r\nStratovarius - Stratovarius\r\nStratovarius - Visions\r\nSymphony X - Symphony X\r\nSymphony X - The Divine Wings of Tragedy\r\nSymphony X - Twilight On Olympus\r\nSymphony X - V\r\nSymphony X - Live On The Edge Of Forever\r\nSymphony X - The Odyssey\r\nGeoff Tate - Geoff Tate\r\nTen - The Robe/Bonus Collection\r\nTen - Babylon\r\nThreshold - Psychedelicatessen \r\nThreshold - Extinct Instinct\r\nThreshold - Critical Mass\r\nTime Requiem - The Inner Circle Of Reality\r\nTrans-Siberian Orchestra- Christmas Eve And Other Stories\r\nTrans-Siberian Orchestra - The Christmas Attic\r\nTrans-Siberian Orchestra - The Lost Christmas Eve\r\nVanden Plas - Colour Temple\r\nVanden Plas - AcCult\r\nVanden Plas - Far Off Grace\r\nVanden Plas - The God Thing\r\nVanden Plas - Beyond Daylight'),(827,'eaf7a1477c','','Atheist: Piece of Time\r\n- Unquestional Presence\r\n- Elements (All 3 are the remastered ones)\r\nAvantasia: The Metal Opera part 2\r\nAt Vance: Dragonchaser\r\nBlind Guardian: Nightfall in Middle Earth\r\n- Imanginations from the Other Side\r\n- A Night at the Opera\r\n- Imaginations through the Looking Glass DVD\r\nBrainstorm: Soul Temptation\r\nChildren of Bodom: Something Wild\r\n- Hatebreeder\r\nDragonforce: Valley of the Damned\r\nDragonland: Battle of the Ivory Plains\r\n- Holy War\r\n- Starfall\r\nDragonlord: Rature\r\nFairyland: Of Wars in Osyrhia\r\nFalconer: S/T\r\n- Tales from a Vale Forlorn\r\n- Grime vs. Grandeur\r\nFlotsam & Jetsam: No Place for Disgrace\r\nGamma Ray: No World Order\r\nHammerfall: Crimson Thunder\r\nHeavenly: Sign of the Winner\r\n- Dust to Dust\r\nHelloween: The Dark Ride\r\n- Keeper of Seven Keys: The Legacy\r\n- Rabbit don\'t come Easy\r\nIced Earth: Night of the Stormrider\r\n- Horror Show\r\n- Blessed and the Damned\r\nIcewind: Inner Storm EP\r\nJag Panzer: Casting the Stones\r\nKalmah: Swamplord\r\n- They Will Return\r\n- Swampsong\r\n- The Black Watlz\r\nKamelot: The Black Halo\r\nKiuas: Winter in June EP\r\n- Spirit of Ukko\r\nStratovarius: Infinite\r\nNorther: Death Unlimited\r\n- Solution 7 EP\r\nNocturnal Rites: Shadowland\r\nRhapsody: Legendary Tales\r\n- Symphony of Enchanted Lands\r\n- Dawn of Victory\r\n- Rain of a Thousand Flames (EP my ass)\r\n- Power of the Dragonflame\r\n- Symphony of Enchanted Lands 2\r\n- Tales from the Emerald Sword Saga\r\nRunning Wild: Under Jolly Roger\r\nStormwarrior: Nothern Rage\r\nSymphorce: Twice Second\r\nThy Majestie: Hastings\r\nWinters Bane: Heart of a Killer (Original!)\r\nHeart of a Killer (Rerelease)\r\nSavatage: Gutter Ballet\r\nFates Warning: Awaken the Guardian\r\nMercenary: 11 Dreams\r\n\r\nFolk/VIking:\r\nElvenking: Heathenreel\r\n- Winter Wake\r\nHoly Blood: Waves are Dancing\r\nEnsiferum: S/T\r\n- Iron\r\nEquilibirum: Something I can\'t remember how to spell\r\nFalchion: Legacy of Heathens\r\nTyr: Eric the Red\r\nTurisas: Battle Metal\r\n\r\nThat about covers it.'),(829,'27b6b27352','','Welcome element man!\r\n\r\nI agree with grave-digger : I just want the album ASAP!!!!'),(830,'fe32432a7b','','That\'s what I think : :lol: :lol: :lol: :lol:'),(831,'df806f992c','',':o :shock: :shock: :shock: \r\n\r\nwhouhou!!! I\'m impressed!!\r\n\r\nI will not make a list of mine cause I\'ll be ridiculous!'),(832,'f37a1257af','','The battle : Crimsom vs Joro : 106 - 105 posts'),(833,'78654c0ccf','','Ha ha! Now we\'re equal! 8)'),(834,'a46b0dd099','','[quote:a46b0dd099=\"SquallSaga\"]By the way, you\'ve a short, but nice list, and it\'ll spread in a close future I think ^^[/quote:a46b0dd099]\r\n\r\nIt will :) \r\n\r\n[quote:a46b0dd099=\"EFXF\"]Symphony X - Symphony X \r\nSymphony X - The Divine Wings of Tragedy \r\nSymphony X - Twilight On Olympus \r\nSymphony X - V \r\nSymphony X - Live On The Edge Of Forever \r\nSymphony X - The Odyssey[/quote:a46b0dd099]\r\n\r\nEven though I\'m a huge fan of SymX I don\'t any of their CDs! I gotta get each and everyone of these!\r\n\r\n[quote:a46b0dd099=\"joe54\"]I will not make a list of mine cause I\'ll be ridiculous![/quote:a46b0dd099]\r\n\r\nOh, come on! It can\'t be that terrible! :D :roll:'),(835,'18949b15fd','','So, I have more than 500 cds. I can\'t make a list it will be too long. \r\n\r\nFor the signed CDs (as squall saga said) it\'s the same thing, I\'ve got more than 100 signed cds.... so sorry.\r\n\r\nBut to give you some informations I\'ve got cds (incomplete) of: Heavenly, Rhapsody, Luca Turilli, Vision divine, Hammerfall, Gamma ray, Helloween, Nightwish, Dragonforce, Pwer Quest, Angra, Sonata arctica, Freedom call, Shaman, Y.J.malmsteen, Inner Visions, Royal Hunt, Mago de Oz, Twilight guardians, Stratovarius, Kamelot, Axxis, Elvenking, Tierra Santa, Arch enemy, Turisas, Place Vendome, Soul Sirkus, Talisman, Fairyland and many more....'),(836,'474b102d3a','','Okay, maybe it\'ll be enough when only the names of the artists are mentioned.\r\n\r\nWow, I didn\'t realize that people have so much CDs! :shock: \r\n\r\n@HeavenLio, is Turisas worth buying? I\'ve heard a few songs off Battle Metal.'),(837,'33122d3898','','Hey man you´ve beat me now :wink: \r\nBut come on.....it´s not about our postcounts :wink:'),(838,'efcea129c9','','But I wanna be the best!!! :x :evil: \r\n\r\nNah, just kidding... :wink:'),(966,'f6c2b09bc6','','An album like Sign of the winner...\r\n\r\nHello from Spain ;)'),(967,'633afb6b8c','','[quote:633afb6b8c=\"Far\"]Spain here![/quote:633afb6b8c]\r\n\r\n¡Yo también!\r\n\r\nEh...\r\n\r\nMe too! :lol:'),(840,'677028afbb','','I agree, listening to it now the song is pretty awesome.\r\n\r\n\r\nIt sounds quite like Ben and the accent does sound a little french, but i\'m not entirely convinced.\r\n\r\nThe overall style sounds like Heavenly\r\n\r\nhmmm'),(841,'140171fbbb','','I think it would be hard to top Dust to Dust - it was so awesome!! I agree that they\'re starting to find a signature sound. I\'d probably be happy with anything that Heavenly came out with though..'),(842,'7b69aef75f','','[quote:7b69aef75f=\"Guammer\"]I gave my copy of Dust to Dust to be drawn up for my tattoo and never received any reply. So no tattoo, and no more Dust to Dust. need to order a new cd and find a new tattoo artist. \r\n\r\nAlso will be getting Sign of the Winner angel.[/quote:7b69aef75f]\r\n\r\nYou should only have given him the cover :p\r\n\r\nHe probably thought the CD was so awesome that he kept it for himself :D'),(843,'0c804acf5a','','I\'d never heard of them until I saw them live supporting Dragonforce in Camden about 2 years ago -- I thought they were pretty naff at the time. Not long after that I happened to be on holiday in France when I saw Dust to Dust in the shop.\r\n\r\nI bought it and nearly came when I first listened to it. Since then, there has been no turning back.'),(844,'0e86271d14','','[quote:0e86271d14=\"ShadoWraith\"]I\'d never heard of them until I saw them live supporting Dragonforce in Camden about 2 years ago -- I thought they were pretty naff at the time. Not long after that I happened to be on holiday in France when I saw Dust to Dust in the shop.\r\n\r\nI bought it and nearly came when I first listened to it. Since then, there has been no turning back.[/quote:0e86271d14]\r\n\r\nWow, must have been cool to see them both live! I can only dream of that... :cry:'),(845,'ad6c4990f5','','it\'d be cool if he invested that time into making something worthwhile'),(846,'0eaf7c122f','','youtube.com is amazing. I can sit there for hours watching all kinds of great shit'),(847,'a9bce42b2f','','Hot balls!\r\nCrazy Leather!\r\nBig Head!\r\nSpeedbang!\r\nYES SOLOZZZZ\r\n GO GO GO!'),(848,'700196f3d4','','Turisas is realy good. Their songs are amazing, if you can get the album, buy it of course. :wink:'),(850,'94e04321b1','','OK you´re best.....but I´ll beat ya :lol: :lol: :lol: :lol: :lol: \r\n\r\nKidding too :wink:'),(851,'f13dea5f6d','','Turisas is freakin\' sweet, man. If you\'re into the whole epic/viking thing, then it\'ll become one of your favourite CDs, methinks. \r\n\r\nEDIT: Added Turisas: Battle Metal to my list. Forogt it.'),(852,'fadd480be0','','NEW DRAGONLAND IN 2006.\r\n\r\nThat is all.'),(853,'3a4ac3bdc3','','Thanks for the weclomes and stuff. :)'),(854,'0381d22036','','I discovered them in 2002 (Like my sig says) when I was chatting with a power metal buddy of mine from France over MSN. \r\nHe says:\r\n\"Freedom call kicks ass\"\r\nI\'m like:\r\n\"They bore me\"\r\nHe\'s goes:\r\n\"Whatever, you\'ll probably dislike Heavenly then\"\r\nI say:\r\n\"Send me a song\"\r\n\"k\"\r\n*He sends me \'The world will me Better\'*\r\n\"...\"\r\n\"This fucking rules, dude.\"\r\n\"Oh. Cool\"\r\n\r\nAnd that\'s about it.'),(855,'1ce0e61adc','','I like those things.\r\n\r\nHurry up Charley! I want the new album NOW dammit! we\'ve waited for long enough.\r\n\r\nAlso, wasn\'t there a mention of a cover in the news section? \r\n\r\ncould be good :)'),(856,'a97d61a0a8','','Off the top of my head I\'ve got:\r\n\r\n\r\nA Perfect Circle - Mer de Noms\r\nA Perfect Circle - Thirteenth Step\r\nAC/DC - All of them\r\nAlice Cooper - Classiks\r\nAlice Cooper - The Definitive Alice Cooper\r\nAndrew WK - I Get Wet\r\nAngel Witch - Angel Witch\r\nAnthrax - We\'ve Come For You All\r\nAnthrax - Summer 2003\r\nBlack Sabbath - All of them\r\nBlaze - Tenth Dimension\r\nBlaze - Silicon Messiah\r\nBlaze - As Live as it Gets\r\nBlaze - Blood and Belief\r\nBruce Dickinson - Chemical Wedding\r\nDio - Holy Diver\r\nDragonforce - All of them\r\nDream Evil - Evilized\r\nDream Theater - Images and Words\r\nDream Theater - Scenes from a Memory\r\nDream Theater - A Change of Seasons\r\nDream Theater - Train of Thought\r\nFoo Fighters - All of Them\r\nGamma Ray - No World Order\r\nHeavenly - Dust to Dust\r\nHeavenly - Coming from the Sky\r\nHelloween - Walls of Jericho + Helloween E.P.\r\nHelloween - Keeper 2\r\nHelloween - Pink Bubbles Go Ape\r\nHelloween - Master of the Rings\r\nHelloween - High Live\r\nHelloween - The Time of The Oath\r\nHelloween - Rabbit Don\'t Come Easy\r\nHelloween - Keeper - The Legacy\r\nIced Earth - The Dark Saga\r\nIced Earth - Something Wicked This Way Comes\r\nIced Earth - Alive in Athens\r\nIced Earth - Horror Show\r\nInMe (yes I know, they\'re grunge) - Overgrown Eden\r\nInMe - White Butterfly \r\nIron Maiden - All of them, Every Official release minus about 2 obscure/rare tracks.\r\nKamelot - Epica\r\nKamelot - The Black Halo\r\nKyuss - Welcome to Sky Valley\r\nKyuss - Blues for the Red Sun\r\nLed Zeppelin - II\r\nLed Zeppelin - IV\r\nManowar - Battle Hymns\r\nManowar - Sign of the Hammer\r\nManowar - The Triumph of Steel\r\nManowar - Louder Than Hell\r\nMD.45 - The Craving\r\nMegadeth - All of Them\r\nMetallica - The first 5\r\nMotorhead - Ace of Spades\r\nMuse - Origin of Symmetry\r\nMuse - Absolution\r\nNightwish - Wishmaster\r\nNightwish - Once\r\nNine Inch Nails - Pretty Hate Machine\r\nNine Inch Nails - Broken\r\nNine Inch Nails - The Downward Spiral\r\nNine Inch Nails - The Fragile\r\nNine Inch Nails - With Teeth\r\nOpeth - Morningrise\r\nOpeth - Still Life\r\nOpeth - Ghost Reveries\r\nOzzy Osbourne - Down to Earth\r\nQueens of The Stone Age - All of them\r\nRainbow - Rising\r\nRhapsody - Symphony of Enchanted Lands\r\nRob Zombie - Hellbilly Deluxe\r\nRob Zombie - The Sinister Urge\r\nSteve Vai - Passion and Warfare\r\nSteve Vai - Sex & Religion\r\nSteve Vai - Alien Love Secrets\r\nSymphony X - The Divine Wings of Tragedy\r\nSymphony X - Twilight in Olympus\r\nSymphony X - The Odyssey\r\nType O Negative - All of them\r\nVelvet Revolver - Contraband\r\nViking Skull - Chapter One\r\nViking Skull - Born in Hell\r\nW.A.S.P - W.A.S.P\r\nW.A.S.P - The Last Command\r\nW.A.S.P - The Crimson Idol\r\nW.A.S.P - The Neon God - The Rise\r\nW.A.S.P - The Neon God - The Demise\r\nYes - 90215\r\n\r\nFear my brilliant taste in music'),(857,'edbef9ad95','','Shit Stratovarius will play in my hometown :D :D :D \r\nI think I´ll go insane I am so happy......I can´t wait till 2nd June :D'),(858,'fcf3e767f3','','The new Strato is pure rubbish compared to the old one.'),(859,'b614b64fb5','','Uhh, I\'m so scared! :o \r\n\r\nHey, you\'re missing \"Sign of the Winner\"!'),(860,'24a477727c','','This is Heavenly and this is a godly song\r\nNow i\'m waiting for the next album even more'),(861,'0e69d5b5fb','','Hey ShadoWraith! \r\n\r\nWhere is Sign of the winner ? :evil:'),(862,'9be4902574','','Welcome on the board. Our family is growing :D'),(863,'3857b33be4','','I don´t think so....anyway I won´t will be there....it´s such opportunity :D'),(864,'29e8eb9c79','','Well, I didn\'t like the new songs and sure they\'ll be playing the older songs too.\r\n\r\nI\'d go to a Strato gig just cause I wanna see a God behind the keyboards, JENS JOHANSSON!!! 8)'),(865,'e54db94a04','','I\'ve not bought it yet alright?\r\n\r\nI will add it to my shopping list now you\'ve mentioned it.\r\n\r\nEdit: I\'ve just ordered it now. Happy?'),(866,'5103437687','','Ok. It blatently is Heavenly.\r\n\r\n\r\nIf thats just a demo, I cant wait for the final version'),(867,'ee5d854b41','','Ooh, that song is awesome. *clicks*\r\n\r\nConquest of Steel - this friday\r\nTurisas gig in April\r\nBlind Guardian gig in September, not to mention their new album.\r\nIron Maiden gig in December\r\nplus the new Maiden album\r\n\r\nI\'m not entirely sure but I think Dio are releasing a Live DVD. Don\'t quote me on that though\r\n\r\nThen theres the new BLAZE album in the works which i\'m... mildly looking forward too\r\n\r\nNew Megadeth DVD.\r\n\r\nIs the Helloween Live DVD coming out this year? They are doing one but I\'ve got no idea when its coming out.\r\n\r\nManowar on tour *crosses fingers and hopes they come to England* And they\'ve got a new album out.\r\n\r\nSo much to look forward to :)'),(868,'2e9a5ab5d2','','I\'m not happy coz you haven\'t ordered it at the fan club ! :( :( :( \r\n\r\nSo that\'s cool for you to get the SOTW album !\r\n\r\nSorry for the log but I\'m not on my computer (HeavenLio)'),(869,'6a823725b4','','[quote:6a823725b4=\"Crimson_Thunder\"]Welcome on the board. Our family is growing :D[/quote:6a823725b4]\r\n\r\nThanks.\r\nDust to Dust has been my favorite album for a few months now.\r\nI can\'t stop listening to it'),(870,'b8cbcbaa68','','whoa, the dark memories is a good song'),(871,'408676d21a','','It\'s funny though how there isn\'t any official announcement about that.\r\n\r\nAnd what heck is that who-are-you.org anyway!?'),(872,'4f829fa467','','I still don´t know if it is Heavenly´s song or not. It sounds like Heavenly but I think that it Heavenly would put that song on their website.'),(873,'fc6e00bb70','','[quote:fc6e00bb70=\"joro410\"]Well, I didn\'t like the new songs and sure they\'ll be playing the older songs too.\r\n\r\nI\'d go to a Strato gig just cause I wanna see a God behind the keyboards, JENS JOHANSSON!!! 8)[/quote:fc6e00bb70]\r\n\r\nOf course :D Jens rules 8)'),(874,'cef4a9657c','','I\'m 100% sure it\'s Heavenly\'s, no doubt about it.'),(875,'b1feb0f700','','I agree\r\n100% Heavenly\r\nCan\'t be anything else.\r\n\r\nAnd I can\'t stop listening to it.\r\nAt least 5 times everyday now.'),(876,'c88c52e13f','','[quote:c88c52e13f=\"joro410\"]I\'m 100% sure it\'s Heavenly\'s, no doubt about it.[/quote:c88c52e13f]\r\n\r\nWhy it is on some other page then? Maybe they will open new website 8)'),(877,'703c385093','','[quote:703c385093=\"Crimson_Thunder\"][quote:703c385093=\"joro410\"]I\'m 100% sure it\'s Heavenly\'s, no doubt about it.[/quote:703c385093]\r\n\r\nWhy it is on some other page then? Maybe they will open new website 8)[/quote:703c385093]\r\n\r\nNew website would be great cause the current site is down every now then. \r\n\r\nMaybe it\'ll be a surprise!!! Something exciting! :o'),(886,'54030348b1','','[quote:54030348b1=\"ShadoWraith\"]Ooh, that song is awesome. *clicks*\r\n\r\n\r\nI\'m not entirely sure but I think Dio are releasing a Live DVD. Don\'t quote me on that though\r\n\r\n[/quote:54030348b1]\r\n\r\nI\'m going to quote you directly. Watch what you say!'),(887,'f92151f530','','Luca Turilli\'s new album \"The infinite wonders of creation\" is incredible awesome! Dreamquest isn\'t my kind of music...'),(888,'ebeff5d57e','','I don\'t like very much female singer in metal music..... so..... :?'),(889,'11cc167779','','[quote:11cc167779=\"SquallSaga\"]I don\'t like very much female singer in metal music..... so..... :?[/quote:11cc167779]\r\n\r\n... so? But Nightwish ain\'t bad.'),(890,'203bc16e27','','http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=53736132\r\n\r\nis this the official Heavenly on myspace? I added but I wasn\'t sure.'),(891,'1917611efd','IMPOSTERS?! or is it really you?','http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=53736132'),(892,'c3e183ef6c','','shit\r\n\r\nI am doomed for forget logging in on this forum....'),(893,'a55e306803','','At least the site looks quite believable... Would be a great way of getting new fans.'),(894,'9d16ad64fd','','[quote:9d16ad64fd=\"Anonymous\"]http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=53736132\r\n\r\nis this the official Heavenly on myspace? I added but I wasn\'t sure.[/quote:9d16ad64fd]\r\n\r\nCharley, can you confirm this? Is it really the official one?'),(895,'1a05faceed','','Yeah, that\'s right. \r\n\r\nThanks heavenly to unite people because of their wonderful music ! :D'),(896,'a8874ac15d','','Nightwish made incredible production, yeah, but it would have be better with a male singer I think :lol: .\r\n\r\nAnd because on the new Luca Turilli the female singer sings more than Olaf and on the Dreamquest there is only a female sing...... :?'),(897,'13dcaccd1a','','The female voice in Nightwish was something that made them Nightwish.\r\n\r\nBut also Marco Hietala\'s voice fits in very well :wink:'),(898,'e56e5906fd','','Hi dudes,\r\n\r\nI can say if it\'s official or not, I\'ll ask the band for it.\r\n\r\nbut there is two things which shocked me:\r\n\r\nfirst of all the photo of the line-up. This is the old line up with Fred, Max & PE. And shots of the actual line up are available.... it\'s strange because the line up announced is the new one.\r\n\r\nIn a second time, the influences are strange too: Kreator ? Nevermore? As I know members don\'t like this kind of stuff. They like Arch Enemy or Megadeth but Kreator and Nevermore.... I don\'t think so.\r\n\r\nWe will let you know the answer for the official side or no of this page but even if it\'s unofficial it\'s cool to have a page like this. :wink:'),(899,'2cdd4c6183','','Yeah, the old picture was strange, cause there was the new line-up listed anyway.\r\n\r\nCan\'t say that this MySpace site is a bad thing for their image. 8)'),(1190,'67d533fa41','','yeah but well, I understand them :roll: \r\n\r\nBut imagine this: if this forum gets very popular later, we will be like the grandfathers 8) (if you know what I mean)\r\nthe ones that everybody knows of.... \r\n\r\n 8)'),(1188,'e7e03159f1','','Those are nice! :D'),(1189,'d6b6dfcc29','','yeah, they are nice dude 8)'),(1187,'9365173452','','Thanks Squall, they\'re not too hard to do though. I might make some more and better if I get bored again... :)'),(904,'834fb67865','','And the genre is strange too....Heavenly isn´t progressive metal in my opinion....perhaps there are some progressive elements, but not too often I think.....Heavenly is pure speed metal.'),(1186,'8f42afad2e','','It\'s not too much when there are 72 users and only about 10 people are active... That quite sucks. :?'),(1185,'191c01c461','','The third one is a really good job ! Congratulations !!!'),(908,'c5f6eaf79c','','Heavenly\'s genre/style is different on every album, exciting to see what the direction will this time be.'),(961,'2854fee2b7','','This is a really good reflection. \r\n\r\nBut I think that on the discography area you should only place the official release, not the demos even if we know that they were made.'),(962,'136ba42a0f','','Hey dudes !\r\n\r\nSome news from the fanclub: the new website will be launch very soon. I\'ll let you know when it will be online :)\r\n\r\nCheers'),(963,'b7effd2897','','Well, we who have the demo know that it is very valued. :wink:'),(964,'32fe30dd4e','','Miracle is now finished.\r\nIt\'s missing a few piano stuff during some of the solos, but i can send\r\nin a update for that later.\r\n\r\nThe tab is on the MSB validation list, don\'t know how long it\'ll take\r\nuntil it gets uploaded, but if you can\'t wait any longer add me on msn and i\'ll send it to you.'),(960,'a013a22a14','','[quote:a013a22a14=\"Anonymous\"]im almost finished with \"Miracle\" now! :D\r\nWill probably be done tomorrow or the day after that :P[/quote:a013a22a14]\r\ndamn! forgot to login.. :P'),(916,'73d50978a8','','yeah I wasn\'t sure since there are in fact alot of fakes on myspace. \r\n\r\n\r\nI agree with crimson thunder that Heavenly is not progressive, Progressive elements yes perhaps. But pure symphonic speeeeeeed.'),(917,'454e1a65f0','','Hi there,\r\n\r\nCharley Corbiaux\'s speaking, captain on board ... 8) \r\n\r\nConcerning the Heavenly\'s blog on myspace.com ? sorry, I wasn\'t informed about all this ... \r\nSo, is it an official blog ? I don\'t think so ...\r\n\r\nBut nevertheless, it\'s a very good idea, isn\'t it ?\r\n\r\nNow concerning, all this fuckin\' \"phentermine\" or whatever, different adverts and other shit like that, we\'re doing all the necessary things to stop it NOW ...\r\n\r\nBe patient ...\r\n\r\nAll the best my friends,\r\n\r\nYour worst friend,\r\n\r\nCharley'),(919,'4fe1f1810d','','Thanks for your post, and keep concentrate on the next album :D'),(920,'7eefa50e3a','not relevant sorry','I knwo this isn\'t an appropriate forum for this but if anyone knows much about web design can you take a look at this site for me and notice the very bottom border. it should seem broken as if the image used for the border was stretched or something. I\'ve been over the code a thousand times, it previews perfect but once i upload the file to my host the border gets obliterated.\r\n\r\nhttp://clanff.nrgservers.net\r\n\r\nits driving me nuts now.'),(956,'d33be69e76','','[quote:d33be69e76=\"HolyThunder\"]yeah.. :)\r\n\r\nMiracle tab = 200 bars![/quote:d33be69e76]\r\n\r\nYarr, can\'t wait!!! :)'),(957,'b9a523d475','','But you could find it on old website in discography section though'),(958,'c8547c923a','','Yeah, the demos are usually listed on every band page.\r\n\r\nDemos are as worthy as every other releases!'),(959,'5e1363ecaa','','im almost finished with \"Miracle\" now! :D\r\nWill probably be done tomorrow or the day after that :P'),(922,'3076f5fef2','','First of all, [b:3076f5fef2]this forum needs moderators[/b:3076f5fef2].\r\n\r\nSecondly, [b:3076f5fef2]registeration should be required[/b:3076f5fef2].\r\n\r\nI don\'t think these guys would do this so often if they must register.\r\n\r\nSo someone who\'s controlling this board should do something with the registeration.'),(955,'f0348637c7','','yeah.. :)\r\n\r\nMiracle tab = 200 bars!'),(951,'adf7109dc5','','[quote:adf7109dc5=\"HeavenLio\"]I got the japanese editions !!!!! he he[/quote:adf7109dc5]\r\n\r\nPlease don\'t say that, it makes me so sad... :cry:\r\n\r\n\r\n\r\n :lol:'),(952,'a6892da3f1','','You \'ll see soon my complete collection about Heavenly on the Heavenly fanclub\'s brand new website which will be online very soon !!!!\r\n\r\nAll the items you can find on stores about Heavenly will be registered on the website ;)\r\n\r\nSee You'),(953,'7df6dd8164','','Cool, but I\'ve been wondering one thing.\r\n\r\nWhy isn\'t the \"Coming from the Sky DEMO\" mentioned in the Discography -section on the main site?\r\n\r\nSomeone should fix it cause it\'s part of Heavenly\'s history!'),(954,'55204b434c','','So, the demo is like a collector and not an official cd released under a label.\r\n\r\nThis is the reason.\r\n\r\nTake care, you\'ll see that there is some stuff that you have never think about it.'),(925,'09fd2a6d04','','I am going to star Evil I think when i\'ve done some other tabs im working on does any one wanna tab it with me??? I can tab guitars bass and drums easy enough most keyboards its just Vocals.'),(926,'35c244ff04','','[quote:35c244ff04=\"Wingsofforever\"]I am going to star Evil I think when i\'ve done some other tabs im working on does any one wanna tab it with me??? I can tab guitars bass and drums easy enough most keyboards its just Vocals.[/quote:35c244ff04]\r\n\r\nWelcome home Wings Of Forever !\r\n\r\nI\'m sure you are a fan of Power Quest héhé. I\r\n\r\nSee you'),(927,'4ed3bb3daf','','Hey, welcome Wingsofforever! 8) \r\n\r\nIf you want to tab \"Evil\" with someone you should contact Holy_Thunder in MySongBook and ask him if he\'d like to do it with you...\r\n\r\nLooking forward to hear the tab! :)'),(928,'c2b2780538','','yeah it is a rather simple solution. No guest posting and mods.\r\n\r\nphentermine'),(929,'3edb3c42b0','','lol. maybe disabling guest posting would help my forgetfulness to login all the time :idea: :idea: :idea: :!: :evil: 8) :shock: :lol:'),(930,'d495aba295','','japanes are excellent at writing music. For another taste check out Galneryus. I\'m not sure of the site off hand but I\'ll leave the adventure of looking them up up to you.\r\nwww.youtube.com has a good video of them of the song silent revelation. 8)'),(931,'69106a72b9','','Yep, it would help Ben also. :D'),(932,'6d33562038','','The link doesn\'t work anymore...'),(933,'1762a7b07b','','hah. well thats why i haven\'t gotten it back yet. 8 months! i hope he did listen to it lol. that was my intention at least. except I expected to have it given back and a tattoo on my arm.'),(934,'bf1cda8524','','If the Dark Memories is an Heavenly one, I think I\'ll love the new album!!! héhé 8)'),(935,'66cfdc9087','','[quote:66cfdc9087=\"joe54\"]The link doesn\'t work anymore...[/quote:66cfdc9087]\r\n\r\nYep, I think this proves that it wasn\'t any official page... :('),(936,'dc9f5e8211','','This song is excellent ! I\'m sure at 99% that\'s Heavenly, \'cause I\'m sure at 100% that\'s Ben on vocals ! Not at the beginning, but listen at 2min41, there is nobody else who owns this voice :wink: \r\n\r\nAnd, if it\'s only a demo, as said on the site, I\'m looking forward to listen what it will be once finished !!!'),(937,'a7b3b0fc41','','Ben it is, he\'s doing those spine-chilling vampire screams like on \"Dust to Dust\"... Perfect.\r\n\r\nHope the finished version will have bigger sounds.'),(938,'b95c00d07e','','Yeh i do like PQ are you from the DF forum or PQ one or MSB???\r\n\r\nholy_thunder is working on Lost Souls In Endless time by DF at the moment but i just spoke to metal_mike and think he\'s gunna have a go 8)'),(939,'a63253f839','','[quote:a63253f839=\"Wingsofforever\"]Yeh i do like PQ are you from the DF forum or PQ one or MSB???\r\n\r\nholy_thunder is working on Lost Souls In Endless time by DF at the moment but i just spoke to metal_mike and think he\'s gunna have a go 8)[/quote:a63253f839]\r\n\r\nYes, I am on the PQ board... my login is Heavenly. :roll: :wink: \r\n\r\nI know PQ before the release of WOF. :)\r\n\r\nSee You'),(940,'a6aeb4a13a','','i\'ll probably tab \"Miracle\" soon!'),(941,'55f0453a36','','[quote:55f0453a36=\"Anonymous\"]i\'ll probably tab \"Miracle\" soon![/quote:55f0453a36]\r\n\r\nthat was me! :P'),(942,'a98bcc2401','','Yeah.... In about... two hours I\'ll go to the airport to go to.... Japan !!!! So you won\'t see me for 12 days, maybe I\'ll find something unique in Japan made by Heavenly ! :D \r\n\r\nSee you dudes, keep dreaming in a free world !!! (I just can\'t believe I\'ll go to Japan ! :lol: )'),(943,'3ecf126461','','[quote:3ecf126461=\"HolyThunder\"][quote:3ecf126461=\"Anonymous\"]i\'ll probably tab \"Miracle\" soon![/quote:3ecf126461]\r\n\r\nthat was me! :P[/quote:3ecf126461]\r\n\r\nJust awesome! One of my favourite songs, I\'ll be waiting! :)\r\n\r\nHope you\'re gonna do it in .gp4 or in .gp3 format...'),(944,'4dbb4982a4','','[quote:4dbb4982a4=\"SquallSaga\"]Yeah.... In about... two hours I\'ll go to the airport to go to.... Japan !!!! So you won\'t see me for 12 days, maybe I\'ll find something unique in Japan made by Heavenly ! :D \r\n\r\nSee you dudes, keep dreaming in a free world !!! (I just can\'t believe I\'ll go to Japan ! :lol: )[/quote:4dbb4982a4]\r\n\r\nWhoa, 12 days in Japan. Not bad, have a nice time there.\r\n\r\nYou\'d better get some Heavenly\'s Japanese editions with some bonus tracks! 8)'),(945,'58c52f0e0b','','of course i\'ll tab it in Guitar Pro 4 :P'),(946,'947a44b7c4','','I say they stick with the male voice for nightwish. The female voice in metal was a great novelty but it wore off. Too many imitations that suck, with the exception of a few very talented bands with female singers (ie edenbridge).'),(947,'41cb0c38ec','','@Holy_Thunder: \r\nAre you gunna finish your ...Dust to Dust tab???'),(948,'dab5101075','','[quote:dab5101075=\"Wingsofforever\"]@Holy_Thunder: \r\nAre you gunna finish your ...Dust to Dust tab???[/quote:dab5101075]\r\n\r\nyes, working on the solos right now.. :)'),(949,'f56fb725d8','','[quote:f56fb725d8=\"HolyThunder\"][quote:f56fb725d8=\"Wingsofforever\"]@Holy_Thunder: \r\nAre you gunna finish your ...Dust to Dust tab???[/quote:f56fb725d8]\r\n\r\nyes, working on the solos right now.. :)[/quote:f56fb725d8]\r\n\r\nOh, you\'re tabbing that? That\'s great! :P'),(950,'235c417e35','','I got the japanese editions !!!!! he he'),(1191,'89b9c785d0','','I concur with that. Carola really sucked. \r\n\r\nAnd no other songs were good.. what r u talkin\' bout? :roll:'),(1192,'1bb9f2e68e','','Humm, well if you\'re not a complete metalhead you can easily listen to all kinds of shit... :lol: \r\n\r\nThere was some songs that keep playing in your head, wheater they were good or not.\r\n\r\nThat\'s the curse of Eurovision. :evil:'),(1193,'3fa9c99d0d','','Thanks the both of you. Gotta make some more when the album\'s released, to promote it as hell! :evil:'),(1194,'69fa47d947','','Good point, we own this forum in theory. We can say like: \"We and Heavenly go a long way back, just like good old friends.\" :D \r\n\r\nAnd the best thing is that we can call them n00bs! :lol: hehee...'),(1195,'90eecb1833','Now playing thread!!!','I always wanted to open such a topic myself once :lol: Here it goes. write what you\'re listening to at the moment. \r\n\r\n\r\nnp: Draonforce - Above the winter moonlight'),(1196,'5fa3e410c9','','Finally got the Luca Turilli - The infinte wonders of creation limited edition ! HAIL TO LUCA!!\r\n\r\nAnd finally got Wintersun-Wintersun original cd. Only had it in mp3\'s...'),(1197,'c1b0cf5b43','','Yes. Grandfathers of Heavenly forum.....that sounds cool :lol:'),(1198,'feeb9b092a','','Ok this thread is everywhere so let´s continue\r\n\r\nRunway - Hyena (Czech heavy metal band and they are great :wink: )'),(1199,'c632ad86a9','','Hell yeah, there always has to be one \"Now Playing\" -thread. 8) \r\n\r\nI don\'t have anything playing right now, but...\r\n\r\nI\'VE GOT 200 POSTS!!!\r\n\r\nYou may congratulate me. :roll: :lol:'),(1200,'7c0bd98902','','Yeah, congrats :wink: but you should listen something for your \"birthday\" :lol: \r\n\r\nAngra - Metal icarus'),(1201,'972651342f','','Yeah, we will be the gods of the forum, besides Heavenly :wink:'),(1202,'b0e05a9709','such a great band!!!!!!','check this band out!!\r\n\r\nhttp://video.google.com/videoplay?docid=2480288181062165968&q=kaledon\r\n\r\nThey are from now on one of my favorite bands! :D \r\n\r\nThe video is funny too.. :P\r\n\r\nI got more songs on my computer... the newer ones have better quality!'),(1203,'ee63227365','','They\'re not bad. A good epic powermetal band from Italy. Unfortunately without classical instruments and not innovative. But I listen to them sometimes.\r\nAnd the video is funny :D'),(1204,'75cecf845a','','8) \r\n\r\nyeah that sounds cool then. I hope more people will come visit when the new album is released...\r\n\r\nUntil then we just have to wait :('),(1205,'05698b2c75','','I am not listening to anything right now casuse I am in school...\r\n\r\nBut the last song I listened to was \"heal me\" with gamma ray.'),(1206,'b6fe6852e6','','and I have 108 posts! 8) \r\n\r\n(lol)'),(1207,'fb1c9a3d70','','haha yeah, I hate that, when a song gets in your head I mean :P \r\n\r\nI know a cure though.... Put some metal on, high volume 8)'),(1208,'5c62497695','','ok if I don\'t look at the video then it sounds cool 8) \r\n\r\nbut if I look at the video.... ergh....'),(1209,'e7ffa51f3b','','Dear God what a video! :lol: \r\n\r\nThe singer looks like a guy from the classical-opera band Il Divo! He really does not fit in the image.\r\n\r\nThe ending of the video looks like it was made with Windows Movie Maker! hahhaa...\r\n\r\nMusically it was nice though.'),(1210,'f983247403','','Avantasia - Sign of the cross'),(1211,'26bd6b227f','','yeah, hope the release date is as soon as possible :wink:'),(1212,'9296c4d626','','Ok im here i will stick round more, the DF forum sucks ass!!! I up for becoming a grandad!!!\r\n\r\nWhens the new album being released?? Has anyone heard any news of a tour soon hopefully??'),(1213,'481dd1cdb7','','I think they kick ass!!! could we put those on myspace sumhow???'),(1214,'f61b5934ed','','Hi welcome on the board.\r\n\r\nAbout tour.....we don´t know anything yet....at least I don´t know anything.\r\nAbout new album....as written on website Ben have to make his vocals and orechstrations and then perhpas mix and mastering and new album is ready.....so I think we´ll have new album in summer :D'),(1215,'a1061a4d13','','Dear lord!\r\n\r\nThose trousers... something else. That band was almost as generic as Power Quest.'),(1216,'f7f148fca2','','Andrew, nice to have you here 8)'),(1217,'27a4dbbc10','','summer is a lil early for that.... I say december... Cause some shit always happens, every time...'),(1218,'dc0ea19fb2','','still heal me with gamma ray....\r\n\r\nMan I really like this song... I must stop listening too it before my head gets mad...'),(1219,'887df730a3','','Yeah, we\'ll be the gradnfathers, and the Flooders God :lol: . Joking.\r\n\r\nFor the next album, yeah, I think it will be released at the end of the year...'),(1220,'d80f65b90a','','yes ! Kaledon ! it\'s a band I know a lot. They\'re very good, fast, melodious. Try to listen more songs !'),(1221,'b383d452b3','','I could cry, when I see people who listen the same songs as me... :- ).\r\n\r\nI\'me listent \"We are the future\" of Stratovarius'),(1222,'6f32bfa914','','hehe what can i say i follow you into different forums; MSB,Thiis 1, DF i think?? 8)'),(1223,'f061f91a76','Heavenly Live','has any one seen Heavenly live??? what are they like?? Did they ever do a Dust to Dust tour??? if so wot songs were played?'),(1224,'0286ae810b','','Like Mike have only heard Dust to Dust but my faves off that are\r\nEvil\r\nLust for Life\r\nDust to Dust'),(1225,'20074164ff','','England the country of umm fish and chips :roll: \r\nand Dragonforce :D most metal country is either; Finland or Sweden'),(1226,'980beb0ef4','','I heard them on there myspace and thought it kicked ass and got Dust to Dust from a very cool person 8)'),(1227,'6f5845579f','','Deep afection by Galynerus :roll: i think holy_thunder sent it to me its the epic solo at the minute (me is doin air guitar brb)'),(1228,'95922f61c2','','hahahaha goood music but the guy in white its like pete andre or something(bring back the 90s) there music is cool though i got there mysapce as well!!!\r\nDeridian are good as well'),(1229,'3fa49574c2','','i dont think they take ther elyrics too seriously themselves though.....I have seen DF twice :P'),(1230,'1ff8db79d4','','Angra-Rebirth + Temple of Shadows\r\nBlind Guardian-Night in middle earth\r\nChildren of Bodom-Follow the REaper,Hate Crew + Are you dead yet\r\nDragonforce-VOTD,Sonic Firestorm+ Inhuman Rampage\r\nEdguy-Hellfire club\r\nEnsiferum-Iron\r\nHammerfall-Legacy of Kings\r\nHeavenly-Dust to Dust\r\nPower-Quest-Wings of Forever+Magic Never dies\r\nRhapsody-Legendary Tales+Dawn of Victory+Power of Dragonflame+SOEL part 2\r\nSonata Arctica-Ecliptica+Silence+Winterhearts Guild+Reckoning night\r\nWintersun-Wintersun\r\n\r\nthats all the powermetal one i can remember off the top of my head and that are on itunes'),(1231,'2174d4872e','','wot is flooders god??'),(1232,'a39fccff7b','Your Music','does anyone write there own music in GP i know me and Metal_mike do. It would be cool to see others songs\r\nmy stuff is here: http://www.mysongbook.com/tab-tab_list-id_member=187208.htm\r\n\r\ni put this in this topic cuz i get inspiration from heavenly :wink:'),(1233,'acf7fab7c7','','Yes I also do. I am something like singer....in fact i have to learn a lot but I´ve been singing in a band almost for a year.....but we don´t have any website yet.....'),(1234,'760da974ed','','I wonder too....'),(1235,'87552faa8a','','Olympos Mons - Seaven Seas :D'),(1236,'300e1f21cc','','Let\'s see, I\'ve noticed that there are lots of people in here that are some sort of students. \r\n\r\nI graduated from high-school two days ago (Saturday). 8) And now I dunno what I\'m going to do... :? \r\n\r\nI\'m just curious to know what\'s your situation with your studies and what sort of school you\'re attending.'),(1237,'551fc12622','','[quote:551fc12622=\"Wingsofforever\"]hahahaha goood music but the guy in white its like pete andre or something(bring back the 90s) there music is cool though i got there mysapce as well!!!\r\nDeridian are good as well[/quote:551fc12622]\r\n\r\nHahaa, yes, just like Peter Andre! :lol:'),(1238,'3d51badbbf','','This is just great, DF cancelled their appearance in Tuska Festival, Finland! :evil: A lot of people bought the tickets just to see them... :x'),(1239,'a0683264d8','','Nightwish - High Hopes\r\n\r\nHietala sings great, he wouldn\'t be a bad lead singer.'),(1240,'d4f57cd6d2','','I\'d like to see them live someday, somehow it\'s hard to imagine the songs on \"Dust to Dust\" to be played live, they\'d need a hell of a good keyboard player!\r\n\r\nI think that their only proper \"DtD\"-appearance was in Underworld, London with DragonForce 13/2/2004. What gig that would\'ve been! :shock:'),(1241,'4c030e4671','','[quote:4c030e4671=\"Wingsofforever\"]I think they kick ass!!! could we put those on myspace sumhow???[/quote:4c030e4671]\r\n\r\nI don\'t think they have it anymore, maybe it wasn\'t official.'),(1242,'54a81b5f4d','','[quote:54a81b5f4d=\"Wingsofforever\"]Like Mike have only heard Dust to Dust but my faves off that are\r\nEvil\r\nLust for Life\r\nDust to Dust[/quote:54a81b5f4d]\r\n\r\nYou should definitely get all of them, everyone is a bit different.\r\n\r\n\"Coming from the Sky\" is like a bit Helloweenish,\"Sign of the Winner\" is more like a mix of the first one and \"Dust to Dust\".'),(1243,'88da9a0a18','','I\'d say Finland.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n :wink:'),(1244,'dc7528c552','','I think he means like spammers? :roll:'),(1245,'ce8faadb8f','','Maladaptive - Manic Delusions\r\n\r\nFred owns! 8)'),(1246,'cd8b004816','','yeah i will do i have a job now so i will be buying stuff alot more'),(1247,'af2fb7621b','','yeh bet it was immense!!!\r\n\r\nYou know each year Dragonforce tour Headline England with support of another Power MEtal band(Angra feb05 and Edguy feb06). I reckon the next time it will be Heavenly cuz there mates and both on Noise/Sancturay i think 8)'),(1248,'a17d6937f9','','yeah thats cuz off ozzfest i think i also had the pleasure(i know i say this alot Mike hehe) off meeting them :P'),(1249,'d2a5af3d7b','','u went to skool on saturday :S weird...\r\n \r\ni have finished un-officially i only have to go in for exams have 6 left'),(1250,'be4b2b89b9','HolyThunder needs singer!','You think u got what it takes to sing for HolyThunder? (Melodic/Speed/Power metal)\r\n\r\nInfuences: Dragonforce, Heavenly, Soul Source, Kaledon ect.....\r\n\r\nHere\'s 2 songs without vocals! And more are coming!\r\n\r\nhttp://www.myspace.com/holythunder \r\n\r\nDrop me an email if you\'re intressed! :D'),(1251,'9e3e32ee49','','Elvenking - The devil\'s carriage'),(1252,'363a3acfd8','','Yeah, but I\'m a little confused about Noise Records. Their website hasn\'t been updated since last summer... But I guess they\'ll be releasing the album.'),(1253,'4712686a8f','','Nah, the Saturday was just the graduation ceremony, or whatever u call it.'),(1254,'75ed21acc7','','Yeh hopefully cuz then i could go see the ultimate live show ever :P DF and Heavenly and maybe Fred could guest on a song'),(1255,'d4f30fc4ab','','aaahh i see so i guess you must be about 18?? I dont understand high skool really :?'),(1257,'b32e8a3e97','Ben is awesome','Ben, you are a genius; and your music is awesome to the max, i have a question for you . im very interested in the choirs in your music, i would like to know how many voices compose that beautiful choir \r\n\r\n-Ruben'),(1258,'555d518024','','Yep, 18. High school systems may be different in each country, so...'),(1259,'6087996a89','','Fred guesting would be cool, but I think that Ben and Fred can\'t seem to get along with each other anymore. :?:'),(1260,'2ea7e7ca97','','hey that\'s cool Crimson_Thunder, hope you\'ll get one soon :)'),(1261,'620f595fe3','','I will also try to see how much money I can get so I can buy some albums :P\r\n\r\nI don\'t have a work though... :roll:'),(1262,'1b8e8bd007','','no idea :roll: \r\n\r\nBut DF and Heavenly... *phew*. worth watching indeed.\r\n\r\nBtw, I am gonna see DF next Thursday! 8) \r\n\r\n*Whoop! Whoop!*'),(1263,'e3b691dffb','','! :evil: !\r\n\r\nheh np it must\'ve been cool 8) Maybe if I\'m lucky I\'ll catch em on Thursday! 8)'),(1264,'f18b1c6e10','','No Band - No music\r\n\r\nI have it quiet and calm...'),(1265,'5ed12b1a5e','','well I am in school for tweo more year and then I don\'t knwo what to do but I hope I can study music somewhere or mayeb get superfamous or something.\r\n\r\n :P'),(1266,'862a1d14d6','','Oh yeah, they\'re coming to the Sweden Rock. Too bad for you Swedes that Symphony X cancelled their appearance...'),(1267,'1fca36d526','','Dimmu Borgir - Progenies of the Great Apocalypse\r\n\r\nPerfect music for today: 06.06.06 :evil: :evil: :evil:'),(1268,'9668960a76','','With your skills you have all the possibilities. :wink:'),(1269,'9a9c944213','','Awesome, you should take some pics of them if you can. :wink:'),(1270,'0b46a283d3','','Indeed a very interesting question, tell us, Heavenly :D'),(1271,'0c9fed9c82','','Hail everyone !\r\n\r\nI\'ve saw Heavenly on stage four times !\r\n\r\nfor the Dust to Dust tour, no more shows are scheduled. The only shows they have played are these ones:\r\n\r\nLondon - Underworld February, 14th, 2004\r\nRagnarock fest - Holland June 2005\r\nGlanum Rock fest - France August 2005\r\n\r\nThe set list was this one:\r\n\r\nAshes to ashes\r\nEvil\r\nLust for life\r\nDestiny\r\nTime machine\r\nSign of the winner\r\nKingdome come\r\nHalloween (Helloween cover)\r\nDust to dust (outro)\r\n\r\nthe shows were amazing, mainly the Glanum rock\' one !!!!\r\n\r\nSee ya'),(1272,'c6122fffa7','','cool setlist wish i could see them live :P'),(1273,'26bd9ba506','','joro I don\'t have a cam :( \r\n\r\nAnd my bud don\'t wanna bring his cause he\'s afraid it\'ll get stolen :('),(1274,'78f02b6e8a','','yeh that sucked ass :('),(1275,'5028e13ee1','','haha thanks :P'),(1276,'ef008bd943','','Oh, that\'s a pity then. :?'),(1277,'73fbff181e','','It\'s really hard to find out what you\'re gonna be if you don\'t have any idea, that\'s the case with me.\r\n\r\nI know I ought to do something...'),(1278,'07ae982dd2','','I\'m here I\'m here!\r\nStill waiting patiently.......\r\n\r\n\r\nJanuary...\r\n\r\n\r\n\r\nFebruary....\r\n\r\n\r\n\r\nMARCH!.....\r\n\r\n\r\nApril.....\r\n\r\n\r\nMay....\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nJune......\r\n\r\n\r\n\r\nalbum yet?\r\n\r\nHURRY'),(1279,'eec2c0952a','','Charley will you write a song about me?'),(1280,'8886bc8f59','','I was SHOCKED to hear they would be playing ozzfest!\r\n\r\nIt\'s about time ozzfest comes up with a little more quality content than what it has been. (still have yet to attend a festival but perhaps i\'ll make it a point this year)\r\n\r\nAs for the lyrics, how can you take much of anything too seriously. It\'s all in fun, it\'s all in metal! It\'s fast, it\'s melodic, it\'s heavy and it\'s fun. Thats what we listen to. Their lyrics are obviously not meant to be taken seriously, it\'s just part of the dragonforce experience tahts all!'),(1281,'000b708b8e','','I\'ve seen this a bit ago. I still have yet to watch it through until the end XD\r\n\r\nIt\'s not bad music at all. I think I\'d rather listen to the album than watch their videos though :('),(1282,'b54c7219b9','','I think he means to put it on his own myspace. \r\n\r\nJust paste any of the following.\r\n\r\n[code:1:b54c7219b9]<a href="http://www.heavenly.fr"><img src="http://img46.imageshack.us/img46/7045/banner0kr.jpg"></a>[/code:1:b54c7219b9]\r\n\r\n\r\n[code:1:b54c7219b9]<a href="http://www.heavenly.fr"><img src="http://img116.imageshack.us/img116/5510/coverlogo6cp.jpg"></a>[/code:1:b54c7219b9]\r\n\r\n\r\n[code:1:b54c7219b9]<a href="http://www.heavenly.fr"><img src="http://img46.imageshack.us/img46/3533/logot221uh.jpg"></a>[/code:1:b54c7219b9]\r\n\r\n\r\n[code:1:b54c7219b9]<a href="http://www.heavenly.fr"><img src="http://img46.imageshack.us/img46/8688/noeffectssig8hk.gif"></a>[/code:1:b54c7219b9]\r\n\r\n\r\n[code:1:b54c7219b9]<a href="http://www.heavenly.fr"><img src="http://img116.imageshack.us/img116/8486/noeffectssig21pk.gif"></a>[/code:1:b54c7219b9]\r\n\r\nJust paste in myspace as you would anything else :)\r\nEach snippet of code there coresponds with the respective banner in order as shown in joro\'s post. \r\n\r\nIf viewed too many times imageshack may cut them off due to excess of bandwidth so hold on to those or any others joro in case 8)'),(1283,'09aaeadc65','','Yeah, they\'re safe with me. 8)'),(1284,'138fead197','','Not so many people were happy about DF going to Ozzfest, I heard.\r\n\r\nIsn\'t it considered to be a shit-band-nu-metal-wannabe-crap festival?'),(1285,'eb1bf6a056','','Stam1na - Ristiriita\r\n\r\nFinnish thrash metal!'),(1286,'cc838c026e','','yeah thats wot i meant cheers for those :D'),(1287,'51dbfb45a7','','i took my Camera do DF i can upload photos and videos if you want :D\r\nbut the Vids have no sound :('),(1288,'980ec696ff','','yeh i think so but its good for them :D'),(1289,'0c751f26e6','','what do you reckon they wear live lol???'),(1290,'463d3a4364','','hhhmmm Helloween havent heard much :( Please tell me what songs/album are good so i can check them out'),(1291,'f09c7ba980','','in england we dont have high school its secondary skool and you finish at 16'),(1292,'dbe70efc99','','Revolution Deathsquad-Dragonforce\r\n\r\nGLORIA!!!'),(1293,'9e818cb308','','Soul Source is Drummer is a mad man he can go super fast'),(1294,'619ecc1b03','','haha.. check this parody of Kaledon here!!\r\n\r\nhttp://video.google.com/videoplay?docid=1238991255468944928&q=kaledon\r\n\r\n :D :D :D :D'),(1295,'2096abd40d','','[quote:2096abd40d=\"joro410\"]I think he means like spammers? :roll:[/quote:2096abd40d]\r\n\r\nIf spammers then ELITE SPAMMERS :lol: \r\n´Cause we are here from begining of this forum :wink:'),(1296,'c26d83fcca','','Heed - Nothing'),(1297,'6a2cf019d8','','[quote:6a2cf019d8=\"Wingsofforever\"]hhhmmm Helloween havent heard much :( Please tell me what songs/album are good so i can check them out[/quote:6a2cf019d8]\r\n\r\nWell, all the albums are great. Get all three. :wink: \r\n\r\n\"Coming from the Sky\" is kinda old skool metal, sounding a bit like Blind Guardian, that\'s because of guests Piet Sielck (Iron Savior, Savage Cirus...)\r\nand Kai Hansen (Gamma Ray, Helloween...). Though this album hasn\'t gotten the appreciation it needs, it\'s still awesome.\r\n\r\n\"Sign of the Winner\" is sounding more like Stratovarius and Angra. More symphonic and melodic album. This THE album in which Ben\r\nmakes those heavenly screams!!! Great is also that Fred makes his first appearance on an Heavenly album, and he sure can play guitar, his solos, uuhh!\r\n\r\nAnd to add, the drumming get\'s better on each album and the songs become more complicated.\r\n\r\nHope that helps ya, you can trust on Heavenly! 8)'),(1298,'ae8241880e','','ok cool man but i was asking bout helloween songs'),(1299,'252fe25122','','Shite... :oops: Yeah, you\'re right. Jesus, what\'s wrong with me?!?! :!: \r\n\r\nSo about Helloween, I haven\'t heard much either but check out song \"I Want Out\" off \"Keeper of the Seven Keys part II\". That\'s a good one.'),(1300,'8bf55aa574','','haha its cool im glad you told me more detail of the albums cuz i like Angra alot have also seen them live :D'),(1301,'a9d4d70e76','','New:\r\n\r\nLuca Turilli\'s dreamquest - Lost horizons'),(1302,'246c6aa1c8','New Dream Theater CD/DVD to be released Aug. 29th','Having been at Radio City that day I just can\'t wait till this is released...It was an awesome concert & from the sounds of the teaser they did a good job recording it. :D\r\n\r\nhttp://mikeportnoy.com/forum/tm.aspx?m=1297588'),(1303,'20fba13ca8','','http://cd-tracker.com/item_list_v2.asp?UserID=16945'),(1304,'879138ea41','','Therion - Grand finale; postludium'),(1305,'28a3293ea7','','I haven\'t really been here since the beginning of this forum but I am aiming for 1000 posts! :twisted:'),(1306,'3f838d7c6a','','ok here we finish when we\'re 19...'),(1307,'d2ff806f62','','I\'d still like to see a lot of speed. Also, like in dust to dust, i hope that they keep writing songs where you never know where they might go, its not like a formulatic (if thats a word) Draongforce song which is \"verse 1 prechorus chorus verse 2 prechorus chorus solos chorus\". Also, many guitar solos and ben\'s high vocals r great stuff. I wouldn\'t mind seeing one or two songs around 9 mins or over either, because miracle turned out to be amazing and im sure they can write even better'),(1308,'3026a76a30','','Helloween is one of the best band ever......\r\n\r\nYou can check every one of their first albums, and even every one after that ^^. On every album there is good songs, but there was trhee different singers all over the years.... So, try them :wink:'),(1309,'1a91d9239a','','i discovered them when i searching in some program for Metal, it was one of my hobbies, and i saw the name and i think \"this name sounds really great, kinda Power Metal\" and i listened to the Destiny and The Sandman songs and i love them! so that was in 2002 or 2003 i don\'t remember but it was a good sorprise for me, i told to other friends and they liked too :P 8)'),(1310,'c32d4e29c9','','My fave songs are:\r\n\r\nDestiny\r\nRiding Trough Hell\r\nNumber One\r\nTime Machine\r\nOur Only Chance\r\nMillion Ways\r\nMy Turn Will Come\r\nThe World Will Be Better\r\nCondemned To Die\r\nUntil The End\r\nLust For Life\r\nFight For Deliverance\r\nKeepers Of The Earth\r\nDust To Dust\r\nEvil... \r\nthat\'s all my fave songs but i like all albums'),(1311,'ff5681d92b','','Im from Mexico and the only one!'),(1312,'6bb6cc6863','','i just expect they follow the same way, and take some of the old thinks that made as they are now, take the songs and try to give us some that again...'),(1313,'4bfe3d8066','','I registered here two months after the opening. Member no. 37!\r\n\r\nHope the number of members grows cause it\'s quite hard to get 1000 posts here now. Okay, Mike, I\'ll have a race with you. 8)'),(1314,'540563bba5','','You\'re such flooders..... i\'m joking :lol:'),(1315,'728f592e3f','','Dimmu Borgir - Sorgens Kammer'),(1316,'b342065dc3','','Well Joro is really fast....I gave up my race with him long time ago :lol: \r\nGood luck to you Metal Mike.....get him :lol:'),(1317,'6814e738b3','','I gotta keep this place alive! :D \r\n\r\nCrimson_Thunder, you gave up after about 100 posts. I\'m thinking of slowing down a bit, I\'m getting too tr00-fan and addicted... :)'),(1318,'e5da27954e','','Welcome dude ;)'),(1319,'96f29bd5ed','','Yeah, more posts please, Kraven. :lol: :wink: \r\n\r\nKeep on spreading the word in Mexico!'),(1320,'6d340ec0f1','','Hey Joro, you may have about 20 times the posts I have but I\'ll always be member #22\r\n\r\nRESPECT!\r\n\r\n(now I gave you a reason to make another post :D :D :D )'),(1321,'42f16f0e43','','Okay, all the respect goes to you. *bows* But wait, Crimson_Thunder is no. 5! *bows again to the new king*\r\n\r\nI would have more posts but I made a few posts as a guest. I gotta fix this with some shit-posts! 8)'),(1322,'d5f6b7e382','','Stam1na - Koirapoika\r\n\r\nAhh, this thread is good for making a lot of posts! :)'),(1323,'a46301edd7','','i must be one of the newest members and dont have that many posts :roll:'),(1324,'afbeb9a26e','','Yeh Mexico I have money on your football team :D'),(1325,'76ec1d7554','Best Live Band','wheter you have seen them live in concert or on DVD say which you think is the best :D \r\n\r\nI think Dragonforce are the best live band they just have sooo much energy and are soo good to listen to and watch.\r\n\r\nI saw Sonata Arctica DVD and thought they were really solid as a band.\r\nAngra are also very solid.'),(1326,'8a463ca9fb','','cool! i got ventrilo! :D'),(1327,'40ca3bfc7d','','[quote:40ca3bfc7d=\"Wingsofforever\"]Yeh Mexico I have money on your football team :D[/quote:40ca3bfc7d]\r\nand you will keep it :P \'couse we are going to pass in 1st place in this round :D'),(1328,'3e67597065','','me neither :\\ but just wait and you\'ll see 8)'),(1329,'670c88c7ed','','I hope so :D Viva la mexico!!!! or is that spanish'),(1330,'d3bfa6a5c1','','hehehe you joined to days after me 8)'),(1331,'ab3211bf83','','They do speak Spanish in Mexico... :roll: :wink:'),(1332,'99619a6095','','[quote:99619a6095=\"joro410\"]Okay, all the respect goes to you. *bows* But wait, Crimson_Thunder is no. 5! *bows again to the new king*\r\n\r\nI would have more posts but I made a few posts as a guest. I gotta fix this with some shit-posts! 8)[/quote:99619a6095]\r\n\r\n :lol: :lol: :lol: \r\n\r\nThanks :D'),(1333,'598180f669','','joro: LOL once again :lol: \r\n\r\nFreedom Call - The Wanderer'),(1334,'a5e1e607d2','','HEY!\r\n\r\nI live in Australia (canberra sadly), and Heavenly are my favourite band ever. I want them to tour here more than anything else, and i know they are popular here because i kept missing out on Dust to Dust when it was in the metal stores. I finally have all three albums now :)'),(1335,'bdabdeb6c4','','My friends and i have already agreed...\r\n\r\nif the new album is even half as good as Dust to Dust, it will be album of the year.'),(1336,'f7959d0f2e','','That\'s cool that someone knows \'em down there.\r\n\r\nI always want to recruit new members, you too! :wink:'),(1337,'df58bdf128','','Symphony X - The divine wings of tragedy'),(1338,'b897701620','','i tell everyone i ever meet that heavenly are the best band ever. they are gods, and i\'ll support them till the end of time :)'),(1339,'9a41e13ff7','','more specifically, i want neo-classical, i want breakdowns, and i want atmosphere.\r\n\r\nafter hearing \'the dark memories\', i must say that i found something missing in the music. no real breakdowns, and where\'s the neo-classical sound gone???. Sure it\'s in the chorus, but just that? the neo-classical sound is what truly makes Heavenly. otherwise, they are just an amazing power metal band. i expect this new album to be godly, not just amazing. i have every faith that the new album will be a masterpiece though, and if \'the dark memories\' is anything to go off, it will indeed kick ass.'),(1340,'1fd9772c46','','i have too many favourites, but my all-time favourite song is indeed a heavenly song...\r\n\r\nvictory (creatures of the night) is definently the greatest song ever created.'),(1341,'6b38370f92','','it\'s Viva México not \"La\" Mexico :P because you are saying \r\nViva \"the\" Mexico and it\'s not the way :lol: 8)\r\nand yes we speak spanish :shock: :wink:'),(1342,'abd5c9eda6','','I only saw Helloween Live (in video) several times, Iron Maiden, Angra, Stratovarius, Blind Guardian, Heavenly(the video from homepage) and Nightwish\r\n\r\nFor me the \"Best Live Band\"and is obviusly because is my fave band\r\n is Helloween maybe is not a energic band or euphoric band, but they do really good job in the Metal scene, and the support of the people for do impresive concerts, and sure is my fave band 8) \r\nIron Maiden is the next because all the band is very euphoric and play pretty good\r\nI like Heavenly but i have to see a complete concert to say something :P'),(1343,'92eb744f2c','','Riding Trough Hell - Heavenly :twisted:'),(1344,'d58a16bbac','','mmm\r\nHeavenly do an North American Tour?'),(1345,'1d58f713b2','','i though that the question was if u were boy or girl :\\ and not what did u prefer\r\nand i voted for Boy :? :shock: :( \r\n\r\nbut i prefe GIRLS!!'),(1346,'4df3734d26','','I haven\'t seen any band live so I can\'t really say, but seen DF live vids and they do seem quite energetic. \r\n\r\nOh yeah, and Sonata Arctica\'s live vids are also amazing!'),(1347,'b89299cbb0','','If they come to England i will go nut they prob wont :('),(1348,'efa7175b08','','unlikely as DF are only just hit America and they get more attention than Heavenly'),(1349,'7779075a32','','ah ok then Viva Mexico!!! i played as your team on pro evo yesterday as well.'),(1350,'4e8ab9ed2d','','Symphony is what Steve Williams from PQ calls him self maybe that was him :roll:'),(1351,'d224be3ae0','','SPEECH!!!'),(1352,'96e2d502fe','','Iron Maiden are good live as well Jannick throws his guitar round so much hes nuts'),(1353,'32534f9cb2','','YEAH, WANT A SPEECH! :o \r\n\r\nTell us how do you feel right now, was this a changing moment in your life? :D'),(1354,'26165be717','','Sure that wouldn\'t be a bad thing if he liked Heavenly, then he could help em on tour with the keys!'),(1355,'3e763511cb','','Right on, Pro Evo is awesome!'),(1356,'934b03fb99','','Just heard some Dio yesterday and I noticed one thing. He somehow stands out from all the heavy and rock music in the 70\'s and 80\'s.\r\n\r\nI\'d say that he\'s almost the only one 70\'s and 80\'s hard rock artist that I like, all others just seem so... I dunno, different. Dio is just so \r\nutterly lively that he blends into today\'s heavy music, but not with his looks if you understand... :lol:'),(1357,'6beced89af','','Some Twisted Sisters on the radio. :? \r\n\r\nDoes anyone listen to the radio nowadays?'),(1358,'8b87b2f8a3','','[quote:8b87b2f8a3=\"Kraven\"]it\'s Viva México not \"La\" Mexico :P because you are saying \r\nViva \"the\" Mexico and it\'s not the way :lol: 8)\r\nand yes we speak spanish :shock: :wink:[/quote:8b87b2f8a3]\r\n\r\nAnd what city are you from? My father was in Cancun once'),(1359,'6c0ab13e29','','[quote:6c0ab13e29=\"joro410\"]YEAH, WANT A SPEECH! :o \r\n\r\nTell us how do you feel right now, was this a changing moment in your life? :D[/quote:6c0ab13e29]\r\n\r\nIs this question for me?\r\nOh if yes,,,,yes this is changing moment in my life....now I reached my biggest dream. It´s fantastic :lol:'),(1360,'2d79407154','','Iron Maiden - Run To The Hills 8)'),(1361,'349b36923a','','Yeah. DIO is god... 8) \r\nI wish I could see him live.....and I am looking forward to his new album 8)'),(1362,'83f583e8de','','Man. New king is Krigloch the furious!!!! He´s member number 4.\r\n*BOW TO HIM*\r\n\r\n :wink:'),(1363,'55966ec720','','Oh yeah, just wait til he comes again. He must be the ultimate tr00 fan of all time.\r\n\r\nBut he signed up the same day as you Crimson_Thunder. Wonder what\'s the delay between you and him.'),(1364,'2e8ed4f2a2','','yeh your like the daddy of the forum'),(1365,'fe517a8009','','dont they have a full time Keyboardist????'),(1366,'6646f45312','','I listen to the Radio in the morning but in ENgland it is all like techno and crap the best song i heard is Enter Sandman'),(1367,'2fcc6db686','','Of course they have, it\'s Ben himself. But I\'m not sure about a session / tour keyboardist.\r\n\r\nThat\'s why I think they\'d need a permanent extreme-skilled keyboarder.'),(1368,'d816506d37','','Yeh, almost same here.\r\n\r\nThere ain\'t too many metal programmes, on other stations you just hear all these trend-teenage rock thingies...'),(1369,'cc5c96604f','','wow i didnt know that crazy its like Sonata Arctica in the Early days'),(1370,'5182844e2c','','Ben\'s a real gem, a mastermind. Just can\'t praise him too much. 8)'),(1371,'4cee2c0067','','didnt think there was a thing as too much praise hehehehe'),(1372,'c1d15aca04','',':o Cancun is too far away from here\r\n i live in Sonora state in Hermosillo city :p is in the northwest and cancun is in the southeast :P'),(1373,'e656ae9e10','','i listen to the radio when i\'m eating :P, i listen a station of classic\'s of 80\'s and 90\'s is the best that u can get in the radio :cry:'),(1374,'081f83f6da','What is you fave album?','well my fave album is the Coming from the Sky, because is powerful and melodic and the begining of one of my fave Power Metal bands\r\njust say it the forum is yours :P'),(1375,'14c472c128','','There was another thread about this, maybe you didn\'t notice it, check it out:\r\n\r\nhttp://www.heavenly.fr/forum/viewtopic.php?t=16&start=0\r\n\r\nBut what the hell, my fave album changes from time to time. I\'d say Coming from the Sky and Dust to Dust, cause they\'re both so complete as Sign of the Winner is a bit... not so complete in a way.'),(1376,'90ead1497a','','jiji sorry :oops: thanks for saying me :P'),(1377,'260290911d','','I don´t care about topics...my fave is Dust To Dust no doubt about it 8)'),(1378,'c82d24e446','','I see......never mind :wink:'),(1379,'3557d04b80','','[quote:3557d04b80=\"joro410\"]Oh yeah, just wait til he comes again. He must be the ultimate tr00 fan of all time.\r\n\r\nBut he signed up the same day as you Crimson_Thunder. Wonder what\'s the delay between you and him.[/quote:3557d04b80]\r\n\r\nReally? I didn´t noticed that..... :D'),(1380,'746f2508f4','','Now I listen to Hysteria song called Hysteria....another czech heavy metal band and they are quite good :wink:'),(1381,'aa26a31b26','','Elvenking or Korpiklaani are amazing live bands! Sonata Arctica/Rhapsody and Grave Digger are also very energetic and awesome to see live.'),(1382,'dcdcac1d63','','thy Majestie - The rise of the king'),(1383,'288ea2b61d','','HammerFall - Never Ever'),(1384,'522b8c92dc','','BLack Fire- Dragonforce'),(1385,'0fb7694518','','Im so jealous you seen Rhapsody and Sonata Arctica'),(1386,'50992b22d5','','Speed Piano Soolo - Part 2\r\n\r\nhttp://www.mikseri.net/music/play.php?id=39183&type=dl\r\n\r\nCheck it out! He\'s crazy like Jens Johansson!'),(1387,'36102a1c2e','','Olympos Mons - Through the ice and snow'),(1388,'c7e7dbe170','','Im the only English Member :('),(1389,'b986bc9356','maybe some will enjoy these','Made these wallpapers awhile back and just stumbled across them again.\r\n\r\nThought maybe someone might like to use them seeing as how I don\'t think the website has any...\r\n\r\n[img:b986bc9356]http://clanff.nrgservers.net/charley_01.jpg[/img:b986bc9356]\r\n\r\n[img:b986bc9356]http://clanff.nrgservers.net/heavenly_ben.jpg[/img:b986bc9356]'),(1390,'b0bfb91cad','','[quote:b0bfb91cad]You know each year Dragonforce tour Headline England with support of another Power MEtal band(Angra feb05 and Edguy feb06). I reckon the next time it will be Heavenly cuz there mates and both on Noise/Sancturay i think [/quote:b0bfb91cad]\r\n\r\nIsnt dragonforce off sanctuary now?'),(1391,'29286715c3','fanclub...paypal','Forgive me if there are posts about this anywhere else.\r\n\r\nSince the fanclub site has been redesigned and readdressed is there an english version. More importantly can I subscribe via an american paypal account?'),(1392,'4b16d023e7','','Awesome wallpaper, I think they are worth to be on the official website :wink:'),(1393,'289709840e','','Great work ;)'),(1394,'66b2bcc55e','','Don´t worry. I am only one Czech member round here :wink:'),(1395,'08832174f2','','Wolfcry - 6 Must Die'),(1396,'fcad5a2e02','','cool thanks. May do some more sometime. Too much WoW right now though.\r\n\r\nPossibly some other bands.'),(1397,'d45aed63a2','','You should do them for lke Forum members hehehe\r\nVery cool i think you should be Heavenlys official picture thingy person'),(1398,'4b48ac43b8','','Its cool i think cause im with people really different to me which is cool'),(1399,'7b4dc09659','','no they are on roadrunner through Sancturary or summit and on Sanctuary in some countries like; cant remember but it says it on the site'),(1400,'5484e47232','','Power Quest- WIngs of Forever'),(1401,'5ade99966b','','Hello guammer !\r\n\r\nNice question dude. I\'ll answer now:\r\n\r\nFor the english version of the website, it will come very soon. Romain is working on it and it will be online on the middle of july I think. \r\n\r\nFor paypal: we have to create an account and an online shop on the fanclub website. We are working hard these days because of the new album and also because we have a professional work too :wink: \r\n\r\nBut you can pay via bank transfert if you want, or cash for the europe.\r\n\r\nIf you have any questions on the fan club, there are special topics on the fanclub forum (english & french... hé hé) at www.heavenly-fanclub.info\r\n\r\nSee ya'),(1402,'0a16e4d8c3','','Barroquejon - In mount doom'),(1403,'e7a4640ebf','','persuader - passion pain'),(1404,'2c13a68276','','Hey man, nice work. Not bad. 8) \r\n\r\nMaybe we could be the Heavenly graphic squad: you do the wallpapers and I do the banners and sigs. :lol: Hah...\r\n\r\nBTW, what program do you use?'),(1405,'777ec97182','','you ask about designing an album cover or summit :S'),(1406,'c0365538b3','','Well, seriously I know the cover will be made by a pro.'),(1407,'19cf9c3fbe','','Okay, someone should come up with something again, so dead here now.\r\n\r\nI wanna make more posts, damn! 8)'),(1408,'68907cf536','','yeh it sucks huh?? i will thnik of somethings to post about tonite and then make a topic :D :)'),(1409,'853fe7e80b','','oh ok would be a great job to have though 8)'),(1410,'bfb3ad63f0','','hehe Sorry to sound uncultured but....who is he??'),(1411,'89ab07ad06','Children of Bodom','Anyone else like???\r\nMy bro saw them live said they rocked!!!\r\n\r\nMy fave song is follow the reaper i love!!!!!!!!'),(1412,'40712d9aa6','','Anyone still tabbing Heavenly??? \r\nMy Evil is going very slow i think mike should do it cuz im lazy hehe i know what key it is in that helps.........Eminor'),(1413,'51a53b586d','','Basically the whole Dust to Dust album as i still havent bought the other 2 :oops: \r\nAnd for the cover song-Fury of The Storm Dragonforce'),(1414,'c4d62a38cc','','Me and My bro are starting a band soon have between 9-10 songs already written :D'),(1415,'83a481825c','','Dio is the bald-getting guy from DIO, d\'oh. 8) \r\n\r\nNo, okay, he\'s an old man specially from the 80\'s and 70\'s rock music. Quite well-known though.\r\n\r\n[img:83a481825c]http://www.rockdetector.com/assets/resized/img/interviews/4/1dio-0-200-0-300.jpg[/img:83a481825c]\r\n\r\nHe\'s scary...'),(1416,'652bc90d1f','','Not much into them but they\'re not bad. One of the most successive metal bands abroad from Finland.\r\n\r\nThey have awesome melodies, like in \"Thrashed, Lost...\" and \"In Your Face.\" Haven\'t heard much their old stuff.'),(1417,'f1738739ac','','Just have to keep on going. 8)'),(1418,'2429e52f0e','','Holy_Thunder was doing \"Kingdom Come\" awhile back. I think he would be about ready, though MSB is still kinda stuck...'),(1419,'f622ffc18f','','OMG, that cover would be freakin\' hard, I think. You gotta shred as hell! :!: :!: :!:'),(1420,'cc06a30f0c','','Yup but im sure they could do it :P'),(1421,'d9c77c0ccb','','yeah bt he wud send it on MSN'),(1422,'86bfaa1323','','Yup'),(1423,'b3c5a03de2','','Old Stuff like most bands = better'),(1424,'997874093c','','ok hehehe wot band is he in part from DIO???'),(1425,'8e83c11df9','','Rainbow, Black Sabbath... Check him on Wikipedia:\r\n\r\nhttp://en.wikipedia.org/wiki/Ronnie_James_Dio'),(1426,'375c170e66','','aah Rainbow i know now!!! My mate\'s dad came second when they auditioned singers!!! Crazy huh??'),(1427,'78b9441812','','Its just me and Joro here moshing it up you know its a party for 2'),(1428,'7f3f56c322','','Domine - The Aquilonia Suite'),(1429,'fff6128a1d','','Busted-Thunderbirds'),(1430,'fc63d662d3','','Wow, I think he\'s not bad if he almost beat Dio.'),(1431,'ffaf7922fa','','Yay, after the release there\'ll much talking about it, I hope.'),(1432,'93a4107ee2','','Well and what about PC games? Do you play some and what are your favourite games. ;)\r\nNow joro can make some more posts....go on :D'),(1433,'007bd55748','','Oh no no Dragonforce....I don´t like them....I´d rather hear something from Strato....Black Diamond would rock :wink:'),(1434,'c39e4ce202','','[quote:c39e4ce202=\"Metal_Mike\"]hey that\'s cool Crimson_Thunder, hope you\'ll get one soon :)[/quote:c39e4ce202]\r\n\r\nThanks :wink: \r\nActually I´d like to play some power metal but there are no musicians who like this kind of music....so I am singing in a band that sounds like something between Anthrax and Godsmack....nothing for me but it´s good for experiences...and maybe I will join one heavy metal band if I will pass :D \r\nWould be better I hope I will make it :wink:'),(1435,'50408a4445','','[quote:50408a4445=\"Wingsofforever\"]aah Rainbow i know now!!! My mate\'s dad came second when they auditioned singers!!! Crazy huh??[/quote:50408a4445]\r\n\r\nOh man....I want him to sign covers of Rainbow :D'),(1436,'255f2722c3','','Yeah I like them :)\r\nI first heard them....well it was their cover of Oops I Did It Again by Brithney Spears.....great cover \r\nSince then I heard a lot from their music and the best songs are:\r\nDeadnight Warrior, Lake Bodom, Bodom After Midnight, Hate Me, Downfall, Silent Night and much more ;)\r\n\r\nThey rock ;)'),(1437,'8024b03c89','','I play Diablo II at these days and my fav games are Diablo II and Starcraft'),(1438,'b65bd93fce','','I can tell you, hammerfall, edguy, dragonforce have all done North american tours and there has ALWAYS been an amazing turnout and a great crowd. The crowd would appreciate heavenly just as much as any of said bands, it\'d be cool if Heavenly could be a part of next years tour when hammerfall comes back as they said they would. \r\n\r\nAs for dragonforce, alot of people seem to say heavenly makes dragonforce seem boring. They bare alot of the same elements but Heavenly has much more to offer.'),(1439,'2a35d94236','','i am playing Banjo Tooie lol on my N64 it is fucking hard hehe'),(1440,'59958d6091','','yeah true but i think DF guitarists are better and i think overall DF are faster'),(1441,'558e71a1ea','','Hahaha if you want ocme to ENgland join my band'),(1442,'2366d816b5','','oops i did it again is funny heheh have you heard there cover of Aces High it kicks ass!!!'),(1443,'ed349823cc','','sorry dude he died bout 2 months ago lung cancer :( :('),(1444,'d17cb0b3e2','','Yarr, Black Diamond would rule! 8) \r\n\r\nAnd besides, Ben sings like Kotipelto, so yeah!'),(1445,'3466291e92','','I\'m from holland ,i saw Heavenly at Ragna Rock great band !! The first time isaw them was in 2000 with Stratovarius and Silent force and i\'m a fan of this band since then!!! Have all 3 albums....'),(1446,'5d59c694f8','','Man you were lucky to see Heavenly live 8)'),(1447,'72f425281f','','He he would be cool.....it´s really not so far away from here :D we could reherseals almost every day :lol:'),(1448,'5cfd0c4b20','','Oh I am sorry to hear this :cry: :oops:'),(1449,'0c4cb19476','','No I haven´t....unfortunatelly'),(1450,'77c2bcf081','','haha yeh just learn to fly then u will be fine :D'),(1451,'e9b20b4ec7','','dont worry about it'),(1452,'5675d6fec5','','I mostly play soccer games: Championship Manager, Pro Evolution Soccer... All kinds of stuff.\r\n\r\nSome dowloadable mini games and web games, Yetisports rule!\r\n\r\nwww.yetisports.org'),(1453,'06e21d3ec0','','Hard to imagine that someones say that DF is boring, especially live. Though DF can be too repetitive, all songs are fast n stuff.'),(1454,'3014b08891','','*sigh* Wish Heavenly came to some festival sometime, but the biggest festivals are in the summer...'),(1455,'dc4fda6dd8','','[quote:dc4fda6dd8=\"Crimson_Thunder\"][quote:dc4fda6dd8=\"Metal_Mike\"]hey that\'s cool Crimson_Thunder, hope you\'ll get one soon :)[/quote:dc4fda6dd8]\r\n\r\nThanks :wink: \r\nActually I´d like to play some power metal but there are no musicians who like this kind of music....so I am singing in a band that sounds like something between Anthrax and Godsmack....nothing for me but it´s good for experiences...and maybe I will join one heavy metal band if I will pass :D \r\nWould be better I hope I will make it :wink:[/quote:dc4fda6dd8]\r\n\r\nWow, I imagined that it would be something far from Anthrax and that kind of nu-metal, or what the hell is it anyway? :? Almost like rap! :wink:'),(1456,'59dfaee1cf','','Seriously, Ensiferum\'s \"Tale of Revenge\" as a cover.\r\n\r\nI could so imagine if Fred was still in Heavenly that he did the growling and Ben the clean parts. Would be the best ever! 8)'),(1457,'afe8d4b08b','','Iron is a better song i think :D'),(1458,'bf6f81dbbf','','are you going to TUska???'),(1459,'17184bfd1a','','true true, i think the newest album is the most repetative but i still luv em :D'),(1460,'1177d1d1b0','','Yeti games rock !!!! I play pacman on the net that kicks ass!!!'),(1461,'02ffab41c2','','Both equally awesome. 8)'),(1462,'231febf312','','Nah, I thought about it once when DF was confirmed... Then they cancelled it, and it would have been kinda waste of money, not the cheapest tickets anyway.\r\n\r\nBut at least there\'s Wintersun, but I ain\'t going. Hope I\'ll catch some material on it later, usually there\'s sumthin on the news about it.'),(1463,'3a3e21663f','','www.miniclip.com is also quite good site.'),(1464,'39297fd221','','Talking about DF, Inhuman Rampage was good but I prefer Sonic Firestorm.\r\n\r\nIR feels like a updated version of it. SF has also better sounds IMO.'),(1465,'e02dee8b78','','yeah Tea games and addicting games is good'),(1466,'e10b39a54f','','its hard descion i find but prob agree depending wot day it was'),(1467,'64b46ba6ef','','I luv Wintersun!!!!!!!!!!!! 8) Jari is soooo insane in a good way'),(1468,'b2c1315501','','Damn, now I\'m thinking I should go just cause of Wintersun. But it might be too late. :?'),(1469,'5d733656db','Hello boys !','I just pass a small cuckoo to the group;) make I know when you make a small concert in France (ps: olivier , it\'s damien your pupil of chalo) ^^\r\nMy adress : Existenzsnake@hotmail.com'),(1470,'cb89daffc8','','i think Sonata Arctica are playing as well !!!'),(1471,'1492777201','','[quote:1492777201=\"joro410\"][quote:1492777201=\"Crimson_Thunder\"][quote:1492777201=\"Metal_Mike\"]hey that\'s cool Crimson_Thunder, hope you\'ll get one soon :)[/quote:1492777201]\r\n\r\nThanks :wink: \r\nActually I´d like to play some power metal but there are no musicians who like this kind of music....so I am singing in a band that sounds like something between Anthrax and Godsmack....nothing for me but it´s good for experiences...and maybe I will join one heavy metal band if I will pass :D \r\nWould be better I hope I will make it :wink:[/quote:1492777201]\r\n\r\nWow, I imagined that it would be something far from Anthrax and that kind of nu-metal, or what the hell is it anyway? :? Almost like rap! :wink:[/quote:1492777201]\r\n\r\nWell I don´t try to sing this way....I don´t like it....but you know....where one can earn experiences? There´s nothing left then to try in such bands and then maybe...'),(1472,'56a92152ac','','Yeah, they are. They\'re both playing on Saturday and those tickets are sold out. That\'s it... :('),(1473,'5c55580e42','','True, let\'s hope you\'re on your way to the top. 8)'),(1474,'c391780f49','','Dimmu Borgir - Eradication Instincts Defined'),(1475,'ae2ae9133c','','Heh....it will be looooong way :D'),(1476,'9877b5f011','','Stratovarius - Dreamspace'),(1477,'8b19a7a3d3','','ah unlucky man'),(1478,'d96efb36c5','','if you wanna rock n roll'),(1479,'1026fe090c','','Childrem of Bodom-Follow the Reaper wait its finished\r\nBodom after Midnight'),(1480,'e11c895e92','','\"Blade\" - Frameshift'),(1481,'90a653ef9e','','Tad Morose - Lord On High'),(1482,'06cc1bb5bb','','Iron Maiden-Fear of the Dark'),(1484,'cd40d9f271','','Pain Confessor - Butterfly'),(1485,'b1ebf16aa8','','LAI LAI HEI is clearly the best ensiferum song, but I dont think Heavenly would be well suited to it.\r\n\r\nPlay the whole of Dust to Dust. It\'s not 90 minutes, but I\'d be perfectly satisfied. Dio did the whole of Holy Diver, Metallica have done all of Master of Puppets. Why shouldn\'t Heavenly do the whole of the best Power Metal album in existence?\r\n\r\nas a cover here are some ideas:\r\nGamma Ray - Solid (Ben would cream the high pitched \"We\'re Solid!\")\r\nHelloween - Wake up the Mountain\r\nto be honest, Power Metal bands covering other power metal songs don\'t work very well, I\'d much prefer it if Heavenly covered something more classic like these:\r\n\r\nIron Maiden - Children of the Damned (again, for Ben to show off his singing)\r\nJudas Priest - Electric Eye\r\nIced Earth - Dante\'s Inferno? It\'s a bit long, but its awesome. how about Blessed Are You\r\n\r\nalso, as a little end point, I believe that covering anything new (in the past few years or so) is a really stupid and lame, so dont cover any Dragonforce/New Helloween/Angra/Rhapsody. Besides, why should Heavenly lower themselves to Dragonforce\'s level?'),(1486,'8e378a08cd','','True, covers should be made out of classic songs, something that almost everyone is familiar with.\r\n\r\nIn what extent do you mean by lowering to DF\'s level?\r\n\r\nSurely I think you mean concerning their songs, but not their talent and playing skills? :?'),(1487,'66827f51f4','','some additions:\r\nBy The End of Tonight - Tribute to Tigers\r\nCandlemass - Candlemass\r\nCandlemass - Nightfall\r\nCarnivore - Carnivore\r\nCarnivore - Retalliation\r\nCathedral - The Serpents Gold\r\nCathedral - The Garden of Unearthly Delights\r\nCathedral - Caravan Beyond Redepmtion\r\nConquest of Steel - Conquest of Steel\r\nDream Theater - Octavarium\r\nEarthless - Sonic Prayer\r\nHelloween - Better than Raw\r\nJudas Priest - Painkiller\r\nJudas Priest - Screaming for Vengance\r\nKatatonia - Tonight\'s Decision\r\nLiquid Tension Experiment - LTE 2\r\nManowar - Warriors of the World\r\nOzric Tentacles - Tantric Obstacles\r\nOzric Tentacles - Erpsongs\r\nPantera - Reinventing Hell (best of)\r\nQueen - Live Magic\r\nRammstein - Mutter\r\nW.A.S.P - Inside the Electric Circus\r\nW.A.S.P - The Headless Children'),(1488,'952ddfc7e2','','And me :D\r\n\r\nmake it a love ballad.\r\n\r\nOr you could just try and put the words \"Shadow Wraith\" in a song somewhere. I\'d be happy with that too...'),(1489,'d4d5ce5a7e','','how to put this...\r\n\r\nDragonforce have some great talent when it comes to musicianship. Everyone in the band has excellent stage presence, which nobody can deny. But the same cannot be said for their songwriting capabilities. It\'s simply below par. They\'ve released 3 albums which sound [i:d4d5ce5a7e]exactly [/i:d4d5ce5a7e]the same, and somehow they\'ve gotten progressively worse each time, using more and more of the same tired clichés.\r\n\r\nHeavenly on the other hand have released three very different albums. Progressing in style each time, they come ever closer to finding Perfection. The songwriting is excel