Code:
-- phpMyAdmin SQL Dump
-- version 2.11.6
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Jan 24, 2011 at 06:49 AM
-- Server version: 5.0.45
-- PHP Version: 5.2.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `habbo`
--
-- --------------------------------------------------------
--
-- Table structure for table `account_settings_log`
--
DROP TABLE IF EXISTS `account_settings_log`;
CREATE TABLE `account_settings_log` (
`id` int(11) NOT NULL auto_increment,
`system` text,
`ip` text,
`userN` text,
`entry` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
-- --------------------------------------------------------
--
-- Table structure for table `achievements`
--
DROP TABLE IF EXISTS `achievements`;
CREATE TABLE `achievements` (
`id` int(10) unsigned NOT NULL auto_increment,
`levels` int(11) NOT NULL default '1',
`dynamic_badgelevel` enum('0','1') NOT NULL default '1',
`badge` varchar(100) NOT NULL,
`pixels_base` int(11) NOT NULL default '50',
`pixels_multiplier` double NOT NULL default '1.25',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ;
-- -------------------------------------------------------
-- ----------------------------
-- Records of achievements
-- ----------------------------
INSERT INTO achievements VALUES ('1', '1', '1', 'ACH_AvatarLooks', '50', '0');
INSERT INTO achievements VALUES ('5', '1', '1', 'ACH_Motto', '50', '0');
INSERT INTO achievements VALUES ('6', '1', '1', 'ACH_Student', '50', '0');
INSERT INTO achievements VALUES ('7', '1', '1', 'ACH_AvatarTags', '50', '0');
INSERT INTO achievements VALUES ('13', '10', '1', 'ACH_RoomEntry', '5', '0');
INSERT INTO achievements VALUES ('10', '10', '1', 'ACH_RegistrationDuration', '50', '0');
INSERT INTO achievements VALUES ('28', '10', '1', 'ACH_BattleBallTilesLocked', '50', '0');
INSERT INTO achievements VALUES ('29', '10', '1', 'ACH_GamePlayerExperience', '50', '0');
INSERT INTO achievements VALUES ('30', '10', '1', 'ACH_GameAuthorExperience', '50', '0');
INSERT INTO achievements VALUES ('2', '1', '1', 'ACH_EmailVerification', '50', '0');
INSERT INTO achievements VALUES ('3', '1', '1', 'ACH_Graduate', '50', '0');
INSERT INTO achievements VALUES ('4', '1', '1', 'ACH_HappyHour', '50', '0');
INSERT INTO achievements VALUES ('8', '1', '1', 'ACH_RespectGiven', '50', '0');
INSERT INTO achievements VALUES ('9', '1', '1', 'ACH_Name', '50', '0');
INSERT INTO achievements VALUES ('11', '10', '1', 'ACH_Login', '50', '0');
INSERT INTO achievements VALUES ('12', '10', '1', 'ACH_GamePlayed', '50', '0');
INSERT INTO achievements VALUES ('14', '10', '1', 'ACH_RespectEarned', '50', '0');
INSERT INTO achievements VALUES ('15', '10', '1', 'ACH_MGM', '50', '0');
INSERT INTO achievements VALUES ('16', '10', '1', 'ACH_AllTimeHotelPresense', '50', '0');
INSERT INTO achievements VALUES ('17', '10', '1', 'ACH_TraderPass', '50', '0');
INSERT INTO achievements VALUES ('18', '10', '1', 'ACH_AlPerformanceVote', '50', '0');
INSERT INTO achievements VALUES ('19', '10', '1', 'ACH_PetFeeding', '50', '0');
INSERT INTO achievements VALUES ('20', '10', '1', 'ACH_PetLevelUp', '50', '0');
INSERT INTO achievements VALUES ('21', '10', '1', 'ACH_PetLover', '50', '0');
INSERT INTO achievements VALUES ('22', '10', '1', 'ACH_PetRespectGiver', '50', '0');
INSERT INTO achievements VALUES ('23', '10', '1', 'ACH_PetRespectReceiver', '50', '0');
INSERT INTO achievements VALUES ('24', '10', '1', 'ACH_GiftGiver', '50', '0');
INSERT INTO achievements VALUES ('25', '10', '1', 'ACH_GiftReceiver', '50', '0');
INSERT INTO achievements VALUES ('26', '5', '1', 'ACH_BasicClub', '50', '0');
INSERT INTO achievements VALUES ('27', '5', '1', 'ACH_VipClub', '50', '0');
INSERT INTO achievements VALUES ('31', '1', '0', 'Z64', '50', '0');
-- ----------------------------
-- Table structure for `achievements_owed`
-- ----------------------------
DROP TABLE IF EXISTS `achievements_owed`;
CREATE TABLE `achievements_owed` (
`user` int(6) unsigned NOT NULL,
`achievement` int(3) unsigned NOT NULL,
`achlevel` int(3) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of achievements_owed
-- ----------------------------
--
-- Table structure for table `bans`
--
DROP TABLE IF EXISTS `bans`;
CREATE TABLE `bans` (
`id` int(11) NOT NULL auto_increment,
`bantype` enum('user','ip') NOT NULL default 'user',
`value` varchar(50) NOT NULL,
`reason` text NOT NULL,
`expire` double NOT NULL default '0',
`added_by` varchar(50) NOT NULL,
`added_date` varchar(50) NOT NULL,
`appeal_state` enum('0','1','2') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=202 ;
-- --------------------------------------------------------
--
-- Table structure for table `bans_appeals`
--
DROP TABLE IF EXISTS `bans_appeals`;
CREATE TABLE `bans_appeals` (
`ban_id` int(11) NOT NULL,
`send_ip` varchar(50) NOT NULL,
`send_date` varchar(120) NOT NULL,
`mail` varchar(120) NOT NULL,
`plea` text NOT NULL,
KEY `ban_id` (`ban_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `bots`
--
DROP TABLE IF EXISTS `bots`;
CREATE TABLE `bots` (
`id` int(10) unsigned NOT NULL auto_increment,
`room_id` int(10) unsigned NOT NULL default '0',
`ai_type` enum('generic','guide','pet') NOT NULL default 'generic',
`name` varchar(100) NOT NULL,
`motto` varchar(120) NOT NULL,
`look` text NOT NULL,
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`z` int(11) NOT NULL default '0',
`rotation` int(11) NOT NULL default '0',
`walk_mode` enum('stand','freeroam','specified_range') NOT NULL default 'stand',
`min_x` int(11) NOT NULL default '0',
`min_y` int(11) NOT NULL default '0',
`max_x` int(11) NOT NULL default '0',
`max_y` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `room_id` (`room_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=89000 ;
-- --------------------------------------------------------
-- ----------------------------
-- Records of bots
-- ----------------------------
INSERT INTO bots VALUES ('1', '1', 'generic', 'Harry', 'Welcome to Habboon!', 'hd-180-7.sh-290-110.lg-270-91.ch-809-62.hr-828-45', '9', '19', '0', '2', 'stand', '8', '16', '9', '24');
INSERT INTO bots VALUES ('2', '0', 'guide', 'Guide Bot', 'Here to help you out!', 'hr-828-45.lg-285-64.ch-215-110.hd-180-2.sh-290-62.he-1607-', '0', '0', '0', '0', 'freeroam', '0', '0', '0', '0');
--
-- Table structure for table `bots_responses`
--
DROP TABLE IF EXISTS `bots_responses`;
CREATE TABLE `bots_responses` (
`id` int(10) unsigned NOT NULL auto_increment,
`bot_id` int(10) unsigned NOT NULL,
`keywords` text NOT NULL,
`response_text` varchar(200) NOT NULL,
`mode` enum('say','shout','whisper') NOT NULL default 'say',
`serve_id` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `bot_id` (`bot_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=88990 ;
-- --------------------------------------------------------
INSERT INTO bots_responses VALUES ('1', '1', 'hey;hello;hallo;hai;hoi;howdy;hi', 'Hello!', 'say', '0');
INSERT INTO bots_responses VALUES ('2', '1', 'drink;cola;food;order;buy;ice', 'You can\'t order anything here. Does this look like a bar to you?', 'say', '0');
INSERT INTO bots_responses VALUES ('3', '1', 'harry', 'That\'s me!', 'say', '0');
INSERT INTO bots_responses VALUES ('5', '1', 'love', 'Love is a strange thing..', 'say', '0');
INSERT INTO bots_responses VALUES ('6', '1', 'dust;dusty;dirty;filthy;disgusting;eww', 'Are you calling my lobby dirty!??!', 'shout', '0');
INSERT INTO bots_responses VALUES ('7', '1', 'whisper to me harry', 'Do you like being whispered to...?', 'whisper', '0');
INSERT INTO bots_responses VALUES ('8', '1', 'yes;yep;definitely;yeah;uh-huh;no;nope;never;nay', 'Oh, well, if you say so...', 'say', '0');
INSERT INTO bots_responses VALUES ('9', '2', 'dutch;italian;sweedish;french;spanish;polish;portugese;brazillian;inglaise;anglais;hola;bonjour;nederlands;engels;swedish;language;german;deutsch', 'This is an English hotel! Please speak English or face punishment!', 'shout', '0');
INSERT INTO bots_responses VALUES ('10', '2', 'help;halp', 'I\'m here to help! If theres anything I can\'t answer, use the help tool to the left!', 'say', '0');
INSERT INTO bots_responses VALUES ('11', '2', 'job;badge;plz;please;pls', 'Please do not beg staff members! It\'ll only annoy them and decrease your chances!', 'say', '0');
INSERT INTO bots_responses VALUES ('12', '2', 'cred;credz;creds;credits;coins', 'Credits are given out at random intervals. Check the site for more details.', 'say', '0');
INSERT INTO bots_responses VALUES ('13', '2', 'mod;admin;staff', 'Our dedicated staff are here to improve your retro experience!', 'say', '0');
INSERT INTO bots_responses VALUES ('14', '2', 'furni;decorate;walls;floor;windows;sofa;chair;table', 'If you want to decorate, buy some items from the catalogue and place them in your room!', 'say', '0');
INSERT INTO bots_responses VALUES ('15', '2', 'pixels', 'You get pixels for being online and getting achievements, you can then spend them in the catalogue!', 'say', '0');
--
-- Table structure for table `bots_speech`
--
DROP TABLE IF EXISTS `bots_speech`;
CREATE TABLE `bots_speech` (
`bot_id` int(10) unsigned NOT NULL,
`text` varchar(200) NOT NULL,
`shout` enum('0','1') NOT NULL default '0',
KEY `bot_id` (`bot_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
INSERT INTO bots_speech VALUES ('1', '*sneeze*', '1');
INSERT INTO bots_speech VALUES ('1', 'When\'s my break? I\'ve been standing here for ages..', '0');
INSERT INTO bots_speech VALUES ('1', 'My feet hurt.. :(', '0');
INSERT INTO bots_speech VALUES ('1', '*yawn*', '0');
INSERT INTO bots_speech VALUES ('1', 'Why is it always so quiet here? I feel so lonely..', '0');
INSERT INTO bots_speech VALUES ('1', 'Don\'t even think about asking me for a drink .. this is not a bar.', '0');
INSERT INTO bots_speech VALUES ('2', ' Credits are topped up on a regular basis :)', '0');
INSERT INTO bots_speech VALUES ('2', 'There are always competitions going on to earn more credits and rares!', '0');
INSERT INTO bots_speech VALUES ('2', 'It\'s always good to trade your rares! Share the wealth.', '0');
INSERT INTO bots_speech VALUES ('2', 'Have you checked out the marketplace in the catalogue yet?', '0');
INSERT INTO bots_speech VALUES ('2', 'Looking for somewere quiet? Go find a nice, relaxing public room in the navigator :)', '0');
INSERT INTO bots_speech VALUES ('2', 'Our staff are here to help you!', '0');
INSERT INTO bots_speech VALUES ('2', 'Rares are give out in competitons and events, as well as some in the catalogue for all users.', '0');
INSERT INTO bots_speech VALUES ('2', 'Found a bug? Got a suggestion? Send us a call for help!', '0');
--
-- Table structure for table `chatlogs`
--
DROP TABLE IF EXISTS `chatlogs`;
CREATE TABLE `chatlogs` (
`id` int(11) NOT NULL auto_increment,
`user_id` int(10) unsigned NOT NULL,
`room_id` int(10) unsigned NOT NULL,
`hour` int(11) NOT NULL,
`minute` int(11) NOT NULL,
`full_date` varchar(120) NOT NULL,
`timestamp` double NOT NULL,
`message` text NOT NULL,
`user_name` varchar(100) NOT NULL default 'Unknown User',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`,`room_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=178970 ;
-- --------------------------------------------------------
--
-- Table structure for table `cms_comments`
--
DROP TABLE IF EXISTS `cms_comments`;
CREATE TABLE `cms_comments` (
`id` int(6) NOT NULL auto_increment,
`story` int(6) NOT NULL,
`comment` text NOT NULL,
`date` int(10) NOT NULL,
`author` int(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
-- --------------------------------------------------------
--
-- Table structure for table `cms_news`
--
DROP TABLE IF EXISTS `cms_news`;
CREATE TABLE `cms_news` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(255) collate latin1_general_ci default NULL,
`shortstory` text collate latin1_general_ci,
`longstory` text collate latin1_general_ci,
`published` int(10) NOT NULL default '0',
`image` varchar(255) collate latin1_general_ci default '/Public/Images/news/TS_Web60.png',
`campaign` int(1) NOT NULL default '0',
`campaignimg` varchar(255) collate latin1_general_ci NOT NULL,
`author` int(6) NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
INSERT INTO cms_news VALUES ('1', 'Habboon Hotel', 'Welcome to the official test hotel to<br>Phoenix 3.0!<br><br>The hotel is due to open up on<br>Friday, 29th October', 'Well what have we here?', '0', '/Public/Images/news/TS_Web60.png', '0', '', '1');
--
-- Table structure for table `cms_registration_figures`
--
DROP TABLE IF EXISTS `cms_registration_figures`;
CREATE TABLE `cms_registration_figures` (
`figure` varchar(70) NOT NULL,
`gender` varchar(1) NOT NULL,
PRIMARY KEY (`figure`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
INSERT INTO cms_registration_figures VALUES ('hr-515-45.hd-600-8.ch-884-76.lg-696-76.sh-740-76.ea-1401-76.ca-1815-62', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-545-42.hd-600-28.ch-884-68.lg-700-68.sh-905-71.he-1601.ea-1406.fa-1', 'f');
INSERT INTO cms_registration_figures VALUES ('hd-600-3.ch-630-62.lg-695-62.sh-730-62.ca-1801-62', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-515-48.hd-625-22.ch-660-79.lg-700-64.ea-1406', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-890-42.hd-629-1.ch-685-74.lg-710-74.sh-907-74.he-1608.ca-1815-74.wa', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-125-45.hd-180-4.ch-225-88.lg-285-89.sh-300-64.ha-1023-88', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-42.hd-180-3.ch-210-62.lg-285-64.sh-290-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-155-39.hd-180-1.ch-267-64.lg-281-64', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-40.hd-206-2.ch-255-77.lg-275-76.sh-305-78.ha-1010-65.ea-1404-78', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-110-45.hd-180-30.ch-215-66.lg-270-64.sh-300-64.ea-1404-64.wa-2007.c', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-45.hd-180-7.ch-255-82.lg-280-64.sh-290-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-45.hd-180-1.ch-255-64.lg-285-82.sh-300-62.cp-3121-64', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-36.hd-180-1.ch-235-64.lg-285-64.sh-305-64.ea-1404-62.wa-2009-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-893-39.hd-180-7.ch-245-64.lg-281-64.sh-906-64.ea-1404-64', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-37.hd-180-1.ch-220-64.lg-285-64.sh-300-64', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-45.hd-207-9.ch-255-64.lg-275-64.sh-305-64', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-125-45.hd-190-4.ch-215-79.lg-285-73.sh-290-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-515-42.hd-600-1.ch-655-83.lg-710-64.sh-730-64', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-545-39.hd-600-8.ch-655-62.lg-710-73.sh-730-62.he-1602-73.ca-1812', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-515-36.hd-605-7.ch-660-71.lg-700-71', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-892-45.hd-600-1.ch-645-83.lg-720-83.sh-907-83.fa-1212.ca-1819', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-545-33.hd-600-1.ch-665-78.lg-715-89.sh-907-62', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-890-31.hd-600-2.ch-660-62.lg-700-79.sh-906-62.he-1602-80.ca-1805-78', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-540-34.hd-600-9.ch-640-62.lg-700-64.sh-907-70.he-1602-62.ca-1804-73', 'f');
INSERT INTO cms_registration_figures VALUES ('hd-620-10.ch-660-64.lg-710-64.sh-906-70.wa-2009-72.hr-890-38', 'f');
INSERT INTO cms_registration_figures VALUES ('hr-890-47.hd-629-1.ch-685-78.lg-715-85.sh-735-72.he-1606-85.ca-1804-84', 'f');
INSERT INTO cms_registration_figures VALUES ('hd-180-8.ch-255-83.lg-270-83.sh-905-83.ha-1020.fa-1202-83', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-32.hd-209-17.ch-878-1315-81.lg-3116-72-1315.ea-1401-62.fa-1212.', 'm');
INSERT INTO cms_registration_figures VALUES ('hd-180-10.ch-215-62.lg-270-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-145-31.hd-185-10.ch-255-62.lg-270-62.he-1601', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-893-33.hd-209-1.ch-3110-81-76.lg-270-80.fa-1202-80', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-45.hd-180-3.ch-215-62.lg-3116-64-73.sh-300-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-893-37.hd-180-1.ch-3111-68-67.lg-270-64.sh-906-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-31.hd-180-7.ch-877-64-62.lg-270-64.sh-305-62.wa-2009-62', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-115-31.hd-190-7.ch-255-73.lg-285-82.sh-300-64.fa-1201', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-145-42.hd-208-2.ch-225-73.lg-285-64.sh-300-64.wa-2001', 'm');
INSERT INTO cms_registration_figures VALUES ('hr-165-42.hd-180-1.ch-255-62.lg-280-64.sh-906-62.ea-1404-62.wa-2011', 'm');
--
-- Table structure for table `cms_settings`
--
DROP TABLE IF EXISTS `cms_settings`;
CREATE TABLE `cms_settings` (
`variable` varchar(80) NOT NULL,
`value` text NOT NULL,
`description` text,
`example` text,
PRIMARY KEY (`variable`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
INSERT INTO cms_settings VALUES ('cms_url', '', 'The url to your websites root directory', 'http://habboon.com');
INSERT INTO cms_settings VALUES ('client_ip', '', 'The IP address to your hotel emulator', '127.0.0.1');
INSERT INTO cms_settings VALUES ('client_port', '', 'The port that your emulator is running on', '30000');
INSERT INTO cms_settings VALUES ('client_mus', '', 'The port that your emulators MUS is running on', '30001');
INSERT INTO cms_settings VALUES ('client_variables', '', 'The url to your external variables', 'http://habboon.com/client/variables.txt');
INSERT INTO cms_settings VALUES ('client_texts', '', 'The url to your external texts', 'http://habboon.com/client/texts.txt');
--
-- Table structure for table `cms_texts`
--
DROP TABLE IF EXISTS `cms_texts`;
CREATE TABLE `cms_texts` (
`name` varchar(100) NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
INSERT INTO cms_texts VALUES ('badge_desc_AC5', 'Successfully Rescued Abitha! - November 2010');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote1', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote10', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote2', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote3', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote4', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote5', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote6', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote7', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote8', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AIPerformanceVote9', 'Gather %limit% votes.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence1', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence10', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence2', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence3', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence4', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence5', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence6', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence7', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence8', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AllTimeHotelPresence9', 'For spending total of %limit% min. in hotel.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AvatarLooks1', 'For changing your look for the first time');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_AvatarTags1', 'For tagging yourself with 5 tags');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BasicClub1', 'For joining the Habbo Club.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BasicClub2', 'For %limit% months of Habbo Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BasicClub3', 'For %limit% months of Habbo Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BasicClub4', 'For %limit% months of Habbo Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BasicClub5', 'For %limit% months of Habbo Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked1', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked10', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked11', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked12', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked13', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked14', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked15', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked16', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked17', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked18', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked19', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked2', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked20', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked3', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked4', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked5', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked6', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked7', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked8', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_BattleBallTilesLocked9', 'Lock %limit% tiles.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_EmailVerification1', 'For activating your email address. Thanks!');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Forum1', 'Member of the *************.com forums!');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience1', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience10', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience11', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience12', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience13', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience14', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience15', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience16', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience17', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience18', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience19', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience2', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience20', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience3', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience4', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience5', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience6', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience7', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience8', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GameAuthorExperience9', 'Gather %limit% points in your game room.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience1', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience10', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience11', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience12', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience13', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience14', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience15', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience16', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience17', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience18', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience19', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience2', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience20', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience3', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience4', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience5', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience6', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience7', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience8', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GamePlayerExperience9', 'Gather %limit% victory points.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver1', 'For giving a gift.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver10', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver2', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver3', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver4', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver5', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver6', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver7', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver8', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftGiver9', 'For giving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver1', 'For receiving a gift.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver10', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver2', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver3', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver4', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver5', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver6', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver7', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver8', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_GiftReceiver9', 'For receiving %limit% gifts.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Graduate1', 'For completing your confusing Habbo newbie experience.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_HappyHour1', 'For spending a Happy moment in Habbo! Log in during Happy Hour to receive this achievement.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login1', 'For logging in %limit% days in a row. Try it if you dare.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login10', 'For logging in %limit% days in a row. Breathtaking.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login2', 'For logging in %limit% days in a row. Wow!');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login3', 'For logging in %limit% days in a row. Nice one!');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login4', 'For logging in %limit% days in a row. High 5!');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login5', 'For logging in %limit% days in a row. Amazing.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login6', 'For logging in %limit% days in a row. Phenomenal.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login7', 'For logging in %limit% days in a row. Awesome.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login8', 'For logging in %limit% days in a row. Sensational.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Login9', 'For logging in %limit% days in a row. Extraordinary.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM1', 'For inviting %limit% real life friend to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM10', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM2', 'For inviting %limit% real life friend to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM3', 'For inviting %limit% real life friend to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM4', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM5', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM6', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM7', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM8', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_MGM9', 'For inviting %limit% real life friends to Habbo.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Motto1', 'For changing your motto for the first time');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Name1', 'For changing your name');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding1', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding10', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding10_HHCA', 'Give your pets at least 204600 points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding2', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding3', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding4', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding5', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding6', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding7', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding8', 'Give your pets at least %limit% points of food to earn this badge');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetFeeding9', 'Give your pets at least %limit% points of food to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp1', 'Train your pets up at least %limit% level to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp10', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp2', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp3', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp4', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp5', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp6', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp7', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp8', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLevelUp9', 'Train your pets up at least %limit% levels to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover1', 'Own %limit% pet to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover10', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover2', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover3', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover4', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover5', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover6', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover7', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover8', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetLover9', 'Own %limit% pets to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver1', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver10', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver2', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver3', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver4', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver5', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver6', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver7', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver8', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectGiver9', 'Scratch anyone\'s pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver1', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver10', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver2', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver3', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver4', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver5', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver6', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver7', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver8', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_PetRespectReceiver9', 'Have someone scratch your pet at least %limit% times to earn this badge.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration1', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration10', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration2', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration3', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration4', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration5', 'Be a member of the community for %limit% days');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration6', 'Be a member of the community for a %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration7', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration8', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RegistrationDuration9', 'Be a member of the community for %limit% days.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned1', 'For earning respect %limit% time.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned10', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned2', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned3', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned4', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned5', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned6', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned7', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned8', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectEarned9', 'For earning respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RespectGiven1', 'For giving respect %limit% times.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry1', 'For hanging out in %limit% guest rooms that you do not own. Tourist.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry10', 'For hanging out in %limit% guest rooms that you do not own. Time traveler.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry2', 'For hanging out in %limit% guest rooms that you do not own. Moocher.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry3', 'For hanging out in %limit% guest rooms that you do not own. Freeloader.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry4', 'For hanging out in %limit% guest rooms that you do not own. Backpacker.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry5', 'For hanging out in %limit% guest rooms that you do not own. Globetrotter.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry6', 'For hanging out in %limit% guest rooms that you do not own. Out of towner.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry7', 'For hanging out in %limit% guest rooms that you do not own .Gold digger.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry8', 'For hanging out in %limit% guest rooms that you do not own. Orion.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_RoomEntry9', 'For hanging out in %limit% guest rooms that you do not own. Spaceman.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_Student1', 'For being guided by a Habboon Guide and confused no more');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_TraderPass1', 'Without a trading pass you can\'t trade: you have to have an account that is 3 days old and you have to verify your email.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_VipClub1', 'For joining the VIP Club.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_VipClub2', 'For %limit% months of VIP Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_VipClub3', 'For %limit% months of VIP Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_VipClub4', 'For %limit% months of VIP Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ACH_VipClub5', 'For %limit% months of VIP Club membership.');
INSERT INTO cms_texts VALUES ('badge_desc_ADM', 'Member of the staff team');
INSERT INTO cms_texts VALUES ('badge_desc_BOT', 'Non-player character (this is a bot).');
INSERT INTO cms_texts VALUES ('badge_desc_HBA', 'Member of the moderation team');
INSERT INTO cms_texts VALUES ('badge_desc_HC1', 'Member of Habboon Club');
INSERT INTO cms_texts VALUES ('badge_desc_IT5', 'Successfully won a competition on Radio Otaku!');
INSERT INTO cms_texts VALUES ('badge_desc_NWB', 'Trial member of the moderation team');
INSERT INTO cms_texts VALUES ('badge_desc_RLX01', 'Found Astra - November 2010');
INSERT INTO cms_texts VALUES ('badge_desc_VIP', 'For joining the VIP Club.');
INSERT INTO cms_texts VALUES ('badge_desc_XXX', 'Dedicated member of Habboon');
INSERT INTO cms_texts VALUES ('badge_desc_Z63', 'Submitted an idea or bug petition that was added or fixed during beta');
INSERT INTO cms_texts VALUES ('badge_desc_Z64', 'Participated in the beta testing of Habboon');
INSERT INTO cms_texts VALUES ('badge_name_AC5', 'Quest Master');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote1', 'Unknown Star I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote10', 'Notorious X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote2', 'Hidden Talent II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote3', 'Unique III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote4', 'Noteworthy IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote5', 'Influental V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote6', 'Famous VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote7', 'Grand VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote8', 'Well-known VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AIPerformanceVote9', 'Glorious IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence1', 'Online time I-Thunderstorm');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence10', 'Online time X - F5 Tornado');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence2', 'Online time II - Drizzle');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence4', 'Online time IV - Blizzard');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence5', 'Online time V- Haze');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence6', 'Online time VI- Jet Stream');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence7', 'Online time VII- Cyclone');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence8', 'Online time VIII- Meso Cyclone');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AllTimeHotelPresence9', 'Online time IX-Tornado');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AvatarLooks1', 'Looks that Kill');
INSERT INTO cms_texts VALUES ('badge_name_ACH_AvatarTags1', '5 Words of Wisdom');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BasicClub1', 'Habbo Club member I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BasicClub2', 'Habbo Club member II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BasicClub3', 'Habbo Club member III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BasicClub4', 'Habbo Club member IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BasicClub5', 'Habbo Club member V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked1', 'Lord of the tiles I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked10', 'Lord of the tiles X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked11', 'Lord of the tiles XI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked12', 'Lord of the tiles XII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked13', 'Lord of the tiles XIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked14', 'Lord of the tiles XIV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked15', 'Lord of the tiles XV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked16', 'Lord of the tiles XVI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked17', 'Lord of the tiles XVII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked18', 'Lord of the tiles XVIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked19', 'Lord of the tiles XIX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked2', 'Lord of the tiles II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked20', 'Lord of the tiles XX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked3', 'Lord of the tiles III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked4', 'Lord of the tiles IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked5', 'Lord of the tiles V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked6', 'Lord of the tiles VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked7', 'Lord of the tiles VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked8', 'Lord of the tiles VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_BattleBallTilesLocked9', 'Lord of the tiles IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_EmailVerification1', 'True You');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Forum1', 'Community Member');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience1', 'Game Arcade owner I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience10', 'Game Arcade owner X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience11', 'Game Arcade owner XI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience12', 'Game Arcade owner XII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience13', 'Game Arcade owner XIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience14', 'Game Arcade owner XIV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience15', 'Game Arcade owner XV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience16', 'Game Arcade owner XVI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience17', 'Game Arcade owner XVII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience18', 'Game Arcade owner XVIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience19', 'Game Arcade owner XIX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience2', 'Game Arcade owner II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience20', 'Game Arcade owner XX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience3', 'Game Arcade owner III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience4', 'Game Arcade owner IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience5', 'Game Arcade owner V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience6', 'Game Arcade owner VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience7', 'Game Arcade owner VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience8', 'Game Arcade owner VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GameAuthorExperience9', 'Game Arcade owner IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience1', 'Player I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience10', 'Player X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience11', 'Player XI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience12', 'Player XII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience13', 'Player XIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience14', 'Player XIV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience15', 'Player XV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience16', 'Player XVI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience17', 'Player XVII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience18', 'Player XVIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience19', 'Player XIX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience2', 'Player II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience20', 'Player XX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience3', 'Player III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience4', 'Player IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience5', 'Player V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience6', 'Player VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience7', 'Player VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience8', 'Player VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GamePlayerExperience9', 'Player IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver1', 'Nice one I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver10', 'Wealthy X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver2', 'Well heeled II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver3', 'Prosperous III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver4', 'Well off IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver5', 'Made of money V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver6', 'Stinking rich VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver7', 'Loaded VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver8', 'Generous one VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftGiver9', 'Rolling in it IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver1', 'Greet me I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver10', 'Want to go out with me? X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver2', 'Like me a bit more II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver3', 'Cherish me III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver4', 'Adore me IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver5', 'Respect me V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver6', 'Donate me VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver7', 'Value me VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver8', 'Be wild about me VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_GiftReceiver9', 'Be hooked on me IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Graduate1', 'The Graduate');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login1', 'Traveller I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login10', 'Phoenix X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login2', 'Preferred Guest II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login3', 'Frequent Resident III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login4', 'High Roller IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login5', 'A Piece Of The Furniture V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login6', 'Covered With Moss VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login7', 'Space dust on your shoes VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login8', 'Rotten Tomato VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Login9', 'Habbo Stayer IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM1', 'Baby Shower I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM10', 'Prom X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM2', 'Luau II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM3', 'Block party III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM4', 'Dance Party IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM5', 'Slumber Party V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM6', 'Reunion VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM7', 'Housewarming VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM8', 'Ball VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_MGM9', 'Fiesta IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Motto1', 'Master of Words');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Name1', 'For changing your name');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding1', 'They\'re eating all my credits! I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding10', 'They\'re eating all my credits! X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding2', 'They\'re eating all my credits! II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding3', 'They\'re eating all my credits! III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding4', 'They\'re eating all my credits! IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding5', 'They\'re eating all my credits! V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding6', 'They\'re eating all my credits! VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding7', 'They\'re eating all my credits! VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding8', 'They\'re eating all my credits! VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetFeeding9', 'They\'re eating all my credits! IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp1', 'My pet knows a trick! I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp10', 'Pet Whisperer X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp2', 'My pet knows a trick or two! II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp3', 'I play with pets III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp4', 'My pet is tougher than yours IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp5', 'My pets know some tricks V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp6', 'My pets know a trick or two VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp7', 'Animal trainer VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp8', 'Animal trainer VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLevelUp9', 'Animal trainer IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover1', 'Can I Keep Him? I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover10', 'Zoo Keeper X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover2', 'I\'ll soon have a kennel II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover3', 'I\'ll soon have a kennel III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover4', 'I\'ll soon have a kennel IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover5', 'Pet shop keeper V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover6', 'Pet shop keeper VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover7', 'Pet shop keeper VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover8', 'Pet shop keeper VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetLover9', 'My herd is bigger than yours IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver1', 'I like your pet! I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver10', 'I\'ve shared my love X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver2', 'Scratch my back and I\'ll scratch yours II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver3', 'Pat pat! III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver4', 'Scratch scratch! IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver5', 'Pet lover V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver6', 'Pet lover VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver7', 'Pet lover VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver8', 'Pet lover VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectGiver9', 'Pet lover IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver1', 'Someone likes my pet I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver10', 'People adore my pets! X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver2', 'My pets get all the love II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver3', 'My pets get all the love III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver4', 'My pets get all the love IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver5', 'My pets get all the love V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver6', 'My pets get all the love VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver7', 'My pets get all the love VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver8', 'My pets get all the love VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_PetRespectReceiver9', 'My pets get all the love IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration1', '10 % True Habbo I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration10', '100% True Habbo X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration2', '20 % True Habbo II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration3', '30 % True Habbo III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration4', '40 % True Habbo IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration5', '50 % True Habbo V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration6', '60 % True Habbo VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration7', '70 % True Habbo VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration8', '80 % True Habbo VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RegistrationDuration9', '90 % True Habbo IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned1', '10% Respected Habbo I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned10', '100 % Respected Habbo X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned2', '20% Respected Habbo II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned3', '30% Respected Habbo III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned4', '40% Respected Habbo IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned5', '50% Respected Habbo V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned6', '60% Respected Habbo VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned7', '70% Respected Habbo VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned8', '80% Respected Habbo VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectEarned9', '90% Respected Habbo IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RespectGiven1', 'Nice as pie! I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry1', 'Room Raider I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry10', 'Pilgrim X');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry2', 'Running Room Raider II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry3', 'Ultimate Room Raider III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry4', 'Day tripper IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry5', 'Vacationer V');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry6', 'House Guest VI');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry7', 'Traveler VII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry8', 'Sightseer VIII');
INSERT INTO cms_texts VALUES ('badge_name_ACH_RoomEntry9', 'Habitué IX');
INSERT INTO cms_texts VALUES ('badge_name_ACH_Student1', 'Habbo Student');
INSERT INTO cms_texts VALUES ('badge_name_ACH_TraderPass1', 'Trading pass');
INSERT INTO cms_texts VALUES ('badge_name_ACH_VipClub1', 'VIP member I');
INSERT INTO cms_texts VALUES ('badge_name_ACH_VipClub2', 'VIP member II');
INSERT INTO cms_texts VALUES ('badge_name_ACH_VipClub3', 'VIP member III');
INSERT INTO cms_texts VALUES ('badge_name_ACH_VipClub4', 'VIP member IV');
INSERT INTO cms_texts VALUES ('badge_name_ACH_VipClub5', 'VIP member V');
INSERT INTO cms_texts VALUES ('badge_name_ADM', 'Hotel Staff');
INSERT INTO cms_texts VALUES ('badge_name_BOT', 'NPC');
INSERT INTO cms_texts VALUES ('badge_name_HappyHour1', 'HappyHour1');
INSERT INTO cms_texts VALUES ('badge_name_HBA', 'Habboon Moderator');
INSERT INTO cms_texts VALUES ('badge_name_HC1', 'Habboon Club');
INSERT INTO cms_texts VALUES ('badge_name_IT5', 'Radio Otaku Winner');
INSERT INTO cms_texts VALUES ('badge_name_NWB', 'Habboon Moderator');
INSERT INTO cms_texts VALUES ('badge_name_RLX01', 'Quest Master');
INSERT INTO cms_texts VALUES ('badge_name_VIP', 'Very Important Person');
INSERT INTO cms_texts VALUES ('badge_name_XXX', 'Habboon eXpert');
INSERT INTO cms_texts VALUES ('badge_name_Z63', 'Valued Beta Tester');
INSERT INTO cms_texts VALUES ('badge_name_Z64', 'Beta Tester');
INSERT INTO cms_texts VALUES ('fx_1', 'Spotlight');
INSERT INTO cms_texts VALUES ('fx_10', 'Flies');
INSERT INTO cms_texts VALUES ('fx_10_desc', 'Get a shower!');
INSERT INTO cms_texts VALUES ('fx_11', 'X-Ray');
INSERT INTO cms_texts VALUES ('fx_11_desc', 'X-Rayed');
INSERT INTO cms_texts VALUES ('fx_12', 'Frozen');
INSERT INTO cms_texts VALUES ('fx_12_desc', 'Ice cold!');
INSERT INTO cms_texts VALUES ('fx_13', 'Ghost');
INSERT INTO cms_texts VALUES ('fx_13_desc', 'Spooky');
INSERT INTO cms_texts VALUES ('fx_14', 'Pink Hover board');
INSERT INTO cms_texts VALUES ('fx_14_desc', 'See the world on pink hover board.');
INSERT INTO cms_texts VALUES ('fx_15', 'Yellow hover board');
INSERT INTO cms_texts VALUES ('fx_15_desc', 'As yellow as a submarine.');
INSERT INTO cms_texts VALUES ('fx_16', 'Microphone');
INSERT INTO cms_texts VALUES ('fx_16_desc', 'Habbo Dragonfly microphone');
INSERT INTO cms_texts VALUES ('fx_17', 'UFO in pink');
INSERT INTO cms_texts VALUES ('fx_17_desc', 'Fly away with this UFO of love.');
INSERT INTO cms_texts VALUES ('fx_18', 'UFO in yellow');
INSERT INTO cms_texts VALUES ('fx_18_desc', 'Unidentified yellow flying object.');
INSERT INTO cms_texts VALUES ('fx_19', 'BluesMobile');
INSERT INTO cms_texts VALUES ('fx_19_desc', 'We\'re on a mission from...');
INSERT INTO cms_texts VALUES ('fx_1_desc', 'Shine the light on me!');
INSERT INTO cms_texts VALUES ('fx_2', 'Hover board');
INSERT INTO cms_texts VALUES ('fx_20', 'HelpMobile');
INSERT INTO cms_texts VALUES ('fx_20_desc', 'How can I help?');
INSERT INTO cms_texts VALUES ('fx_21', 'RebelMobile');
INSERT INTO cms_texts VALUES ('fx_21_desc', 'Drive like lightning, crash like thunder!');
INSERT INTO cms_texts VALUES ('fx_22', 'BadMobile');
INSERT INTO cms_texts VALUES ('fx_22_desc', 'This is black sunshine!');
INSERT INTO cms_texts VALUES ('fx_23', 'totem_man_name');
INSERT INTO cms_texts VALUES ('fx_24', 'totem_merdragon_name');
INSERT INTO cms_texts VALUES ('fx_25', 'totem_eagle_name');
INSERT INTO cms_texts VALUES ('fx_26', 'totem_mix_name');
INSERT INTO cms_texts VALUES ('fx_27', 'Mighty Viking');
INSERT INTO cms_texts VALUES ('fx_27_desc', 'Do you know how to train your Dragon?');
INSERT INTO cms_texts VALUES ('fx_2_desc', 'The future of transportation.');
INSERT INTO cms_texts VALUES ('fx_3', 'UFO');
INSERT INTO cms_texts VALUES ('fx_31', 'Cheetos Effect');
INSERT INTO cms_texts VALUES ('fx_31_desc', 'Be a Cheetos!');
INSERT INTO cms_texts VALUES ('fx_32', 'Minion Effect');
INSERT INTO cms_texts VALUES ('fx_32_desc', 'Despicable Me');
INSERT INTO cms_texts VALUES ('fx_3_desc', 'Help, I\'m being abducted.');
INSERT INTO cms_texts VALUES ('fx_4', 'Twinkle');
INSERT INTO cms_texts VALUES ('fx_4_desc', 'Twinkle like the star you are.');
INSERT INTO cms_texts VALUES ('fx_5', 'Torch');
INSERT INTO cms_texts VALUES ('fx_5_desc', 'Light the dark corners of your existence.');
INSERT INTO cms_texts VALUES ('fx_6', 'HRJP-3000');
INSERT INTO cms_texts VALUES ('fx_6_desc', 'Habbo Rocket Jet Pack.');
INSERT INTO cms_texts VALUES ('fx_7', 'Butterfly effect');
INSERT INTO cms_texts VALUES ('fx_7_desc', 'Let the butterflies flap their wings.');
INSERT INTO cms_texts VALUES ('fx_8', 'Fireflies');
INSERT INTO cms_texts VALUES ('fx_8_desc', 'Light my fire');
INSERT INTO cms_texts VALUES ('fx_9', 'Love Birds');
INSERT INTO cms_texts VALUES ('fx_9_desc', 'Love is in the air.');
INSERT INTO cms_texts VALUES ('handitem1', 'tea');
INSERT INTO cms_texts VALUES ('handitem10', 'latte');
INSERT INTO cms_texts VALUES ('handitem11', 'mocha');
INSERT INTO cms_texts VALUES ('handitem12', 'macchiato');
INSERT INTO cms_texts VALUES ('handitem13', 'espresso');
INSERT INTO cms_texts VALUES ('handitem14', 'filter');
INSERT INTO cms_texts VALUES ('handitem15', 'iced');
INSERT INTO cms_texts VALUES ('handitem16', 'cappuccino');
INSERT INTO cms_texts VALUES ('handitem17', 'java');
INSERT INTO cms_texts VALUES ('handitem18', 'tap');
INSERT INTO cms_texts VALUES ('handitem19', 'cola');
INSERT INTO cms_texts VALUES ('handitem2', 'juice');
INSERT INTO cms_texts VALUES ('handitem20', 'camera');
INSERT INTO cms_texts VALUES ('handitem21', 'hamburger');
INSERT INTO cms_texts VALUES ('handitem22', 'lime soda');
INSERT INTO cms_texts VALUES ('handitem23', 'beetroot soda');
INSERT INTO cms_texts VALUES ('handitem24', 'bubble juice from 1978');
INSERT INTO cms_texts VALUES ('handitem25', 'love potion');
INSERT INTO cms_texts VALUES ('handitem26', 'calippo');
INSERT INTO cms_texts VALUES ('handitem27', 'tea');
INSERT INTO cms_texts VALUES ('handitem28', 'sake');
INSERT INTO cms_texts VALUES ('handitem29', 'tomato juice');
INSERT INTO cms_texts VALUES ('handitem3', 'carrot');
INSERT INTO cms_texts VALUES ('handitem30', 'radioactive liquid');
INSERT INTO cms_texts VALUES ('handitem31', 'pink champagne');
INSERT INTO cms_texts VALUES ('handitem34', 'fish');
INSERT INTO cms_texts VALUES ('handitem35', 'pink champagne');
INSERT INTO cms_texts VALUES ('handitem4', 'ice-cream');
INSERT INTO cms_texts VALUES ('handitem41', 'sumppi-kuppi');
INSERT INTO cms_texts VALUES ('handitem43', 'chilled soda');
INSERT INTO cms_texts VALUES ('handitem5', 'milk');
INSERT INTO cms_texts VALUES ('handitem50', 'cider');
INSERT INTO cms_texts VALUES ('handitem53', 'espresso');
INSERT INTO cms_texts VALUES ('handitem57', 'cherry soda');
INSERT INTO cms_texts VALUES ('handitem6', 'blackcurrant');
INSERT INTO cms_texts VALUES ('handitem7', 'water');
INSERT INTO cms_texts VALUES ('handitem8', 'regular');
INSERT INTO cms_texts VALUES ('handitem9', 'decaff');
INSERT INTO cms_texts VALUES ('pet.command.0', 'free');
INSERT INTO cms_texts VALUES ('pet.command.1', 'sit');
INSERT INTO cms_texts VALUES ('pet.command.10', 'speak');
INSERT INTO cms_texts VALUES ('pet.command.11', 'play');
INSERT INTO cms_texts VALUES ('pet.command.12', 'silent');
INSERT INTO cms_texts VALUES ('pet.command.13', 'nest');
INSERT INTO cms_texts VALUES ('pet.command.14', 'drink');
INSERT INTO cms_texts VALUES ('pet.command.15', 'follow left');
INSERT INTO cms_texts VALUES ('pet.command.16', 'follow right');
INSERT INTO cms_texts VALUES ('pet.command.2', 'down');
INSERT INTO cms_texts VALUES ('pet.command.3', 'here');
INSERT INTO cms_texts VALUES ('pet.command.4', 'beg');
INSERT INTO cms_texts VALUES ('pet.command.5', 'play dead');
INSERT INTO cms_texts VALUES ('pet.command.6', 'stay');
INSERT INTO cms_texts VALUES ('pet.command.7', 'follow');
INSERT INTO cms_texts VALUES ('pet.command.8', 'stand');
INSERT INTO cms_texts VALUES ('pet.command.9', 'jump');
--
-- Table structure for table `config`
--
DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
`variable_name` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `credit_vouchers`
--
DROP TABLE IF EXISTS `credit_vouchers`;
CREATE TABLE `credit_vouchers` (
`code` varchar(50) NOT NULL,
`value` int(11) NOT NULL default '0',
KEY `code` (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `ecotron_rewards`
--
DROP TABLE IF EXISTS `ecotron_rewards`;
CREATE TABLE `ecotron_rewards` (
`id` int(10) unsigned NOT NULL auto_increment,
`display_id` int(10) unsigned NOT NULL,
`item_id` int(10) unsigned NOT NULL,
`reward_level` int(11) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=27 ;
-- --------------------------------------------------------
INSERT INTO ecotron_rewards VALUES ('1', '2857', '1542', '5');
INSERT INTO ecotron_rewards VALUES ('2', '2862', '1547', '4');
INSERT INTO ecotron_rewards VALUES ('3', '2799', '1485', '3');
INSERT INTO ecotron_rewards VALUES ('4', '2802', '1487', '3');
INSERT INTO ecotron_rewards VALUES ('5', '2818', '1503', '3');
INSERT INTO ecotron_rewards VALUES ('6', '2797', '1483', '2');
INSERT INTO ecotron_rewards VALUES ('7', '2800', '1486', '2');
INSERT INTO ecotron_rewards VALUES ('8', '2816', '1501', '2');
INSERT INTO ecotron_rewards VALUES ('9', '2805', '1490', '1');
INSERT INTO ecotron_rewards VALUES ('10', '2808', '1493', '1');
INSERT INTO ecotron_rewards VALUES ('11', '2810', '1495', '1');
INSERT INTO ecotron_rewards VALUES ('12', '2796', '1482', '1');
INSERT INTO ecotron_rewards VALUES ('13', '2813', '1498', '1');
INSERT INTO ecotron_rewards VALUES ('14', '2819', '1504', '1');
INSERT INTO ecotron_rewards VALUES ('15', '2794', '1480', '2');
INSERT INTO ecotron_rewards VALUES ('16', '2809', '1494', '2');
INSERT INTO ecotron_rewards VALUES ('17', '2815', '1500', '2');
INSERT INTO ecotron_rewards VALUES ('18', '2793', '1479', '2');
INSERT INTO ecotron_rewards VALUES ('19', '2803', '1488', '2');
INSERT INTO ecotron_rewards VALUES ('20', '2820', '1505', '2');
INSERT INTO ecotron_rewards VALUES ('21', '4102', '1764', '2');
INSERT INTO ecotron_rewards VALUES ('22', '4104', '1766', '2');
INSERT INTO ecotron_rewards VALUES ('23', '4105', '1767', '2');
INSERT INTO ecotron_rewards VALUES ('24', '2795', '1481', '2');
INSERT INTO ecotron_rewards VALUES ('25', '2798', '1484', '2');
INSERT INTO ecotron_rewards VALUES ('26', '2814', '1499', '2');
--
-- Table structure for table `external_texts`
--
DROP TABLE IF EXISTS `external_texts`;
CREATE TABLE `external_texts` (
`skey` text NOT NULL,
`sval` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `external_variables`
--
DROP TABLE IF EXISTS `external_variables`;
CREATE TABLE `external_variables` (
`skey` text NOT NULL,
`sval` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
-- --------------------------------------------------------
--
-- Table structure for table `fuserights`
--
DROP TABLE IF EXISTS `fuserights`;
CREATE TABLE `fuserights` (
`rank` int(11) unsigned NOT NULL,
`fuse` varchar(50) NOT NULL,
KEY `rank` (`rank`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
INSERT INTO fuserights VALUES ('1', 'fuse_room_queue_default');
INSERT INTO fuserights VALUES ('1', 'fuse_buy_credits');
INSERT INTO fuserights VALUES ('1', 'fuse_login');
INSERT INTO fuserights VALUES ('1', 'default');
INSERT INTO fuserights VALUES ('1', 'fuse_trade');
INSERT INTO fuserights VALUES ('3', 'fuse_mod');
INSERT INTO fuserights VALUES ('6', 'fuse_admin');
INSERT INTO fuserights VALUES ('7', 'fuse_sysadmin');
INSERT INTO fuserights VALUES ('3', 'fuse_enter_any_room');
INSERT INTO fuserights VALUES ('1', 'fuse_club_dances');
INSERT INTO fuserights VALUES ('3', 'fuse_housekeeping_login');
INSERT INTO fuserights VALUES ('4', 'fuse_chatlogs');
INSERT INTO fuserights VALUES ('3', 'fuse_alert');
INSERT INTO fuserights VALUES ('3', 'fuse_kick');
INSERT INTO fuserights VALUES ('4', 'fuse_ban');
INSERT INTO fuserights VALUES ('6', 'fuse_housekeeping_catalog');
INSERT INTO fuserights VALUES ('4', 'fuse_housekeeping_moderation');
INSERT INTO fuserights VALUES ('6', 'fuse_housekeeping_sitemanagement');
INSERT INTO fuserights VALUES ('4', 'fuse_any_room_rights');
INSERT INTO fuserights VALUES ('6', 'fuse_ignore_maintenance');
INSERT INTO fuserights VALUES ('4', 'fuse_mute');
INSERT INTO fuserights VALUES ('3', 'fuse_roomkick');
INSERT INTO fuserights VALUES ('3', 'fuse_roomalert');
INSERT INTO fuserights VALUES ('4', 'fuse_enter_full_rooms');
--
-- Table structure for table `fuserights_subs`
--
DROP TABLE IF EXISTS `fuserights_subs`;
CREATE TABLE `fuserights_subs` (
`sub` varchar(120) NOT NULL,
`fuse` text NOT NULL,
KEY `sub` (`sub`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_club_dance');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_extended_buddylist');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_furni_chooser');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_priority_access');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_club_catalog');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_habbo_chooser');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_club_outfits');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_room_queue_club');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_special_room_layouts');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_club_badge');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_wardrobe');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_vip_outfits');
INSERT INTO fuserights_subs VALUES ('habbo_club', 'fuse_use_vip_room_layouts');
INSERT INTO fuserights_subs VALUES ('habbo_vip', 'fuse_larger_wardrobe');
INSERT INTO fuserights_subs VALUES ('habbo_vip', 'fuse_hide_room_walls');
--
-- Table structure for table `help_subjects`
--
DROP TABLE IF EXISTS `help_subjects`;
CREATE TABLE `help_subjects` (
`id` int(11) unsigned NOT NULL auto_increment,
`caption` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
-- --------------------------------------------------------
INSERT INTO help_subjects VALUES ('1', 'Phoenix - General');
INSERT INTO help_subjects VALUES ('2', 'Credits, Pixels and Achievements');
INSERT INTO help_subjects VALUES ('3', 'Catalogue and Furniture');
INSERT INTO help_subjects VALUES ('4', 'Rooms');
INSERT INTO help_subjects VALUES ('5', 'Infobus');
--
-- Table structure for table `help_topics`
--
DROP TABLE IF EXISTS `help_topics`;
CREATE TABLE `help_topics` (
`id` int(11) unsigned NOT NULL auto_increment,
`subject` int(11) unsigned NOT NULL default '1',
`title` varchar(50) NOT NULL,
`body` text NOT NULL,
`known_issue` enum('0','1','2') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;
-- --------------------------------------------------------
INSERT INTO help_topics VALUES ('1', '1', 'What is Phoenix Hotel?', 'uberHotel is a test platform for the new Habbo Hotel Emulator, UberEmulator. We are using this hotel to test and verify the stability, performance, and functionality of the server. This means the hotel will only be available temporarily, and certain features may be missing or broken.', '2');
INSERT INTO help_topics VALUES ('2', '1', 'Missing/broken features', 'This article will be updated to reflect an overview of features that are missing or broken.', '2');
INSERT INTO help_topics VALUES ('3', '2', 'How do I get Credits?', 'You can receive credits in a multitude of ways:\r\n\r\n* By signing up to Uber you receive some credits to get you started.\r\n* You will recieve credit updates at preset intervals.\r\n* You can play games and take part in events and competitions for prizes and credits.\r\n* You can trade other users for credits.', '1');
INSERT INTO help_topics VALUES ('4', '2', 'How do I get Pixels?', 'You automatically receive pixels every now and then. You can exchange these for effects, special pixel offers, and credits. You also receive pixels by completing achievements.', '1');
INSERT INTO help_topics VALUES ('5', '2', 'What are achievements and how do I get them?', 'Achievements are special tasks you can complete in the hotel which will give you a certain amount of pixels and a cool badge as reward.', '1');
INSERT INTO help_topics VALUES ('6', '2', 'Are all achievements available on Uber?', 'We have not yet added all achievements. The ones that are available can be seen under the \'Achievements\' tab in your inventory.', '0');
INSERT INTO help_topics VALUES ('7', '1', 'Staff on Uber', 'Uber is being maintained and moderated by a relatively small staff team. They are here to make sure everything works correctly and to help our players and keep them safe.\r\n\r\nIn general we do not have any staff openings; if we are looking for staff it will be announced on the homepage, or we will approach players we deem capable.', '2');
INSERT INTO help_topics VALUES ('8', '3', 'I have a suggestion for new furniture!', 'We do NOT accept any requests for custom furniture or anything along those lines, we only use furniture that is available on the official hotels. If you have suggestions for new furniture, try contacting Habbo. They might like your idea!', '0');
INSERT INTO help_topics VALUES ('9', '3', 'Why is this piece of furniture missing?', 'We may have not added all furniture yet or we may have purposely decided not to put it up for sale. Please do not contact us about this - we are constantly adding new furniture.', '1');
INSERT INTO help_topics VALUES ('10', '5', 'Where is the Infobus?', 'The infobus is currently available in the navigator, although bugged.', '1');
INSERT INTO help_topics VALUES ('11', '3', 'Stacking-related issues', 'The stacking system is a sensitive and complicated mechanism that still requires some work. There is generally no need to report any problems regarding stacking to us, as we are aware of problems relating to it.\r\n\r\nIf there are problems with stacking relating to a specific piece of furniture, then please submit a suggestion or bug report on our UserVoice forum.', '1');
INSERT INTO help_topics VALUES ('12', '1', 'Support Tickets & User Reports', 'We would just like to urge that the ticket system you will find in this help tool and when reporting users is only intended for SERIOUS requests. Yes, it works, and there is no need to test it. Any requests that are offensive, spam, or in anyway inappropriate may result in a ban.\r\n\r\nAlso, when submitting a help request, please keep in mind that it must be in English.', '2');
--
-- Table structure for table `homes`
--
DROP TABLE IF EXISTS `homes`;
CREATE TABLE `homes` (
`home_id` int(10) unsigned NOT NULL auto_increment,
`link_type` enum('user','group') NOT NULL default 'user',
`link_id` int(10) unsigned NOT NULL,
`allow_display` enum('0','1') NOT NULL default '1',
`bgimage` varchar(120) NOT NULL default 'b_bg_colour_01',
PRIMARY KEY (`home_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=455 ;
-- --------------------------------------------------------
--
-- Table structure for table `homes_catalog`
--
DROP TABLE IF EXISTS `homes_catalog`;
CREATE TABLE `homes_catalog` (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,
`type` varchar(1) NOT NULL,
`data` text NOT NULL,
`price` int(11) NOT NULL,
`amount` int(11) NOT NULL default '1',
`category` int(11) NOT NULL,
`sorted` enum('1','0') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1294 ;
-- --------------------------------------------------------
--
-- Table structure for table `homes_categories`
--
DROP TABLE IF EXISTS `homes_categories`;
CREATE TABLE `homes_categories` (
`id` int(10) unsigned NOT NULL auto_increment,
`parent_id` int(10) unsigned NOT NULL default '0',
`type` varchar(120) NOT NULL default 'stickers',
`caption` varchar(120) NOT NULL default 'undefined',
`fuse_requirement` varchar(120) NOT NULL default '',
`order_num` int(11) NOT NULL default '1',
`enabled` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=39 ;
-- --------------------------------------------------------
--
-- Table structure for table `homes_inventory`
--
DROP TABLE IF EXISTS `homes_inventory`;
CREATE TABLE `homes_inventory` (
`id` int(10) unsigned NOT NULL auto_increment,
`user_id` int(10) unsigned NOT NULL default '0',
`type` varchar(32) NOT NULL,
`data` varchar(250) NOT NULL,
`amount` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `homes_items`
--
DROP TABLE IF EXISTS `homes_items`;
CREATE TABLE `homes_items` (
`id` int(10) unsigned NOT NULL auto_increment,
`home_id` int(10) unsigned NOT NULL,
`type` enum('sticker','widget','stickie') NOT NULL default 'sticker',
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`z` int(11) NOT NULL default '0',
`data` text NOT NULL,
`skin` text NOT NULL,
`owner_id` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3179 ;
-- --------------------------------------------------------
--
-- Table structure for table `ipn_requests`
--
DROP TABLE IF EXISTS `ipn_requests`;
CREATE TABLE `ipn_requests` (
`id` int(11) NOT NULL auto_increment,
`date` text NOT NULL,
`ip` text NOT NULL,
`status` enum('0','1','2','3','4','5','6') NOT NULL default '0' COMMENT '0 = Error, 1 = OK, 2 = Forced, 3 = Auth failure, 4 = UID not found, 5 = Forced, 6 = Data failure',
`request_data` text NOT NULL,
`user_id` int(10) unsigned NOT NULL default '0',
`balance_diff` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `item_id_generator`
--
DROP TABLE IF EXISTS `item_id_generator`;
CREATE TABLE `item_id_generator` (
`id_generator` int(10) unsigned NOT NULL,
KEY `id_generator` (`id_generator`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `messenger_friendships`
--
DROP TABLE IF EXISTS `messenger_friendships`;
CREATE TABLE `messenger_friendships` (
`user_one_id` int(10) unsigned NOT NULL,
`user_two_id` int(10) unsigned NOT NULL,
KEY `user_one_id` (`user_one_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `messenger_requests`
--
DROP TABLE IF EXISTS `messenger_requests`;
CREATE TABLE `messenger_requests` (
`from_id` int(10) unsigned NOT NULL,
`to_id` int(10) unsigned NOT NULL,
`id` int(11) unsigned NOT NULL auto_increment,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4042 ;
-- --------------------------------------------------------
--
-- Table structure for table `moderation_forum_replies`
--
DROP TABLE IF EXISTS `moderation_forum_replies`;
CREATE TABLE `moderation_forum_replies` (
`id` int(10) unsigned NOT NULL auto_increment,
`thread_id` int(10) unsigned NOT NULL,
`poster` varchar(120) NOT NULL,
`date` varchar(50) NOT NULL,
`message` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=97 ;
-- --------------------------------------------------------
--
-- Table structure for table `moderation_forum_threads`
--
DROP TABLE IF EXISTS `moderation_forum_threads`;
CREATE TABLE `moderation_forum_threads` (
`id` int(10) unsigned NOT NULL auto_increment,
`poster` varchar(100) NOT NULL,
`subject` varchar(120) NOT NULL,
`date` varchar(50) NOT NULL,
`timestamp` double NOT NULL,
`message` text NOT NULL,
`locked` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=36 ;
-- --------------------------------------------------------
--
-- Table structure for table `moderation_presets`
--
DROP TABLE IF EXISTS `moderation_presets`;
CREATE TABLE `moderation_presets` (
`id` int(10) unsigned NOT NULL auto_increment,
`enabled` enum('0','1') NOT NULL default '1',
`type` enum('message','roommessage') NOT NULL default 'message',
`message` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=24 ;
-- --------------------------------------------------------
--
-- Table structure for table `moderation_tickets`
--
DROP TABLE IF EXISTS `moderation_tickets`;
CREATE TABLE `moderation_tickets` (
`id` int(10) unsigned NOT NULL auto_increment,
`score` int(11) NOT NULL,
`type` int(11) NOT NULL,
`status` enum('open','picked','resolved','abusive','invalid','deleted') NOT NULL default 'open',
`sender_id` int(10) unsigned NOT NULL,
`reported_id` int(10) unsigned NOT NULL,
`moderator_id` int(10) unsigned NOT NULL,
`message` text NOT NULL,
`room_id` int(10) unsigned NOT NULL,
`room_name` varchar(100) NOT NULL,
`timestamp` double NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=149 ;
CREATE TABLE `navigator_flatcats` (
`id` int(11) NOT NULL auto_increment,
`caption` varchar(100) NOT NULL,
`enabled` enum('0','1') NOT NULL default '1',
`min_rank` int(11) NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
--
-- Dumping data for table `navigator_flatcats`
--
INSERT INTO `navigator_flatcats` (`id`, `caption`, `enabled`, `min_rank`) VALUES
(0, 'No Category', '1', 1),
(1, 'Uber Staff Rooms µ', '1', 4),
(2, 'Competition Category', '0', 1),
(3, 'unused competition category', '0', 1),
(4, 'Themed & RPG Rooms', '1', 1),
(5, 'Restaurant, Bar & Night Club Rooms', '1', 1),
(6, 'Club & Group Rooms', '1', 1),
(7, 'Chat, Chill & Discussion Rooms', '1', 1),
(8, 'Maze & Theme Park Rooms', '1', 1),
(9, 'Trading & Shopping Rooms', '1', 1),
(10, 'Gaming & Race Rooms', '1', 1),
(11, 'Hair Salons & Modelling Rooms', '1', 1),
(12, 'Help Centre, Guide & Service Rooms', '1', 1),
(13, 'School, Daycare & Adoption Rooms', '1', 1),
(14, 'All Other Rooms', '1', 1);
-- --------------------------------------------------------
--
-- Table structure for table `navigator_pubcats`
--
CREATE TABLE `navigator_pubcats` (
`id` int(11) NOT NULL auto_increment,
`caption` varchar(100) NOT NULL,
`enabled` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `navigator_pubcats`
--
INSERT INTO `navigator_pubcats` (`id`, `caption`, `enabled`) VALUES
(1, 'Cafes and Restaurants', '1'),
(2, 'Lounges and Entertainment', '1'),
(3, 'Pubs and Clubs', '1'),
(4, 'Outside Spaces & Swimming Pools', '1'),
(5, 'Room Of The Week', '1');
-- --------------------------------------------------------
--
-- Table structure for table `navigator_publics`
--
CREATE TABLE `navigator_publics` (
`id` int(11) NOT NULL auto_increment,
`ordernum` int(11) NOT NULL default '1',
`bannertype` enum('0','1') NOT NULL COMMENT '0 = big, 1 = normal',
`caption` varchar(100) NOT NULL,
`image` text NOT NULL,
`image_type` enum('internal','external') NOT NULL default 'internal',
`room_id` int(10) unsigned NOT NULL,
`category_id` int(11) NOT NULL default '0',
`category_parent_id` int(11) NOT NULL default '-1',
`enabled` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3861 ;
--
-- Dumping data for table `navigator_publics`
--
INSERT INTO `navigator_publics` (`id`, `ordernum`, `bannertype`, `caption`, `image`, `image_type`, `room_id`, `category_id`, `category_parent_id`, `enabled`) VALUES
(1, 1, '1', 'Hotel Reception', 'officialrooms_hq/nav_welcome_lounge.png', 'external', 1, 0, -1, '1'),
(2, 3, '1', 'Theatredrome', 'officialrooms_hq/no_icon.png', 'external', 2, 0, -1, '1'),
(4, 6, '1', 'Picnic Area', 'officialrooms_hq/nav_sun_terrance.png', 'external', 4, 0, -1, '1'),
(5, 5, '1', 'Tea Room', 'officialrooms_hq/nav_tea_room.png', 'external', 5, 0, -1, '1'),
(6, 7, '1', 'Dusty Lounge', 'officialrooms_hq/nav_dusty_lounge.png', 'external', 6, 0, -1, '1'),
(7, 4, '1', 'Uber Cinema', 'officialrooms_hq/nav_cinema.png', 'external', 7, 0, -1, '1'),
(12, 2, '1', 'Park', 'officialrooms_hq/no_icon.png', 'external', 90465, 0, -1, '1'),
(9, 10, '1', 'Rooftop Rumble', 'officialrooms_hq/no_icon.png', 'external', 9, 0, -1, '1'),
(10, 2, '1', 'Netcafe', 'officialrooms_hq/no_icon.png', 'external', 90000, 0, -1, '1'),
(8, 2, '1', 'InfoBus', 'officialrooms_hq/nav_infobus.png', 'external', 3860, 0, -1, '1'),
(13, 11, '1', 'Habbo 3000', 'officialrooms_hq/no_icon.png', 'external', 91900, 0, -1, '1');
--
-- Table structure for table `notes`
--
DROP TABLE IF EXISTS `notes`;
CREATE TABLE `notes` (
`id` int(11) NOT NULL auto_increment,
`content` varchar(500) NOT NULL,
`date` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
-- --------------------------------------------------------
--
-- Table structure for table `ranks`
--
DROP TABLE IF EXISTS `ranks`;
CREATE TABLE `ranks` (
`id` int(11) unsigned NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`prefix` text NOT NULL,
`suffix` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
-- --------------------------------------------------------
INSERT INTO ranks VALUES ('1', 'User');
INSERT INTO ranks VALUES ('2', 'VIP');
INSERT INTO ranks VALUES ('3', 'Trial Moderator');
INSERT INTO ranks VALUES ('4', 'Moderator');
INSERT INTO ranks VALUES ('5', 'Senior Moderator');
INSERT INTO ranks VALUES ('6', 'Administrator');
INSERT INTO ranks VALUES ('7', 'Senior Administrator');
--
-- Table structure for table `rooms`
--
DROP TABLE IF EXISTS `rooms`;
CREATE TABLE `rooms` (
`id` int(10) unsigned NOT NULL auto_increment,
`roomtype` enum('public','private') NOT NULL default 'private',
`caption` varchar(100) NOT NULL default 'Room',
`owner` varchar(75) NOT NULL default '',
`description` text NOT NULL,
`category` int(11) NOT NULL default '0',
`state` enum('open','locked','password') NOT NULL default 'open',
`users_now` int(11) NOT NULL default '0',
`users_max` int(11) NOT NULL default '25',
`model_name` varchar(50) NOT NULL,
`public_ccts` text NOT NULL,
`score` int(11) NOT NULL default '0',
`tags` text NOT NULL,
`icon_bg` int(11) NOT NULL default '1',
`icon_fg` int(11) NOT NULL default '0',
`icon_items` text NOT NULL,
`password` text NOT NULL,
`wallpaper` varchar(10) NOT NULL default '0.0',
`floor` varchar(10) NOT NULL default '0.0',
`landscape` varchar(10) NOT NULL default '0.0',
`allow_pets` enum('0','1') NOT NULL default '1',
`allow_pets_eat` enum('0','1') NOT NULL default '0',
`allow_walkthrough` enum('0','1') NOT NULL default '0',
`allow_hidewall` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=93226 ;
-- --------------------------------------------------------
INSERT INTO rooms VALUES ('1', 'public', 'Welcome Lobby', '', 'Where we give you a warm welcome to the hotel!', '0', 'open', '0', '50', 'newbie_lobby', 'hh_room_nlobby', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('2', 'public', 'Theatredrome', '', 'For mass assemblies and gatherings.', '0', 'open', '0', '50', 'theater', 'hh_room_theater', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('3', 'public', 'Club Orient', '', 'Come and relax, dance under the lights or chill out with a cup of tea in this oriental styled club.', '0', 'open', '0', '30', 'orient', 'hh_room_orient', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('4', 'public', 'Picnic Area', '', 'Enjoy the ever-lasting summer sun with a fresh picnic, even in winter!', '0', 'open', '0', '50', 'picnic', 'hh_room_picnic', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('5', 'public', 'Tea Room', '', 'Have a relaxing cup of fruit, herbal or even everyday tea in this Chinese themed tea house.', '0', 'open', '0', '30', 'tearoom', 'hh_room_tearoom', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('6', 'public', 'Dusty Lounge', '', 'Origninally where the hotel air conditioning emptied its filters, this dusty, old void is now a beautifully decorated lounge!', '0', 'open', '0', '30', 'dusty_lounge', 'hh_room_dustylounge', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
INSERT INTO rooms VALUES ('7', 'public', 'Cinema', '', 'Watch or perform, the choice is yours!', '0', 'open', '0', '50', 'cinema_a', 'hh_room_cinema', '0', '', '1', '0', '', '', '0.0', '0.0', '0.0', '1', '0', '0', '0');
--
-- Table structure for table `room_ads`
--
DROP TABLE IF EXISTS `room_ads`;
CREATE TABLE `room_ads` (
`id` int(10) unsigned NOT NULL auto_increment,
`ad_image` text NOT NULL,
`ad_image_orig` text NOT NULL,
`ad_link` text NOT NULL,
`views` int(11) NOT NULL default '0',
`views_limit` int(11) NOT NULL default '0' COMMENT '0 = unlimited',
`enabled` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
-- --------------------------------------------------------
--
-- Table structure for table `room_items`
--
DROP TABLE IF EXISTS `room_items`;
CREATE TABLE `room_items` (
`id` int(10) unsigned NOT NULL,
`room_id` int(10) unsigned NOT NULL,
`base_item` int(10) unsigned NOT NULL,
`extra_data` text NOT NULL,
`x` int(11) NOT NULL,
`y` int(11) NOT NULL,
`z` double NOT NULL,
`rot` int(11) NOT NULL,
`wall_pos` varchar(100) NOT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `room_items_moodlight`
--
DROP TABLE IF EXISTS `room_items_moodlight`;
CREATE TABLE `room_items_moodlight` (
`item_id` int(10) unsigned NOT NULL,
`enabled` enum('0','1') NOT NULL default '0',
`current_preset` int(11) NOT NULL,
`preset_one` text NOT NULL,
`preset_two` text NOT NULL,
`preset_three` text NOT NULL,
KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `room_models`
--
DROP TABLE IF EXISTS `room_models`;
CREATE TABLE `room_models` (
`id` varchar(100) NOT NULL,
`door_x` int(11) NOT NULL,
`door_y` int(11) NOT NULL,
`door_z` double NOT NULL,
`door_dir` int(4) NOT NULL default '2',
`heightmap` text NOT NULL,
`public_items` text NOT NULL,
`club_only` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
('model_a', 3, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxx00000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_b', 0, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nxxxxx0000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nx00000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_c', 4, 7, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_d', 4, 7, 0, 2, 'xxxxxxxxxxxx\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxxxxxxxxxxx', '', '0'),
('model_e', 1, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxx0000000000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_f', 2, 5, 0, 2, 'xxxxxxxxxxxx\r\nxxxxxxx0000x\r\nxxxxxxx0000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nx0000000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '0'),
('model_i', 0, 10, 0, 2, 'xxxxxxxxxxxxxxxxx\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nx0000000000000000\r\nxxxxxxxxxxxxxxxxx', '', '0'),
('model_j', 0, 10, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nxxxxxxxxxxx0000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nx0000000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_k', 0, 13, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxxxxxxxxxx00000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nx000000000000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_l', 0, 16, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nx00000000xxxx00000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_m', 0, 15, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nx0000000000000000000000000000\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxx00000000xxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_n', 0, 16, 0, 2, 'xxxxxxxxxxxxxxxxxxxxx\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx000000xxxxxxxx000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000x000000x000000\r\nx000000xxxxxxxx000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('model_g', 1, 7, 1, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxx1111000000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxx00000\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1'),
('model_q', 10, 4, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nxxxxxxxxxxx22222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx222222222222222222\r\nx2222xxxxxxxxxxxxxx\r\nx2222xxxxxxxxxxxxxx\r\nx2222211111xx000000\r\nx222221111110000000\r\nx222221111110000000\r\nx2222211111xx000000\r\nxx22xxx1111xxxxxxxx\r\nxx11xxx1111xxxxxxxx\r\nx1111xx1111xx000000\r\nx1111xx111110000000\r\nx1111xx111110000000\r\nx1111xx1111xx000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_o', 0, 18, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx11111111xxxx\r\nxxxxxxxxxxxxx00000000xxxx\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nx111111100000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxx0000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_r', 10, 4, 3, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxx333333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxxxxxx33333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nxxxxxxx333333333333333333\r\nx4444433333xxxxxxxxxxxxxx\r\nx4444433333xxxxxxxxxxxxxx\r\nx44444333333222xx000000xx\r\nx44444333333222xx000000xx\r\nxxx44xxxxxxxx22xx000000xx\r\nxxx33xxxxxxxx11xx000000xx\r\nxxx33322222211110000000xx\r\nxxx33322222211110000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxx000000xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_p', 0, 23, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx22222222xxxx\r\nxxxxxxx11111111xxxx\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx11111111xxxx\r\nx2222xx00000000xxxx\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_h', 4, 4, 1, 2, 'xxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx111111x\r\nxxxxx000000x\r\nxxxxx000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxx00000000x\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx\r\nxxxxxxxxxxxx', '', '1'),
('old_skool', 2, 1, 0, 2, 'xx0xxxxxxxxxxxxxx\r\n0000000xxx00000xx\r\n0000000x0000000xx\r\n0000000xxxxxxxxxx\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n00000000000000000\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x\r\n0000000000000000x', 'SLHk49mobiles_chair3QBPAHHHk410mobiles_chair3RBPAHHHk411mobiles_chair3SBPAHHHk412mobiles_chair3PCPAHHHe101mobiles_chair1IRBHPAHe1010mobiles_chair1RBRBHPAHe110mobiles_chair1HSBHJHb111mobiles_table2ISBHHHc112mobiles_table3JSBHHHe113mobiles_chair1KSBHRAHb1110mobiles_table2RBSBHHHc1111mobiles_table3SBSBHHHa121mobiles_table1IPCHHHd122mobiles_table4JPCHHHe129mobiles_chair1QBPCHJHa1210mobiles_table1RBPCHHHd1211mobiles_table4SBPCHHHe1212mobiles_chair1PCPCHRAHe131mobiles_chair1IQCHHHe1311mobiles_chair1SBQCHHHe150mobiles_chair1HSCHPAHe170mobiles_chair1HQDHJHb171mobiles_table2IQDHHHc172mobiles_table3JQDHHHe173mobiles_chair1KQDHRAHa181mobiles_table1IRDHHHd182mobiles_table4JRDHHHe192mobiles_chair1JSDHHHe211mobiles_chair1IQEHPAHb216mobiles_table2RAQEHHHc217mobiles_table3SAQEHHHe2112mobiles_chair1PCQEHPAHe220mobiles_chair1HREHJHb221mobiles_table2IREHHHc222mobiles_table3JREHHHe223mobiles_chair1KREHRAHe225mobiles_chair1QAREHJHa226mobiles_table1RAREHHHd227mobiles_table4SAREHHHe228mobiles_chair1PBREHRAHe2211mobiles_chair1SBREHJHb2212mobiles_table2PCREHHHc2213mobiles_table3QCREHHHe2214mobiles_chair1RCREHRAHa231mobiles_table1ISEHHHd232mobiles_table4JSEHHHa2312mobiles_table1PCSEHHHd2313mobiles_table4QCSEHHHe241mobiles_chair1IPFHHHe247mobiles_chair1SAPFHPAHe2413mobiles_chair1QCPFHH', '0'),
('pizza', 5, 27, 1, 2, 'xxxxxxxxx0000000\r\nx11111x1xx000000\r\n11xxxxx111x00000\r\n11x1111111xx0000\r\n11x1111111100000\r\nxxx1111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n1111111111100000\r\n11111111111xxxxx\r\n1111111111xxxxxx\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n1111111111111111\r\n11xx11xx11111111\r\nxxxx11xxxxxxxxxx\r\nxxxx11xxxxxxxxxx', 'QGHa015pizza_plant1SCHHJHe314pizza_sofa1RCKHPAHE315pizza_sofa2SCKHPAHc515pizza_tableSCQAHJHb60pizza_plant2HRAIJHf614pizza_sofa3RCRAHHHF615pizza_sofa4SCRAHHHd81pizza_chairIPBIPAHd82pizza_chairJPBIPAHc102pizza_tableJRBIJHe1014pizza_sofa1RCRBHPAHE1015pizza_sofa2SCRBHPAHd111pizza_chairISBIHHd112pizza_chairJSBIHHc1215pizza_tableSCPCHJHf1314pizza_sofa3RCQCHHHF1315pizza_sofa4SCQCHHHd161pizza_chairIPDIPAHd162pizza_chairJPDIPAHc182pizza_tableJRDIJHd191pizza_chairISDIHHd192pizza_chairJSDIHHd2111pizza_chairSBQEIJHd2114pizza_chairRCQEIRAHd2211pizza_chairSBREIJHc2213pizza_tableQCREIHHd2214pizza_chairRCREIRAHa250pizza_plant1HQFIJHa2515pizza_plant1SCQFIJ', '0'),
('pub_a', 15, 25, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222211111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222111xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nxxxxxxxxx2222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333333332222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333332222222222222000xxx\r\nx333333332222222222000xxx\r\nxxxxx31111112222222000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxx31111111000000000xxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxx00xxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx', 'SWHS119pub_sofa2SDIIPAHs120pub_sofaPEIIPAHs121pub_sofaQEIIPAHq211bardesk1SBJJHHc212pub_chairPCJJRAHQ311bardesk2SBKJHHq411bardesk1SBPAJHHc412pub_chairPCPAJRAHQ511bardesk2SBQAJHHf518pub_fenceRDQAJIHq611bardesk1SBRAJHHc612pub_chairPCRAJRAHf618pub_fenceRDRAJHHQ711bardesk2SBSAJHHf718pub_fenceRDSAJHHq811bardesk1SBPBJHHc812pub_chairPCPBJRAHf818pub_fenceRDPBJHHw910bardesk4RBQBJHHW911bardesk3SBQBJHHf918pub_fenceRDQBJHHf1018pub_fenceRDRBJHHC112pub_chair2JSBKPAHC113pub_chair2KSBKPAHC115pub_chair2QASBKPAHC116pub_chair2RASBKPAHf118pub_fencePBSBKIHf1118pub_fenceRDSBJHHf128pub_fencePBPCKHHf1218pub_fenceRDPCJHHf138pub_fencePBQCKHHC139pub_chair2QBQCJJHk1314pub_chair3RCQCJJHT1315pub_table2SCQCJIHk1316pub_chair3PDQCJRAHf1318pub_fenceRDQCJHHf148pub_fencePBRCKJHC149pub_chair2QBRCJJHk1414pub_chair3RCRCJJHT1415pub_table2SCRCJJHk1416pub_chair3PDRCJRAHf1418pub_fenceRDRCJHHt151pub_tableISCKHHf155pub_fenceQASCKIHf1518pub_fenceRDSCJHHS161pub_sofa2IPDKJHf165pub_fenceQAPDKHHf1618pub_fenceRDPDJHHs171pub_sofaIQDKJHf175pub_fenceQAQDKHHk1713pub_chair3QCQDJPAHk1714pub_chair3RCQDJPAHk1715pub_chair3SCQDJPAHk1716pub_chair3PDQDJPAHf1718pub_fenceRDQDJHHs181pub_sofaIRDKJHf185pub_fenceQARDKHHT1813pub_table2QCRDJQAHT1814pub_table2RCRDJRAHT1815pub_table2SCRDJRAHT1816pub_table2PDRDJPAHf1818pub_fenceRDRDJHHs192pub_sofaJSDKHHS193pub_sofa2KSDKHHf195pub_fenceQASDKHHk1913pub_chair3QCSDJHHk1914pub_chair3RCSDJHHk1915pub_chair3SCSDJHHk1916pub_chair3PDSDJHHf1918pub_fenceRDSDJHHf201pub_fenceIPEKQAHf202pub_fenceJPEKRAHf203pub_fenceKPEKRAHf204pub_fencePAPEKRAHf205pub_fenceQAPEKKHf2018pub_fenceRDPEJHHS217pub_sofa2SAQEIPAHs218pub_sofaPBQEIPAHf2112pub_fencePCQEJQAHf2113pub_fenceQCQEJRAHf2114pub_fenceRCQEJRAHf2115pub_fenceSCQEJRAHf2116pub_fencePDQEJRAHf2117pub_fenceQDQEJRAHf2118pub_fenceRDQEJKHS226pub_sofa2RAREIJHt2215pub_tableSCREHHHC2216pub_chair2PDREHPAHC2217pub_chair2QDREHPAHs236pub_sofaRASEIJHT238pub_table2PBSEIIHs246pub_sofaRAPFIJHT248pub_table2PBPFIHHs256pub_sofaRAQFIJHT258pub_table2PBQFIJ', '0'),
('newbie_lobby', 2, 11, 0, 2, 'xxxxxxxxxxxxxxxx000000\r\nxxxxx0xxxxxxxxxx000000\r\nxxxxx00000000xxx000000\r\nxxxxx000000000xx000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\n0000000000000000000000\r\nxxxxx000000000000000xx\r\nxxxxx000000000000000xx\r\nx0000000000000000000xx\r\nx0000000000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxxx0000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxxxx000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxxx00000000000xxxxx\r\nxxxxx000000000000xxxxx\r\nxxxxx000000000000xxxxx', 'SOHa016crl_lampPDHHHHy017crl_sofa2cQDHHPAHw018crl_sofa2bRDHHPAHv019crl_sofa2aSDHHPAHa020crl_lampPEHHHHb116crl_chairPDIHJHa27crl_lampSAJHHHa211crl_lampSBJHHHb216crl_chairPDJHJHc35crl_pillarQAKHHHb37crl_chairSAKHJHu39crl_table1bQBKHHHs311crl_sofa1cSBKHRAHb316crl_chairPDKHJHA319crl_table2bSDKHHHz320crl_table2aPEKHHHa40crl_lampHPAHHHy41crl_sofa2cIPAHPAHw42crl_sofa2bJPAHPAHv43crl_sofa2aKPAHPAHa44crl_lampPAPAHHHt49crl_table1aQBPAHHHr411crl_sofa1bSBPAHRAHh415crl_wall2aSCPAHHHa416crl_lampPDPAHHHb50crl_chairHQAHJHb57crl_chairSAQAHJHq511crl_sofa1aSBQAHRAHA62crl_table2bJRAHHHz63crl_table2aKRAHHHa611crl_lampSBRAHHHb70crl_chairHSAHJHa80crl_lampHPBHHHD81crl_sofa3cIPBHHHC82crl_sofa3bJPBHHHB83crl_sofa3aKPBHHHa84crl_lampPAPBHHHo819crl_barchair2SDPBHHHp820crl_tablebarPEPBHHHo821crl_barchair2QEPBHHHE95crl_pillar2QAQBHHHc99crl_pillarQBQBHHHP158crl_desk1aPBSCHHHO159crl_deskiQBSCHHHN1510crl_deskhRBSCHHHM1610crl_deskgRBPDHHHL1710crl_deskfRBQDHHHK1810crl_deskeRBRDHHHK1910crl_deskeRBSDHHHK2010crl_deskeRBPEHHHK2110crl_deskeRBQEHHHK2210crl_deskeRBREHHHK2310crl_deskeRBSEHHHG247crl_wallbSAPFHHHK2410crl_deskeRBPFHHHF257crl_wallaSAQFHHHH258crl_desk1bPBQFHHHI259crl_desk1cQBQFHHHJ2510crl_desk1dRBQFHHHd2712crl_lamp2PCSFHHHf2713crl_cabinet2QCSFHHHe2714crl_cabinet1RCSFHHHd2715crl_lamp2SCSFHH', '0'),
('tearoom', 21, 19, 1, 6, 'xxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxx3333x33333333x\r\n333333xx3333x33333333x\r\n3333333x3333x33333333x\r\n3333333x3333x33333333x\r\n3333333xxxxxx33333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n333333333333333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333222x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\n33333333111x333333333x\r\nxxxxxxxx111xxxxxxxxxxx\r\n11111111111111111111xx\r\n1111111111111111111111\r\n1111111111111111111111\r\n11111111111111111111xx', 'QIHh113hardwoodsofa1QCIKPAHi114hardwoodsofa2RCIKPAHj115hardwoodsofa3SCIKPAHc116teabambooPDIKHHh118hardwoodsofa1RDIKPAHi119hardwoodsofa2SDIKPAHj120hardwoodsofa3PEIKPAHl313teasmalltable1QCKKHHk315teasmalltable2SCKKHHl318teasmalltable1RDKKHHk320teasmalltable2PEKKHHe62teastoolJRAKPAHe63teastoolKRAKPAHf68chinastoolredPBRAKPAHf69chinastoolredQBRAKPAHf610chinastoolredRBRAKPAHf611chinastoolredSBRAKPAHa82teatable1JPBKHHb83teatable2KPBKHHm92teastool2JQBKHHm93teastool2KQBKHHe916teastoolPDQBKPAHe917teastoolQDQBKPAHa1116teatable1PDSBKHHb1117teatable2QDSBKHHe122teastoolJPCKPAHe123teastoolKPCKPAHm1216teastool2PDPCKHHm1217teastool2QDPCKHHa142teatable1JRCKHHb143teatable2KRCKHHm152teastool2JSCKHHm153teastool2KSCKHHd180teavaseHRDIHHg190chinastoolgreenHSDIJHg200chinastoolgreenHPEIJHd210teavaseHQEIH', '0'),
('rooftop', 17, 12, 4, 2, '44xxxxxxxxxxxxxxxxxx\r\n444xxxxxxxxxxx444444\r\n4444xxxxxxxxxx444444\r\n44444xxxx4xxxx444444\r\n444444xxx44xxx444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444xx44xx44xx44\r\n44444444xx44xx44xx44\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\nx444444x444444xx4444\r\nx444444x444444xx333x\r\nx444444x444444xx222x\r\nx444444x444444xx11xx\r\nx444444x444444xxxxxx', 'PKHa10rooftop_minichairHIPAPAHd116rooftop_flatcurbPDIPAPAHe117rooftop_flatcurb2QDIPAPAHc20rooftop_rodtableHJPAHHa21rooftop_minichairIJPARAHa30rooftop_minichairHKPAHHd416rooftop_flatcurbPDPAPAHHe417rooftop_flatcurb2QDPAPAHHa62rooftop_minichairJRAPAPAHa71rooftop_minichairISAPAJHc72rooftop_rodtableJSAPAHHa73rooftop_minichairKSAPARAHa82rooftop_minichairJPBPAHHa90rooftop_minichairHQBPAPAHb100rooftop_emptytableHRBPAHHa110rooftop_minichairHSBPAHHd131rooftop_flatcurbIQCPAJHd136rooftop_flatcurbRAQCPARAHd138rooftop_flatcurbPBQCPAJHd1313rooftop_flatcurbQCQCPARAHf141rooftop_flatcurb3IRCPAJHf146rooftop_flatcurb3RARCPARAHf148rooftop_flatcurb3PBRCPAJHf1413rooftop_flatcurb3QCRCPARAHf151rooftop_flatcurb3ISCPAJHf156rooftop_flatcurb3RASCPARAHf158rooftop_flatcurb3PBSCPAJHf1513rooftop_flatcurb3QCSCPARAHf161rooftop_flatcurb3IPDPAJHf166rooftop_flatcurb3RAPDPARAHf168rooftop_flatcurb3PBPDPAJHf1613rooftop_flatcurb3QCPDPARAHg171rooftop_flatcurb4IQDPAHHf172rooftop_flatcurb3JQDPAHHf173rooftop_flatcurb3KQDPAHHf174rooftop_flatcurb3PAQDPAHHf175rooftop_flatcurb3QAQDPAHHh176rooftop_flatcurb5RAQDPAHHg178rooftop_flatcurb4PBQDPAHHf179rooftop_flatcurb3QBQDPAHHf1710rooftop_flatcurb3RBQDPAHHf1711rooftop_flatcurb3SBQDPAHHf1712rooftop_flatcurb3PCQDPAHHh1713rooftop_flatcurb5QCQDPAH', '0'),
('rooftop_2', 4, 9, 0, 2, 'x0000x000\r\nxxxxxx000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\n000000000\r\nxxx000xxx\r\nxxx000xxx', 'RDHk08rooftop_bigchairPBHHPAHl18rooftop_bigtablePBIHHHj20rooftop_sofabHJHPAHi21rooftop_sofaIJHPAHk28rooftop_bigchairPBJHHHk38rooftop_bigchairPBKHPAHl48rooftop_bigtablePBPAHHHj50rooftop_sofabHQAHHHi51rooftop_sofaIQAHHHk58rooftop_bigchairPBQAHHHj60rooftop_sofabHRAHPAHi61rooftop_sofaIRAHPAHj67rooftop_sofabSARAHPAHi68rooftop_sofaPBRAHPAHj90rooftop_sofabHQBHHHi91rooftop_sofaIQBHHHj97rooftop_sofabSAQBHHHi98rooftop_sofaPBQBHH', '0'),
('star_lounge', 37, 36, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx2222x4444442222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222x444x32222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222xx4xx22222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx222222222222222xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222211111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx22222222222222222111xxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222222222xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333x22222222221111xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx3333xx2x22222220000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx333333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx33333332222222x0000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx222222000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'PXHk1521star_tableQESCJHHa1522star_sofaRESCJPAHb1523star_sofa2SESCJPAHz1524palmPFSCJHHb1621star_sofa2QEPDJJHQ1632dj1PHPDJHHW1633dj2QHPDJHHE1634dj3RHPDJHHa1721star_sofaQEQDJJHm1728star_microphonePGQDPAHHb1821star_sofa2QERDJJHa1835star_sofaSHRDJRAHa1921star_sofaQESDJJHb1935star_sofa2SHSDJRAHb2021star_sofa2QEPEJJHb2024star_sofa2PFPEJJHa2032star_sofaPHPEJRAHa2035star_sofaSHPEJRAHa2121star_sofaQEQEJJHa2124star_sofaPFQEJJHb2132star_sofa2PHQEJRAHb2135star_sofa2SHQEJRAHc2221star_sofachairQEREJJHk2224star_tablePFREJHHb2225star_sofa2QFREJHHa2226star_sofaRFREJHHb2230star_sofa2RGREJHHa2231star_sofaSGREJHHk2232star_tablePHREJHHk2235star_tableSHREJHHz2321palmQESEJHHa2335star_sofaSHSEJRAHp2422bar10REPFJHHb2435star_sofa2SHPFJRAHa2437star_sofaQIPFIPAHb2438star_sofa2RIPFIPAHa2439star_sofaSIPFIPAHb2440star_sofa2PJPFIPAHo2522bar9REQFJHHb2525star_sofa2QFQFJHHa2526star_sofaRFQFJHHb2530star_sofa2RGQFJHHa2531star_sofaSGQFJHHa2535star_sofaSHQFJRAHb2536star_sofa2PIQFIJHi2622bar8RERFJHHX2625palm1QFRFJHHV2626palm3RFRFJHHC2630palm2RGRFJHHB2631palm4SGRFJHHb2635star_sofa2SHRFJRAHa2636star_sofaPIRFIJHk2639star_tableSIRFIHHk2640star_tablePJRFIHHu2722bar7RESFJHHa2725star_sofaQFSFJPAHb2726star_sofa2RFSFJPAHa2730star_sofaRGSFJPAHb2731star_sofa2SGSFJPAHk2735star_tableSHSFJHHz2736palmPISFIHHk2737star_tableQISFIHHy2822bar6REPGJHHt2922bar5REQGJHHk2925star_tableQFQGJHHk2926star_tableRFQGJHHk3016star_tablePDRGKHHr3022bar4RERGJHHb3116star_sofa2PDSGKJHe3122bar3RESGJHHb3125star_sofa2QFSGJHHa3126star_sofaRFSGJHHa3130star_sofaRGSGJRAHa3216star_sofaPDPHKJHw3222bar2REPHJHHB3225palm4QFPHJHHX3226palm1RFPHJHHb3230star_sofa2RGPHJRAHb3316star_sofa2PDQHKJHq3322bar1REQHJHHa3325star_sofaQFQHJPAHb3326star_sofa2RFQHJPAHa3330star_sofaRGQHJRAHa3416star_sofaPDRHKJHb3430star_sofa2RGRHJRAHV3435palm3SHRHHHHC3436palm2PIRHHHHk3516star_tablePDSHKHHa3530star_sofaRGSHJRAHb3630star_sofa2RGPIJRAHc3725star_sofachairQFQIJHHb3726star_sofa2RFQIJHHa3727star_sofaSFQIJHHb3728star_sofa2PGQIJHHa3729star_sofaQGQIJHHk3730star_tableRGQIJH', '0'),
('netcafe', 22, 12, 0, 2, 'xxxxx1111xxxxxxxxxxx1xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxxxxx0000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\nxxxx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx111000000000000000000\r\nx1xx111000000000000000000\r\nxxxx111000000000000000000\r\nxxxx11100000000000000xxxx\r\nxxxx1110000000xx11111xxxx\r\nxxxxx111110000x111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxx1111100001111111xxxx', 'RRHi06shift1RAHIPAHj07shift2SAHIPAHm110mRBIIHHl113lQCIIHHk116kPDIIHHk119kSDIIHHh35kukat6QAKIHHg36kukat5RAKIHHc312kukat2PCKIHHb313kukat1QCKIHHc319kukat2SDKIHHb320kukat1PEKIHHi412shift1PCPAHPAHj413shift2QCPAHPAHi419shift1SDPAHPAHj420shift2PEPAHPAHi50shift1HQAIPAHj51shift2IQAIPAHi52shift1JQAIPAHj53shift2KQAIPAHk715kSCSAHJHo716table2PDSAHRAHz717tablecornerQDSAHHHm718mRDSAHRAHl815lSCPBHJHo816table2PDPBHPAHl818lRDPBHRAHm94mPAQBIRAHk99kQBQBHJHp910table3RBQBHRAHz911tablecornerSBQBHHHm912mPCQBHRAHk915kSCQBHJHo916table2PDQBHJHk918kRDQBHRAHk104kPARBIRAHm109mQBRBHJHp1010table3RBRBHPAHm1012mPCRBHRAHm1015mSCRBHJHo1016table2PDRBHHHk1018kRDRBHRAHl114lPASBIRAHl119lQBSBHJHp1110table3RBSBHJHl1112lPCSBHRAHk124kPAPCIRAHl129lQBPCHJHp1210table3RBPCHHHk1212kPCPCHRAHm134mPAQCIRAHc165kukat2QAPDIHHb166kukat1RAPDIHHc167kukat2SAPDIHHb168kukat1PBPDIHHe169kukat3QBPDIHHd1615kukka2SCPDIHHf179kukat4QBQDIHHk186kRARDIRAHe189kukat3QBRDIHHs1820sofabig3PERDIRAHf199kukat4QBSDIHHn1917table1QDSDIPAHz1918tablecornerRDSDIHHr1920sofabig2PESDIRAHn2017table1QDPEIJHr2020sofabig2PEPEIRAHm216mRAQEIRAHn2117table1QDQEIHHq2120sofabig1PEQEIRAHv2316sofalittle3PDSEIHHu2317sofalittle2QDSEIHHt2318sofalittle1RDSEIHHa2320kukkaPESEIH', '0'),
('dusty_lounge', 14, 1, 2, 4, 'xxxxxxxxxxxxxx22xxxxxxxxxxxxx\r\nxxxxxxxxxx222x222x2xxxxxxxxxx\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223xxxxxxx3\r\nxxxxxxx33322222222223x33333x3\r\nxxxxxxx33322222222223x33333x3\r\nxx111xx33322222222223xxxxxxx3\r\nxx111xxx332222222222333333333\r\nxx111xxxx32222222222333333333\r\nxx111xxxxxx222222222333333333\r\nxx111xxxxxxx1111111x333333333\r\nxx111xxxxxxx1111111x222222222\r\nxx111xxxxxx111111111111111111\r\nxx111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11111xxxxxx111111111111111111\r\n11x11xxxxxx111111111111111111\r\n11xxxxxxxxx11111111111111111x\r\nx11xxxxxxxxx1111111x1111111xx\r\nxx11xxxxxxx111111111111111xxx\r\nxxx11xxxxxx11111111111111xxxx\r\nxxxx11111111111111111111xxxxx\r\nxxxxx11111111111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx\r\nxxxxxxxxxxx11111111xxxxxxxxxx', 'QHHc48greenchair2PBPAKPAHd49greenchair1QBPAKPAHc68greenchair2PBRAKHHd69greenchair1QBRAKHHa620dustylampPERAKJHa628dustylampPGRAKJHc73greenchair2KSAIPAHd74greenchair1PASAIPAHc93greenchair2KQBIHHd94greenchair1PAQBIHHb1021yellowchairQERBKJHb1023yellowchairSERBKRAHb1026yellowchairRFRBKJHb1028yellowchairPGRBKRAHc1211greenchair2SBPCIJHc133greenchair2KQCIPAHd134greenchair1PAQCIPAHd1311greenchair1SBQCIJHa1411dustylampSBRCIJHc153greenchair2KSCIHHd154greenchair1PASCIHHc1511greenchair2SBSCIJHb1524yellowchairPFSCIPAHd1611greenchair1SBPDIJHb1722yellowchairREQDIJHa1724dustylampPFQDIJHb1726yellowchairRFQDIRAHa1911dustylampSBSDIJHb1924yellowchairPFSDIHHc2312greenchair2PCSEIJHc2314greenchair2RCSEIRAHd2412greenchair1PCPFIJHd2414greenchair1RCPFIRA', '0'),
('orient', 35, 22, 0, 6, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxx00000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1000000000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxx1xx000x000xx111x111xxx\r\nxxxxxxxxxxxxxx1xx000x000xxxxxx1111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxxxxxxxxxxxxx1xx000x000x111111111xx\r\nxxx111111111111xx000x000x111111111xx\r\nxxx1xxxxxxxxxxxxx000x000x111111111xx\r\nxxx1x1111111111000000000x111111111xx\r\nxxx1x1111111111000000000xx1111111xxx\r\nxxx1x11xxxxxx11000000000xx1111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxx111xxxxxxx11000000000011111111100\r\nxxxxx1xxxxxxx11000000000011111111100\r\nxxxxx11xxxxxx11000000000xx1111111100\r\nxxxxx1111111111000000000xx1111111xxx\r\nxxxxx1111111111xx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x000x111111111xx\r\nxxxxxxxxxxxxxxxxx000x00xx11xxxx111xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxx11111111xx', 'SOHd1017benchQDRBHJHd1019benchSDRBHRAHd1021benchQERBHJHd1023benchSERBHRAHd1117benchQDSBHJHd1119benchSDSBHRAHd1121benchQESBHJHd1123benchSESBHRAHb1132koc_chairPHSBIPAHd1217benchQDPCHJHd1219benchSDPCHRAHd1221benchQEPCHJHd1223benchSEPCHRAHb1231koc_chairSGPCIJHa1232koc_tablePHPCIHHb1233koc_chairQHPCIRAHd1317benchQDQCHJHd1319benchSDQCHRAHd1321benchQEQCHJHd1323benchSEQCHRAHb1325koc_chairQFQCIPAHb1332koc_chairPHQCIHHd1417benchQDRCHJHd1419benchSDRCHRAHd1421benchQERCHJHd1423benchSERCHRAHa1425koc_tableQFRCIHHb1426koc_chairRFRCIRAHd1517benchQDSCHJHd1519benchSDSCHRAHd1521benchQESCHJHd1523benchSESCHRAHb1525koc_chairQFSCIHHb1529koc_chairQGSCIJHa1530koc_tableRGSCIHHb1531koc_chairSGSCIRAHb1630koc_chairRGPDIHHc2425chairf1QFPFIJHc2433chairf1QHPFIRAHd2517benchQDQFHJHd2519benchSDQFHRAHd2521benchQEQFHJHd2523benchSEQFHRAHc2525chairf1QFQFIJHc2533chairf1QHQFIRAHd2617benchQDRFHJHd2619benchSDRFHRAHd2621benchQERFHJHd2623benchSERFHRAHc2625chairf1QFRFIJHc2633chairf1QHRFIRAHd2717benchQDSFHJHd2719benchSDSFHRAHd2721benchQESFHJHd2723benchSESFHRAHd2817benchQDPGHJHd2819benchSDPGHRAHd2821benchQEPGHJHd2823benchSEPGHRAHd2917benchQDQGHJHd2919benchSDQGHRAHd2921benchQEQGHJHd2923benchSEQG`hFFRA', '0'),
('custom_model', 0, 0, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000xxxx\r\nxxxxxxxxxxx000000000000000xxx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx00000000000000000xx\r\nxxxxxxxxxx11111111111111111xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxx22222222222222222xx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '0'),
('theater', 20, 27, 0, 0, 'XXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXXXXXXXXXXXXXXXXXX\r\nXXXXXXX111111111XXXXXXX\r\nXXXXXXX11111111100000XX\r\nXXXX00X11111111100000XX\r\nXXXX00x11111111100000XX\r\n4XXX00X11111111100000XX\r\n4440000XXXXXXXXX00000XX\r\n444000000000000000000XX\r\n4XX000000000000000000XX\r\n4XX0000000000000000000X\r\n44400000000000000000000\r\n44400000000000000000000\r\n44X0000000000000000O000\r\n44X11111111111111111000\r\n44X11111111111111111000\r\n33X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22X11111111111111111000\r\n22211111111111111111000\r\n22211111111111111111000\r\nXXXXXXXXXXXXXXXXXXXX00X\r\nXXXXXXXXXXXXXXXXXXXX00X', 'QKHm1011micSBRBIHHd112thchair2JSBPAJHd122thchair2JPCPAJHd152thchair2JSCPAJHc156thchair1RASCHHHc157thchair1SASCHHHc158thchair1PBSCHHHc159thchair1QBSCHHHc1510thchair1RBSCHHHc1512thchair1PCSCHHHc1513thchair1QCSCHHHc1514thchair1RCSCHHHc1515thchair1SCSCHHHc1516thchair1PDSCHHHd162thchair2JPDPAJHc206thchair1RAPEIHHc207thchair1SAPEIHHc208thchair1PBPEIHHc209thchair1QBPEIHHc2010thchair1RBPEIHHc2012thchair1PCPEIHHc2013thchair1QCPEIHHc2014thchair1RCPEIHHc2015thchair1SCPEIHHc2016thchair1PDPEIHHc236thchair1RASEIHHc237thchair1SASEIHHc238thchair1PBSEIHHc239thchair1QBSEIHHc2310thchair1RBSEIHHc2312thchair1PCSEIHHc2313thchair1QCSEIHHc2314thchair1RCSEIHHc2315thchair1SCSEIHHc2316thchair1PDSEIHHc266thchair1RARFIHHc267thchair1SARFIHHc268thchair1PBRFIHHc269thchair1QBRFIHHc2610thchair1RBRFIHHc2612thchair1PCRFIHHc2613thchair1QCRFIHHc2614thchair1RCRFIHHc2615thchair1SCRFIHHc2616thchair1PDRFIH', '0'),
('picnic', 16, 5, 2, 4, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxx22222xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n22xxxxxxxxxxxxx22xxxxxxxxxxxxxxxxxxxxx\r\n2222222222222222222x222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222xxx222222222222222222222222\r\n2222222222xx33x22222222222222222222222\r\n222222222xx3333x2222222222222222222222\r\n222222222x333333x222222222222222222222\r\n222222222x333333x222222222222222222222\r\n2222222222x3332x2222222222222222222222\r\n22222222222x33x22222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222x22222xxxx22222222222222222222\r\n22222222222222xxxx22222222222222222222\r\n22222222222222xxx222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222\r\n22222222222222222222222222222222222222', 'PcHh710hedge7RBSAJPAHh711hedge7SBSAJPAHh712hedge7PCSAJPAHh713hedge7QCSAJPAHy714hedge8RCSAJPAHs718hedge2RDSAJPAHh719hedge7SDSAJPAHh720hedge7PESAJPAHh721hedge7QESAJPAHz814hedge9RCPBJPAHz818hedge9RDPBJPAHv93hedge5KQBJPAHz103hedge9KRBJPAHc1112picnic_dummychair1PCSBKPAHc1113picnic_dummychair1QCSBKPAHc1114picnic_dummychair1RCSB`hFFPAHc1310picnic_dummychair1RBQCKJHc1315picnic_dummychair1SCQCKRAHb1321picnic_groundQEQCJPAHb147picnic_groundSARCJPAHc1410picnic_dummychair1RBRCKJHc1415picnic_dummychair1SCRCKRAHb1519picnic_groundSDSCJJHb1523picnic_groundSESCJRAHb165picnic_groundQAPDJJHb169picnic_groundQBPDJRAHL1620picnic_cloth1PEPDJJHL176picnic_cloth1RAQDJJHb1721picnic_groundQEQDJHHb187picnic_groundSARDJHHa190picnic_redbench2HSDJJHA200picnic_redbench1HPEJJHw2011hedge6SBPEJPAHh2012hedge7PCPEJPAHh2013hedge7QCPEJPAHt2014hedge3RCPEJPAHu2017hedge4QDPEJPAHh2018hedge7RDPEJPAHh2019hedge7SDPEJPAHy2020hedge8PEPEJPAHv2111hedge5SBQEJPAHM2112picnic_bench1PCQEJPAHN2113picnic_bench2QCQEJPAHO2114picnic_bench3RCQEJPAHM2117picnic_bench1QDQEJPAHN2118picnic_bench2RDQEJPAHO2119picnic_bench3SDQEJPAHv2120hedge5PEQEJPAHa220picnic_redbench2HREJJHv2211hedge5SBREJPAHv2220hedge5PEREJPAHb2225picnic_groundQFREJPAHA230picnic_redbench1HSEJJHv2311hedge5SBSEJPAHM2312picnic_bench1PCSEJJHM2319picnic_bench1SDSEJRAHv2320hedge5PESEJPAHc246picnic_dummychair1RAPFJPAHd247picnic_dummychair4SAPFJPAHe248picnic_dummychair6PBPFJPAHv2411hedge5SBPFJPAHN2412picnic_bench2PCPFJJHN2419picnic_bench2SDPFJRAHv2420hedge5PEPFJPAHb2423picnic_groundSEPFJJHb2427picnic_groundSFPFJRAHK255picnic_stumpQAQFJJHv2511hedge5SBQFJPAHN2512picnic_bench2PCQFJJHN2519picnic_bench2SDQFJRAHv2520hedge5PEQFJPAHG2524picnic_cloth2PFQFJJHK267picnic_stumpSARFJHHv2611hedge5SBRFJPAHO2612picnic_bench3PCRFJJHH2614picnic_fireplace1RCRFJHHI2616picnic_fireplace2PDRFJJHO2619picnic_bench3SDRFJRAHv2620hedge5PERFJPAHb2625picnic_groundQFRFJHHz2711hedge9SBSFJPAHQ2712picnic_lemonadePCSFJPAHz2720hedge9PESFJPAHE298picnic_firewood2PBQGJHHa300picnic_redbench2HRGJJHD308picnic_firewood1PBRGJHHA310picnic_redbench1HSGJJHD318picnic_firewood1PBSGJHHM3112picnic_bench1PCSGJPAHN3113picnic_bench2QCSGJPAHO3114picnic_bench3RCSGJPAHM3118picnic_bench1RDSGJPAHN3119picnic_bench2SDSGJPAHO3120picnic_bench3PESGJPAHf3127picnic_carrotSFSGJHHf3128picnic_carrotPGSGJHHf3129picnic_carrotQGSGJHHf3130picnic_carrotRGSGJHHf3131picnic_carrotSGSGJHHD328picnic_firewood1PBPHJHHF3212picnic_table2PCPHJJHP3214picnic_tableRCPHJJHF3218picnic_table2RDPHJJHP3220picnic_tablePEPHJJHr333hedge1KQHJPAHD338picnic_firewood1PBQHJHHM3312picnic_bench1PCQHJHHN3313picnic_bench2QCQHJHHO3314picnic_bench3RCQHJHHM3318picnic_bench1RDQHJHHN3319picnic_bench2SDQHJHHO3320picnic_bench3PEQHJHHg3327picnic_cabbageSFQHJHHg3328picnic_cabbagePGQHJHHg3329picnic_cabbageQGQHJHHv343hedge5KRHJPAHD348picnic_firewood1PBRHJHHv353hedge5KSHJPAHD358picnic_firewood1PBSHJHHv363hedge5KPIJPAHD368picnic_firewood1PBPIJHHD378picnic_firewood1PBQIJHHM3712picnic_bench1PCQIJPAHN3713picnic_bench2QCQIJPAHO3714picnic_bench3RCQIJPAHM3718picnic_bench1RDQIJPAHN3719picnic_bench2SDQIJPAHO3720picnic_bench3PEQIJPAHD388picnic_firewood1PBRIJHHF3812picnic_table2PCRIJJHP3814picnic_tableRCRIJJHF3818picnic_table2RDRIJJHP3820picnic_tablePERIJJHJ398picnic_firewood3PBSIJHHM3912picnic_bench1PCSIJHHN3913picnic_bench2QCSIJHHO3914picnic_bench3RCSIJHHM3918picnic_bench1RDSIJHHN3919picnic_bench2SDSIJHHO3920picnic_bench3PESIJH', '0'),
('cinema_a', 20, 27, 1, 0, 'xxxxxxx1xx11111111xxxxxx\r\nxxx1111111111111111xxxxx\r\nxxx111xxxx1111111111xxxx\r\nxxxx2xxxxxxxxxxxxxxxxxxx\r\nxx3x3x333311xxxxxxxxxx11\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111122111\r\nxx3333333311x22222222111\r\nxx3333333311x22222222111\r\nxx3333333311xxxxxxxxx111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111111111111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\nxx3333333311111xxxx11111\r\n333333332111111xxxx11111\r\n333333332111111111111111\r\n333333332111111111111111\r\n333333332111111111111111\r\nxx3333332111111111111111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111\r\nxxxxxxxxxxxxxxxxxxx11111', 'PUHC42orangeJPAKHHA47loungey_chairSAPAKJHV48loungey_tablebigbPBPAKHHA49loungey_chairQBPAKRAHA52loungey_chairJQAKPAHA57loungey_chairSAQAKJHU58loungey_tablebigaPBQAKHHA59loungey_chairQBQAKRAHB62loungey_tableJRAKHHA72loungey_chairJSAKHHh713theater_chairQCSAIHHh714theater_chairRCSAIHHh715theater_chairSCSAIHHh716theater_chairPDSAIHHh717theater_chairQDSAIHHh718theater_chairRDSAIHHz721stairQESAIHHL89lightpoleQBPBKHHq813pomomaskiQCPBJJHq814pomomaskiRCPBJHHq815pomomaskiSCPBJHHq816pomomaskiPDPBJHHq817pomomaskiQDPBJHHq818pomomaskiRDPBJHHq819pomomaskiSDPBJIHz821stairQEPBIHHC92orangeJQBKHHh913theater_chairQCQBJHHh914theater_chairRCQBJHHh915theater_chairSCQBJHHh916theater_chairPDQBJHHh917theater_chairQDQBJHHh918theater_chairRDQBJHHh919theater_chairSDQBJHHh920theater_chairPEQBJHHz921stairQEQBIHHA102loungey_chairJRBKPAHA109loungey_chairQBRBKPAHB112loungey_tableJSBKHHB119loungey_tableQBSBKHHA122loungey_chairJPCKHHA129loungey_chairQBPCKHHd1217cubicb_chairQDPCIRAHc1219cubico_chairSDPCIJHd1315cubicb_chairSCQCIJHL1319lightpoleSDQCIHHd1320cubicb_chairPEQCIRAHL149lightpoleQBRCKHHA152loungey_chairJSCKPAHd1514cubicb_chairRCSCIPAHc1519cubico_chairSDSCIPAHB162loungey_tableJPDKHHA167loungey_chairSAPDKJHB168loungey_tablePBPDKJHA169loungey_chairQBPDKRAHd1613cubicb_chairQCPDIJHd1614cubicb_chairRCPDIRAHC1619orangeSDPDIHHA172loungey_chairJQDKHHA177loungey_chairSAQDKJHB178loungey_tablePBQDKJHA179loungey_chairQBQDKRAHd1719cubicb_chairSDQDIJHC182orangeJRDKHHd1814cubicb_chairRCRDIPAHK192bardesqueJSDKHHK202bardesqueJPEKIHb203bar_chairKPEKRAHL209lightpoleQBPEKHHd2014cubicb_chairRCPEIHHd2019cubicb_chairSDPEIJHc2020cubico_chairPEPEIRAHK212bardesqueJQEKIHb213bar_chairKQEKRAHd2119cubicb_chairSDQEIHHK222bardesqueJREKIHb223bar_chairKREKRAHL2216lightpolePDREIHHc2218cubico_chairRDREIHHK232bardesqueJSEKIHb233bar_chairKSEKRAHK242bardesqueJPFKIHb243bar_chairKPFKRAHK252bardesqueJQFKJ', '0'),
('the_den', 3, 22, 0, 0, '00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nGV00000000xxxxxxxx\r\n0000000000000000\r\n0000000000000000\r\n000000000000xx00\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\n0000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nx000000000000000\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx\r\nxxx00xxxxxxxxxxx', '', '0'),
('model_s', 0, 3, 0, 2, 'xxxxxx\r\nx00000\r\nx00000\r\n000000\r\nx00000\r\nx00000\r\nx00000\r\nx00000', '', '0'),
('park_a', 2, 15, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx00xxxxxxxxxxxx\r\nxxxxxxxxxxxxx0x00xxxxxxxxxxx0x000xxxxxxxxxxx\r\nxxxxxxxxxxxx0000000000000000000000xxxxxxxxxx\r\nxxxxxxxxxxx000000000000000000000000xxxxxxxxx\r\nxxxxxxxxxxx0000000000000000000000000xxxxxxxx\r\nxxxxxxxxxxx00000000000000000000000000xxxxxxx\r\nxxxxxxxx000000000000000000000000000000xxxxxx\r\nxxxxxxx00000000000000000000000000000000xxxxx\r\nxxxxxxx000000000000000000000000000000000xxxx\r\nxxxxxxx0000000000000000000000000000000000xxx\r\nxxxxxxxxx000000000000000000000000000000000xx\r\n00000000000000000000xx00000000000000000000xx\r\n0000000000000000000xxxx00000000000xxxxxxx0xx\r\n0000000000000000000xxxx00000000000x00000xxxx\r\nxxxxx00x0000000000xxxxx0xxxxxx0000x0000000xx\r\nxxxxx0000000000000xxxxx0xx000x0000x000000xxx\r\nxxxxx0000000000000xxxxx0x000000000x00000xxxx\r\nxxxxx000000x0000000xxxx0x000000000xxx00xxxxx\r\nxxxxxxxx000x0000000xxx00xxx000000x0000xxxxxx\r\nxxxxxxxx000x000000xxxx0x0000000000000xxxxxxx\r\nxxxxxxxx000x000000011100000000000000xxxxxxxx\r\nxxxxxxxx000x00000001110000000000000xxxxxxxxx\r\nxxxxxxxxx00x0000000111x00000000x00xxxxxxxxxx\r\nxxxxxxxxxx0x0000000xxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxxx0000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx000000xxx00xxxxx00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0xx000x00xxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxx0x000000xxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00000xxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0xxxxx00xxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxx0xxxxxxxxxxxxxxxxxxxx', 'RPHN527parkfence2SFQAHHHN529parkfence2QGQAHHHM619parkfence1SDRAHHHO620parkfence3PERAHPAHO621parkfence3QERAHPAHO622parkfence3RERAHPAHN623parkfence2SERAHPAHO624parkfence3PFRAHPAHO625parkfence3QFRAHPAHO626parkfence3RFRAHPAHM627parkfence1SFRAHJHO629parkfence3QGRAHJHN717parkfence2QDSAHHHO719parkfence3SDSAHJHO723parkfence3SESAHJHO727parkfence3SFSAHJHO729parkfence3QGSAHJHO817parkfence3QDPBHJHO819parkfence3SDPBHJHN821parkfence2QEPBHHHO823parkfence3SEPBHJHN825parkfence2QFPBHHHO827parkfence3SFPBHJHO829parkfence3QGPBHJHL98bench2PBQBHPAHK99benchQBQBHPAHO917parkfence3QDQBHJHN919parkfence2SDQBHRAHO921parkfence3QEQBHJHN923parkfence2SEQBHRAHO925parkfence3QFQBHJHN927parkfence2SFQBHRAHO929parkfence3QGQBHJHO1017parkfence3QDRBHJHO1021parkfence3QERBHJHO1025parkfence3QFRBHJHO1029parkfence3QGRBHJHL117bench2SASBHJHM1117parkfence1QDSBHPAHO1118parkfence3RDSBHPAHO1119parkfence3SDSBHPAHO1120parkfence3PESBHPAHN1121parkfence2QESBHJHO1122parkfence3RESBHPAHO1123parkfence3SESBHPAHO1124parkfence3PFSBHPAHN1125parkfence2QFSBHJHO1126parkfence3RFSBHPAHO1127parkfence3SFSBHPAHO1128parkfence3PGSBHPAHM1129parkfence1QGSBHRAHK127benchSAPCHJHL1635bench2SHPDHJHL1637bench2QIPDHPAHK1638benchRIPDHPAHK1735benchSHQDHJHL1827bench2SFRDHPAHK1828benchPGRDHPAHL1835bench2SHRDHJHL1925bench2QFSDHJHK1935benchSHSDHJHK2025benchQFPEHJHL2925bench2QFQGHPAHK2926benchRFQGHPAHL3023bench2SERGHJHK3123benchSESGHJ@`SGSBMRDPBPA0.0I2Mqueue_tile2JMPGRAH0.0I2Mqueue_tile2SAMPFSAJ0.0I2Mqueue_tile2QBMRFSAPA0.0I2Mqueue_tile2SFMSERBJ0.0I2Mqueue_tile2SCMRFPBPA0.0I2Mqueue_tile2REMPGQBH0.0I2Mqueue_tile2PGMPFRBH0.0I2Mqueue_tile2PCMPEPBH0.0I2Mqueue_tile2QGMRFRBJ0.0I2Mqueue_tile2QDMRDQBPA0.0I2Mqueue_tile2RFMRERBJ0.0I2Mqueue_tile2PFMSDRBJ0.0I2Mqueue_tile2PDMPGPBH0.0I2Mqueue_tile2RGMSFRBJ0.0I2Mqueue_tile2RAMRESAPA0.0I2Mqueue_tile2RBMPGSAH0.0I2Mqueue_tile2SDMREQBPA0.0I2Mqueue_tile2QEMRFQBPA0.0I2Mqueue_tile2RCMPFPBH0.0I2Mqueue_tile2KMRDSAPA0.0I2Mqueue_tile2PAMPESAJ0.0I2Mqueue_tile2PBMQFSAJ0.0I2Mqueue_tile2IMPGQAH0.0I2Mqueue_tile2SEMRDRBJ0.0I2Mqueue_tile2QCMREPBPA0.0I2Mqueue_tile2SGMPGRBH0.0I2Mqueue_tile2QAMQESAJ0.0I2Mqueue_tile2QFMPERBH0.0I2Mqueue_tile2RDMPEQBH0.0I2Mqueue_tile2PEMPFQBH0.0I2Mqueue_tile2', '0'),
('park_b', 11, 2, 0, 6, '0000x0000000\r\n0000xx000000\r\n000000000000\r\n00000000000x\r\n000000000000\r\n00x0000x0000', '', '0'),
('model_0', 0, 4, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\n000000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx00000000xx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1');
INSERT INTO `room_models` (`id`, `door_x`, `door_y`, `door_z`, `door_dir`, `heightmap`, `public_items`, `club_only`) VALUES
('model_v', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxx\r\nx222221111111111111x\r\nx222221111111111111x\r\n2222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nx222221111111111111x\r\nxxxxxxxx1111xxxxxxxx\r\nxxxxxxxx0000xxxxxxxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxx00000000000x\r\nx000000x00000000000x\r\nx000000x0000xxxxxxxx\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nx00000000000x000000x\r\nxxxxxxxx0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_t', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\n2222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx2222xxxxxx222222xxxxxxx2222x\r\nx2222xxxxxx111111xxxxxxx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx11xxx1111xxxx11xx2222x\r\nx2222xx11xxx0000xxxx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx22222111x00000000xx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx11xxxxxxxxxxx11xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xx111111111111111xx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx2222xxxxxxxxxxxxxxxxxxx2222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nx222222222222222222222222222x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_x', 0, 12, 0, 2, 'xxxxxxxxxxxxxxxxxxxx\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxx00xxx0000xxx00xxx\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\n0000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000x0000x000000x\r\nx000000xxxxxx000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nx000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_w', 0, 3, 2, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\n222222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx22222111111111111111111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xx11111111\r\nx2222xx1111111111xxxx1111xx\r\nx2222xx1111111111xxxx0000xx\r\nxxxxxxx1111111111xx00000000\r\nxxxxxxx1111111111xx00000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx22222111111111111000000000\r\nx2222xx1111111111xx00000000\r\nx2222xx1111111111xx00000000\r\nx2222xxxx1111xxxxxxxxxxxxxx\r\nx2222xxxx0000xxxxxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx\r\nx2222x0000000000xxxxxxxxxxx', '', '1'),
('model_z', 0, 9, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\n000000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nx00000000xx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxx00000000000000000000\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_u', 0, 17, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\n11111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nx1111100000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_y', 0, 3, 0, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\n000000000xx0000000000xx0000x\r\nx00000000xx0000000000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000xx0000x\r\nx00000000xx0000xx0000000000x\r\nx00000000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xx0000000000x\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nxxxxx0000xx0000xxxxxxxxxxxxx\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx00000000xx0000000000000000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx0000xxxxxxxxxxxxxxxxxx0000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nx00000000000000000000000000x\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_oscar', 0, 15, 1, 2, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx11111111xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111111111111100000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nx1111111x11111111x00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxx11xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxx00000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', '', '1'),
('model_b2g', 0, 0, 0, 2, 'xxxxxxxxxxxxxx\r\nx00000x000000x\r\nx000000000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nx00000x000000x\r\nxxx0xxx000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx000000000000x\r\nx00000xx00000x\r\nxxxxxxxxxxxxxx', '', '1'),
('model_opening', 0, 23, 2, 2, 'xxxxxxxxxxxxxxxxxxx\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx222222222222\r\nxxxxxxx111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx222221111111111111\r\nx2222xx111111111111\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\nx2222xx000000000000\r\n22222xx000000000000\r\nx2222xx000000000000\r\nxxxxxxxxxxxxxxxxxxx', '', '1'),
('bank', 22, 12, 0, 6, 'xxxxx1111xxxxxxxxxxx1xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxx1111111111111111xxxx\r\nxxxxxxxx0000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\n111111100000000000000xxxx\r\nxxxx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx11100000000000000xxxx\r\nx1xx111000000000000000000\r\nx1xx111000000000000000000\r\nxxxx111000000000000000000\r\nxxxx11100000000000000xxxx\r\nxxxx1110000000xx11111xxxx\r\nxxxxx111110000x111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxxx111100001111111xxxx\r\nxxxxx1111100001111111xxxx', '', '0'),
('knigth', 16, 15, 2.1, 0, '44xxxxxxxxxxxxxxxxxx\r\n444xxxxxxxxxxx444444\r\n4444xxxxxxxxxx444444\r\n44444xxxx4xxxx444444\r\n444444xxx44xxx444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\n44444444xx44xx44xx44\r\n44444444xx44xx44xx44\r\n44444444444444444444\r\n44444444444444444444\r\n44444444444444444444\r\nx444444x444444xx4444\r\nx444444x444444xx333x\r\nx444444x444444xx222x\r\nx444444x444444xx11xx\r\nx444444x444444xxxxxx', '', '0'),
('tearoom2', 21, 19, 1, 6, '3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n3333333333333333333333\r\n33333333x222x333333333\r\n33333333x222x333333333\r\n33333333x222x333333333\r\n33333333x222x333333333\r\n33333333x111x333333333\r\n33333333x111x333333333\r\n33333333x111x333333333\r\nxxxxxxxxx111xxxxxxxxxx\r\n1111111111111111111111\r\n1111111111111111111111\r\n1111111111111111111111\r\n1111111111111111111111', '', '0'),
('branded', 33, 39, 0, 8, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxx00000000xxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxx00xx00000x000xxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxx000xx00000xxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxx0000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxx00000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxx000000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxx0000000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxx00000000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxx000000000xx0000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00xx000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00xx000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00000xx000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00000xx000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00xx000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx00xx000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxx0000000000000000000000xxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx000000xxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'SIHb1834b_chairRHRDHHHb1835b_chairSHRDHHHb1836b_chairPIRDHHHb1837b_chairQIRDHHHm2231m_furniSGREHHHl2232l_furniPHREHHHk2238k_furniRIREHHHj2338j_furniRISEHHHp2518p_furniRDQFHHHa2523a_chairSEQFHRAHa2621a_chairQERFHHHa2622a_chairRERFHHHn2627n_furniSFRFHHHo2727o_furniSFSFHHHa2819a_chairSDPGHPAHa2820a_chairPEPGHPAHa2918a_chairRDQGHJHa3018a_chairRDRGHJHa3021a_chairQERGHRAHa3119a_chairSDSGHHHa3120a_chairPESGHHHa3123a_chairSESGHPAHa3224a_chairPFPHHRAHg3230g_furniRGPHHHHa3319a_chairSDQHHPAHa3324a_chairPFQHHRAHf3330f_furniRGQHHHHa3418a_chairRDRHHJHa3421a_chairQERHHRAHa3423a_chairSERHHHHe3430e_furniRGRHHHHa3518a_chairRDSHHJHa3521a_chairQESHHRAHd3530d_furniRGSHHHHa3619a_chairSDPIHHHa3620a_chairPEPIHHHc3630c_furniRGPIHHHh3737h_furniQIQIHHHi3738i_furniRIQIHH', '0');
--
-- Table structure for table `room_rights`
--
DROP TABLE IF EXISTS `room_rights`;
CREATE TABLE `room_rights` (
`room_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
KEY `room_id` (`room_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `server_status`
--
DROP TABLE IF EXISTS `server_status`;
CREATE TABLE `server_status` (
`status` enum('0','1','2') NOT NULL default '0',
`users_online` int(11) NOT NULL default '0',
`rooms_loaded` int(11) NOT NULL default '0',
`server_ver` text NOT NULL,
`stamp` double NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `site_app_form`
--
DROP TABLE IF EXISTS `site_app_form`;
CREATE TABLE `site_app_form` (
`id` varchar(24) NOT NULL,
`caption` varchar(120) NOT NULL,
`descr` text NOT NULL,
`field_type` enum('textbox','textarea','checkbox') NOT NULL,
`required` enum('0','1') NOT NULL default '1',
`order_num` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `site_app_openings`
--
DROP TABLE IF EXISTS `site_app_openings`;
CREATE TABLE `site_app_openings` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) NOT NULL,
`text_descr` text NOT NULL,
`text_reqs` text NOT NULL,
`text_duties` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_config`
--
DROP TABLE IF EXISTS `site_config`;
CREATE TABLE `site_config` (
`maintenance` enum('0','1') NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `site_cron`
--
DROP TABLE IF EXISTS `site_cron`;
CREATE TABLE `site_cron` (
`id` int(11) NOT NULL auto_increment,
`prio` int(11) NOT NULL default '5',
`enabled` enum('0','1') NOT NULL default '1',
`scriptfile` varchar(50) NOT NULL,
`last_exec` int(11) NOT NULL,
`exec_every` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_hotcampaigns`
--
DROP TABLE IF EXISTS `site_hotcampaigns`;
CREATE TABLE `site_hotcampaigns` (
`id` int(11) NOT NULL auto_increment,
`order_id` int(11) NOT NULL default '1',
`enabled` enum('0','1') NOT NULL default '1',
`image_url` text NOT NULL,
`caption` text NOT NULL,
`descr` text NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_minimail`
--
DROP TABLE IF EXISTS `site_minimail`;
CREATE TABLE `site_minimail` (
`id` int(10) unsigned NOT NULL auto_increment,
`sender_id` int(10) unsigned NOT NULL,
`receiver_id` int(10) unsigned NOT NULL,
`folder` enum('inbox','sent','trash') NOT NULL default 'inbox',
`is_read` enum('0','1') NOT NULL default '0',
`subject` varchar(120) NOT NULL,
`date` varchar(120) NOT NULL,
`isodate` varchar(120) NOT NULL,
`timestamp` int(11) NOT NULL,
`body` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=967 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_navi`
--
DROP TABLE IF EXISTS `site_navi`;
CREATE TABLE `site_navi` (
`id` int(10) unsigned NOT NULL auto_increment,
`parent_id` int(10) unsigned NOT NULL default '0',
`order_id` int(11) NOT NULL,
`caption` text NOT NULL,
`class` text NOT NULL,
`url` text NOT NULL,
`visibility` enum('0','1','2','3') NOT NULL COMMENT '0 = Never, 1 = Always, 2 = Logged in only, 3 = Guests only',
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_news`
--
DROP TABLE IF EXISTS `site_news`;
CREATE TABLE `site_news` (
`id` int(10) unsigned NOT NULL auto_increment,
`seo_link` varchar(120) NOT NULL default 'news-article',
`title` text NOT NULL,
`category_id` int(10) unsigned NOT NULL default '1',
`topstory_image` text NOT NULL,
`body` text NOT NULL,
`snippet` text NOT NULL,
`datestr` varchar(50) NOT NULL,
`timestamp` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=86 ;
-- --------------------------------------------------------
--
-- Table structure for table `site_news_categories`
--
DROP TABLE IF EXISTS `site_news_categories`;
CREATE TABLE `site_news_categories` (
`id` int(10) unsigned NOT NULL auto_increment,
`caption` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
-- --------------------------------------------------------
--
-- Table structure for table `system_stats`
--
DROP TABLE IF EXISTS `system_stats`;
CREATE TABLE `system_stats` (
`id` int(5) NOT NULL auto_increment,
`date` timestamp NOT NULL default CURRENT_TIMESTAMP,
`users` int(5) NOT NULL default '0',
`rooms` int(5) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `tele_links`
--
DROP TABLE IF EXISTS `tele_links`;
CREATE TABLE `tele_links` (
`tele_one_id` int(10) unsigned NOT NULL,
`tele_two_id` int(10) unsigned NOT NULL,
KEY `tele_one_id` (`tele_one_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) unsigned NOT NULL auto_increment,
`username` varchar(50) NOT NULL,
`real_name` varchar(100) NOT NULL default '',
`password` varchar(50) NOT NULL,
`mail` varchar(50) NOT NULL default 'defaultuser@meth0d.org',
`auth_ticket` text NOT NULL,
`rank` int(11) unsigned NOT NULL default '1',
`credits` int(11) NOT NULL default '0',
`vip_points` int(11) NOT NULL default '0',
`activity_points` int(11) NOT NULL default '0',
`activity_points_lastupdate` double NOT NULL default '0',
`look` varchar(100) NOT NULL default 'hr-115-42.hd-190-1.ch-215-62.lg-285-91.sh-290-62',
`gender` enum('M','F') NOT NULL default 'M',
`motto` varchar(50) NOT NULL,
`account_created` varchar(50) NOT NULL,
`last_online` varchar(50) NOT NULL,
`online` enum('0','1') NOT NULL default '0',
`ip_last` varchar(120) NOT NULL,
`ip_reg` varchar(120) NOT NULL,
`home_room` int(10) unsigned NOT NULL default '0',
`respect` int(11) NOT NULL default '0',
`daily_respect_points` int(11) NOT NULL default '3',
`daily_pet_respect_points` int(11) NOT NULL default '3',
`newbie_status` int(11) NOT NULL default '0',
`is_muted` enum('0','1') NOT NULL default '0',
`mutant_penalty` enum('0','1','2') NOT NULL default '0',
`mutant_penalty_expire` int(11) NOT NULL default '0',
`block_newfriends` enum('0','1') NOT NULL default '0',
`bb_ball` enum('y','b','g','r') NOT NULL default 'y',
`login_session` varchar(41) default NULL,
`hide_online` enum('0','1') NOT NULL default '0',
`hide_inroom` enum('0','1') NOT NULL default '0',
`mail_verified` varchar(6) NOT NULL default '0',
`vip` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3041 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_achievements`
--
DROP TABLE IF EXISTS `user_achievements`;
CREATE TABLE `user_achievements` (
`user_id` int(10) unsigned NOT NULL,
`achievement_id` int(10) unsigned NOT NULL,
`achievement_level` int(11) NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_badges`
--
DROP TABLE IF EXISTS `user_badges`;
CREATE TABLE `user_badges` (
`user_id` int(10) unsigned NOT NULL,
`badge_id` varchar(100) NOT NULL,
`badge_slot` int(11) NOT NULL default '0',
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_effects`
--
DROP TABLE IF EXISTS `user_effects`;
CREATE TABLE `user_effects` (
`user_id` int(10) unsigned NOT NULL,
`effect_id` int(11) NOT NULL default '1',
`total_duration` int(11) NOT NULL default '3600',
`is_activated` enum('0','1') NOT NULL default '0',
`activated_stamp` double NOT NULL default '0',
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_favorites`
--
DROP TABLE IF EXISTS `user_favorites`;
CREATE TABLE `user_favorites` (
`user_id` int(10) unsigned NOT NULL,
`room_id` int(10) unsigned NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_ignores`
--
DROP TABLE IF EXISTS `user_ignores`;
CREATE TABLE `user_ignores` (
`user_id` int(10) unsigned NOT NULL,
`ignore_id` int(10) unsigned NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_info`
--
DROP TABLE IF EXISTS `user_info`;
CREATE TABLE `user_info` (
`user_id` int(11) NOT NULL,
`bans` int(11) NOT NULL default '0',
`cautions` int(11) NOT NULL default '0',
`reg_timestamp` double NOT NULL default '0',
`login_timestamp` double NOT NULL default '0',
`cfhs` int(11) NOT NULL default '0',
`cfhs_abusive` int(11) NOT NULL default '0',
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_items`
--
DROP TABLE IF EXISTS `user_items`;
CREATE TABLE `user_items` (
`id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`base_item` int(10) unsigned NOT NULL,
`extra_data` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_pets`
--
DROP TABLE IF EXISTS `user_pets`;
CREATE TABLE `user_pets` (
`id` int(10) unsigned NOT NULL auto_increment,
`user_id` int(10) unsigned NOT NULL,
`room_id` int(10) unsigned NOT NULL,
`name` varchar(32) NOT NULL default 'Unnamed',
`race` varchar(3) NOT NULL default '000',
`color` varchar(6) NOT NULL default 'FFFFFF',
`type` int(10) unsigned NOT NULL,
`expirience` int(11) NOT NULL,
`energy` int(11) NOT NULL,
`nutrition` int(11) NOT NULL default '100',
`respect` int(11) NOT NULL default '0',
`createstamp` double NOT NULL default '0',
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`z` double NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11468 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_presents`
--
DROP TABLE IF EXISTS `user_presents`;
CREATE TABLE `user_presents` (
`item_id` int(10) unsigned NOT NULL,
`base_id` int(10) unsigned NOT NULL,
`amount` int(11) NOT NULL,
`extra_data` text NOT NULL,
KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_roomvisits`
--
DROP TABLE IF EXISTS `user_roomvisits`;
CREATE TABLE `user_roomvisits` (
`user_id` int(10) unsigned NOT NULL,
`room_id` int(10) unsigned NOT NULL,
`entry_timestamp` double NOT NULL,
`exit_timestamp` double NOT NULL,
`hour` int(11) NOT NULL,
`minute` int(11) NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_stats`
--
DROP TABLE IF EXISTS `user_stats`;
CREATE TABLE `user_stats` (
`id` int(7) NOT NULL,
`RoomVisits` int(7) NOT NULL default '0',
`OnlineTime` int(7) NOT NULL default '0',
`Respect` int(6) NOT NULL default '0',
`RespectGiven` int(6) NOT NULL default '0',
`GiftsGiven` int(6) NOT NULL default '0',
`GiftsReceived` int(6) NOT NULL default '0',
`DailyRespectPoints` int(1) NOT NULL default '3',
`DailyPetRespectPoints` int(1) NOT NULL default '3',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_subscriptions`
--
DROP TABLE IF EXISTS `user_subscriptions`;
CREATE TABLE `user_subscriptions` (
`user_id` int(10) unsigned NOT NULL,
`subscription_id` varchar(50) NOT NULL,
`timestamp_activated` int(11) NOT NULL,
`timestamp_expire` int(11) NOT NULL,
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `user_tags`
--
DROP TABLE IF EXISTS `user_tags`;
CREATE TABLE `user_tags` (
`id` int(11) NOT NULL auto_increment,
`user_id` int(10) unsigned NOT NULL,
`tag` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1164 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_wardrobe`
--
DROP TABLE IF EXISTS `user_wardrobe`;
CREATE TABLE `user_wardrobe` (
`user_id` int(10) unsigned NOT NULL,
`slot_id` int(20) unsigned NOT NULL,
`look` varchar(120) NOT NULL,
`gender` enum('F','M') NOT NULL default 'M',
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `vip_items`
--
DROP TABLE IF EXISTS `vip_items`;
CREATE TABLE `vip_items` (
`id` int(10) unsigned NOT NULL auto_increment,
`type` varchar(120) NOT NULL,
`name` text NOT NULL,
`descr` text NOT NULL,
`price` int(11) NOT NULL default '5',
`image` varchar(120) NOT NULL default '',
`featured` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Table structure for table `wiredaction`
--
DROP TABLE IF EXISTS `wiredaction`;
CREATE TABLE `wiredaction` (
`slotid` int(11) NOT NULL,
`typeaction` varchar(10) NOT NULL,
`whataction` varchar(10) NOT NULL,
`itemid` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `wiredtrigger`
--
DROP TABLE IF EXISTS `wiredtrigger`;
CREATE TABLE `wiredtrigger` (
`slotid` int(10) NOT NULL auto_increment,
`roomid` int(10) NOT NULL,
`triggertype` varchar(10) NOT NULL,
`whattrigger` varchar(10) NOT NULL,
PRIMARY KEY (`slotid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE `furniture` (
`id` int(11) unsigned NOT NULL auto_increment,
`public_name` text NOT NULL COMMENT 'temp only',
`item_name` varchar(100) NOT NULL,
`type` enum('s','i','e','h') NOT NULL default 's',
`width` int(11) NOT NULL default '1',
`length` int(11) NOT NULL default '1',
`stack_height` double NOT NULL default '1',
`can_stack` enum('0','1') NOT NULL default '1',
`can_sit` enum('0','1') NOT NULL default '0',
`is_walkable` enum('0','1') NOT NULL default '0',
`sprite_id` int(11) NOT NULL,
`allow_recycle` enum('0','1') NOT NULL default '1',
`allow_trade` enum('0','1') NOT NULL default '1',
`allow_marketplace_sell` enum('0','1') NOT NULL default '1',
`allow_gift` enum('0','1') NOT NULL default '1',
`allow_inventory_stack` enum('0','1') NOT NULL default '1',
`interaction_type` enum('default','gate','postit','roomeffect','dimmer','trophy','bed','scoreboard','vendingmachine','alert','onewaygate','loveshuffler','habbowheel','dice','bottle','teleport','rentals','pet','roller','water','ball','bb_plate','bb_green_gate','bb_blue_gate','bb_yellow_gate','bb_red_gate') NOT NULL default 'default',
`interaction_modes_count` int(11) NOT NULL default '1',
`vending_ids` varchar(100) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2785109 ;
--
-- Dumping data for table `furniture`
--
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1, 'Bookcase', 'shelves_norja', 's', 1, 1, 1, '0', '0', '0', 13, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2, 'Bookcase', 'shelves_polyfon', 's', 2, 1, 1, '0', '0', '0', 14, '1', '1', '1', '1', '1', 'default', 1, '0'),
(3, 'Bookcase', 'shelves_silo', 's', 2, 1, 1, '0', '0', '0', 15, '1', '1', '1', '1', '1', 'default', 1, '0'),
(4, 'Small Coffee Table', 'table_polyfon_small', 's', 2, 2, 1, '0', '0', '0', 17, '1', '1', '1', '1', '1', 'default', 1, '0'),
(5, 'Dining Chair', 'chair_polyfon', 's', 1, 1, 1, '0', '1', '0', 18, '1', '1', '1', '1', '1', 'default', 1, '0'),
(6, 'Coffee Table', 'table_norja_med', 's', 2, 2, 1, '1', '0', '0', 20, '1', '1', '1', '1', '1', 'default', 1, '0'),
(7, 'Coffee Table', 'table_silo_med', 's', 2, 2, 1, '1', '0', '0', 21, '1', '1', '1', '1', '1', 'default', 1, '0'),
(8, 'Occasional Table', 'table_plasto_4leg', 's', 2, 2, 1, '1', '0', '0', 22, '1', '1', '1', '1', '1', 'default', 1, '0'),
(9, 'Round Dining Table', 'table_plasto_round', 's', 2, 2, 1, '1', '0', '0', 23, '1', '1', '1', '1', '1', 'default', 1, '0'),
(10, 'Square Dining Table', 'table_plasto_bigsquare', 's', 2, 2, 1, '1', '0', '0', 24, '1', '1', '1', '1', '1', 'default', 1, '0'),
(11, 'Shelf', 'stand_polyfon_z', 's', 1, 1, 0.5, '1', '0', '0', 25, '1', '1', '1', '1', '1', 'default', 1, '0'),
(12, 'Dining Chair', 'chair_silo', 's', 1, 1, 1.1, '0', '1', '0', 26, '1', '1', '1', '1', '1', 'default', 1, '0'),
(13, 'Cushioned', 'sofa_silo', 's', 2, 1, 1.1, '0', '1', '0', 28, '1', '1', '1', '1', '1', 'default', 1, '0'),
(14, 'Bench', 'couch_norja', 's', 2, 1, 1, '0', '1', '0', 29, '1', '1', '1', '1', '1', 'default', 1, '0'),
(15, 'Chair', 'chair_norja', 's', 1, 1, 1, '0', '1', '0', 30, '1', '1', '1', '1', '1', 'default', 1, '0'),
(16, 'Large Coffee Table', 'table_polyfon_med', 's', 2, 2, 1, '1', '0', '0', 31, '1', '1', '1', '1', '1', 'default', 1, '0'),
(17, 'Doormat', 'doormat_love', 's', 1, 1, 0.1, '0', '0', '1', 32, '1', '1', '1', '1', '1', 'default', 1, '0'),
(18, 'Doormat', 'doormat_plain', 's', 1, 1, 0.1, '0', '0', '1', 33, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19, 'Armchair', 'sofachair_polyfon', 's', 1, 1, 1.1, '0', '1', '0', 34, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20, 'Two-seater Sofa', 'sofa_polyfon', 's', 2, 1, 1.1, '0', '1', '0', 35, '1', '1', '1', '1', '1', 'default', 1, '0'),
(21, 'Large', 'sofachair_silo', 's', 1, 1, 1.1, '0', '1', '0', 36, '1', '1', '1', '1', '1', 'default', 1, '0'),
(22, 'Plastic Pod Chair', 'chair_plasty', 's', 1, 1, 1, '0', '1', '0', 38, '1', '1', '1', '1', '1', 'default', 1, '0'),
(23, 'Chair', 'chair_plasto', 's', 1, 1, 1, '0', '1', '0', 39, '1', '1', '1', '1', '1', 'default', 1, '0'),
(24, 'Occasional Table', 'table_plasto_square', 's', 1, 1, 1, '1', '0', '0', 40, '1', '1', '1', '1', '1', 'default', 1, '0'),
(25, 'Double Bed', 'bed_polyfon', 's', 2, 3, 1.8, '0', '0', '0', 41, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(26, 'Single Bed', 'bed_polyfon_one', 's', 1, 3, 1.8, '0', '0', '0', 42, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(27, 'Plain Single Bed', 'bed_trad_one', 's', 2, 3, 1, '0', '0', '0', 43, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(28, 'Plain Double Bed', 'bed_trad', 's', 2, 3, 1, '0', '0', '0', 44, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(29, 'Single Bed', 'bed_silo_one', 's', 1, 3, 1.8, '0', '0', '0', 45, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(30, 'Double Bed', 'bed_silo_two', 's', 2, 3, 1.8, '0', '0', '0', 46, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(31, 'Occasional Table', 'table_silo_small', 's', 1, 1, 1, '1', '0', '0', 47, '1', '1', '1', '1', '1', 'default', 1, '0'),
(32, 'Double Bed', 'bed_armas_two', 's', 2, 3, 1.8, '0', '0', '0', 48, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(33, 'bed_budget_one', 'bed_budget_one', 's', 1, 3, 1.9, '0', '0', '0', 49, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(34, 'Comfortable', 'bed_budget', 's', 2, 3, 1.9, '0', '0', '0', 50, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(35, 'Bookcase', 'shelves_armas', 's', 2, 1, 1, '0', '0', '0', 51, '1', '1', '1', '1', '1', 'default', 1, '0'),
(36, 'Bench', 'bench_armas', 's', 2, 1, 1.1, '0', '1', '0', 52, '1', '1', '1', '1', '1', 'default', 1, '0'),
(37, 'Dining Table', 'table_armas', 's', 2, 2, 1, '1', '0', '0', 53, '1', '1', '1', '1', '1', 'default', 1, '0'),
(38, 'Occasional Table', 'small_table_armas', 's', 1, 1, 1, '1', '0', '0', 54, '1', '1', '1', '1', '1', 'default', 1, '0'),
(39, 'Stool', 'small_chair_armas', 's', 1, 1, 1, '0', '1', '0', 55, '1', '1', '1', '1', '1', 'default', 1, '0'),
(40, 'Authentic', 'fireplace_armas', 's', 2, 1, 1, '0', '0', '0', 56, '1', '1', '1', '1', '1', 'default', 2, '0'),
(41, 'Table Lamp', 'lamp_armas', 's', 1, 1, 1, '0', '0', '0', 57, '1', '1', '1', '1', '1', 'default', 2, '0'),
(42, 'Single Bed', 'bed_armas_one', 's', 1, 3, 1.8, '1', '0', '0', 58, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(43, 'Floor rug', 'carpet_standard', 's', 3, 5, 0, '1', '0', '1', 59, '1', '1', '1', '1', '1', 'default', 1, '0'),
(44, 'Hand-Woven Rug', 'carpet_armas', 's', 2, 4, 0, '1', '0', '1', 60, '1', '1', '1', '1', '1', 'default', 1, '0'),
(45, 'Faux-Fur Bear Rug', 'carpet_polar', 's', 2, 3, 0, '1', '0', '1', 61, '1', '1', '1', '1', '1', 'default', 1, '0'),
(46, 'Fireplace', 'fireplace_polyfon', 's', 2, 1, 1, '0', '0', '0', 62, '1', '1', '1', '1', '1', 'default', 2, '0'),
(47, 'Square Dining Table', 'table_plasto_4leg*1', 's', 2, 2, 1, '1', '0', '0', 63, '1', '1', '1', '1', '1', 'default', 1, '0'),
(48, 'Square Dining Table', 'table_plasto_bigsquare*1', 's', 2, 2, 1, '1', '0', '0', 64, '1', '1', '1', '1', '1', 'default', 1, '0'),
(49, 'Round Dining Table', 'table_plasto_round*1', 's', 2, 2, 1, '1', '0', '0', 65, '1', '1', '1', '1', '1', 'default', 1, '0'),
(50, 'Occasional Table', 'table_plasto_square*1', 's', 1, 1, 1, '1', '0', '0', 66, '1', '1', '1', '1', '1', 'default', 1, '0'),
(51, 'Chair', 'chair_plasto*1', 's', 1, 1, 1, '0', '1', '0', 67, '1', '1', '1', '1', '1', 'default', 1, '0'),
(52, 'Floor Rug', 'carpet_standard*1', 's', 3, 5, 0, '1', '0', '1', 68, '1', '1', '1', '1', '1', 'default', 1, '0'),
(53, 'Doormat', 'doormat_plain*1', 's', 1, 1, 0.1, '0', '0', '1', 69, '1', '1', '1', '1', '1', 'default', 1, '0'),
(54, 'Occasional Table', 'table_plasto_4leg*2', 's', 2, 2, 1, '1', '0', '0', 70, '1', '1', '1', '1', '1', 'default', 1, '0'),
(55, 'Square Dining Table', 'table_plasto_bigsquare*2', 's', 2, 2, 1, '1', '0', '0', 71, '1', '1', '1', '1', '1', 'default', 1, '0'),
(56, 'Round Dining Table', 'table_plasto_round*2', 's', 2, 2, 1, '1', '0', '0', 72, '1', '1', '1', '1', '1', 'default', 1, '0'),
(57, 'Round Dining Table', 'table_plasto_square*2', 's', 1, 1, 1, '1', '0', '0', 73, '1', '1', '1', '1', '1', 'default', 1, '0'),
(58, 'Chair', 'chair_plasto*2', 's', 1, 1, 1, '0', '1', '0', 74, '1', '1', '1', '1', '1', 'default', 1, '0'),
(59, 'Doormat', 'doormat_plain*2', 's', 1, 1, 0.1, '0', '0', '1', 75, '1', '1', '1', '1', '1', 'default', 1, '0'),
(60, 'Floor Rug', 'carpet_standard*2', 's', 3, 5, 0, '1', '0', '1', 76, '1', '1', '1', '1', '1', 'default', 1, '0'),
(61, 'Round Dining Table', 'table_plasto_4leg*3', 's', 2, 2, 1, '1', '0', '0', 77, '1', '1', '1', '1', '1', 'default', 1, '0'),
(62, 'Square Dining Table', 'table_plasto_bigsquare*3', 's', 2, 2, 1, '1', '0', '0', 78, '1', '1', '1', '1', '1', 'default', 1, '0'),
(63, 'Round Dining Table', 'table_plasto_round*3', 's', 2, 2, 1, '1', '0', '0', 79, '1', '1', '1', '1', '1', 'default', 1, '0'),
(64, 'Square Dining Table', 'table_plasto_square*3', 's', 1, 1, 1, '1', '0', '0', 80, '1', '1', '1', '1', '1', 'default', 1, '0'),
(65, 'Chair', 'chair_plasto*3', 's', 1, 1, 1, '0', '1', '0', 81, '1', '1', '1', '1', '1', 'default', 1, '0'),
(66, 'Floor Rug', 'carpet_standard*3', 's', 3, 5, 0, '1', '0', '1', 82, '1', '1', '1', '1', '1', 'default', 1, '0'),
(67, 'Doormat', 'doormat_plain*3', 's', 1, 1, 0.1, '0', '0', '1', 83, '1', '1', '1', '1', '1', 'default', 1, '0'),
(68, 'Square Dining Table', 'table_plasto_4leg*4', 's', 2, 2, 1, '1', '0', '0', 84, '1', '1', '1', '1', '1', 'default', 1, '0'),
(71, 'Square Dining Table', 'table_plasto_square*4', 's', 1, 1, 1, '1', '0', '0', 87, '1', '1', '1', '1', '1', 'default', 1, '0'),
(72, 'Chair', 'chair_plasto*4', 's', 1, 1, 1, '0', '1', '0', 88, '1', '1', '1', '1', '1', 'default', 1, '0'),
(73, 'Floor Rug', 'carpet_standard*4', 's', 3, 5, 0, '1', '0', '1', 89, '1', '1', '1', '1', '1', 'default', 1, '0'),
(74, 'Doormat', 'doormat_plain*4', 's', 1, 1, 0.1, '0', '0', '1', 90, '1', '1', '1', '1', '1', 'default', 1, '0'),
(75, 'Doormat', 'doormat_plain*6', 's', 1, 1, 0.1, '0', '0', '1', 91, '1', '1', '1', '1', '1', 'default', 1, '0'),
(76, 'Doormat', 'doormat_plain*5', 's', 1, 1, 0.1, '0', '0', '1', 93, '1', '1', '1', '1', '1', 'default', 1, '0'),
(77, 'Floor Rug', 'carpet_standard*5', 's', 3, 5, 0, '1', '0', '1', 94, '1', '1', '1', '1', '1', 'default', 1, '0'),
(78, 'Occasional Table', 'table_plasto_4leg*5', 's', 2, 2, 1, '1', '0', '0', 95, '1', '1', '1', '1', '1', 'default', 1, '0'),
(79, 'Square Dining Table', 'table_plasto_bigsquare*5', 's', 2, 2, 1, '1', '0', '0', 96, '1', '1', '1', '1', '1', 'default', 1, '0'),
(80, 'Round Dining Table', 'table_plasto_round*5', 's', 2, 2, 1, '1', '0', '0', 97, '1', '1', '1', '1', '1', 'default', 1, '0'),
(81, 'Square Dining Table', 'table_plasto_square*5', 's', 1, 1, 1, '1', '0', '0', 98, '1', '1', '1', '1', '1', 'default', 1, '0'),
(82, 'Chair', 'chair_plasto*5', 's', 1, 1, 1, '0', '1', '0', 99, '1', '1', '1', '1', '1', 'default', 1, '0'),
(83, 'Occasional table Table', 'table_plasto_4leg*6', 's', 2, 2, 1, '1', '0', '0', 100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(84, 'Square Dining Table', 'table_plasto_bigsquare*6', 's', 2, 2, 1, '1', '0', '0', 101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(85, 'Round Dining Table', 'table_plasto_round*6', 's', 2, 2, 1, '1', '0', '0', 102, '1', '1', '1', '1', '1', 'default', 1, '0'),
(86, 'Square Dining Table', 'table_plasto_square*6', 's', 1, 1, 1, '1', '0', '0', 103, '1', '1', '1', '1', '1', 'default', 1, '0'),
(87, 'Chair', 'chair_plasto*6', 's', 1, 1, 1, '0', '1', '0', 104, '1', '1', '1', '1', '1', 'default', 1, '0'),
(88, 'Occasional table', 'table_plasto_4leg*7', 's', 2, 2, 1, '1', '0', '0', 105, '1', '1', '1', '1', '1', 'default', 1, '0'),
(89, 'Square Dining Table', 'table_plasto_bigsquare*7', 's', 2, 2, 1, '1', '0', '0', 106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(90, 'Round Dining Table', 'table_plasto_round*7', 's', 2, 2, 1, '1', '0', '0', 107, '1', '1', '1', '1', '1', 'default', 1, '0'),
(91, 'Square Dining Table', 'table_plasto_square*7', 's', 1, 1, 1, '1', '0', '0', 108, '1', '1', '1', '1', '1', 'default', 1, '0'),
(92, 'Chair', 'chair_plasto*7', 's', 1, 1, 1, '0', '1', '0', 109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(93, 'Occasional Table', 'table_plasto_4leg*8', 's', 2, 2, 1, '1', '0', '0', 110, '1', '1', '1', '1', '1', 'default', 1, '0'),
(94, 'Square Dining Table', 'table_plasto_bigsquare*8', 's', 2, 2, 1, '1', '0', '0', 111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(95, 'Round Dining Table', 'table_plasto_round*8', 's', 2, 2, 1, '1', '0', '0', 112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(96, 'Square Dining Table', 'table_plasto_square*8', 's', 1, 1, 1, '1', '0', '0', 113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(97, 'Chair', 'chair_plasto*8', 's', 1, 1, 1, '0', '1', '0', 114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(98, 'Occasional Table', 'table_plasto_4leg*9', 's', 2, 2, 1, '1', '0', '0', 115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(99, 'Square Dining Table', 'table_plasto_bigsquare*9', 's', 2, 2, 1, '1', '0', '0', 116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(100, 'Square Dining Table', 'table_plasto_round*9', 's', 2, 2, 1, '1', '0', '0', 117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(101, 'Chair', 'chair_plasto*9', 's', 1, 1, 1, '0', '1', '0', 119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(102, 'Floor Rug', 'carpet_standard*6', 's', 3, 5, 0, '1', '0', '1', 120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(103, 'Plastic Pod Chair', 'chair_plasty*1', 's', 1, 1, 1, '0', '1', '0', 121, '1', '1', '1', '1', '1', 'default', 1, '0'),
(104, 'Pizza Box', 'pizza', 's', 1, 1, 1, '0', '0', '0', 122, '1', '1', '1', '1', '1', 'default', 1, '0'),
(105, 'Empty Cans', 'drinks', 's', 1, 1, 1, '0', '0', '0', 123, '1', '1', '1', '1', '1', 'default', 1, '0'),
(106, 'Plastic Pod Chair', 'chair_plasty*2', 's', 1, 1, 1, '0', '1', '0', 124, '1', '1', '1', '1', '1', 'default', 1, '0'),
(107, 'Plastic Pod Chair', 'chair_plasty*3', 's', 1, 1, 1, '0', '1', '0', 125, '1', '1', '1', '1', '1', 'default', 1, '0'),
(108, 'Plastic Pod Chair', 'chair_plasty*4', 's', 1, 1, 1, '0', '1', '0', 126, '1', '1', '1', '1', '1', 'default', 1, '0'),
(109, 'Mini-Bar', 'bar_polyfon', 's', 1, 1, 1, '0', '0', '0', 127, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,5,2,1'),
(110, 'Aloe Vera', 'plant_cruddy', 's', 1, 1, 1, '0', '0', '0', 128, '1', '1', '1', '1', '1', 'default', 1, '0'),
(111, 'Empty Spinning Bottle', 'bottle', 's', 1, 1, 1, '0', '0', '0', 129, '1', '1', '1', '1', '1', 'bottle', 0, '0'),
(112, 'Bar/desk', 'bardesk_polyfon', 's', 2, 1, 1, '1', '0', '0', 130, '1', '1', '1', '1', '1', 'default', 1, '0'),
(113, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon', 's', 1, 1, 1, '1', '0', '0', 131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(115, 'Barrel Minibar', 'bar_armas', 's', 1, 1, 1, '0', '0', '0', 133, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,2,1'),
(116, 'Bardesk', 'bartable_armas', 's', 1, 3, 1.2, '1', '0', '0', 134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(117, 'Barrel Stool', 'bar_chair_armas', 's', 1, 1, 1.2, '0', '1', '0', 135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(118, 'Soft Wool Rug', 'carpet_soft', 's', 2, 4, 0, '1', '0', '1', 136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(119, 'Soft Wool Rug', 'carpet_soft*1', 's', 2, 4, 0, '1', '0', '1', 137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(120, 'Soft Wool Rug', 'carpet_soft*2', 's', 2, 4, 0, '1', '0', '1', 138, '1', '1', '1', '1', '1', 'default', 1, '0'),
(121, 'Soft Wool Rug', 'carpet_soft*3', 's', 2, 4, 0, '1', '0', '1', 139, '1', '1', '1', '1', '1', 'default', 1, '0'),
(122, 'Soft Wool Rug', 'carpet_soft*4', 's', 2, 4, 0, '1', '0', '1', 140, '1', '1', '1', '1', '1', 'default', 1, '0'),
(123, 'Soft Wool Rug', 'carpet_soft*5', 's', 2, 4, 0, '1', '0', '1', 141, '1', '1', '1', '1', '1', 'default', 1, '0'),
(124, 'Soft Wool Rug', 'carpet_soft*6', 's', 2, 4, 0, '1', '0', '1', 143, '1', '1', '1', '1', '1', 'default', 1, '0'),
(125, 'Portable TV', 'red_tv', 's', 1, 1, 1, '1', '0', '0', 144, '1', '1', '1', '1', '1', 'default', 2, '0'),
(126, 'Large TV', 'wood_tv', 's', 1, 2, 1, '0', '0', '0', 145, '1', '1', '1', '1', '1', 'default', 4, '0'),
(127, 'Pink Faux-Fur Bear Rug', 'carpet_polar*1', 's', 2, 3, 0, '1', '0', '1', 146, '1', '1', '1', '1', '1', 'default', 1, '0'),
(128, 'Plastic Pod Chair', 'chair_plasty*5', 's', 1, 1, 1, '0', '1', '0', 147, '1', '1', '1', '1', '1', 'default', 1, '0'),
(129, 'Blue Bear Rug', 'carpet_polar*2', 's', 2, 3, 0, '1', '0', '1', 148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(130, 'Yellow Bear Rug', 'carpet_polar*3', 's', 2, 3, 0, '1', '0', '1', 149, '1', '1', '1', '1', '1', 'default', 1, '0'),
(131, 'Green Bear Rug', 'carpet_polar*4', 's', 2, 3, 0, '1', '0', '1', 150, '1', '1', '1', '1', '1', 'default', 1, '0'),
(132, 'Plastic Pod Chair', 'chair_plasty*6', 's', 1, 1, 1, '0', '1', '0', 151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(133, 'Large Coffee Table', 'table_polyfon', 's', 2, 2, 1, '1', '0', '0', 152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(134, 'Large Dining Table', 'smooth_table_polyfon', 's', 2, 2, 1, '1', '0', '0', 153, '1', '1', '1', '1', '1', 'default', 1, '0'),
(135, 'Armchair', 'sofachair_polyfon_girl', 's', 1, 1, 1.1, '0', '1', '0', 154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(136, 'Single Bed', 'bed_polyfon_girl_one', 's', 1, 3, 1.8, '0', '0', '0', 155, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(137, 'Double Bed', 'bed_polyfon_girl', 's', 2, 3, 1.8, '0', '0', '0', 156, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(138, 'Two-seater Sofa', 'sofa_polyfon_girl', 's', 2, 1, 1.1, '0', '1', '0', 157, '1', '1', '1', '1', '1', 'default', 1, '0'),
(139, 'Plain Single Bed', 'bed_budgetb_one', 's', 1, 3, 1.9, '0', '0', '0', 158, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(140, 'Plain Double Bed', 'bed_budgetb', 's', 2, 3, 1.9, '0', '0', '0', 159, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(141, 'Pineapple Plant', 'plant_pineapple', 's', 1, 1, 1, '0', '0', '0', 160, '1', '1', '1', '1', '1', 'default', 1, '0'),
(142, 'Fruit Tree', 'plant_fruittree', 's', 1, 1, 1, '0', '0', '0', 161, '1', '1', '1', '1', '1', 'default', 1, '0'),
(143, 'Small Cactus', 'plant_small_cactus', 's', 1, 1, 1, '0', '0', '0', 162, '1', '1', '1', '1', '1', 'default', 1, '0'),
(144, 'Bonsai Tree', 'plant_bonsai', 's', 1, 1, 1, '0', '0', '0', 163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(145, 'Mature Cactus', 'plant_big_cactus', 's', 1, 1, 1, '0', '0', '0', 164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(146, 'Yukka Plant', 'plant_yukka', 's', 1, 1, 1, '0', '0', '0', 165, '1', '1', '1', '1', '1', 'default', 1, '0'),
(147, 'Floor Rug', 'carpet_standard*7', 's', 3, 5, 0, '1', '0', '1', 166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(148, 'Floor Rug', 'carpet_standard*8', 's', 3, 5, 0, '1', '0', '1', 167, '1', '1', '1', '1', '1', 'default', 1, '0'),
(149, 'Floor Rug', 'carpet_standard*9', 's', 3, 5, 0, '1', '0', '1', 168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(150, 'Floor Rug', 'carpet_standard*10', 's', 3, 5, 0, '1', '0', '1', 169, '1', '1', '1', '1', '1', 'default', 1, '0'),
(151, 'Floor Rug', 'carpet_standard*11', 's', 3, 5, 0, '1', '0', '1', 170, '1', '1', '1', '1', '1', 'default', 1, '0'),
(152, 'Cut Sunflower', 'plant_sunflower', 's', 1, 1, 1, '0', '0', '0', 171, '1', '1', '1', '1', '1', 'default', 1, '0'),
(153, 'Cut Roses', 'plant_rose', 's', 1, 1, 1, '0', '0', '0', 172, '1', '1', '1', '1', '1', 'default', 1, '0'),
(154, 'Digital TV', 'tv_luxus', 's', 1, 3, 1, '0', '0', '0', 173, '1', '1', '1', '1', '1', 'default', 2, '0'),
(155, 'Bubble Bath', 'bath', 's', 1, 2, 1, '0', '1', '0', 174, '1', '1', '1', '1', '1', 'default', 2, '0'),
(156, 'Sink', 'sink', 's', 1, 1, 1, '0', '0', '0', 177, '1', '1', '1', '1', '1', 'vendingmachine', 0, '100'),
(157, 'Loo Seat', 'toilet', 's', 1, 1, 1.2, '0', '1', '0', 178, '1', '1', '1', '1', '1', 'default', 2, '0'),
(158, 'Rubber Duck', 'duck', 's', 1, 1, 1, '0', '0', '0', 179, '1', '1', '1', '1', '1', 'default', 1, '0'),
(159, 'Floor Tiles', 'tile', 's', 4, 4, 0, '1', '0', '1', 180, '1', '1', '1', '1', '1', 'default', 1, '0'),
(160, 'Loo Seat', 'toilet_red', 's', 1, 1, 1.2, '0', '1', '0', 181, '1', '1', '1', '1', '1', 'default', 2, '0'),
(161, 'Loo Seat', 'toilet_yell', 's', 1, 1, 1.2, '0', '1', '0', 182, '1', '1', '1', '1', '1', 'default', 2, '0'),
(162, 'Floor Tiles', 'tile_red', 's', 4, 4, 0, '1', '0', '1', 183, '1', '1', '1', '1', '1', 'default', 1, '0'),
(163, 'Floor Tiles', 'tile_yell', 's', 4, 4, 0, '1', '0', '1', 184, '1', '1', '1', '1', '1', 'default', 1, '0'),
(164, 'Gift', 'present_gen', 's', 1, 1, 1, '1', '0', '0', 3372, '1', '0', '1', '1', '1', 'default', 1, '0'),
(165, 'Gift', 'present_gen1', 's', 1, 1, 1, '1', '0', '0', 188, '1', '0', '1', '1', '1', 'default', 1, '0'),
(166, 'Gift', 'present_gen2', 's', 1, 1, 1, '1', '0', '0', 189, '1', '0', '1', '1', '1', 'default', 1, '0'),
(167, 'Gift', 'present_gen3', 's', 1, 1, 1, '1', '0', '0', 190, '1', '0', '1', '1', '1', 'default', 1, '0'),
(168, 'Gift', 'present_gen4', 's', 1, 1, 1, '1', '0', '0', 191, '1', '0', '1', '1', '1', 'default', 1, '0'),
(169, 'Gift', 'present_gen5', 's', 1, 1, 1, '1', '0', '0', 192, '1', '0', '1', '1', '1', 'default', 1, '0'),
(170, 'Gift', 'present_gen6', 's', 1, 1, 1, '1', '0', '0', 193, '1', '0', '1', '1', '1', 'default', 1, '0'),
(171, 'A Pura Minibar', 'bar_basic', 's', 1, 1, 1, '0', '0', '0', 195, '1', '1', '1', '1', '1', 'vendingmachine', 0, '6,2,5,1'),
(172, 'Pura Shelves', 'shelves_basic', 's', 2, 1, 1, '0', '0', '0', 196, '1', '1', '1', '1', '1', 'default', 1, '0'),
(173, 'iced sofachair', 'soft_sofachair_norja', 's', 1, 1, 1, '0', '1', '0', 197, '1', '1', '1', '1', '1', 'default', 1, '0'),
(174, 'iced sofa', 'soft_sofa_norja', 's', 2, 1, 1, '0', '1', '0', 198, '1', '1', '1', '1', '1', 'default', 1, '0'),
(175, 'Pura Lamp', 'lamp_basic', 's', 1, 1, 1, '0', '0', '0', 199, '1', '1', '1', '1', '1', 'default', 2, '0'),
(176, 'Lodge Candle', 'lamp2_armas', 's', 1, 1, 1, '0', '0', '0', 200, '1', '1', '1', '1', '1', 'default', 2, '0'),
(177, 'Pura Refridgerator', 'fridge', 's', 1, 1, 1, '0', '0', '0', 201, '1', '1', '1', '1', '1', 'vendingmachine', 0, '3,5,6,2'),
(178, 'Telephone Box', 'door', 's', 1, 1, 0.001, '0', '0', '0', 202, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(179, 'Wardrobe', 'doorB', 's', 1, 1, 0.001, '0', '0', '0', 204, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(180, 'Portaloo', 'doorC', 's', 1, 1, 0.001, '0', '0', '0', 205, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(181, 'Pumpkin Lamp', 'pumpkin', 's', 1, 1, 1, '1', '0', '0', 206, '1', '1', '1', '1', '1', 'default', 2, '0'),
(182, 'Skull Candle Holder', 'skullcandle', 's', 1, 1, 1, '0', '0', '0', 207, '1', '1', '1', '1', '1', 'default', 2, '0'),
(183, 'Blood', 'deadduck', 's', 1, 1, 1, '0', '0', '0', 208, '1', '1', '1', '1', '1', 'default', 1, '0'),
(184, 'Dead Duck 2', 'deadduck2', 's', 1, 1, 1, '0', '0', '0', 209, '1', '1', '1', '1', '1', 'default', 1, '0'),
(185, 'Dead Duck 3', 'deadduck3', 's', 1, 1, 1, '0', '0', '0', 210, '1', '1', '1', '1', '1', 'default', 1, '0'),
(186, 'Menorah', 'menorah', 's', 1, 1, 1, '0', '0', '0', 211, '1', '1', '1', '1', '1', 'default', 2, '0'),
(187, 'Christmas Pudding', 'pudding', 's', 1, 1, 1, '1', '0', '0', 212, '1', '1', '1', '1', '1', 'default', 1, '0'),
(188, 'Joint of Ham', 'ham', 's', 1, 1, 1, '0', '0', '0', 213, '1', '1', '1', '1', '1', 'default', 1, '0'),
(189, 'Roast Turkey', 'turkey', 's', 1, 1, 1, '0', '0', '0', 214, '1', '1', '1', '1', '1', 'default', 1, '0'),
(190, 'Christmas Rubber Duck', 'xmasduck', 's', 1, 1, 1, '1', '0', '0', 215, '1', '1', '1', '1', '1', 'default', 1, '0'),
(191, 'Gingerbread House', 'house', 's', 1, 1, 1, '0', '0', '0', 216, '1', '1', '1', '1', '1', 'default', 1, '0'),
(192, 'Electric Candles', 'triplecandle', 's', 1, 1, 1, '0', '0', '0', 217, '1', '1', '1', '1', '1', 'default', 2, '0'),
(193, 'Christmas Tree 1', 'tree3', 's', 1, 1, 1, '0', '0', '0', 218, '1', '1', '1', '1', '1', 'default', 1, '0'),
(194, 'Christmas Tree 2', 'tree4', 's', 1, 1, 1, '0', '0', '0', 219, '1', '1', '1', '1', '1', 'default', 2, '0'),
(195, 'Christmas Tree 3', 'tree5', 's', 1, 1, 1, '0', '0', '0', 220, '1', '1', '1', '1', '1', 'default', 2, '0'),
(196, 'Eaten Ham', 'ham2', 's', 1, 1, 1, '0', '0', '0', 223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(197, 'White Candle Plate', 'wcandleset', 's', 1, 1, 1, '0', '0', '0', 224, '1', '1', '1', '1', '1', 'default', 2, '0'),
(198, 'Red Candle Plate', 'rcandleset', 's', 1, 1, 1, '0', '0', '0', 225, '1', '1', '1', '1', '1', 'default', 2, '0'),
(199, 'Giant Heart', 'statue', 's', 1, 1, 1, '0', '0', '0', 226, '1', '1', '1', '1', '1', 'default', 1, '0'),
(200, 'Valentine''s Duck', 'valeduck', 's', 1, 1, 1, '0', '0', '0', 228, '1', '1', '1', '1', '1', 'default', 1, '0'),
(201, 'Heart Sofa', 'heartsofa', 's', 2, 1, 1, '0', '1', '0', 229, '1', '1', '1', '1', '1', 'default', 1, '0'),
(202, 'Throne', 'throne', 's', 1, 1, 1, '0', '1', '0', 230, '0', '1', '1', '1', '1', 'default', 1, '0'),
(203, 'Russian Samovar', 'samovar', 's', 1, 1, 1, '0', '0', '0', 231, '0', '1', '1', '1', '1', 'vendingmachine', 0, '1'),
(204, 'Vase of Flowers', 'giftflowers', 's', 1, 1, 1, '0', '0', '0', 232, '1', '1', '1', '1', '1', 'default', 1, '0'),
(205, 'Cake', 'habbocake', 's', 1, 1, 1, '0', '0', '0', 233, '1', '1', '1', '1', '1', 'default', 1, '0'),
(206, 'Holopod', 'hologram', 's', 1, 1, 1, '0', '0', '0', 234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(207, 'Wannabe bunny', 'easterduck', 's', 1, 1, 1, '0', '0', '0', 235, '1', '1', '1', '1', '1', 'default', 1, '0'),
(208, 'Squidgy Bunny', 'bunny', 's', 1, 1, 1, '0', '0', '0', 236, '1', '1', '1', '1', '1', 'default', 1, '0'),
(209, 'Basket Of Eggs', 'basket', 's', 1, 1, 1, '0', '0', '0', 237, '1', '1', '1', '1', '1', 'default', 1, '0'),
(210, 'Pop-up Egg', 'birdie', 's', 1, 1, 1, '0', '0', '0', 238, '1', '1', '1', '1', '1', 'default', 2, '0'),
(211, 'Holo-dice', 'edice', 's', 1, 1, 1, '0', '0', '0', 239, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(212, 'Club sofa', 'club_sofa', 's', 2, 1, 1, '0', '1', '0', 267, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1615, 'Hot Trophy', 'prizetrophy_hot', 's', 1, 1, 1, '0', '0', '0', 3229, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1366, 'Arctic Penguin Trophy', 'xmas08_trph1', 's', 1, 1, 1, '0', '0', '0', 2972, '1', '1', '1', '1', '1', 'default', 1, '0'),
(216, 'Hatch (Lockable)', 'divider_poly3', 's', 1, 1, 0.001, '0', '0', '0', 244, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(217, 'Corner plinth', 'divider_arm1', 's', 1, 1, 1.4, '1', '0', '0', 245, '1', '1', '1', '1', '1', 'default', 1, '0'),
(218, 'Room divider', 'divider_arm2', 's', 2, 1, 1, '0', '0', '0', 246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(219, 'Knock', 'divider_arm3', 's', 1, 1, 0.001, '0', '0', '0', 247, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(220, 'Looks squishy', 'divider_nor1', 's', 1, 1, 1, '0', '0', '0', 248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(221, 'Corner Shelf', 'divider_silo1', 's', 1, 1, 1, '1', '0', '0', 249, '1', '1', '1', '1', '1', 'default', 1, '0'),
(222, 'Strong', 'divider_nor2', 's', 2, 1, 1, '0', '0', '0', 250, '1', '1', '1', '1', '1', 'default', 1, '0'),
(223, 'Screen', 'divider_silo2', 's', 2, 1, 1, '1', '0', '0', 251, '1', '1', '1', '1', '1', 'default', 1, '0'),
(224, 'Door (Lockable)', 'divider_nor3', 's', 1, 1, 0.001, '0', '0', '0', 252, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(225, 'Gate (lockable)', 'divider_silo3', 's', 1, 1, 0.001, '0', '0', '0', 253, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(226, 'Typewriter', 'typingmachine', 's', 1, 1, 1, '1', '0', '0', 254, '0', '1', '1', '1', '1', 'default', 1, '0'),
(227, 'Dragon Egg', 'spyro', 's', 1, 1, 1, '0', '0', '0', 260, '0', '1', '1', '1', '1', 'default', 1, '0'),
(228, 'Holo-girl', 'redhologram', 's', 1, 1, 1, '0', '0', '0', 261, '0', '1', '1', '1', '1', 'default', 2, '0'),
(230, 'Poinsetta', 'joulutahti', 's', 1, 1, 1, '0', '0', '0', 264, '1', '1', '1', '1', '1', 'default', 1, '0'),
(231, 'Pink Hyacinth', 'hyacinth1', 's', 1, 1, 1, '0', '0', '0', 265, '1', '1', '1', '1', '1', 'default', 1, '0'),
(232, 'Blue Hyacinth', 'hyacinth2', 's', 1, 1, 1, '0', '0', '0', 266, '1', '1', '1', '1', '1', 'default', 1, '0'),
(233, 'Chair', 'chair_plasto*10', 's', 1, 1, 1, '0', '1', '0', 268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(234, 'Chair', 'chair_plasto*11', 's', 1, 1, 1, '0', '1', '0', 269, '1', '1', '1', '1', '1', 'default', 1, '0'),
(235, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*12', 's', 1, 1, 1, '1', '0', '0', 270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(236, 'Corner Cabinet/Desk', 'bardeskcorner_polyfon*13', 's', 1, 1, 1, '1', '0', '0', 271, '1', '1', '1', '1', '1', 'default', 1, '0'),
(237, 'Chair', 'chair_plasto*12', 's', 1, 1, 1, '0', '1', '0', 273, '1', '1', '1', '1', '1', 'default', 1, '0'),
(238, 'Chair', 'chair_plasto*13', 's', 1, 1, 1, '0', '1', '0', 274, '1', '1', '1', '1', '1', 'default', 1, '0'),
(239, 'HC chair', 'chair_plasto*14', 's', 1, 1, 1, '0', '1', '0', 275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(240, 'HC table', 'table_plasto_4leg*14', 's', 2, 2, 1, '1', '0', '0', 276, '1', '1', '1', '1', '1', 'default', 1, '0'),
(241, 'Mochamaster', 'mocchamaster', 's', 1, 1, 1, '1', '0', '0', 277, '1', '1', '1', '1', '1', 'vendingmachine', 0, '9,8,14,15,6,10,11,12,17,13'),
(242, 'Basketball Court', 'carpet_legocourt', 's', 3, 3, 0, '1', '0', '1', 278, '1', '1', '1', '1', '1', 'default', 1, '0'),
(243, 'Team Bench', 'bench_lego', 's', 4, 1, 1, '0', '1', '0', 279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1563, 'ads_idol_trophy name', 'ads_idol_trophy', 's', 1, 1, 1, '0', '0', '0', 3169, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(245, 'Holiday Romance', 'valentinescreen', 's', 2, 1, 0.1, '0', '0', '1', 283, '1', '1', '1', '1', '1', 'default', 1, '0'),
(246, 'Dicemaster', 'edicehc', 's', 1, 1, 1, '0', '0', '0', 284, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(247, 'Petal Patch', 'rare_daffodil_rug', 's', 2, 2, 0, '1', '0', '1', 285, '1', '1', '1', '1', '1', 'default', 1, '0'),
(248, 'Blue Amber Lamp', 'rare_beehive_bulb', 's', 1, 1, 1, '0', '0', '0', 286, '1', '1', '1', '1', '1', 'default', 2, '0'),
(249, 'Throne Sofa', 'hcsohva', 's', 2, 1, 1, '0', '1', '0', 287, '1', '1', '1', '1', '1', 'default', 1, '0'),
(250, 'Tubmaster', 'hcamme', 's', 1, 2, 0.6, '0', '1', '0', 288, '1', '1', '1', '1', '1', 'default', 2, '0'),
(251, 'Golden Elephant', 'rare_elephant_statue', 's', 1, 1, 1, '1', '0', '0', 290, '1', '1', '1', '1', '1', 'default', 1, '0'),
(252, 'Bird Bath (red)', 'rare_fountain', 's', 1, 1, 1, '1', '0', '0', 291, '1', '1', '1', '1', '1', 'default', 2, '0'),
(253, 'Speaker''s Corner', 'rare_stand', 's', 1, 1, 1.7, '0', '1', '0', 292, '1', '1', '1', '1', '1', 'default', 1, '0'),
(254, 'Snow Globe', 'rare_globe', 's', 1, 1, 1, '0', '0', '0', 293, '1', '1', '1', '1', '1', 'default', 2, '0'),
(255, 'Hammock', 'rare_hammock', 's', 1, 3, 1.57, '0', '0', '0', 294, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(256, 'Silver Elephant', 'rare_elephant_statue*1', 's', 1, 1, 1, '0', '0', '0', 295, '1', '1', '1', '1', '1', 'default', 1, '0'),
(257, 'Bronze Elephant', 'rare_elephant_statue*2', 's', 1, 1, 1, '0', '0', '0', 296, '1', '1', '1', '1', '1', 'default', 1, '0'),
(258, 'Bird Bath (grey)', 'rare_fountain*1', 's', 1, 1, 1, '0', '0', '0', 297, '1', '1', '1', '1', '1', 'default', 2, '0'),
(259, 'Bird Bath (green)', 'rare_fountain*2', 's', 1, 1, 1, '0', '0', '0', 298, '1', '1', '1', '1', '1', 'default', 2, '0'),
(260, 'Bird Bath (blue)', 'rare_fountain*3', 's', 1, 1, 1, '0', '0', '0', 299, '1', '1', '1', '1', '1', 'default', 2, '0'),
(261, 'Red Amber Lamp', 'rare_beehive_bulb*1', 's', 1, 1, 1, '0', '0', '0', 300, '1', '1', '1', '1', '1', 'default', 2, '0'),
(262, 'Yellow Amber Lamp', 'rare_beehive_bulb*2', 's', 1, 1, 1, '0', '0', '0', 301, '1', '1', '1', '1', '1', 'default', 2, '0'),
(263, 'Lappland Greetings', 'rare_xmas_screen', 's', 2, 1, 0, '0', '0', '1', 302, '1', '1', '1', '1', '1', 'default', 1, '0'),
(264, 'Yellow Parasol', 'rare_parasol*1', 's', 1, 1, 1, '0', '0', '0', 303, '1', '1', '1', '1', '1', 'default', 2, '0'),
(265, 'Orange Parasol', 'rare_parasol*2', 's', 1, 1, 1, '0', '0', '0', 304, '1', '1', '1', '1', '1', 'default', 2, '0'),
(266, 'Violet Parasol', 'rare_parasol*3', 's', 1, 1, 1, '0', '0', '0', 305, '1', '1', '1', '1', '1', 'default', 2, '0'),
(267, 'Dead tree', 'tree1', 's', 1, 1, 1, '0', '0', '0', 1758, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20045, 'arabian_tile', 'arabian_tile', 's', 2, 2, 0, '1', '0', '1', 3312, '1', '1', '1', '1', '1', 'default', 1, '0'),
(269, 'White Candle', 'wcandle', 's', 1, 1, 1, '0', '0', '0', 2102, '1', '1', '1', '1', '1', 'default', 2, '0'),
(270, 'Red Candle', 'rcandle', 's', 1, 1, 1, '0', '0', '0', 2121, '1', '1', '1', '1', '1', 'default', 2, '0'),
(272, 'Gingerbread House', 'house2', 's', 1, 1, 1, '0', '0', '0', 428, '1', '1', '1', '1', '1', 'default', 1, '0'),
(273, 'Habbo Turntable', 'djesko_turntable', 's', 1, 1, 1, '0', '0', '0', 449, '1', '1', '1', '1', '1', 'default', 1, '0'),
(275, 'Habbo Cola Machine', 'md_limukaappi', 's', 1, 1, 1, '0', '0', '0', 457, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(276, 'Occasional Table', 'table_plasto_4leg*10', 's', 2, 2, 1, '1', '0', '0', 1484, '1', '1', '1', '1', '1', 'default', 1, '0'),
(277, 'Occasional Table', 'table_plasto_4leg*15', 's', 2, 2, 1, '1', '0', '0', 1486, '1', '1', '1', '1', '1', 'default', 1, '0'),
(278, 'Occasional Table', 'table_plasto_bigsquare*14', 's', 2, 2, 1, '1', '0', '0', 1487, '1', '1', '1', '1', '1', 'default', 1, '0'),
(279, 'Occasional Table', 'table_plasto_bigsquare*15', 's', 2, 2, 1, '1', '0', '0', 1488, '1', '1', '1', '1', '1', 'default', 1, '0'),
(280, 'Occasional Table', 'table_plasto_round*14', 's', 2, 2, 1, '1', '0', '0', 1489, '1', '1', '1', '1', '1', 'default', 1, '0'),
(281, 'Occasional Table', 'table_plasto_round*15', 's', 2, 2, 1, '1', '0', '0', 1490, '1', '1', '1', '1', '1', 'default', 1, '0'),
(282, 'Occasional Table', 'table_plasto_square*14', 's', 1, 1, 1, '1', '0', '0', 1491, '1', '1', '1', '1', '1', 'default', 1, '0'),
(283, 'Occasional Table', 'table_plasto_square*15', 's', 1, 1, 1, '1', '0', '0', 1492, '1', '1', '1', '1', '1', 'default', 1, '0'),
(284, 'Chair', 'chair_plasto*15', 's', 1, 1, 1, '0', '1', '0', 1495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(285, 'Plastic Pod Chair', 'chair_plasty*7', 's', 1, 1, 1, '0', '1', '0', 1496, '1', '1', '1', '1', '1', 'default', 1, '0'),
(286, 'Plastic Pod Chair', 'chair_plasty*8', 's', 1, 1, 1, '0', '1', '0', 1497, '1', '1', '1', '1', '1', 'default', 1, '0'),
(287, 'Plastic Pod Chair', 'chair_plasty*9', 's', 1, 1, 1, '0', '1', '0', 1498, '1', '1', '1', '1', '1', 'default', 1, '0'),
(288, 'Plastic Pod Chair', 'chair_plasty*10', 's', 1, 1, 1, '0', '1', '0', 1499, '1', '1', '1', '1', '1', 'default', 1, '0'),
(289, 'Plastic Pod Chair', 'chair_plasty*11', 's', 1, 1, 1, '0', '1', '0', 1500, '1', '1', '1', '1', '1', 'default', 1, '0'),
(290, 'Chair', 'chair_plasto*16', 's', 1, 1, 1, '0', '1', '0', 1501, '1', '1', '1', '1', '1', 'default', 1, '0'),
(291, 'Occasional Table', 'table_plasto_4leg*16', 's', 2, 2, 1, '1', '0', '0', 1502, '1', '1', '1', '1', '1', 'default', 1, '0'),
(292, 'Scoreboard', 'hockey_score', 's', 1, 1, 1, '0', '0', '0', 1503, '1', '1', '1', '1', '1', 'scoreboard', 100, '0'),
(293, 'Lert', 'hockey_light', 's', 1, 1, 1, '0', '0', '0', 1504, '1', '1', '1', '1', '1', 'alert', 2, '0'),
(294, 'Imperial Teleport', 'doorD', 's', 1, 1, 0.001, '0', '0', '0', 1505, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1311, 'Greek trophy', 'a0 greektrophy_b', 's', 1, 1, 1, '0', '0', '0', 2624, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1310, 'Greek trophy', 'a0 greektrophy_s', 's', 1, 1, 1, '0', '0', '0', 2623, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1309, 'Greek trophy', 'a0 greektrophy_g', 's', 1, 1, 1, '0', '0', '0', 2622, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1115, 'Bubble trophy', 'a0 prizetrophy8_g', 's', 1, 1, 1, '0', '0', '0', 2426, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20022, 'Champion trophy', 'a0 prizetrophy6_b', 's', 1, 1, 1, '0', '0', '0', 1510, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(336, 'Gold Habbo trophy', 'a0 prizetrophy7_g', 's', 1, 1, 1, '0', '0', '0', 1548, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(337, 'Silver Habbo trophy', 'a0 prizetrophy7_s', 's', 1, 1, 1, '0', '0', '0', 1549, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(311, 'Classic trophy', 'prizetrophy*3', 's', 1, 1, 1, '0', '0', '0', 1526, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(335, 'Bronze Habbo trophy', 'a0 prizetrophy7_b', 's', 1, 1, 1, '0', '0', '0', 1547, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(310, 'Champion trophy', 'a0 prizetrophy6_s', 's', 1, 1, 1, '0', '0', '0', 1522, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(309, 'Duo trophy', 'a0 prizetrophy5_s', 's', 1, 1, 1, '0', '0', '0', 1521, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(308, 'Fish trophy', 'a0 prizetrophy4_s', 's', 1, 1, 1, '0', '0', '0', 1520, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(307, 'Globe trophy', 'a0 prizetrophy3_s', 's', 1, 1, 1, '0', '0', '0', 1519, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(306, 'Duck trophy', 'a0 prizetrophy2_s', 's', 1, 1, 1, '0', '0', '0', 1518, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(312, 'Green Parasol', 'rare_parasol*0', 's', 1, 1, 1, '0', '0', '0', 289, '1', '1', '1', '1', '1', 'default', 2, '0'),
(313, 'Oil Lamp', 'hc_lmp', 's', 1, 1, 1, '0', '0', '0', 1529, '1', '1', '1', '1', '1', 'default', 2, '0'),
(314, 'Nordic Table', 'hc_tbl', 's', 1, 3, 1, '1', '0', '0', 1528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(315, 'Majestic Chair', 'hc_chr', 's', 1, 1, 1, '0', '1', '0', 1527, '1', '1', '1', '1', '1', 'default', 1, '0'),
(316, 'Study Desk', 'hc_dsk', 's', 1, 2, 1, '0', '0', '0', 1530, '1', '1', '1', '1', '1', 'default', 2, '0'),
(317, 'Night', 'nest', 's', 1, 1, 1, '1', '0', '0', 1531, '1', '1', '1', '1', '1', 'default', 1, '0'),
(318, 'Bones Mega Multipack', 'petfood1', 's', 1, 1, 1, '1', '0', '0', 1532, '1', '1', '1', '1', '1', 'default', 1, '0'),
(319, 'Sardines Mega Multipack', 'petfood2', 's', 1, 1, 1, '1', '0', '0', 1533, '1', '1', '1', '1', '1', 'default', 1, '0'),
(320, 'Cabbage Mega Multipack', 'petfood3', 's', 1, 1, 1, '1', '0', '0', 1534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(321, 'Blue Water Bowl', 'waterbowl*4', 's', 1, 1, 1, '1', '0', '0', 1535, '1', '1', '1', '1', '1', 'default', 1, '0'),
(322, 'Brown Water Bowl', 'waterbowl*5', 's', 1, 1, 1, '1', '0', '0', 1536, '1', '1', '1', '1', '1', 'default', 1, '0'),
(323, 'Green Water Bowl', 'waterbowl*2', 's', 1, 1, 1, '1', '0', '0', 1537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(324, 'Red Water Bowl', 'waterbowl*1', 's', 1, 1, 1, '1', '0', '0', 1538, '1', '1', '1', '1', '1', 'default', 1, '0'),
(325, 'Yellow Water Bowl', 'waterbowl*3', 's', 1, 1, 1, '1', '0', '0', 1539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(326, 'Rubber Ball', 'toy1', 's', 1, 1, 1, '1', '0', '0', 1540, '1', '1', '1', '1', '1', 'default', 1, '0'),
(327, 'Rubber Ball', 'toy1*1', 's', 1, 1, 1, '1', '0', '0', 1541, '1', '1', '1', '1', '1', 'default', 1, '0'),
(328, 'Rubber Ball', 'toy1*2', 's', 1, 1, 1, '1', '0', '0', 1542, '1', '1', '1', '1', '1', 'default', 1, '0'),
(329, 'Rubber Ball', 'toy1*3', 's', 1, 1, 1, '1', '0', '0', 1543, '1', '1', '1', '1', '1', 'default', 1, '0'),
(330, 'Rubber Ball', 'toy1*4', 's', 1, 1, 1, '1', '0', '0', 1544, '1', '1', '1', '1', '1', 'default', 1, '0'),
(331, 'Marzipan Man', 'goodie1', 's', 1, 1, 1, '1', '0', '0', 1545, '1', '1', '1', '1', '1', 'default', 1, '0'),
(332, 'Marzipan Man', 'goodie1*1', 's', 1, 1, 1, '1', '0', '0', 1546, '1', '1', '1', '1', '1', 'default', 1, '0'),
(333, 'Marzipan Man', 'goodie1*2', 's', 1, 1, 1, '1', '0', '0', 1547, '1', '1', '1', '1', '1', 'default', 1, '0'),
(334, 'Chocolate Mouse', 'goodie2', 's', 1, 1, 1, '1', '0', '0', 1548, '1', '1', '1', '1', '1', 'default', 1, '0'),
(305, 'Classic trophy', 'prizetrophy*2', 's', 1, 1, 1, '0', '0', '0', 1519, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(304, 'Champion trophy', 'a0 prizetrophy6_g', 's', 1, 1, 1, '0', '0', '0', 1516, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(303, 'Duo trophy', 'a0 prizetrophy5_g', 's', 1, 1, 1, '0', '0', '0', 1515, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(338, 'Red Laser Door', 'scifiport*0', 's', 1, 1, 0.001, '0', '0', '0', 1549, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(339, 'Violet Sci-Fi Port', 'scifiport*9', 's', 1, 1, 0.001, '0', '0', '0', 1550, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(340, 'Purple Sci-Fi Port', 'scifiport*8', 's', 1, 1, 0.001, '0', '0', '0', 1551, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(341, 'Aqua Laser Gate', 'scifiport*7', 's', 1, 1, 0.001, '0', '0', '0', 1552, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(342, 'White Sci-Fi Port', 'scifiport*6', 's', 1, 1, 0.001, '0', '0', '0', 1553, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(343, 'Security Fence', 'scifiport*5', 's', 1, 1, 0.001, '0', '0', '0', 1554, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(344, 'Pink Sci-Fi Port', 'scifiport*4', 's', 1, 1, 0.001, '0', '0', '0', 1555, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(345, 'Jade Sci-Fi Port', 'scifiport*3', 's', 1, 1, 0.001, '0', '0', '0', 1556, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(346, 'Blue Laser Gate', 'scifiport*2', 's', 1, 1, 0.001, '0', '0', '0', 1557, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(347, 'Gold Laser Gate', 'scifiport*1', 's', 1, 1, 0.001, '0', '0', '0', 1558, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(348, 'Neptune Smoke Machine', 'scifirocket*9', 's', 1, 1, 1, '0', '0', '0', 1559, '1', '1', '1', '1', '1', 'default', 2, '0'),
(349, 'From a space far', 'scifirocket*8', 's', 1, 1, 1, '0', '0', '0', 1560, '1', '1', '1', '1', '1', 'default', 2, '0'),
(350, 'Jupiter Smoke Machine', 'scifirocket*7', 's', 1, 1, 1, '0', '0', '0', 1561, '1', '1', '1', '1', '1', 'default', 2, '0'),
(351, 'Mercury Smoke Machine', 'scifirocket*6', 's', 1, 1, 1, '0', '0', '0', 1562, '1', '1', '1', '1', '1', 'default', 2, '0'),
(352, 'Uranus Smoke Machine', 'scifirocket*5', 's', 1, 1, 1, '0', '0', '0', 1563, '1', '1', '1', '1', '1', 'default', 2, '0'),
(353, 'Venus Smoke Machine', 'scifirocket*4', 's', 1, 1, 1, '0', '0', '0', 1564, '1', '1', '1', '1', '1', 'default', 2, '0'),
(354, 'Endor Smoke Machine', 'scifirocket*3', 's', 1, 1, 1, '0', '0', '0', 1565, '1', '1', '1', '1', '1', 'default', 2, '0'),
(355, 'Earth Smoke Machine', 'scifirocket*2', 's', 1, 1, 1, '0', '0', '0', 1566, '1', '1', '1', '1', '1', 'default', 2, '0'),
(356, 'Saturn Smoke Machine', 'scifirocket*1', 's', 1, 1, 1, '0', '0', '0', 1567, '1', '1', '1', '1', '1', 'default', 2, '0'),
(357, 'Mars Smoke Machine', 'scifirocket*0', 's', 1, 1, 1, '0', '0', '0', 1568, '1', '1', '1', '1', '1', 'default', 2, '0'),
(358, 'Violet Starship Door', 'scifidoor*10', 's', 1, 1, 0.001, '0', '0', '0', 1569, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(359, 'It''s blue', 'scifidoor*9', 's', 1, 1, 0.001, '0', '0', '0', 1570, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(360, 'Purple Spaceship Door', 'scifidoor*8', 's', 1, 1, 0.001, '0', '0', '0', 1571, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(361, 'Aqua Spaceship Door', 'scifidoor*7', 's', 1, 1, 0.001, '0', '0', '0', 1572, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(362, 'Black Monolith', 'scifidoor*6', 's', 1, 1, 0.001, '0', '0', '0', 1573, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(363, 'White Spaceship Door', 'scifidoor*5', 's', 1, 1, 0.001, '0', '0', '0', 1574, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(364, 'Emerald Spaceship Door', 'scifidoor*4', 's', 1, 1, 0.001, '0', '0', '0', 1575, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(365, 'Lightblue Spaceship Door', 'scifidoor*3', 's', 1, 1, 0.001, '0', '0', '0', 1576, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(366, 'Yellow Spaceship Door', 'scifidoor*2', 's', 1, 1, 0.001, '0', '0', '0', 1577, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(367, 'Pink Spaceship Door', 'scifidoor*1', 's', 1, 1, 0.001, '0', '0', '0', 1578, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(368, 'Puffy', 'pillow*5', 's', 1, 1, 1, '0', '1', '0', 1579, '1', '1', '1', '1', '1', 'default', 1, '0'),
(369, 'Puffy', 'pillow*8', 's', 1, 1, 1, '0', '1', '0', 1580, '1', '1', '1', '1', '1', 'default', 1, '0'),
(370, 'White Lace Pillow', 'pillow*0', 's', 1, 1, 1, '0', '1', '0', 1581, '1', '1', '1', '1', '1', 'default', 1, '0'),
(371, 'Puffy', 'pillow*1', 's', 1, 1, 1, '0', '1', '0', 1582, '1', '1', '1', '1', '1', 'default', 1, '0'),
(372, 'Puffy', 'pillow*2', 's', 1, 1, 1, '0', '1', '0', 1583, '1', '1', '1', '1', '1', 'default', 1, '0'),
(373, 'Purple Velvet Pillow', 'pillow*7', 's', 1, 1, 1, '0', '1', '0', 1584, '1', '1', '1', '1', '1', 'default', 1, '0'),
(374, 'Puffy', 'pillow*9', 's', 1, 1, 1, '0', '1', '0', 1585, '1', '1', '1', '1', '1', 'default', 1, '0'),
(375, 'Puffy', 'pillow*4', 's', 1, 1, 1, '0', '1', '0', 1586, '1', '1', '1', '1', '1', 'default', 1, '0'),
(376, 'Puffy', 'pillow*6', 's', 1, 1, 1, '0', '1', '0', 1587, '1', '1', '1', '1', '1', 'default', 1, '0'),
(377, 'Puffy', 'pillow*3', 's', 1, 1, 1, '0', '1', '0', 1588, '1', '1', '1', '1', '1', 'default', 1, '0'),
(378, 'Pink marquee', 'marquee*1', 's', 1, 1, 0.001, '0', '0', '0', 1589, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(379, 'Red Dragon Marquee', 'marquee*2', 's', 1, 1, 0.001, '0', '0', '0', 1590, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(380, 'Purple Marquee', 'marquee*7', 's', 1, 1, 0.001, '0', '0', '0', 1591, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(381, 'White Marquee', 'marquee*10', 's', 1, 1, 0.001, '0', '0', '0', 1592, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(382, 'Ultramarine Marquee', 'marquee*8', 's', 1, 1, 0.001, '0', '0', '0', 1593, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(383, 'Green Marquee', 'marquee*9', 's', 1, 1, 0.001, '0', '0', '0', 1594, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(384, 'Graphite Marquee', 'marquee*5', 's', 1, 1, 0.001, '0', '0', '0', 1595, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(385, 'Yellow Marquee', 'marquee*4', 's', 1, 1, 0.001, '0', '0', '0', 1596, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(386, 'Blue Marquee', 'marquee*6', 's', 1, 1, 0.001, '0', '0', '0', 1597, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(387, 'Aqua Marquee', 'marquee*3', 's', 1, 1, 0.001, '0', '0', '0', 1598, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(388, 'Pink Oriental screen', 'wooden_screen*1', 's', 1, 2, 1, '0', '0', '0', 1599, '1', '1', '1', '1', '1', 'default', 1, '0'),
(389, 'RosewoodScreen', 'wooden_screen*2', 's', 1, 2, 1, '0', '0', '0', 1600, '1', '1', '1', '1', '1', 'default', 1, '0'),
(390, 'Purple Oriental Screen', 'wooden_screen*7', 's', 1, 2, 1, '0', '0', '0', 1601, '1', '1', '1', '1', '1', 'default', 1, '0'),
(391, 'White Oriental Screen', 'wooden_screen*0', 's', 1, 2, 1, '0', '0', '0', 1602, '1', '1', '1', '1', '1', 'default', 1, '0'),
(392, 'Night Blue Oriental Screen', 'wooden_screen*8', 's', 1, 2, 1, '0', '0', '0', 1603, '1', '1', '1', '1', '1', 'default', 1, '0'),
(393, 'Gray Oriental Screen', 'wooden_screen*5', 's', 1, 2, 1, '0', '0', '0', 1604, '1', '1', '1', '1', '1', 'default', 1, '0'),
(394, 'Green Oriental Screen', 'wooden_screen*9', 's', 1, 2, 1, '0', '0', '0', 1605, '1', '1', '1', '1', '1', 'default', 1, '0'),
(395, 'Golden Oriental Screen', 'wooden_screen*4', 's', 1, 2, 1, '0', '0', '0', 1606, '1', '1', '1', '1', '1', 'default', 1, '0'),
(396, 'Blue Oriental Screen', 'wooden_screen*6', 's', 1, 2, 1, '0', '0', '0', 1607, '1', '1', '1', '1', '1', 'default', 1, '0'),
(397, 'Terracotta Pillar', 'wooden_screen*3', 's', 1, 2, 1, '0', '0', '0', 1608, '1', '1', '1', '1', '1', 'default', 1, '0'),
(398, 'Pink Marble Pillar', 'pillar*1', 's', 1, 1, 1, '0', '0', '0', 1610, '1', '1', '1', '1', '1', 'default', 1, '0'),
(399, 'Rock Pillar', 'pillar*9', 's', 1, 1, 1, '0', '0', '0', 1611, '1', '1', '1', '1', '1', 'default', 1, '0'),
(400, 'Classy architect', 'pillar*0', 's', 1, 1, 1, '0', '0', '0', 1612, '1', '1', '1', '1', '1', 'default', 1, '0'),
(401, 'Roman Pillar', 'pillar*8', 's', 1, 1, 1, '0', '0', '0', 1613, '1', '1', '1', '1', '1', 'default', 1, '0'),
(402, 'Nordic Pillar', 'pillar*2', 's', 1, 1, 1, '0', '0', '0', 1614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(403, 'Pagan Pillar', 'pillar*5', 's', 1, 1, 1, '0', '0', '0', 1615, '1', '1', '1', '1', '1', 'default', 1, '0'),
(404, 'Dark Ages Pillar', 'pillar*4', 's', 1, 1, 1, '0', '0', '0', 1616, '1', '1', '1', '1', '1', 'default', 1, '0'),
(405, 'Atlantean Pillar', 'pillar*7', 's', 1, 1, 1, '0', '0', '0', 1617, '1', '1', '1', '1', '1', 'default', 1, '0'),
(406, 'blue pillar', 'pillar*3', 's', 1, 1, 1, '0', '0', '0', 1618, '1', '1', '1', '1', '1', 'default', 1, '0'),
(407, 'Serpent of Doom', 'rare_dragonlamp*4', 's', 1, 1, 1, '0', '0', '0', 1619, '1', '1', '1', '1', '1', 'default', 2, '0'),
(408, 'Fire Dragon Lamp', 'rare_dragonlamp*0', 's', 1, 1, 1, '0', '0', '0', 1620, '1', '1', '1', '1', '1', 'default', 2, '0'),
(409, 'Elf Green Dragon Lamp', 'rare_dragonlamp*5', 's', 1, 1, 1, '0', '0', '0', 1621, '1', '1', '1', '1', '1', 'default', 2, '0'),
(410, 'Jade Dragon Lamp', 'rare_dragonlamp*2', 's', 1, 1, 1, '0', '0', '0', 1622, '1', '1', '1', '1', '1', 'default', 2, '0'),
(411, 'Bronze Dragon Lamp', 'rare_dragonlamp*8', 's', 1, 1, 1, '0', '0', '0', 1623, '1', '1', '1', '1', '1', 'default', 2, '0'),
(412, 'Purple Dragon Lamp', 'rare_dragonlamp*9', 's', 1, 1, 1, '0', '0', '0', 1624, '1', '1', '1', '1', '1', 'default', 2, '0'),
(413, 'Sky Dragon Lamp', 'rare_dragonlamp*7', 's', 1, 1, 1, '0', '0', '0', 1625, '1', '1', '1', '1', '1', 'default', 2, '0'),
(414, 'Gold Dragon Lamp', 'rare_dragonlamp*6', 's', 1, 1, 1, '0', '0', '0', 1626, '1', '1', '1', '1', '1', 'default', 2, '0'),
(415, 'Sea Dragon Lamp', 'rare_dragonlamp*1', 's', 1, 1, 1, '0', '0', '0', 1627, '1', '1', '1', '1', '1', 'default', 2, '0'),
(416, 'Silver Dragon Lamp', 'rare_dragonlamp*3', 's', 1, 1, 1, '0', '0', '0', 1628, '1', '1', '1', '1', '1', 'default', 2, '0'),
(417, 'Blueberry Ice Cream Machine', 'rare_icecream*1', 's', 1, 1, 1, '0', '0', '0', 1629, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(418, 'Chocolate Ice Cream Machine', 'rare_icecream*7', 's', 1, 1, 1, '0', '0', '0', 1630, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(419, 'Peppermint Ice Cream Machine', 'rare_icecream*8', 's', 1, 1, 1, '0', '0', '0', 1631, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(420, 'Pistachio Ice Cream Machine', 'rare_icecream*2', 's', 1, 1, 1, '0', '0', '0', 1632, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(421, 'Toffee Ice Cream Machine', 'rare_icecream*6', 's', 1, 1, 1, '0', '0', '0', 1633, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(422, 'Bubblegum Ice Cream Machine', 'rare_icecream*9', 's', 1, 1, 1, '0', '0', '0', 1634, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(423, 'Blackcurrant Ice Cream Machine', 'rare_icecream*3', 's', 1, 1, 1, '0', '0', '0', 1635, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(424, 'Cherry Ice Cream Machine', 'rare_icecream*0', 's', 1, 1, 1, '0', '0', '0', 1636, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(425, 'Strawberry Ice Cream Machine', 'rare_icecream*4', 's', 1, 1, 1, '0', '0', '0', 1637, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(426, 'Vanilla Ice Cream Machine', 'rare_icecream*5', 's', 1, 1, 1, '0', '0', '0', 1638, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(427, 'Brown Powered Fan', 'rare_fan*7', 's', 1, 1, 1, '0', '0', '0', 1639, '1', '1', '1', '1', '1', 'default', 2, '0'),
(428, 'Ochre Powered Fan', 'rare_fan*6', 's', 1, 1, 1, '0', '0', '0', 1640, '1', '1', '1', '1', '1', 'default', 2, '0'),
(429, 'Fucsia Powered Fan', 'rare_fan*9', 's', 1, 1, 1, '0', '0', '0', 1641, '1', '1', '1', '1', '1', 'default', 2, '0'),
(430, 'Purple Dragon Skin Fan', 'rare_fan*3', 's', 1, 1, 1, '0', '0', '0', 1642, '1', '1', '1', '1', '1', 'default', 2, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(431, 'Festive Fan', 'rare_fan*0', 's', 1, 1, 1, '0', '0', '0', 1643, '1', '1', '1', '1', '1', 'default', 2, '0'),
(432, 'SUPERLOVE Fan', 'rare_fan*4', 's', 1, 1, 1, '0', '0', '0', 1644, '1', '1', '1', '1', '1', 'default', 2, '0'),
(433, 'Yellow Powered Fan', 'rare_fan*5', 's', 1, 1, 1, '0', '0', '0', 1645, '1', '1', '1', '1', '1', 'default', 2, '0'),
(434, 'Birthday Fan', 'rare_fan*1', 's', 1, 1, 1, '0', '0', '0', 1646, '1', '1', '1', '1', '1', 'default', 2, '0'),
(435, 'Stylish', 'rare_fan*8', 's', 1, 1, 1, '0', '0', '0', 1647, '1', '1', '1', '1', '1', 'default', 2, '0'),
(436, 'Green Powered Fan', 'rare_fan*2', 's', 1, 1, 1, '0', '0', '0', 1648, '1', '1', '1', '1', '1', 'default', 2, '0'),
(437, 'Ice Habbo Roller', 'queue_tile1*3', 's', 1, 1, 0.5, '1', '0', '1', 1649, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(438, 'Blue Habbo Roller', 'queue_tile1*6', 's', 1, 1, 0.5, '1', '0', '1', 1650, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(439, 'Gold Habbo Roller', 'queue_tile1*4', 's', 1, 1, 0.5, '1', '0', '1', 1651, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(440, 'Green Habbo Roller', 'queue_tile1*9', 's', 1, 1, 0.5, '1', '0', '1', 1652, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(441, 'Navy Habbo Roller', 'queue_tile1*8', 's', 1, 1, 0.5, '1', '0', '1', 1653, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(442, 'Knight Roller', 'queue_tile1*5', 's', 1, 1, 0.5, '1', '0', '1', 1654, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(443, 'Purple Habbo Roller', 'queue_tile1*7', 's', 1, 1, 0.5, '1', '0', '1', 1655, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(444, 'Red Habbo Roller', 'queue_tile1*2', 's', 1, 1, 0.5, '1', '0', '1', 1656, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(445, 'Pink Habbo Roller', 'queue_tile1*1', 's', 1, 1, 0.5, '1', '0', '1', 1657, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(446, 'White Quest Roller', 'queue_tile1*0', 's', 1, 1, 0.5, '1', '0', '1', 1658, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(20071, 'ads_gsArcade_2 name', 'ads_gsArcade_2', 's', 1, 1, 1, '1', '0', '0', 3278, '1', '1', '1', '1', '1', 'default', 2, '0'),
(448, 'Snow Rug', 'rare_snowrug', 's', 2, 2, 0, '1', '0', '1', 1738, '1', '1', '1', '1', '1', 'default', 1, '0'),
(449, 'Lantern', 'cn_lamp', 's', 1, 1, 1, '0', '0', '0', 1741, '1', '1', '1', '1', '1', 'default', 2, '0'),
(450, 'Chinese Sofa', 'cn_sofa', 's', 3, 1, 1, '0', '1', '0', 1742, '1', '1', '1', '1', '1', 'default', 1, '0'),
(451, 'Sport track straight', 'sporttrack1*1', 's', 2, 2, 0, '1', '0', '1', 1745, '1', '1', '1', '1', '1', 'default', 1, '0'),
(452, 'Sport track straight grass', 'sporttrack1*3', 's', 2, 2, 0, '1', '0', '1', 1747, '1', '1', '1', '1', '1', 'default', 1, '0'),
(453, 'Sport track straight asphalt', 'sporttrack1*2', 's', 2, 2, 0, '1', '0', '1', 1748, '1', '1', '1', '1', '1', 'default', 1, '0'),
(454, 'Sport corner tartan', 'sporttrack2*1', 's', 2, 2, 0, '1', '0', '1', 1750, '1', '1', '1', '1', '1', 'default', 1, '0'),
(455, 'Sport corner asphalt', 'sporttrack2*2', 's', 2, 2, 0, '1', '0', '1', 1751, '1', '1', '1', '1', '1', 'default', 1, '0'),
(456, 'Sport corner grass', 'sporttrack2*3', 's', 2, 2, 0, '1', '0', '1', 1752, '1', '1', '1', '1', '1', 'default', 1, '0'),
(457, 'Sport goal tartan', 'sporttrack3*1', 's', 2, 2, 0, '1', '0', '1', 1754, '1', '1', '1', '1', '1', 'default', 1, '0'),
(458, 'Sport goal asphalt', 'sporttrack3*2', 's', 2, 2, 0, '1', '0', '1', 1755, '1', '1', '1', '1', '1', 'default', 1, '0'),
(459, 'Sport goal grass', 'sporttrack3*3', 's', 2, 2, 0, '1', '0', '1', 1756, '1', '1', '1', '1', '1', 'default', 1, '0'),
(460, 'Football Lamp', 'footylamp', 's', 1, 1, 1, '0', '0', '0', 1757, '1', '1', '1', '1', '1', 'default', 2, '0'),
(461, 'Bar Stool', 'barchair_silo', 's', 1, 1, 1.2, '0', '1', '0', 1759, '1', '1', '1', '1', '1', 'default', 1, '0'),
(462, 'Habbos', 'divider_nor4*4', 's', 2, 1, 1, '0', '0', '0', 1760, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(463, 'Classic Traffic Light', 'traffic_light*1', 's', 1, 1, 1, '0', '0', '0', 1761, '1', '1', '1', '1', '1', 'default', 3, '0'),
(464, 'Blue Traffic Light', 'traffic_light*2', 's', 1, 1, 1, '0', '0', '0', 1762, '1', '1', '1', '1', '1', 'default', 3, '0'),
(465, 'Purple Traffic Light', 'traffic_light*3', 's', 1, 1, 1, '0', '0', '0', 1763, '1', '1', '1', '1', '1', 'default', 3, '0'),
(466, 'Yellow Traffic Light', 'traffic_light*4', 's', 1, 1, 1, '0', '0', '0', 1764, '1', '1', '1', '1', '1', 'default', 3, '0'),
(467, 'Red Traffic Light', 'traffic_light*6', 's', 1, 1, 1, '0', '0', '0', 1765, '1', '1', '1', '1', '1', 'default', 3, '0'),
(468, 'Blue Inflatable Chair', 'rubberchair*1', 's', 1, 1, 1, '0', '1', '0', 1766, '1', '1', '1', '1', '1', 'default', 1, '0'),
(469, 'Pink Inflatable Chair', 'rubberchair*2', 's', 1, 1, 1, '0', '1', '0', 1767, '1', '1', '1', '1', '1', 'default', 1, '0'),
(470, 'Orange Inflatable Chair', 'rubberchair*3', 's', 1, 1, 1, '0', '1', '0', 1768, '1', '1', '1', '1', '1', 'default', 1, '0'),
(471, 'Ocean Inflatable Chair', 'rubberchair*4', 's', 1, 1, 1, '0', '1', '0', 1769, '1', '1', '1', '1', '1', 'default', 1, '0'),
(472, 'Lime Inflatable Chair', 'rubberchair*5', 's', 1, 1, 1, '0', '1', '0', 1770, '1', '1', '1', '1', '1', 'default', 1, '0'),
(473, 'Violet Inflatable Chair', 'rubberchair*6', 's', 1, 1, 1, '0', '1', '0', 1771, '1', '1', '1', '1', '1', 'default', 1, '0'),
(474, 'Yellow Maze Barrier', 'barrier*1', 's', 1, 2, 1, '0', '0', '0', 1772, '1', '1', '1', '1', '1', 'default', 2, '0'),
(475, 'No trespassing', 'barrier*2', 's', 1, 2, 1, '0', '0', '0', 1773, '1', '1', '1', '1', '1', 'default', 2, '0'),
(476, 'No trespassing', 'barrier*3', 's', 1, 2, 1, '0', '0', '0', 1774, '1', '1', '1', '1', '1', 'default', 2, '0'),
(477, 'White Inflatable Chair', 'rubberchair*7', 's', 1, 1, 1, '0', '1', '0', 1775, '1', '1', '1', '1', '1', 'default', 1, '0'),
(478, 'Black Inflatable Chair', 'rubberchair*8', 's', 1, 1, 1, '0', '1', '0', 1776, '1', '1', '1', '1', '1', 'default', 1, '0'),
(479, 'Black Iced Table', 'table_norja_med*2', 's', 2, 2, 1, '1', '0', '0', 1777, '1', '1', '1', '1', '1', 'default', 1, '0'),
(480, 'White Iced Table', 'table_norja_med*3', 's', 2, 2, 1, '1', '0', '0', 1778, '1', '1', '1', '1', '1', 'default', 1, '0'),
(481, 'Urban Iced Coffee Table', 'table_norja_med*4', 's', 2, 2, 1, '1', '0', '0', 1779, '1', '1', '1', '1', '1', 'default', 1, '0'),
(482, 'Large Coffee Table Pink', 'table_norja_med*5', 's', 2, 2, 1, '1', '0', '0', 1780, '1', '1', '1', '1', '1', 'default', 1, '0'),
(483, 'Large Coffee Table Blue', 'table_norja_med*6', 's', 2, 2, 1, '1', '0', '0', 1781, '1', '1', '1', '1', '1', 'default', 1, '0'),
(484, 'Rural Iced Coffee Table', 'table_norja_med*7', 's', 2, 2, 1, '1', '0', '0', 1782, '1', '1', '1', '1', '1', 'default', 1, '0'),
(485, 'Large Coffee Table Yellow', 'table_norja_med*8', 's', 2, 2, 1, '1', '0', '0', 1783, '1', '1', '1', '1', '1', 'default', 1, '0'),
(486, 'Large Coffee Table Red', 'table_norja_med*9', 's', 2, 2, 1, '1', '0', '0', 1784, '1', '1', '1', '1', '1', 'default', 1, '0'),
(487, 'Black Iced Bench', 'couch_norja*2', 's', 2, 1, 1, '0', '1', '0', 1785, '1', '1', '1', '1', '1', 'default', 1, '0'),
(488, 'White Iced Bench', 'couch_norja*3', 's', 2, 1, 1, '0', '1', '0', 1786, '1', '1', '1', '1', '1', 'default', 1, '0'),
(489, 'Urban Iced Bench', 'couch_norja*4', 's', 2, 1, 1, '0', '1', '0', 1787, '1', '1', '1', '1', '1', 'default', 1, '0'),
(490, 'Pink Bench', 'couch_norja*5', 's', 2, 1, 1, '0', '1', '0', 1788, '1', '1', '1', '1', '1', 'default', 1, '0'),
(491, 'Blue Bench', 'couch_norja*6', 's', 2, 1, 1, '0', '1', '0', 1789, '1', '1', '1', '1', '1', 'default', 1, '0'),
(492, 'Rural Iced Bench', 'couch_norja*7', 's', 2, 1, 1, '0', '1', '0', 1790, '1', '1', '1', '1', '1', 'default', 1, '0'),
(493, 'Yellow Bench', 'couch_norja*8', 's', 2, 1, 1, '0', '1', '0', 1791, '1', '1', '1', '1', '1', 'default', 1, '0'),
(494, 'Red Bench', 'couch_norja*9', 's', 2, 1, 1, '0', '1', '0', 1792, '1', '1', '1', '1', '1', 'default', 1, '0'),
(495, 'Black Iced Bookcase', 'shelves_norja*2', 's', 1, 1, 1, '0', '0', '0', 1793, '1', '1', '1', '1', '1', 'default', 1, '0'),
(496, 'Urban Iced Bookcase', 'shelves_norja*3', 's', 1, 1, 1, '0', '0', '0', 1794, '1', '1', '1', '1', '1', 'default', 1, '0'),
(497, 'Pink Bookcase', 'shelves_norja*5', 's', 1, 1, 1, '0', '0', '0', 1796, '1', '1', '1', '1', '1', 'default', 1, '0'),
(498, 'Blue Bookcase', 'shelves_norja*6', 's', 1, 1, 1, '0', '0', '0', 1797, '1', '1', '1', '1', '1', 'default', 1, '0'),
(499, 'Rural Iced Bookcase', 'shelves_norja*7', 's', 1, 1, 1, '0', '0', '0', 1798, '1', '1', '1', '1', '1', 'default', 1, '0'),
(500, 'Yellow Bookcase', 'shelves_norja*8', 's', 1, 1, 1, '0', '0', '0', 1799, '1', '1', '1', '1', '1', 'default', 1, '0'),
(501, 'Red Bookcase', 'shelves_norja*9', 's', 1, 1, 1, '0', '0', '0', 1800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(502, 'Black Iced Chair', 'chair_norja*2', 's', 1, 1, 1, '0', '1', '0', 1801, '1', '1', '1', '1', '1', 'default', 1, '0'),
(503, 'White Iced Chair', 'chair_norja*3', 's', 1, 1, 1, '0', '1', '0', 1802, '1', '1', '1', '1', '1', 'default', 1, '0'),
(504, 'Urban Iced Chair', 'chair_norja*4', 's', 1, 1, 1, '0', '1', '0', 1803, '1', '1', '1', '1', '1', 'default', 1, '0'),
(505, 'Pink Chair', 'chair_norja*5', 's', 1, 1, 1, '0', '1', '0', 1804, '1', '1', '1', '1', '1', 'default', 1, '0'),
(506, 'Blue Chair', 'chair_norja*6', 's', 1, 1, 1, '0', '1', '0', 1805, '1', '1', '1', '1', '1', 'default', 1, '0'),
(507, 'Rural Chair', 'chair_norja*7', 's', 1, 1, 1, '0', '1', '0', 1806, '1', '1', '1', '1', '1', 'default', 1, '0'),
(508, 'Yellow Chair', 'chair_norja*8', 's', 1, 1, 1, '0', '1', '0', 1807, '1', '1', '1', '1', '1', 'default', 1, '0'),
(509, 'Red Chair', 'chair_norja*9', 's', 1, 1, 1, '0', '1', '0', 1808, '1', '1', '1', '1', '1', 'default', 1, '0'),
(510, 'Black Iced Corner', 'divider_nor1*2', 's', 1, 1, 1, '0', '0', '0', 1809, '1', '1', '1', '1', '1', 'default', 1, '0'),
(511, 'Looks squishy', 'divider_nor1*3', 's', 1, 1, 1, '0', '0', '0', 1810, '1', '1', '1', '1', '1', 'default', 1, '0'),
(512, 'Urban Iced Corner', 'divider_nor1*4', 's', 1, 1, 1, '0', '0', '0', 1811, '1', '1', '1', '1', '1', 'default', 1, '0'),
(513, 'Pink Ice corner', 'divider_nor1*5', 's', 1, 1, 1, '0', '0', '0', 1812, '1', '1', '1', '1', '1', 'default', 1, '0'),
(514, 'Blue Ice corner', 'divider_nor1*6', 's', 1, 1, 1, '0', '0', '0', 1813, '1', '1', '1', '1', '1', 'default', 1, '0'),
(515, 'Rural Iced Corner', 'divider_nor1*7', 's', 1, 1, 1, '0', '0', '0', 1814, '1', '1', '1', '1', '1', 'default', 1, '0'),
(516, 'Yellow Ice corner', 'divider_nor1*8', 's', 1, 1, 1, '0', '0', '0', 1815, '1', '1', '1', '1', '1', 'default', 1, '0'),
(517, 'Red Ice corner', 'divider_nor1*9', 's', 1, 1, 1, '0', '0', '0', 1816, '1', '1', '1', '1', '1', 'default', 1, '0'),
(518, 'Black Iced Sofa', 'soft_sofa_norja*2', 's', 2, 1, 1, '0', '1', '0', 1817, '1', '1', '1', '1', '1', 'default', 1, '0'),
(519, 'Pristine white', 'soft_sofa_norja*3', 's', 2, 1, 1, '0', '1', '0', 1818, '1', '1', '1', '1', '1', 'default', 1, '0'),
(520, 'Urban Iced Sofa', 'soft_sofa_norja*4', 's', 2, 1, 1, '0', '1', '0', 1819, '1', '1', '1', '1', '1', 'default', 1, '0'),
(521, 'Pink Iced Sofa', 'soft_sofa_norja*5', 's', 2, 1, 1, '0', '1', '0', 1820, '1', '1', '1', '1', '1', 'default', 1, '0'),
(522, 'Blue Iced Sofa', 'soft_sofa_norja*6', 's', 2, 1, 1, '0', '1', '0', 1821, '1', '1', '1', '1', '1', 'default', 1, '0'),
(523, 'Rural Iced Sofa', 'soft_sofa_norja*7', 's', 2, 1, 1, '0', '1', '0', 1822, '1', '1', '1', '1', '1', 'default', 1, '0'),
(524, 'Yellow Iced Sofa', 'soft_sofa_norja*8', 's', 2, 1, 1, '0', '1', '0', 1823, '1', '1', '1', '1', '1', 'default', 1, '0'),
(525, 'Red Iced Sofa', 'soft_sofa_norja*9', 's', 2, 1, 1, '0', '1', '0', 1824, '1', '1', '1', '1', '1', 'default', 1, '0'),
(526, 'Black Iced Sofachair', 'soft_sofachair_norja*2', 's', 1, 1, 1, '0', '1', '0', 1825, '1', '1', '1', '1', '1', 'default', 1, '0'),
(527, 'White Iced Sofachair', 'soft_sofachair_norja*3', 's', 1, 1, 1, '0', '1', '0', 1826, '1', '1', '1', '1', '1', 'default', 1, '0'),
(528, 'Urban Iced Sofachair', 'soft_sofachair_norja*4', 's', 1, 1, 1, '0', '1', '0', 1827, '1', '1', '1', '1', '1', 'default', 1, '0'),
(529, 'Pink Iced Sofachair', 'soft_sofachair_norja*5', 's', 1, 1, 1, '0', '1', '0', 1828, '1', '1', '1', '1', '1', 'default', 1, '0'),
(530, 'Blue Iced Sofachair', 'soft_sofachair_norja*6', 's', 1, 1, 1, '0', '1', '0', 1829, '1', '1', '1', '1', '1', 'default', 1, '0'),
(531, 'Rural Iced Sofachair', 'soft_sofachair_norja*7', 's', 1, 1, 1, '0', '1', '0', 1830, '1', '1', '1', '1', '1', 'default', 1, '0'),
(532, 'Yellow Iced Sofachair', 'soft_sofachair_norja*8', 's', 1, 1, 1, '0', '1', '0', 1831, '1', '1', '1', '1', '1', 'default', 1, '0'),
(533, 'Red Iced Sofachair', 'soft_sofachair_norja*9', 's', 1, 1, 1, '0', '1', '0', 1832, '1', '1', '1', '1', '1', 'default', 1, '0'),
(534, 'Large', 'sofachair_silo*2', 's', 1, 1, 1.1, '0', '1', '0', 1833, '1', '1', '1', '1', '1', 'default', 1, '0'),
(535, 'Large', 'sofachair_silo*3', 's', 1, 1, 1.1, '0', '1', '0', 1834, '1', '1', '1', '1', '1', 'default', 1, '0'),
(536, 'Beige Area Armchair', 'sofachair_silo*4', 's', 1, 1, 1.1, '0', '1', '0', 1835, '1', '1', '1', '1', '1', 'default', 1, '0'),
(537, 'Pink Area Armchair', 'sofachair_silo*5', 's', 1, 1, 1.1, '0', '1', '0', 1836, '1', '1', '1', '1', '1', 'default', 1, '0'),
(538, 'Blue Area Armchair', 'sofachair_silo*6', 's', 1, 1, 1.1, '0', '1', '0', 1837, '1', '1', '1', '1', '1', 'default', 1, '0'),
(539, 'Green Area Armchair', 'sofachair_silo*7', 's', 1, 1, 1.1, '0', '1', '0', 1838, '1', '1', '1', '1', '1', 'default', 1, '0'),
(540, 'Large', 'sofachair_silo*8', 's', 1, 1, 1.1, '0', '1', '0', 1839, '1', '1', '1', '1', '1', 'default', 1, '0'),
(541, 'Red Area Armchair', 'sofachair_silo*9', 's', 1, 1, 1.1, '0', '1', '0', 1840, '1', '1', '1', '1', '1', 'default', 1, '0'),
(542, 'Black Occasional Table', 'table_silo_small*2', 's', 1, 1, 1, '1', '0', '0', 1841, '1', '1', '1', '1', '1', 'default', 1, '0'),
(543, 'White Occasional Table', 'table_silo_small*3', 's', 1, 1, 1, '1', '0', '0', 1842, '1', '1', '1', '1', '1', 'default', 1, '0'),
(544, 'Beige Area Occasional Table', 'table_silo_small*4', 's', 1, 1, 1, '1', '0', '0', 1843, '1', '1', '1', '1', '1', 'default', 1, '0'),
(545, 'Pink Area Occasional Table', 'table_silo_small*5', 's', 1, 1, 1, '1', '0', '0', 1844, '1', '1', '1', '1', '1', 'default', 1, '0'),
(546, 'Blue Area Occasional Table', 'table_silo_small*6', 's', 1, 1, 1, '1', '0', '0', 1845, '1', '1', '1', '1', '1', 'default', 1, '0'),
(547, 'Green Area Occasional Table', 'table_silo_small*7', 's', 1, 1, 1, '1', '0', '0', 1846, '1', '1', '1', '1', '1', 'default', 1, '0'),
(548, 'Yellow Occasional Table', 'table_silo_small*8', 's', 1, 1, 1, '1', '0', '0', 1847, '1', '1', '1', '1', '1', 'default', 1, '0'),
(549, 'Red Area Occasional Table', 'table_silo_small*9', 's', 1, 1, 1, '1', '0', '0', 1848, '1', '1', '1', '1', '1', 'default', 1, '0'),
(550, 'Black Corner Shelf', 'divider_silo1*2', 's', 1, 1, 1, '0', '0', '0', 1849, '1', '1', '1', '1', '1', 'default', 1, '0'),
(551, 'White Corner Shelf', 'divider_silo1*3', 's', 1, 1, 1, '0', '0', '0', 1850, '1', '1', '1', '1', '1', 'default', 1, '0'),
(552, 'Beige Area Corner Shelf', 'divider_silo1*4', 's', 1, 1, 1, '0', '0', '0', 1851, '1', '1', '1', '1', '1', 'default', 1, '0'),
(553, 'Pink Area Corner Shelf', 'divider_silo1*5', 's', 1, 1, 1, '0', '0', '0', 1852, '1', '1', '1', '1', '1', 'default', 1, '0'),
(554, 'Blue Area Corner Shelf', 'divider_silo1*6', 's', 1, 1, 1, '0', '0', '0', 1853, '1', '1', '1', '1', '1', 'default', 1, '0'),
(555, 'Green Area Corner Shelf', 'divider_silo1*7', 's', 1, 1, 1, '0', '0', '0', 1854, '1', '1', '1', '1', '1', 'default', 1, '0'),
(556, 'Yellow Corner Shelf', 'divider_silo1*8', 's', 1, 1, 1, '0', '0', '0', 1855, '1', '1', '1', '1', '1', 'default', 1, '0'),
(557, 'Red Area Corner Shelf', 'divider_silo1*9', 's', 1, 1, 1, '0', '0', '0', 1856, '1', '1', '1', '1', '1', 'default', 1, '0'),
(558, 'Black Area Gate', 'divider_silo3*2', 's', 1, 1, 0.001, '0', '0', '0', 1857, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(559, 'White Area Gate', 'divider_silo3*3', 's', 1, 1, 0.001, '0', '0', '0', 1858, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(560, 'Beige Area Gate', 'divider_silo3*4', 's', 1, 1, 0.001, '0', '0', '0', 1859, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(561, 'Pink Area Gate', 'divider_silo3*5', 's', 1, 1, 0.001, '0', '0', '0', 1860, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(562, 'Blue Area Gate', 'divider_silo3*6', 's', 1, 1, 0.001, '0', '0', '0', 1861, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(563, 'Green Area Gate', 'divider_silo3*7', 's', 1, 1, 0.001, '0', '0', '0', 1862, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(564, 'Yellow Area Gate', 'divider_silo3*8', 's', 1, 1, 0.001, '0', '0', '0', 1863, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(565, 'Red Area Gate', 'divider_silo3*9', 's', 1, 1, 0.001, '0', '0', '0', 1864, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(566, 'Black Coffee Table', 'table_silo_med*2', 's', 2, 2, 1, '1', '0', '0', 1865, '1', '1', '1', '1', '1', 'default', 1, '0'),
(567, 'White Coffee Table', 'table_silo_med*3', 's', 2, 2, 1, '1', '0', '0', 1866, '1', '1', '1', '1', '1', 'default', 1, '0'),
(568, 'Beige Area Coffee Table', 'table_silo_med*4', 's', 2, 2, 1, '1', '0', '0', 1867, '1', '1', '1', '1', '1', 'default', 1, '0'),
(569, 'Pink Area Coffee Table', 'table_silo_med*5', 's', 2, 2, 1, '1', '0', '0', 1868, '1', '1', '1', '1', '1', 'default', 1, '0'),
(570, 'Blue Area Coffee Table', 'table_silo_med*6', 's', 2, 2, 1, '1', '0', '0', 1869, '1', '1', '1', '1', '1', 'default', 1, '0'),
(571, 'Green Area Coffee Table', 'table_silo_med*7', 's', 2, 2, 1, '1', '0', '0', 1870, '1', '1', '1', '1', '1', 'default', 1, '0'),
(572, 'Yellow Coffee Table', 'table_silo_med*8', 's', 2, 2, 1, '1', '0', '0', 1871, '1', '1', '1', '1', '1', 'default', 1, '0'),
(573, 'Red Area Coffee Table', 'table_silo_med*9', 's', 2, 2, 1, '1', '0', '0', 1872, '1', '1', '1', '1', '1', 'default', 1, '0'),
(574, 'Cushioned', 'sofa_silo*2', 's', 2, 1, 1.1, '0', '1', '0', 1873, '1', '1', '1', '1', '1', 'default', 1, '0'),
(575, 'Cushioned', 'sofa_silo*3', 's', 2, 1, 1.1, '0', '1', '0', 1874, '1', '1', '1', '1', '1', 'default', 1, '0'),
(576, 'Beige Area Sofa', 'sofa_silo*4', 's', 2, 1, 1.1, '0', '1', '0', 1875, '1', '1', '1', '1', '1', 'default', 1, '0'),
(577, 'Pink Area Sofa', 'sofa_silo*5', 's', 2, 1, 1.1, '0', '1', '0', 1876, '1', '1', '1', '1', '1', 'default', 1, '0'),
(578, 'Blue Area Sofa', 'sofa_silo*6', 's', 2, 1, 1.1, '0', '1', '0', 1877, '1', '1', '1', '1', '1', 'default', 1, '0'),
(579, 'Green Area Sofa', 'sofa_silo*7', 's', 2, 1, 1.1, '0', '1', '0', 1878, '1', '1', '1', '1', '1', 'default', 1, '0'),
(580, 'Cushioned', 'sofa_silo*8', 's', 2, 1, 1.1, '0', '1', '0', 1879, '1', '1', '1', '1', '1', 'default', 1, '0'),
(581, 'Red Area Sofa', 'sofa_silo*9', 's', 2, 1, 1.1, '0', '1', '0', 1880, '1', '1', '1', '1', '1', 'default', 1, '0'),
(582, 'Black Mode Armchair', 'sofachair_polyfon*2', 's', 1, 1, 1.1, '0', '1', '0', 1881, '1', '1', '1', '1', '1', 'default', 1, '0'),
(583, 'White Armchair', 'sofachair_polyfon*3', 's', 1, 1, 1.1, '0', '1', '0', 1882, '1', '1', '1', '1', '1', 'default', 1, '0'),
(584, 'Beige Mode Armchair', 'sofachair_polyfon*4', 's', 1, 1, 1.1, '0', '1', '0', 1883, '1', '1', '1', '1', '1', 'default', 1, '0'),
(585, 'Blue Mode Armchair', 'sofachair_polyfon*6', 's', 1, 1, 1.1, '0', '1', '0', 1884, '1', '1', '1', '1', '1', 'default', 1, '0'),
(586, 'Green Armchair', 'sofachair_polyfon*7', 's', 1, 1, 1.1, '0', '1', '0', 1885, '1', '1', '1', '1', '1', 'default', 1, '0'),
(587, 'Yellow Mode Armchair', 'sofachair_polyfon*8', 's', 1, 1, 1.1, '0', '1', '0', 1886, '1', '1', '1', '1', '1', 'default', 1, '0'),
(588, 'Red Armchair', 'sofachair_polyfon*9', 's', 1, 1, 1.1, '0', '1', '0', 1887, '1', '1', '1', '1', '1', 'default', 1, '0'),
(589, 'Black Mode Sofa', 'sofa_polyfon*2', 's', 2, 1, 1.1, '0', '1', '0', 1888, '1', '1', '1', '1', '1', 'default', 1, '0'),
(590, 'White Two-seater Sofa', 'sofa_polyfon*3', 's', 2, 1, 1.1, '0', '1', '0', 1889, '1', '1', '1', '1', '1', 'default', 1, '0'),
(591, 'Beige Mode Sofa', 'sofa_polyfon*4', 's', 2, 1, 1.1, '0', '1', '0', 1890, '1', '1', '1', '1', '1', 'default', 1, '0'),
(592, 'Blue Mode Sofa', 'sofa_polyfon*6', 's', 2, 1, 1.1, '0', '1', '0', 1891, '1', '1', '1', '1', '1', 'default', 1, '0'),
(593, 'Green Two-seater Sofa', 'sofa_polyfon*7', 's', 2, 1, 1.1, '0', '1', '0', 1892, '1', '1', '1', '1', '1', 'default', 1, '0'),
(594, 'Yellow Mode Sofa', 'sofa_polyfon*8', 's', 2, 1, 1.1, '0', '1', '0', 1893, '1', '1', '1', '1', '1', 'default', 1, '0'),
(595, 'Black Mode Double Bed', 'sofa_polyfon*9', 's', 2, 1, 1.1, '0', '1', '0', 1894, '1', '1', '1', '1', '1', 'default', 1, '0'),
(596, 'White Double Bed', 'bed_polyfon*3', 's', 2, 3, 1.8, '0', '0', '0', 1896, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(597, 'Beige Mode Double Bed', 'bed_polyfon*4', 's', 2, 3, 1.8, '0', '0', '0', 1897, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(598, 'Blue Mode Double Bed', 'bed_polyfon*6', 's', 2, 3, 1.8, '0', '0', '0', 1898, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(599, 'Green Double Bed', 'bed_polyfon*7', 's', 2, 3, 1.8, '0', '0', '0', 1899, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(600, 'Yellow Mode Double Bed', 'bed_polyfon*8', 's', 2, 3, 1.8, '0', '0', '0', 1900, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(601, 'Red Double Bed', 'bed_polyfon*9', 's', 2, 3, 1.8, '0', '0', '0', 1901, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(602, 'Black Mode Single Bed', 'bed_polyfon_one*2', 's', 1, 3, 1.8, '0', '0', '0', 1902, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(603, 'White Single Bed', 'bed_polyfon_one*3', 's', 1, 3, 1.8, '0', '0', '0', 1903, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(604, 'Beige Mode Single Bed', 'bed_polyfon_one*4', 's', 1, 3, 1.8, '0', '0', '0', 1904, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(605, 'Blue Mode Single Bed', 'bed_polyfon_one*6', 's', 1, 3, 1.8, '0', '0', '0', 1905, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(606, 'Green Single Bed', 'bed_polyfon_one*7', 's', 1, 3, 1.8, '0', '0', '0', 1906, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(607, 'Yellow Mode Single Bed', 'bed_polyfon_one*8', 's', 1, 3, 1.8, '0', '0', '0', 1907, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(608, 'Red Single Bed', 'bed_polyfon_one*9', 's', 1, 3, 1.8, '0', '0', '0', 1908, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(609, 'Black Mode Bardesk', 'bardesk_polyfon*2', 's', 2, 1, 1, '1', '0', '0', 1909, '1', '1', '1', '1', '1', 'default', 1, '0'),
(610, 'White Bardesk', 'bardesk_polyfon*3', 's', 2, 1, 1, '1', '0', '0', 1910, '1', '1', '1', '1', '1', 'default', 1, '0'),
(611, 'Beige Mode Bardesk', 'bardesk_polyfon*4', 's', 2, 1, 1, '1', '0', '0', 1911, '1', '1', '1', '1', '1', 'default', 1, '0'),
(612, 'Candy Bar', 'bardesk_polyfon*5', 's', 2, 1, 1, '1', '0', '0', 1912, '1', '1', '1', '1', '1', 'default', 1, '0'),
(613, 'Blue Mode Bardesk', 'bardesk_polyfon*6', 's', 2, 1, 1, '1', '0', '0', 1913, '1', '1', '1', '1', '1', 'default', 1, '0'),
(614, 'Green Bardesk', 'bardesk_polyfon*7', 's', 2, 1, 1, '1', '0', '0', 1914, '1', '1', '1', '1', '1', 'default', 1, '0'),
(615, 'Yellow Mode Bardesk', 'bardesk_polyfon*8', 's', 2, 1, 1, '1', '0', '0', 1915, '1', '1', '1', '1', '1', 'default', 1, '0'),
(616, 'Red Bardesk', 'bardesk_polyfon*9', 's', 2, 1, 1, '1', '0', '0', 1916, '1', '1', '1', '1', '1', 'default', 1, '0'),
(617, 'Black Mode Bardesk Corner', 'bardeskcorner_polyfon*2', 's', 1, 1, 1, '1', '0', '0', 1917, '1', '1', '1', '1', '1', 'default', 1, '0'),
(618, 'White Corner Desk', 'bardeskcorner_polyfon*3', 's', 1, 1, 1, '1', '0', '0', 1918, '1', '1', '1', '1', '1', 'default', 1, '0'),
(619, 'Beige Mode Bardesk Corner', 'bardeskcorner_polyfon*4', 's', 1, 1, 1, '1', '0', '0', 1919, '1', '1', '1', '1', '1', 'default', 1, '0'),
(620, 'Candy Corner', 'bardeskcorner_polyfon*5', 's', 1, 1, 1, '1', '0', '0', 1920, '1', '1', '1', '1', '1', 'default', 1, '0'),
(621, 'Blue Mode Bardesk Corner', 'bardeskcorner_polyfon*6', 's', 1, 1, 1, '1', '0', '0', 1921, '1', '1', '1', '1', '1', 'default', 1, '0'),
(622, 'Green Corner Desk', 'bardeskcorner_polyfon*7', 's', 1, 1, 1, '1', '0', '0', 1922, '1', '1', '1', '1', '1', 'default', 1, '0'),
(623, 'Yellow Mode Bardesk Corner', 'bardeskcorner_polyfon*8', 's', 1, 1, 1, '1', '0', '0', 1923, '1', '1', '1', '1', '1', 'default', 1, '0'),
(624, 'Red Corner Desk', 'bardeskcorner_polyfon*9', 's', 1, 1, 1, '1', '0', '0', 1924, '1', '1', '1', '1', '1', 'default', 1, '0'),
(625, 'Black Mode Bardesk Gate', 'divider_poly3*2', 's', 1, 1, 0.001, '0', '0', '0', 1925, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(626, 'White Hatch', 'divider_poly3*3', 's', 1, 1, 0.001, '0', '0', '0', 1926, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(627, 'Beige Mode Bardesk Gate', 'divider_poly3*4', 's', 1, 1, 0.001, '0', '0', '0', 1927, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(628, 'Candy Hatch (Lockable)', 'divider_poly3*5', 's', 1, 1, 0.001, '0', '0', '0', 1928, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(629, 'Blue Mode Bardesk Gate', 'divider_poly3*6', 's', 1, 1, 0.001, '0', '0', '0', 1929, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(20073, 'ads_idol_l_carpet name', 'ads_idol_l_carpet', 's', 2, 7, 0, '1', '0', '0', 3276, '1', '1', '1', '1', '1', '', 1, '0'),
(631, 'Yellow Mode Bardesk Gate', 'divider_poly3*8', 's', 1, 1, 0.001, '0', '0', '0', 1931, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(632, 'Red Hatch', 'divider_poly3*9', 's', 1, 1, 0.001, '0', '0', '0', 1932, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(633, 'Black Dining Chair', 'chair_silo*2', 's', 1, 1, 1.1, '0', '1', '0', 1933, '1', '1', '1', '1', '1', 'default', 1, '0'),
(634, 'White Dining Chair', 'chair_silo*3', 's', 1, 1, 1.1, '0', '1', '0', 1934, '1', '1', '1', '1', '1', 'default', 1, '0'),
(635, 'Beige Silo Dining Chair', 'chair_silo*4', 's', 1, 1, 1.1, '0', '1', '0', 1935, '1', '1', '1', '1', '1', 'default', 1, '0'),
(636, 'Pink Silo Dining Chair', 'chair_silo*5', 's', 1, 1, 1.1, '0', '1', '0', 1936, '1', '1', '1', '1', '1', 'default', 1, '0'),
(637, 'Blue Area Dining Chair', 'chair_silo*6', 's', 1, 1, 1.1, '0', '1', '0', 1937, '1', '1', '1', '1', '1', 'default', 1, '0'),
(638, 'Green Area Dining Chair', 'chair_silo*7', 's', 1, 1, 1.1, '0', '1', '0', 1938, '1', '1', '1', '1', '1', 'default', 1, '0'),
(639, 'Yellow Dining Chair', 'chair_silo*8', 's', 1, 1, 1.1, '0', '1', '0', 1939, '1', '1', '1', '1', '1', 'default', 1, '0'),
(640, 'Red Area Dining Chair', 'chair_silo*9', 's', 1, 1, 1.1, '0', '1', '0', 1940, '1', '1', '1', '1', '1', 'default', 1, '0'),
(641, 'No way through', 'divider_nor3*2', 's', 1, 1, 1, '0', '0', '0', 1941, '1', '1', '1', '1', '1', 'default', 2, '0'),
(642, 'White Iced Gate', 'divider_nor3*3', 's', 1, 1, 0.001, '0', '0', '0', 1942, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(643, 'Urban Iced Gate', 'divider_nor3*4', 's', 1, 1, 0.001, '0', '0', '0', 1943, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(644, 'Pink Iced gate', 'divider_nor3*5', 's', 1, 1, 0.001, '0', '0', '0', 1944, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(645, 'Blue Iced gate', 'divider_nor3*6', 's', 1, 1, 0.001, '0', '0', '0', 1945, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(646, 'Rural Iced gate', 'divider_nor3*7', 's', 1, 1, 0.001, '0', '0', '0', 1946, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(647, 'Yellow Iced gate', 'divider_nor3*8', 's', 1, 1, 0.001, '0', '0', '0', 1947, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(648, 'Red Iced gate', 'divider_nor3*9', 's', 1, 1, 0.001, '0', '0', '0', 1948, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(649, 'Black Iced Bar-Desk', 'divider_nor2*2', 's', 2, 1, 1, '0', '0', '0', 1949, '1', '1', '1', '1', '1', 'default', 1, '0'),
(650, 'Strong', 'divider_nor2*3', 's', 2, 1, 1, '0', '0', '0', 1950, '1', '1', '1', '1', '1', 'default', 1, '0'),
(651, 'Urban Iced Bar', 'divider_nor2*4', 's', 2, 1, 1, '0', '0', '0', 1951, '1', '1', '1', '1', '1', 'default', 1, '0'),
(652, 'Pink Iced bar desk', 'divider_nor2*5', 's', 2, 1, 1, '0', '0', '0', 1952, '1', '1', '1', '1', '1', 'default', 1, '0'),
(653, 'Blue Iced bar desk', 'divider_nor2*6', 's', 2, 1, 1, '0', '0', '0', 1953, '1', '1', '1', '1', '1', 'default', 1, '0'),
(654, 'Rural Iced Bar', 'divider_nor2*7', 's', 2, 1, 1, '0', '0', '0', 1954, '1', '1', '1', '1', '1', 'default', 1, '0'),
(655, 'Yellow Iced bar desk', 'divider_nor2*8', 's', 2, 1, 1, '0', '0', '0', 1955, '1', '1', '1', '1', '1', 'default', 1, '0'),
(656, 'Red Iced bar desk', 'divider_nor2*9', 's', 2, 1, 1, '0', '0', '0', 1956, '1', '1', '1', '1', '1', 'default', 1, '0'),
(657, 'Area Quest Desk', 'silo_studydesk', 's', 2, 1, 1, '1', '0', '0', 1957, '1', '1', '1', '1', '1', 'default', 1, '0'),
(658, 'White Solarium', 'solarium_norja', 's', 1, 1, 1, '0', '0', '0', 1958, '1', '1', '1', '1', '1', 'default', 2, '0'),
(659, 'Black Solarium', 'solarium_norja*1', 's', 1, 1, 1, '0', '0', '0', 1959, '1', '1', '1', '1', '1', 'default', 2, '0'),
(660, 'Beige Solarium', 'solarium_norja*2', 's', 1, 1, 1, '0', '0', '0', 1960, '1', '1', '1', '1', '1', 'default', 2, '0'),
(661, 'Urban Solarium', 'solarium_norja*3', 's', 1, 1, 1, '0', '0', '0', 1961, '1', '1', '1', '1', '1', 'default', 2, '0'),
(662, 'Pink Solarium', 'solarium_norja*5', 's', 1, 1, 1, '0', '0', '0', 1962, '1', '1', '1', '1', '1', 'default', 2, '0'),
(663, 'Blue Solarium', 'solarium_norja*6', 's', 1, 1, 1, '0', '0', '0', 1963, '1', '1', '1', '1', '1', 'default', 2, '0'),
(664, 'Rural Solarium', 'solarium_norja*7', 's', 1, 1, 1, '0', '0', '0', 1964, '1', '1', '1', '1', '1', 'default', 2, '0'),
(665, 'Yellow Solarium', 'solarium_norja*8', 's', 1, 1, 1, '0', '0', '0', 1965, '1', '1', '1', '1', '1', 'default', 2, '0'),
(666, 'Red Solarium', 'solarium_norja*9', 's', 1, 1, 1, '0', '0', '0', 1966, '1', '1', '1', '1', '1', 'default', 2, '0'),
(667, 'Tropical Beach Rug', 'sandrug', 's', 2, 2, 0, '1', '0', '1', 1967, '1', '1', '1', '1', '1', 'default', 1, '0'),
(668, 'Moon Patch', 'rare_moonrug', 's', 2, 2, 0, '1', '0', '1', 1968, '1', '1', '1', '1', '1', 'default', 1, '0'),
(669, 'Chinese Lacquer Chair', 'chair_china', 's', 1, 1, 1, '0', '1', '0', 1969, '1', '1', '1', '1', '1', 'default', 1, '0'),
(670, 'Chinese Lacquer Table', 'china_table', 's', 1, 1, 1, '1', '0', '0', 1970, '1', '1', '1', '1', '1', 'default', 1, '0'),
(671, 'Red Sleeping Bag', 'sleepingbag*1', 's', 1, 3, 0.8, '0', '0', '0', 1971, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(672, 'Lime Sleeping Bag', 'sleepingbag*2', 's', 1, 3, 0.8, '0', '0', '0', 1972, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(673, 'Ocean Sleeping Bag', 'sleepingbag*3', 's', 1, 3, 0.8, '0', '0', '0', 1973, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(674, 'Safety Sleeping Bag', 'sleepingbag*4', 's', 1, 3, 0.8, '0', '0', '0', 1974, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(675, 'Safe Minibar', 'safe_silo', 's', 1, 1, 1.3, '1', '0', '0', 1975, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(676, 'Orange Sleeping Bag', 'sleepingbag*7', 's', 1, 3, 0.8, '0', '0', '0', 1976, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(677, 'eXceptional Sleeping Bag', 'sleepingbag*9', 's', 1, 3, 0.8, '0', '0', '0', 1977, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(678, 'Graphite Sleeping Bag', 'sleepingbag*5', 's', 1, 3, 0.8, '0', '0', '0', 1978, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(679, 'Khaki Sleeping Bag', 'sleepingbag*10', 's', 1, 3, 0.8, '0', '0', '0', 1979, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(680, 'Purple Sleeping Bag', 'sleepingbag*6', 's', 1, 3, 0.8, '0', '0', '0', 1980, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(681, 'Golden Sleeping Bag', 'sleepingbag*8', 's', 1, 3, 0.8, '0', '0', '0', 1981, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(682, 'Chinese Bookshelf', 'china_shelve', 's', 2, 1, 1, '0', '0', '0', 1982, '1', '1', '1', '1', '1', 'default', 1, '0'),
(683, 'White Traffic Light', 'traffic_light*5', 's', 1, 1, 1, '0', '0', '0', 1983, '1', '1', '1', '1', '1', 'default', 3, '0'),
(684, 'Habbos', 'divider_nor4*2', 's', 2, 1, 1, '0', '0', '0', 1984, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(685, 'Habbos', 'divider_nor4*3', 's', 2, 1, 1, '0', '0', '0', 1985, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(686, 'Habbos', 'divider_nor4*5', 's', 2, 1, 1, '0', '0', '0', 1986, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(687, 'Habbos', 'divider_nor4*6', 's', 2, 1, 1, '0', '0', '0', 1987, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(688, 'Habbos', 'divider_nor4*7', 's', 2, 1, 1, '0', '0', '0', 1988, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(689, 'Habbos', 'divider_nor4*8', 's', 2, 1, 1, '0', '0', '0', 1989, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(690, 'Habbos', 'divider_nor4*9', 's', 2, 1, 1, '0', '0', '0', 1990, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(691, 'Black Iced Angle', 'divider_nor5*2', 's', 1, 1, 1, '0', '0', '0', 1991, '1', '1', '1', '1', '1', 'default', 2, '0'),
(692, 'White Iced Angle', 'divider_nor5*3', 's', 1, 1, 1, '0', '0', '0', 1992, '1', '1', '1', '1', '1', 'default', 2, '0'),
(693, 'Urban Iced Angle', 'divider_nor5*4', 's', 1, 1, 1, '0', '0', '0', 1993, '1', '1', '1', '1', '1', 'default', 2, '0'),
(694, 'Blue Iced Angle', 'divider_nor5*5', 's', 1, 1, 1, '0', '0', '0', 1994, '1', '1', '1', '1', '1', 'default', 2, '0'),
(695, 'Rural Iced Angle', 'divider_nor5*7', 's', 1, 1, 1, '0', '0', '0', 1996, '1', '1', '1', '1', '1', 'default', 2, '0'),
(696, 'Yellow Iced Angle', 'divider_nor5*8', 's', 1, 1, 1, '0', '0', '0', 1997, '1', '1', '1', '1', '1', 'default', 2, '0'),
(697, 'Red Iced Angle', 'divider_nor5*9', 's', 1, 1, 1, '0', '0', '0', 1998, '1', '1', '1', '1', '1', 'default', 2, '0'),
(698, 'Plain Iced Angle', 'divider_nor5', 's', 1, 1, 1, '0', '0', '0', 1999, '1', '1', '1', '1', '1', 'default', 2, '0'),
(699, 'Habbos', 'divider_nor4', 's', 2, 1, 1, '0', '0', '0', 2000, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(700, 'Dragon Screen', 'wall_china', 's', 1, 1, 1, '0', '0', '0', 2001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(701, 'Firm', 'corner_china', 's', 1, 1, 1, '0', '0', '0', 2002, '1', '1', '1', '1', '1', 'default', 1, '0'),
(702, 'Black Bar Stool', 'barchair_silo*2', 's', 1, 1, 1.2, '0', '1', '0', 2003, '1', '1', '1', '1', '1', 'default', 1, '0'),
(703, 'White Bar Stool', 'barchair_silo*3', 's', 1, 1, 1.2, '0', '1', '0', 2004, '1', '1', '1', '1', '1', 'default', 1, '0'),
(704, 'Beige Bar Stool', 'barchair_silo*4', 's', 1, 1, 1.2, '0', '1', '0', 2005, '1', '1', '1', '1', '1', 'default', 1, '0'),
(705, 'Pink Bar Stool', 'barchair_silo*5', 's', 1, 1, 1.2, '0', '1', '0', 2006, '1', '1', '1', '1', '1', 'default', 1, '0'),
(706, 'Blue Bar Stool', 'barchair_silo*6', 's', 1, 1, 1.2, '0', '1', '0', 2007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(707, 'Green Bar Stool', 'barchair_silo*7', 's', 1, 1, 1.2, '0', '1', '0', 2008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(708, 'Yellow Bar Stool', 'barchair_silo*8', 's', 1, 1, 1.2, '0', '1', '0', 2009, '1', '1', '1', '1', '1', 'default', 1, '0'),
(709, 'Red Bar Stool', 'barchair_silo*9', 's', 1, 1, 1.2, '0', '1', '0', 2010, '1', '1', '1', '1', '1', 'default', 1, '0'),
(710, 'Black Safe Minibar', 'safe_silo*2', 's', 1, 1, 1.3, '1', '0', '0', 2011, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(711, 'White Safe Minibar', 'safe_silo*3', 's', 1, 1, 1.3, '1', '0', '0', 2012, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(712, 'Beige Safe Minibar', 'safe_silo*4', 's', 1, 1, 1.3, '1', '0', '0', 2013, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(713, 'Pink Safe Minibar', 'safe_silo*5', 's', 1, 1, 1.3, '1', '0', '0', 2014, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(714, 'Blue Safe Minibar', 'safe_silo*6', 's', 1, 1, 1.3, '1', '0', '0', 2015, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(715, 'Green Safe Minibar', 'safe_silo*7', 's', 1, 1, 1.3, '1', '0', '0', 2016, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(716, 'Yellow Safe Minibar', 'safe_silo*8', 's', 1, 1, 1.3, '1', '0', '0', 2017, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(717, 'Red Safe Minibar', 'safe_silo*9', 's', 1, 1, 1.3, '1', '0', '0', 2018, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(718, 'Glass shelf', 'glass_shelf', 's', 2, 1, 1, '0', '0', '0', 2019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(719, 'Glass chair', 'glass_chair', 's', 1, 1, 1, '0', '1', '0', 2020, '1', '1', '1', '1', '1', 'default', 1, '0'),
(720, 'Glass stool', 'glass_stool', 's', 1, 1, 1, '0', '1', '0', 2021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(721, 'Glass sofa', 'glass_sofa', 's', 2, 1, 1, '0', '1', '0', 2022, '1', '1', '1', '1', '1', 'default', 1, '0'),
(722, 'Glass table', 'glass_table', 's', 2, 2, 1, '1', '0', '0', 2023, '1', '1', '1', '1', '1', 'default', 1, '0'),
(723, 'Glass table', 'glass_table*2', 's', 2, 2, 1, '1', '0', '0', 2024, '1', '1', '1', '1', '1', 'default', 1, '0'),
(724, 'White Glass Table', 'glass_table*3', 's', 2, 2, 1, '1', '0', '0', 2025, '1', '1', '1', '1', '1', 'default', 1, '0'),
(725, 'Glass table', 'glass_table*4', 's', 2, 2, 1, '1', '0', '0', 2026, '1', '1', '1', '1', '1', 'default', 1, '0'),
(726, 'Candy Glass Table', 'glass_table*5', 's', 2, 2, 1, '1', '0', '0', 2027, '1', '1', '1', '1', '1', 'default', 1, '0'),
(727, 'Blue Glass Table', 'glass_table*6', 's', 2, 2, 1, '1', '0', '0', 2028, '1', '1', '1', '1', '1', 'default', 1, '0'),
(728, 'Green Glass Table', 'glass_table*7', 's', 2, 2, 1, '1', '0', '0', 2029, '1', '1', '1', '1', '1', 'default', 1, '0'),
(729, 'Yellow Glass Table', 'glass_table*8', 's', 2, 2, 1, '1', '0', '0', 2030, '1', '1', '1', '1', '1', 'default', 1, '0'),
(730, 'Glass table', 'glass_table*9', 's', 2, 2, 1, '1', '0', '0', 2031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(731, 'Glass chair', 'glass_chair*2', 's', 1, 1, 1, '0', '1', '0', 2032, '1', '1', '1', '1', '1', 'default', 1, '0'),
(732, 'Glass chair', 'glass_chair*3', 's', 1, 1, 1, '0', '1', '0', 2033, '1', '1', '1', '1', '1', 'default', 1, '0'),
(733, 'Glass chair', 'glass_chair*4', 's', 1, 1, 1, '0', '1', '0', 2034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(734, 'Candy Glass Chair', 'glass_chair*5', 's', 1, 1, 1, '0', '1', '0', 2035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(735, 'Blue Glass Chair', 'glass_chair*6', 's', 1, 1, 1, '0', '1', '0', 2036, '1', '1', '1', '1', '1', 'default', 1, '0'),
(736, 'Green Glass Chair', 'glass_chair*7', 's', 1, 1, 1, '0', '1', '0', 2037, '1', '1', '1', '1', '1', 'default', 1, '0'),
(737, 'Yellow Glass Chair', 'glass_chair*8', 's', 1, 1, 1, '0', '1', '0', 2038, '1', '1', '1', '1', '1', 'default', 1, '0'),
(738, 'Glass chair', 'glass_chair*9', 's', 1, 1, 1, '0', '1', '0', 2039, '1', '1', '1', '1', '1', 'default', 1, '0'),
(739, 'Glass sofa', 'glass_sofa*2', 's', 2, 1, 1, '0', '1', '0', 2040, '1', '1', '1', '1', '1', 'default', 1, '0'),
(740, 'White Glass Sofa', 'glass_sofa*3', 's', 2, 1, 1, '0', '1', '0', 2041, '1', '1', '1', '1', '1', 'default', 1, '0'),
(741, 'Glass sofa', 'glass_sofa*4', 's', 2, 1, 1, '0', '1', '0', 2042, '1', '1', '1', '1', '1', 'default', 1, '0'),
(742, 'Candy Glass Sofa', 'glass_sofa*5', 's', 2, 1, 1, '0', '1', '0', 2043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(743, 'Blue Glass Sofa', 'glass_sofa*6', 's', 2, 1, 1, '0', '1', '0', 2044, '1', '1', '1', '1', '1', 'default', 1, '0'),
(744, 'Green Glass Sofa', 'glass_sofa*7', 's', 2, 1, 1, '0', '1', '0', 2045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(745, 'Yellow Glass Sofa', 'glass_sofa*8', 's', 2, 1, 1, '0', '1', '0', 2046, '1', '1', '1', '1', '1', 'default', 1, '0'),
(746, 'Glass sofa', 'glass_sofa*9', 's', 2, 1, 1, '0', '1', '0', 2047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(747, 'Glass stool', 'glass_stool*2', 's', 1, 1, 1, '0', '1', '0', 2048, '1', '1', '1', '1', '1', 'default', 1, '0'),
(748, 'Glass stool', 'glass_stool*4', 's', 1, 1, 1, '0', '1', '0', 2050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(749, 'Candy Glass Stool', 'glass_stool*5', 's', 1, 1, 1, '0', '1', '0', 2051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(750, 'Blue Glass Stool', 'glass_stool*6', 's', 1, 1, 1, '0', '1', '0', 2052, '1', '1', '1', '1', '1', 'default', 1, '0'),
(751, 'Green Glass Stool', 'glass_stool*7', 's', 1, 1, 1, '0', '1', '0', 2053, '1', '1', '1', '1', '1', 'default', 1, '0'),
(752, 'Yellow Glass Stool', 'glass_stool*8', 's', 1, 1, 1, '0', '1', '0', 2054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(753, 'White Glass Stool', 'glass_stool*3', 's', 1, 1, 1, '0', '1', '0', 2056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(754, 'Glass stool', 'glass_stool*9', 's', 1, 1, 1, '0', '1', '0', 2057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(755, 'Gold Coin', 'CF_10_coin_gold', 's', 1, 1, 0.2, '1', '0', '0', 2063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(756, 'Bronze Coin', 'CF_1_coin_bronze', 's', 1, 1, 0.2, '1', '0', '0', 2064, '1', '1', '1', '1', '1', 'default', 1, '0'),
(757, 'Sack of Credits', 'CF_20_moneybag', 's', 1, 1, 1, '1', '0', '0', 2065, '1', '1', '1', '1', '1', 'default', 1, '0'),
(758, 'Gold Bar', 'CF_50_goldbar', 's', 1, 1, 0.2, '1', '0', '0', 2066, '1', '1', '1', '1', '1', 'default', 1, '0'),
(759, 'Silver Coin', 'CF_5_coin_silver', 's', 1, 1, 0.2, '1', '0', '0', 2067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(760, 'Persian Carpet', 'hc_crpt', 's', 3, 5, 0, '1', '0', '0', 2068, '1', '1', '1', '1', '1', 'default', 1, '0'),
(761, 'Forget plasma', 'hc_tv', 's', 2, 1, 1.4, '0', '1', '0', 2069, '1', '1', '1', '1', '1', 'default', 2, '0'),
(762, 'Gothic Portcullis', 'gothgate', 's', 2, 1, 0.001, '0', '0', '0', 2070, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(763, 'Gothic Candelabra', 'gothiccandelabra', 's', 1, 1, 1, '0', '0', '0', 2071, '1', '1', '1', '1', '1', 'default', 2, '0'),
(764, 'Gothic Railing', 'gothrailing', 's', 2, 1, 1, '0', '0', '0', 2072, '1', '1', '1', '1', '1', 'default', 1, '0'),
(765, 'Gothic table', 'goth_table', 's', 1, 5, 1.7, '0', '0', '0', 2073, '1', '1', '1', '1', '1', 'default', 1, '0'),
(766, 'Medieval Bookcase', 'hc_bkshlf', 's', 1, 4, 1, '0', '0', '0', 2074, '1', '1', '1', '1', '1', 'default', 1, '0'),
(767, 'Electric Butler', 'hc_btlr', 's', 1, 1, 1, '0', '0', '0', 2075, '1', '1', '1', '1', '1', 'vendingmachine', 0, '24'),
(768, 'Antique Drapery', 'hc_crtn', 's', 2, 1, 0.001, '0', '0', '0', 2076, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(769, 'The Grammophon', 'hc_djset', 's', 3, 1, 1, '0', '0', '0', 2077, '1', '1', '1', '1', '1', 'default', 1, '0'),
(770, 'Heavy Duty Fireplace', 'hc_frplc', 's', 1, 3, 1, '0', '0', '0', 2078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(771, 'Victorian Street Light', 'hc_lmpst', 's', 1, 1, 1, '0', '0', '0', 2079, '1', '1', '1', '1', '1', 'default', 2, '0'),
(772, 'Weird Science Machine', 'hc_machine', 's', 1, 3, 1, '0', '0', '0', 2080, '1', '1', '1', '1', '1', 'default', 2, '0'),
(773, 'HC Rollers Set', 'hc_rllr', 's', 1, 1, 0.5, '0', '0', '1', 2081, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(774, 'X-Ray Divider', 'hc_rntgn', 's', 2, 1, 1, '0', '0', '0', 2082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(775, 'Drinks Trolley', 'hc_trll', 's', 1, 2, 1, '0', '0', '0', 2083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(776, 'Gothic Chair Pink', 'gothic_chair*1', 's', 1, 1, 1, '0', '1', '0', 2084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(777, 'Gothic Sofa Pink', 'gothic_sofa*1', 's', 2, 1, 1, '0', '1', '0', 2085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(778, 'Gothic Stool Pink', 'gothic_stool*1', 's', 1, 1, 1, '0', '1', '0', 2086, '1', '1', '1', '1', '1', 'default', 1, '0'),
(779, 'Golden Gothic Chair', 'gothic_chair*2', 's', 1, 1, 1, '0', '1', '0', 2087, '1', '1', '1', '1', '1', 'default', 1, '0'),
(780, 'Golden Gothic Sofa', 'gothic_sofa*2', 's', 2, 1, 1, '0', '1', '0', 2088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(781, 'Golden Gothic Stool', 'gothic_stool*2', 's', 1, 1, 1, '0', '1', '0', 2089, '1', '1', '1', '1', '1', 'default', 1, '0'),
(782, 'Red Gothic Chair', 'gothic_chair*3', 's', 1, 1, 1, '0', '1', '0', 2090, '1', '1', '1', '1', '1', 'default', 1, '0'),
(783, 'Red Gothic Sofa', 'gothic_sofa*3', 's', 2, 1, 1, '0', '1', '0', 2091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(784, 'Red Gothic Stool', 'gothic_stool*3', 's', 1, 1, 1, '0', '1', '0', 2092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(785, 'Black Gothic Chair', 'gothic_chair*4', 's', 1, 1, 1, '0', '1', '0', 2093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(786, 'Black Gothic Sofa', 'gothic_sofa*4', 's', 2, 1, 1, '0', '1', '0', 2094, '1', '1', '1', '1', '1', 'default', 1, '0'),
(787, 'Black Gothic Stool', 'gothic_stool*4', 's', 1, 1, 1, '0', '1', '0', 2095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(788, 'Green Gothic Chair', 'gothic_chair*5', 's', 1, 1, 1, '0', '1', '0', 2096, '1', '1', '1', '1', '1', 'default', 1, '0'),
(789, 'Green Gothic Sofa', 'gothic_sofa*5', 's', 2, 1, 1, '0', '1', '0', 2097, '1', '1', '1', '1', '1', 'default', 1, '0'),
(790, 'Green Gothic Stool', 'gothic_stool*5', 's', 1, 1, 1, '0', '1', '0', 2098, '1', '1', '1', '1', '1', 'default', 1, '0'),
(791, 'Gothic Chair Blue', 'gothic_chair*6', 's', 1, 1, 1, '0', '1', '0', 2099, '1', '1', '1', '1', '1', 'default', 1, '0'),
(792, 'Gothic Sofa Blue', 'gothic_sofa*6', 's', 2, 1, 1, '0', '1', '0', 2100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(793, 'Valentine''s Cauldron', 'gothic_stool*6', 's', 1, 1, 1, '0', '1', '0', 2101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(794, 'Sound Machine', 'sound_machine', 's', 1, 1, 1, '0', '0', '0', 2105, '1', '1', '1', '1', '1', 'default', 1, '0'),
(795, 'Turquoise Romantique Piano Chair', 'romantique_pianochair*3', 's', 1, 1, 1, '0', '1', '0', 2106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(796, 'Onyx Piano Stool', 'romantique_pianochair*5', 's', 1, 1, 1, '0', '1', '0', 2107, '1', '1', '1', '1', '1', 'default', 1, '0'),
(797, 'Lime Romantique Piano Chair', 'romantique_pianochair*2', 's', 1, 1, 1, '0', '1', '0', 2108, '1', '1', '1', '1', '1', 'default', 1, '0'),
(798, 'Amber Piano Stool', 'romantique_pianochair*4', 's', 1, 1, 1, '0', '1', '0', 2109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(799, 'Rose Quartz Piano Stool', 'romantique_pianochair*1', 's', 1, 1, 1, '0', '1', '0', 2110, '1', '1', '1', '1', '1', 'default', 1, '0'),
(800, 'Turquoise Romantique Divan', 'romantique_divan*3', 's', 2, 1, 1, '0', '1', '0', 2111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(801, 'Onyx Chaise-Longue', 'romantique_divan*5', 's', 2, 1, 1, '0', '1', '0', 2112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(802, 'Emerald Chaise-Longue', 'romantique_divan*2', 's', 2, 1, 1, '0', '1', '0', 2113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(803, 'Amber Chaise-Longue', 'romantique_divan*4', 's', 2, 1, 1, '0', '1', '0', 2114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(804, 'Rose Quartz Chaise-Longue', 'romantique_divan*1', 's', 2, 1, 1, '0', '1', '0', 2115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(805, 'Turquoise Romantique Chair', 'romantique_chair*3', 's', 1, 1, 1, '0', '1', '0', 2116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(806, 'Onyx Chair', 'romantique_chair*5', 's', 1, 1, 1, '0', '1', '0', 2117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(807, 'Lime Romantique Chair', 'romantique_chair*2', 's', 1, 1, 1, '0', '1', '0', 2118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(808, 'Amber Chair', 'romantique_chair*4', 's', 1, 1, 1, '0', '1', '0', 2119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(809, 'Rose Quartz Chair', 'romantique_chair*1', 's', 1, 1, 1, '0', '1', '0', 2120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(811, 'Yellow Valentine Rose', 'plant_valentinerose*3', 's', 1, 1, 1, '0', '0', '0', 2123, '1', '1', '1', '1', '1', 'default', 2, '0'),
(812, 'Purple Valentine''s Rose', 'plant_valentinerose*5', 's', 1, 1, 1, '0', '0', '0', 2124, '1', '1', '1', '1', '1', 'default', 2, '0'),
(813, 'White Valentine''s Rose', 'plant_valentinerose*2', 's', 1, 1, 1, '0', '0', '0', 2125, '1', '1', '1', '1', '1', 'default', 2, '0'),
(814, 'Pink Valentine''s Rose', 'plant_valentinerose*4', 's', 1, 1, 1, '0', '0', '0', 2126, '1', '1', '1', '1', '1', 'default', 2, '0'),
(815, 'Red Valentine''s Rose', 'plant_valentinerose*1', 's', 1, 1, 1, '0', '0', '0', 2127, '1', '1', '1', '1', '1', 'default', 2, '0'),
(816, 'Maze Shrubbery Gate', 'plant_mazegate', 's', 2, 1, 0.001, '0', '0', '0', 2128, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(817, 'Maze Shrubbery', 'plant_maze', 's', 2, 1, 1, '0', '0', '0', 2129, '1', '1', '1', '1', '1', 'default', 1, '0'),
(818, 'Bulrush', 'plant_bulrush', 's', 1, 1, 1, '0', '0', '0', 2130, '1', '1', '1', '1', '1', 'default', 1, '0'),
(819, 'T-Bones Mega Multipack', 'petfood4', 's', 1, 1, 1, '1', '0', '0', 2131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(820, 'Red carpet', 'carpet_valentine', 's', 2, 7, 0, '1', '0', '1', 2132, '1', '1', '1', '1', '1', 'default', 1, '0'),
(821, 'Cobbled Path', 'gothic_carpet', 's', 2, 4, 0, '1', '0', '1', 2133, '1', '1', '1', '1', '1', 'default', 1, '0'),
(822, 'Dungeon Floor', 'gothic_carpet2', 's', 2, 4, 0, '1', '0', '1', 2134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(823, '', 'gothic_chair', 's', 1, 1, 1, '0', '1', '0', 2135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(824, '', 'gothic_sofa', 's', 2, 1, 1, '0', '1', '0', 2136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(825, '', 'gothic_stool', 's', 1, 1, 1, '0', '1', '0', 2137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(826, 'Pink Grand Piano', 'grand_piano*3', 's', 2, 2, 1, '0', '0', '0', 2138, '1', '1', '1', '1', '1', 'default', 2, '0'),
(827, 'Onyx Grand Piano', 'grand_piano*5', 's', 2, 2, 1, '0', '0', '0', 2139, '1', '1', '1', '1', '1', 'default', 2, '0'),
(828, 'Black Grand Piano', 'grand_piano*2', 's', 2, 2, 1, '0', '0', '0', 2140, '1', '1', '1', '1', '1', 'default', 2, '0'),
(829, 'Amber Grand Piano', 'grand_piano*4', 's', 2, 2, 1, '0', '0', '0', 2141, '1', '1', '1', '1', '1', 'default', 2, '0'),
(830, 'Turquoise Grand Piano', 'grand_piano*1', 's', 2, 2, 1, '0', '0', '0', 2142, '1', '1', '1', '1', '1', 'default', 2, '0'),
(831, 'Deluxe Theatre Chair', 'theatre_seat', 's', 1, 1, 1.2, '0', '1', '0', 2143, '1', '1', '1', '1', '1', 'default', 6, '0'),
(832, 'Treats Tray', 'romantique_tray2', 's', 1, 1, 1, '0', '0', '0', 2144, '1', '1', '1', '1', '1', 'default', 1, '0'),
(833, 'Breakfast Tray', 'romantique_tray1', 's', 1, 1, 1, '0', '0', '0', 2145, '1', '1', '1', '1', '1', 'default', 1, '0'),
(834, 'Turquoise Tray Table', 'romantique_smalltabl*3', 's', 1, 1, 1, '1', '0', '0', 2146, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(835, 'Onyx Tray Table', 'romantique_smalltabl*5', 's', 1, 1, 1, '1', '0', '0', 2147, '1', '1', '1', '1', '1', 'default', 1, '0'),
(836, 'Lime Tray Table', 'romantique_smalltabl*2', 's', 1, 1, 1, '1', '0', '0', 2148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(837, 'Amber Tray Table', 'romantique_smalltabl*4', 's', 1, 1, 1, '1', '0', '0', 2149, '1', '1', '1', '1', '1', 'default', 1, '0'),
(838, 'Rose Quartz Tray Table', 'romantique_smalltabl*1', 's', 1, 1, 1, '1', '0', '0', 2150, '1', '1', '1', '1', '1', 'default', 1, '0'),
(839, 'Dressing Table', 'romantique_mirrortabl', 's', 1, 1, 1, '1', '0', '0', 2151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(840, 'Turquoise Screen', 'romantique_divider*3', 's', 2, 1, 1, '0', '0', '0', 2152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(841, 'Green Screen', 'romantique_divider*2', 's', 2, 1, 1, '1', '0', '0', 2153, '1', '1', '1', '1', '1', 'default', 1, '0'),
(842, 'Amber Screen', 'romantique_divider*4', 's', 2, 1, 1, '1', '0', '0', 2154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(843, 'Rose Quartz Screen', 'romantique_divider*1', 's', 2, 1, 1, '1', '0', '0', 2155, '1', '1', '1', '1', '1', 'default', 1, '0'),
(844, 'Large Tatami Mat', 'jp_tatami2', 's', 2, 4, 0, '1', '0', '1', 2156, '1', '1', '1', '1', '1', 'default', 1, '0'),
(845, 'Small Tatami Mat', 'jp_tatami', 's', 2, 2, 1, '0', '0', '1', 2157, '1', '1', '1', '1', '1', 'default', 1, '0'),
(846, 'Director''s Chair', 'habbowood_chair', 's', 1, 1, 1.2, '0', '1', '0', 2158, '1', '1', '1', '1', '1', 'default', 1, '0'),
(847, 'Bamboo Forest', 'jp_bamboo', 's', 2, 2, 0, '1', '0', '1', 2159, '1', '1', '1', '1', '1', 'default', 1, '0'),
(848, 'Irori', 'jp_irori', 's', 2, 2, 1, '0', '0', '0', 2160, '1', '1', '1', '1', '1', 'default', 2, '0'),
(849, 'Pillow Chair', 'jp_pillow', 's', 1, 1, 0.8, '0', '1', '0', 2161, '1', '1', '1', '1', '1', 'default', 1, '0'),
(850, 'Habbo Sounds 1', 'sound_set_1', 's', 1, 1, 0.2, '1', '0', '0', 2162, '1', '1', '1', '1', '1', 'default', 1, '0'),
(851, 'Habbo Sounds 3', 'sound_set_2', 's', 1, 1, 0.2, '1', '0', '0', 2163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(852, 'Electronic 1', 'sound_set_3', 's', 1, 1, 0.2, '1', '0', '0', 2164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(853, 'Ambient 1', 'sound_set_4', 's', 1, 1, 0.2, '1', '0', '0', 2165, '1', '1', '1', '1', '1', 'default', 1, '0'),
(854, 'Ambient 4', 'sound_set_5', 's', 1, 1, 0.2, '1', '0', '0', 2166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(855, 'Ambient 3', 'sound_set_6', 's', 1, 1, 0.2, '1', '0', '0', 2167, '1', '1', '1', '1', '1', 'default', 1, '0'),
(856, 'SFX 5', 'sound_set_7', 's', 1, 1, 0.2, '1', '0', '0', 2168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(857, 'Ambient 2', 'sound_set_8', 's', 1, 1, 0.2, '1', '0', '0', 2169, '1', '1', '1', '1', '1', 'default', 1, '0'),
(858, 'Electronic 2', 'sound_set_9', 's', 1, 1, 0.2, '1', '0', '0', 2170, '1', '1', '1', '1', '1', 'default', 1, '0'),
(859, 'Traxmachine', 'sound_machine*1', 's', 1, 1, 1, '0', '0', '0', 2171, '1', '1', '1', '1', '1', 'default', 1, '0'),
(860, 'Habbowood Spotlight', 'spotlight', 's', 1, 1, 1, '0', '0', '0', 2519, '1', '1', '1', '1', '1', 'default', 6, '0'),
(861, 'Ocean Traxmachine', 'sound_machine*2', 's', 1, 1, 1, '0', '0', '0', 2543, '1', '1', '1', '1', '1', 'default', 1, '0'),
(862, 'Green Traxmachine', 'sound_machine*3', 's', 1, 1, 1, '0', '0', '0', 2544, '1', '1', '1', '1', '1', 'default', 1, '0'),
(863, 'For Funky', 'sound_machine*4', 's', 1, 1, 1, '0', '0', '0', 2545, '1', '1', '1', '1', '1', 'default', 1, '0'),
(864, 'Brown Traxmachine', 'sound_machine*5', 's', 1, 1, 1, '0', '0', '0', 2546, '1', '1', '1', '1', '1', 'default', 1, '0'),
(865, 'Purple Traxmachine', 'sound_machine*6', 's', 1, 1, 1, '0', '0', '0', 2547, '1', '1', '1', '1', '1', 'default', 1, '0'),
(866, 'Red Traxmachine', 'sound_machine*7', 's', 1, 1, 1, '0', '0', '0', 2548, '1', '1', '1', '1', '1', 'default', 1, '0'),
(867, 'Crystal Lamp', 'rom_lamp', 's', 1, 1, 1, '0', '0', '0', 2551, '1', '1', '1', '1', '1', 'default', 2, '0'),
(868, 'Polar Sofa', 'rclr_sofa', 's', 2, 1, 1, '0', '1', '0', 2459, '1', '1', '1', '1', '1', 'default', 1, '0'),
(869, 'Water Garden', 'rclr_garden', 's', 1, 3, 1, '0', '0', '0', 2458, '1', '1', '1', '1', '1', 'default', 2, '0'),
(870, 'Palm Chair', 'rclr_chair', 's', 1, 1, 1, '0', '1', '0', 2562, '1', '1', '1', '1', '1', 'default', 1, '0'),
(871, 'Rock 2', 'sound_set_28', 's', 1, 1, 0.2, '1', '0', '0', 2496, '1', '1', '1', '1', '1', 'default', 1, '0'),
(872, 'Groove 2', 'sound_set_27', 's', 1, 1, 0.2, '1', '0', '0', 2549, '1', '1', '1', '1', '1', 'default', 1, '0'),
(873, 'Groove 1', 'sound_set_26', 's', 1, 1, 0.2, '1', '0', '0', 2508, '1', '1', '1', '1', '1', 'default', 1, '0'),
(874, 'Actually', 'sound_set_25', 's', 1, 1, 0.2, '1', '0', '0', 2470, '1', '1', '1', '1', '1', 'default', 1, '0'),
(875, 'It''s all about the Pentiums', 'sound_set_24', 's', 1, 1, 0.2, '1', '0', '0', 2492, '1', '1', '1', '1', '1', 'default', 1, '0'),
(876, 'SFX 4', 'sound_set_23', 's', 1, 1, 0.2, '1', '0', '0', 2457, '1', '1', '1', '1', '1', 'default', 1, '0'),
(877, 'With a hamper full of sounds', 'sound_set_22', 's', 1, 1, 0.2, '1', '0', '0', 2521, '1', '1', '1', '1', '1', 'default', 1, '0'),
(878, 'Rock 1', 'sound_set_21', 's', 1, 1, 0.2, '1', '0', '0', 2494, '1', '1', '1', '1', '1', 'default', 1, '0'),
(879, 'SFX 2', 'sound_set_20', 's', 1, 1, 0.2, '1', '0', '0', 2524, '1', '1', '1', '1', '1', 'default', 1, '0'),
(880, 'Hip Hop Beats 4', 'sound_set_19', 's', 1, 1, 0.2, '1', '0', '0', 2469, '1', '1', '1', '1', '1', 'default', 1, '0'),
(881, 'Groove 4', 'sound_set_18', 's', 1, 1, 0.2, '1', '0', '0', 2497, '1', '1', '1', '1', '1', 'default', 1, '0'),
(882, 'Groove 3', 'sound_set_17', 's', 1, 1, 0.2, '1', '0', '0', 2550, '1', '1', '1', '1', '1', 'default', 1, '0'),
(883, 'Ferry', 'sound_set_16', 's', 1, 1, 0.2, '1', '0', '0', 2561, '1', '1', '1', '1', '1', 'default', 1, '0'),
(884, 'RnB Grooves 6', 'sound_set_15', 's', 1, 1, 0.2, '1', '0', '0', 2495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(885, 'Hip Hop Beats 2', 'sound_set_14', 's', 1, 1, 0.2, '1', '0', '0', 2482, '1', '1', '1', '1', '1', 'default', 1, '0'),
(886, 'Dance 5', 'sound_set_13', 's', 1, 1, 0.2, '1', '0', '0', 2523, '1', '1', '1', '1', '1', 'default', 1, '0'),
(887, 'Habbo Sounds 2', 'sound_set_12', 's', 1, 1, 0.2, '1', '0', '0', 2493, '1', '1', '1', '1', '1', 'default', 1, '0'),
(888, 'Dance 4', 'sound_set_11', 's', 1, 1, 0.2, '1', '0', '0', 2563, '1', '1', '1', '1', '1', 'default', 1, '0'),
(889, 'Hip Hop Beats 1', 'sound_set_10', 's', 1, 1, 0.2, '1', '0', '0', 2481, '1', '1', '1', '1', '1', 'default', 1, '0'),
(890, 'Rope Divider', 'rope_divider', 's', 2, 1, 0.001, '0', '0', '0', 2518, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(891, 'romantique_clock', 'romantique_clock', 's', 1, 1, 1, '0', '0', '0', 2520, '1', '1', '1', '1', '1', 'default', 1, '0'),
(892, 'Aqua Pura Module 5', 'rare_icecream_campaign', 's', 1, 1, 1, '0', '0', '0', 2507, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(893, 'Pink Pura Module 5', 'pura_mdl5*2', 's', 1, 1, 1, '0', '1', '0', 2510, '1', '1', '1', '1', '1', 'default', 1, '0'),
(894, 'Black Pura Module 5', 'pura_mdl5*3', 's', 1, 1, 1, '0', '1', '0', 2511, '1', '1', '1', '1', '1', 'default', 1, '0'),
(895, 'White Pura Module 5', 'pura_mdl5*4', 's', 1, 1, 1, '0', '1', '0', 2512, '1', '1', '1', '1', '1', 'default', 1, '0'),
(896, 'beige pura module 5', 'pura_mdl5*5', 's', 1, 1, 1, '0', '1', '0', 2513, '1', '1', '1', '1', '1', 'default', 1, '0'),
(897, 'Blue Pura Module 5', 'pura_mdl5*6', 's', 1, 1, 1, '0', '1', '0', 2514, '1', '1', '1', '1', '1', 'default', 1, '0'),
(898, 'Green Pura Module 5', 'pura_mdl5*7', 's', 1, 1, 1, '0', '1', '0', 2515, '1', '1', '1', '1', '1', 'default', 1, '0'),
(899, 'Yellow Pura Module 5', 'pura_mdl5*8', 's', 1, 1, 1, '0', '1', '0', 2516, '1', '1', '1', '1', '1', 'default', 1, '0'),
(900, 'Red Pura Module 5', 'pura_mdl5*9', 's', 1, 1, 1, '0', '1', '0', 2517, '1', '1', '1', '1', '1', 'default', 1, '0'),
(901, 'Aqua Pura Module 4', 'pura_mdl4*1', 's', 1, 1, 1, '0', '1', '0', 2472, '1', '1', '1', '1', '1', 'default', 1, '0'),
(902, 'Pink Pura Module 4', 'pura_mdl4*2', 's', 1, 1, 1, '0', '1', '0', 2473, '1', '1', '1', '1', '1', 'default', 1, '0'),
(903, 'Black Pura Module 4', 'pura_mdl4*3', 's', 1, 1, 1, '0', '1', '0', 2474, '1', '1', '1', '1', '1', 'default', 1, '0'),
(904, 'White Pura Module 4', 'pura_mdl4*4', 's', 1, 1, 1, '0', '1', '0', 2475, '1', '1', '1', '1', '1', 'default', 1, '0'),
(905, 'beige pura module 4', 'pura_mdl4*5', 's', 1, 1, 1, '0', '1', '0', 2476, '1', '1', '1', '1', '1', 'default', 1, '0'),
(906, 'Blue Pura Module 4', 'pura_mdl4*6', 's', 1, 1, 1, '0', '1', '0', 2477, '1', '1', '1', '1', '1', 'default', 1, '0'),
(907, 'Green Pura Module 4', 'pura_mdl4*7', 's', 1, 1, 1, '0', '1', '0', 2478, '1', '1', '1', '1', '1', 'default', 1, '0'),
(908, 'yellow pura module 4', 'pura_mdl4*8', 's', 1, 1, 1, '0', '1', '0', 2479, '1', '1', '1', '1', '1', 'default', 1, '0'),
(909, 'Red Pura Module 4', 'pura_mdl4*9', 's', 1, 1, 1, '0', '1', '0', 2480, '1', '1', '1', '1', '1', 'default', 1, '0'),
(910, 'Aqua Pura Module 3', 'pura_mdl3*1', 's', 1, 1, 1, '0', '1', '0', 2534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(911, 'Pink Pura Module 3', 'pura_mdl3*2', 's', 1, 1, 1, '0', '1', '0', 2535, '1', '1', '1', '1', '1', 'default', 1, '0'),
(912, 'Black Pura Module 3', 'pura_mdl3*3', 's', 1, 1, 1, '0', '1', '0', 2536, '1', '1', '1', '1', '1', 'default', 1, '0'),
(913, 'White Pura Module 3', 'pura_mdl3*4', 's', 1, 1, 1, '0', '1', '0', 2537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(914, 'beige pura module 3', 'pura_mdl3*5', 's', 1, 1, 1, '0', '1', '0', 2538, '1', '1', '1', '1', '1', 'default', 1, '0'),
(915, 'Blue Pura Module 3', 'pura_mdl3*6', 's', 1, 1, 1, '0', '1', '0', 2539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(916, 'Green Pura Module 3', 'pura_mdl3*7', 's', 1, 1, 1, '0', '1', '0', 2540, '1', '1', '1', '1', '1', 'default', 1, '0'),
(917, 'yellow pura module 3', 'pura_mdl3*8', 's', 1, 1, 1, '0', '1', '0', 2541, '1', '1', '1', '1', '1', 'default', 1, '0'),
(918, 'Red Pura Module 3', 'pura_mdl3*9', 's', 1, 1, 1, '0', '1', '0', 2542, '1', '1', '1', '1', '1', 'default', 1, '0'),
(919, 'Aqua Pura Module 2', 'pura_mdl2*1', 's', 1, 1, 1, '0', '1', '0', 2483, '1', '1', '1', '1', '1', 'default', 1, '0'),
(920, 'Pink Pura Module 2', 'pura_mdl2*2', 's', 1, 1, 1, '0', '1', '0', 2484, '1', '1', '1', '1', '1', 'default', 1, '0'),
(921, 'Black Pura Module 2', 'pura_mdl2*3', 's', 1, 1, 1, '0', '1', '0', 2485, '1', '1', '1', '1', '1', 'default', 1, '0'),
(922, 'White Pura Module 2', 'pura_mdl2*4', 's', 1, 1, 1, '0', '1', '0', 2486, '1', '1', '1', '1', '1', 'default', 1, '0'),
(923, 'beige pura module 2', 'pura_mdl2*5', 's', 1, 1, 1, '0', '1', '0', 2487, '1', '1', '1', '1', '1', 'default', 1, '0'),
(924, 'Blue Pura Module 2', 'pura_mdl2*6', 's', 1, 1, 1, '0', '1', '0', 2488, '1', '1', '1', '1', '1', 'default', 1, '0'),
(925, 'Green Pura Module 2', 'pura_mdl2*7', 's', 1, 1, 1, '0', '1', '0', 2489, '1', '1', '1', '1', '1', 'default', 1, '0'),
(926, 'yellow pura module 2', 'pura_mdl2*8', 's', 1, 1, 1, '0', '1', '0', 2490, '1', '1', '1', '1', '1', 'default', 1, '0'),
(927, 'Red Pura Module 2', 'pura_mdl2*9', 's', 1, 1, 1, '0', '1', '0', 2491, '1', '1', '1', '1', '1', 'default', 1, '0'),
(928, 'Aqua Pura Module 1', 'pura_mdl1*1', 's', 1, 1, 1, '0', '1', '0', 2460, '1', '1', '1', '1', '1', 'default', 1, '0'),
(929, 'Pink Pura Module 1', 'pura_mdl1*2', 's', 1, 1, 1, '0', '1', '0', 2461, '1', '1', '1', '1', '1', 'default', 1, '0'),
(930, 'Black Pura Module 1', 'pura_mdl1*3', 's', 1, 1, 1, '0', '1', '0', 2462, '1', '1', '1', '1', '1', 'default', 1, '0'),
(931, 'White Pura Module 1', 'pura_mdl1*4', 's', 1, 1, 1, '0', '1', '0', 2463, '1', '1', '1', '1', '1', 'default', 1, '0'),
(932, 'beige pura module 1', 'pura_mdl1*5', 's', 1, 1, 1, '0', '1', '0', 2464, '1', '1', '1', '1', '1', 'default', 1, '0'),
(933, 'Blue Pura Module 1', 'pura_mdl1*6', 's', 1, 1, 1, '0', '1', '0', 2465, '1', '1', '1', '1', '1', 'default', 1, '0'),
(934, 'Green Pura Module 1', 'pura_mdl1*7', 's', 1, 1, 1, '0', '1', '0', 2466, '1', '1', '1', '1', '1', 'default', 1, '0'),
(935, 'yellow pura module 1', 'pura_mdl1*8', 's', 1, 1, 1, '0', '1', '0', 2467, '1', '1', '1', '1', '1', 'default', 1, '0'),
(936, 'Red Pura Module 1', 'pura_mdl1*9', 's', 1, 1, 1, '0', '1', '0', 2468, '1', '1', '1', '1', '1', 'default', 1, '0'),
(937, 'Japanese Lantern', 'jp_lantern', 's', 1, 1, 1, '0', '0', '0', 2471, '1', '1', '1', '1', '1', 'default', 2, '0'),
(938, 'chair_basic', 'chair_basic*1', 's', 1, 1, 1.1, '0', '1', '0', 2525, '1', '1', '1', '1', '1', 'default', 1, '0'),
(939, 'Pink Pura Egg Chair', 'chair_basic*2', 's', 1, 1, 1.1, '0', '1', '0', 2526, '1', '1', '1', '1', '1', 'default', 1, '0'),
(940, 'Black Pura Egg Chair', 'chair_basic*3', 's', 1, 1, 1.1, '0', '1', '0', 2527, '1', '1', '1', '1', '1', 'default', 1, '0'),
(941, 'White Pura Egg Chair', 'chair_basic*4', 's', 1, 1, 1.1, '0', '1', '0', 2528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(942, 'Beige Pura Egg Chair', 'chair_basic*5', 's', 1, 1, 1.1, '0', '1', '0', 2529, '1', '1', '1', '1', '1', 'default', 1, '0'),
(943, 'Blue Pura Egg Chair', 'chair_basic*6', 's', 1, 1, 1.1, '0', '1', '0', 2530, '1', '1', '1', '1', '1', 'default', 1, '0'),
(944, 'Green Pura Egg Chair', 'chair_basic*7', 's', 1, 1, 1.1, '0', '1', '0', 2531, '1', '1', '1', '1', '1', 'default', 1, '0'),
(945, 'chair_basic', 'chair_basic*8', 's', 1, 1, 1.1, '0', '1', '0', 2532, '1', '1', '1', '1', '1', 'default', 1, '0'),
(946, 'Red Pura Egg Chair', 'chair_basic*9', 's', 1, 1, 1.1, '0', '1', '0', 2533, '1', '1', '1', '1', '1', 'default', 1, '0'),
(947, '', 'bed_budget*1', 's', 2, 3, 1.9, '0', '0', '0', 2552, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(948, 'Pink Pura Double Bed', 'bed_budget*2', 's', 2, 3, 1.9, '0', '0', '0', 2553, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(949, 'Black Pura Double Bed', 'bed_budget*3', 's', 2, 3, 1.9, '0', '0', '0', 2554, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(950, 'White Pura Double Bed', 'bed_budget*4', 's', 2, 3, 1.9, '0', '0', '0', 2555, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(951, 'Beige Pura Double Bed', 'bed_budget*5', 's', 2, 3, 1.9, '0', '0', '0', 2556, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(952, 'Blue Pura Double Bed', 'bed_budget*6', 's', 2, 3, 1.9, '0', '0', '0', 2557, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(953, 'Green Pura Double Bed', 'bed_budget*7', 's', 2, 3, 1.9, '0', '0', '0', 2558, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(954, 'Yellow Pura Double Bed', 'bed_budget*8', 's', 2, 3, 1.9, '0', '0', '0', 2559, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(955, 'Red Pura Double Bed', 'bed_budget*9', 's', 2, 3, 1.9, '0', '0', '0', 2560, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(956, '', 'bed_budget_one*1', 's', 1, 3, 1.9, '0', '0', '0', 2498, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(957, 'Pink Pura Bed', 'bed_budget_one*2', 's', 1, 3, 1.9, '0', '0', '0', 2499, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(958, 'Black Pura Bed', 'bed_budget_one*3', 's', 1, 3, 1.9, '0', '0', '0', 2500, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(959, 'White Pura Bed', 'bed_budget_one*4', 's', 1, 3, 1.9, '0', '0', '0', 2501, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(960, 'Beige Pura Bed', 'bed_budget_one*5', 's', 1, 3, 1.9, '0', '0', '0', 2502, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(961, 'Blue Pura Bed', 'bed_budget_one*6', 's', 1, 3, 1.9, '0', '0', '0', 2503, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(962, 'Green Pura Bed', 'bed_budget_one*7', 's', 1, 3, 1.9, '0', '0', '0', 2504, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(963, 'Yellow Pura Bed', 'bed_budget_one*8', 's', 1, 3, 1.9, '0', '0', '0', 2505, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(964, 'Red Pura Bed', 'bed_budget_one*9', 's', 1, 3, 1.9, '0', '0', '0', 2506, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(965, 'Japanese Drawer', 'jp_drawer', 's', 1, 1, 1, '1', '0', '0', 2522, '1', '1', '1', '1', '1', 'default', 2, '0'),
(966, 'Star Tile', 'tile_stella', 's', 1, 1, 0.05, '1', '0', '1', 2568, '1', '1', '1', '1', '1', 'default', 1, '0'),
(967, 'Marble Tile', 'tile_marble', 's', 1, 1, 0.1, '1', '0', '1', 2566, '1', '1', '1', '1', '1', 'default', 1, '0'),
(968, 'Red Tile', 'tile_brown', 's', 1, 1, 0.05, '1', '0', '1', 2582, '1', '1', '1', '1', '1', 'default', 1, '0'),
(969, 'Blue Barbeque Grill', 'summer_grill*1', 's', 2, 1, 1, '0', '0', '0', 2587, '1', '1', '1', '1', '1', 'default', 2, '0'),
(970, 'Red Barbeque Grill', 'summer_grill*2', 's', 2, 1, 1, '0', '0', '0', 2588, '1', '1', '1', '1', '1', 'default', 2, '0'),
(971, 'Green Barbeque Grill', 'summer_grill*3', 's', 2, 1, 1, '0', '0', '0', 2589, '1', '1', '1', '1', '1', 'default', 2, '0'),
(972, 'Green Barbeque Grill', 'summer_grill*4', 's', 2, 1, 1, '0', '0', '0', 2590, '1', '1', '1', '1', '1', 'default', 2, '0'),
(973, 'Aqua Deck Chair', 'summer_chair*1', 's', 1, 1, 1, '0', '1', '0', 2571, '1', '1', '1', '1', '1', 'default', 1, '0'),
(974, 'Pink Deck Chair', 'summer_chair*2', 's', 1, 1, 1, '0', '1', '0', 2572, '1', '1', '1', '1', '1', 'default', 1, '0'),
(975, 'Black Deck Chair', 'summer_chair*3', 's', 1, 1, 1, '0', '1', '0', 2573, '1', '1', '1', '1', '1', 'default', 1, '0'),
(976, 'White Deck Chair', 'summer_chair*4', 's', 1, 1, 1, '0', '1', '0', 2574, '1', '1', '1', '1', '1', 'default', 1, '0'),
(977, 'Deck Chair', 'summer_chair*5', 's', 1, 1, 1, '0', '1', '0', 2575, '1', '1', '1', '1', '1', 'default', 1, '0'),
(978, 'Deck Chair', 'summer_chair*6', 's', 1, 1, 1, '0', '1', '0', 2576, '1', '1', '1', '1', '1', 'default', 1, '0'),
(979, 'Green Deck Chair', 'summer_chair*7', 's', 1, 1, 1, '0', '1', '0', 2577, '1', '1', '1', '1', '1', 'default', 1, '0'),
(980, 'Yellow Deck Chair', 'summer_chair*8', 's', 1, 1, 1, '0', '1', '0', 2578, '1', '1', '1', '1', '1', 'default', 1, '0'),
(981, 'Red Deck Chair', 'summer_chair*9', 's', 1, 1, 1, '0', '1', '0', 2579, '1', '1', '1', '1', '1', 'default', 1, '0'),
(982, 'Latin Love 1', 'sound_set_36', 's', 1, 1, 0.2, '1', '0', '0', 2583, '1', '1', '1', '1', '1', 'default', 1, '0'),
(983, 'Dance 6', 'sound_set_35', 's', 1, 1, 0.2, '1', '0', '0', 2595, '1', '1', '1', '1', '1', 'default', 1, '0'),
(984, 'Rock 5', 'sound_set_34', 's', 1, 1, 0.2, '1', '0', '0', 2570, '1', '1', '1', '1', '1', 'default', 1, '0'),
(985, 'Rock 3', 'sound_set_33', 's', 1, 1, 0.2, '1', '0', '0', 2564, '1', '1', '1', '1', '1', 'default', 1, '0'),
(986, 'Instrumental 2', 'sound_set_32', 's', 1, 1, 0.2, '1', '0', '0', 2569, '1', '1', '1', '1', '1', 'default', 1, '0'),
(987, 'Dance 3', 'sound_set_31', 's', 1, 1, 0.2, '1', '0', '0', 2596, '1', '1', '1', '1', '1', 'default', 1, '0'),
(988, 'Instrumental 1', 'sound_set_30', 's', 1, 1, 0.2, '1', '0', '0', 2585, '1', '1', '1', '1', '1', 'default', 1, '0'),
(989, 'Dance 2', 'sound_set_29', 's', 1, 1, 0.2, '1', '0', '0', 2580, '1', '1', '1', '1', '1', 'default', 1, '0'),
(990, 'Sound Machine Pro', 'sound_machine_pro', 's', 1, 1, 1, '0', '0', '0', 2606, '1', '1', '1', '1', '1', 'default', 1, '0'),
(991, 'Aqua One Way Gate', 'rare_mnstr', 's', 1, 1, 0.001, '0', '0', '0', 2584, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(992, 'Black HC Gate', 'one_way_door*2', 's', 1, 1, 0.001, '0', '0', '0', 2598, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(993, 'White HC Gate', 'one_way_door*3', 's', 1, 1, 0.001, '0', '0', '0', 2599, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(994, 'Beige One Way Gate', 'one_way_door*4', 's', 1, 1, 0.001, '0', '0', '0', 2600, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(995, 'Pink One Way Gate', 'one_way_door*5', 's', 1, 1, 0.001, '0', '0', '0', 2601, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(996, 'Blue HC Gate', 'one_way_door*6', 's', 1, 1, 0.001, '0', '0', '0', 2602, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(997, 'Green One Way Gate', 'one_way_door*7', 's', 1, 1, 0.001, '0', '0', '0', 2603, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(998, 'Yellow One Way Gate', 'one_way_door*8', 's', 1, 1, 0.001, '0', '0', '0', 2604, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(999, 'Red One Way Gate', 'one_way_door*9', 's', 1, 1, 0.001, '0', '0', '0', 2605, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(1000, 'Executive Rug', 'exe_rug', 's', 3, 3, 0, '1', '0', '1', 2567, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1001, 'Executive Glass Table', 'exe_s_table', 's', 2, 2, 1, '1', '0', '0', 2581, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1002, 'Sound set 37', 'sound_set_37', 's', 1, 1, 0.2, '1', '0', '0', 2565, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1003, 'Blue Summer Pool', 'summer_pool*1', 's', 2, 2, 0, '0', '0', '1', 2591, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1004, 'Red Summer Pool', 'summer_pool*2', 's', 2, 2, 0, '0', '0', '1', 2592, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1005, 'Green Summer Pool', 'summer_pool*3', 's', 2, 2, 0, '0', '0', '1', 2593, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1006, 'Yellow Summer Pool', 'summer_pool*4', 's', 2, 2, 0, '0', '0', '1', 2594, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1007, 'Burn', 'song_disk', 's', 1, 1, 0.1, '1', '0', '0', 2607, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1008, 'Jukebox', 'jukebox*1', 's', 1, 1, 1, '1', '0', '0', 2608, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1009, 'Welcome', 'carpet_soft_tut', 's', 1, 1, 0, '1', '0', '1', 2609, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1010, 'Graveyard Portal', 'sound_set_44', 's', 1, 1, 0.2, '1', '0', '0', 2610, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1011, 'SFX 1', 'sound_set_43', 's', 1, 1, 0.2, '1', '0', '0', 2614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1012, 'Haunted Mansion', 'sound_set_42', 's', 1, 1, 0.2, '1', '0', '0', 2624, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1013, 'Rock 8', 'sound_set_41', 's', 1, 1, 0.2, '1', '0', '0', 2612, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1014, 'Rock 4', 'sound_set_40', 's', 1, 1, 0.2, '1', '0', '0', 2615, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1015, 'Rock 7', 'sound_set_39', 's', 1, 1, 0.2, '1', '0', '0', 2622, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1016, 'Rock 6', 'sound_set_38', 's', 1, 1, 0.2, '1', '0', '0', 2616, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1017, 'Grunge Chair', 'grunge_chair', 's', 1, 1, 1, '0', '1', '0', 2617, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1018, 'Grunge Mattress', 'grunge_mattress', 's', 3, 1, 1, '0', '1', '0', 2618, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1019, 'Radiator', 'grunge_radiator', 's', 1, 1, 1, '0', '0', '0', 2621, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1020, 'Grunge Bookshelf', 'grunge_shelf', 's', 3, 1, 1, '0', '0', '0', 2619, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1021, 'Road Sign', 'grunge_sign', 's', 1, 1, 1, '0', '0', '0', 2613, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1022, 'Grunge Table', 'grunge_table', 's', 2, 2, 1, '1', '0', '0', 2623, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1023, 'Creepy Crypt', 'habboween_crypt', 's', 1, 3, 1.1, '0', '0', '0', 2611, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(1024, 'Unholy Ground', 'habboween_grass', 's', 2, 2, 0, '0', '0', '1', 2626, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1025, 'Habboween Cauldron', 'hal_cauldron', 's', 1, 1, 1, '0', '0', '0', 2625, '1', '1', '1', '1', '1', 'vendingmachine', 0, '30'),
(1026, 'Haunted Grave', 'hal_grave', 's', 1, 1, 1, '0', '0', '0', 2620, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1027, 'Christmas Party', 'sound_set_52', 's', 1, 1, 0.2, '1', '0', '0', 2633, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1028, 'Club 6', 'sound_set_51', 's', 1, 1, 0.2, '1', '0', '0', 2631, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1029, 'Club 5', 'sound_set_50', 's', 1, 1, 0.2, '1', '0', '0', 2632, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1030, 'Club 4', 'sound_set_49', 's', 1, 1, 0.2, '1', '0', '0', 2634, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1031, 'Club 3', 'sound_set_48', 's', 1, 1, 0.2, '1', '0', '0', 2629, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1032, 'Club 2', 'sound_set_47', 's', 1, 1, 0.2, '1', '0', '0', 2627, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1033, 'Club 1', 'sound_set_46', 's', 1, 1, 0.2, '1', '0', '0', 2630, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1034, 'Lost_Beatness', 'sound_set_45', 's', 1, 1, 0.2, '1', '0', '0', 2628, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1035, 'Lantern Bundle 2', 'xmas_icelamp', 's', 1, 1, 1, '1', '0', '0', 2641, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1036, 'Ice Castle Wall', 'xmas_cstl_wall', 's', 2, 1, 1, '0', '0', '0', 2646, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1037, 'Ice Castle Tower', 'xmas_cstl_twr', 's', 1, 1, 1, '0', '0', '0', 2651, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1038, 'Ice Castle Gate', 'xmas_cstl_gate', 's', 2, 1, 0.001, '0', '0', '0', 2636, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1039, 'Snowy Christmas Tree', 'tree7', 's', 1, 1, 1, '0', '0', '0', 2653, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1040, 'Flashy Christmas Tree', 'tree6', 's', 1, 1, 1, '0', '0', '0', 2638, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1041, 'Oh Blinging Tree', 'sound_set_54', 's', 1, 1, 0.2, '1', '0', '0', 2649, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1042, 'Snowy Surprise', 'sound_set_53', 's', 1, 1, 0.2, '1', '0', '0', 2652, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1043, 'postbank Safe', 'safe_silo_pb', 's', 1, 1, 1.3, '1', '0', '0', 2642, '1', '1', '1', '1', '1', 'vendingmachine', 0, '17'),
(1044, 'Snowy Maze Gate', 'plant_mazegate_snow', 's', 2, 1, 0.001, '0', '0', '1', 2640, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1045, 'Snowy Maze Bundle 2', 'plant_maze_snow', 's', 2, 1, 1, '0', '0', '1', 2635, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1046, 'Winter Sleigh', 'christmas_sleigh', 's', 2, 2, 1, '0', '0', '0', 2648, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1047, 'Reindeer', 'christmas_reindeer', 's', 1, 2, 1, '0', '0', '0', 2637, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1048, 'Reindeer Droppings', 'christmas_poop', 's', 1, 1, 1, '0', '0', '0', 2654, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1049, 'Executive Bar Desk', 'exe_bardesk', 's', 1, 1, 1, '1', '0', '0', 2643, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1050, 'Executive Sofa Chair', 'exe_chair', 's', 1, 1, 1, '0', '1', '0', 2647, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1051, 'Executive Boss Chair', 'exe_chair2', 's', 1, 1, 1, '0', '1', '0', 2650, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1052, 'Executive Corner Desk', 'exe_corner', 's', 1, 1, 1, '1', '0', '0', 2655, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1053, 'Executive Drinks Tray', 'exe_drinks', 's', 1, 1, 1, '0', '0', '0', 2645, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1054, '3-Seater Sofa', 'exe_sofa', 's', 3, 1, 1, '0', '1', '0', 2639, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1055, 'Take a memo', 'exe_table', 's', 3, 2, 1.1, '1', '0', '0', 2644, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1056, 'RnB Grooves 5', 'sound_set_59', 's', 1, 1, 0.2, '1', '0', '0', 2670, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1057, 'RnB Grooves 4', 'sound_set_58', 's', 1, 1, 0.2, '1', '0', '0', 2656, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1058, 'RnB Grooves 3', 'sound_set_57', 's', 1, 1, 0.2, '1', '0', '0', 2673, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1059, 'RnB Grooves 2', 'sound_set_56', 's', 1, 1, 0.2, '1', '0', '0', 2669, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1060, 'RnB Grooves 1', 'sound_set_55', 's', 1, 1, 0.2, '1', '0', '0', 2671, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1061, 'Lightweight', 'noob_table*1', 's', 2, 2, 1, '1', '0', '0', 2687, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1062, 'Lightweight', 'noob_table*2', 's', 2, 2, 1, '1', '0', '0', 2688, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1063, 'Lightweight', 'noob_table*3', 's', 2, 2, 1, '1', '0', '0', 2689, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1064, 'Lightweight', 'noob_table*4', 's', 2, 2, 1, '1', '0', '0', 2690, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1065, 'Lightweight', 'noob_table*5', 's', 2, 2, 1, '1', '0', '0', 2691, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1066, 'Lightweight', 'noob_table*6', 's', 2, 2, 1, '1', '0', '0', 2692, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1067, 'My first Habbo stool', 'noob_stool*1', 's', 1, 1, 1, '0', '1', '0', 2657, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1068, 'My first Habbo stool', 'noob_stool*2', 's', 1, 1, 1, '0', '1', '0', 2658, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1069, 'My first Habbo stool', 'noob_stool*3', 's', 1, 1, 1, '0', '1', '0', 2659, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1070, 'My first Habbo stool', 'noob_stool*4', 's', 1, 1, 1, '0', '1', '0', 2660, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1071, 'My first Habbo stool', 'noob_stool*5', 's', 1, 1, 1, '0', '1', '0', 2661, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1072, 'My first Habbo stool', 'noob_stool*6', 's', 1, 1, 1, '0', '1', '0', 2662, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1073, 'My first Habbo rug', 'noob_rug*1', 's', 2, 3, 0, '1', '0', '1', 2681, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1074, 'My first Habbo rug', 'noob_rug*2', 's', 2, 3, 0, '1', '0', '1', 2682, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1075, 'My first Habbo rug', 'noob_rug*3', 's', 2, 3, 0, '1', '0', '1', 2683, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1076, 'My first Habbo rug', 'noob_rug*4', 's', 2, 3, 0, '1', '0', '1', 2684, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1077, 'My first Habbo rug', 'noob_rug*5', 's', 2, 3, 0, '1', '0', '1', 2685, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1078, 'My first Habbo rug', 'noob_rug*6', 's', 2, 3, 0, '1', '0', '1', 2686, '0', '1', '1', '0', '1', 'default', 1, '0'),
(1079, 'My first Habbo lamp', 'noob_lamp*1', 's', 1, 1, 1, '0', '0', '0', 2663, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1080, 'My first Habbo lamp', 'noob_lamp*2', 's', 1, 1, 1, '0', '0', '0', 2664, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1081, 'My first Habbo lamp', 'noob_lamp*3', 's', 1, 1, 1, '0', '0', '0', 2665, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1082, 'My first Habbo lamp', 'noob_lamp*4', 's', 1, 1, 1, '0', '0', '0', 2666, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1083, 'My first Habbo lamp', 'noob_lamp*5', 's', 1, 1, 1, '0', '0', '0', 2667, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1084, 'My first Habbo lamp', 'noob_lamp*6', 's', 1, 1, 1, '0', '0', '0', 2668, '0', '0', '1', '0', '1', 'default', 2, '0'),
(1085, 'Lightweight', 'noob_chair*1', 's', 1, 1, 1, '0', '1', '0', 2675, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1086, ' practical', 'noob_chair*2', 's', 1, 1, 1, '0', '1', '0', 2676, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1087, ' practical', 'noob_chair*3', 's', 1, 1, 1, '0', '1', '0', 2677, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1088, ' practical', 'noob_chair*4', 's', 1, 1, 1, '0', '1', '0', 2678, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1089, ' practical', 'noob_chair*5', 's', 1, 1, 1, '0', '1', '0', 2679, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1090, 'Power Globe', 'noob_chair*6', 's', 1, 1, 1, '0', '1', '0', 2680, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1091, 'Executive Plant', 'exe_plant', 's', 1, 1, 1, '0', '0', '0', 2674, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1092, 'Grey Share Bear', 'val_teddy*1', 's', 1, 1, 1, '0', '1', '0', 2699, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1093, 'Pink Share Bear', 'val_teddy*2', 's', 1, 1, 1, '0', '1', '0', 2700, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1094, 'Green Share Bear', 'val_teddy*3', 's', 1, 1, 1, '0', '1', '0', 2701, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1095, 'Brown Share Bear', 'val_teddy*4', 's', 1, 1, 1, '0', '1', '0', 2702, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1096, 'Yellow Share Bear', 'val_teddy*5', 's', 1, 1, 1, '0', '1', '0', 2703, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1097, 'Blue Share Bear', 'val_teddy*6', 's', 1, 1, 1, '0', '1', '0', 2704, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1098, 'Love Randomiser', 'val_randomizer', 's', 4, 1, 1.4, '0', '1', '0', 2696, '1', '1', '1', '1', '1', 'loveshuffler', 1, '0'),
(1099, 'Heart Shaped Chocs', 'val_choco', 's', 1, 1, 1, '0', '0', '0', 2697, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1100, 'Teleport Door', 'teleport_door', 's', 1, 1, 0.001, '0', '0', '1', 2693, '1', '1', '0', '1', '1', 'teleport', 2, '0'),
(1101, 'Latin Love 3', 'sound_set_61', 's', 1, 1, 0.2, '1', '0', '0', 2698, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1102, 'Latin Love 2', 'sound_set_60', 's', 1, 1, 0.2, '1', '0', '0', 2695, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1103, 'Crystal Ball', 'fortune', 's', 1, 1, 1, '0', '0', '0', 2694, '1', '1', '1', '1', '1', 'dice', 1, '0'),
(1104, 'Adventure Desk', 'sw_table', 's', 1, 2, 1, '0', '0', '0', 2713, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1105, 'Raven', 'sw_raven', 's', 1, 1, 1, '0', '0', '0', 2711, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1106, 'Ye Olde Chest', 'sw_chest', 's', 1, 2, 1, '0', '0', '0', 2709, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1107, 'Sand Castle Wall', 'sand_cstl_wall', 's', 2, 1, 1, '0', '0', '0', 2710, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1108, 'Sand Castle Tower', 'sand_cstl_twr', 's', 1, 1, 1, '0', '0', '0', 2705, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1109, 'Sand Castle Gate', 'sand_cstl_gate', 's', 2, 1, 0.001, '0', '0', '0', 2712, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1110, 'Candle Box', 'grunge_candle', 's', 1, 1, 1, '0', '0', '0', 2708, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1111, 'Bench', 'grunge_bench', 's', 3, 1, 1, '0', '1', '0', 2707, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1112, 'Flaming Barrel', 'grunge_barrel', 's', 1, 1, 1, '0', '0', '0', 2706, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1113, 'Moon Lamp', 'rclr_lamp', 's', 1, 1, 1, '0', '0', '0', 2733, '1', '1', '1', '1', '1', 'default', 2, '0'),
(302, 'Fish trophy', 'a0 prizetrophy4_g', 's', 1, 1, 1, '0', '0', '0', 1514, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1116, 'nouvelle_trax', 'nouvelle_trax', 's', 1, 1, 1, '0', '0', '0', 2736, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1117, 'Bubble Juice Floor', 'md_rug', 's', 4, 4, 0, '1', '0', '1', 2727, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1118, 'Sushi Kohada', 'jp_tray6', 's', 1, 1, 1, '0', '0', '0', 2720, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1119, 'Sushi Tamago', 'jp_tray5', 's', 1, 1, 1, '0', '0', '0', 2717, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1120, 'Sushi Uni', 'jp_tray4', 's', 1, 1, 1, '0', '0', '0', 2725, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1121, 'Sushi Ikura', 'jp_tray3', 's', 1, 1, 1, '0', '0', '0', 2726, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1122, 'Sushi Ika', 'jp_tray2', 's', 1, 1, 1, '0', '0', '0', 2724, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1123, 'Sushi Maguro', 'jp_tray1', 's', 1, 1, 1, '0', '0', '0', 2715, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1124, 'Tea Maker', 'arabian_teamk', 's', 1, 1, 1, '0', '0', '0', 2716, '1', '1', '1', '1', '1', 'vendingmachine', 0, '1'),
(1125, 'Ornamental Urn', 'arabian_snake', 's', 1, 1, 1, '0', '0', '0', 2732, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1126, 'Berber Kilim Rug', 'arabian_rug', 's', 3, 5, 0, '0', '0', '1', 2719, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1127, 'Green Blossom Pillow', 'arabian_pllw', 's', 1, 1, 0.8, '0', '1', '0', 2722, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1128, 'Soft wooden screen', 'arabian_divdr', 's', 1, 2, 1, '0', '0', '0', 2730, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1129, 'Exotic', 'arabian_chair', 's', 1, 1, 1.2, '0', '1', '0', 2721, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1130, 'Amanjena Table', 'arabian_bigtb', 's', 3, 2, 0.8, '1', '0', '0', 2731, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1131, 'Hexagonal Tea Table', 'arabian_tetbl', 's', 1, 1, 1, '1', '0', '0', 2714, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1132, 'Mint Tea Tray', 'arabian_tray1', 's', 1, 1, 1, '0', '0', '0', 2734, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1133, 'Candle Tray', 'arabian_tray2', 's', 1, 1, 1, '0', '0', '0', 2735, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1134, 'Sweets Tray', 'arabian_tray3', 's', 1, 1, 1, '0', '0', '0', 2723, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1135, 'Sweet', 'arabian_tray4', 's', 1, 1, 1, '0', '0', '0', 2728, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1136, 'Alhambra Trax 3', 'sound_set_64', 's', 1, 1, 0.2, '1', '0', '0', 2738, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1137, 'Alhambra Trax 2', 'sound_set_63', 's', 1, 1, 0.2, '1', '0', '0', 2740, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1138, 'Alhambra Trax 1', 'sound_set_62', 's', 1, 1, 0.2, '1', '0', '0', 2741, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1139, 'Jukebox Pacha TV', 'jukebox_ptv*1', 's', 1, 1, 1, '0', '0', '0', 2739, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1140, 'Calippo icecream machine', 'calippo', 's', 1, 1, 1, '0', '0', '0', 2737, '1', '1', '1', '1', '1', 'vendingmachine', 0, '4'),
(1141, 'traxsilver', 'traxsilver', 's', 1, 1, 1, '1', '0', '0', 2744, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1142, 'traxgold', 'traxgold', 's', 1, 1, 1, '1', '0', '0', 2742, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1143, 'traxbronze', 'traxbronze', 's', 1, 1, 1, '1', '0', '0', 2743, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1144, 'bench_puffet', 'bench_puffet', 's', 2, 1, 1, '0', '1', '0', 2745, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1145, 'Gold Bar (China)', 'CFC_500_goldbar', 's', 1, 1, 0.4, '1', '0', '0', 2764, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1146, 'Sack of Credits (China)', 'CFC_200_moneybag', 's', 1, 1, 1, '1', '0', '0', 2770, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20006, 'Mesh Corner', 'urban_fence_corner', 's', 1, 1, 1, '1', '0', '0', 3275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1148, 'Gold Coin (China)', 'CFC_100_coin_gold', 's', 1, 1, 0.2, '1', '0', '0', 2796, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1149, 'Silver Coin (China)', 'CFC_50_coin_silver', 's', 1, 1, 0.2, '1', '0', '0', 2772, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1150, 'Chabu Dai', 'jp_table', 's', 2, 2, 1, '0', '0', '0', 2749, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1151, 'Shishi Odishi', 'jp_rare', 's', 2, 2, 1, '0', '0', '0', 2750, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1152, 'Katana Green', 'jp_katana3', 's', 1, 1, 1, '0', '0', '0', 2748, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1153, 'Katana Blue', 'jp_katana2', 's', 1, 1, 1, '0', '0', '0', 2747, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1154, 'HC Katana Red', 'jp_katana1', 's', 1, 1, 1, '0', '0', '0', 2751, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1156, 'Tiki Waterfall', 'tiki_waterfall', 's', 3, 2, 1, '0', '0', '0', 2757, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1157, 'Tiki Pig Tray', 'tiki_tray4', 's', 1, 1, 1, '0', '0', '0', 2765, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1158, 'Tiki Fish Tray', 'tiki_tray3', 's', 1, 1, 1, '0', '0', '0', 2753, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1159, 'Tiki Pineapple Plate', 'tiki_tray2', 's', 1, 1, 1, '0', '0', '0', 2768, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1160, 'Tiki Fruit Tray', 'tiki_tray1', 's', 1, 1, 1, '0', '0', '0', 2755, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1161, 'Empty Tray', 'tiki_tray0', 's', 1, 1, 1, '0', '0', '0', 2792, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1162, 'Toucan', 'tiki_toucan', 's', 1, 1, 1, '0', '0', '0', 2756, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1163, 'Beach Torch', 'tiki_torch', 's', 1, 1, 1, '0', '0', '0', 2773, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1164, 'Tribal Statue', 'tiki_statue', 's', 1, 1, 1, '0', '0', '0', 2782, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1165, 'Island Sand Patch', 'tiki_sand', 's', 2, 2, 0, '1', '0', '1', 2798, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1166, 'Tiki Parasol', 'tiki_parasol', 's', 1, 1, 1, '0', '0', '0', 2769, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1167, 'Jungle Patch', 'tiki_junglerug', 's', 2, 2, 0, '1', '0', '1', 2781, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1168, 'Tiki Bar Corner', 'tiki_corner', 's', 1, 1, 1, '1', '0', '0', 2794, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1169, 'Butterflies', 'tiki_bflies', 's', 1, 1, 1, '0', '0', '0', 2785, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1170, 'Tiki Bar Stool', 'tiki_bench', 's', 1, 1, 1.3, '0', '1', '0', 2784, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1171, 'Tiki Bar Desk', 'tiki_bardesk', 's', 1, 1, 1, '1', '0', '0', 2795, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1172, 'tampax_rug', 'tampax_rug', 's', 3, 4, 0, '1', '0', '1', 2754, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1173, 'Sound set 70', 'sound_set_70', 's', 1, 1, 0.2, '1', '0', '0', 2767, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1174, 'Sound set 69', 'sound_set_69', 's', 1, 1, 0.2, '1', '0', '0', 2799, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1175, 'Sound set 68', 'sound_set_68', 's', 1, 1, 0.2, '1', '0', '0', 2793, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1176, 'Sound set 67', 'sound_set_67', 's', 1, 1, 0.2, '1', '0', '0', 2771, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1177, 'Sound set 66', 'sound_set_66', 's', 1, 1, 0.2, '1', '0', '0', 2752, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1178, 'Sound set 65', 'sound_set_65', 's', 1, 1, 0.2, '1', '0', '0', 2766, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20024, 'Square Dining Table', 'table_plasto_square*9', 's', 1, 1, 1, '1', '0', '0', 118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20021, 'Giant Heart', 'heart', 's', 1, 1, 1, '0', '0', '0', 227, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20016, 'Street Lamp', 'urban_lamp', 's', 1, 1, 1, '1', '0', '0', 3265, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1185, 'Lucky Bamboo', 'noob_plant', 's', 1, 1, 1, '0', '0', '0', 2783, '0', '1', '1', '0', '1', 'default', 1, '0'),
(20018, 'Street Wall', 'urban_wall', 'i', 0, 0, 1, '1', '0', '0', 4244, '1', '1', '1', '1', '1', 'default', 5, '0'),
(301, 'Globe trophy', 'a0 prizetrophy3_g', 's', 1, 1, 1, '0', '0', '0', 1513, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1197, 'Japanese Teamaker', 'jp_teamaker', 's', 1, 1, 1, '0', '0', '0', 2774, '1', '1', '1', '1', '1', 'vendingmachine', 0, '28'),
(1198, 'September 2008', 'svnr_uk', 's', 1, 1, 1, '0', '0', '0', 2838, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1199, 'August 2008', 'svnr_nl', 's', 1, 2, 1, '0', '1', '0', 2825, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1200, 'July 2008', 'svnr_it', 's', 2, 1, 1, '0', '1', '0', 2813, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1201, 'October 2008', 'svnr_de', 's', 1, 1, 1, '0', '0', '0', 2801, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1202, 'November 2008', 'svnr_aus', 's', 1, 1, 1, '0', '0', '0', 2836, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1203, 'Accompaniments', 'diner_tray_7', 's', 1, 1, 1, '0', '0', '0', 2840, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1204, 'Vanilla', 'diner_tray_6', 's', 1, 1, 1, '0', '0', '0', 2826, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1205, 'Bacon and Eggs', 'diner_tray_5', 's', 1, 1, 1, '0', '0', '0', 2815, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1206, 'Pancakes', 'diner_tray_4', 's', 1, 1, 1, '0', '0', '0', 2800, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1207, 'Spaghetti Meatballs', 'diner_tray_3', 's', 1, 1, 1, '0', '0', '0', 2841, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1208, 'Steak and Mash', 'diner_tray_2', 's', 1, 1, 1, '0', '0', '0', 2802, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1209, 'Burger and Chips', 'diner_tray_1', 's', 1, 1, 1, '0', '0', '0', 2839, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1210, 'Had your fill', 'diner_tray_0', 's', 1, 1, 0.1, '1', '0', '0', 2837, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1211, 'Aqua Diner Sofa 2', 'diner_sofa_2*1', 's', 1, 1, 1, '0', '1', '0', 2804, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1212, 'Pink Diner Sofa 2', 'diner_sofa_2*2', 's', 1, 1, 1, '0', '1', '0', 2805, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1213, 'Black Diner Sofa 2', 'diner_sofa_2*3', 's', 1, 1, 1, '0', '1', '0', 2806, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1214, 'White Diner Sofa 2', 'diner_sofa_2*4', 's', 1, 1, 1, '0', '1', '0', 2807, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1215, 'Latte Diner Sofa 2', 'diner_sofa_2*5', 's', 1, 1, 1, '0', '1', '0', 2808, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1216, 'Blue Diner Sofa 2', 'diner_sofa_2*6', 's', 1, 1, 1, '0', '1', '0', 2809, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1217, 'Green Diner Sofa 2', 'diner_sofa_2*7', 's', 1, 1, 1, '0', '1', '0', 2810, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1218, 'Yellow Diner Sofa 2', 'diner_sofa_2*8', 's', 1, 1, 1, '0', '1', '0', 2811, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1219, 'Red Diner Sofa 2', 'diner_sofa_2*9', 's', 1, 1, 1, '0', '1', '0', 2812, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1220, 'Diner Shaker', 'diner_shaker', 's', 1, 1, 1, '0', '0', '0', 2814, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1221, 'Diner Floor', 'diner_rug', 's', 2, 2, 0, '1', '0', '1', 2803, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1222, 'Aqua Gumball Machine', 'diner_gumvendor*1', 's', 1, 1, 1, '0', '0', '0', 2827, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1223, 'Pink Gumball Machine', 'diner_gumvendor*2', 's', 1, 1, 1, '0', '0', '0', 2828, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1224, 'Black Gumball Machine', 'diner_gumvendor*3', 's', 1, 1, 1, '0', '0', '0', 2829, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1225, 'White Gumball Machine', 'diner_gumvendor*4', 's', 1, 1, 1, '0', '0', '0', 2830, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1226, 'Latte Gumball Machine', 'diner_gumvendor*5', 's', 1, 1, 1, '0', '0', '0', 2831, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1227, 'Blue Gumball Machine', 'diner_gumvendor*6', 's', 1, 1, 1, '0', '0', '0', 2832, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1228, 'Green Gumball Machine', 'diner_gumvendor*7', 's', 1, 1, 1, '0', '0', '0', 2833, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1229, 'Yellow Gumball Machine', 'diner_gumvendor*8', 's', 1, 1, 1, '0', '0', '0', 2834, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1230, 'Red Gumball Machine', 'diner_gumvendor*9', 's', 1, 1, 1, '0', '0', '0', 2835, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1231, 'Aqua Diner Till', 'diner_cashreg*1', 's', 1, 1, 1, '0', '0', '0', 2816, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1232, 'Pink Diner Till', 'diner_cashreg*2', 's', 1, 1, 1, '0', '0', '0', 2817, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1233, 'Black Diner Till', 'diner_cashreg*3', 's', 1, 1, 1, '0', '0', '0', 2818, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1234, 'White Diner Till', 'diner_cashreg*4', 's', 1, 1, 1, '0', '0', '0', 2819, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1235, 'Latte Diner Till', 'diner_cashreg*5', 's', 1, 1, 1, '0', '0', '0', 2820, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1236, 'Blue Diner Till', 'diner_cashreg*6', 's', 1, 1, 1, '0', '0', '0', 2821, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1237, 'Green Diner Till', 'diner_cashreg*7', 's', 1, 1, 1, '0', '0', '0', 2822, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1238, 'Yellow Diner Till', 'diner_cashreg*8', 's', 1, 1, 1, '0', '0', '0', 2823, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1239, 'Red Diner Till', 'diner_cashreg*9', 's', 1, 1, 1, '0', '0', '0', 2824, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1240, 'Aqua Diner Table', 'diner_table_2*1', 's', 3, 2, 1, '1', '0', '0', 2879, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1241, 'Pink Diner Table', 'diner_table_2*2', 's', 3, 2, 1, '1', '0', '0', 2880, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1242, 'Black Diner Table', 'diner_table_2*3', 's', 3, 2, 1, '1', '0', '0', 2881, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1243, 'White Diner Table', 'diner_table_2*4', 's', 3, 2, 1, '1', '0', '0', 2882, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1244, 'Latte Diner Table', 'diner_table_2*5', 's', 3, 2, 1, '1', '0', '0', 2883, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1245, 'Blue Diner Table', 'diner_table_2*6', 's', 3, 2, 1, '1', '0', '0', 2884, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1246, 'Green Diner Table', 'diner_table_2*7', 's', 3, 2, 1, '1', '0', '0', 2885, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1247, 'Yellow Diner Table', 'diner_table_2*8', 's', 3, 2, 1, '1', '0', '0', 2886, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1248, 'Red Diner Table', 'diner_table_2*9', 's', 3, 2, 1, '1', '0', '0', 2887, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1249, 'Aqua Diner Booth Table', 'diner_table_1*1', 's', 2, 2, 1, '1', '0', '0', 2897, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1250, 'Pink Diner Booth Table', 'diner_table_1*2', 's', 2, 2, 1, '1', '0', '0', 2898, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1251, 'Black Diner Booth Table', 'diner_table_1*3', 's', 2, 2, 1, '1', '0', '0', 2899, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1252, 'White Diner Booth Table', 'diner_table_1*4', 's', 2, 2, 1, '1', '0', '0', 2900, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1253, 'Latte Diner Booth Table', 'diner_table_1*5', 's', 2, 2, 1, '1', '0', '0', 2901, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1254, 'Blue Diner Booth Table', 'diner_table_1*6', 's', 2, 2, 1, '1', '0', '0', 2902, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1255, 'Green Diner Booth Table', 'diner_table_1*7', 's', 2, 2, 1, '1', '0', '0', 2903, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1256, 'Yellow Diner Booth Table', 'diner_table_1*8', 's', 2, 2, 1, '1', '0', '0', 2904, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1257, 'Red Diner Booth Table', 'diner_table_1*9', 's', 2, 2, 1, '1', '0', '0', 2905, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1258, 'Aqua Diner Sofa 1', 'diner_sofa_1*1', 's', 1, 1, 1, '0', '1', '0', 2888, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1259, 'Pink Diner Sofa 1', 'diner_sofa_1*2', 's', 1, 1, 1, '0', '1', '0', 2889, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1260, 'Black Diner Sofa 1', 'diner_sofa_1*3', 's', 1, 1, 1, '0', '1', '0', 2890, '1', '1', '1', '1', '1', 'default', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1261, 'White Diner Sofa 1', 'diner_sofa_1*4', 's', 1, 1, 1, '0', '1', '0', 2891, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1262, 'Latte Diner Sofa 1', 'diner_sofa_1*5', 's', 1, 1, 1, '0', '1', '0', 2892, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1263, 'Blue Diner Sofa 1', 'diner_sofa_1*6', 's', 1, 1, 1, '0', '1', '0', 2893, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1264, 'Green Diner Sofa 1', 'diner_sofa_1*7', 's', 1, 1, 1, '0', '1', '0', 2894, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1265, 'Yellow Diner Sofa 1', 'diner_sofa_1*8', 's', 1, 1, 1, '0', '1', '0', 2895, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1266, 'Red Diner Sofa 1', 'diner_sofa_1*9', 's', 1, 1, 1, '0', '1', '0', 2896, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1267, 'Aqua Diner Stool', 'diner_chair*1', 's', 1, 1, 1.4, '0', '1', '0', 2861, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1268, 'Pink Diner Stool', 'diner_chair*2', 's', 1, 1, 1.4, '0', '1', '0', 2862, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1269, 'Black Diner Stool', 'diner_chair*3', 's', 1, 1, 1.4, '0', '1', '0', 2863, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1270, 'White Diner Stool', 'diner_chair*4', 's', 1, 1, 1.4, '0', '1', '0', 2864, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1271, 'Latte Diner Stool', 'diner_chair*5', 's', 1, 1, 1.4, '0', '1', '0', 2865, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1272, 'Blue Diner Stool', 'diner_chair*6', 's', 1, 1, 1.4, '0', '1', '0', 2866, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1273, 'Green Diner Stool', 'diner_chair*7', 's', 1, 1, 1.4, '0', '1', '0', 2867, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1274, 'Yellow Diner Stool', 'diner_chair*8', 's', 1, 1, 1.4, '0', '1', '0', 2868, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1275, 'Red Diner Stool', 'diner_chair*9', 's', 1, 1, 1.4, '0', '1', '0', 2869, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1276, 'Aqua Diner Gate', 'diner_bardesk_gate*1', 's', 1, 1, 0.001, '0', '0', '0', 2842, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1277, 'Pink Diner Gate', 'diner_bardesk_gate*2', 's', 1, 1, 0.001, '0', '0', '0', 2843, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1278, 'Black Diner Gate', 'diner_bardesk_gate*3', 's', 1, 1, 0.001, '0', '0', '0', 2844, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1279, 'White Diner Gate', 'diner_bardesk_gate*4', 's', 1, 1, 0.001, '0', '0', '0', 2845, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1280, 'Latte Diner Gate', 'diner_bardesk_gate*5', 's', 1, 1, 0.001, '0', '0', '0', 2846, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1281, 'Blue Diner Gate', 'diner_bardesk_gate*6', 's', 1, 1, 0.001, '0', '0', '0', 2847, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1282, 'Green Diner Gate', 'diner_bardesk_gate*7', 's', 1, 1, 0.001, '0', '0', '0', 2848, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1283, 'Yellow Diner Gate', 'diner_bardesk_gate*8', 's', 1, 1, 0.001, '0', '0', '0', 2849, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1284, 'Red Diner Gate', 'diner_bardesk_gate*9', 's', 1, 1, 0.001, '0', '0', '0', 2850, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1285, 'Aqua Diner Corner', 'diner_bardesk_corner*1', 's', 1, 1, 1, '1', '0', '0', 2870, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1286, 'Pink Diner Corner', 'diner_bardesk_corner*2', 's', 1, 1, 1, '1', '0', '0', 2871, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1287, 'Black Diner Corner', 'diner_bardesk_corner*3', 's', 1, 1, 1, '1', '0', '0', 2872, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1288, 'Latte Diner Corner', 'diner_bardesk_corner*4', 's', 1, 1, 1, '1', '0', '0', 2873, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1289, 'Blue Diner Corner', 'diner_bardesk_corner*6', 's', 1, 1, 1, '1', '0', '0', 2875, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1290, 'Green Diner Corner', 'diner_bardesk_corner*7', 's', 1, 1, 1, '1', '0', '0', 2876, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1291, 'Yellow Diner Corner', 'diner_bardesk_corner*8', 's', 1, 1, 1, '1', '0', '0', 2877, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1292, 'Red Diner Corner', 'diner_bardesk_corner*9', 's', 1, 1, 1, '1', '0', '0', 2878, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1293, 'Aqua Diner Bar', 'diner_bardesk*1', 's', 1, 1, 1, '1', '0', '0', 2851, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1294, 'Pink Diner Bar', 'diner_bardesk*2', 's', 1, 1, 1, '1', '0', '0', 2852, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1295, 'Black Diner Bar', 'diner_bardesk*3', 's', 1, 1, 1, '1', '0', '0', 2853, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1296, 'White Diner Bar', 'diner_bardesk*4', 's', 1, 1, 1, '1', '0', '0', 2854, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1297, 'Latte Diner Bar', 'diner_bardesk*5', 's', 1, 1, 1, '1', '0', '0', 2855, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1298, 'Blue Diner Bar', 'diner_bardesk*6', 's', 1, 1, 1, '1', '0', '0', 2856, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1299, 'Green Diner Bar', 'diner_bardesk*7', 's', 1, 1, 1, '1', '0', '0', 2857, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1300, 'Yellow Diner Bar', 'diner_bardesk*8', 's', 1, 1, 1, '1', '0', '0', 2858, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1301, 'Red Diner Bar', 'diner_bardesk*9', 's', 1, 1, 1, '1', '0', '0', 2859, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1302, 'ads_dave_cns', 'ads_dave_cns', 's', 1, 1, 1, '0', '0', '0', 2860, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1303, 'easy_carpet name', 'easy_carpet', 's', 4, 4, 0, '1', '0', '1', 2911, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1304, 'easy_bowl2', 'easy_bowl2', 's', 1, 1, 1, '1', '0', '0', 2907, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1305, 'Greek Corner', 'greek_corner', 's', 1, 1, 1, '0', '0', '0', 2910, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1306, 'Enter mortal', 'greek_gate', 's', 2, 1, 0.001, '0', '0', '0', 2908, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1307, 'Greek Pillars', 'greek_pillars', 's', 2, 1, 1, '0', '0', '0', 2909, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1308, 'Greek Seat', 'greek_seat', 's', 1, 1, 0.5, '0', '1', '0', 2906, '1', '1', '1', '1', '1', 'default', 1, '0'),
(300, 'Duck trophy', 'a0 prizetrophy2_g', 's', 1, 1, 1, '0', '0', '0', 1512, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(299, 'Classic trophy', 'prizetrophy*1', 's', 1, 1, 1, '0', '0', '0', 1512, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1312, 'greek_block', 'greek_block', 's', 2, 1, 0.8, '0', '1', '0', 2915, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1313, 'Glass Table', 'hcc_table', 's', 1, 2, 1, '0', '0', '0', 2923, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1314, 'Bookshelf', 'hcc_shelf', 's', 1, 2, 1, '0', '0', '0', 2917, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1315, 'Low Back Sofa', 'hcc_sofa', 's', 2, 1, 1.2, '0', '1', '0', 2921, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1316, 'Cool look', 'hcc_minibar', 's', 1, 1, 1, '0', '0', '0', 2924, '1', '1', '1', '1', '1', 'vendingmachine', 0, '24'),
(1317, 'Trendy Stool', 'hcc_chair', 's', 1, 1, 1, '0', '1', '0', 2919, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1318, 'Crime scene', 'det_divider', 's', 2, 1, 1, '0', '0', '0', 2918, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1319, 'netari_carpet', 'netari_carpet', 's', 3, 5, 0, '1', '0', '1', 2916, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1320, 'Chalk Outline', 'det_body', 's', 2, 3, 0, '0', '0', '1', 2922, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1321, 'Antique Stool', 'hcc_stool', 's', 1, 1, 1.2, '0', '1', '0', 2920, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1322, 'Reclining Chair', 'hcc_sofachair', 's', 1, 1, 1.2, '0', '1', '0', 2925, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1323, 'Glass Corner', 'hcc_crnr', 's', 1, 1, 1, '0', '0', '0', 2926, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1324, 'Glass Divider', 'hcc_dvdr', 's', 2, 1, 1, '0', '0', '0', 2927, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1325, 'sob_carpet', 'sob_carpet', 's', 3, 5, 0, '1', '0', '1', 2928, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1326, 'My Hump', 'igor_seat', 's', 1, 1, 1, '0', '1', '0', 2929, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1327, 'The Brain', 'ads_igorbrain', 's', 1, 1, 1, '0', '0', '0', 2936, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1328, 'Igor Switch', 'ads_igorswitch', 's', 1, 1, 1, '0', '0', '0', 2934, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1329, 'ads_711', 'ads_711*1', 's', 1, 1, 1, '0', '0', '0', 2930, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1330, 'ads_711', 'ads_711*2', 's', 1, 1, 1, '0', '0', '0', 2931, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1331, 'ads_711', 'ads_711*3', 's', 1, 1, 1, '0', '0', '0', 2932, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1332, 'ads_711', 'ads_711*4', 's', 1, 1, 1, '0', '0', '0', 2933, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1333, 'Igor Ray Gun', 'ads_igorraygun', 's', 1, 2, 1, '0', '0', '0', 2935, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1334, 'Blood Sink', 'hween08_sink', 's', 1, 1, 1, '0', '0', '0', 2944, '1', '1', '1', '1', '1', 'vendingmachine', 0, '29'),
(1335, 'Hospital Curtain (blood)', 'hween08_curtain', 's', 3, 1, 1, '0', '0', '0', 2942, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1336, 'Blood Bath', 'hween08_bath', 's', 1, 2, 1, '0', '1', '0', 2948, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1337, 'Life Support (blood)', 'hween08_defibs', 's', 1, 1, 1, '0', '0', '0', 2938, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1338, 'Body Bag', 'hween08_bbag', 's', 1, 3, 1.3, '0', '0', '0', 2943, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1339, 'Hospital Curtain (ooze)', 'hween08_curtain2', 's', 3, 1, 1, '0', '0', '0', 2949, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1340, 'Life Support (ooze)', 'hween08_defibs2', 's', 1, 1, 1, '0', '0', '0', 2939, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1341, 'Hospital Bed (blood)', 'hween08_bed', 's', 1, 3, 2, '0', '0', '0', 2945, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1342, 'Ooze Sink', 'hween08_sink2', 's', 1, 1, 1, '0', '0', '0', 2940, '1', '1', '1', '1', '1', 'vendingmachine', 0, '30'),
(1343, 'Hospital Bed (ooze)', 'hween08_bed2', 's', 1, 3, 1, '0', '0', '0', 2937, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(1344, 'Ooze Bath', 'hween08_bath2', 's', 1, 2, 1, '0', '1', '0', 2947, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1345, 'Manhole', 'hween08_manhole', 's', 1, 1, 1, '0', '0', '0', 2946, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1346, ' poke', 'hween08_trll', 's', 1, 1, 1, '0', '0', '0', 2941, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1347, 'Glass High Bar Table', 'party_table', 's', 1, 1, 1, '1', '0', '0', 2956, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1348, 'Spotlight', 'party_discol', 's', 1, 1, 1, '0', '0', '0', 2963, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1349, 'Stage Block Large', 'party_block2', 's', 2, 2, 0.7, '1', '0', '1', 2950, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1350, 'Bar Corner', 'party_barcorn', 's', 1, 1, 1, '1', '0', '0', 2957, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1351, 'High Class Bar Stool', 'party_chair', 's', 1, 1, 1.3, '0', '1', '0', 2960, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1352, 'Small Stage', 'party_block', 's', 1, 1, 0.9, '1', '0', '1', 2959, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1353, 'Dance Floor Laser', 'party_ravel', 's', 1, 1, 1, '0', '0', '0', 2965, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1354, 'Despite being made a lava', 'party_tube_lava', 's', 1, 1, 1, '0', '0', '0', 2966, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1355, 'Club Tray', 'party_tray', 's', 1, 1, 1, '0', '0', '0', 2955, '1', '1', '1', '1', '1', 'vendingmachine', 0, '31'),
(1356, 'Scratch it', 'party_djtable', 's', 1, 2, 1, '0', '0', '0', 2954, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1357, 'Disco Floor', 'party_floor', 's', 2, 2, 0, '1', '0', '1', 2958, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1358, 'Glitter Ball', 'party_ball', 's', 1, 1, 0, '0', '0', '1', 2964, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1359, 'Bubbles Machine', 'party_tube_bubble', 's', 1, 1, 1, '0', '0', '0', 2951, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1360, ' MC', 'party_mic', 's', 1, 1, 1, '0', '0', '0', 2953, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1361, 'Dance Floor Beamer', 'party_beamer', 's', 1, 1, 1, '0', '0', '0', 2961, '1', '1', '1', '1', '1', 'default', 7, '0'),
(1362, 'Bar Centre', 'party_bardesk', 's', 1, 1, 1, '1', '0', '0', 2962, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1363, 'Club seat', 'party_seat', 's', 1, 1, 1.1, '0', '1', '0', 2952, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1364, 'Snow Seat', 'xmas08_snowpl', 's', 1, 1, 1, '0', '1', '1', 3005, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1365, 'Emperor Penguin', 'penguin_basic', 's', 1, 1, 1, '0', '0', '0', 2977, '1', '1', '1', '1', '1', 'default', 1, '0'),
(298, 'Champion trophy', 'a0 prizetrophy5_b', 's', 1, 1, 1, '0', '0', '0', 1509, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1367, 'Musketeer Penguin', 'penguin_musketeer', 's', 1, 1, 1, '0', '0', '0', 2995, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1368, 'Icy table', 'xmas08_table', 's', 2, 2, 1, '1', '0', '0', 3009, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1369, 'Hot Tub', 'xmas08_hottub', 's', 2, 2, 1, '0', '0', '0', 2986, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1370, 'Luchador Penguin', 'penguin_wrestler', 's', 1, 1, 1, '0', '0', '0', 2990, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1371, 'Blow it up', 'fx_explosion', 's', 1, 1, 1, '0', '0', '0', 3011, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(1372, 'Robot Penguin', 'penguin_robot', 's', 1, 1, 1, '0', '0', '0', 2969, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1373, 'Icy Christmas Tree', 'xmas08_icetree', 's', 1, 1, 1, '0', '0', '0', 2967, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1374, 'Camp fire', 'campfire', 's', 1, 1, 1, '1', '0', '0', 2974, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1375, 'Ice', 'xmas08_icerug', 's', 2, 2, 0, '1', '0', '1', 3002, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1376, 'Executive Penguin', 'penguin_suit', 's', 1, 1, 1, '0', '0', '0', 3008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1377, 'December 2008', 'svnr_fi', 's', 1, 1, 1, '0', '0', '0', 2991, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1378, 'Snow Storm', 'xmas_snow', 's', 2, 2, 0, '1', '0', '1', 2982, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1379, 'Hockey Penguin', 'penguin_icehockey', 's', 1, 1, 1, '0', '0', '0', 2988, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1380, 'Pilot Penguin', 'penguin_pilot', 's', 1, 1, 1, '0', '0', '0', 3007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1381, 'Ballerina Penguin', 'penguin_ballet', 's', 1, 1, 1, '0', '0', '0', 2996, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1382, 'Arctic SFX', 'sound_set_71', 's', 1, 1, 0.2, '1', '0', '0', 3000, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1383, 'Boxer Penguin', 'penguin_boxer', 's', 1, 1, 1, '0', '0', '0', 2979, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1384, 'Fluorescent Penguin', 'penguin_glow', 's', 1, 1, 1, '0', '0', '0', 2993, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1385, 'Summer Penguin', 'penguin_swim', 's', 1, 1, 1, '0', '0', '0', 2984, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1386, 'Sumo Penguin', 'penguin_sumo', 's', 1, 1, 1, '0', '0', '0', 2994, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1387, 'Bubbles', 'xmas08_geysir', 's', 2, 2, 1, '0', '0', '0', 2985, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1388, 'Clown Penguin', 'penguin_clown', 's', 1, 1, 1, '0', '0', '0', 2989, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1389, 'Infected Penguin', 'penguin_infected', 's', 1, 1, 1, '0', '0', '0', 2983, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1390, 'Firestarter', 'fx_flare', 's', 1, 1, 1, '1', '0', '0', 3013, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(1391, 'Snowball Lantern Pile', 'xmas08_lantern', 's', 1, 1, 1, '0', '0', '0', 2968, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1392, 'Ice chair', 'xmas08_chair', 's', 1, 1, 1, '0', '1', '0', 3001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1393, 'Superhero Penguin', 'penguin_super', 's', 1, 1, 1, '0', '0', '0', 2998, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1394, 'Icy Teleport', 'xmas08_telep', 's', 1, 1, 0.001, '0', '0', '0', 2978, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1395, 'Cube Tree', 'xmas08_cubetree', 's', 1, 1, 1, '0', '0', '0', 3006, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1396, 'Disco Penguin', 'penguin_rock', 's', 1, 1, 1, '0', '0', '0', 3010, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1397, 'Ice divider', 'xmas08_dvdr1', 's', 2, 1, 1, '0', '0', '0', 2992, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1398, 'Ice Fish Hole', 'xmas08_hole', 's', 1, 1, 1, '0', '0', '0', 2980, '1', '1', '1', '1', '1', 'vendingmachine', 0, '34'),
(1399, 'XC Penguin', 'penguin_ski', 's', 1, 1, 1, '0', '0', '0', 2981, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1400, 'Skater Penguin', 'penguin_skater', 's', 1, 1, 1, '0', '0', '0', 2973, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1401, 'Icy Divider Corner', 'xmas08_dvdr2', 's', 1, 1, 1, '0', '0', '0', 2970, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1402, 'Christmas Penguin', 'penguin_elf', 's', 1, 1, 1, '0', '0', '0', 2971, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1403, 'Bunny Penguin', 'penguin_bunny', 's', 1, 1, 1, '0', '0', '0', 2975, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1404, 'Ninja Penguin', 'penguin_ninja', 's', 1, 1, 1, '0', '0', '0', 2976, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1405, 'Magic Penguin', 'penguin_magician', 's', 1, 1, 1, '0', '0', '0', 2997, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1406, 'Beautiful Penguin', 'penguin_hunchback', 's', 1, 1, 1, '0', '0', '0', 3003, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1407, 'Cowboy Penguin', 'penguin_cowboy', 's', 1, 1, 1, '0', '0', '0', 2987, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1408, 'Punk Penguin', 'penguin_punk', 's', 1, 1, 1, '0', '0', '0', 3004, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1409, 'Pirate Penguin', 'penguin_pirate', 's', 1, 1, 1, '0', '0', '0', 2999, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1410, 'ads_ob_pillow name', 'ads_ob_pillow', 's', 1, 1, 1, '0', '1', '0', 3018, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1411, 'Leviathon', 'lostc_merdragon', 's', 1, 3, 1, '0', '0', '0', 3016, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1412, 'Idea Agency Desk', 'ads_cldesk', 's', 2, 2, 1, '0', '0', '0', 3017, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1413, 'Eco Friendly Penguin', 'xmas08_trph2', 's', 1, 1, 1, '0', '0', '0', 3015, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1414, 'Whatever your Idea', 'ads_cltele', 's', 1, 1, 0.001, '0', '0', '0', 3014, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1415, 'Childline Rug', 'ads_clfloor', 's', 3, 5, 0, '0', '0', '1', 3019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1417, 'Mall tele-door', 'ads_mall_tele', 's', 1, 1, 0.001, '1', '0', '1', 3020, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1418, 'Moongate', 'china_moongt', 's', 1, 3, 0.001, '0', '0', '1', 3024, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1419, 'Lotus Pool', 'bolly_lotus_pool', 's', 2, 2, 0, '0', '0', '0', 3022, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1420, 'Ox Statue', 'china_ox', 's', 1, 1, 1, '0', '0', '0', 3025, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1422, 'Petal Flurry', 'bolly_petals', 's', 2, 2, 0, '1', '0', '1', 3026, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1423, 'Palm Tree', 'bolly_tree', 's', 1, 1, 1, '0', '0', '0', 3042, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1424, 'Swing low', 'bolly_swing', 's', 2, 1, 1.5, '0', '1', '0', 3037, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1425, 'Star Pillow', 'bolly_pillow', 's', 1, 1, 0.8, '0', '1', '0', 3030, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1426, 'Bollywood Corner', 'bolly_corner', 's', 1, 1, 1, '1', '0', '0', 3031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1427, 'Elephant MiniBar', 'bolly_phant', 's', 1, 1, 1, '0', '0', '0', 3033, '1', '1', '1', '1', '1', 'vendingmachine', 0, '35'),
(1428, 'Monkey Lamp', 'bolly_monkey_lamp', 's', 1, 1, 1, '0', '0', '0', 3036, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1429, 'Green Curtain', 'bolly_drapeb', 's', 3, 1, 0.001, '0', '0', '0', 3040, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1430, 'Planet of Love', 'planet_of_love', 's', 1, 1, 1, '1', '0', '0', 3044, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1431, 'Chandelier', 'bolly_lamp', 's', 1, 1, 1, '0', '0', '0', 3041, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1432, 'Bollywood Desk', 'bolly_desk', 's', 2, 1, 1, '1', '0', '0', 3034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1433, 'Vase of Flowers', 'bolly_vase', 's', 1, 1, 1, '0', '0', '0', 3043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1434, 'Standard Tile', 'bolly_tile2', 's', 2, 2, 0, '1', '0', '1', 3027, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1435, 'Large Ornamental Table', 'bolly_table', 's', 2, 2, 1, '1', '0', '0', 3035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1436, 'Yellow Curtain', 'bolly_drapec', 's', 3, 1, 0.001, '0', '0', '0', 3032, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1437, 'Extravagant Fountain', 'bolly_fountain', 's', 2, 2, 1, '0', '0', '0', 3029, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20046, 'Executive Teleport', 'exe_elevator', 's', 1, 1, 0.001, '0', '0', '0', 3305, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1439, 'Ornamental Tile', 'bolly_tile1', 's', 2, 2, 0, '1', '0', '1', 3028, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1440, 'Pink Curtain', 'bolly_drapea', 's', 3, 1, 0.001, '0', '0', '0', 3038, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1441, 'ads_idol_floor1 name', 'ads_idol_floor1', 's', 2, 2, 0, '0', '0', '1', 3045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1442, 'Inventor''s Desk', 'ads_igor_dsk', 's', 2, 1, 1, '0', '0', '0', 3049, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1443, 'ads_idol_desk', 'ads_idol_desk', 's', 1, 4, 1, '0', '0', '0', 3050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1444, 'ads_idol_ch', 'ads_idol_ch', 's', 1, 1, 1.2, '0', '1', '0', 3051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1445, 'Glass Flask', 'ads_igor_flask', 's', 1, 1, 1, '0', '0', '0', 3046, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1446, 'ads_idol_drape name', 'ads_idol_drape', 's', 3, 1, 0.001, '0', '0', '0', 3048, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1447, 'ads_idol_floor2 name', 'ads_idol_floor2', 's', 2, 2, 0, '0', '0', '1', 3047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1448, 'Kraken', 'lostc_octopus', 's', 1, 2, 1, '0', '0', '0', 3052, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1449, 'Marble Floor Tile', 'lc_tile1', 's', 2, 2, 0, '1', '0', '1', 3076, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1450, 'Small Jellyfish Lamp', 'lc_medusa2', 's', 1, 1, 1, '0', '0', '0', 3073, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1451, 'Sally Lightfoot', 'lc_crab2', 's', 1, 1, 1, '0', '0', '0', 3068, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1452, 'March Collectable 2009', 'lostc_teleport', 's', 1, 1, 0.001, '0', '0', '1', 3071, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1453, 'ads_idol_piano name', 'ads_idol_piano', 's', 2, 2, 1, '0', '0', '0', 3058, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1454, 'Large Coral Divider', 'lc_coral_divider_hi', 's', 2, 1, 1, '0', '0', '0', 3078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1455, 'ads_711shelf name', 'ads_711shelf', 's', 1, 2, 1, '0', '0', '0', 3066, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1456, 'Water Tube Corner', 'lc_tubes_corners', 's', 1, 1, 1, '0', '0', '0', 3072, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1457, 'Captain''s Table', 'lc_table', 's', 2, 2, 1, '1', '0', '0', 3067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1458, 'Cobbled Stones', 'lc_tile2', 's', 2, 2, 0, '1', '0', '1', 3069, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1459, 'Anemone', 'lc_anemone', 's', 1, 1, 1, '0', '0', '0', 3074, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1460, 'Small Coral Divider', 'lc_coral_divider_low', 's', 2, 1, 1, '0', '0', '0', 3077, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1461, 'Ocean Window Rug', 'lc_glass_floor', 's', 2, 3, 0, '0', '0', '1', 3060, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1462, 'Large Jellyfish Lamp', 'lc_medusa1', 's', 1, 1, 1, '0', '0', '0', 3064, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1463, 'Crab Patch', 'lc_crab1', 's', 2, 2, 1, '0', '0', '0', 3062, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1464, 'ads_idol_jukebox name', 'ads_idol_jukebox*1', 's', 1, 1, 1, '0', '0', '0', 3059, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1465, 'ads_idol_pchair name', 'ads_idol_pchair', 's', 1, 1, 1, '0', '1', '0', 3056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1466, 'Water Tube Straight', 'lc_tubes_straight', 's', 1, 1, 1, '0', '0', '0', 3065, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1467, 'ads_idol_audChr name', 'ads_idol_audChr', 's', 1, 1, 1, '0', '1', '0', 3057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1468, 'ads_idol_trax name', 'ads_idol_trax', 's', 1, 1, 1, '0', '0', '0', 3055, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1469, 'ads_idol_tele', 'ads_idol_tele', 's', 1, 1, 0.001, '0', '0', '1', 3053, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1470, 'Wooden Corner', 'lc_corner', 's', 1, 1, 1, '1', '0', '0', 3075, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1471, 'Wooden Stool', 'lc_stool', 's', 1, 1, 1, '0', '1', '0', 3063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1472, 'No rusty nails', 'lc_chair', 's', 1, 1, 1, '0', '1', '0', 3061, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1473, 'Wooden Bar Desk', 'lc_desk', 's', 2, 1, 1, '1', '0', '0', 3070, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1474, 'ads_idol_mic name', 'ads_idol_mic', 's', 1, 1, 1, '0', '0', '0', 3054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1475, 'ads_idol_hotspot name', 'ads_idol_hotspot', 's', 1, 1, 0.2, '0', '0', '1', 3080, '1', '1', '1', '1', '1', 'default', 103, '0'),
(1476, 'ads_idol_clRack name', 'ads_idol_clRack', 's', 3, 1, 1, '0', '0', '0', 3079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1477, 'ads_idol_voting_ch name', 'ads_idol_voting_ch', 's', 1, 1, 1.2, '0', '1', '0', 3081, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1478, 'Ecotron prize', 'ecotron_box', 's', 1, 1, 1, '1', '0', '0', 3095, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1479, 'Eco Light 2', 'eco_light2', 's', 1, 1, 1, '1', '0', '0', 3082, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1480, 'Eco Stool 3', 'eco_chair3', 's', 1, 1, 1, '0', '1', '0', 3094, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1481, 'Eco Coffee Table 3', 'eco_table3', 's', 2, 2, 1, '1', '0', '0', 3086, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1482, 'Eco Lamp 2', 'eco_lamp2', 's', 1, 1, 1, '1', '0', '0', 3092, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1483, 'Eco Armchair 3', 'eco_sofa3', 's', 1, 1, 1, '0', '1', '0', 3088, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1484, 'Eco Coffee Table 2', 'eco_table2', 's', 2, 2, 1, '1', '0', '0', 3089, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1485, 'Fruit Bowl 2', 'eco_fruits2', 's', 1, 1, 1, '1', '0', '0', 3102, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1486, 'Eco Armchair 1', 'eco_sofa1', 's', 1, 1, 1, '0', '1', '0', 3096, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1487, 'Fruit Bowl 3', 'eco_fruits3', 's', 1, 1, 1, '1', '0', '0', 3104, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1488, 'Eco Light 1', 'eco_light1', 's', 1, 1, 1, '1', '0', '0', 3098, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1489, 'Actually', 'eco_tree1', 's', 1, 1, 1, '0', '0', '0', 3093, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1490, 'Potted Cactus 2', 'eco_cactus2', 's', 1, 1, 1, '1', '0', '0', 3105, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1491, 'Talk To FRANK Brain Lamp', 'ads_frankb', 's', 1, 1, 1, '0', '0', '0', 3111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1492, 'Road Signs', 'bump_signs', 's', 1, 1, 1, '0', '0', '0', 3090, '1', '1', '1', '0', '1', 'default', 7, '0'),
(1493, 'Potted Cactus 1', 'eco_cactus1', 's', 1, 1, 1, '1', '0', '0', 3083, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1494, 'Eco Stool 2', 'eco_chair2', 's', 1, 1, 1, '0', '1', '0', 3106, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1495, 'Potted Cactus 3', 'eco_cactus3', 's', 1, 1, 1, '1', '0', '0', 3085, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1496, 'Bumper Tyres', 'bump_tires', 's', 1, 1, 0.8, '1', '0', '0', 3101, '1', '1', '1', '0', '1', 'default', 3, '0'),
(1497, 'Traffic Lights', 'bump_lights', 's', 1, 1, 1, '0', '0', '0', 3103, '1', '1', '1', '0', '1', 'default', 3, '0'),
(1498, 'Eco Lamp 3', 'eco_lamp3', 's', 1, 1, 1, '1', '0', '0', 3091, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1499, 'Eco Coffee Table 1', 'eco_table1', 's', 2, 2, 1, '1', '0', '0', 3099, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1500, 'Eco Stool 1', 'eco_chair1', 's', 1, 1, 1, '0', '1', '0', 3084, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1501, 'Eco Armchair 2', 'eco_sofa2', 's', 1, 1, 1, '0', '1', '0', 3100, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1502, 'Road', 'bump_road', 's', 2, 2, 0, '1', '0', '1', 3110, '1', '1', '1', '0', '1', 'default', 4, '0'),
(1503, 'Fruit Bowl 1', 'eco_fruits1', 's', 1, 1, 1, '1', '0', '0', 3107, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1504, 'Eco Lamp 1', 'eco_lamp1', 's', 1, 1, 1, '1', '0', '0', 3097, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1505, 'Eco Light 3', 'eco_light3', 's', 1, 1, 1, '1', '0', '0', 3108, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1506, 'Pear Tree', 'eco_tree2', 's', 1, 1, 1, '0', '0', '0', 3109, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1507, 'Totem Leg', 'totem_leg', 's', 1, 1, 1.2, '1', '0', '0', 3113, '1', '1', '1', '1', '1', 'default', 9, '0'),
(1508, 'ads_grefusa_cactus name', 'ads_grefusa_cactus', 's', 1, 1, 1, '0', '0', '0', 3112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1509, 'ads_idol_tube name', 'ads_idol_tube', 's', 1, 1, 1, '0', '0', '0', 3126, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1510, 'Executive Light', 'exe_light', 's', 1, 1, 0, '1', '0', '1', 3122, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1511, 'ads_idol_cork name', 'ads_idol_cork', 's', 3, 1, 1, '0', '0', '0', 3120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1512, 'Idea Agency Jukebox', 'ads_cl_jukeb', 's', 1, 1, 1, '0', '0', '0', 3127, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1513, 'Grass patch', 'env_grass', 's', 2, 2, 0, '1', '0', '1', 3129, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1514, 'Forest Trunk Seat', 'env_tree3', 's', 1, 1, 1, '0', '0', '0', 3125, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1515, 'Eco Hedgerow', 'env_bushes', 's', 1, 2, 1, '0', '0', '0', 3115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1516, 'Eco Hedgerows Gate', 'env_bushes_gate', 's', 1, 2, 0.001, '0', '0', '0', 3128, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1517, 'Executive Gate', 'exe_gate', 's', 1, 1, 0.001, '0', '0', '0', 3119, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1518, 'ads_idol_newsDsk name', 'ads_idol_newsDsk', 's', 2, 2, 1, '0', '0', '0', 3116, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1519, 'Forest Tree Chair', 'env_tree1', 's', 1, 1, 1, '0', '1', '0', 3117, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1520, 'Forest Tree Americana', 'env_tree2', 's', 1, 1, 1, '0', '1', '0', 3123, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1521, 'Cubist Light', 'exe_cubelight', 's', 1, 1, 1, '0', '0', '0', 3121, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1522, 'The Four Seasons Tree', 'env_tree4', 's', 2, 2, 1, '0', '0', '0', 3118, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1523, 'Sphere Lamp', 'exe_artlamp', 's', 1, 1, 1, '0', '0', '0', 3114, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1524, 'ads_idol_ichair name', 'ads_idol_ichair', 's', 1, 1, 1.4, '0', '1', '0', 3124, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1525, 'Wedding Cake', 'tray_cake', 's', 1, 1, 1, '0', '0', '0', 3133, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1526, 'ads_reebok_block2', 'ads_reebok_block2', 's', 2, 2, 0.8, '1', '0', '1', 3132, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1527, 'ads_malaco_rug_name', 'ads_malaco_rug', 's', 3, 3, 0, '0', '0', '1', 3135, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1528, 'Champagne Bucket', 'tray_champagne', 's', 1, 1, 1, '0', '0', '0', 3134, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1529, 'Champagne Tower', 'tray_glasstower', 's', 1, 1, 1, '0', '0', '0', 3130, '1', '1', '1', '1', '1', 'vendingmachine', 0, '40'),
(1530, 'ads_malaco_gu', 'ads_malaco_gu', 's', 1, 1, 1, '0', '0', '0', 3131, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1531, 'Idea Agency Super Cake', 'ads_clcake', 's', 1, 1, 1, '0', '0', '0', 3139, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1532, 'Idea Agency Sofa', 'ads_cl_sofa', 's', 2, 1, 1, '0', '1', '0', 3137, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1533, 'Function Table', 'ads_idol_tblCloth', 's', 2, 2, 1, '1', '0', '0', 3136, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1534, 'ads_idol_carpet name', 'ads_idol_carpet', 's', 2, 7, 0, '0', '0', '1', 3140, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1535, 'Function Lamp', 'ads_idol_lamp', 's', 1, 1, 0, '1', '0', '1', 3138, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1536, 'Rain Shower', 'country_rain', 's', 1, 1, 0, '1', '0', '1', 3153, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1537, 'Scarecrow', 'country_scarecrow', 's', 1, 1, 1, '0', '0', '0', 3160, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1538, 'Porta-House', 'env_telep', 's', 1, 1, 0.001, '0', '0', '0', 3161, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1539, 'Crop Field', 'country_soil', 's', 2, 2, 0, '1', '0', '1', 3145, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1540, 'Field Grass', 'country_grass', 's', 2, 2, 0, '1', '0', '1', 3162, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1541, 'The Golden Tablet', 'ads_goldtabl', 's', 1, 1, 1, '0', '0', '0', 3151, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1542, 'Witch Mushroom', 'eco_mush1', 's', 1, 1, 1, '1', '0', '0', 3142, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1543, 'Tractor', 'country_trctr', 's', 2, 2, 1, '0', '0', '0', 3147, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1544, 'Stone Wall', 'country_fnc2', 's', 2, 1, 1, '0', '0', '0', 3141, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1545, 'Stick Fence', 'country_fnc1', 's', 2, 1, 1, '0', '0', '0', 3154, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1546, 'Wishing Well', 'country_well', 's', 1, 1, 1, '0', '0', '0', 3149, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1547, 'Fairy Mushroom', 'eco_mush2', 's', 1, 1, 1, '1', '0', '0', 3155, '0', '1', '1', '1', '1', 'default', 1, '0'),
(1548, 'Rainbow', 'country_rbw', 's', 1, 1, 1, '0', '0', '0', 3143, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1549, 'Golden Wheat', 'country_wheat', 's', 2, 2, 1, '0', '0', '0', 3163, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1550, 'Farm Gate', 'country_gate', 's', 2, 1, 0.001, '0', '0', '0', 3150, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1551, 'Country Trax', 'sound_set_72', 's', 1, 1, 0.2, '1', '0', '0', 3144, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1552, 'Wooden Stage', 'country_stage', 's', 2, 2, 1, '1', '0', '1', 3148, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1553, 'ads_calip_cola_1 name', 'ads_calip_cola*1', 's', 1, 1, 1, '0', '0', '0', 3156, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1554, 'ads_calip_cola_2 name', 'ads_calip_cola*2', 's', 1, 1, 1, '0', '0', '0', 3157, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1555, 'ads_calip_cola_3 name', 'ads_calip_cola*3', 's', 1, 1, 1, '0', '0', '0', 3158, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1556, 'ads_calip_cola_4 name', 'ads_calip_cola*4', 's', 1, 1, 1, '0', '0', '0', 3159, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1557, 'Log Bench', 'country_log', 's', 2, 1, 1, '0', '1', '0', 3146, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1558, 'Stone Pile', 'country_fnc3', 's', 1, 1, 1, '0', '0', '0', 3152, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1559, 'Wooden Patio Tile', 'country_patio', 's', 1, 1, 1, '0', '0', '0', 3166, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1560, 'Country Ditch Corner', 'country_corner', 's', 1, 1, 1, '0', '0', '0', 3164, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1561, 'Country Ditch', 'country_ditch', 's', 1, 2, 0.001, '0', '0', '0', 3165, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1562, 'ads_calip_chair name', 'ads_calip_chair', 's', 1, 1, 1, '0', '1', '0', 3168, '1', '1', '1', '1', '1', 'default', 1, '0'),
(296, 'Globe trophy', 'a0 prizetrophy3_b', 's', 1, 1, 1, '0', '0', '0', 1507, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1564, 'Totem Spirit Head', 'totem_head', 's', 1, 1, 1.7, '1', '0', '0', 3167, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1565, 'ads_calip_pool name', 'ads_calip_pool', 's', 2, 2, 0, '0', '0', '1', 3182, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1566, 'laptopdesk name', 'laptopdesk', 's', 2, 2, 1, '0', '0', '0', 3173, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1567, 'Skull', 'LT_skull', 's', 1, 1, 1, '0', '0', '0', 3189, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1568, 'Large Tribal Block', 'lt_stage2', 's', 2, 2, 0.9, '0', '0', '1', 3175, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1569, 'Lava Corner', 'lt_lavac', 's', 1, 1, 1, '0', '0', '0', 3180, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1570, 'Tribal Gate', 'lt_gate', 's', 2, 1, 0.001, '0', '0', '0', 3172, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1571, 'Planet of Eternity', 'saturn', 's', 1, 1, 1, '1', '0', '0', 3181, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1572, 'ads_calip_tele name', 'ads_calip_tele', 's', 1, 1, 0.001, '0', '0', '0', 3190, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1573, 'Stone Statue', 'lt_statue', 's', 1, 1, 1, '0', '0', '0', 3185, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1574, 'Tarantula', 'lt_spider', 's', 1, 1, 1, '0', '0', '0', 3178, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1575, 'Tribal Stone Wall', 'lt_stone2', 's', 2, 1, 1, '1', '0', '0', 3177, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1576, 'Tribal Seat', 'LT_throne', 's', 1, 1, 1.5, '0', '1', '0', 3171, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1577, 'audChr name', 'audChr', 's', 1, 1, 1, '0', '1', '0', 3179, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1578, 'Moss Patch', 'lt_patch', 's', 2, 2, 0, '1', '0', '1', 3188, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1579, 'Lava Ditch', 'lt_lava', 's', 1, 2, 1, '0', '0', '0', 3176, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1580, 'Small Tribal Torch', 'LT_pillar2', 's', 1, 1, 1, '0', '0', '0', 3170, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1581, 'Ant Hill', 'lt_bughill', 's', 1, 1, 1, '0', '0', '0', 3174, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1582, 'noticeboard name', 'noticeboard', 's', 3, 1, 1, '0', '0', '0', 3186, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1583, 'clrack name', 'clrack', 's', 3, 1, 0, '1', '0', '0', 3184, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1584, 'Large Tribal Torch', 'LT_pillar', 's', 1, 1, 1, '0', '0', '0', 3187, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1585, 'ads_calip_parasol name', 'lt_stage1', 's', 1, 1, 0.9, '0', '0', '1', 3183, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1586, 'transparent_floor name', 'transparent_floor', 's', 2, 2, 0, '1', '0', '1', 3199, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1587, 'ads_calip_lava name', 'ads_calip_lava', 's', 1, 1, 1, '0', '0', '0', 3197, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1588, 'Tribal Stone Corner', 'lt_stone1', 's', 1, 1, 1, '1', '0', '0', 3196, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1589, 'ads_calip_fan', 'ads_calip_fan', 's', 1, 1, 1, '0', '0', '0', 3198, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1590, 'voting_ch name', 'voting_ch', 's', 1, 1, 1.3, '0', '1', '0', 3201, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1591, 'Quick Coffee Stop', 'ads_mall_coffeem', 's', 1, 1, 1, '0', '0', '0', 3202, '1', '1', '1', '1', '1', 'vendingmachine', 0, '41'),
(1592, 'Totem Planet', 'totem_planet', 's', 1, 1, 1, '0', '0', '0', 3200, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1593, 'Don''t worry', 'SF_reactor', 's', 1, 1, 1, '1', '0', '0', 3212, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1594, 'Pack all you want', 'SF_crate_2', 's', 2, 1, 1, '1', '0', '0', 3204, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1595, 'Space Crew Chair', 'SF_chair_blue', 's', 1, 1, 1.2, '0', '1', '0', 3207, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1596, 'Cryogenic Bed', 'sf_pod', 's', 1, 3, 1.36, '0', '0', '0', 3219, '1', '1', '1', '1', '1', 'bed', 2, '0'),
(1597, 'Command Console', 'SF_panel1', 's', 1, 1, 1, '0', '0', '0', 3217, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1598, 'Starship Table', 'SF_table', 's', 2, 2, 1, '1', '0', '0', 3220, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1599, 'Welcome aboard', 'SF_chair_green', 's', 1, 1, 1.2, '0', '1', '0', 3215, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1600, 'Small Crate', 'SF_crate_1', 's', 1, 1, 1, '1', '0', '0', 3205, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1601, 'Alien Lifeform', 'SF_alien', 's', 1, 1, 1, '0', '0', '0', 3210, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1602, 'Engineering Console', 'SF_panel2', 's', 2, 1, 1, '0', '0', '0', 3218, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1603, 'Display Gate', 'sf_gate', 's', 2, 1, 0.001, '0', '0', '0', 3221, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1604, 'Navigation Panel', 'SF_panel3', 's', 1, 1, 1, '0', '0', '0', 3208, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1605, 'Starship Floor 2', 'SF_floor_2', 's', 2, 2, 0, '1', '0', '1', 3211, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1606, 'Sci Fi Lamp', 'SF_lamp', 's', 1, 1, 1, '0', '0', '0', 3224, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1607, 'Captain''s Chair', 'SF_chair_red', 's', 1, 1, 1.2, '0', '1', '0', 3223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1608, 'Transparent Floor', 'sf_floor', 's', 2, 4, 0, '1', '0', '1', 3213, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1609, 'Starship Roof', 'sf_roof', 's', 2, 4, 0, '1', '0', '1', 3203, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1610, 'Light Pole', 'sf_stick', 's', 1, 1, 1, '0', '0', '0', 3206, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1611, 'Starship Floor 1', 'SF_floor_1', 's', 2, 2, 0, '1', '0', '1', 3222, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1612, ' sweets', 'ads_mall_kiosk', 's', 1, 2, 1, '0', '0', '0', 3216, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1613, 'Futuristic Teleport', 'sf_tele', 's', 1, 1, 0.001, '0', '0', '0', 3214, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1614, 'Sci Fi Roller', 'sf_roller', 's', 1, 1, 0.5, '1', '0', '1', 3209, '1', '1', '1', '1', '1', 'roller', 0, '0'),
(297, 'Fish trophy', 'a0 prizetrophy4_b', 's', 1, 1, 1, '0', '0', '0', 1508, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1616, 'Pink Inflatable Raft', 'summer_raft1', 's', 1, 1, 1, '0', '1', '0', 3228, '1', '1', '1', '1', '1', 'default', 1, '0'),
(295, 'Duck trophy', 'a0 prizetrophy2_b', 's', 1, 1, 1, '0', '0', '0', 1506, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(1618, 'Blue Inflatable Raft', 'summer_raft2', 's', 1, 1, 1, '0', '1', '0', 3227, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1619, 'ads_elisa_gnome name', 'ads_elisa_gnome', 's', 1, 1, 1, '0', '0', '0', 3226, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1620, 'Summer Cool Box', 'summer_icebox', 's', 1, 1, 1, '0', '0', '0', 3231, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1621, 'ads_oc_soda', 'ads_oc_soda', 's', 1, 1, 1, '0', '0', '0', 3230, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1622, 'Mars Patch', 'marsrug', 's', 2, 2, 0, '1', '0', '1', 3232, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1623, 'White Candle', 'rela_candle1', 's', 1, 1, 1, '0', '0', '0', 3238, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20066, 'Dead Tree', 'tree2', 's', 1, 1, 1, '0', '0', '0', 2104, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1625, 'Red Candles', 'rela_candles2', 's', 1, 1, 1, '0', '0', '0', 3245, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1626, 'Stones', 'rela_stone', 's', 1, 1, 0.5, '0', '0', '1', 3233, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1627, 'Wicker Chair', 'rela_hchair', 's', 1, 1, 1.3, '0', '1', '0', 3247, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1628, 'Red Candle', 'rela_candle2', 's', 1, 1, 1, '0', '0', '0', 3244, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1629, 'ads_711', 'ads_711*5', 's', 1, 1, 1, '0', '0', '0', 3241, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1630, 'ads_711', 'ads_711*6', 's', 1, 1, 1, '0', '0', '0', 3242, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1631, 'ads_711', 'ads_711*7', 's', 1, 1, 1, '0', '0', '0', 3243, '1', '1', '1', '1', '1', 'vendingmachine', 0, '19'),
(1632, 'Purple Candle', 'rela_candle3', 's', 1, 1, 1, '0', '0', '0', 3235, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1633, 'Asteroid', 'pix_asteroid', 's', 1, 1, 1, '1', '0', '0', 3237, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1634, 'Bushy Houseplant', 'rela_plant', 's', 1, 1, 1, '0', '0', '0', 3246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1635, 'White Candles', 'rela_candles1', 's', 1, 1, 1, '0', '0', '0', 3234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1636, 'Purple Candles', 'rela_candles3', 's', 1, 1, 1, '0', '0', '0', 3236, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1637, 'Orchid', 'rela_orchid', 's', 1, 1, 1, '0', '0', '0', 3239, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1638, 'Rocks', 'rela_rock', 's', 1, 1, 0.8, '0', '1', '0', 3248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1639, 'ktchn_stove name', 'ktchn_stove', 's', 2, 1, 1, '1', '0', '0', 3256, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1640, 'ktchn_light name', 'ktchn_light', 's', 2, 1, 0, '1', '0', '1', 3258, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1641, 'ktchn_plates name', 'ktchn_plates', 's', 1, 1, 1, '0', '0', '0', 3263, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1642, 'ktchn_countr_1 name', 'ktchn_countr_1', 's', 1, 1, 1, '1', '0', '0', 3261, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1643, 'ktchn_pots name', 'ktchn_pots', 's', 2, 1, 0, '1', '0', '1', 3252, '1', '1', '1', '1', '1', 'default', 10, '0'),
(1644, 'ktchn_cornr name', 'ktchn_cornr', 's', 1, 1, 1, '0', '0', '0', 3257, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1645, 'ktchn_desk name', 'ktchn_desk', 's', 2, 1, 1, '1', '0', '0', 3260, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1646, 'ktchn_trash name', 'ktchn_trash', 's', 1, 1, 1, '0', '0', '0', 3264, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1647, 'ktchn_countr_2 name', 'ktchn_countr_2', 's', 2, 1, 1, '1', '0', '0', 3253, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1648, 'ktchn_bBlock name', 'ktchn_bBlock', 's', 1, 1, 1, '0', '0', '0', 3255, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1649, 'ktchn_dvdr name', 'ktchn_dvdr', 's', 2, 1, 1, '0', '0', '0', 3259, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1650, 'ktchn_inspctr name', 'ktchn_inspctr', 's', 1, 1, 1, '1', '0', '0', 3250, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1651, 'ktchn_fridge name', 'ktchn_fridge', 's', 1, 1, 1, '1', '0', '0', 3249, '1', '1', '1', '1', '1', 'vendingmachine', 0, '3,36,37,38'),
(1652, 'ads_1800tele', 'ads_1800tele', 's', 1, 1, 0.001, '0', '0', '0', 3251, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(1653, 'ktchn_sink name', 'ktchn_sink', 's', 2, 1, 1, '0', '0', '0', 3262, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1654, 'ktchn_gate name', 'ktchn_gate', 's', 2, 1, 0.001, '0', '0', '0', 3254, '1', '1', '1', '1', '1', 'gate', 2, '0'),
(1655, 'Pad of stickies', 'post.it', 'i', 0, 0, 1, '0', '0', '0', 1, '0', '0', '1', '0', '1', 'postit', 1, '0'),
(1656, 'Heart Stickies', 'post.it.vd', 'i', 0, 0, 1, '0', '0', '0', 2, '0', '0', '1', '0', '1', 'postit', 1, '0'),
(20067, 'Green Hatch', 'divider_poly3*7', 's', 1, 1, 0.001, '0', '0', '0', 1930, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(20068, 'Idea Agency Lava Lamp', 'ads_cllava2', 's', 1, 1, 1, '0', '0', '0', 3021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1665, 'Gothic Ectoplasm Fountain', 'gothicfountain', 'i', 0, 0, 1, '0', '0', '0', 4002, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1666, 'Retro Wall Lamp', 'hc_wall_lamp', 'i', 0, 0, 1, '0', '0', '0', 4003, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1667, 'Industrial Turbine', 'industrialfan', 'i', 0, 0, 1, '0', '0', '0', 4004, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1668, 'Gothic Torch', 'torch', 'i', 0, 0, 1, '0', '0', '0', 4005, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1669, 'Heart Light', 'val_heart', 'i', 0, 0, 1, '0', '0', '0', 4006, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1670, 'Mirror', 'wallmirror', 'i', 0, 0, 1, '0', '0', '0', 4007, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1671, 'Ninja Stars', 'jp_ninjastars', 'i', 0, 0, 1, '0', '0', '0', 4008, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1672, 'Habbowood Mirror', 'habw_mirror', 'i', 0, 0, 1, '0', '0', '0', 4009, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1673, 'So you gotta ask yourself', 'habbowheel', 'i', 0, 0, 1, '0', '0', '0', 4010, '1', '1', '1', '1', '1', 'habbowheel', 1, '0'),
(1674, 'Skull Guitar', 'guitar_skull', 'i', 0, 0, 1, '0', '0', '0', 4011, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1675, 'V Guitar', 'guitar_v', 'i', 0, 0, 1, '0', '0', '0', 4012, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1676, 'Christmas Lights', 'xmas_light', 'i', 0, 0, 1, '0', '0', '0', 4015, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1677, 'Anchor', 'hrella_poster_3', 'i', 0, 0, 1, '0', '0', '0', 4016, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1678, 'Life Buoy', 'hrella_poster_2', 'i', 0, 0, 1, '0', '0', '0', 4013, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1679, 'Porthole', 'hrella_poster_1', 'i', 0, 0, 1, '0', '0', '0', 4014, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1680, 'Swords', 'sw_swords', 'i', 0, 0, 1, '0', '0', '0', 4017, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1681, 'Mysterious Necklace', 'sw_stone', 'i', 0, 0, 1, '0', '0', '0', 4018, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1682, 'Ventilation Duct', 'sw_hole', 'i', 0, 0, 1, '0', '0', '0', 4019, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1683, 'Mood Light', 'roomdimmer', 'i', 0, 0, 1, '0', '0', '0', 4027, '1', '1', '1', '1', '1', 'dimmer', 1, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(1684, 'Bubble Juice Can', 'md_logo_wall', 'i', 0, 0, 1, '0', '0', '0', 4023, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1685, 'Kakejiku Hokusai', 'jp_sheet3', 'i', 0, 0, 1, '0', '0', '0', 4021, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1686, 'Kakejiku Ninjya', 'jp_sheet2', 'i', 0, 0, 1, '0', '0', '0', 4026, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1687, 'Kakejiku Ziritsu', 'jp_sheet1', 'i', 0, 0, 1, '0', '0', '0', 4024, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1688, 'Ancestral Scimitars', 'arabian_swords', 'i', 0, 0, 1, '0', '0', '0', 4020, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1689, 'Arabian Window Frame', 'arabian_wndw', 'i', 0, 0, 1, '0', '0', '0', 4022, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1690, 'Jungle Wallplant', 'tiki_wallplnt', 'i', 0, 0, 1, '0', '0', '0', 4030, '0', '0', '1', '1', '1', 'default', 1, '0'),
(1691, 'Surfboard', 'tiki_surfboard', 'i', 0, 0, 1, '0', '0', '0', 4028, '1', '1', '1', '1', '1', 'default', 9, '0'),
(1692, 'tampax_wall', 'tampax_wall', 'i', 0, 0, 1, '0', '0', '0', 4029, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1693, 'Single Window', 'window_single_default', 'i', 0, 0, 1, '0', '0', '0', 4031, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1694, 'Double Window', 'window_double_default', 'i', 0, 0, 1, '0', '0', '0', 4032, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1695, 'Window', 'noob_window_double', 'i', 0, 0, 1, '0', '0', '0', 4033, '0', '0', '1', '0', '1', 'default', 1, '0'),
(1696, 'Bay Window', 'window_triple', 'i', 0, 0, 1, '0', '0', '0', 4045, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1697, 'Glass Square Window', 'window_square', 'i', 0, 0, 1, '0', '0', '0', 4036, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1698, 'Large Romantic Window', 'window_romantic_wide', 'i', 0, 0, 1, '0', '0', '0', 4041, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1699, 'Small Romantic Window', 'window_romantic_narrow', 'i', 0, 0, 1, '0', '0', '0', 4037, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1700, 'Grunge Window', 'window_grunge', 'i', 0, 0, 1, '0', '0', '0', 4044, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1701, 'Golden Window', 'window_golden', 'i', 0, 0, 1, '0', '0', '0', 4035, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1702, 'Large Oriental Window', 'window_chinese_wide', 'i', 0, 0, 1, '0', '0', '0', 4034, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1703, 'Small Oriental Window', 'window_chinese_narrow', 'i', 0, 0, 1, '0', '0', '0', 4038, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1704, 'Basic Window', 'window_basic', 'i', 0, 0, 1, '0', '0', '0', 4042, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1705, 'Large 70s Window', 'window_70s_wide', 'i', 0, 0, 1, '0', '0', '0', 4039, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1706, 'Small 70s Window', 'window_70s_narrow', 'i', 0, 0, 1, '0', '0', '0', 4040, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1707, 'Sunny Delight', 'ads_sunnyd', 'i', 0, 0, 1, '0', '0', '0', 4043, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1708, 'Good grub', 'window_diner2', 'i', 0, 0, 1, '0', '0', '0', 4046, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1709, 'Large Diner Window', 'window_diner', 'i', 0, 0, 1, '0', '0', '0', 4049, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1710, 'Diner Side Table', 'diner_walltable', 'i', 0, 0, 1, '0', '0', '0', 4048, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1711, 'ads_dave_wall', 'ads_dave_wall', 'i', 0, 0, 1, '0', '0', '0', 4047, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1712, 'Window', 'window_hole', 'i', 0, 0, 1, '0', '0', '0', 4052, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1713, 'easy_poster', 'easy_poster', 'i', 0, 0, 1, '0', '0', '0', 4051, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1714, 'ads_nokia_logo name', 'ads_nokia_logo', 'i', 0, 0, 1, '0', '0', '0', 4050, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1715, 'ads_nokia_phone name', 'ads_nokia_phone', 'i', 0, 0, 1, '0', '0', '0', 4053, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1717, 'Skyscraper Window', 'window_skyscraper', 'i', 0, 0, 1, '0', '0', '0', 4054, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1718, 'netari_poster', 'netari_poster', 'i', 0, 0, 1, '0', '0', '0', 4057, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1719, 'Bullet Hole', 'det_bhole', 'i', 0, 0, 1, '0', '0', '0', 4056, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1720, 'Red V Guitar', 'ads_campguitar', 'i', 0, 0, 1, '0', '0', '0', 4058, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1721, 'Nuclear Radiation Sign', 'hween08_rad', 'i', 0, 0, 1, '0', '0', '0', 4059, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1722, 'Broken Window (small)', 'hween08_wndwb', 'i', 0, 0, 1, '0', '0', '0', 4061, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1723, 'Broken Window (large)', 'hween08_wndw', 'i', 0, 0, 1, '0', '0', '0', 4062, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1724, 'Biohazard Sign', 'hween08_bio', 'i', 0, 0, 1, '0', '0', '0', 4063, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1725, 'X-Ray Light Box', 'hw_08_xray', 'i', 0, 0, 1, '0', '0', '0', 4060, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1726, 'Red Gothic Fountain', 'gothicfountain2', 'i', 0, 0, 1, '0', '0', '0', 4065, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20052, 'Volturi Crest', 'ads_twi_crest', 'i', 0, 0, 1, '1', '0', '0', 4275, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1728, 'TBD Central Musical TV', 'ads_cmusic', 'i', 0, 0, 1, '0', '0', '0', 4067, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1729, 'Stand up or sitting down', 'party_wc_boy', 'i', 0, 0, 1, '0', '0', '0', 4070, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1730, 'Big Wall Lights', 'party_led', 'i', 0, 0, 1, '0', '0', '0', 4066, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1731, 'Neon Heart Light', 'party_neon5', 'i', 0, 0, 1, '0', '0', '0', 4074, '1', '1', '1', '1', '1', 'default', 5, '0'),
(1732, 'Neon Right Arrows', 'party_neon1', 'i', 0, 0, 1, '0', '0', '0', 4069, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1733, 'Neon Left Arrows', 'party_neon2', 'i', 0, 0, 1, '0', '0', '0', 4073, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1734, 'Girls Toilets', 'party_wc_girl', 'i', 0, 0, 1, '0', '0', '0', 4068, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1735, 'Neon Pink Flamingo', 'party_neon3', 'i', 0, 0, 1, '0', '0', '0', 4075, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1736, 'Bar Shelf', 'party_shelf', 'i', 0, 0, 1, '0', '0', '0', 4071, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1737, 'Neon Skull Light', 'party_neon4', 'i', 0, 0, 1, '0', '0', '0', 4072, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1738, 'Snowy Posters', 'xmas08_wallpaper', 'i', 0, 0, 1, '0', '0', '0', 4077, '0', '0', '1', '1', '1', 'roomeffect', 1, '0'),
(1739, 'Icy Wall', 'xmas08_icewall', 'i', 0, 0, 1, '0', '0', '0', 4076, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1741, 'Idea Agency Plasma 1', 'ads_clwall1', 'i', 0, 0, 1, '0', '0', '0', 4082, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1742, 'Idea Agency Plasma 2', 'ads_clwall2', 'i', 0, 0, 1, '0', '0', '0', 4078, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1743, 'Idea Agency Plasma 3', 'ads_clwall3', 'i', 0, 0, 1, '0', '0', '0', 4079, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1744, 'ads_ob_wall', 'ads_ob_wall', 'i', 0, 0, 1, '0', '0', '0', 4081, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1745, 'Mall Window', 'ads_mall_window', 'i', 0, 0, 1, '0', '0', '0', 4083, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1746, 'Dragon Poster', 'china_pstr2', 'i', 0, 0, 1, '0', '0', '0', 4085, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1747, 'Chinese Wall Lamp', 'china_light', 'i', 0, 0, 1, '0', '0', '0', 4086, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1748, 'Ox Poster', 'china_pstr1', 'i', 0, 0, 1, '0', '0', '0', 4084, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1749, 'Bolly Window', 'bolly_wdw_wd', 'i', 0, 0, 1, '0', '0', '0', 4087, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1750, 'Monster Plan Poster', 'ads_igor_wall', 'i', 0, 0, 1, '0', '0', '0', 4090, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1751, 'Evil Bone', 'ads_igorevilb', 'i', 0, 0, 1, '0', '0', '0', 4089, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1752, 'ads_idol_wall name', 'ads_idol_wall', 'i', 0, 0, 1, '0', '0', '0', 4088, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1753, 'Mall Furni Showroom', 'ads_mall_winfur', 'i', 0, 0, 1, '0', '0', '0', 4092, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1754, 'Mall Pet Shop Window', 'ads_mall_winpet', 'i', 0, 0, 1, '0', '0', '0', 4091, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1755, 'Rock Wall', 'lc_wall1', 'i', 0, 0, 1, '0', '0', '0', 4095, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1756, 'Aquarium Window', 'lc_window2', 'i', 0, 0, 1, '0', '0', '0', 4096, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1757, 'Wooden Window', 'lc_window1', 'i', 0, 0, 1, '0', '0', '0', 4094, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1758, 'American Idol TV', 'ads_idol_tv', 'i', 0, 0, 1, '0', '0', '0', 4093, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1759, 'Coral Wall', 'lc_wall2', 'i', 0, 0, 1, '0', '0', '0', 4097, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1760, 'ads_idol_mirror name', 'ads_idol_mirror', 'i', 0, 0, 1, '0', '0', '0', 4099, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1761, 'Mall Cinema Window', 'ads_mall_wincin', 'i', 0, 0, 1, '0', '0', '0', 4098, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1762, 'Strum', 'ads_mall_winmus', 'i', 0, 0, 1, '0', '0', '0', 4101, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1763, 'Mall Beauty Salon', 'ads_mall_winbea', 'i', 0, 0, 1, '0', '0', '0', 4100, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1764, 'Eco Curtain 1', 'eco_curtains1', 'i', 0, 0, 1, '0', '0', '0', 4105, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1765, 'Mall Idea Agency Window', 'ads_mall_winchi', 'i', 0, 0, 1, '0', '0', '0', 4103, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1766, 'Eco Curtain 3', 'eco_curtains3', 'i', 0, 0, 1, '0', '0', '0', 4104, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1767, 'Eco Curtain 2', 'eco_curtains2', 'i', 0, 0, 1, '0', '0', '0', 4102, '0', '1', '1', '1', '1', 'default', 2, '0'),
(1768, 'Mall Ice Cream Parlour Window', 'ads_mall_winice', 'i', 0, 0, 1, '0', '0', '0', 4109, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1769, 'Whatever your sporting dibble', 'ads_mall_winspo', 'i', 0, 0, 1, '0', '0', '0', 4106, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1770, 'ads_idol_logo name', 'ads_idol_logo', 'i', 0, 0, 1, '0', '0', '0', 4108, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1771, 'World Map', 'exe_map', 'i', 0, 0, 1, '0', '0', '0', 4110, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1772, 'Wall Fall', 'exe_wfall', 'i', 0, 0, 1, '0', '0', '0', 4107, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1773, 'ads_lin_wh_c name', 'ads_lin_wh_c', 'i', 0, 0, 1, '0', '0', '0', 4115, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1774, 'ads_malaco_tv name', 'ads_malaco_tv', 'i', 0, 0, 1, '0', '0', '0', 4113, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1775, 'ads_puffet_tv name', 'ads_puffet_tv', 'i', 0, 0, 1, '0', '0', '0', 4111, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1776, 'ads_reebok_tv name', 'ads_reebok_tv', 'i', 0, 0, 1, '0', '0', '0', 4112, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1777, 'Forest Wall Poster', 'country_forestwall', 'i', 0, 0, 1, '0', '0', '0', 4114, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1778, 'Marble Fireplace', 'country_fp', 'i', 0, 0, 1, '0', '0', '0', 4117, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1779, 'Farmhouse Wall', 'country_wall', 'i', 0, 0, 1, '0', '0', '0', 4118, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1780, 'Ye Olde Lantern', 'country_lantern', 'i', 0, 0, 1, '0', '0', '0', 4116, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1781, 'Norwegian Flag', 'flag_norway', 'i', 0, 0, 1, '0', '0', '0', 4119, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1782, 'Diner Poster', 'diner_poster', 'i', 0, 0, 1, '0', '0', '0', 4120, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1783, '', 'lt_jngl_wall', 'i', 0, 0, 1, '0', '0', '0', 4121, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1784, 'ads_mirror name', 'ads_mirror', 'i', 0, 0, 1, '0', '0', '0', 4122, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1785, 'lt_wall', 'lt_wall', 'i', 0, 0, 1, '0', '0', '0', 4123, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1787, 'Starship Window', 'sf_window', 'i', 0, 0, 1, '0', '0', '0', 4224, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1788, 'Starship Wall', 'sf_wall2', 'i', 0, 0, 1, '0', '0', '0', 4228, '1', '1', '1', '1', '1', 'default', 3, '0'),
(1789, 'ads_wwe_poster name', 'ads_wwe_poster', 'i', 0, 0, 1, '0', '0', '0', 4226, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1790, 'Fly me to the moon', 'ads_mall_wintra', 'i', 0, 0, 1, '0', '0', '0', 4225, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1791, 'Starship Corner', 'sf_wall3', 'i', 0, 0, 1, '0', '0', '0', 4223, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1793, 'ads_veet name', 'ads_veet', 'i', 0, 0, 1, '0', '0', '0', 4222, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1794, 'Wall Tiles', 'rela_wall', 'i', 0, 0, 1, '0', '0', '0', 4232, '1', '1', '1', '1', '1', 'default', 6, '0'),
(1795, 'flag_belgium', 'flag_belgium', 'i', 0, 0, 1, '0', '0', '0', 4229, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1796, 'flag_portugal', 'flag_portugal', 'i', 0, 0, 1, '0', '0', '0', 4231, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1797, 'Garnier mall shop', 'Garnier mall shop', 'i', 0, 0, 1, '0', '0', '0', 4230, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1798, 'ktchn_wall name', 'ktchn_wall', 'i', 0, 0, 1, '0', '0', '0', 4235, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1799, 'Clotheshop window', 'Clotheshop window', 'i', 0, 0, 1, '0', '0', '0', 4236, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1800, 'ktchn_oven name', 'ktchn_oven', 'i', 0, 0, 1, '0', '0', '0', 4234, '1', '1', '1', '1', '1', 'default', 2, '0'),
(1801, 'ktchn_knives name', 'ktchn_knives', 'i', 0, 0, 1, '0', '0', '0', 4233, '1', '1', '1', '1', '1', 'default', 4, '0'),
(1802, 'Mood Controller (Large)', 'dimmer_fuse6', 'i', 0, 0, 1, '0', '0', '0', 4240, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1803, 'Mood Switch (Large)', 'dimmer_swtch', 'i', 0, 0, 1, '0', '0', '0', 4237, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1804, 'Mood Controller (Small)', 'dimmer_fuse2', 'i', 0, 0, 1, '0', '0', '0', 4239, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(1805, 'Mood Switch (Small)', 'dimmer_buttn', 'i', 0, 0, 1, '0', '0', '0', 4238, '1', '1', '1', '1', '1', 'dimmer', 1, '0'),
(19877, '', 'avatar_effect9', 'e', 1, 1, 1, '0', '0', '0', 9, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19878, '', 'avatar_effect6', 'e', 1, 1, 1, '0', '0', '0', 6, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19879, '', 'avatar_effect16', 'e', 1, 1, 1, '0', '0', '0', 16, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19880, '', 'avatar_effect2', 'e', 1, 1, 1, '0', '0', '0', 2, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19881, '', 'avatar_effect14', 'e', 1, 1, 1, '0', '0', '0', 14, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19882, '', 'avatar_effect15', 'e', 1, 1, 1, '0', '0', '0', 15, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19883, '', 'avatar_effect3', 'e', 1, 1, 1, '0', '0', '0', 3, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19884, '', 'avatar_effect17', 'e', 1, 1, 1, '0', '0', '0', 17, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19885, '', 'avatar_effect18', 'e', 1, 1, 1, '0', '0', '0', 18, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19886, '', 'avatar_effect1', 'e', 1, 1, 1, '0', '0', '0', 1, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19887, '', 'avatar_effect4', 'e', 1, 1, 1, '0', '0', '0', 4, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19888, '', 'avatar_effect5', 'e', 1, 1, 1, '0', '0', '0', 5, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19889, '', 'avatar_effect7', 'e', 1, 1, 1, '0', '0', '0', 7, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19890, '', 'avatar_effect8', 'e', 1, 1, 1, '0', '0', '0', 8, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19891, '', 'avatar_effect10', 'e', 1, 1, 1, '0', '0', '0', 10, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19892, '', 'avatar_effect12', 'e', 1, 1, 1, '0', '0', '0', 12, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19893, '', 'avatar_effect13', 'e', 1, 1, 1, '0', '0', '0', 13, '0', '0', '1', '0', '0', 'default', 1, '0'),
(19894, '', 'a2 l', 'i', 1, 1, 1, '0', '0', '0', 3002, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19895, '', 'a2 t', 'i', 1, 1, 1, '0', '0', '0', 3001, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19896, '', 'wallpaper 1', 'i', 1, 1, 1, '0', '0', '0', 3001, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19926, '', 'landscape 10', 'i', 1, 1, 1, '0', '0', '0', 4055, '0', '0', '1', '1', '0', 'roomeffect', 1, '0'),
(19938, '', 'hween09_floor', 's', 2, 2, 0, '1', '0', '1', 3288, '0', '0', '1', '1', '1', 'default', 1, '0'),
(19939, '', 'hween09_jar', 's', 1, 1, 1, '0', '0', '0', 3287, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19940, 'City Bench (Clean)', 'urban_bench_plain', 's', 2, 1, 1, '0', '1', '0', 3284, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19941, '', 'hween09_organ', 's', 2, 1, 1, '0', '0', '0', 3282, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19942, '', 'byesw_hand', 's', 1, 1, 1.35, '0', '0', '0', 3291, '0', '1', '1', '1', '1', '', 1, '0'),
(19943, '', 'byesw_hotel', 's', 1, 1, 1, '0', '0', '0', 3289, '0', '1', '1', '1', '1', 'default', 6, '0'),
(19944, '', 'hween09_table', 's', 1, 3, 1, '0', '0', '0', 3286, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19945, '', 'hween09_chair', 's', 1, 1, 1, '0', '1', '0', 3295, '0', '0', '1', '1', '1', 'default', 1, '0'),
(19946, '', 'hween09_mirror', 's', 1, 1, 1, '0', '1', '0', 3293, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19947, 'Trap Door', 'hween09_hatch', 's', 2, 2, 0.001, '0', '0', '1', 3285, '0', '0', '1', '1', '1', 'gate', 2, '0'),
(19948, '', 'hween09_ghost', 's', 1, 1, 1, '0', '0', '0', 3290, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19949, '', 'hween09_tv', 's', 2, 1, 1, '0', '0', '0', 3292, '0', '0', '1', '1', '1', 'default', 3, '0'),
(19950, '', 'hween09_chandelier', 's', 1, 1, 1, '0', '0', '1', 3294, '0', '0', '1', '1', '1', 'default', 3, '0'),
(19951, '', 'hween09_crnr1', 'i', 0, 0, 1, '0', '0', '0', 4247, '0', '0', '1', '1', '1', 'default', 4, '0'),
(19952, '', 'hween09_paint', 'i', 0, 0, 1, '0', '0', '0', 4263, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19953, '', 'hween09_treewall', 'i', 0, 0, 1, '0', '0', '0', 4269, '0', '0', '1', '1', '1', 'default', 2, '0'),
(19954, '', 'hween09_wall1', 'i', 0, 0, 1, '0', '0', '0', 4257, '0', '0', '1', '1', '1', 'default', 4, '0'),
(19955, '', 'hween09_stonewall', 'i', 0, 0, 1, '0', '0', '0', 4259, '0', '0', '1', '1', '1', 'default', 5, '0'),
(19956, '', 'hween09_win', 'i', 0, 0, 1, '0', '0', '0', 4271, '0', '0', '1', '1', '1', 'default', 10, '0'),
(19957, '', 'avatar_effect22', 'e', 1, 1, 1, '0', '0', '0', 22, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19958, '', 'avatar_effect19', 'e', 1, 1, 1, '0', '0', '0', 19, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19959, '', 'avatar_effect20', 'e', 1, 1, 1, '0', '0', '0', 20, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19960, '', 'avatar_effect21', 'e', 1, 1, 1, '0', '0', '0', 21, '0', '0', '1', '0', '1', 'default', 1, '0'),
(19989, 'Snowman Base', 'xm09_man_a', 's', 1, 1, 1, '1', '0', '0', 3330, '1', '1', '1', '1', '1', 'default', 5, '0'),
(19971, 'Snowman Middle', 'xm09_man_b', 's', 1, 1, 0.8, '1', '0', '0', 3328, '1', '1', '1', '1', '1', 'default', 9, '0'),
(19972, 'Snowman Head', 'xm09_man_c', 's', 1, 1, 1, '0', '0', '0', 3329, '1', '1', '1', '1', '1', 'default', 8, '0'),
(19973, 'Christmas Table', 'xm09_table', 's', 2, 6, 1, '1', '0', '0', 3335, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19974, '6-Seater Bench', 'xm09_bench', 's', 6, 1, 1, '0', '1', '0', 3340, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19976, 'Snowy Fir Trees', 'xm09_firwall', 'i', 0, 0, 1, '0', '0', '0', 4307, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19977, 'Snowy Forest', 'xm09_forestwall', 'i', 0, 0, 1, '0', '0', '0', 4308, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19978, 'Lodge Wall', 'xm09_lodgewall', 'i', 0, 0, 1, '1', '0', '0', 4311, '0', '1', '1', '1', '1', 'default', 8, '0'),
(19979, 'Gold Heart Bauble', 'xm09_bauble_25', 'i', 0, 0, 1, '1', '0', '0', 4286, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19980, 'Silver Heart Bauble', 'xm09_bauble_26', 'i', 0, 0, 1, '1', '0', '0', 4306, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19981, 'Pink Heart Bauble', 'xm09_bauble_27', 'i', 0, 0, 1, '1', '0', '0', 4279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19982, 'Pink Heart Bauble', 'xm09_bauble_27', 'i', 0, 0, 1, '1', '0', '0', 4313, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19983, 'Blue Heart Bauble', 'xm09_bauble_23', 'i', 0, 0, 1, '1', '0', '0', 4292, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19984, 'Green Heart Bauble', 'xm09_bauble_24', 'i', 0, 0, 1, '1', '0', '0', 4278, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19985, 'Candy Cane', 'xm09_candyCane', 's', 1, 1, 1, '0', '0', '0', 3314, '1', '1', '1', '1', '1', 'default', 4, '0'),
(19986, 'Big Stocking', 'xm09_stocking', 'i', 0, 0, 1, '1', '0', '0', 4280, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19994, 'Fountain', 'ads_twi_fountn', 's', 2, 2, 1, '0', '0', '0', 3301, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19995, 'Clock Tower wall', 'ads_twi_dvdr2', 's', 2, 1, 1, '0', '0', '0', 3302, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19996, 'Standing Rose Bouquet', 'ads_twi_roses', 's', 1, 1, 1, '0', '0', '0', 3304, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19997, 'Cake on Table with Presents', 'ads_twi_table', 's', 2, 2, 1, '0', '0', '0', 3297, '1', '1', '1', '1', '1', 'default', 2, '0'),
(19998, 'Volturi Royal Chair', 'ads_twi_chair', 's', 1, 1, 1, '0', '1', '0', 3300, '1', '1', '1', '1', '1', 'default', 1, '0'),
(19999, 'Half wall', 'ads_twi_dvdr1', 's', 2, 1, 1, '0', '0', '0', 3303, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20000, 'Broken Piano', 'ads_twi_piano', 's', 2, 2, 1, '0', '0', '0', 3299, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20001, 'ads_twi_tower name', 'ads_twi_tower', 's', 1, 1, 1, '0', '0', '0', 3298, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20002, 'Toolbox', 'ads_twi_toolbx', 's', 1, 1, 1, '0', '0', '0', 3296, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20003, 'Mist', 'ads_twi_mist', 's', 1, 1, 0, '1', '0', '1', 3308, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20011, 'Water Hydrant', 'urban_wpost', 's', 1, 1, 1, '0', '0', '0', 3272, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20010, 'Pavement Slab', 'urban_sidewalk', 's', 2, 2, 0.2, '1', '0', '1', 3274, '1', '1', '1', '1', '1', 'default', 4, '0'),
(20008, 'City Bench (Dirty)', 'urban_bench', 's', 2, 1, 1, '0', '1', '0', 3269, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20007, 'Taxi Sofa', 'urban_carsofa', 's', 2, 1, 1, '0', '1', '0', 3268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20014, 'Concrete Block', 'urban_blocker', 's', 1, 1, 1, '0', '0', '0', 3270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20013, 'Garbage Bin', 'urban_bin', 's', 1, 1, 1, '0', '0', '0', 3266, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20012, 'Mesh Fencing', 'urban_fence', 's', 1, 2, 1, '0', '0', '0', 3267, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20015, 'Basketball Pole', 'urban_bsktbll', 's', 1, 1, 1, '0', '0', '0', 3271, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20025, 'Terracotta Pillar', 'pillar*6', 's', 1, 1, 1, '0', '0', '0', 1609, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20026, 'Urban Iced Bookcase', 'shelves_norja*4', 's', 1, 1, 1, '0', '0', '0', 1795, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20027, 'Black Mode Double Bed', 'bed_polyfon*2', 's', 2, 3, 1.8, '0', '0', '0', 1895, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20028, 'Blue Iced Angle', 'divider_nor5*6', 's', 1, 1, 1, '0', '0', '0', 1995, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20029, 'Valentine''s Cauldron', 'val_cauldron', 's', 1, 1, 1, '0', '0', '0', 2103, '1', '1', '1', '1', '1', 'vendingmachine', 0, '25'),
(20030, 'Aqua Pura Module 5', 'pura_mdl5*1', 's', 1, 1, 1, '0', '1', '0', 2509, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20031, 'Aqua One Way Gate', 'one_way_door*1', 's', 1, 1, 0.001, '0', '0', '0', 2597, '1', '1', '1', '1', '1', 'onewaygate', 2, '0'),
(20032, 'Power Globe', 'exe_globe', 's', 1, 1, 1, '0', '0', '0', 2672, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20034, 'Latte Diner Corner', 'diner_bardesk_corner*5', 's', 1, 1, 1, '1', '0', '0', 2874, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20035, 'Bubbles', 'fx_bubble', 's', 1, 1, 1, '1', '0', '0', 3012, '0', '0', '1', '0', '1', 'rentals', 2, '0'),
(20036, 'Safety Cone', 'bump_tottero', 's', 1, 1, 1, '0', '0', '0', 3087, '1', '1', '1', '0', '1', 'default', 1, '0'),
(20037, 'ads_calip_parasol name', 'ads_calip_parasol', 's', 1, 1, 1, '0', '0', '0', 3195, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20041, '2010 Poster', 'year2010', 'i', 0, 0, 1, '1', '0', '0', 4313, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20042, 'Party Lantern', 'party_lantern', 's', 1, 1, 0, '1', '0', '1', 3327, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20043, 'Party Lights', 'party_lights', 'i', 0, 0, 1, '0', '0', '0', 4310, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20047, 'Soothing Stick', 'rela_stick', 's', 1, 1, 1, '0', '0', '0', 3240, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20048, 'Mall Lift', 'ads_mall_elevator', 's', 1, 1, 0.001, '0', '0', '0', 3306, '1', '1', '0', '1', '1', 'teleport', 1, '0'),
(20050, 'Flatscreen TV', 'xm09_infotv', 'i', 0, 0, 1, '1', '0', '0', 4309, '1', '1', '1', '1', '1', 'default', 2, '0'),
(244, 'Basketball Trophy', 'legotrophy', 's', 1, 1, 1, '0', '0', '0', 280, '1', '1', '1', '1', '0', 'trophy', 2, '0'),
(20053, 'Painting', 'ads_twi_paint', 'i', 0, 0, 1, '1', '0', '0', 4272, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20054, 'Window with Candles', 'ads_twi_windw', 'i', 0, 0, 1, '1', '0', '0', 4277, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20055, 'Truck and Motorcycles', 'ads_twi_bwall2', 'i', 0, 0, 1, '1', '0', '0', 4276, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20056, 'Dream Catcher', 'ads_twi_dreamc', 'i', 0, 0, 1, '1', '0', '0', 4273, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20057, 'Barn Wall', 'ads_twi_bwall1', 'i', 0, 0, 1, '1', '0', '0', 4274, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20059, 'Arabian Wall', 'arabian_wall', 'i', 0, 0, 1, '1', '0', '0', 4287, '1', '1', '1', '1', '1', '', 2, '0'),
(20060, 'DEAL_HC_1', 'DEAL_HC_1', 'h', 0, 0, 0, '0', '0', '0', 0, '0', '0', '1', '0', '0', 'default', 0, '0'),
(20072, 'ads_gsArcade_1 name', 'ads_gsArcade_1', 's', 1, 1, 1, '1', '0', '0', 3277, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20063, 'Hot Choc Machine', 'xm09_cocoa', 's', 1, 1, 1, '1', '0', '0', 3337, '1', '1', '1', '1', '1', 'vendingmachine', 0, '10'),
(20064, 'Astro-Bar', 'sf_mbar', 's', 1, 1, 1, '1', '0', '0', 3273, '1', '1', '1', '1', '1', 'vendingmachine', 0, '44'),
(215, 'Bronze Trophy', 'a0 prize3', 's', 1, 1, 1, '0', '0', '0', 243, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20075, 'ads_spang_sleep', 'ads_spang_sleep', 's', 1, 3, 0.8, '1', '0', '0', 3280, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(214, 'Silver Trophy', 'a0 prize2', 's', 1, 1, 1, '0', '0', '0', 242, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20077, 'ktchn_hlthNut name', 'ktchn_hlthNut', 's', 1, 1, 1, '1', '0', '0', 3307, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20078, 'Chicken', 'petfood8', 's', 1, 1, 1, '1', '0', '0', 3325, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20079, 'nest_plow_reg', 'nest_plow_reg', 's', 1, 1, 1, '1', '0', '0', 3318, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20080, 'Yellow Pet Snuggle', 'nest_snug_yel', 's', 1, 1, 1, '1', '0', '0', 3319, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20081, 'Salmon', 'petfood9', 's', 1, 1, 1, '1', '0', '0', 3322, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20082, 'Leveling Cake', 'petfood10', 's', 1, 1, 1, '1', '0', '0', 3326, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20083, 'Ice Apples', 'petfood7', 's', 1, 1, 1, '1', '0', '0', 3321, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20084, 'Red Apples', 'petfood6', 's', 1, 1, 1, '1', '0', '0', 3323, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20085, 'Green Pet Snuggle', 'nest_snug_grn', 's', 1, 1, 1, '1', '0', '0', 3310, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20086, 'nest_snug_red', 'nest_snug_red', 's', 1, 1, 1, '1', '0', '0', 3317, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20087, 'Green Pet Snuggle', 'nest_snug_grn', 's', 1, 1, 1, '1', '0', '0', 3023, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20088, 'nest_plow_bro', 'nest_plow_bro', 's', 1, 1, 1, '1', '0', '0', 3309, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20089, 'Red Pet Pillow', 'nest_plow_red', 's', 1, 1, 1, '1', '0', '0', 3320, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20090, 'nest_snug_blu', 'nest_snug_blu', 's', 1, 1, 1, '1', '0', '0', 3315, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20091, 'Green Apples', 'petfood5', 's', 1, 1, 1, '1', '0', '0', 3324, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20092, 'Blue Pet Pillow', 'nest_plow_blu', 's', 1, 1, 1, '1', '0', '0', 3316, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20093, 'Giant Bauble', 'xm09_lrgBauble', 's', 1, 1, 1, '1', '0', '0', 3313, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20094, 'nest_dirt', 'nest_dirt', 's', 1, 1, 1, '1', '0', '0', 3331, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20095, 'nest_snug_prp', 'nest_snug_prp', 's', 1, 1, 1, '1', '0', '0', 3332, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20096, 'nest_nest', 'nest_nest', 's', 1, 1, 1, '1', '0', '0', 3334, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20097, 'nest_nails', 'nest_nails', 's', 1, 1, 1, '1', '0', '0', 3336, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20098, 'nest_basket', 'nest_basket', 's', 1, 1, 1, '1', '0', '0', 3333, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20099, 'Polar Bear Nest', 'nest_ice', 's', 1, 1, 1, '1', '0', '0', 3339, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20100, 'nest_plow_skl', 'nest_plow_skl', 's', 1, 1, 1, '1', '0', '0', 3341, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20101, 'nest_snug_bla', 'nest_snug_bla', 's', 1, 1, 1, '1', '0', '0', 3338, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20102, 'The Moodi Machine', 'ads_cl_moodi', 's', 1, 1, 1, '1', '0', '0', 3342, '1', '1', '1', '1', '1', 'vendingmachine', 1, '46,47,45'),
(20103, 'org_chairpnk', 'org_chairpnk', 's', 1, 1, 1.2, '0', '1', '0', 3354, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20104, 'org_tblpnk', 'org_tblpnk', 's', 1, 1, 1, '1', '0', '0', 3352, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20105, 'org_lampblk', 'org_lampblk', 's', 1, 1, 1.2, '0', '0', '0', 3353, '1', '1', '1', '1', '1', '', 2, '0'),
(20106, 'org_lamppnk', 'org_lamppnk', 's', 1, 1, 1.2, '0', '0', '0', 3348, '1', '1', '1', '1', '1', '', 2, '0'),
(20107, 'org_table', 'org_table', 's', 2, 2, 1, '1', '0', '0', 3356, '1', '1', '1', '1', '1', '', 2, '0'),
(20108, 'china_tiger', 'china_tiger', 's', 1, 1, 1, '1', '0', '0', 3344, '1', '1', '1', '1', '1', 'default', 1, '0'),
(213, 'Gold Trophy', 'a0 prize1', 's', 1, 1, 1, '0', '0', '0', 241, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20110, 'china_plmTree name', 'china_plmTree', 's', 1, 1, 1, '1', '0', '0', 3355, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20111, 'org_chairblk', 'org_chairblk', 's', 1, 1, 1.2, '0', '1', '0', 3349, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20112, 'org_tblblk', 'org_tblblk', 's', 1, 1, 1, '1', '0', '0', 3347, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20113, 'org_chrblk', 'org_chrblk', 's', 1, 1, 1.2, '0', '1', '0', 3345, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20114, 'china_tigrSeat name', 'china_tigrSeat', 's', 1, 2, 1, '1', '0', '0', 3346, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20115, 'org_chrpnk', 'org_chrpnk', 's', 1, 1, 1.2, '0', '1', '0', 3350, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20116, 'ads_chups name', 'ads_chups', 's', 1, 1, 1, '1', '0', '0', 3367, '1', '1', '1', '1', '1', 'vendingmachine', 1, '48'),
(20117, 'bling_fridge', 'bling_fridge', 's', 1, 1, 1, '0', '0', '0', 3366, '1', '1', '1', '1', '1', 'vendingmachine', 0, '50'),
(20118, 'petfood12 name', 'petfood12', 's', 1, 1, 1, '1', '0', '0', 3370, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20119, 'ads_droetker_paula name', 'ads_droetker_paula', 's', 1, 1, 1, '1', '0', '0', 3365, '1', '1', '1', '1', '1', 'vendingmachine', 1, '49'),
(20120, 'petfood11 name', 'petfood11', 's', 1, 1, 1, '1', '0', '0', 3358, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20121, 'bling_chair_a', 'bling_chair_a', 's', 1, 1, 1, '0', '1', '0', 3368, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20122, 'petfood13 name', 'petfood13', 's', 1, 1, 1, '1', '0', '0', 3359, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20123, 'bling_pool', 'bling_pool', 's', 3, 1, 0.01, '0', '1', '0', 3369, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20124, 'bling_toilet', 'bling_toilet', 's', 1, 1, 1.2, '0', '1', '0', 3362, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20125, 'val09_floor', 'val09_floor', 's', 2, 2, 0, '1', '0', '1', 3363, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20126, 'bling_chair_c', 'bling_chair_c', 's', 1, 1, 1, '0', '1', '0', 3361, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20127, 'bling_chair_b', 'bling_chair_b', 's', 1, 1, 1, '0', '1', '0', 3360, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20128, 'bling_shwr name', 'bling_shwr', 's', 1, 1, 0, '1', '0', '1', 3396, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20129, 'bling_bed name', 'bling_bed', 's', 2, 3, 1.6, '0', '1', '0', 3364, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20130, 'bling_sofa', 'bling_sofa', 's', 2, 1, 1.5, '0', '1', '0', 3371, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20131, 'val09_floor2', 'val09_floor2', 's', 2, 2, 0, '1', '0', '1', 3357, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20132, 'teddy_basic', 'teddy_basic', 's', 1, 1, 1, '1', '0', '0', 3393, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20133, 'teddy_pendergrass', 'teddy_pendergrass', 's', 1, 1, 1, '1', '0', '0', 3384, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20134, 'val_hSeat_1 name', 'val_hSeat*1', 's', 1, 1, 1, '0', '1', '0', 3386, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20135, 'val_hSeat_2 name', 'val_hSeat*2', 's', 1, 1, 1, '0', '1', '0', 3387, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20136, 'val_hSeat_3 name', 'val_hSeat*3', 's', 1, 1, 1, '0', '1', '0', 3388, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20137, 'val_hSeat_4 name', 'val_hSeat*4', 's', 1, 1, 1, '0', '1', '0', 3389, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20138, 'val_hSeat_5 name', 'val_hSeat*5', 's', 1, 1, 1, '0', '1', '0', 3390, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20139, 'val_hSeat_6 name', 'val_hSeat*6', 's', 1, 1, 1, '0', '1', '0', 3391, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20140, 'val_hSeat_7 name', 'val_hSeat*7', 's', 1, 1, 1, '0', '1', '0', 3392, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20141, 'Valentines gift basket', 'val_basket', 's', 1, 1, 1, '1', '0', '0', 3382, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20142, 'teddy_bear', 'teddy_bear', 's', 1, 1, 1, '1', '0', '0', 3385, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20143, 'teddy_pink', 'teddy_pink', 's', 1, 1, 1, '1', '0', '0', 3383, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20144, 'bling_fridge_restricted name', 'bling_fridge_restricted', 's', 1, 1, 1, '0', '0', '0', 3394, '1', '1', '1', '1', '1', 'vendingmachine', 0, '50'),
(20145, 'ads_percyrock name', 'ads_percyrock', 's', 2, 2, 1, '1', '0', '0', 3395, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20146, 'Bubble Juice Can', 'md_can', 'i', 0, 0, 1, '1', '0', '0', 4025, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20147, 'ads_idol_l_logo name', 'ads_idol_l_logo', 'i', 0, 0, 1, '1', '0', '0', 4243, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20148, 'Latin American Idol TV', 'ads_idol_l_tv', 'i', 0, 0, 1, '1', '0', '0', 4245, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20149, 'Big MTV', 'ads_mtv_bigtv', 'i', 0, 0, 1, '1', '0', '0', 4241, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20150, 'Small MTV', 'ads_mtv_tv', 'i', 0, 0, 1, '1', '0', '0', 4242, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20151, 'flag_singapore', 'flag_singapore', 'i', 0, 0, 1, '1', '0', '0', 4249, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20152, 'Old Curtain', 'hween09_curt', 'i', 0, 0, 1, '1', '0', '0', 4266, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20153, 'flag_columbia', 'flag_columbia', 'i', 0, 0, 1, '1', '0', '0', 4258, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20154, 'flag_chile', 'flag_chile', 'i', 0, 0, 1, '1', '0', '0', 4256, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20155, 'flag_ecuador', 'flag_ecuador', 'i', 0, 0, 1, '1', '0', '0', 4268, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20156, 'flag_dominicanrepublic', 'flag_dominicanrepublic', 'i', 0, 0, 1, '1', '0', '0', 4265, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20157, 'flag_newzealand', 'flag_newzealand', 'i', 0, 0, 1, '1', '0', '0', 4260, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20158, 'flag_malaysia', 'flag_malaysia', 'i', 0, 0, 1, '1', '0', '0', 4252, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20159, 'Loading Poster', 'byesw_loadscreen', 'i', 0, 0, 1, '1', '0', '0', 4267, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20160, 'flag_venezl', 'flag_venezl', 'i', 0, 0, 1, '1', '0', '0', 4254, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20161, 'flag_algeria', 'flag_algeria', 'i', 0, 0, 1, '1', '0', '0', 4270, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20162, 'flag_tunisia', 'flag_tunisia', 'i', 0, 0, 1, '1', '0', '0', 4248, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20163, 'flag_panama', 'flag_panama', 'i', 0, 0, 1, '1', '0', '0', 4262, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20164, 'flag_mexico', 'flag_mexico', 'i', 0, 0, 1, '1', '0', '0', 4250, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20165, 'flag_argentina', 'flag_argentina', 'i', 0, 0, 1, '1', '0', '0', 4261, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20166, 'flag_philippines', 'flag_philippines', 'i', 0, 0, 1, '1', '0', '0', 4251, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20167, 'flag_greece', 'flag_greece', 'i', 0, 0, 1, '1', '0', '0', 4253, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20168, 'flag_peru', 'flag_peru', 'i', 0, 0, 1, '1', '0', '0', 4246, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20169, 'flag_morocco', 'flag_morocco', 'i', 0, 0, 1, '1', '0', '0', 4264, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20170, 'flag_turkey', 'flag_turkey', 'i', 0, 0, 1, '1', '0', '0', 4255, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20171, 'Blue Long Bauble', 'xm09_bauble_12', 'i', 0, 0, 1, '1', '0', '0', 4304, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20172, 'Purple Long Bauble', 'xm09_bauble_16', 'i', 0, 0, 1, '1', '0', '0', 4303, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20173, 'Red Long Bauble', 'xm09_bauble_17', 'i', 0, 0, 1, '1', '0', '0', 4281, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20174, 'Silver Long Bauble', 'xm09_bauble_15', 'i', 0, 0, 1, '1', '0', '0', 4301, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20175, 'Silver Round Bauble', 'xm09_bauble_10', 'i', 0, 0, 1, '1', '0', '0', 4293, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20176, 'Gold Round Bauble', 'xm09_bauble_9', 'i', 0, 0, 1, '1', '0', '0', 4294, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20177, 'Green Long Bauble', 'xm09_bauble_18', 'i', 0, 0, 1, '1', '0', '0', 4298, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20178, 'Green Long Bauble', 'xm09_bauble_13', 'i', 0, 0, 1, '1', '0', '0', 4299, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20179, 'Blue Round Bauble', 'xm09_bauble_2', 'i', 0, 0, 1, '1', '0', '0', 4297, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20180, 'Red Round Bauble', 'xm09_bauble_1', 'i', 0, 0, 1, '1', '0', '0', 4300, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20181, 'Red Heart Bauble', 'xm09_bauble_22', 'i', 0, 0, 1, '1', '0', '0', 4302, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20182, 'Green Round Bauble', 'xm09_bauble_3', 'i', 0, 0, 1, '1', '0', '0', 4285, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20183, 'Silver Long Bauble', 'xm09_bauble_21', 'i', 0, 0, 1, '1', '0', '0', 4305, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20184, 'Green Round Bauble', 'xm09_bauble_8', 'i', 0, 0, 1, '1', '0', '0', 4295, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20185, 'Gold Round Bauble', 'xm09_bauble_4', 'i', 0, 0, 1, '1', '0', '0', 4282, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20186, 'Silver Round Bauble', 'xm09_bauble_5', 'i', 0, 0, 1, '1', '0', '0', 4288, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20187, 'Red Long Bauble', 'xm09_bauble_11', 'i', 0, 0, 1, '1', '0', '0', 4289, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20188, 'Gold Long Bauble', 'xm09_bauble_20', 'i', 0, 0, 1, '1', '0', '0', 4296, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20190, 'val_table1 name', 'val_table1', 's', 1, 1, 1, '0', '0', '0', 3397, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20191, 'Gold Long Bauble', 'xm09_bauble_14', 'i', 0, 0, 1, '1', '0', '0', 4290, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20192, 'Blue Round Bauble', 'xm09_bauble_7', 'i', 0, 0, 1, '1', '0', '0', 4291, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20193, 'Red Round Bauble', 'xm09_bauble_6', 'i', 0, 0, 1, '1', '0', '0', 4284, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20194, 'Blue Long Bauble', 'xm09_bauble_19', 'i', 0, 0, 1, '1', '0', '0', 4283, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20195, 'china_pstr3 name', 'china_pstr3', 'i', 0, 0, 1, '1', '0', '0', 4314, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20196, 'ads_tv_jaapuisto name', 'ads_tv_jaapuisto', 'i', 0, 0, 1, '1', '0', '0', 4315, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20197, 'Empire State Building Clock', 'ads_percyw', 'i', 0, 0, 1, '1', '0', '0', 4322, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20198, 'val09_wdrobe_b', 'val09_wdrobe_b', 'i', 0, 0, 1, '1', '0', '0', 4320, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20199, 'val09_wall2', 'val09_wall2', 'i', 0, 0, 1, '1', '0', '0', 4316, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20200, 'bling_sink', 'bling_sink', 'i', 0, 0, 1, '1', '0', '0', 4319, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20201, 'val09_wall1', 'val09_wall1', 'i', 0, 0, 1, '1', '0', '0', 4318, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20202, 'bling_cabinet', 'bling_cabinet', 'i', 0, 0, 1, '1', '0', '0', 4321, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20204, 'val09_wdrobe_g', 'val09_wdrobe_g', 'i', 0, 0, 1, '1', '0', '0', 4317, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20207, 'rare_ironmaiden name', 'rare_ironmaiden', 's', 1, 1, 0.001, '0', '0', '0', 3399, '1', '1', '0', '1', '1', 'teleport', 2, '0'),
(20208, 'rare_trex name', 'rare_trex', 's', 3, 7, 1, '0', '0', '0', 3398, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20209, 'beanstalk', 'beanstalk', 's', 1, 1, 1, '1', '0', '0', 3401, '1', '1', '1', '1', '1', 'default', 6, '0'),
(20210, 'rare_vdoll name', 'rare_vdoll', 's', 1, 1, 1, '0', '0', '0', 3403, '1', '1', '1', '1', '1', '', 10, '0'),
(20211, 'rare_mmmth name', 'rare_mmmth', 's', 2, 1, 1, '0', '1', '0', 3402, '1', '1', '1', '1', '1', '', 0, '0'),
(20212, 'crystal_patch', 'crystal_patch', 's', 3, 3, 0, '0', '0', '1', 3400, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20213, 'ads_boost_surfb name', 'ads_boost_surfb', 'i', 0, 0, 1, '1', '0', '0', 4323, '1', '1', '1', '1', '1', '', 0, '0'),
(20214, 'ads_tlc_wheel name', 'ads_tlc_wheel', 'i', 0, 0, 1, '1', '0', '0', 4324, '1', '1', '1', '1', '1', 'habbowheel', 1, '0'),
(20220, 'Piglet', 'a0 pet5', 's', 1, 1, 1, '1', '0', '0', 1532, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20221, 'White moon lupine', 'garden_lupin4', 's', 1, 1, 1e-009, '0', '0', '0', 3419, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20222, 'Gold rush', 'garden_mursu3', 's', 1, 1, 1, '0', '0', '0', 3408, '1', '1', '1', '1', '1', 'default', 0, '0'),
(20223, 'Purple Lupine', 'garden_lupin5', 's', 1, 1, 1, '0', '0', '0', 3411, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20224, 'Violet Blossom', 'garden_seed', 's', 1, 1, 1, '0', '0', '0', 3406, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20225, 'Snapping teleporter', 'garden_flytrap', 's', 1, 1, 0.001, '0', '0', '0', 3420, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(20226, 'Pink pandemic', 'garden_flo3', 's', 1, 1, 1e-015, '1', '0', '1', 3426, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20227, 'Belching pod', 'garden_volcano', 's', 2, 2, 1, '0', '0', '0', 3424, '1', '1', '1', '1', '1', 'alert', 2, '0'),
(20228, 'Wonder lamp', 'garden_flolamp', 's', 1, 1, 1, '0', '0', '0', 3415, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20229, 'Red rush', 'garden_mursu2', 's', 1, 1, 1, '0', '0', '0', 3412, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20230, 'Star flower', 'garden_jyrki', 's', 1, 1, 1, '0', '0', '0', 3405, '1', '1', '1', '1', '1', 'default', 8, '0'),
(20231, 'White rush', 'garden_mursu4', 's', 1, 1, 1, '0', '0', '0', 3414, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20232, 'Garden leaves', 'garden_leaves', 's', 1, 1, 1, '0', '0', '0', 3425, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20233, 'Sky blue lupine', 'garden_lupin2', 's', 1, 1, 1, '0', '0', '0', 3416, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20234, 'Red lupine', 'garden_lupin3', 's', 1, 1, 1, '0', '0', '0', 3407, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20235, 'Pink rush', 'garden_mursu', 's', 1, 1, 1, '0', '0', '0', 3404, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20238, 'Bauhinia orchid tree', 'garden_orchtree', 's', 1, 1, 1, '0', '0', '0', 3413, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20237, 'Yellow happiness', 'garden_flo2', 's', 1, 1, 0, '1', '0', '1', 3409, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20239, 'Orange lupine', 'garden_lupin1', 's', 1, 1, 1, '0', '0', '0', 3421, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20240, 'Weird staring bush', 'garden_staringbush', 's', 1, 3, 1, '0', '0', '0', 3417, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20241, 'ads_grefusa_yum name', 'ads_grefusa_yum', 's', 1, 1, 1, '1', '0', '0', 3423, '1', '1', '1', '1', '1', 'vendingmachine', 1, '51, 52'),
(20242, 'Blue passion', 'garden_flo1', 's', 1, 1, 1e-008, '1', '0', '1', 3418, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20243, 'Duck grass', 'garden_jungle', 's', 1, 1, 1, '1', '0', '0', 3422, '1', '1', '1', '1', '1', '', 1, '0'),
(20244, 'merger_chest name', 'merger_chest', 's', 2, 1, 1, '0', '0', '0', 3455, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20245, 'Suave Fireplace', 'hc2_frplc', 's', 1, 2, 1, '0', '0', '0', 3458, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20246, 'Leather Bar Stool', 'hc2_barchair', 's', 1, 1, 1.7, '0', '1', '0', 3439, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20247, 'runway_display name', 'runway_display', 's', 1, 1, 1, '0', '0', '0', 3457, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20248, 'runway_bigchr_5 name', 'runway_bigchr_5', 's', 1, 1, 0.8, '1', '0', '0', 3463, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20249, 'runway_bigchr_4 name', 'runway_bigchr_4', 's', 1, 1, 0.8, '1', '0', '0', 3435, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20250, 'VIP Duvan', 'hc3_dc', 's', 1, 3, 1, '0', '0', '0', 3461, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20252, 'Glass Table', 'hc2_sofatbl', 's', 2, 2, 0.5, '1', '0', '0', 3434, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20253, 'runway_stool name', 'runway_stool', 's', 1, 1, 1.2, '0', '1', '0', 3442, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20254, 'runway_dvdr name', 'runway_dvdr', 's', 2, 1, 1, '0', '0', '0', 3456, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20255, 'runway_block_2 name', 'runway_block_2', 's', 2, 2, 0.8, '1', '0', '1', 3443, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20256, 'runway_bigchr_1 name', 'runway_bigchr_1', 's', 1, 1, 0.8, '0', '1', '0', 3462, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20257, 'Black Lamp', 'hc2_biglamp', 's', 1, 1, 1, '0', '0', '0', 3446, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20258, 'Leather Sofa', 'hc2_sofa', 's', 2, 1, 1, '0', '1', '0', 3452, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20259, 'Trendy Rug', 'hc2_carpet', 's', 3, 5, 0, '1', '0', '1', 3440, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20260, 'runway_block_1 name', 'runway_block_1', 's', 2, 2, 0.8, '1', '0', '1', 3433, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20261, 'runway_bench name', 'runway_bench', 's', 2, 1, 1.4, '0', '1', '0', 3464, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20262, 'runway_chair_2 name', 'runway_chair_2', 's', 1, 1, 1.4, '0', '1', '0', 3429, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20263, 'ads_cheetos name', 'ads_cheetos', 's', 1, 1, 1, '0', '0', '0', 3453, '1', '1', '1', '1', '1', 'vendingmachine', 1, '51, 52'),
(20264, 'VIP Coffee Table', 'hc3_table', 's', 2, 2, 0.5, '1', '0', '0', 3466, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20265, 'runway_bigchr_3 name', 'runway_bigchr_3', 's', 1, 1, 0.8, '1', '0', '0', 3454, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20266, 'VIP Stool', 'hc3_stool', 's', 1, 1, 1.7, '0', '1', '0', 3448, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20267, 'VIP Sofa', 'hc3_sofa', 's', 2, 1, 1, '0', '1', '0', 3441, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20268, 'runway_bigchr_2 name', 'runway_bigchr_2', 's', 1, 1, 0.8, '1', '0', '0', 3427, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20269, 'Leather Armchair', 'hc2_armchair', 's', 1, 1, 1, '1', '1', '0', 3436, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20270, 'runway_table_2 name', 'runway_table_2', 's', 2, 1, 1, '0', '0', '0', 3444, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20271, 'runway_table_1 name', 'runway_table_1', 's', 3, 2, 1, '1', '0', '0', 3460, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20272, 'runway_manqn_1 name', 'runway_manqn_1', 's', 1, 1, 1, '0', '0', '0', 3437, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20273, 'Leather Duvan', 'hc2_dvn', 's', 1, 3, 1, '0', '0', '0', 3459, '1', '1', '1', '1', '1', 'bed', 1, '0'),
(20274, 'VIP Light', 'hc3_light', 's', 2, 1, 0, '1', '0', '1', 3465, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20275, 'VIP Shelves', 'hc3_shelf', 's', 3, 1, 1.75, '1', '0', '0', 3438, '1', '1', '1', '1', '1', 'default', 2, '0');
INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`, `allow_marketplace_sell`, `allow_gift`, `allow_inventory_stack`, `interaction_type`, `interaction_modes_count`, `vending_ids`) VALUES
(20276, 'runway_head name', 'runway_head', 's', 1, 1, 1, '1', '0', '0', 3432, '1', '1', '1', '1', '1', 'default', 7, '0'),
(20277, 'runway_manqn_2 name', 'runway_manqn_2', 's', 1, 1, 1, '0', '0', '0', 3467, '1', '1', '1', '1', '1', 'default', 5, '0'),
(20278, 'Black Divider', 'hc2_divider', 's', 1, 3, 1, '0', '0', '0', 3449, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20279, 'Espresso Machine', 'hc2_coffee', 's', 1, 1, 1, '0', '0', '0', 3450, '1', '1', '1', '1', '1', 'vendingmachine', 0, '9,8,14,15,6,10,11,12,17,13'),
(20280, 'Service Trolley', 'hc2_cart', 's', 1, 1, 1, '0', '0', '0', 3430, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20281, 'VIP Bar Desk', 'hc3_bard', 's', 2, 1, 1.05, '1', '0', '0', 3445, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20282, 'VIP Lamp', 'hc3_hugelamp', 's', 1, 1, 0, '1', '0', '1', 3447, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20283, 'VIP Divider', 'hc3_divider', 's', 1, 3, 1, '0', '0', '0', 3431, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20284, 'Black Vase', 'hc2_vase', 's', 1, 1, 1, '0', '0', '0', 3428, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20285, 'runway_chair_1 name', 'runway_chair_1', 's', 1, 1, 1.4, '0', '1', '0', 3451, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20286, 'Green been vines', 'garden_wall', 'i', 0, 0, 1, '1', '0', '0', 4325, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20287, 'ads_tv_yle name', 'ads_tv_yle', 'i', 0, 0, 1, '1', '0', '0', 4326, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20288, 'VIP Wall Art', 'hc3_walldeco', 'i', 0, 0, 1, '1', '0', '0', 4329, '1', '1', '1', '1', '1', 'default', 10, '0'),
(20289, 'runway_shelf name', 'runway_shelf', 'i', 0, 0, 1, '1', '0', '0', 4327, '1', '1', '1', '1', '1', 'default', 4, '0'),
(20290, 'ads_nokia_x6 name', 'ads_nokia_x6', 'i', 0, 0, 1, '1', '0', '0', 4330, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20291, 'ads_target_wall name', 'ads_target_wall', 'i', 0, 0, 1, '1', '0', '0', 4332, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20292, 'runway_fabric name', 'runway_fabric', 'i', 0, 0, 1, '1', '0', '0', 4331, '1', '1', '1', '1', '1', 'default', 8, '0'),
(20293, 'ads_latrobe_flag name', 'ads_latrobe_flag', 'i', 0, 0, 1, '1', '0', '0', 4328, '1', '1', '1', '1', '1', '', 1, '0'),
(20295, 'Camera', 'camera', 's', 1, 1, 1, '0', '0', '0', 263, '1', '1', '1', '1', '1', '', 1, '0'),
(20296, 'Holly', 'holly', 'i', 0, 0, 0, '1', '0', '0', 4001, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20299, 'Wetting Ice Sculpture', 'wed_icesculp', 's', 1, 1, 3, '0', '0', '0', 3488, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20300, 'Wedding Car', 'wed_carsofa', 's', 2, 1, 1.25, '0', '1', '0', 3493, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20297, 'Wedding Arch', 'wed_arch', 's', 3, 1, 0.001, '1', '0', '1', 3483, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20298, 'Wedding Plant', 'wed_plant', 's', 1, 1, 1, '0', '0', '0', 3482, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20301, 'Terrier', 'a0 pet3', 's', 1, 1, 1, '1', '0', '0', 4026, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20303, 'Bear', 'a0 pet4', 's', 1, 1, 1, '1', '0', '0', 4027, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20304, 'Cats', 'a0 pet1', 's', 1, 1, 1, '1', '0', '0', 453, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20305, 'Dogs', 'a0 pet0', 's', 1, 1, 1, '1', '0', '0', 452, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20306, 'Crocodiles', 'a0 pet2', 's', 1, 1, 1, '1', '0', '0', 1290, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(20379, 'prison_stone name', 'F.L.A.G Prison Stone', 's', 1, 1, 1, '0', '0', '0', 3537, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20376, 'F.L.A.G Cell bars', 'F.L.A.G Cell bars', 's', 1, 1, 3, '1', '0', '0', 3534, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20374, 'prison_dvdr2 name', 'F.L.A.G Cell Wall', 's', 2, 1, 3, '1', '0', '0', 3532, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20373, 'Prison Tower', 'Prison Tower', 's', 1, 1, 4, '0', '0', '0', 3531, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20370, 'prison_crnr name', 'F.L.A.G prison corner', 's', 1, 1, 1, '0', '0', '0', 3528, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20368, 'prison_gate name', 'F.L.A.G prison gate', 's', 1, 1, 1, '1', '0', '0', 3526, '1', '1', '1', '1', '1', 'gate', 1, '0'),
(20401, 'bw_jaws name', 'bw_jaws', 'i', 0, 0, 0, '0', '0', '0', 4336, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20394, 'bw_fnc name', 'bw_fnc', 's', 1, 2, 1, '0', '0', '0', 3552, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20393, 'bw_fnc_crnr name', 'bw_fnc_crnr', 's', 1, 1, 0.1, '0', '0', '0', 3551, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20392, 'bw_tele name', 'bw_tele', 's', 1, 1, 0.01, '0', '0', '0', 3550, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(20391, 'F.L.A.G Prison trasporter', 'F.L.A.G Prison trasporter', 's', 2, 2, 1.5, '0', '1', '0', 3549, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20390, 'bw_mttrss name', 'bw_mttrss', 's', 2, 1, 0, '1', '0', '0', 3548, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20389, 'bw_bball name', 'bw_bball', 's', 1, 1, 0, '0', '0', '1', 3547, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20387, 'bw_table name', '', 's', 2, 2, 0.2, '1', '0', '0', 3545, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20386, 'bw_chair name', 'bw_chair', 's', 1, 1, 1, '0', '1', '0', 3544, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20385, 'bw_sboard name', 'bw_sboard', 's', 1, 2, 0, '0', '0', '1', 3543, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20384, 'bw_croc name', 'bw_croc', 's', 1, 3, 1, '0', '0', '0', 3542, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20383, 'bw_water_2 name', 'bw_water_2', 's', 2, 2, 0, '1', '0', '1', 3541, '1', '1', '1', '1', '1', 'water', 1, '0'),
(20382, 'bw_shower name', 'bw_shower', 's', 1, 1, 0, '0', '0', '1', 3540, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20381, 'bw_ccnuts name', 'bw_ccnuts', 's', 1, 1, 1, '0', '0', '0', 3539, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20380, 'bw_fin name', 'bw_fin', 's', 1, 1, 1, '0', '0', '0', 3538, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20375, 'bw_sofa name', 'bw_sofa', 's', 2, 1, 1, '0', '1', '0', 3533, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20372, 'bw_water_1 name', 'bw_water_1', 's', 2, 2, 0, '1', '0', '1', 3530, '1', '1', '1', '1', '1', 'water', 1, '0'),
(20371, 'bw_lgchair name', 'bw_lgchair', 's', 1, 1, 2.8, '0', '1', '0', 3529, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20369, 'bw_boat name', 'bw_boat', 's', 2, 2, 0.7, '0', '1', '0', 3527, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20415, 'Viking', 'avatar_effect27', 'e', 1, 1, 1, '0', '0', '0', 27, '1', '1', '1', '1', '1', 'default', 1, '0'),
(27277, 'Pepsi', 'Pepsi', 's', 1, 1, 1, '0', '0', '0', 3554, '0', '1', '0', '1', '1', 'vendingmachine', 0, '55'),
(24322, 'Present 10', '24322', 's', 1, 1, 1, '1', '0', '0', 3372, '1', '1', '1', '1', '1', 'default', 1, '0'),
(1617, 'Cool Trophy', 'prizetrophy_cool', 's', 1, 1, 1, '0', '0', '0', 3225, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20051, 'Twilight Trophy', 'ads_twi_trophy', 's', 1, 1, 1, '1', '0', '0', 3311, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(20074, 'Silver MTV EMA Trophy', 'ads_mtvtrophy_silver', 's', 1, 1, 1, '0', '0', '0', 3281, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20076, 'Gold MTV EMA Trophy', 'ads_mtvtrophy_gold', 's', 1, 1, 1, '0', '0', '0', 3279, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20109, 'xm09_trophy name', 'xm09_trophy', 's', 1, 1, 1, '1', '0', '0', 3351, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20307, 'Football Trophy', 'fball_trophy', 's', 1, 1, 1, '0', '0', '0', 3505, '1', '1', '1', '1', '0', 'trophy', 1, '0'),
(20354, 'fball_score_y', 'fball_score_y', 's', 1, 1, 1, '0', '0', '0', 3506, '1', '1', '1', '1', '1', 'scoreboard', 1, '0'),
(20353, 'fball_score_r', 'fball_score_r', 's', 1, 1, 1, '0', '0', '0', 3522, '1', '1', '1', '1', '1', 'scoreboard', 1, '0'),
(20352, 'fball_score_g', 'fball_score_g', 's', 1, 1, 1, '0', '0', '0', 3512, '1', '1', '1', '1', '1', 'scoreboard', 1, '0'),
(20351, 'fball_score_b', 'fball_score_b', 's', 1, 1, 1, '0', '0', '0', 3496, '1', '1', '1', '1', '1', 'scoreboard', 1, '0'),
(20350, 'fball_ptch8 name', 'fball_ptch8', 's', 3, 3, 0, '1', '0', '0', 3502, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20349, 'fball_ptch7 name', 'fball_ptch7', 's', 3, 3, 0, '1', '0', '0', 3509, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20348, 'fball_ptch6 name', 'fball_ptch6', 's', 3, 3, 0, '1', '0', '0', 3517, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20347, 'fball_ptch5 name', 'fball_ptch5', 's', 3, 3, 0, '1', '0', '0', 3498, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20346, 'fball_ptch4 name', 'fball_ptch4', 's', 3, 3, 0, '1', '0', '0', 3504, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20345, 'fball_ptch3 name', 'fball_ptch3', 's', 3, 3, 0, '1', '0', '0', 3513, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20344, 'fball_ptch2 name', 'fball_ptch2', 's', 3, 3, 0, '1', '0', '0', 3511, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20343, 'fball_ptch1', 'fball_ptch1', 's', 3, 3, 0, '1', '0', '0', 3524, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20342, 'fball_ptch0', 'fball_ptch0', 's', 3, 3, 0, '1', '0', '0', 3520, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20341, 'fball_counter name', 'fball_counter', 's', 2, 1, 1, '0', '0', '0', 3525, '1', '1', '1', '1', '1', 'scoreboard', 2, '0'),
(20340, 'fball_gate name', 'fball_gate', 's', 1, 0, 1, '0', '0', '0', 3516, '1', '1', '1', '1', '1', 'onewaygate', 1, '0'),
(20339, 'fball_light name', 'fball_light', 's', 1, 0, 1, '0', '0', '0', 3499, '1', '1', '1', '1', '1', 'default', 2, '0'),
(20338, 'fball_goal_y name', 'fball_goal_y', 's', 3, 0, 1, '0', '0', '0', 3523, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20337, 'fball_goal_r name', 'fball_goal_r', 's', 3, 0, 1, '0', '0', '0', 3514, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20336, 'fball_goal_g', 'fball_goal_g', 's', 3, 0, 1, '0', '0', '0', 3519, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20335, 'fball_goal_b name', 'fball_goal_b', 's', 3, 0, 1, '0', '0', '0', 3515, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20334, 'fball_fnc3 name', 'fball_fnc3', 's', 1, 3, 1, '1', '0', '0', 3495, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20333, 'fball_fnc1 name', 'fball_fnc1', 's', 1, 0, 1, '1', '0', '0', 3501, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20332, 'fball_crnr name', 'fball_crnr', 's', 1, 0, 1, '1', '0', '0', 3503, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20331, 'fball_cote name', 'fball_cote', 's', 3, 1, 1, '0', '0', '0', 3507, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20330, 'fball_bench name', 'fball_bench', 's', 3, 0, 1, '0', '1', '0', 3494, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20329, 'fball_ball5 name', 'fball_ball5', 's', 1, 0, 1, '0', '0', '0', 3518, '1', '1', '1', '1', '1', 'ball', 1, '0'),
(20328, 'fball_ball4 name', 'fball_ball4', 's', 1, 0, 1, '0', '0', '0', 3521, '1', '1', '1', '1', '1', 'ball', 1, '0'),
(20327, 'fball_ball3 name', 'fball_ball3', 's', 1, 0, 1, '0', '0', '0', 3497, '1', '1', '1', '1', '1', 'ball', 1, '0'),
(20326, 'fball_ball2 name', 'fball_ball2', 's', 1, 0, 1, '0', '0', '0', 3510, '1', '1', '1', '1', '1', 'ball', 1, '0'),
(20325, 'fball_ball name', 'fball_ball', 's', 1, 0, 1, '0', '0', '0', 3508, '1', '1', '1', '1', '1', 'ball', 2, '0'),
(20324, 'fball_audbench name', 'fball_audbench', 's', 4, 1, 1, '0', '1', '0', 3500, '1', '1', '1', '1', '1', 'default', 3, '0'),
(20323, 'fball_trophy name', 'fball_trophy', 's', 1, 1, 1, '0', '0', '0', 3505, '1', '1', '1', '1', '1', 'trophy', 1, '0'),
(83545, 'Rino', 'a0 pet7', 's', 1, 1, 1, '1', '0', '0', 5354, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(84586, 'Lion', 'a0 pet6', 's', 1, 1, 1, '1', '0', '0', 7457, '0', '0', '0', '0', '0', 'pet', 0, '0'),
(84587, 'BattleShip', 'BattleShip', 's', 1, 1, 1, '1', '0', '0', 1021, '1', '1', '1', '1', '1', '', 1, '0'),
(84588, 'ads_disney_tv', 'ads_disney_tv', 's', 1, 1, 1, '1', '0', '0', 3613, '1', '1', '1', '1', '1', 'default', 1, '0'),
(10355, 'african_tree2', 'african_tree2', 's', 1, 1, 1, '0', '0', '0', 3605, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10354, 'african_tree1', 'african_tree1', 's', 1, 1, 1, '0', '0', '0', 3584, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10353, 'african_stage', 'african_stage', 's', 2, 2, 1, '1', '0', '1', 3607, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10352, 'african_patch', 'african_patch', 's', 2, 2, 0, '1', '0', '1', 3602, '1', '1', '1', '1', '1', 'default', 3, '0'),
(10351, 'african_fence', 'african_fence', 's', 1, 2, 1, '0', '0', '0', 3579, '1', '1', '1', '1', '1', 'default', 2, '0'),
(10350, 'african_bones', 'african_bones', 's', 1, 1, 1, '0', '0', '0', 3609, '1', '1', '1', '1', '1', 'default', 2, '0'),
(97222, '', 'avatar_effect33', 'e', 1, 1, 1, '0', '0', '0', 33, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97333, '', 'avatar_effect34', 'e', 1, 1, 1, '0', '0', '0', 34, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97444, '', 'avatar_effect35', 'e', 1, 1, 1, '0', '0', '0', 35, '0', '0', '1', '0', '0', 'default', 1, '0'),
(97555, '', 'avatar_effect36', 'e', 1, 1, 1, '0', '0', '0', 36, '0', '0', '1', '0', '0', 'default', 1, '0'),
(2785108, 'bb_painimies2', 'bb_painimies2', 'i', 1, 1, 1, '0', '0', '1', 4342, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785078, 'bb_score_b', 'bb_score_b', 'i', 1, 1, 1, '0', '1', '0', 3615, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785079, 'bb_robo', 'bb_robo', 's', 2, 2, 2, '0', '0', '0', 3616, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785080, 'bb_dragon', 'bb_dragon', 's', 3, 1, 2.5, '0', '0', '0', 3617, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785081, 'bb_ducklight', 'bb_ducklight', 's', 1, 1, 3, '0', '0', '0', 3618, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785082, 'bb_caterhead', 'bb_caterhead', 's', 1, 1, 1, '0', '0', '0', 3619, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785083, 'bb_cargobox', 'bb_cargobox', 's', 2, 1, 1, '0', '0', '0', 3620, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785084, 'bb_gate_g', 'bb_gate_g', 's', 1, 1, 0, '0', '0', '1', 3621, '1', '1', '1', '1', '1', 'bb_green_gate', 2, '0'),
(2785085, 'bb_crchair3', 'bb_crchair3', 's', 1, 1, 1, '0', '1', '0', 3622, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785086, 'bb_score_g', 'bb_score_g', 'i', 1, 1, 1, '0', '1', '0', 3623, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785087, 'bb_crchair', 'bb_crchair', 's', 1, 1, 1, '0', '1', '0', 3624, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785088, 'bb_crchair2', 'bb_crchair2', 's', 1, 1, 1, '0', '1', '0', 3625, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785089, 'bb_score_y', 'bb_score_y', 'i', 1, 1, 1, '1', '0', '0', 3626, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785090, 'bb_knj1', 'bb_knj1', 's', 2, 1, 1, '0', '0', '0', 3627, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785091, 'bb_gate_r', 'bb_gate_r', 's', 1, 1, 0, '0', '0', '1', 3628, '1', '1', '1', '1', '1', 'bb_red_gate', 2, '0'),
(2785092, 'bb_tddhnd', 'bb_tddhnd', 's', 1, 1, 1, '1', '0', '0', 3629, '1', '1', '1', '1', '1', 'default', 1, '0'),
(2785093, 'bb_lightdiv', 'bb_lightdiv', 's', 1, 1, 1, '1', '0', '0', 3630, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785094, 'bb_tddhead', 'bb_tddhead', 's', 2, 2, 2, '0', '0', '0', 3631, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785095, 'bb_pyramid', 'bb_pyramid', 's', 1, 1, 1, '1', '0', '0', 3632, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785096, 'bb_patch1', 'bb_patch1', 's', 1, 1, 0.1, '1', '0', '1', 3633, '1', '1', '1', '1', '1', 'default', 4, '0'),
(2785097, 'bb_fnc3', 'bb_fnc3', 's', 1, 3, 1, '0', '0', '0', 3634, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785098, 'bb_gate_y', 'bb_gate_y', 's', 1, 1, 0, '0', '0', '1', 3635, '1', '1', '1', '1', '1', 'bb_yellow_gate', 1, '0'),
(2785099, 'bb_apparatus', 'bb_apparatus', 's', 2, 2, 0, '1', '0', '1', 3637, '1', '1', '1', '1', '1', 'default', 8, '0'),
(2785100, 'bb_caterbody', 'bb_caterbody', 's', 1, 1, 1.7, '1', '1', '0', 3638, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785101, 'bb_knj2', 'bb_knj2', 's', 1, 1, 2, '1', '0', '0', 3639, '1', '1', '1', '1', '1', 'default', 4, '0'),
(2785102, 'bb_fnc1', 'bb_fnc1', 's', 1, 1, 1, '0', '0', '0', 3640, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785103, 'bb_puck', 'bb_puck', 's', 1, 1, 0.6, '1', '0', '0', 3641, '1', '1', '1', '1', '1', 'bb_plate', 3, '0'),
(2785104, 'bb_rnd_tele', 'bb_rnd_tele', 's', 1, 1, 0.3, '0', '0', '1', 3642, '1', '1', '1', '1', '1', 'teleport', 1, '0'),
(2785105, 'bb_gate_b', 'bb_blue_gate', 's', 1, 1, 0, '0', '0', '1', 3643, '1', '1', '1', '1', '1', 'bb_blue_gate', 1, '0'),
(2785106, 'bb_score_r', 'bb_score_r', 'i', 1, 1, 1, '0', '1', '0', 3644, '1', '1', '1', '1', '1', 'default', 2, '0'),
(2785107, 'bb_painimies1', 'bb_painimies1', 'i', 1, 1, 1, '0', '0', '1', 4341, '1', '1', '1', '1', '1', 'default', 3, '0'),
(2785077, 'bb_crnr', 'bb_crnr', 's', 1, 1, 1, '0', '0', '0', 3614, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20404, 'Efect Lido', 'avatar_effect29', 'e', 1, 1, 1, '0', '0', '0', 29, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20405, 'Effect Lido2', 'avatar_effect30', 'e', 1, 1, 1, '0', '0', '0', 30, '1', '1', '1', '1', '1', 'default', 1, '0'),
(20412, '', 'avatar_effect26', 'e', 1, 1, 1, '0', '0', '0', 26, '0', '0', '1', '0', '0', 'default', 1, '0'),
(20413, '', 'avatar_effect24', 'e', 1, 1, 1, '0', '0', '0', 24, '0', '0', '1', '0', '0', 'default', 1, '0');
--
-- Table structure for table `catalog_items`
--
CREATE TABLE `catalog_items` (
`id` int(10) unsigned NOT NULL auto_increment,
`page_id` int(11) NOT NULL,
`item_ids` varchar(120) NOT NULL,
`catalog_name` varchar(100) NOT NULL,
`cost_credits` int(11) NOT NULL,
`cost_pixels` int(11) NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=600039 ;
--
-- Dumping data for table `catalog_items`
--
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `amount`) VALUES
(1, 237, '19942', 'byesw_hand', 25, 0, 1),
(2, 237, '19943', 'byesw_hotel', 25, 0, 1),
(41, 15, '19896', 'wallpaper 19', 3, 0, 1),
(40, 15, '19896', 'wallpaper 18', 3, 0, 1),
(39, 15, '19896', 'wallpaper 17', 3, 0, 1),
(38, 15, '19896', 'wallpaper 16', 3, 0, 1),
(37, 15, '19896', 'wallpaper 15', 3, 0, 1),
(36, 15, '19896', 'wallpaper 14', 3, 0, 1),
(35, 15, '19896', 'wallpaper 13', 3, 0, 1),
(34, 15, '19896', 'wallpaper 12', 3, 0, 1),
(33, 15, '19896', 'wallpaper 11', 3, 0, 1),
(32, 15, '19896', 'wallpaper 10', 3, 0, 1),
(31, 15, '19896', 'wallpaper 9', 3, 0, 1),
(30, 15, '19896', 'wallpaper 8', 3, 0, 1),
(29, 15, '19896', 'wallpaper 7', 3, 0, 1),
(28, 15, '19896', 'wallpaper 6', 3, 0, 1),
(27, 15, '19896', 'wallpaper 5', 3, 0, 1),
(26, 15, '19896', 'wallpaper 4', 3, 0, 1),
(25, 15, '19896', 'wallpaper 3', 3, 0, 1),
(24, 15, '19896', 'wallpaper 2', 3, 0, 1),
(23, 15, '19896', 'wallpaper 1', 3, 0, 1),
(42, 15, '19896', 'wallpaper 20', 3, 0, 1),
(43, 15, '19896', 'wallpaper 21', 3, 0, 1),
(44, 15, '19896', 'wallpaper 22', 3, 0, 1),
(45, 15, '19896', 'wallpaper 23', 3, 0, 1),
(46, 15, '19896', 'wallpaper 24', 3, 0, 1),
(47, 15, '19896', 'wallpaper 25', 3, 0, 1),
(48, 15, '19896', 'wallpaper 26', 3, 0, 1),
(49, 15, '19896', 'wallpaper 27', 3, 0, 1),
(50, 15, '19896', 'wallpaper 28', 3, 0, 1),
(51, 15, '19896', 'wallpaper 29', 3, 0, 1),
(52, 15, '19896', 'wallpaper 30', 3, 0, 1),
(53, 15, '19896', 'wallpaper 31', 3, 0, 1),
(54, 15, '19894', 'a2 l', 3, 0, 1),
(55, 15, '19895', 'a2 t', 3, 0, 1),
(56, 15, '19926', 'landscape 1', 3, 0, 1),
(57, 15, '19926', 'landscape 2', 3, 0, 1),
(58, 15, '19926', 'landscape 3', 3, 0, 1),
(59, 15, '19926', 'landscape 4', 3, 0, 1),
(60, 15, '19926', 'landscape 5', 3, 0, 1),
(61, 15, '19926', 'landscape 6', 3, 0, 1),
(62, 15, '19926', 'landscape 7', 3, 0, 1),
(63, 15, '19926', 'landscape 8', 3, 0, 1),
(64, 15, '19926', 'landscape 9', 3, 0, 1),
(65, 15, '19926', 'landscape 10', 3, 0, 1),
(66, 15, '19926', 'landscape 11', 3, 0, 1),
(67, 15, '19926', 'landscape 12', 3, 0, 1),
(72, 55, '1', 'shelves_norja', 3, 0, 1),
(71, 55, '6', 'table_norja_med', 4, 0, 1),
(73, 55, '14', 'couch_norja', 4, 0, 1),
(74, 55, '15', 'chair_norja', 3, 0, 1),
(75, 55, '173', 'soft_sofachair_norja', 3, 0, 1),
(76, 55, '174', 'soft_sofa_norja', 4, 0, 1),
(101, 55, '501', 'shelves_norja*9', 3, 0, 1),
(78, 55, '479', 'table_norja_med*2', 3, 0, 1),
(79, 55, '480', 'table_norja_med*3', 3, 0, 1),
(80, 55, '481', 'table_norja_med*4', 3, 0, 1),
(81, 55, '482', 'table_norja_med*5', 3, 0, 1),
(82, 55, '483', 'table_norja_med*6', 3, 0, 1),
(83, 55, '484', 'table_norja_med*7', 3, 0, 1),
(85, 55, '485', 'table_norja_med*8', 3, 0, 1),
(86, 55, '486', 'table_norja_med*9', 3, 0, 1),
(87, 55, '487', 'couch_norja*2', 4, 0, 1),
(88, 55, '488', 'couch_norja*3', 4, 0, 1),
(89, 55, '489', 'couch_norja*4', 4, 0, 1),
(90, 1, '490', 'couch_norja*5', 4, 0, 1),
(91, 55, '491', 'couch_norja*6', 4, 0, 1),
(92, 55, '492', 'couch_norja*7', 4, 0, 1),
(93, 55, '493', 'couch_norja*8', 4, 0, 1),
(94, 55, '494', 'couch_norja*9', 4, 0, 1),
(95, 55, '495', 'shelves_norja*2', 3, 0, 1),
(96, 55, '496', 'shelves_norja*3', 3, 0, 1),
(97, 55, '497', 'shelves_norja*5', 3, 0, 1),
(98, 55, '498', 'shelves_norja*6', 3, 0, 1),
(99, 55, '499', 'shelves_norja*7', 3, 0, 1),
(100, 55, '500', 'shelves_norja*8', 3, 0, 1),
(140, 30, '2', 'shelves_polyfon', 3, 0, 1),
(103, 55, '502', 'chair_norja*2', 3, 0, 1),
(104, 55, '503', 'chair_norja*3', 3, 0, 1),
(105, 55, '504', 'chair_norja*4', 3, 0, 1),
(106, 55, '505', 'chair_norja*5', 3, 0, 1),
(107, 55, '506', 'chair_norja*6', 3, 0, 1),
(108, 55, '507', 'chair_norja*7', 3, 0, 1),
(109, 55, '508', 'chair_norja*8', 3, 0, 1),
(110, 55, '509', 'chair_norja*9', 3, 0, 1),
(111, 55, '518', 'soft_sofa_norja*2', 4, 0, 1),
(112, 55, '519', 'soft_sofa_norja*3', 4, 0, 1),
(113, 55, '520', 'soft_sofa_norja*4', 3, 0, 1),
(114, 55, '521', 'soft_sofa_norja*5', 4, 0, 1),
(115, 55, '522', 'soft_sofa_norja*6', 4, 0, 1),
(116, 55, '523', 'soft_sofa_norja*7', 4, 0, 1),
(391, 28, '1375', 'xmas08_icerug', 5, 0, 1),
(118, 55, '524', 'soft_sofa_norja*8', 4, 0, 1),
(387, 28, '1366', 'xmas08_trph1', 6, 0, 1),
(386, 28, '1364', 'xmas08_snowpl', 3, 0, 1),
(121, 55, '525', 'soft_sofa_norja*9', 4, 0, 1),
(123, 55, '526', 'soft_sofachair_norja*2', 3, 0, 1),
(124, 55, '527', 'soft_sofachair_norja*3', 3, 0, 1),
(125, 55, '528', 'soft_sofachair_norja*3', 3, 0, 1),
(126, 55, '530', 'soft_sofachair_norja*6', 3, 0, 1),
(127, 55, '531', 'soft_sofachair_norja*7', 3, 0, 1),
(128, 55, '529', 'soft_sofachair_norja*5', 3, 0, 1),
(129, 55, '532', 'soft_sofachair_norja*8', 3, 0, 1),
(130, 55, '533', 'soft_sofachair_norja*9', 3, 0, 1),
(131, 55, '658', 'solarium_norja', 3, 0, 1),
(132, 55, '659', 'solarium_norja*1', 3, 0, 1),
(133, 55, '660', 'solarium_norja*2', 3, 0, 1),
(134, 55, '661', 'solarium_norja*3', 3, 0, 1),
(135, 55, '662', 'solarium_norja*5', 3, 0, 1),
(136, 55, '663', 'solarium_norja*6', 3, 0, 1),
(137, 55, '664', 'solarium_norja*7', 3, 0, 1),
(138, 55, '665', 'solarium_norja*8', 3, 0, 1),
(139, 55, '666', 'solarium_norja*9', 3, 0, 1),
(141, 30, '4', 'table_polyfon_small', 2, 0, 1),
(142, 30, '5', 'chair_polyfon', 3, 0, 1),
(143, 30, '11', 'stand_polyfon_z', 1, 0, 1),
(144, 30, '16', 'table_polyfon_med', 3, 0, 1),
(145, 30, '19', 'sofachair_polyfon', 3, 0, 1),
(146, 30, '20', 'sofa_polyfon', 4, 0, 1),
(147, 30, '25', 'bed_polyfon', 4, 0, 1),
(148, 30, '26', 'bed_polyfon_one', 3, 0, 1),
(149, 30, '109', 'bar_polyfon', 3, 0, 1),
(150, 30, '46', 'fireplace_polyfon', 5, 0, 1),
(152, 30, '112', 'bardesk_polyfon', 3, 0, 1),
(153, 30, '113', 'bardeskcorner_polyfon', 3, 0, 1),
(154, 30, '133', 'table_polyfon', 4, 0, 1),
(155, 30, '134', 'smooth_table_polyfon', 4, 0, 1),
(156, 31, '135', 'sofachair_polyfon_girl', 3, 0, 1),
(157, 31, '136', 'bed_polyfon_girl_one', 3, 0, 1),
(158, 31, '137', 'bed_polyfon_girl', 4, 0, 1),
(159, 31, '138', 'sofa_polyfon_girl', 4, 0, 1),
(160, 31, '620', 'bardeskcorner_polyfon*5', 3, 0, 1),
(161, 31, '612', 'bardesk_polyfon*5', 3, 0, 1),
(162, 31, '628', 'divider_poly3*5', 6, 0, 1),
(163, 30, '216', 'divider_poly3', 6, 0, 1),
(260, 26, '1804', 'dimmer_fuse2', 6, 0, 1),
(259, 26, '1803', 'dimmer_swtch', 3, 0, 1),
(166, 30, '582', 'sofachair_polyfon*2', 3, 0, 1),
(258, 26, '1802', 'dimmer_fuse6', 6, 0, 1),
(168, 30, '583', 'sofachair_polyfon*3', 3, 0, 1),
(383, 37, '1798', 'ktchn_wall', 20, 0, 5),
(170, 30, '584', 'sofachair_polyfon*4', 3, 0, 1),
(171, 30, '585', 'sofachair_polyfon*6', 3, 0, 1),
(172, 30, '586', 'sofachair_polyfon*7', 3, 0, 1),
(173, 30, '587', 'sofachair_polyfon*8', 3, 0, 1),
(174, 30, '588', 'sofachair_polyfon*9', 3, 0, 1),
(175, 30, '589', 'sofa_polyfon*2', 4, 0, 1),
(176, 30, '590', 'sofa_polyfon*3', 4, 0, 1),
(177, 30, '591', 'sofa_polyfon*3', 4, 0, 1),
(178, 30, '592', 'sofa_polyfon*6', 3, 0, 1),
(179, 30, '593', 'sofa_polyfon*7', 3, 0, 1),
(180, 30, '594', 'sofa_polyfon*8', 4, 0, 1),
(181, 30, '595', 'sofa_polyfon*9', 4, 0, 1),
(182, 30, '596', 'bed_polyfon*3', 4, 0, 1),
(183, 30, '597', 'bed_polyfon*4', 4, 0, 1),
(184, 30, '598', 'bed_polyfon*6', 4, 0, 1),
(185, 30, '599', 'bed_polyfon*7', 4, 0, 1),
(186, 30, '600', 'bed_polyfon*8', 4, 0, 1),
(187, 30, '601', 'bed_polyfon*9', 4, 0, 1),
(188, 30, '602', 'bed_polyfon_one*2', 3, 0, 1),
(189, 30, '603', 'bed_polyfon_one*3', 3, 0, 1),
(190, 30, '604', 'bed_polyfon_one*4', 3, 0, 1),
(191, 30, '605', 'bed_polyfon_one*6', 3, 0, 1),
(192, 30, '606', 'bed_polyfon_one*7', 3, 0, 1),
(193, 30, '607', 'bed_polyfon_one*8', 3, 0, 1),
(194, 30, '608', 'bed_polyfon_one*9', 3, 0, 1),
(195, 30, '609', 'bardesk_polyfon*2', 3, 0, 500),
(196, 30, '610', 'bardesk_polyfon*3', 3, 0, 100),
(197, 30, '611', 'bardesk_polyfon*4', 3, 0, 1),
(198, 30, '604', 'bed_polyfon_one*4', 3, 0, 1),
(199, 30, '613', 'bardesk_polyfon*6', 3, 0, 1),
(200, 30, '614', 'bardesk_polyfon*7', 3, 0, 1),
(201, 615, '615', 'bardesk_polyfon*8', 3, 0, 1),
(202, 30, '616', 'bardesk_polyfon*9', 3, 0, 100),
(203, 30, '616', 'bardesk_polyfon*9', 3, 0, 1),
(204, 30, '617', 'bardeskcorner_polyfon*2', 3, 0, 15),
(205, 30, '618', 'bardeskcorner_polyfon*3', 3, 0, 1),
(206, 30, '619', 'bardeskcorner_polyfon*4', 3, 0, 1),
(207, 30, '621', 'bardeskcorner_polyfon*6', 3, 0, 1),
(208, 30, '622', 'bardeskcorner_polyfon*7', 3, 0, 1),
(209, 30, '623', 'bardeskcorner_polyfon*8', 3, 0, 1),
(210, 30, '624', 'bardeskcorner_polyfon*9', 3, 0, 1),
(222, 35, '32', 'bed_armas_two', 4, 0, 1),
(212, 30, '625', 'divider_poly3*2', 6, 0, 1),
(213, 30, '626', 'divider_poly3*3', 6, 0, 1),
(214, 30, '627', 'divider_poly3*4', 6, 0, 1),
(215, 30, '629', 'divider_poly3*6', 6, 0, 1),
(2138, 142, '329', 'toy1*3', 3, 0, 1),
(2335, 129, '1502', 'bump_road', 0, 1, 200),
(218, 30, '632', 'divider_poly3*9', 6, 0, 1),
(2118, 7, '20060', 'DEAL_HC_1', 0, 1, 1),
(390, 28, '1373', 'xmas08_icetree', 4, 0, 1),
(224, 35, '36', 'bench_armas', 3, 0, 1),
(225, 35, '37', 'table_armas', 4, 0, 1),
(226, 35, '38', 'small_table_armas', 3, 0, 1),
(227, 35, '39', 'small_chair_armas', 1, 0, 1),
(228, 35, '40', 'fireplace_armas', 5, 0, 1),
(229, 35, '41', 'lamp_armas', 3, 0, 1),
(230, 35, '42', 'bed_armas_one', 3, 0, 1),
(231, 35, '44', 'carpet_armas', 3, 0, 1),
(232, 35, '115', 'bar_armas', 4, 0, 1),
(233, 35, '116', 'bartable_armas', 4, 0, 1),
(234, 35, '117', 'bar_chair_armas', 1, 0, 1),
(235, 35, '176', 'lamp2_armas', 3, 0, 1),
(237, 24, '1693', 'window_single_default', 3, 0, 1),
(238, 24, '1694', 'window_double_default', 4, 0, 1),
(239, 24, '1695', 'noob_window_double', 4, 0, 1),
(240, 24, '1696', 'window_triple', 5, 0, 1),
(241, 24, '1697', 'window_square', 1, 0, 1),
(242, 24, '1698', 'window_romantic_wide', 4, 0, 1),
(243, 24, '1699', 'window_romantic_narrow', 3, 0, 1),
(244, 24, '1700', 'window_grunge', 2, 0, 1),
(245, 24, '1701', 'window_golden', 4, 0, 1),
(246, 24, '1702', 'window_chinese_wide', 6, 0, 1),
(264, 29, '178', 'door', 5, 0, 1),
(248, 24, '1703', 'window_chinese_narrow', 5, 0, 1),
(249, 24, '1704', 'window_basic', 3, 0, 1),
(250, 24, '1705', 'window_70s_wide', 5, 0, 1),
(251, 24, '1706', 'window_70s_narrow', 4, 0, 1),
(261, 26, '1805', 'dimmer_buttn', 3, 0, 1),
(257, 26, '1683', 'roomdimmer', 6, 0, 1),
(254, 24, '1712', 'window_hole', 2, 0, 1),
(255, 24, '1717', 'window_skyscraper', 18, 0, 5),
(389, 28, '1369', 'xmas08_hottub', 5, 0, 1),
(265, 29, '1100', 'teleport_door', 6, 0, 1),
(757, 73, '1787', 'sf_window', 7, 0, 1),
(756, 73, '1614', 'sf_roller', 7, 0, 1),
(268, 73, '1613', 'sf_tele', 5, 0, 1),
(269, 58, '1452', 'lostc_teleport', 5, 0, 1),
(271, 33, '3', 'shelves_silo', 3, 0, 1),
(272, 33, '7', 'table_silo_med', 3, 0, 1),
(273, 33, '12', 'chair_silo', 3, 0, 1),
(274, 33, '13', 'sofa_silo', 3, 0, 1),
(275, 33, '21', 'sofachair_silo', 3, 0, 1),
(276, 33, '29', 'bed_silo_one', 3, 0, 1),
(277, 33, '30', 'bed_silo_two', 4, 0, 1),
(278, 33, '31', 'table_silo_small', 2, 0, 1),
(279, 33, '221', 'divider_silo1', 3, 0, 100),
(280, 33, '223', 'divider_silo2', 3, 0, 100),
(281, 33, '225', 'divider_silo3', 6, 0, 1),
(282, 33, '461', 'barchair_silo', 3, 0, 1),
(283, 33, '534', 'sofachair_silo*2', 3, 0, 1),
(284, 33, '535', 'sofachair_silo*3', 3, 0, 1),
(285, 33, '536', 'sofachair_silo*4', 3, 0, 1),
(286, 33, '537', 'sofachair_silo*5', 3, 0, 1),
(287, 33, '538', 'sofachair_silo*6', 3, 0, 1),
(288, 33, '539', 'sofachair_silo*7', 3, 0, 1),
(289, 33, '540', 'sofachair_silo*8', 3, 0, 1),
(290, 33, '541', 'sofachair_silo*9', 3, 0, 1),
(291, 33, '542', 'table_silo_small*2', 2, 0, 1),
(292, 33, '543', 'table_silo_small*3', 2, 0, 1),
(293, 33, '544', 'table_silo_small*4', 2, 0, 1),
(294, 33, '545', 'table_silo_small*5', 2, 0, 1),
(295, 33, '546', 'table_silo_small*6', 2, 0, 1),
(296, 33, '547', 'table_silo_small*7', 2, 0, 1),
(297, 33, '548', 'table_silo_small*8', 2, 0, 1),
(298, 33, '549', 'table_silo_small*9', 3, 0, 1),
(299, 33, '550', 'divider_silo1*2', 3, 0, 1),
(300, 33, '551', 'divider_silo1*3', 3, 0, 1),
(301, 33, '552', 'divider_silo1*4', 3, 0, 1),
(302, 33, '553', 'divider_silo1*5', 3, 0, 1),
(303, 33, '554', 'divider_silo1*6', 3, 0, 1),
(304, 33, '555', 'divider_silo1*7', 3, 0, 1),
(305, 33, '556', 'divider_silo1*8', 3, 0, 1),
(306, 33, '557', 'divider_silo1*9', 3, 0, 1),
(307, 33, '558', 'divider_silo3*2', 6, 0, 1),
(308, 33, '559', 'divider_silo3*3', 6, 0, 1),
(309, 33, '560', 'divider_silo3*4', 6, 0, 1),
(310, 33, '561', 'divider_silo3*5', 6, 0, 1),
(311, 33, '562', 'divider_silo3*6', 6, 0, 1),
(312, 33, '563', 'divider_silo3*7', 6, 0, 1),
(313, 33, '564', 'divider_silo3*8', 6, 0, 1),
(314, 33, '565', 'divider_silo3*9', 6, 0, 1),
(315, 33, '566', 'table_silo_med*2', 3, 0, 1),
(316, 33, '567', 'table_silo_med*3', 3, 0, 1),
(317, 33, '568', 'table_silo_med*4', 3, 0, 1),
(318, 33, '569', 'table_silo_med*5', 3, 0, 1),
(319, 33, '570', 'table_silo_med*6', 3, 0, 1),
(320, 33, '571', 'table_silo_med*7', 3, 0, 1),
(321, 33, '572', 'table_silo_med*8', 3, 0, 1),
(322, 33, '573', 'table_silo_med*9', 3, 0, 1),
(323, 33, '574', 'sofa_silo*2', 4, 0, 1),
(324, 33, '575', 'sofa_silo*3', 4, 0, 1),
(325, 33, '576', 'sofa_silo*4', 4, 0, 1),
(326, 33, '577', 'sofa_silo*5', 4, 0, 1),
(327, 33, '578', 'sofa_silo*6', 4, 0, 1),
(328, 33, '579', 'sofa_silo*7', 4, 0, 1),
(329, 33, '580', 'sofa_silo*8', 4, 0, 1),
(330, 33, '581', 'sofa_silo*9', 4, 0, 1),
(331, 33, '633', 'chair_silo*2', 3, 0, 1),
(332, 33, '634', 'chair_silo*3', 3, 0, 1),
(333, 33, '635', 'chair_silo*4', 3, 0, 1),
(334, 33, '636', 'chair_silo*5', 3, 0, 1),
(335, 33, '637', 'chair_silo*5', 3, 0, 1),
(336, 33, '638', 'chair_silo*7', 3, 0, 1),
(337, 33, '639', 'chair_silo*8', 3, 0, 1),
(338, 33, '640', 'chair_silo*9', 3, 0, 1),
(339, 33, '657', 'silo_studydesk', 10, 0, 1),
(340, 33, '657', 'silo_studydesk', 10, 0, 1),
(341, 33, '675', 'safe_silo', 3, 0, 1),
(342, 33, '702', 'barchair_silo*2', 3, 0, 1),
(343, 33, '703', 'barchair_silo*3', 3, 0, 1),
(344, 33, '704', 'barchair_silo*4', 3, 0, 1),
(345, 33, '705', 'barchair_silo*5', 3, 0, 1),
(346, 33, '706', 'barchair_silo*6', 3, 0, 1),
(347, 33, '707', 'barchair_silo*6', 3, 0, 1),
(348, 33, '707', 'barchair_silo*7', 3, 0, 1),
(349, 33, '708', 'barchair_silo*8', 3, 0, 1),
(350, 33, '709', 'barchair_silo*9', 3, 0, 1),
(351, 33, '710', 'safe_silo*2', 3, 0, 1),
(352, 33, '711', 'safe_silo*3', 3, 0, 1),
(353, 33, '712', 'safe_silo*4', 3, 0, 1),
(354, 33, '713', 'safe_silo*5', 3, 0, 1),
(355, 33, '714', 'safe_silo*6', 3, 0, 1),
(356, 33, '715', 'safe_silo*7', 3, 0, 1),
(358, 33, '716', 'safe_silo*8', 3, 0, 1),
(359, 33, '717', 'safe_silo*9', 3, 0, 1),
(360, 33, '1043', 'safe_silo_pb', 5, 0, 1),
(364, 37, '1640', 'ktchn_light', 3, 0, 1),
(363, 37, '1639', 'ktchn_stove', 4, 0, 1),
(365, 37, '1641', 'ktchn_plates', 3, 0, 1),
(366, 37, '1642', 'ktchn_countr_1', 3, 0, 1),
(367, 37, '1643', 'ktchn_pots', 5, 0, 1),
(368, 37, '1644', 'ktchn_cornr', 3, 0, 1),
(369, 37, '1645', 'ktchn_desk', 3, 0, 1),
(370, 37, '1646', 'ktchn_trash', 3, 0, 1),
(371, 37, '1647', 'ktchn_countr_2', 4, 0, 1),
(372, 37, '1648', 'ktchn_bBlock', 5, 0, 1),
(373, 37, '1649', 'ktchn_dvdr', 3, 0, 1),
(374, 37, '1650', 'ktchn_inspctr', 5, 0, 1),
(375, 37, '1651', 'ktchn_fridge', 4, 0, 1),
(376, 37, '1653', 'ktchn_sink', 4, 0, 1),
(388, 28, '1368', 'xmas08_table', 3, 0, 1),
(378, 37, '1654', 'ktchn_gate', 6, 0, 1),
(379, 37, '1798', 'ktchn_wall', 8, 0, 1),
(380, 37, '1800', 'ktchn_oven', 3, 0, 1),
(381, 37, '1801', 'ktchn_knives', 3, 0, 1),
(392, 28, '1387', 'xmas08_geysir', 4, 0, 1),
(393, 28, '1391', 'xmas08_lantern', 3, 0, 1),
(394, 28, '1392', 'xmas08_chair', 3, 0, 1),
(395, 28, '1394', 'xmas08_telep', 6, 0, 1),
(396, 28, '1395', 'xmas08_cubetree', 3, 0, 1),
(397, 28, '1397', 'xmas08_dvdr1', 3, 0, 1),
(398, 28, '1398', 'xmas08_hole', 2, 0, 1),
(399, 28, '1401', 'xmas08_dvdr2', 3, 0, 1),
(400, 28, '1413', 'xmas08_trph2', 6, 0, 1),
(401, 28, '1738', 'xmas08_wallpaper', 3, 0, 1),
(402, 28, '1739', 'xmas08_icewall', 3, 0, 1),
(404, 39, '141', 'plant_pineapple', 3, 0, 1),
(405, 39, '142', 'plant_fruittree', 3, 0, 1),
(407, 39, '144', 'plant_bonsai', 2, 0, 1),
(408, 39, '145', 'plant_big_cactus', 3, 0, 1),
(409, 39, '146', 'plant_yukka', 3, 0, 1),
(410, 39, '152', 'plant_sunflower', 3, 0, 1),
(411, 39, '153', 'plant_rose', 3, 0, 1),
(412, 39, '816', 'plant_mazegate', 5, 0, 1),
(413, 39, '817', 'plant_maze', 1, 10, 10),
(414, 39, '818', 'plant_bulrush', 3, 0, 1),
(417, 38, '155', 'bath', 6, 0, 1),
(418, 38, '156', 'sink', 3, 0, 1),
(419, 38, '159', 'tile', 3, 0, 1),
(420, 38, '162', 'tile_red', 3, 0, 1),
(421, 38, '163', 'tile_yell', 3, 0, 1),
(422, 38, '157', 'toilet', 4, 0, 1),
(423, 38, '160', 'toilet_red', 4, 0, 1),
(424, 38, '161', 'toilet_yell', 4, 0, 1),
(425, 38, '158', 'duck', 1, 0, 1),
(426, 34, '1536', 'country_rain', 3, 0, 1),
(427, 34, '1537', 'country_scarecrow', 3, 0, 1),
(428, 34, '1539', 'country_soil', 5, 0, 100),
(429, 34, '1540', 'country_grass', 10, 0, 10),
(430, 34, '1543', 'country_trctr', 4, 0, 1),
(431, 34, '1544', 'country_fnc2', 3, 0, 5),
(432, 34, '1545', 'country_fnc1', 2, 0, 1),
(433, 34, '1546', 'country_well', 3, 0, 1),
(434, 34, '1548', 'country_rbw', 3, 0, 1),
(435, 34, '1549', 'country_wheat', 5, 0, 15),
(436, 34, '1550', 'country_gate', 6, 0, 1),
(437, 34, '1552', 'country_stage', 4, 0, 1),
(438, 34, '1557', 'country_log', 3, 0, 1),
(439, 34, '1558', 'country_fnc3', 3, 0, 1),
(440, 34, '1559', 'country_patio', 1, 0, 1),
(441, 34, '1560', 'country_corner', 3, 0, 1),
(442, 34, '1561', 'country_ditch', 3, 0, 1),
(443, 34, '1777', 'country_forestwall', 4, 0, 25),
(444, 34, '1778', 'country_fp', 4, 0, 1),
(445, 34, '1779', 'country_wall', 3, 0, 5),
(446, 34, '1780', 'country_lantern', 3, 0, 1),
(448, 34, '1779', 'country_wall', 15, 0, 5),
(449, 40, '43', 'carpet_standard', 3, 0, 1),
(450, 40, '45', 'carpet_polar', 3, 0, 1),
(451, 40, '52', 'carpet_standard*1', 3, 0, 1),
(452, 40, '60', 'carpet_standard*2', 3, 0, 1),
(453, 40, '66', 'carpet_standard*3', 3, 0, 1),
(454, 40, '66', 'carpet_standard*3', 3, 0, 1),
(455, 40, '73', 'carpet_standard*4', 3, 0, 1),
(456, 40, '77', 'carpet_standard*5', 3, 0, 1),
(457, 40, '102', 'carpet_standard*6', 3, 0, 1),
(458, 40, '118', 'carpet_soft', 3, 0, 1),
(459, 40, '119', 'carpet_soft*1', 3, 0, 1),
(460, 40, '120', 'carpet_soft*2', 3, 0, 1),
(461, 40, '121', 'carpet_soft*3', 3, 0, 1),
(462, 40, '122', 'carpet_soft*4', 3, 0, 1),
(463, 40, '123', 'carpet_soft*5', 3, 0, 1),
(464, 40, '124', 'carpet_soft*6', 3, 0, 1),
(465, 40, '127', 'carpet_polar*1', 3, 0, 1),
(466, 40, '129', 'carpet_polar*2', 3, 0, 1),
(467, 40, '130', 'carpet_polar*3', 3, 0, 1),
(468, 40, '131', 'carpet_polar*4', 3, 0, 1),
(469, 40, '147', 'carpet_standard*7', 3, 0, 1),
(470, 40, '148', 'carpet_standard*8', 3, 0, 1),
(471, 40, '149', 'carpet_standard*9', 3, 0, 1),
(472, 40, '150', 'carpet_standard*10', 3, 0, 1),
(473, 40, '151', 'carpet_standard*11', 3, 0, 1),
(475, 41, '1781', 'flag_norway', 3, 0, 1),
(476, 41, '1795', 'flag_belgium', 3, 0, 1),
(477, 41, '1796', 'flag_portugal', 3, 0, 1),
(481, 27, '190', 'xmasduck', 1, 0, 1),
(482, 27, '263', 'rare_xmas_screen', 6, 0, 1),
(483, 28, '1035', 'xmas_icelamp', 3, 0, 1),
(485, 27, '1036', 'xmas_cstl_wall', 5, 0, 1),
(486, 27, '1037', 'xmas_cstl_twr', 5, 0, 1),
(487, 27, '1038', 'xmas_cstl_gate', 5, 0, 1),
(488, 27, '1378', 'xmas_snow', 3, 0, 1),
(489, 27, '1378', 'xmas_snow', 20, 0, 10),
(490, 27, '1676', 'xmas_light', 3, 0, 1),
(513, 27, '193', 'tree3', 3, 0, 1),
(496, 27, '19973', 'xm09_table', 5, 0, 1),
(493, 27, '19971', 'xm09_man_b', 3, 0, 1),
(833, 57, '669', 'chair_china', 3, 0, 1),
(495, 27, '19972', 'xm09_man_c', 3, 0, 1),
(497, 27, '19974', 'xm09_bench', 5, 0, 1),
(2120, 7, '20060', 'DEAL_HC_2', 0, 2, 3),
(499, 27, '19977', 'xm09_forestwall', 3, 0, 1),
(500, 27, '19978', 'xm09_lodgewall', 3, 0, 1),
(501, 27, '19979', 'xm09_bauble_25', 3, 0, 1),
(502, 27, '19976', 'xm09_firwall', 3, 0, 1),
(503, 27, '19980', 'xm09_bauble_26', 3, 0, 1),
(512, 27, '187', 'pudding', 3, 0, 1),
(505, 27, '19982', 'xm09_bauble_27', 3, 0, 1),
(506, 27, '19983', 'xm09_bauble_23', 3, 0, 1),
(507, 27, '19984', 'xm09_bauble_24', 3, 0, 1),
(508, 27, '19985', 'xm09_candyCane', 3, 0, 1),
(509, 27, '19986', 'xm09_stocking', 3, 0, 1),
(514, 27, '194', 'tree4', 3, 0, 1),
(515, 27, '195', 'tree5', 3, 0, 1),
(516, 27, '1039', 'tree7', 3, 0, 1),
(517, 27, '1040', 'tree6', 3, 0, 1),
(518, 27, '1046', 'christmas_sleigh', 6, 0, 1),
(519, 27, '1047', 'christmas_reindeer', 5, 0, 1),
(520, 27, '1048', 'christmas_poop', 1, 0, 1),
(522, 27, '192', 'triplecandle', 3, 0, 1),
(523, 27, '198', 'rcandleset', 3, 0, 1),
(524, 27, '270', 'rcandle', 2, 0, 1),
(555, 77, '1305', 'greek_corner', 3, 0, 1),
(528, 27, '19989', 'xm09_man_a', 3, 0, 1),
(1117, 43, '125', 'red_tv', 3, 0, 10),
(531, 27, '19981', 'xm09_bauble_27', 3, 0, 1),
(532, 28, '1374', 'campfire', 4, 0, 1),
(533, 76, '200', 'valeduck', 1, 0, 1),
(534, 76, '245', 'valentinescreen', 5, 0, 1),
(556, 77, '1306', 'greek_gate', 6, 0, 1),
(536, 76, '811', 'plant_valentinerose*3', 3, 0, 1),
(537, 76, '812', 'plant_valentinerose*5', 3, 0, 1),
(538, 76, '813', 'plant_valentinerose*2', 3, 0, 1),
(539, 76, '814', 'plant_valentinerose*4', 3, 0, 1),
(540, 76, '815', 'plant_valentinerose*1', 3, 0, 1),
(541, 76, '820', 'carpet_valentine', 6, 0, 1),
(542, 76, '1092', 'val_teddy*1', 3, 0, 1),
(543, 76, '1093', 'val_teddy*2', 3, 0, 1),
(544, 76, '1094', 'val_teddy*3', 3, 0, 1),
(545, 76, '1095', 'val_teddy*4', 3, 1, 15),
(546, 76, '1096', 'val_teddy*4', 3, 0, 1),
(547, 76, '1097', 'val_teddy*6', 3, 0, 1),
(548, 76, '1098', 'val_randomizer', 8, 0, 1),
(549, 76, '1099', 'val_choco', 3, 0, 1),
(550, 76, '1669', 'val_heart', 3, 0, 1),
(551, 76, '1656', 'post.it.vd', 3, 0, 30),
(552, 76, '199', 'statue', 4, 0, 1),
(553, 76, '201', 'heartsofa', 3, 0, 1),
(557, 77, '1307', 'greek_pillars', 3, 0, 1),
(558, 77, '1308', 'greek_seat', 2, 0, 1),
(564, 71, '1623', 'rela_candle1', 3, 0, 1),
(560, 42, '1310', 'a0 greektrophy_s', 10, 0, 1),
(561, 42, '1311', 'a0 greektrophy_b', 10, 0, 1),
(562, 77, '1312', 'greek_block', 4, 0, 1),
(563, 42, '1309', 'a0 greektrophy_g', 10, 0, 1),
(2108, 42, '20051', 'ads_twi_trophy', 10, 0, 1),
(566, 71, '1625', 'rela_candles2', 3, 0, 1),
(766, 72, '796', 'romantique_pianochair*5', 2, 0, 1),
(568, 71, '1627', 'rela_hchair', 5, 0, 1),
(569, 71, '1628', 'rela_candle2', 3, 0, 1),
(570, 71, '1632', 'rela_candle3', 3, 0, 1),
(571, 71, '1634', 'rela_plant', 4, 0, 1),
(572, 71, '1635', 'rela_candles1', 3, 0, 1),
(573, 71, '1636', 'rela_candles3', 3, 0, 1),
(574, 71, '1637', 'rela_orchid', 5, 0, 1),
(575, 71, '1638', 'rela_rock', 4, 0, 1),
(576, 71, '1794', 'rela_wall', 4, 0, 1),
(578, 59, '209', 'basket', 3, 0, 1),
(579, 59, '208', 'bunny', 3, 0, 1),
(580, 59, '207', 'easterduck', 1, 0, 1),
(581, 59, '210', 'birdie', 4, 0, 1),
(584, 56, '1124', 'arabian_teamk', 4, 0, 1),
(585, 56, '1125', 'arabian_snake', 3, 0, 1),
(586, 56, '1126', 'arabian_rug', 6, 0, 1),
(587, 56, '1127', 'arabian_pllw', 3, 0, 1),
(588, 56, '1128', 'arabian_divdr', 3, 0, 1),
(589, 56, '1129', 'arabian_chair', 3, 0, 1),
(590, 56, '1130', 'arabian_bigtb', 6, 0, 1),
(591, 56, '1131', 'arabian_tetbl', 3, 0, 1),
(592, 56, '1132', 'arabian_tray1', 3, 0, 1),
(600, 63, '451', 'sporttrack1*1', 3, 0, 1),
(594, 56, '1134', 'arabian_tray3', 3, 0, 1),
(595, 56, '1135', 'arabian_tray4', 3, 0, 1),
(596, 56, '1688', 'arabian_swords', 4, 0, 1),
(597, 56, '1689', 'arabian_wndw', 2, 0, 1),
(598, 56, '1133', 'arabian_tray2', 3, 0, 1),
(601, 63, '452', 'sporttrack1*3', 3, 0, 1),
(602, 63, '453', 'sporttrack1*2', 3, 0, 1),
(603, 63, '454', 'sporttrack2*1', 3, 0, 1),
(604, 63, '455', 'sporttrack2*2', 3, 0, 1),
(605, 63, '456', 'sporttrack2*3', 3, 0, 1),
(606, 63, '457', 'sporttrack3*1', 3, 0, 1),
(607, 63, '458', 'sporttrack3*2', 3, 0, 1),
(608, 63, '459', 'sporttrack3*3', 3, 0, 1),
(609, 63, '293', 'hockey_light', 4, 0, 1),
(610, 63, '292', 'hockey_score', 5, 0, 1),
(611, 63, '243', 'bench_lego', 3, 0, 1),
(612, 63, '242', 'carpet_legocourt', 4, 0, 1),
(613, 63, '244', 'legotrophy', 3, 0, 1),
(615, 63, '460', 'footylamp', 3, 0, 1),
(617, 64, '1017', 'grunge_chair', 3, 0, 1),
(618, 64, '1018', 'grunge_mattress', 4, 0, 1),
(619, 64, '1019', 'grunge_radiator', 3, 0, 1),
(620, 64, '1020', 'grunge_shelf', 4, 0, 1),
(621, 64, '1022', 'grunge_table', 4, 0, 1),
(622, 64, '1021', 'grunge_sign', 3, 0, 1),
(623, 64, '1110', 'grunge_candle', 2, 0, 1),
(624, 64, '1111', 'grunge_bench', 4, 0, 1),
(625, 64, '1112', 'grunge_barrel', 3, 0, 1),
(626, 64, '1700', 'window_grunge', 2, 0, 1),
(628, 67, '844', 'jp_tatami2', 4, 0, 1),
(629, 67, '845', 'jp_tatami', 3, 0, 15),
(630, 67, '847', 'jp_bamboo', 5, 0, 1),
(631, 67, '848', 'jp_irori', 5, 0, 1),
(632, 67, '849', 'jp_pillow', 2, 0, 1),
(633, 67, '937', 'jp_lantern', 3, 0, 1),
(634, 67, '965', 'jp_drawer', 3, 0, 1),
(635, 67, '1118', 'jp_tray6', 3, 0, 1),
(636, 67, '1119', 'jp_tray5', 3, 0, 1),
(637, 67, '1120', 'jp_tray4', 3, 0, 1),
(638, 67, '1121', 'jp_tray3', 3, 0, 1),
(639, 67, '1122', 'jp_tray2', 3, 0, 1),
(640, 67, '1123', 'jp_tray1', 3, 0, 1),
(641, 67, '1150', 'jp_table', 5, 0, 1),
(642, 67, '1151', 'jp_rare', 6, 0, 1),
(643, 67, '1152', 'jp_katana3', 3, 0, 1),
(644, 67, '1153', 'jp_katana2', 3, 0, 1),
(645, 67, '1154', 'jp_katana1', 3, 0, 1),
(646, 67, '1197', 'jp_teamaker', 4, 0, 1),
(647, 67, '1671', 'jp_ninjastars', 4, 0, 1),
(648, 67, '1685', 'jp_sheet3', 3, 0, 1),
(649, 67, '1686', 'jp_sheet2', 3, 0, 1),
(650, 67, '1687', 'jp_sheet1', 3, 0, 1),
(651, 75, '969', 'summer_grill*1', 3, 0, 1),
(652, 75, '970', 'summer_grill*2', 3, 0, 1),
(653, 75, '971', 'summer_grill*3', 3, 0, 1),
(654, 75, '972', 'summer_grill*4', 3, 0, 1),
(655, 75, '973', 'summer_chair*1', 3, 0, 1),
(656, 75, '974', 'summer_chair*2', 3, 0, 1),
(657, 75, '975', 'summer_chair*3', 3, 0, 1),
(658, 75, '976', 'summer_chair*4', 3, 0, 1),
(659, 75, '977', 'summer_chair*5', 3, 0, 1),
(660, 75, '978', 'summer_chair*6', 3, 0, 1),
(661, 75, '979', 'summer_chair*7', 3, 0, 1),
(662, 75, '980', 'summer_chair*8', 3, 0, 1),
(663, 75, '981', 'summer_chair*9', 3, 0, 1),
(664, 75, '1003', 'summer_pool*1', 5, 0, 1),
(665, 75, '1004', 'summer_pool*2', 5, 0, 1),
(666, 75, '1005', 'summer_pool*3', 5, 0, 1),
(667, 75, '1006', 'summer_pool*4', 5, 0, 1),
(668, 75, '1616', 'summer_raft1', 4, 0, 1),
(669, 75, '1618', 'summer_raft2', 4, 0, 1),
(670, 75, '1620', 'summer_icebox', 3, 0, 1),
(671, 66, '19938', 'hween09_floor', 3, 0, 1),
(672, 66, '19938', 'hween09_floor', 25, 0, 10),
(673, 66, '19939', 'hween09_jar', 3, 0, 1),
(674, 66, '19941', 'hween09_organ', 5, 0, 1),
(675, 66, '19944', 'hween09_table', 6, 0, 1),
(676, 66, '19945', 'hween09_chair', 3, 0, 1),
(677, 66, '19946', 'hween09_mirror', 4, 0, 1),
(678, 66, '19947', 'hween09_hatch', 6, 0, 1),
(679, 66, '19948', 'hween09_ghost', 3, 0, 1),
(680, 66, '19949', 'hween09_tv', 3, 0, 1),
(681, 66, '19950', 'hween09_chandelier', 5, 0, 1),
(682, 66, '19951', 'hween09_crnr1', 3, 0, 1),
(683, 66, '19952', 'hween09_paint', 3, 0, 1),
(684, 66, '19953', 'hween09_treewall', 3, 0, 1),
(685, 66, '19954', 'hween09_wall1', 3, 0, 1),
(686, 66, '19955', 'hween09_stonewall', 3, 0, 1),
(687, 66, '19956', 'hween09_win', 4, 0, 1),
(688, 66, '181', 'pumpkin', 3, 0, 1),
(694, 66, '185', 'deadduck3', 1, 0, 1),
(690, 66, '182', 'skullcandle', 3, 0, 1),
(693, 66, '184', 'deadduck2', 1, 0, 1),
(695, 66, '183', 'deadduck', 1, 0, 1),
(697, 88, '1334', 'hween08_sink', 3, 0, 1),
(698, 88, '1335', 'hween08_curtain', 5, 0, 1),
(699, 88, '1336', 'hween08_bath', 6, 0, 1),
(700, 88, '1337', 'hween08_defibs', 3, 0, 1),
(701, 88, '1338', 'hween08_bbag', 5, 0, 1),
(702, 88, '1339', 'hween08_curtain2', 5, 0, 1),
(703, 88, '1340', 'hween08_defibs2', 3, 0, 1),
(704, 88, '1341', 'hween08_bed', 4, 0, 1),
(705, 88, '1342', 'hween08_sink2', 3, 0, 1),
(706, 88, '1343', 'hween08_bed2', 4, 0, 1),
(707, 88, '1344', 'hween08_bath2', 4, 0, 1),
(708, 88, '1345', 'hween08_manhole', 3, 0, 1),
(709, 88, '1346', 'hween08_trll', 3, 0, 1),
(710, 88, '1721', 'hween08_rad', 3, 0, 1),
(711, 88, '1722', 'hween08_wndwb', 3, 0, 1),
(712, 88, '1723', 'hween08_wndw', 4, 0, 1),
(713, 88, '1724', 'hween08_bio', 3, 0, 1),
(714, 74, '1419', 'bolly_lotus_pool', 4, 0, 1),
(715, 74, '1422', 'bolly_petals', 3, 0, 1),
(716, 74, '1423', 'bolly_tree', 3, 0, 1),
(717, 74, '1424', 'bolly_swing', 4, 0, 1),
(718, 74, '1425', 'bolly_pillow', 3, 0, 1),
(719, 74, '1426', 'bolly_corner', 3, 0, 1),
(720, 74, '1427', 'bolly_phant', 5, 0, 1),
(721, 74, '1428', 'bolly_monkey_lamp', 4, 0, 1),
(722, 74, '1429', 'bolly_drapeb', 4, 0, 1),
(723, 74, '1431', 'bolly_lamp', 3, 0, 1),
(724, 74, '1432', 'bolly_desk', 3, 0, 1),
(725, 74, '1433', 'bolly_vase', 3, 0, 1),
(726, 74, '1434', 'bolly_tile2', 3, 0, 1),
(727, 74, '1435', 'bolly_table', 4, 0, 1),
(728, 74, '1436', 'bolly_drapec', 4, 0, 1),
(729, 74, '1437', 'bolly_fountain', 5, 0, 1),
(735, 73, '1593', 'SF_reactor', 5, 0, 1),
(731, 74, '1439', 'bolly_tile1', 3, 0, 1),
(732, 74, '1440', 'bolly_drapea', 4, 0, 1),
(733, 74, '1749', 'bolly_wdw_wd', 4, 0, 1),
(736, 73, '1594', 'SF_crate_2', 3, 0, 1),
(737, 73, '1595', 'SF_chair_blue', 3, 0, 1),
(738, 73, '1596', 'sf_pod', 4, 0, 1),
(739, 73, '1597', 'SF_panel1', 3, 0, 1),
(740, 73, '1598', 'SF_table', 3, 0, 1),
(741, 73, '1602', 'SF_panel2', 3, 0, 1),
(742, 73, '1603', 'sf_gate', 6, 0, 1),
(743, 73, '1599', 'SF_chair_green', 3, 0, 1),
(744, 73, '1600', 'SF_crate_1', 2, 0, 1),
(745, 73, '1601', 'SF_alien', 4, 0, 1),
(746, 73, '1605', 'SF_floor_2', 3, 0, 1),
(747, 73, '1604', 'SF_panel3', 5, 0, 1),
(748, 73, '1606', 'SF_lamp', 3, 0, 1),
(749, 73, '1607', 'SF_chair_red', 3, 0, 1),
(750, 73, '1608', 'sf_floor', 3, 0, 1),
(751, 73, '1609', 'sf_roof', 5, 0, 1),
(752, 73, '1610', 'sf_stick', 3, 0, 1),
(753, 73, '1611', 'SF_floor_1', 3, 0, 1),
(759, 73, '1791', 'sf_wall3', 6, 0, 1),
(758, 73, '1788', 'sf_wall2', 6, 0, 1),
(765, 72, '795', 'romantique_pianochair*3', 2, 0, 1),
(767, 72, '797', 'romantique_pianochair*2', 2, 0, 1),
(768, 72, '798', 'romantique_pianochair*4', 2, 0, 1),
(769, 72, '799', 'romantique_pianochair*1', 2, 0, 1),
(770, 72, '800', 'romantique_divan*3', 4, 0, 1),
(771, 72, '801', 'romantique_divan*5', 4, 0, 1),
(772, 72, '802', 'romantique_divan*2', 4, 0, 1),
(773, 72, '803', 'romantique_divan*4', 4, 0, 1),
(774, 72, '804', 'romantique_divan*1', 4, 0, 1),
(775, 72, '805', 'romantique_chair*3', 3, 0, 1),
(776, 72, '806', 'romantique_chair*5', 3, 0, 1),
(777, 72, '807', 'romantique_chair*2', 3, 0, 1),
(778, 72, '808', 'romantique_chair*4', 3, 0, 1),
(779, 72, '809', 'romantique_chair*1', 3, 0, 1),
(780, 72, '832', 'romantique_tray2', 3, 0, 1),
(781, 72, '833', 'romantique_tray1', 3, 0, 1),
(782, 72, '834', 'romantique_smalltabl*3', 2, 0, 1),
(783, 72, '835', 'romantique_smalltabl*5', 2, 0, 1),
(784, 72, '836', 'romantique_smalltabl*2', 2, 0, 1),
(785, 72, '837', 'romantique_smalltabl*4', 2, 0, 1),
(786, 72, '838', 'romantique_smalltabl*1', 2, 0, 1),
(787, 72, '839', 'romantique_mirrortabl', 3, 0, 1),
(788, 72, '840', 'romantique_divider*3', 3, 0, 1),
(789, 72, '841', 'romantique_divider*2', 3, 0, 1),
(790, 72, '842', 'romantique_divider*4', 3, 0, 1),
(791, 72, '843', 'romantique_divider*1', 3, 0, 1),
(792, 72, '891', 'romantique_clock', 5, 0, 1),
(793, 69, '1347', 'party_table', 3, 0, 1),
(794, 69, '1348', 'party_discol', 5, 0, 1),
(795, 69, '1349', 'party_block2', 4, 0, 1),
(796, 69, '1350', 'party_barcorn', 3, 0, 1),
(797, 69, '1351', 'party_chair', 3, 0, 1),
(798, 69, '1352', 'party_block', 2, 0, 1),
(799, 69, '1353', 'party_ravel', 5, 0, 1),
(800, 69, '1354', 'party_tube_lava', 4, 0, 1),
(801, 69, '1355', 'party_tray', 3, 0, 1),
(802, 69, '1356', 'party_djtable', 4, 0, 1),
(803, 69, '1357', 'party_floor', 3, 0, 10),
(804, 69, '1358', 'party_ball', 3, 0, 1),
(805, 69, '1359', 'party_tube_bubble', 4, 0, 1),
(806, 69, '1360', 'party_mic', 3, 0, 1),
(807, 69, '1361', 'party_beamer', 5, 0, 1),
(808, 69, '1362', 'party_bardesk', 3, 0, 1),
(809, 69, '1363', 'party_seat', 3, 0, 1),
(810, 69, '1729', 'party_wc_boy', 3, 0, 1),
(811, 69, '1730', 'party_led', 4, 0, 1),
(812, 69, '1731', 'party_neon5', 3, 0, 1),
(813, 69, '1732', 'party_neon1', 3, 0, 1),
(814, 69, '1733', 'party_neon2', 3, 0, 1),
(815, 69, '1734', 'party_wc_girl', 3, 0, 1),
(816, 69, '1735', 'party_neon3', 3, 0, 1),
(817, 69, '1736', 'party_shelf', 4, 0, 1),
(818, 69, '1737', 'party_neon4', 3, 0, 1),
(822, 29, '179', 'doorB', 3, 0, 1),
(821, 29, '180', 'doorC', 4, 0, 1),
(824, 94, '227', 'spyro', 10, 0, 1),
(825, 94, '202', 'throne', 10, 0, 1),
(826, 94, '203', 'samovar', 10, 0, 1),
(827, 94, '110', 'plant_cruddy', 10, 0, 1),
(1118, 43, '126', 'wood_tv', 4, 0, 1),
(830, 94, '273', 'djesko_turntable', 10, 0, 1),
(834, 57, '670', 'china_table', 3, 0, 1),
(835, 57, '682', 'china_shelve', 4, 0, 1),
(836, 57, '700', 'wall_china', 4, 0, 1),
(837, 57, '701', 'corner_china', 4, 0, 1),
(838, 57, '1418', 'china_moongt', 5, 0, 1),
(839, 57, '1420', 'china_ox', 3, 0, 1),
(840, 57, '1746', 'china_pstr2', 3, 0, 1),
(846, 60, '1000', 'exe_rug', 20, 0, 6),
(842, 57, '1747', 'china_light', 3, 0, 1),
(843, 57, '1748', 'china_pstr1', 3, 0, 1),
(845, 60, '1000', 'exe_rug', 4, 0, 1),
(847, 60, '1001', 'exe_s_table', 4, 0, 1),
(848, 60, '1049', 'exe_bardesk', 2, 0, 25),
(849, 60, '1050', 'exe_chair', 3, 0, 1),
(850, 60, '1051', 'exe_chair2', 3, 0, 1),
(851, 60, '1052', 'exe_corner', 2, 0, 10),
(852, 60, '1053', 'exe_drinks', 3, 0, 1),
(853, 60, '1054', 'exe_sofa', 3, 0, 1),
(1758, 123, '1061', 'noob_table*1', 0, 100, 1),
(855, 60, '1055', 'exe_table', 6, 0, 1),
(856, 60, '1091', 'exe_plant', 3, 0, 1),
(857, 60, '1510', 'exe_light', 3, 0, 1),
(858, 60, '1517', 'exe_gate', 6, 0, 1),
(859, 60, '1521', 'exe_cubelight', 3, 0, 1),
(860, 60, '1523', 'exe_artlamp', 3, 0, 1),
(861, 60, '1771', 'exe_map', 5, 0, 1),
(862, 60, '1772', 'exe_wfall', 4, 0, 1),
(863, 58, '1449', 'lc_tile1', 3, 0, 1),
(865, 58, '1451', 'lc_crab2', 3, 0, 1),
(866, 58, '1454', 'lc_coral_divider_hi', 4, 0, 1),
(867, 58, '1456', 'lc_tubes_corners', 3, 0, 1),
(868, 58, '1457', 'lc_table', 4, 0, 1),
(869, 58, '1458', 'lc_tile2', 3, 0, 1),
(870, 58, '1459', 'lc_anemone', 4, 0, 1),
(871, 58, '1461', 'lc_glass_floor', 4, 0, 1),
(872, 58, '1460', 'lc_coral_divider_low', 3, 0, 1),
(874, 58, '1462', 'lc_medusa1', 4, 0, 1),
(875, 58, '1463', 'lc_crab1', 4, 0, 1),
(876, 58, '1466', 'lc_tubes_straight', 3, 0, 1),
(877, 58, '1470', 'lc_corner', 3, 0, 1),
(878, 58, '1471', 'lc_stool', 3, 0, 1),
(879, 58, '1472', 'lc_chair', 3, 0, 1),
(880, 58, '1473', 'lc_desk', 3, 0, 1),
(881, 58, '1755', 'lc_wall1', 5, 0, 1),
(882, 58, '1756', 'lc_window2', 5, 0, 1),
(883, 58, '1757', 'lc_window1', 3, 0, 1),
(884, 58, '1759', 'lc_wall2', 5, 0, 1),
(890, 42, '296', 'a0 prizetrophy3_b', 10, 0, 1),
(889, 42, '295', 'a0 prizetrophy2_b', 10, 0, 1),
(891, 42, '297', 'a0 prizetrophy4_b', 10, 0, 1),
(892, 42, '298', 'a0 prizetrophy5_b', 10, 0, 1),
(893, 42, '299', 'a0 prizetrophy1_g', 10, 0, 1),
(894, 42, '300', 'a0 prizetrophy2_g', 10, 0, 1),
(895, 42, '301', 'a0 prizetrophy3_g', 10, 0, 1),
(896, 42, '302', 'a0 prizetrophy4_g', 10, 0, 1),
(897, 42, '303', 'a0 prizetrophy4_g', 10, 0, 1),
(898, 42, '304', 'a0 prizetrophy6_g', 10, 0, 1),
(899, 42, '305', 'a0 prizetrophy1_s', 10, 0, 1),
(900, 42, '306', 'a0 prizetrophy2_s', 10, 0, 1),
(901, 42, '307', 'a0 prizetrophy3_s', 10, 0, 1),
(902, 42, '308', 'a0 prizetrophy4_s', 10, 0, 1),
(903, 42, '309', 'a0 prizetrophy5_s', 10, 0, 1),
(904, 42, '310', 'a0 prizetrophy6_s', 10, 0, 1),
(905, 42, '311', 'a0 prizetrophy1_b', 10, 0, 1),
(906, 93, '335', 'a0 prizetrophy7_b', 10, 0, 1),
(1386, 8, '1313', 'hcc_table', 4, 0, 1),
(908, 93, '336', 'a0 prizetrophy7_g', 10, 0, 1),
(909, 93, '337', 'a0 prizetrophy7_s', 10, 0, 1),
(910, 42, '1115', 'a0 prizetrophy5_g', 10, 0, 1),
(911, 93, '1615', 'prizetrophy_hot', 10, 0, 1),
(912, 93, '1617', 'prizetrophy_cool', 10, 0, 1),
(913, 32, '171', 'bar_basic', 4, 0, 1),
(914, 32, '172', 'shelves_basic', 3, 0, 10),
(915, 32, '175', 'lamp_basic', 3, 0, 1),
(916, 32, '177', 'fridge', 6, 0, 1),
(987, 65, '890', 'rope_divider', 5, 0, 25),
(918, 32, '893', 'pura_mdl5*2', 3, 0, 1),
(919, 32, '894', 'pura_mdl5*3', 3, 0, 1),
(920, 32, '895', 'pura_mdl5*4', 3, 0, 1),
(921, 32, '896', 'pura_mdl5*5', 3, 0, 1),
(922, 32, '897', 'pura_mdl5*6', 3, 0, 1),
(923, 32, '898', 'pura_mdl5*7', 3, 0, 1),
(924, 32, '899', 'pura_mdl5*8', 3, 0, 1),
(925, 32, '900', 'pura_mdl5*9', 3, 0, 1),
(926, 32, '901', 'pura_mdl4*1', 3, 0, 1),
(927, 32, '902', 'pura_mdl4*2', 3, 0, 1),
(928, 32, '903', 'pura_mdl4*3', 3, 0, 1),
(929, 32, '904', 'pura_mdl4*4', 3, 0, 1),
(930, 32, '905', 'pura_mdl4*5', 3, 0, 1),
(931, 32, '906', 'pura_mdl4*6', 3, 0, 1),
(932, 32, '907', 'pura_mdl4*7', 3, 0, 1),
(933, 32, '908', 'pura_mdl4*8', 3, 0, 1),
(934, 32, '909', 'pura_mdl4*9', 3, 0, 5),
(935, 32, '910', 'pura_mdl3*1', 3, 0, 1),
(936, 32, '911', 'pura_mdl3*2', 3, 0, 1),
(937, 32, '912', 'pura_mdl3*3', 3, 0, 1),
(938, 32, '913', 'pura_mdl3*4', 3, 0, 1),
(939, 32, '914', 'pura_mdl3*5', 3, 0, 1),
(940, 32, '915', 'pura_mdl3*6', 3, 0, 1),
(941, 32, '916', 'pura_mdl3*7', 3, 0, 1),
(942, 32, '917', 'pura_mdl3*8', 3, 0, 1),
(943, 32, '918', 'pura_mdl3*9', 3, 0, 10),
(944, 32, '919', 'pura_mdl2*1', 3, 0, 1),
(945, 32, '920', 'pura_mdl2*2', 3, 0, 1),
(947, 32, '921', 'pura_mdl2*3', 3, 0, 1),
(948, 32, '922', 'pura_mdl2*4', 3, 0, 1),
(949, 32, '923', 'pura_mdl2*5', 3, 0, 1),
(950, 32, '924', 'pura_mdl2*6', 3, 0, 1),
(951, 32, '925', 'pura_mdl2*7', 3, 0, 1),
(952, 32, '926', 'pura_mdl2*8', 3, 0, 1),
(953, 32, '927', 'pura_mdl2*9', 3, 0, 1),
(954, 32, '928', 'pura_mdl1*1', 3, 0, 1),
(955, 32, '929', 'pura_mdl1*2', 3, 0, 1),
(956, 32, '930', 'pura_mdl1*3', 3, 0, 1),
(957, 32, '931', 'pura_mdl1*4', 3, 0, 1),
(958, 32, '932', 'pura_mdl1*5', 3, 0, 1),
(959, 32, '933', 'pura_mdl1*6', 3, 0, 1),
(960, 32, '934', 'pura_mdl1*7', 3, 0, 1),
(961, 32, '935', 'pura_mdl1*8', 3, 0, 1),
(962, 32, '936', 'pura_mdl1*9', 3, 0, 1),
(963, 32, '939', 'chair_basic*2', 4, 0, 1),
(964, 32, '940', 'chair_basic*3', 4, 0, 1),
(965, 32, '941', 'chair_basic*4', 4, 0, 1),
(966, 32, '942', 'chair_basic*5', 4, 0, 1),
(967, 32, '943', 'chair_basic*6', 4, 0, 1),
(968, 32, '944', 'chair_basic*7', 4, 0, 1),
(969, 32, '946', 'chair_basic*9', 4, 0, 1),
(970, 32, '948', 'bed_budget*2', 4, 0, 1),
(971, 32, '949', 'bed_budget*3', 4, 0, 1),
(972, 32, '950', 'bed_budget*4', 4, 0, 1),
(973, 32, '951', 'bed_budget*5', 4, 0, 1),
(974, 32, '952', 'bed_budget*6', 4, 0, 1),
(975, 32, '953', 'bed_budget*7', 4, 0, 1),
(976, 32, '954', 'bed_budget*8', 4, 0, 1),
(977, 32, '955', 'bed_budget*9', 4, 0, 1),
(978, 32, '957', 'bed_budget_one*2', 3, 0, 1),
(979, 32, '958', 'bed_budget_one*3', 3, 0, 1),
(980, 32, '959', 'bed_budget_one*4', 3, 0, 1),
(981, 32, '960', 'bed_budget_one*5', 3, 0, 1),
(982, 32, '961', 'bed_budget_one*6', 3, 0, 1),
(983, 32, '962', 'bed_budget_one*7', 3, 0, 1),
(984, 32, '963', 'bed_budget_one*8', 3, 0, 1),
(985, 32, '964', 'bed_budget_one*9', 3, 0, 1),
(988, 65, '846', 'habbowood_chair', 3, 0, 1),
(989, 65, '860', 'spotlight', 5, 0, 1),
(990, 65, '1672', 'habw_mirror', 3, 0, 1),
(991, 65, '967', 'tile_marble', 1, 0, 15),
(992, 65, '967', 'tile_marble', 40, 0, 50),
(993, 65, '968', 'tile_brown', 1, 0, 1),
(994, 65, '968', 'tile_brown', 40, 0, 50),
(995, 65, '966', 'tile_stella', 2, 0, 1),
(996, 65, '966', 'tile_stella', 30, 0, 50),
(998, 102, '437', 'queue_tile1*3', 7, 0, 1),
(999, 102, '437', 'queue_tile1*3', 18, 0, 3),
(1000, 102, '437', 'queue_tile1*3', 30, 0, 5),
(1001, 102, '438', 'queue_tile1*6', 7, 0, 1),
(1002, 102, '438', 'queue_tile1*6', 18, 0, 3),
(1003, 102, '438', 'queue_tile1*6', 30, 0, 5),
(1004, 102, '439', 'queue_tile1*4', 7, 0, 1),
(1005, 102, '439', 'queue_tile1*4', 18, 0, 3),
(1006, 102, '439', 'queue_tile1*4', 30, 0, 5),
(1007, 102, '440', 'queue_tile1*9', 7, 0, 1),
(1008, 102, '440', 'queue_tile1*9', 18, 0, 3),
(1009, 102, '440', 'queue_tile1*9', 30, 0, 5),
(1010, 102, '441', 'queue_tile1*8', 7, 0, 1),
(1011, 102, '441', 'queue_tile1*8', 18, 0, 3),
(1012, 102, '441', 'queue_tile1*8', 30, 0, 5),
(1013, 102, '442', 'queue_tile1*5', 7, 0, 1),
(1014, 102, '442', 'queue_tile1*5', 18, 0, 3),
(1015, 102, '442', 'queue_tile1*5', 30, 0, 5),
(1016, 102, '443', 'queue_tile1*7', 7, 0, 1),
(1017, 102, '443', 'queue_tile1*7', 18, 0, 3),
(1018, 102, '443', 'queue_tile1*7', 30, 0, 5),
(1019, 102, '444', 'queue_tile1*2', 7, 0, 1),
(1020, 102, '444', 'queue_tile1*2', 18, 0, 3),
(1021, 102, '444', 'queue_tile1*2', 30, 0, 5),
(1022, 102, '445', 'queue_tile1*1', 7, 0, 1),
(1023, 102, '445', 'queue_tile1*1', 18, 0, 3),
(1024, 102, '445', 'queue_tile1*1', 30, 0, 5),
(1025, 102, '446', 'queue_tile1*0', 7, 0, 1),
(1026, 102, '446', 'queue_tile1*0', 18, 0, 3),
(1027, 102, '446', 'queue_tile1*0', 30, 0, 5),
(1030, 68, '1568', 'lt_stage2', 4, 0, 100),
(1029, 68, '1567', 'LT_skull', 3, 0, 1),
(1031, 68, '1569', 'lt_lavac', 3, 0, 1),
(1032, 68, '1570', 'lt_gate', 6, 0, 1),
(1033, 68, '1573', 'lt_statue', 3, 0, 1),
(1034, 68, '1574', 'lt_spider', 3, 0, 1),
(1035, 68, '1575', 'lt_stone2', 4, 0, 1),
(1036, 68, '1576', 'LT_throne', 4, 0, 1),
(1037, 68, '1578', 'lt_patch', 3, 0, 1),
(1038, 68, '1579', 'lt_lava', 3, 0, 1),
(1039, 68, '1580', 'LT_pillar2', 3, 0, 1),
(1040, 68, '1581', 'lt_bughill', 5, 0, 1),
(1041, 68, '1584', 'LT_pillar', 4, 0, 1),
(1042, 68, '1588', 'lt_stone1', 4, 0, 1),
(1043, 68, '1585', 'lt_stage1', 3, 0, 1),
(1044, 68, '1785', 'lt_wall', 3, 0, 1),
(1045, 68, '1783', 'lt_jngl_wall', 3, 0, 1),
(1119, 43, '154', 'tv_luxus', 5, 0, 1),
(1050, 61, '718', 'glass_shelf', 4, 0, 1),
(1051, 61, '719', 'glass_chair', 3, 0, 1),
(1052, 61, '720', 'glass_stool', 2, 0, 1),
(1053, 61, '721', 'glass_sofa', 4, 0, 1),
(1054, 61, '723', 'glass_table*2', 3, 0, 1),
(2102, 60, '20046', 'exe_elevator', 5, 0, 1),
(1056, 61, '724', 'glass_table*3', 3, 0, 1),
(1057, 61, '722', 'glass_table', 3, 0, 1),
(1058, 61, '725', 'glass_table*4', 3, 0, 1),
(1059, 61, '726', 'glass_table*5', 3, 0, 1),
(1060, 61, '727', 'glass_table*6', 3, 0, 1),
(1061, 61, '728', 'glass_table*7', 3, 0, 1),
(1062, 61, '729', 'glass_table*8', 3, 0, 1),
(1063, 61, '730', 'glass_table*9', 3, 0, 1),
(1064, 61, '731', 'glass_chair*2', 3, 0, 1),
(1065, 61, '732', 'glass_chair*3', 3, 0, 1),
(1066, 61, '733', 'glass_chair*4', 3, 0, 1),
(1067, 61, '734', 'glass_chair*5', 3, 0, 1),
(1068, 61, '735', 'glass_chair*6', 3, 0, 1),
(1069, 61, '736', 'glass_chair*7', 3, 0, 1),
(1070, 61, '737', 'glass_chair*8', 3, 0, 1),
(1071, 61, '738', 'glass_chair*9', 3, 0, 1),
(1072, 61, '739', 'glass_sofa*2', 4, 0, 1),
(1073, 61, '740', 'glass_sofa*3', 4, 0, 1),
(1074, 61, '741', 'glass_sofa*4', 4, 0, 1),
(1075, 61, '742', 'glass_sofa*5', 4, 0, 1),
(1076, 61, '743', 'glass_sofa*6', 4, 0, 1),
(1077, 61, '744', 'glass_sofa*7', 4, 0, 1),
(1078, 61, '745', 'glass_sofa*8', 4, 0, 1),
(1079, 61, '746', 'glass_sofa*9', 4, 0, 1),
(1080, 61, '747', 'glass_stool*2', 2, 0, 1),
(1081, 61, '748', 'glass_stool*4', 2, 0, 1),
(1082, 61, '749', 'glass_stool*5', 2, 0, 1),
(1083, 61, '750', 'glass_stool*6', 2, 0, 1),
(1084, 61, '751', 'glass_stool*7', 2, 0, 1),
(1085, 61, '752', 'glass_stool*8', 2, 0, 1),
(1086, 61, '753', 'glass_stool*3', 2, 0, 1),
(1087, 61, '754', 'glass_stool*9', 2, 0, 1),
(1088, 72, '829', 'grand_piano*4', 5, 0, 1),
(1089, 72, '826', 'grand_piano*3', 5, 0, 1),
(1090, 72, '827', 'grand_piano*5', 5, 0, 1),
(1091, 72, '828', 'grand_piano*2', 5, 0, 1),
(1092, 72, '830', 'grand_piano*1', 5, 0, 1),
(1093, 94, '248', 'rare_beehive_bulb', 10, 0, 1),
(1094, 94, '261', 'rare_beehive_bulb*1', 10, 0, 1),
(1095, 94, '262', 'rare_beehive_bulb*2', 10, 0, 1),
(1096, 94, '206', 'hologram', 10, 0, 1),
(1097, 94, '228', 'redhologram', 10, 0, 1),
(1098, 94, '255', 'rare_hammock', 10, 0, 1),
(1099, 94, '251', 'Golden elephant', 5000, 1000, 1),
(1100, 94, '252', 'rare_fountain', 10, 0, 1),
(1101, 105, '253', 'stand', 5000, 5, 0),
(1102, 27, '254', 'rare_globe', 5, 0, 1),
(1103, 94, '256', 'Silver elephant', 5000, 1000, 1),
(1104, 94, '257', 'bronze elephant', 5000, 1000, 1),
(1105, 94, '258', 'rare_fountain*1', 10, 0, 1),
(1106, 94, '259', 'rare_fountain*2', 10, 0, 1),
(1107, 94, '260', 'rare_fountain*3', 10, 0, 1),
(1108, 94, '264', 'rare_parasol*1', 10, 0, 1),
(1109, 94, '265', 'rare_parasol*2', 10, 0, 1),
(1110, 94, '266', 'rare_parasol*3', 10, 0, 1),
(1111, 94, '312', 'rare_parasol*0', 10, 0, 1),
(1113, 94, '448', 'rare_snowrug', 10, 0, 1),
(1114, 94, '668', 'rare_moonrug', 10, 0, 1),
(1326, 105, '339', 'scifiport*9', 10, 0, 1),
(1120, 43, '1655', 'post.it', 3, 0, 30),
(1121, 41, '1677', 'hrella_poster_3', 3, 0, 1),
(1122, 41, '1678', 'hrella_poster_2', 3, 0, 1),
(1123, 41, '1679', 'hrella_poster_1', 3, 0, 1),
(1124, 43, '104', 'pizza', 3, 0, 1),
(1125, 43, '105', 'drinks', 3, 0, 1),
(1133, 112, '19995', 'ads_twi_dvdr2', 3, 0, 1),
(1127, 43, '111', 'bottle', 3, 0, 1),
(1128, 43, '211', 'edice', 6, 0, 1),
(1132, 112, '19994', 'ads_twi_fountn', 5, 0, 1),
(1134, 112, '19996', 'ads_twi_roses', 4, 0, 1),
(1135, 112, '19997', 'ads_twi_table', 4, 0, 1),
(1136, 112, '19998', 'ads_twi_chair', 3, 0, 1),
(1137, 112, '19999', 'ads_twi_dvdr1', 3, 0, 1),
(1138, 112, '20000', 'ads_twi_piano', 4, 0, 1),
(1139, 112, '20001', 'ads_twi_tower', 4, 0, 1),
(1140, 112, '20002', 'ads_twi_toolbx', 3, 0, 1),
(1141, 112, '20003', 'ads_twi_mist', 3, 0, 1),
(1159, 62, '763', 'gothiccandelabra', 4, 0, 1),
(1154, 62, '764', 'gothrailing', 3, 0, 1),
(1152, 62, '777', 'gothic_sofa*1', 4, 0, 1),
(1156, 62, '778', 'gothic_stool*1', 2, 0, 1),
(1157, 62, '780', 'gothic_sofa*2', 4, 0, 1),
(1173, 62, '790', 'gothic_stool*5', 2, 0, 1),
(1160, 62, '762', 'gothgate', 6, 0, 1),
(1161, 62, '765', 'goth_table', 5, 0, 1),
(1162, 62, '776', 'gothic_chair*1', 3, 0, 1),
(1163, 62, '779', 'gothic_chair*2', 3, 0, 1),
(1164, 62, '781', 'gothic_stool*2', 2, 0, 1),
(1165, 62, '782', 'gothic_chair*3', 3, 0, 1),
(1166, 62, '783', 'gothic_sofa*3', 4, 0, 1),
(1167, 62, '784', 'gothic_stool*3', 2, 0, 1),
(1168, 62, '785', 'gothic_chair*4', 3, 0, 1),
(1169, 62, '786', 'gothic_sofa*4', 4, 0, 1),
(1170, 62, '787', 'gothic_stool*4', 2, 0, 1),
(1171, 62, '788', 'gothic_chair*5', 4, 0, 1),
(1172, 62, '789', 'gothic_sofa*5', 4, 0, 1),
(1174, 62, '791', 'gothic_chair*6', 3, 0, 1),
(1175, 62, '792', 'gothic_sofa*6', 4, 0, 1),
(1176, 62, '793', 'gothic_stool*6', 2, 0, 1),
(1177, 62, '821', 'gothic_carpet', 5, 0, 1),
(1178, 62, '822', 'gothic_carpet2', 6, 0, 1),
(1179, 62, '823', 'gothic_chair', 3, 0, 1),
(1180, 62, '824', 'gothic_sofa', 4, 0, 1),
(1181, 62, '825', 'gothic_stool', 2, 0, 1),
(1182, 62, '1665', 'gothicfountain', 3, 0, 1),
(1183, 62, '1668', 'torch', 3, 0, 1),
(1184, 62, '1726', 'gothicfountain2', 3, 0, 1),
(1186, 103, '1204', 'diner_tray_6', 3, 0, 1),
(1187, 103, '1205', 'diner_tray_5', 3, 0, 1),
(1188, 103, '1206', 'diner_tray_4', 3, 0, 1),
(1191, 103, '1208', 'diner_tray_2', 3, 0, 1),
(1294, 105, '398', 'pillar*1', 10, 0, 1),
(1190, 103, '1207', 'diner_tray_3', 3, 0, 1),
(1192, 103, '1209', 'diner_tray_1', 3, 0, 1),
(1193, 103, '1203', 'diner_tray_7', 3, 0, 1),
(1194, 103, '1210', 'diner_tray_0', 3, 0, 1),
(1195, 103, '1211', 'diner_sofa_2*1', 4, 0, 1),
(1196, 103, '1212', 'diner_sofa_2*2', 4, 0, 1),
(1197, 103, '1213', 'diner_sofa_2*3', 4, 0, 1),
(1198, 103, '1214', 'diner_sofa_2*4', 4, 0, 1),
(1199, 103, '1215', 'diner_sofa_2*5', 4, 0, 1),
(1200, 103, '1216', 'diner_sofa_2*6', 4, 0, 1),
(1201, 103, '1217', 'diner_sofa_2*7', 4, 0, 1),
(1202, 103, '1218', 'diner_sofa_2*8', 4, 0, 1),
(1203, 103, '1219', 'diner_sofa_2*9', 4, 0, 1),
(1204, 103, '1220', 'diner_shaker', 5, 0, 1),
(1205, 103, '1221', 'diner_rug', 3, 0, 1),
(1206, 103, '1221', 'diner_rug', 25, 0, 10),
(1207, 103, '1222', 'diner_gumvendor*1', 3, 0, 1),
(1208, 103, '1223', 'diner_gumvendor*2', 3, 0, 1),
(1209, 103, '1224', 'diner_gumvendor*3', 3, 0, 1),
(1210, 103, '1225', 'diner_gumvendor*4', 3, 0, 1),
(1211, 103, '1226', 'diner_gumvendor*5', 3, 0, 1),
(1212, 103, '1227', 'diner_gumvendor*6', 3, 0, 1),
(1213, 103, '1228', 'diner_gumvendor*7', 3, 0, 1),
(1214, 103, '1229', 'diner_gumvendor*8', 3, 0, 1),
(1215, 103, '1230', 'diner_gumvendor*9', 3, 0, 1),
(1216, 103, '1231', 'diner_cashreg*1', 3, 0, 1),
(1217, 103, '1234', 'diner_cashreg*4', 3, 0, 1),
(1218, 103, '1232', 'diner_cashreg*2', 3, 0, 1),
(1219, 103, '1233', 'diner_cashreg*3', 3, 0, 1),
(1220, 103, '1235', 'diner_cashreg*5', 3, 0, 1),
(1221, 103, '1236', 'diner_cashreg*6', 3, 0, 1),
(1222, 103, '1237', 'diner_cashreg*7', 3, 0, 1),
(1223, 103, '1238', 'diner_cashreg*8', 3, 0, 1),
(1224, 103, '1239', 'diner_cashreg*9', 3, 0, 1),
(1225, 103, '1240', 'diner_table_2*1', 5, 0, 1),
(1226, 103, '1241', 'diner_table_2*2', 5, 0, 1),
(1227, 103, '1242', 'diner_table_2*3', 5, 0, 1),
(1228, 103, '1243', 'diner_table_2*4', 5, 0, 1),
(1229, 103, '1244', 'diner_table_2*5', 5, 0, 1),
(1230, 103, '1245', 'diner_table_2*6', 5, 0, 1),
(1231, 103, '1246', 'diner_table_2*7', 5, 0, 1),
(1232, 103, '1247', 'diner_table_2*8', 5, 0, 1),
(1233, 103, '1248', 'diner_table_2*9', 5, 0, 1),
(1234, 103, '1249', 'diner_table_1*1', 3, 0, 1),
(1235, 103, '1250', 'diner_table_1*2', 3, 0, 1),
(1236, 103, '1251', 'diner_table_1*3', 3, 0, 1),
(1237, 103, '1252', 'diner_table_1*4', 3, 0, 1),
(1238, 103, '1253', 'diner_table_1*5', 3, 0, 1),
(1239, 103, '1254', 'diner_table_1*6', 3, 0, 1),
(1240, 103, '1255', 'diner_table_1*7', 3, 0, 1),
(1241, 103, '1256', 'diner_table_1*8', 3, 0, 1),
(1242, 103, '1257', 'diner_table_1*9', 3, 0, 1),
(1243, 103, '1258', 'diner_sofa_1*1', 4, 0, 1),
(1244, 103, '1259', 'diner_sofa_1*2', 4, 0, 1),
(1245, 103, '1260', 'diner_sofa_1*3', 4, 0, 1),
(1246, 103, '1261', 'diner_sofa_1*4', 4, 0, 1),
(1247, 103, '1262', 'diner_sofa_1*5', 4, 0, 1),
(1248, 103, '1263', 'diner_sofa_1*6', 4, 0, 1),
(1251, 103, '1265', 'diner_sofa_1*8', 4, 0, 1),
(1250, 103, '1264', 'diner_sofa_1*7', 4, 0, 1),
(1252, 103, '1266', 'diner_sofa_1*9', 4, 0, 1),
(1253, 103, '1267', 'diner_chair*1', 3, 0, 1),
(1254, 103, '1268', 'diner_chair*2', 3, 0, 1),
(1255, 103, '1269', 'diner_chair*3', 3, 0, 1),
(1256, 103, '1270', 'diner_chair*4', 3, 0, 1),
(1257, 103, '1271', 'diner_chair*5', 3, 0, 1),
(1258, 103, '1272', 'diner_chair*6', 3, 0, 1),
(1259, 103, '1273', 'diner_chair*7', 3, 0, 1),
(1260, 103, '1274', 'diner_chair*8', 3, 0, 1),
(1261, 103, '1275', 'diner_chair*9', 3, 0, 1),
(1262, 103, '1276', 'diner_bardesk_gate*1', 6, 0, 1),
(1263, 103, '1277', 'diner_bardesk_gate*2', 6, 0, 1),
(1264, 103, '1278', 'diner_bardesk_gate*3', 6, 0, 1),
(1265, 103, '1279', 'diner_bardesk_gate*4', 6, 0, 1),
(1266, 103, '1280', 'diner_bardesk_gate*5', 6, 0, 1),
(1267, 103, '1281', 'diner_bardesk_gate*6', 6, 0, 1),
(2119, 7, '20060', 'DEAL_HC_3', 0, 3, 6),
(1269, 103, '1282', 'diner_bardesk_gate*7', 6, 0, 1),
(1270, 103, '1283', 'diner_bardesk_gate*8', 6, 0, 1),
(1271, 103, '1284', 'diner_bardesk_gate*9', 6, 0, 1),
(1272, 103, '1285', 'diner_bardesk_corner*1', 3, 0, 1),
(1273, 103, '1286', 'diner_bardesk_corner*2', 3, 0, 1),
(1274, 103, '1287', 'diner_bardesk_corner*3', 3, 0, 1),
(1275, 103, '1288', 'diner_bardesk_corner*4', 3, 0, 1),
(1276, 103, '1289', 'diner_bardesk_corner*6', 3, 0, 1),
(1277, 103, '1290', 'diner_bardesk_corner*7', 3, 0, 1),
(1278, 103, '1291', 'diner_bardesk_corner*8', 3, 0, 1),
(1279, 103, '1292', 'diner_bardesk_corner*9', 3, 0, 1),
(1280, 103, '1293', 'diner_bardesk*1', 3, 0, 1),
(1281, 103, '1294', 'diner_bardesk*2', 3, 0, 1),
(1282, 103, '1295', 'diner_bardesk*3', 3, 0, 1),
(1283, 103, '1296', 'diner_bardesk*4', 3, 0, 1),
(1284, 103, '1297', 'diner_bardesk*5', 3, 0, 1),
(1285, 103, '1298', 'diner_bardesk*6', 3, 0, 1),
(1286, 103, '1299', 'diner_bardesk*7', 3, 0, 1),
(1287, 103, '1300', 'diner_bardesk*8', 3, 0, 1),
(1288, 103, '1301', 'diner_bardesk*9', 3, 0, 1),
(1289, 103, '1708', 'window_diner2', 3, 0, 1),
(1290, 103, '1709', 'window_diner', 4, 0, 1),
(1291, 103, '1710', 'diner_walltable', 2, 0, 1),
(1292, 103, '1782', 'diner_poster', 3, 0, 1),
(1295, 105, '399', 'pillar*9', 10, 0, 1),
(1296, 105, '400', 'pillar*0', 10, 0, 1),
(1297, 105, '401', 'pillar*8', 10, 0, 1),
(1298, 105, '402', 'pillar*2', 10, 0, 1),
(1299, 105, '403', 'pillar*5', 10, 0, 1),
(1300, 105, '404', 'pillar*4', 10, 0, 1),
(1301, 105, '405', 'pillar*7', 10, 0, 1),
(1302, 105, '406', 'pillar*3', 10, 0, 1),
(1303, 105, '388', 'wooden_screen*1', 10, 0, 1),
(1304, 105, '389', 'wooden_screen*2', 10, 0, 1),
(1305, 105, '390', 'wooden_screen*7', 10, 0, 1),
(1306, 105, '391', 'wooden_screen*0', 10, 0, 1),
(1307, 105, '392', 'wooden_screen*8', 10, 0, 1);
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `amount`) VALUES
(1308, 105, '393', 'wooden_screen*5', 10, 0, 1),
(1309, 105, '394', 'wooden_screen*9', 10, 0, 1),
(1310, 105, '395', 'wooden_screen*4', 10, 0, 1),
(1311, 105, '396', 'wooden_screen*6', 10, 0, 1),
(1312, 105, '397', 'wooden_screen*3', 10, 0, 1),
(1313, 105, '417', 'rare_icecream*1', 10, 0, 1),
(1314, 105, '418', 'rare_icecream*7', 10, 0, 1),
(1315, 105, '419', 'rare_icecream*8', 10, 0, 1),
(1316, 105, '420', 'rare_icecream*2', 10, 0, 1),
(1317, 105, '421', 'rare_icecream*6', 10, 0, 1),
(1318, 105, '422', 'rare_icecream*9', 10, 0, 1),
(1319, 105, '423', 'rare_icecream*3', 10, 0, 1),
(1320, 105, '424', 'rare_icecream*0', 10, 0, 1),
(1321, 105, '425', 'rare_icecream*4', 10, 0, 1),
(1322, 105, '426', 'rare_icecream*5', 10, 0, 1),
(1323, 95, '892', 'rare_icecream_campaign', 10, 0, 1),
(1324, 235, '1140', 'calippo', 10, 0, 1),
(1325, 105, '338', 'scifiport*0', 10, 0, 1),
(1327, 105, '340', 'scifiport*8', 10, 0, 1),
(1328, 105, '341', 'scifiport*7', 10, 0, 1),
(1329, 105, '342', 'scifiport*6', 10, 0, 1),
(1330, 105, '343', 'scifiport*5', 10, 0, 1),
(1331, 105, '344', 'scifiport*4', 10, 0, 1),
(1332, 105, '345', 'scifiport*3', 10, 0, 1),
(1333, 105, '346', 'scifiport*2', 10, 0, 1),
(1334, 105, '347', 'scifiport*1', 10, 0, 1),
(1335, 105, '348', 'scifirocket*9', 10, 0, 1),
(1336, 105, '349', 'scifirocket*8', 10, 0, 1),
(1337, 105, '350', 'scifirocket*7', 10, 0, 1),
(1338, 105, '351', 'scifirocket*6', 10, 0, 1),
(1339, 105, '352', 'scifirocket*5', 10, 0, 1),
(1340, 105, '353', 'scifirocket*4', 10, 0, 1),
(1341, 105, '354', 'scifirocket*3', 10, 0, 1),
(1342, 105, '355', 'scifirocket*2', 10, 0, 1),
(1343, 105, '356', 'scifirocket*1', 10, 0, 1),
(1344, 105, '357', 'scifirocket*0', 10, 0, 1),
(1345, 105, '358', 'scifidoor*10', 10, 0, 1),
(1346, 105, '359', 'scifidoor*9', 10, 0, 1),
(1347, 105, '360', 'scifidoor*8', 10, 0, 1),
(1348, 105, '361', 'scifidoor*7', 10, 0, 1),
(1349, 105, '362', 'scifidoor*6', 10, 0, 1),
(1350, 105, '363', 'scifidoor*5', 10, 0, 1),
(1351, 105, '364', 'scifidoor*4', 10, 0, 1),
(1352, 105, '365', 'scifidoor*3', 10, 0, 1),
(1353, 105, '367', 'scifidoor*2', 10, 0, 1),
(1354, 105, '366', 'scifidoor*2', 10, 0, 1),
(1355, 27, '186', 'menorah', 3, 0, 1),
(1356, 43, '188', 'ham', 3, 0, 1),
(1357, 27, '189', 'turkey', 3, 0, 1),
(1358, 27, '191', 'house', 3, 0, 1),
(1359, 43, '196', 'ham2', 2, 0, 1),
(1360, 27, '197', 'wcandleset', 3, 0, 1),
(1361, 43, '205', 'habbocake', 5, 0, 1),
(1362, 39, '204', 'giftflowers', 4, 0, 1),
(1365, 8, '239', 'chair_plasto*14', 3, 0, 1),
(1364, 8, '212', 'club_sofa', 4, 0, 1),
(1366, 8, '240', 'table_plasto_4leg*14', 4, 0, 1),
(1367, 8, '246', 'edicehc', 5, 0, 8),
(1368, 8, '249', 'hcsohva', 10, 0, 1),
(1369, 8, '250', 'hcamme', 6, 0, 1),
(1370, 8, '313', 'hc_lmp', 4, 0, 1),
(1371, 8, '314', 'hc_tbl', 6, 0, 1),
(1372, 8, '315', 'hc_chr', 5, 0, 1),
(1373, 8, '316', 'hc_dsk', 5, 0, 1),
(1374, 8, '760', 'hc_crpt', 4, 0, 1),
(1375, 8, '761', 'hc_tv', 5, 0, 1),
(1376, 8, '766', 'hc_bkshlf', 6, 0, 1),
(1377, 8, '767', 'hc_btlr', 4, 0, 1),
(1378, 8, '768', 'hc_crtn', 4, 0, 1),
(1379, 8, '769', 'hc_djset', 5, 0, 1),
(1380, 8, '770', 'hc_frplc', 6, 0, 1),
(1381, 8, '771', 'hc_lmpst', 3, 0, 1),
(1382, 8, '772', 'hc_machine', 5, 0, 1),
(1383, 8, '773', 'hc_rllr', 7, 0, 1),
(1384, 8, '774', 'hc_rntgn', 3, 0, 1),
(1385, 8, '775', 'hc_trll', 3, 0, 1),
(1387, 8, '1314', 'hcc_shelf', 3, 0, 1),
(1388, 8, '1315', 'hcc_sofa', 3, 0, 1),
(1389, 8, '1316', 'hcc_minibar', 5, 0, 1),
(1390, 8, '1317', 'hcc_chair', 3, 0, 1),
(1391, 8, '1321', 'hcc_stool', 2, 0, 1),
(1392, 8, '1322', 'hcc_sofachair', 4, 0, 1),
(1393, 8, '1323', 'hcc_crnr', 3, 0, 1),
(1394, 8, '1324', 'hcc_dvdr', 3, 0, 1),
(1398, 36, '8', 'table_plasto_4leg', 3, 0, 1),
(1396, 8, '1666', 'hc_wall_lamp', 3, 0, 1),
(1399, 36, '9', 'table_plasto_round', 3, 0, 1),
(1400, 36, '10', 'table_plasto_bigsquare', 3, 0, 1),
(1401, 36, '22', 'chair_plasty', 3, 0, 1),
(1402, 36, '23', 'chair_plasto', 3, 0, 1),
(1403, 36, '24', 'table_plasto_square', 3, 0, 1),
(1404, 36, '47', 'table_plasto_4leg*1', 3, 0, 1),
(1405, 36, '48', 'table_plasto_bigsquare*1', 3, 0, 1),
(1406, 36, '49', 'table_plasto_round*1', 3, 0, 1),
(1407, 36, '50', 'table_plasto_square*1', 3, 0, 1),
(1408, 36, '51', 'chair_plasto*1', 3, 0, 1),
(1409, 36, '54', 'table_plasto_4leg*2', 3, 0, 1),
(1410, 36, '55', 'table_plasto_bigsquare*2', 3, 0, 1),
(1411, 36, '56', 'table_plasto_round*2', 3, 0, 1),
(1412, 36, '57', 'table_plasto_square*2', 3, 0, 1),
(1413, 36, '58', 'chair_plasto*2', 3, 0, 1),
(1414, 36, '61', 'table_plasto_4leg*3', 3, 0, 1),
(1415, 36, '62', 'table_plasto_bigsquare*3', 3, 0, 1),
(1416, 36, '63', 'table_plasto_round*3', 3, 0, 1),
(1417, 36, '64', 'table_plasto_square*3', 3, 0, 1),
(1418, 36, '65', 'chair_plasto*3', 3, 0, 1),
(1419, 36, '68', 'table_plasto_4leg*4', 3, 0, 1),
(1420, 36, '71', 'table_plasto_square*4', 3, 0, 1),
(1421, 36, '72', 'chair_plasto*4', 3, 0, 1),
(1422, 36, '78', 'table_plasto_4leg*5', 3, 0, 1),
(1423, 36, '79', 'table_plasto_bigsquare*5', 3, 0, 1),
(1424, 36, '80', 'table_plasto_round*5', 3, 0, 1),
(1425, 36, '81', 'table_plasto_square*5', 3, 0, 1),
(1426, 36, '82', 'chair_plasto*5', 3, 0, 1),
(1427, 36, '83', 'table_plasto_4leg*6', 3, 0, 1),
(1428, 36, '84', 'table_plasto_bigsquare*6', 3, 0, 1),
(1429, 36, '85', 'table_plasto_round*6', 3, 0, 1),
(1430, 36, '86', 'table_plasto_square*6', 3, 0, 1),
(1431, 36, '87', 'chair_plasto*6', 3, 0, 1),
(1432, 36, '88', 'table_plasto_4leg*7', 3, 0, 1),
(1433, 36, '89', 'table_plasto_bigsquare*7', 3, 0, 1),
(1434, 36, '90', 'table_plasto_round*7', 3, 0, 1),
(1435, 36, '91', 'table_plasto_square*7', 3, 0, 1),
(1436, 36, '92', 'chair_plasto*7', 3, 0, 1),
(1437, 36, '93', 'table_plasto_4leg*8', 3, 0, 1),
(1438, 36, '94', 'table_plasto_bigsquare*8', 3, 0, 1),
(1439, 36, '95', 'table_plasto_round*8', 3, 0, 1),
(1440, 36, '96', 'table_plasto_square*8', 3, 0, 1),
(1441, 36, '97', 'chair_plasto*8', 3, 0, 1),
(1442, 36, '98', 'table_plasto_4leg*9', 3, 0, 1),
(1443, 36, '99', 'table_plasto_bigsquare*9', 3, 0, 1),
(1444, 36, '100', 'table_plasto_round*9', 3, 0, 1),
(1445, 36, '101', 'chair_plasto*9', 3, 0, 1),
(1446, 36, '233', 'chair_plasto*10', 3, 0, 1),
(1447, 36, '234', 'chair_plasto*11', 3, 0, 1),
(1448, 36, '237', 'chair_plasto*12', 3, 0, 1),
(1449, 36, '238', 'chair_plasto*13', 3, 0, 1),
(1450, 36, '276', 'table_plasto_4leg*10', 3, 0, 1),
(1451, 36, '277', 'table_plasto_4leg*15', 3, 0, 1),
(1452, 36, '278', 'table_plasto_bigsquare*14', 3, 0, 1),
(1453, 36, '279', 'table_plasto_bigsquare*15', 3, 0, 1),
(1454, 36, '280', 'table_plasto_round*14', 3, 0, 1),
(1455, 36, '281', 'table_plasto_round*15', 3, 0, 1),
(1456, 36, '282', 'table_plasto_square*14', 3, 0, 1),
(1457, 36, '283', 'table_plasto_square*15', 3, 0, 1),
(1458, 36, '284', 'chair_plasto*15', 3, 0, 1),
(1459, 36, '290', 'chair_plasto*16', 3, 0, 1),
(1460, 36, '291', 'table_plasto_4leg*16', 3, 0, 1),
(1462, 40, '17', 'doormat_love', 1, 0, 1),
(1463, 40, '18', 'doormat_plain', 3, 0, 1),
(1464, 40, '53', 'doormat_plain*1', 1, 0, 1),
(1465, 40, '59', 'doormat_plain*2', 1, 0, 1),
(1466, 40, '67', 'doormat_plain*3', 1, 0, 1),
(1467, 40, '74', 'doormat_plain*4', 1, 0, 1),
(1468, 40, '75', 'doormat_plain*6', 3, 0, 20),
(1469, 40, '76', 'doormat_plain*5', 1, 0, 1),
(1471, 95, '27', 'bed_trad_one', 10, 0, 1),
(1472, 95, '28', 'bed_trad', 10, 0, 1),
(1473, 35, '35', 'shelves_armas', 4, 0, 1),
(1474, 32, '33', 'bed_budget_one', 3, 0, 1),
(1475, 32, '34', 'bed_budget', 4, 0, 1),
(1476, 32, '139', 'bed_budgetb_one', 3, 0, 1),
(1477, 32, '140', 'bed_budgetb', 4, 0, 1),
(1478, 32, '947', 'bed_budget*1', 4, 0, 1),
(1479, 32, '956', 'bed_budget_one*1', 3, 0, 1),
(1482, 36, '103', 'chair_plasty*1', 3, 0, 1),
(1483, 36, '106', 'chair_plasty*2', 3, 0, 1),
(1484, 36, '107', 'chair_plasty*3', 3, 0, 1),
(1485, 36, '108', 'chair_plasty*4', 3, 0, 1),
(1486, 36, '128', 'chair_plasty*5', 3, 0, 1),
(1487, 36, '132', 'chair_plasty*6', 3, 0, 1),
(1488, 36, '285', 'chair_plasty*7', 3, 0, 1),
(1489, 36, '286', 'chair_plasty*8', 3, 0, 1),
(1490, 36, '287', 'chair_plasty*9', 3, 0, 1),
(1491, 36, '288', 'chair_plasty*10', 3, 0, 1),
(1492, 36, '289', 'chair_plasty*11', 3, 0, 1),
(1564, 105, '370', 'pillow*0', 10, 0, 1),
(1496, 35, '217', 'divider_arm1', 3, 0, 100),
(1497, 35, '218', 'divider_arm2', 3, 0, 20),
(1499, 94, '213', 'a0 prize1', 10, 0, 1),
(1500, 94, '214', 'a0 prize2', 10, 0, 1),
(1501, 94, '215', 'a0 prize3', 10, 0, 1),
(1502, 55, '220', 'divider_nor1', 3, 0, 1),
(1503, 55, '222', 'divider_nor2', 3, 0, 1),
(2099, 95, '20043', 'party_lights', 10, 0, 1),
(1505, 55, '224', 'divider_nor3', 6, 0, 1),
(1506, 55, '462', 'divider_nor4*4', 3, 0, 1),
(1507, 55, '510', 'divider_nor1*2', 3, 0, 1),
(1508, 55, '511', 'divider_nor1*3', 3, 0, 1),
(1509, 55, '512', 'divider_nor1*4', 3, 0, 1),
(1510, 55, '513', 'divider_nor1*5', 3, 0, 1),
(1511, 55, '514', 'divider_nor1*6', 3, 0, 1),
(1512, 55, '515', 'divider_nor1*7', 3, 0, 1),
(1513, 55, '516', 'divider_nor1*8', 3, 0, 1),
(1514, 55, '517', 'divider_nor1*8', 3, 0, 1),
(1515, 55, '641', 'divider_nor3*2', 6, 0, 1),
(1516, 55, '642', 'divider_nor3*3', 6, 0, 1),
(1517, 55, '643', 'divider_nor3*4', 3, 0, 1),
(1518, 55, '644', 'divider_nor3*5', 6, 0, 1),
(1519, 55, '645', 'divider_nor3*6', 6, 0, 1),
(1520, 55, '646', 'divider_nor3*7', 6, 0, 1),
(1521, 55, '647', 'divider_nor3*8', 6, 0, 1),
(1522, 55, '648', 'divider_nor3*9', 6, 0, 1),
(1523, 55, '649', 'divider_nor2*2', 3, 0, 1),
(1524, 55, '650', 'divider_nor2*3', 3, 0, 1),
(1525, 55, '651', 'divider_nor2*4', 3, 0, 1),
(1526, 55, '652', 'divider_nor2*5', 3, 0, 1),
(1527, 55, '653', 'divider_nor2*6', 3, 0, 1),
(1528, 55, '654', 'divider_nor2*7', 3, 0, 1),
(1529, 55, '655', 'divider_nor2*8', 3, 0, 1),
(1530, 55, '656', 'divider_nor2*9', 3, 0, 1),
(1531, 55, '684', 'divider_nor4*2', 3, 0, 1),
(1532, 55, '685', 'divider_nor4*3', 3, 0, 1),
(1533, 55, '686', 'divider_nor4*5', 3, 0, 1),
(1534, 55, '687', 'divider_nor4*6', 3, 0, 1),
(1535, 55, '688', 'divider_nor4*7', 3, 0, 1),
(1536, 55, '689', 'divider_nor4*8', 3, 0, 1),
(1537, 55, '690', 'divider_nor4*9', 3, 0, 1),
(1538, 55, '691', 'divider_nor5*2', 3, 0, 1),
(1539, 55, '692', 'divider_nor5*3', 3, 0, 1),
(1540, 55, '693', 'divider_nor5*4', 3, 0, 1),
(1541, 55, '694', 'divider_nor5*5', 3, 0, 1),
(1542, 55, '695', 'divider_nor5*7', 3, 0, 1),
(1543, 55, '696', 'divider_nor5*8', 3, 0, 1),
(1544, 55, '697', 'divider_nor5*9', 3, 0, 1),
(1545, 55, '698', 'divider_nor5', 3, 0, 1),
(1546, 55, '699', 'divider_nor4', 3, 0, 1),
(1547, 94, '226', 'typingmachine', 10, 0, 1),
(1548, 27, '230', 'joulutahti', 10, 0, 1),
(1549, 94, '231', 'hyacinth1', 10, 0, 1),
(1550, 94, '232', 'hyacinth2', 10, 0, 1),
(1551, 30, '235', 'bardeskcorner_polyfon*12', 3, 0, 1),
(1552, 20, '236', 'bardeskcorner_polyfon*13', 3, 0, 1),
(1553, 8, '241', 'mocchamaster', 5, 0, 1),
(1554, 94, '247', 'rare_daffodil_rug', 10, 0, 1),
(1555, 27, '267', 'tree1', 3, 0, 1),
(2101, 71, '20047', 'rela_stick', 3, 0, 1),
(1557, 27, '269', 'wcandle', 3, 0, 1),
(1558, 27, '272', 'house2', 3, 0, 1),
(1559, 94, '275', 'md_limukaappi', 10, 0, 1),
(1587, 105, '378', 'marquee*1', 10, 0, 1),
(1561, 8, '294', 'doorD', 6, 0, 1),
(1562, 105, '368', 'pillow*5', 10, 0, 1),
(1563, 105, '369', 'pillow*8', 10, 0, 1),
(1565, 105, '371', 'pillow*1', 10, 0, 1),
(1566, 105, '372', 'pillow*2', 10, 0, 1),
(1567, 105, '373', 'pillow*7', 10, 0, 1),
(1568, 105, '374', 'pillow*9', 10, 0, 1),
(1569, 105, '375', 'pillow*4', 10, 0, 1),
(1570, 105, '376', 'pillow*6', 10, 0, 1),
(1571, 105, '377', 'pillow*3', 10, 0, 1),
(1572, 95, '1410', 'ads_ob_pillow', 10, 0, 1),
(1573, 105, '379', 'marquee*2', 10, 0, 1),
(1574, 105, '407', 'rare_dragonlamp*4', 10, 0, 1),
(1575, 105, '408', 'rare_dragonlamp*0', 10, 0, 1),
(1576, 105, '409', 'rare_dragonlamp*5', 10, 0, 1),
(1577, 105, '410', 'rare_dragonlamp*2', 10, 0, 1),
(1578, 105, '411', 'rare_dragonlamp*8', 10, 0, 1),
(1579, 105, '412', 'rare_dragonlamp*9', 10, 0, 1),
(1580, 105, '413', 'rare_dragonlamp*7', 10, 0, 1),
(1581, 105, '414', 'rare_dragonlamp*6', 10, 0, 1),
(1582, 105, '415', 'rare_dragonlamp*1', 10, 0, 1),
(1583, 105, '416', 'rare_dragonlamp*3', 10, 0, 1),
(1584, 105, '430', 'rare_fan*3', 10, 0, 1),
(1585, 58, '1411', 'lostc_merdragon', 6, 0, 1),
(1588, 105, '380', 'marquee*7', 10, 0, 1),
(1589, 105, '382', 'marquee*8', 10, 0, 1),
(1590, 105, '383', 'marquee*9', 10, 0, 1),
(1591, 105, '384', 'marquee*5', 10, 0, 1),
(1592, 105, '385', 'marquee*4', 10, 0, 1),
(1593, 105, '386', 'marquee*6', 10, 0, 1),
(1594, 105, '387', 'marquee*3', 10, 0, 1),
(1595, 105, '381', 'marquee*10', 10, 0, 1),
(1596, 105, '427', 'rare_fan*7', 10, 0, 1),
(1598, 105, '428', 'rare_fan*6', 10, 0, 1),
(1599, 105, '429', 'rare_fan*9', 10, 0, 1),
(1600, 105, '430', 'rare_fan*3', 10, 0, 1),
(1601, 105, '431', 'rare_fan*0', 10, 0, 1),
(1602, 105, '432', 'rare_fan*4', 10, 0, 1),
(1603, 105, '433', 'rare_fan*5', 10, 0, 1),
(1604, 105, '434', 'rare_fan*1', 10, 0, 1),
(1605, 105, '435', 'rare_fan*8', 10, 0, 1),
(1606, 105, '436', 'rare_fan*2', 10, 0, 1),
(1607, 235, '1589', 'ads_calip_fan', 10, 0, 1),
(1608, 62, '1667', 'industrialfan', 4, 0, 1),
(1609, 57, '449', 'cn_lamp', 5, 0, 1),
(1610, 57, '450', 'cn_sofa', 4, 0, 1),
(1611, 95, '1302', 'ads_dave_cns', 10, 0, 1),
(1612, 105, '468', 'rubberchair*1', 10, 0, 1),
(1613, 105, '469', 'rubberchair*2', 10, 0, 1),
(1614, 105, '470', 'rubberchair*3', 10, 0, 1),
(1615, 105, '471', 'rubberchair*4', 10, 0, 1),
(1616, 105, '472', 'rubberchair*5', 10, 0, 1),
(1617, 105, '473', 'rubberchair*6', 10, 0, 1),
(1618, 105, '477', 'rubberchair*7', 10, 0, 1),
(1619, 105, '478', 'rubberchair*8', 10, 0, 1),
(1620, 105, '463', 'traffic_light*1', 10, 0, 1),
(1621, 105, '464', 'traffic_light*2', 10, 0, 1),
(1622, 105, '465', 'traffic_light*3', 10, 0, 1),
(1623, 105, '466', 'traffic_light*4', 10, 0, 1),
(1624, 105, '467', 'traffic_light*6', 10, 0, 1),
(1625, 105, '683', 'traffic_light*5', 10, 0, 1),
(1626, 105, '474', 'barrier*1', 10, 0, 1),
(1627, 105, '475', 'barrier*2', 10, 0, 1),
(1628, 105, '476', 'barrier*3', 10, 0, 1),
(1629, 94, '667', 'sandrug', 10, 0, 1),
(1630, 105, '671', 'sleepingbag*1', 10, 0, 1),
(1631, 105, '672', 'sleepingbag*2', 10, 0, 1),
(1632, 105, '673', 'sleepingbag*3', 10, 0, 1),
(1633, 105, '674', 'sleepingbag*4', 10, 0, 1),
(1634, 105, '676', 'sleepingbag*7', 10, 0, 1),
(1635, 105, '677', 'sleepingbag*9', 10, 0, 1),
(1636, 105, '678', 'sleepingbag*5', 10, 0, 1),
(1637, 105, '679', 'sleepingbag*10', 10, 0, 1),
(1638, 105, '680', 'sleepingbag*6', 10, 0, 1),
(1639, 105, '681', 'sleepingbag*8', 10, 0, 1),
(1640, 13, '755', 'CF_10_coin_gold', 10, 0, 1),
(1641, 13, '756', 'CF_1_coin_bronze', 1, 0, 1),
(1642, 13, '757', 'CF_20_moneybag', 20, 0, 1),
(1643, 12, '758', 'CF_50_goldbar', 50, 0, 1),
(1644, 13, '759', 'CF_5_coin_silver', 5, 0, 1),
(1645, 65, '831', 'theatre_seat', 5, 0, 1),
(1646, 32, '938', 'chair_basic*1', 3, 0, 1),
(1647, 32, '945', 'chair_basic*8', 3, 0, 1),
(1648, 40, '1009', 'carpet_soft_tut', 2, 0, 1),
(1649, 66, '1025', 'hal_cauldron', 5, 0, 1),
(1650, 66, '1026', 'hal_grave', 4, 0, 1),
(1651, 66, '1318', 'det_divider', 3, 0, 1),
(1652, 66, '1320', 'det_body', 5, 0, 1),
(1653, 66, '1719', 'det_bhole', 2, 0, 1),
(1654, 5, '1719', 'det_bhole', 5, 0, 3),
(1655, 121, '794', 'sound_machine', 5, 0, 1),
(1656, 121, '859', 'sound_machine*1', 5, 0, 1),
(1657, 121, '861', 'sound_machine*2', 5, 0, 1),
(1658, 121, '862', 'sound_machine*3', 5, 0, 1),
(1659, 121, '863', 'sound_machine*4', 5, 0, 1),
(1660, 121, '864', 'sound_machine*5', 5, 0, 1),
(1661, 121, '865', 'sound_machine*6', 5, 0, 1),
(1662, 121, '866', 'sound_machine*7', 5, 0, 1),
(1663, 121, '990', 'sound_machine_pro', 5, 0, 1),
(1664, 122, '850', 'sound_set_1', 3, 0, 1),
(1665, 122, '851', 'sound_set_2', 3, 0, 1),
(1666, 122, '852', 'sound_set_3', 3, 0, 1),
(1667, 122, '853', 'sound_set_4', 3, 0, 1),
(1668, 122, '854', 'sound_set_5', 3, 0, 1),
(1669, 122, '855', 'sound_set_6', 3, 0, 1),
(1670, 122, '856', 'sound_set_7', 3, 0, 1),
(1671, 122, '857', 'sound_set_8', 3, 0, 1),
(1672, 122, '858', 'sound_set_9', 3, 0, 1),
(1673, 122, '872', 'sound_set_27', 3, 0, 1),
(1674, 122, '873', 'sound_set_26', 3, 0, 1),
(1675, 122, '871', 'sound_set_28', 3, 0, 1),
(1676, 122, '874', 'sound_set_25', 3, 0, 1),
(1677, 122, '875', 'sound_set_24', 3, 0, 1),
(1678, 122, '876', 'sound_set_23', 3, 0, 1),
(1679, 122, '878', 'sound_set_22', 3, 0, 1),
(1680, 122, '877', 'sound_set_22', 3, 0, 1),
(1681, 122, '879', 'sound_set_20', 3, 0, 1),
(1682, 122, '880', 'sound_set_19', 3, 0, 1),
(1683, 122, '881', 'sound_set_18', 3, 0, 1),
(1684, 122, '882', 'sound_set_17', 3, 0, 1),
(1685, 122, '883', 'sound_set_16', 3, 0, 1),
(1686, 122, '884', 'sound_set_15', 3, 0, 1),
(1687, 122, '885', 'sound_set_14', 3, 0, 1),
(1688, 122, '886', 'sound_set_13', 3, 0, 1),
(1689, 122, '887', 'sound_set_12', 3, 0, 1),
(1690, 122, '888', 'sound_set_11', 3, 0, 1),
(1691, 122, '889', 'sound_set_10', 3, 0, 1),
(1692, 122, '982', 'sound_set_36', 3, 0, 1),
(1693, 122, '983', 'sound_set_35', 3, 0, 1),
(1694, 122, '984', 'sound_set_34', 3, 0, 1),
(1695, 122, '985', 'sound_set_33', 3, 0, 1),
(1696, 122, '986', 'sound_set_32', 3, 0, 1),
(1697, 122, '987', 'sound_set_31', 3, 0, 1),
(1698, 122, '988', 'sound_set_30', 3, 0, 1),
(1699, 122, '989', 'sound_set_29', 3, 0, 1),
(1700, 122, '1002', 'sound_set_37', 3, 0, 1),
(1701, 122, '1010', 'sound_set_44', 3, 0, 1),
(1702, 122, '1011', 'sound_set_43', 3, 0, 1),
(1703, 122, '1012', 'sound_set_42', 3, 0, 1),
(1704, 122, '1013', 'sound_set_41', 3, 0, 1),
(1705, 122, '1014', 'sound_set_40', 3, 0, 1),
(1706, 122, '1015', 'sound_set_39', 3, 0, 1),
(1707, 122, '1016', 'sound_set_38', 3, 0, 1),
(1708, 122, '1027', 'sound_set_52', 3, 0, 1),
(1709, 122, '1028', 'sound_set_51', 3, 0, 1),
(1710, 122, '1029', 'sound_set_50', 3, 0, 1),
(1711, 122, '1030', 'sound_set_49', 3, 0, 1),
(1712, 122, '1031', 'sound_set_48', 3, 0, 1),
(1713, 122, '1032', 'sound_set_47', 3, 0, 1),
(1714, 122, '1033', 'sound_set_46', 3, 0, 1),
(1715, 122, '1034', 'sound_set_45', 3, 0, 1),
(1716, 122, '1041', 'sound_set_54', 3, 0, 1),
(1717, 122, '1042', 'sound_set_53', 3, 0, 1),
(1718, 122, '1056', 'sound_set_59', 3, 0, 1),
(1719, 122, '1057', 'sound_set_58', 3, 0, 1),
(1720, 122, '1058', 'sound_set_57', 3, 0, 1),
(1721, 122, '1059', 'sound_set_56', 3, 0, 1),
(1722, 122, '1060', 'sound_set_55', 3, 0, 1),
(1723, 122, '1101', 'sound_set_61', 3, 0, 1),
(1724, 122, '1102', 'sound_set_60', 3, 0, 1),
(1725, 122, '1136', 'sound_set_64', 3, 0, 1),
(1726, 122, '1137', 'sound_set_63', 3, 0, 1),
(1727, 122, '1138', 'sound_set_62', 3, 0, 1),
(1728, 122, '1173', 'sound_set_70', 3, 0, 1),
(1729, 122, '1174', 'sound_set_69', 3, 0, 1),
(1730, 122, '1175', 'sound_set_68', 3, 0, 1),
(1731, 122, '1176', 'sound_set_67', 3, 0, 1),
(1732, 122, '1177', 'sound_set_66', 3, 0, 1),
(1733, 122, '1178', 'sound_set_65', 3, 0, 1),
(1734, 122, '1382', 'sound_set_71', 3, 0, 1),
(1735, 122, '1551', 'sound_set_72', 3, 0, 1),
(1736, 95, '868', 'rclr_sofa', 10, 0, 1),
(1737, 72, '867', 'rom_lamp', 3, 0, 1),
(1738, 95, '869', 'rclr_garden', 10, 0, 1),
(1739, 95, '870', 'rclr_chair', 10, 0, 1),
(1740, 95, '991', 'rare_mnstr', 10, 0, 1),
(1752, 121, '1008', 'jukebox*1', 5, 0, 1),
(1742, 105, '993', 'one_way_door*3', 10, 0, 1),
(1743, 105, '994', 'one_way_door*4', 10, 0, 1),
(1744, 105, '995', 'one_way_door*5', 10, 0, 1),
(1745, 105, '996', 'one_way_door*6', 10, 0, 1),
(1746, 105, '997', 'one_way_door*7', 10, 0, 1),
(1747, 105, '998', 'one_way_door*8', 10, 0, 1),
(1748, 105, '999', 'one_way_door*9', 20, 0, 1),
(1753, 66, '1023', 'habboween_crypt', 6, 0, 1),
(1750, 105, '992', 'one_way_door*2', 10, 0, 1),
(1754, 66, '1024', 'habboween_grass', 5, 0, 1),
(1755, 39, '1044', 'plant_mazegate_snow', 3, 0, 1),
(1756, 39, '1045', 'plant_maze_snow', 3, 0, 1),
(1759, 123, '1062', 'noob_table*2', 0, 100, 1),
(1760, 123, '1063', 'noob_table*3', 0, 100, 1),
(1808, 75, '1107', 'sand_cstl_wall', 5, 0, 1),
(1762, 123, '1064', 'noob_table*4', 0, 100, 1),
(1763, 123, '1065', 'noob_table*5', 0, 100, 1),
(1764, 123, '1066', 'noob_table*6', 0, 100, 1),
(1765, 123, '1067', 'noob_stool*1', 0, 100, 1),
(1766, 123, '1068', 'noob_stool*2', 0, 100, 1),
(1767, 123, '1069', 'noob_stool*3', 0, 100, 1),
(1768, 123, '1070', 'noob_stool*4', 0, 100, 1),
(1769, 123, '1071', 'noob_stool*5', 0, 100, 1),
(1770, 123, '1072', 'noob_stool*6', 0, 100, 1),
(1771, 123, '1073', 'noob_rug*1', 0, 100, 1),
(1772, 123, '1074', 'noob_rug*2', 0, 100, 1),
(1773, 123, '1075', 'noob_rug*3', 0, 100, 1),
(1774, 123, '1076', 'noob_rug*4', 0, 100, 1),
(1775, 123, '1077', 'noob_rug*5', 0, 100, 1),
(1776, 123, '1078', 'noob_rug*6', 0, 100, 1),
(1777, 123, '1079', 'noob_lamp*1', 0, 100, 1),
(1778, 123, '1080', 'noob_lamp*2', 0, 100, 1),
(1779, 123, '1081', 'noob_lamp*3', 0, 100, 1),
(1780, 123, '1082', 'noob_lamp*4', 0, 100, 1),
(1781, 123, '1083', 'noob_lamp*5', 0, 100, 1),
(1782, 123, '1084', 'noob_lamp*6', 0, 100, 1),
(1783, 123, '1085', 'noob_chair*1', 0, 100, 1),
(1784, 123, '1086', 'noob_chair*2', 0, 100, 1),
(1785, 123, '1087', 'noob_chair*3', 0, 100, 1),
(1786, 123, '1088', 'noob_chair*4', 0, 100, 1),
(1787, 123, '1089', 'noob_chair*5', 0, 100, 1),
(1788, 123, '1090', 'noob_chair*6', 0, 100, 1),
(1826, 126, '1168', 'tiki_corner', 3, 0, 1),
(1825, 126, '1167', 'tiki_junglerug', 45, 0, 10),
(1824, 126, '1167', 'tiki_junglerug', 5, 0, 1),
(1823, 126, '1166', 'tiki_parasol', 4, 0, 1),
(1822, 126, '1165', 'tiki_sand', 45, 0, 10),
(1821, 126, '1165', 'tiki_sand', 5, 0, 1),
(1795, 123, '1185', 'noob_plant', 0, 100, 1),
(1820, 126, '1164', 'tiki_statue', 5, 0, 1),
(1819, 126, '1163', 'tiki_torch', 3, 0, 1),
(1818, 126, '1162', 'tiki_toucan', 4, 0, 1),
(1817, 126, '1161', 'tiki_tray0', 3, 0, 1),
(1816, 126, '1159', 'tiki_tray2', 3, 0, 1),
(1815, 126, '1160', 'tiki_tray1', 3, 0, 1),
(1832, 76, '1103', 'fortune', 5, 0, 1),
(1813, 126, '1158', 'tiki_tray3', 3, 0, 1),
(1812, 126, '1157', 'tiki_tray4', 3, 0, 1),
(1811, 126, '1156', 'tiki_waterfall', 5, 0, 1),
(1809, 75, '1108', 'sand_cstl_twr', 5, 0, 1),
(1810, 75, '1109', 'sand_cstl_gate', 5, 0, 1),
(1827, 126, '1169', 'tiki_bflies', 3, 0, 1),
(1828, 126, '1170', 'tiki_bench', 3, 0, 1),
(1829, 126, '1171', 'tiki_bardesk', 100, 0, 50),
(1830, 126, '1690', 'tiki_wallplnt', 4, 0, 1),
(1831, 126, '1691', 'tiki_surfboard', 3, 0, 1),
(1833, 236, '1104', 'sw_table', 10, 0, 1),
(1834, 236, '1105', 'sw_raven', 10, 0, 1),
(1836, 236, '1106', 'sw_chest', 10, 0, 1),
(1838, 95, '1113', 'rclr_lamp', 10, 0, 1),
(1839, 95, '1117', 'md_rug', 10, 0, 1),
(1840, 95, '1116', 'nouvelle_trax', 10, 0, 1),
(1841, 95, '1139', 'jukebox_ptv*1', 10, 0, 1),
(1842, 121, '1141', 'traxsilver', 5, 0, 1),
(1843, 121, '1142', 'traxgold', 5, 0, 1),
(1844, 121, '1143', 'traxbronze', 5, 0, 1),
(1845, 226, '1144', 'bench_puffet', 5000, 1500, 1),
(1846, 13, '1145', 'CFC_500_goldbar', 500, 0, 1),
(1847, 13, '1146', 'CFC_200_moneybag', 200, 0, 1),
(1848, 13, '1148', 'CFC_100_coin_gold', 100, 0, 1),
(1851, 128, '19940', 'urban_bench_plain', 4, 0, 1),
(1850, 13, '1149', 'CFC_50_coin_silver', 50, 0, 1),
(1852, 229, '1328', 'ads_igorswitch', 10, 0, 1),
(1853, 231, '1329', 'ads_711*1', 10, 0, 1),
(1854, 231, '1330', 'ads_711*2', 10, 0, 1),
(1855, 231, '1331', 'ads_711*3', 10, 0, 1),
(1856, 231, '1332', 'ads_711*4', 10, 0, 1),
(1857, 229, '1333', 'ads_igorraygun', 10, 0, 1),
(1858, 234, '1412', 'ads_cldesk', 10, 0, 1),
(1859, 234, '1414', 'ads_cltele', 10, 0, 1),
(1860, 234, '1415', 'ads_clfloor', 10, 0, 1),
(1862, 229, '1327', 'ads_igorbrain', 10, 0, 1),
(1863, 232, '1417', 'Mall shop window', 10, 0, 1),
(1864, 233, '1441', 'ads_idol_floor1', 10, 0, 1),
(1865, 229, '1442', 'ads_igor_dsk', 10, 0, 1),
(1866, 233, '1443', 'ads_idol_desk', 10, 0, 1),
(1867, 233, '1444', 'ads_idol_ch', 10, 0, 1),
(1868, 229, '1445', 'ads_igor_flask', 10, 0, 1),
(1869, 233, '1446', 'ads_idol_drape', 10, 0, 1),
(1870, 233, '1447', 'ads_idol_floor2', 10, 0, 1),
(1871, 233, '1453', 'ads_idol_piano', 10, 0, 1),
(1872, 231, '1455', 'ads_711shelf', 10, 0, 1),
(1873, 233, '1464', 'ads_idol_jukebox*1', 10, 0, 1),
(1874, 233, '1465', 'ads_idol_pchair', 10, 0, 1),
(1875, 233, '1467', 'ads_idol_audChr', 10, 0, 1),
(1876, 233, '1468', 'ads_idol_trax', 10, 0, 1),
(1877, 233, '1469', 'ads_idol_tele', 10, 0, 1),
(1878, 233, '1474', 'ads_idol_mic', 10, 0, 1),
(1879, 233, '1475', 'ads_idol_hotspot', 10, 0, 1),
(1880, 233, '1476', 'ads_idol_clRack', 10, 0, 1),
(1881, 233, '1477', 'ads_idol_voting_ch', 10, 0, 1),
(1882, 95, '1491', 'ads_frankb', 10, 0, 1),
(1883, 95, '1508', 'ads_grefusa_cactus', 10, 0, 1),
(1884, 233, '1509', 'ads_idol_tube', 10, 0, 1),
(1885, 233, '1511', 'ads_idol_cork', 10, 0, 1),
(1886, 234, '1512', 'ads_cl_jukeb', 10, 0, 1),
(1887, 233, '1518', 'ads_idol_newsDsk', 10, 0, 1),
(1888, 233, '1524', 'ads_idol_ichair', 10, 0, 1),
(1889, 95, '1526', 'ads_reebok_block2', 10, 0, 1),
(1890, 95, '1527', 'ads_malaco_rug', 10, 0, 1),
(1891, 95, '1530', 'ads_malaco_gu', 10, 0, 1),
(1892, 234, '1531', 'ads_clcake', 10, 0, 1),
(1893, 234, '1532', 'ads_cl_sofa', 10, 0, 1),
(1894, 233, '1533', 'ads_idol_tblCloth', 10, 0, 1),
(1895, 233, '1534', 'ads_idol_carpet', 10, 0, 1),
(1896, 233, '1535', 'ads_idol_lamp', 10, 0, 1),
(1897, 95, '1541', 'ads_goldtabl', 10, 0, 1),
(1898, 235, '1553', 'ads_calip_cola*1', 10, 0, 1),
(1899, 235, '1554', 'ads_calip_cola*2', 10, 0, 1),
(1900, 235, '1555', 'ads_calip_cola*3', 10, 0, 1),
(1901, 231, '1630', 'ads_711*6', 10, 0, 1),
(1902, 235, '1556', 'ads_calip_cola*4', 10, 0, 1),
(1903, 235, '1562', 'ads_calip_chair', 10, 0, 1),
(1904, 233, '1563', 'ads_idol_trophy', 10, 0, 1),
(1905, 235, '1565', 'ads_calip_pool', 10, 0, 1),
(1906, 235, '1572', 'ads_calip_tele', 10, 0, 1),
(2106, 94, '247', 'rare_daffodil_rug', 800, 0, 100),
(1908, 235, '1587', 'ads_calip_lava', 10, 0, 1),
(1909, 232, '1591', 'Mall coffee machine', 10, 0, 1),
(1910, 232, '1612', 'Mall kiosk', 10, 0, 1),
(1911, 95, '1619', 'ads_elisa_gnome', 10, 0, 1),
(1912, 235, '1621', 'ads_oc_soda', 10, 0, 1),
(1913, 231, '1629', 'ads_711*5', 10, 0, 1),
(1914, 231, '1631', 'ads_711*7', 10, 0, 1),
(1915, 95, '1652', 'ads_1800tele', 10, 0, 1),
(1916, 95, '1707', 'ads_sunnyd', 10, 0, 1),
(1917, 95, '1711', 'ads_dave_wall', 10, 0, 1),
(1918, 95, '1714', 'ads_nokia_logo', 10, 0, 1),
(1919, 95, '1715', 'ads_nokia_phone', 10, 0, 1),
(1920, 95, '1720', 'ads_campguitar', 10, 0, 1),
(1921, 95, '1728', 'ads_cmusic', 10, 0, 1),
(1922, 234, '1741', 'ads_clwall1', 10, 0, 1),
(1923, 234, '1742', 'ads_clwall2', 10, 0, 1),
(1924, 234, '1743', 'ads_clwall3', 10, 0, 1),
(1925, 95, '1744', 'ads_ob_wall', 10, 0, 1),
(1926, 232, '1745', 'plain mall window', 10, 0, 1),
(1927, 42, '20022', 'a0 prizetrophy6_b', 8, 0, 1),
(1928, 229, '1750', 'ads_igor_wall', 10, 0, 1),
(1929, 229, '1751', 'ads_igorevilb', 10, 0, 1),
(1930, 233, '1752', 'ads_idol_wall', 10, 0, 1),
(1931, 232, '1753', 'mall Furniture window', 10, 0, 1),
(1932, 232, '1754', 'Mall petshop window', 10, 0, 1),
(1933, 233, '1758', 'ads_idol_tv', 10, 0, 1),
(1934, 233, '1760', 'ads_idol_mirror', 10, 0, 1),
(1935, 232, '1761', 'Mall Cinema window', 10, 0, 1),
(1936, 232, '1762', 'Mall music window', 10, 0, 1),
(1937, 232, '1763', 'Mall beauty window', 10, 0, 1),
(1938, 232, '1765', 'Mall Childline window', 10, 0, 1),
(1939, 232, '1768', 'Mall ice cream window', 10, 0, 1),
(1940, 232, '1769', 'Mall sportshop window', 10, 0, 1),
(1941, 233, '1770', 'ads_idol_logo', 10, 0, 1),
(1942, 95, '1773', 'ads_lin_wh_c', 10, 0, 1),
(1943, 95, '1774', 'ads_malaco_tv', 10, 0, 1),
(1944, 95, '1775', 'ads_puffet_tv', 10, 0, 1),
(1945, 95, '1776', 'ads_reebok_tv', 10, 0, 1),
(1946, 95, '1784', 'ads_mirror', 10, 0, 1),
(1947, 95, '1789', 'ads_wwe_poster', 10, 0, 1),
(1948, 232, '1790', 'Mall travel agency window', 10, 0, 1),
(1949, 95, '1793', 'ads_veet', 10, 0, 1),
(1950, 232, '1797', 'Mall garnea window', 10, 0, 1),
(1951, 232, '1799', 'Mall clotheshop window', 10, 0, 1),
(2011, 88, '1725', 'hw_08_xray', 5, 0, 1),
(1954, 235, '20037', 'ads_calip_parasol', 10, 0, 1),
(1956, 95, '1172', 'tampax_rug', 10, 0, 1),
(1957, 95, '1692', 'tampax_wall', 10, 0, 1),
(1958, 105, '20025', 'pillar*6', 10, 0, 1),
(1959, 55, '20026', 'shelves_norja*4', 3, 0, 1),
(1960, 30, '20027', 'bed_polyfon*2', 4, 0, 1),
(1961, 55, '20028', 'divider_nor5*6', 3, 0, 1),
(1962, 76, '20029', 'val_cauldron', 10, 0, 1),
(1963, 32, '20030', 'pura_mdl5*1', 3, 0, 1),
(1964, 105, '20031', 'one_way_door*1', 10, 0, 1),
(1976, 128, '20006', 'urban_fence_corner', 3, 0, 10),
(1966, 60, '20032', 'exe_globe', 5, 0, 1),
(2097, 95, '20041', 'year2010', 10, 0, 1),
(1968, 45, '20035', 'fx_bubble', 0, 250, 1),
(1969, 129, '20036', 'bump_tottero', 0, 50, 1),
(1970, 129, '1502', 'bump_road', 0, 75, 1),
(1971, 129, '1497', 'bump_lights', 0, 50, 1),
(1972, 129, '1496', 'bump_tires', 0, 50, 1),
(1973, 129, '1492', 'bump_signs', 0, 50, 1),
(1974, 103, '20034', 'diner_bardesk_corner*5', 3, 0, 1),
(1977, 128, '20016', 'urban_lamp', 4, 0, 1),
(1978, 128, '20018', 'urban_wall', 5, 0, 1),
(1979, 128, '20011', 'urban_wpost', 3, 0, 1),
(1980, 128, '20010', 'urban_sidewalk', 4, 0, 15),
(1981, 128, '20008', 'urban_bench', 3, 0, 1),
(1982, 128, '20007', 'urban_carsofa', 4, 0, 1),
(1983, 128, '20014', 'urban_blocker', 2, 0, 1),
(1984, 128, '20013', 'urban_bin', 3, 0, 1),
(1985, 128, '20012', 'urban_fence', 3, 0, 10),
(1986, 128, '20015', 'urban_bsktbll', 4, 0, 1),
(1987, 125, '19877', 'avatar_effect9', 0, 100, 1),
(1988, 125, '19878', 'avatar_effect6', 0, 100, 1),
(1989, 125, '19879', 'avatar_effect16', 0, 100, 1),
(1990, 125, '19880', 'avatar_effect2', 0, 100, 1),
(1991, 125, '19881', 'avatar_effect14', 0, 100, 1),
(1992, 125, '19882', 'avatar_effect15', 0, 100, 1),
(1993, 125, '19883', 'avatar_effect3', 0, 100, 1),
(1994, 125, '19884', 'avatar_effect17', 0, 100, 1),
(1995, 125, '19885', 'avatar_effect18', 0, 100, 1),
(1996, 125, '19886', 'avatar_effect1', 0, 100, 1),
(1997, 125, '19887', 'avatar_effect4', 0, 100, 1),
(1998, 125, '19888', 'avatar_effect5', 0, 100, 1),
(1999, 125, '19889', 'avatar_effect7', 0, 100, 1),
(2000, 125, '19890', 'avatar_effect8', 0, 100, 1),
(2001, 125, '19891', 'avatar_effect10', 0, 100, 1),
(2002, 125, '19892', 'avatar_effect12', 0, 100, 1),
(2003, 125, '19893', 'avatar_effect13', 0, 100, 1),
(2004, 129, '19957', 'avatar_effect22', 0, 100, 1),
(2005, 129, '19958', 'avatar_effect19', 0, 100, 1),
(2006, 129, '19959', 'avatar_effect20', 0, 100, 1),
(2007, 129, '19960', 'avatar_effect21', 0, 100, 1),
(2016, 236, '1681', 'sw_stone', 10, 0, 1),
(2012, 95, '1718', 'netari_poster', 10, 0, 1),
(2013, 95, '1713', 'easy_poster', 10, 0, 1),
(2014, 95, '1684', 'md_logo_wall', 10, 0, 1),
(2015, 236, '1682', 'sw_hole', 10, 0, 1),
(2017, 236, '1680', 'sw_swords', 10, 0, 1),
(2018, 41, '1675', 'guitar_v', 4, 0, 1),
(2019, 41, '1674', 'guitar_skull', 4, 0, 1),
(2020, 43, '1673', 'habbowheel', 5, 0, 1),
(2021, 72, '1670', 'wallmirror', 3, 0, 1),
(2022, 85, '1633', 'pix_asteroid', 0, 2000, 1),
(2023, 71, '1626', 'rela_stone', 4, 0, 1),
(2024, 94, '1622', 'marsrug', 10, 0, 1),
(2025, 85, '1592', 'totem_planet', 0, 2000, 1),
(2026, 95, '1590', 'voting_ch', 10, 0, 1),
(2027, 73, '1586', 'transparent_floor', 5, 0, 15),
(2028, 233, '1583', 'clrack', 10, 0, 1),
(2029, 233, '1582', 'noticeboard', 10, 0, 1),
(2030, 95, '1577', 'audChr', 10, 0, 1),
(2031, 85, '1571', 'saturn', 0, 2000, 1),
(2032, 233, '1566', 'laptopdesk', 10, 0, 1),
(2033, 85, '1564', 'totem_head', 0, 2000, 1),
(2034, 130, '1538', 'env_telep', 5, 0, 1),
(2035, 95, '1529', 'tray_glasstower', 6, 0, 1),
(2036, 95, '1528', 'tray_champagne', 5, 0, 1),
(2037, 95, '1525', 'tray_cake', 4, 0, 1),
(2038, 130, '1522', 'env_tree4', 5, 0, 1),
(2039, 130, '1520', 'env_tree2', 3, 0, 1),
(2040, 130, '1519', 'env_tree1', 3, 0, 1),
(2044, 130, '1515', 'env_bushes', 5, 0, 1),
(2043, 130, '1516', 'env_bushes_gate', 5, 0, 1),
(2045, 130, '1514', 'env_tree3', 3, 0, 1),
(2046, 130, '1513', 'env_grass', 5, 0, 1),
(2047, 130, '1513', 'env_grass', 15, 0, 4),
(2048, 85, '1507', 'totem_leg', 0, 2000, 1),
(2110, 112, '20052', 'ads_twi_crest', 6, 0, 1),
(2050, 58, '1448', 'lostc_octopus', 6, 0, 1),
(2052, 85, '1430', 'planet_of_love', 0, 2000, 1),
(2054, 28, '1365', 'penguin_basic', 2, 0, 1),
(2055, 28, '1367', 'penguin_musketeer', 2, 0, 1),
(2056, 28, '1370', 'penguin_wrestler', 2, 0, 1),
(2057, 28, '1372', 'penguin_robot', 2, 0, 1),
(2058, 28, '1376', 'penguin_suit', 2, 0, 1),
(2059, 28, '1379', 'penguin_icehockey', 2, 0, 1),
(2060, 28, '1380', 'penguin_pilot', 2, 0, 1),
(2061, 28, '1381', 'penguin_ballet', 2, 0, 1),
(2062, 28, '1383', 'penguin_boxer', 2, 0, 1),
(2063, 28, '1384', 'penguin_glow', 2, 0, 1),
(2064, 28, '1385', 'penguin_swim', 2, 0, 1),
(2065, 28, '1386', 'penguin_sumo', 2, 0, 1),
(2066, 28, '1388', 'penguin_clown', 2, 0, 1),
(2067, 28, '1389', 'penguin_infected', 2, 0, 1),
(2068, 28, '1393', 'penguin_super', 2, 0, 1),
(2069, 28, '1396', 'penguin_rock', 2, 0, 1),
(2070, 28, '1399', 'penguin_ski', 2, 0, 1),
(2071, 28, '1400', 'penguin_skater', 2, 0, 1),
(2072, 28, '1402', 'penguin_elf', 2, 0, 1),
(2073, 28, '1403', 'penguin_bunny', 2, 0, 1),
(2074, 28, '1404', 'penguin_ninja', 2, 0, 1),
(2075, 28, '1405', 'penguin_magician', 2, 0, 1),
(2076, 28, '1406', 'penguin_hunchback', 2, 0, 1),
(2077, 28, '1407', 'penguin_cowboy', 2, 0, 1),
(2078, 28, '1408', 'penguin_punk', 2, 0, 1),
(2079, 28, '1409', 'penguin_pirate', 2, 0, 1),
(2080, 45, '1390', 'fx_flare', 0, 250, 1),
(2081, 95, '1377', 'svnr_fi', 10, 0, 1),
(2082, 45, '1371', 'fx_explosion', 0, 250, 1),
(2084, 95, '1202', 'svnr_aus', 10, 0, 1),
(2085, 95, '1201', 'svnr_de', 10, 0, 1),
(2086, 95, '1200', 'svnr_it', 10, 0, 1),
(2087, 95, '1199', 'svnr_nl', 10, 0, 1),
(2088, 95, '1198', 'svnr_uk', 10, 0, 1),
(2089, 36, '20024', 'table_plasto_square*9', 3, 0, 1),
(2090, 76, '20021', 'heart', 5, 0, 1),
(2091, 95, '1303', 'easy_carpet', 10, 0, 1),
(2092, 95, '1304', 'easy_bowl2', 10, 0, 1),
(2093, 95, '1319', 'netari_carpet', 10, 0, 1),
(2094, 40, '1325', 'sob_carpet', 3, 0, 1),
(2095, 229, '1326', 'igor_seat', 10, 0, 1),
(2098, 95, '20042', 'party_lantern', 10, 0, 1),
(2103, 56, '20045', 'arabian_tile', 5, 0, 1),
(2105, 232, '20048', 'Mall elevator', 10, 0, 1),
(2112, 112, '20053', 'ads_twi_paint', 3, 0, 1),
(2107, 95, '20050', 'xm09_infotv', 10, 0, 1),
(2113, 112, '20054', 'ads_twi_windw', 3, 0, 1),
(2114, 112, '20055', 'ads_twi_bwall2', 3, 0, 1),
(2115, 112, '20056', 'ads_twi_dreamc', 3, 0, 1),
(2116, 112, '20057', 'ads_twi_bwall1', 3, 0, 1),
(2121, 56, '20059', 'arabian_wall', 4, 0, 1),
(2123, 73, '20064', 'sf_mbar', 5, 0, 1),
(2124, 27, '20063', 'xm09_cocoa', 6, 0, 1),
(2126, 142, '317', 'nest', 3, 0, 1),
(2127, 142, '318', 'petfood1', 3, 0, 1),
(2128, 142, '319', 'petfood2', 3, 0, 1),
(2129, 142, '320', 'petfood3', 3, 0, 1),
(2130, 142, '321', 'waterbowl*4', 3, 0, 1),
(2131, 142, '322', 'waterbowl*5', 3, 0, 1),
(2132, 142, '326', 'toy1', 3, 0, 1),
(2133, 142, '323', 'waterbowl*2', 3, 0, 1),
(2134, 142, '324', 'waterbowl*1', 3, 0, 1),
(2135, 142, '325', 'waterbowl*3', 3, 0, 1),
(2136, 142, '327', 'toy1*1', 3, 0, 1),
(2137, 142, '328', 'toy1*2', 3, 0, 1),
(2139, 142, '330', 'toy1*4', 3, 0, 1),
(2140, 142, '331', 'goodie1', 3, 0, 1),
(2141, 142, '332', 'goodie1*1', 3, 0, 1),
(2142, 142, '333', 'goodie1*2', 3, 0, 1),
(2143, 142, '334', 'goodie2', 3, 0, 1),
(2144, 142, '334', 'goodie2', 3, 0, 1),
(2145, 134, '1478', 'ecotron_box', 3, 0, 1),
(2146, 134, '1479', 'eco_light2', 3, 0, 25),
(2147, 134, '1480', 'eco_chair3', 3, 0, 1),
(2148, 134, '1481', 'eco_table3', 3, 0, 1),
(2149, 134, '1482', 'eco_lamp2', 3, 0, 1),
(2150, 134, '1483', 'eco_sofa3', 3, 0, 1),
(2151, 134, '1484', 'eco_table2', 3, 0, 1),
(2152, 134, '1485', 'eco_fruits2', 3, 0, 1),
(2153, 134, '1486', 'eco_sofa1', 3, 0, 1),
(2154, 134, '1487', 'eco_fruits3', 3, 0, 1),
(2155, 134, '1488', 'eco_light1', 3, 0, 1),
(2156, 134, '1489', 'eco_tree1', 3, 0, 1),
(2157, 134, '1490', 'eco_cactus2', 3, 0, 1),
(2158, 134, '1493', 'eco_cactus1', 3, 0, 1),
(2159, 134, '1494', 'eco_chair2', 3, 0, 1),
(2160, 134, '1495', 'eco_cactus3', 3, 0, 1),
(2161, 134, '1498', 'eco_lamp3', 3, 0, 1),
(2164, 30, '631', 'divider_poly3*8', 3, 0, 1),
(2163, 142, '819', 'petfood4', 3, 0, 1),
(2165, 134, '164', 'present_gen', 3, 0, 1),
(2166, 134, '165', 'present_gen1', 3, 0, 100),
(2167, 134, '166', 'present_gen2', 3, 0, 1),
(2168, 134, '167', 'present_gen3', 3, 0, 1),
(2169, 134, '168', 'present_gen4', 3, 0, 1),
(2170, 134, '169', 'present_gen5', 3, 0, 1),
(2171, 134, '170', 'present_gen6', 3, 0, 1),
(2172, 134, '1450', 'lc_medusa2', 3, 0, 1),
(2173, 134, '1007', 'song_disk', 3, 0, 1),
(2174, 134, '1499', 'eco_table1', 3, 0, 1),
(2175, 134, '1500', 'eco_chair1', 3, 0, 1),
(2176, 134, '1501', 'eco_sofa2', 3, 0, 1),
(2177, 134, '1503', 'eco_fruits1', 3, 0, 1),
(2178, 134, '1504', 'eco_lamp1', 3, 0, 1),
(2179, 134, '1505', 'eco_light3', 3, 0, 1),
(2180, 134, '1506', 'eco_tree2', 3, 0, 1),
(2181, 134, '1542', 'eco_mush1', 3, 0, 1),
(2182, 134, '1547', 'eco_mush2', 3, 0, 1),
(2183, 134, '1764', 'eco_curtains1', 3, 0, 1),
(2184, 134, '1766', 'eco_curtains3', 3, 0, 1),
(2185, 134, '1767', 'eco_curtains2', 3, 0, 1),
(2195, 41, '20156', 'flag_dominicanrepublic', 3, 0, 1),
(2194, 41, '20155', 'flag_ecuador', 3, 0, 1),
(2193, 41, '20154', 'flag_chile', 3, 0, 1),
(2190, 41, '20151', 'flag_singapore', 3, 0, 1),
(2191, 41, '20153', 'flag_columbia', 3, 0, 1),
(2196, 41, '20157', 'flag_newzealand', 3, 0, 1),
(2197, 41, '20158', 'flag_malaysia', 3, 0, 1),
(2198, 41, '20160', 'flag_venezl', 3, 0, 1),
(2199, 41, '20161', 'flag_algeria', 3, 0, 1),
(2200, 41, '20162', 'flag_tunisia', 3, 0, 1),
(2201, 41, '20163', 'flag_panama', 3, 0, 1),
(2202, 41, '20164', 'flag_mexico', 3, 0, 1),
(2203, 41, '20165', 'flag_argentina', 3, 0, 1),
(2204, 41, '20166', 'flag_philippines', 3, 0, 1),
(2205, 41, '20167', 'flag_greece', 3, 0, 1),
(2206, 41, '20168', 'flag_peru', 3, 0, 1),
(2207, 41, '20169', 'flag_morocco', 3, 0, 1),
(2208, 41, '20170', 'flag_turkey', 3, 0, 1),
(2209, 136, '20117', 'bling_fridge', 5, 0, 1),
(2210, 136, '20121', 'bling_chair_a', 3, 0, 1),
(2211, 136, '20123', 'bling_pool', 3, 0, 1),
(2212, 136, '20124', 'bling_toilet', 4, 0, 1),
(2213, 136, '20126', 'bling_chair_c', 3, 0, 1),
(2214, 136, '20127', 'bling_chair_b', 3, 0, 1),
(2215, 136, '20128', 'bling_shwr', 5, 0, 1),
(2216, 136, '20129', 'bling_bed', 3, 0, 1),
(2217, 136, '20130', 'bling_sofa', 4, 0, 1),
(2218, 136, '20144', 'bling_fridge_restricted', 3, 0, 1),
(2219, 136, '20200', 'bling_sink', 3, 0, 1),
(2220, 136, '20202', 'bling_cabinet', 3, 0, 1),
(2223, 137, '20103', 'org_chairpnk', 3, 0, 1),
(2224, 137, '20104', 'org_tblpnk', 3, 0, 1),
(2225, 137, '20105', 'org_lampblk', 3, 0, 1),
(2226, 137, '20106', 'org_lamppnk', 3, 0, 1),
(2227, 137, '20107', 'org_table', 3, 0, 1),
(2228, 137, '20111', 'org_chairblk', 3, 0, 1),
(2229, 137, '20112', 'org_tblblk', 3, 0, 1),
(2230, 137, '20113', 'org_chrblk', 3, 0, 1),
(2231, 137, '20115', 'org_chrpnk', 3, 0, 1),
(2232, 76, '20125', 'val09_floor', 3, 0, 1),
(2233, 76, '20131', 'val09_floor2', 3, 0, 1),
(2234, 76, '20198', 'val09_wdrobe_b', 5, 0, 1),
(2235, 76, '20199', 'val09_wall2', 4, 0, 1),
(2236, 76, '20201', 'val09_wall1', 4, 0, 1),
(2237, 76, '20204', 'val09_wdrobe_g', 5, 0, 1),
(2238, 76, '20134', 'val_hSeat*1', 3, 0, 1),
(2239, 76, '20135', 'val_hSeat*2', 3, 0, 1),
(2240, 76, '20136', 'val_hSeat*3', 3, 0, 1),
(2241, 76, '20137', 'val_hSeat*4', 3, 0, 1),
(2242, 76, '20138', 'val_hSeat*5', 3, 0, 1),
(2243, 76, '20139', 'val_hSeat*6', 3, 0, 1),
(2244, 76, '20140', 'val_hSeat*7', 3, 0, 1),
(2245, 76, '20141', 'val_basket', 3, 0, 1),
(2246, 76, '20190', 'val_table1', 4, 0, 1),
(2248, 27, '20093', 'xm09_lrgBauble', 10, 0, 1),
(2250, 42, '20109', 'xm09_trophy', 6, 0, 1),
(2251, 27, '20171', 'xm09_bauble_12', 3, 0, 1),
(2252, 27, '20172', 'xm09_bauble_16', 3, 0, 1),
(2253, 27, '20173', 'xm09_bauble_17', 3, 0, 1),
(2254, 27, '20174', 'xm09_bauble_15', 3, 0, 1),
(2255, 27, '20175', 'xm09_bauble_10', 3, 0, 1),
(2256, 27, '20176', 'xm09_bauble_9', 3, 0, 1),
(2257, 27, '20177', 'xm09_bauble_18', 3, 0, 1),
(2258, 27, '20178', 'xm09_bauble_13', 3, 0, 1),
(2259, 27, '20179', 'xm09_bauble_2', 3, 0, 1),
(2260, 27, '20180', 'xm09_bauble_1', 3, 0, 1),
(2261, 27, '20181', 'xm09_bauble_22', 3, 0, 1),
(2262, 27, '20182', 'xm09_bauble_3', 3, 0, 1),
(2263, 27, '20183', 'xm09_bauble_21', 3, 0, 1),
(2264, 27, '20184', 'xm09_bauble_8', 3, 0, 1),
(2265, 27, '20185', 'xm09_bauble_4', 3, 0, 1),
(2266, 27, '20186', 'xm09_bauble_5', 3, 0, 1),
(2267, 27, '20187', 'xm09_bauble_11', 3, 0, 1),
(2268, 27, '20188', 'xm09_bauble_20', 3, 0, 1),
(2269, 27, '20191', 'xm09_bauble_14', 3, 0, 1),
(2270, 27, '20192', 'xm09_bauble_7', 3, 0, 1),
(2271, 27, '20193', 'xm09_bauble_6', 3, 0, 1),
(2272, 27, '20194', 'xm09_bauble_19', 3, 0, 1),
(2273, 76, '20132', 'teddy_basic', 4, 0, 1),
(2274, 76, '20133', 'teddy_pendergrass', 5, 0, 1),
(2275, 76, '20142', 'teddy_bear', 3, 0, 1),
(2276, 76, '20143', 'teddy_pink', 4, 0, 1),
(2277, 142, '20079', 'nest_plow_reg', 3, 0, 1),
(2278, 142, '20080', 'nest_snug_yel', 4, 0, 1),
(2279, 142, '20085', 'nest_snug_grn', 4, 0, 1),
(2280, 142, '20086', 'nest_snug_red', 4, 0, 1),
(2281, 142, '20087', 'nest_snug_grn', 4, 0, 1),
(2282, 142, '20088', 'nest_plow_bro', 3, 0, 1),
(2283, 142, '20089', 'nest_plow_red', 3, 0, 1),
(2284, 142, '20090', 'nest_snug_blu', 4, 0, 1),
(2285, 142, '20092', 'nest_plow_blu', 3, 0, 1),
(2286, 142, '20094', 'nest_dirt', 2, 0, 1),
(2287, 142, '20095', 'nest_snug_prp', 3, 0, 1),
(2288, 142, '20096', 'nest_nest', 3, 0, 1),
(2289, 142, '20097', 'nest_nails', 2, 0, 1),
(2290, 142, '20098', 'nest_basket', 2, 0, 1),
(2291, 142, '20099', 'nest_ice', 2, 0, 1),
(2292, 142, '20100', 'nest_plow_skl', 3, 0, 1),
(2293, 142, '20101', 'nest_snug_bla', 4, 0, 1),
(2294, 95, '20071', 'ads_gsArcade_2', 10, 0, 1),
(2295, 233, '20073', 'ads_idol_l_carpet', 10, 0, 1),
(2296, 234, '20068', 'ads_cllava2', 10, 0, 1),
(2297, 95, '20072', 'ads_gsArcade_1', 10, 0, 1),
(2298, 95, '20074', 'ads_mtvtrophy_silver', 10, 0, 1),
(2299, 105, '20075', 'ads_spang_sleep', 10, 0, 1),
(2300, 95, '20076', 'ads_mtvtrophy_gold', 10, 0, 1),
(2301, 234, '20102', 'ads_cl_moodi', 10, 0, 1),
(2302, 95, '20116', 'ads_chups', 10, 0, 1),
(2303, 95, '20119', 'ads_droetker_paula', 10, 0, 1),
(2304, 95, '20145', 'ads_percyrock', 10, 0, 1),
(2305, 233, '20147', 'ads_idol_l_logo', 10, 0, 1),
(2306, 95, '20197', 'ads_percyw', 10, 0, 1),
(2307, 95, '20150', 'ads_mtv_tv', 10, 0, 1),
(2308, 95, '20196', 'ads_tv_jaapuisto', 10, 0, 1),
(2310, 237, '20159', 'byesw_loadscreen', 10, 0, 1),
(2312, 95, '20149', 'ads_mtv_bigtv', 10, 0, 1),
(2313, 233, '20148', 'ads_idol_l_tv', 10, 0, 1),
(2314, 27, '20066', 'tree2', 2, 0, 1),
(2317, 30, '20067', 'divider_poly3*7', 6, 0, 1),
(2318, 37, '20077', 'ktchn_hlthNut', 5, 0, 1),
(2319, 142, '20078', 'petfood8', 10, 0, 1),
(2320, 142, '20081', 'petfood9', 10, 0, 1),
(2321, 142, '20082', 'petfood10', 10, 0, 1),
(2322, 142, '20083', 'petfood7', 10, 0, 1),
(2323, 142, '20084', 'petfood6', 10, 0, 1),
(2324, 142, '20091', 'petfood5', 10, 0, 1),
(2325, 142, '20118', 'petfood12', 10, 0, 1),
(2326, 142, '20120', 'petfood11', 10, 0, 1),
(2327, 142, '20122', 'petfood13', 10, 0, 1),
(2329, 94, '20146', 'md_can', 10, 0, 1),
(2330, 66, '20152', 'hween09_curt', 4, 0, 1),
(2331, 57, '20108', 'china_tiger', 4, 0, 1),
(2332, 57, '20110', 'china_plmTree', 3, 0, 1),
(2333, 134, '20114', 'china_tigrSeat', 3, 0, 1),
(2334, 57, '20195', 'china_pstr3', 3, 0, 1),
(2336, 62, '20207', 'rare_ironmaiden name', 5, 0, 1),
(2337, 95, '20208', 'T-REX', 50, 0, 1),
(2338, 143, '20209', 'beanstalk', 6, 0, 1),
(2339, 95, '20210', 'rare_vdoll name', 3, 0, 1),
(2340, 95, '20211', 'rare_mmmth name', 10, 0, 1),
(2341, 136, '20212', 'crystal_patch', 3, 0, 1),
(2342, 95, '20213', 'ads_boost_surfb name', 10, 0, 1),
(2343, 234, '20214', 'ads_tlc_wheel name', 10, 0, 1),
(2346, 16, '247', 'rare_daffodil_rug', 100, 100, 4),
(2348, 134, '180', 'doorC', 10, 0, 100),
(2349, 141, '20220', 'a0 pet5', 20, 0, 1),
(2350, 143, '20221', 'garden_lupin4', 4, 0, 1),
(2351, 143, '20222', 'garden_mursu3', 5, 0, 1),
(2352, 143, '20223', 'garden_lupin5', 4, 0, 1),
(2353, 143, '20224', 'garden_seed', 3, 0, 1),
(2354, 143, '20225', 'garden_flytrap', 6, 0, 1),
(2355, 143, '20226', 'garden_flo3', 2, 0, 1),
(2359, 143, '20229', 'garden_mursu2', 5, 0, 1),
(2357, 143, '20227', 'garden_volcano', 5, 0, 1),
(2358, 143, '20228', 'garden_flolamp', 8, 0, 1),
(2360, 143, '20230', 'garden_jyrki', 4, 0, 1),
(2361, 143, '20231', 'garden_mursu4', 4, 0, 1),
(2362, 143, '20232', 'garden_leaves', 3, 0, 1),
(2363, 143, '20233', 'garden_lupin2', 4, 0, 1),
(2364, 143, '20234', 'garden_lupin3', 4, 0, 1),
(2365, 143, '20235', 'garden_mursu', 4, 0, 1),
(2366, 143, '20238', 'garden_orchtree', 6, 0, 1),
(2367, 143, '20237', 'garden_flo2', 2, 0, 1),
(2368, 143, '20239', 'garden_lupin1', 4, 0, 1),
(2369, 143, '20240', 'garden_staringbush', 5, 0, 1),
(2370, 143, '20242', 'garden_flo1', 2, 0, 1),
(2371, 143, '20243', 'garden_jungle', 5, 0, 1),
(2372, 143, '20286', 'garden_wall', 4, 0, 1),
(2374, 144, '20247', 'runway_display', 5, 0, 1),
(2375, 144, '20248', 'runway_bigchr_5', 4, 0, 1),
(2376, 144, '20249', 'runway_bigchr_4', 4, 0, 1),
(2377, 144, '20253', 'runway_stool', 4, 0, 1),
(2378, 144, '20254', 'runway_dvdr', 3, 0, 1),
(2379, 144, '20255', 'runway_block_2', 5, 0, 1),
(2380, 144, '20256', 'runway_bigchr_1', 5, 0, 1),
(2381, 144, '20260', 'runway_block_1', 5, 0, 1),
(2382, 144, '20261', 'runway_bench', 4, 0, 1),
(2383, 144, '20262', 'runway_chair_2', 3, 0, 1),
(2384, 144, '20265', 'runway_bigchr_3', 4, 0, 1),
(2385, 144, '20268', 'runway_bigchr_2', 4, 0, 1),
(2386, 144, '20270', 'runway_table_2', 4, 0, 1),
(2387, 144, '20271', 'runway_table_1', 5, 0, 1),
(2388, 144, '20272', 'runway_manqn_1', 4, 0, 1),
(2389, 144, '20276', 'runway_head', 4, 0, 1),
(2390, 144, '20277', 'runway_manqn_2', 4, 0, 1),
(2391, 144, '20285', 'runway_chair_1', 3, 0, 1),
(2392, 144, '20289', 'runway_shelf', 3, 0, 1),
(2393, 144, '20292', 'runway_fabric', 3, 0, 1),
(2394, 8, '20245', 'hc2_frplc', 5, 0, 1),
(2395, 8, '20246', 'hc2_barchair', 3, 0, 1),
(2396, 8, '20250', 'hc3_dc', 4, 0, 1),
(2397, 8, '20252', 'hc2_sofatbl', 4, 0, 1),
(2398, 8, '20257', 'hc2_biglamp', 3, 0, 1),
(2399, 8, '20258', 'hc2_sofa', 4, 0, 1),
(2400, 8, '20259', 'hc2_carpet', 5, 0, 1),
(2401, 8, '20264', 'hc3_table', 3, 0, 1),
(2402, 8, '20266', 'hc3_stool', 3, 0, 1),
(2403, 8, '20267', 'hc3_sofa', 4, 0, 1),
(2404, 8, '20269', 'hc2_armchair', 3, 0, 1),
(2405, 8, '20273', 'hc2_dvn', 4, 0, 1),
(2406, 8, '20274', 'hc3_light', 3, 0, 1),
(2407, 8, '20275', 'hc3_shelf', 5, 0, 1),
(2408, 8, '20278', 'hc2_divider', 3, 0, 1),
(2409, 8, '20279', 'hc2_coffee', 5, 0, 1),
(2410, 8, '20280', 'hc2_cart', 3, 0, 1),
(2411, 8, '20281', 'hc3_bard', 10, 0, 1),
(2412, 8, '20282', 'hc3_hugelamp', 5, 0, 1),
(2413, 8, '20283', 'hc3_divider', 3, 0, 1),
(2414, 8, '20284', 'hc2_vase', 4, 0, 1),
(2415, 8, '20288', 'hc3_walldeco', 10, 0, 1),
(2416, 134, '20295', 'camera', 10, 0, 1),
(2417, 134, '20045', 'arabian_tile', 10, 0, 100),
(2418, 95, '20241', 'ads_grefusa_yum', 10, 0, 1),
(2419, 95, '20244', 'merger_chesT', 10, 0, 1),
(2420, 95, '20263', 'ads_cheetos name', 10, 0, 1),
(2421, 95, '20287', 'ads_tv_yle name', 10, 0, 1),
(2422, 95, '20290', 'ads_nokia_x6', 10, 0, 1),
(2423, 95, '20291', 'ads_target_wall', 10, 0, 1),
(2424, 95, '20293', 'ads_latrobe_flag', 10, 0, 1),
(2425, 27, '20296', 'holly', 4, 0, 1),
(2427, 145, '20298', 'wed_plant', 15, 0, 1),
(2426, 145, '20297', 'wed_arch', 12, 0, 1),
(2428, 145, '20299', 'wed_icesculp', 15, 0, 1),
(2429, 145, '20300', 'wed_carsofa', 15, 0, 1),
(2430, 147, '20301', 'a0 pet3', 20, 0, 1),
(2431, 148, '20303', 'a0 pet4', 20, 0, 1),
(2432, 149, '20304', 'a0 pet1', 20, 0, 1),
(2433, 150, '20305', 'a0 pet0', 20, 0, 1),
(2434, 151, '20306', 'a0 pet2', 20, 0, 1),
(2495, 238, '20368', 'F.L.A.G prison gate', 4, 0, 10),
(2497, 238, '20370', 'F.L.A.G Prison cell Corner', 2, 0, 1),
(2501, 238, '20373', 'F.L.A.G Guard Tower', 6, 0, 1),
(2502, 238, '20374', 'F.L.A.G Prison wall', 2, 0, 5),
(2504, 238, '20376', 'F.L.A.G Prison cell bars', 4, 0, 10),
(2507, 238, '20379', 'F.L.A.G Prison rock', 2, 0, 1),
(2496, 75, '20369', 'Dingy', 4, 0, 1),
(2498, 75, '20371', 'Lifeguard Chair', 6, 0, 1),
(2499, 75, '20372', 'Light blue Sea Water', 20, 0, 5),
(2503, 75, '20375', 'blow up Sofa', 5, 0, 1),
(2508, 75, '20380', 'Electronic shark', 1, 0, 3),
(2509, 75, '20381', 'coconuts', 3, 0, 2),
(2510, 75, '20382', 'Beach Shower', 5, 0, 1),
(2511, 75, '20383', 'Deep blue sea Water', 50, 0, 10),
(2512, 75, '20384', 'crocodile', 8, 0, 1),
(2513, 75, '20385', 'Surfboard', 6, 0, 1),
(2514, 75, '20386', 'Blow up Chair', 2, 0, 1),
(2515, 75, '20387', 'Blow up Table', 4, 0, 1),
(2517, 75, '20389', 'Beach Ball', 4, 0, 1),
(2518, 75, '20390', 'Blow up lilo', 8, 0, 1),
(2519, 75, '20391', 'The F.L.A.G Mobile', 25, 0, 1),
(2520, 75, '20392', 'Strand Teleporter', 8, 0, 1),
(2521, 75, '20393', 'Pool Ecke', 2, 0, 1),
(2522, 75, '20394', 'Pool Rand', 4, 0, 1),
(2523, 75, '20401', 'Shark jaws', 18, 0, 1),
(2602, 95, '27277', 'Pepsi Vender', 10, 0, 1),
(2574, 13, '1145', 'CFC_500_goldbar', 500000, 0, 500),
(2600, 125, '20404', 'avatar_effect29', 0, 108, 1),
(2601, 125, '20415', 'avatar_effect27', 0, 108, 1),
(2622, 144, '20255', 'runway_block_2', 10, 0, 100),
(2635, 13, '1145', 'CFC_500_goldbar', 5000, 0, 10),
(2636, 35, '219', 'divider_arm3', 30, 2, 10),
(2683, 225, '443', 'queue_tile1*7', 100, 100, 100),
(2639, 76, '20131', 'val09_floor2', 0, 100, 100),
(2640, 35, '39', 'small_chair_armas', 200, 0, 100),
(2641, 35, '38', 'small_table_armas', 200, 69, 100),
(2642, 58, '1449', 'lc_tile1', 100, 100, 50),
(2643, 62, '821', 'gothic_carpet', 100, 69, 50),
(2646, 65, '860', 'spotlight', 100, 100, 50),
(2470, 185, '20341', 'fball_counter', 10, 0, 1),
(2471, 185, '20342', 'fball_ptch0', 5, 0, 1),
(2472, 185, '20343', 'fball_ptch1', 5, 0, 1),
(2473, 185, '20344', 'fball_ptch2', 5, 0, 1),
(2474, 185, '20345', 'fball_ptch3', 5, 0, 1),
(2475, 185, '20346', 'fball_ptch4', 5, 0, 1),
(2476, 185, '20347', 'fball_ptch5', 5, 0, 1),
(2477, 185, '20348', 'fball_ptch6', 5, 0, 1),
(2478, 185, '20349', 'fball_ptch7', 5, 0, 1),
(2479, 185, '20350', 'fball_ptch8', 5, 0, 1),
(2480, 147, '20351', 'fball_score_b', 15, 0, 1),
(2481, 185, '20352', 'fball_score_g', 15, 0, 1),
(2482, 185, '20353', 'fball_score_r', 15, 0, 1),
(2483, 185, '20354', 'fball_score_y', 15, 0, 1),
(2460, 185, '20331', 'fball_cote', 10, 0, 1),
(2461, 185, '20332', 'fball_crnr', 10, 0, 1),
(2462, 185, '20333', 'fball_fnc1', 10, 0, 1),
(2463, 185, '20334', 'fball_fnc3', 10, 0, 1),
(2464, 185, '20335', 'fball_goal_b', 15, 0, 1),
(2465, 185, '20336', 'fball_goal_g', 15, 0, 1),
(2466, 185, '20337', 'fball_goal_r', 15, 0, 1),
(2467, 185, '20338', 'fball_goal_y', 15, 0, 1),
(2468, 185, '20339', 'fball_light', 10, 0, 1),
(2469, 185, '20340', 'fball_gate', 10, 0, 1),
(2459, 185, '20330', 'fball_bench', 10, 0, 1),
(2458, 185, '20329', 'fball_ball5', 20, 0, 1),
(2457, 185, '20328', 'fball_ball4', 20, 0, 1),
(2456, 185, '20326', 'fball_ball2', 20, 0, 1),
(2455, 185, '20325', 'fball_ball', 20, 0, 1),
(2454, 185, '20330', 'fball_audbench', 7, 0, 1),
(2453, 185, '20323', 'fball_trophy', 35, 0, 1),
(2680, 225, '211', 'edice', 50, 100, 50),
(2687, 225, '20134', 'Black Heart Chairs', 100, 100, 50),
(2686, 225, '362', 'Scifi Black Door', 100, 100, 100),
(2688, 225, '20287', 'Flatscr33nz', 1000, 0, 50),
(7457, 167, '84586', 'a0 pet6', 20, 0, 1),
(5354, 168, '83545', 'a0 pet7', 20, 0, 1),
(7461, 137, '84587', 'BattelShip', 10, 0, 1),
(7467, 225, '1558', 'I HOPE THIS IS THE ROCK CORNER', 100, 0, 100),
(7462, 122, '1021', 'BattleShip', 100000, 1000000, 1),
(7464, 225, '1544', 'Rock Wall', 100, 0, 100),
(7466, 225, '1560', 'Rock Corner', 100, 0, 100),
(7468, 225, '200', 'SEXY DUCKS', 10, 0, 500),
(10355, 502, '10355', 'african_tree2', 10, 0, 1),
(10354, 502, '10354', 'african_tree1', 10, 0, 1),
(10353, 502, '10353', 'african_stage', 5, 0, 1),
(10352, 502, '10352', 'african_patch', 10, 0, 100),
(10351, 502, '10351', 'african_fence', 5, 0, 1),
(10350, 502, '10350', 'african_bones', 3, 0, 1),
(600017, 169, '2785093', 'bb_lightdiv', 4, 0, 50),
(600016, 169, '2785092', 'bb_tddhnd', 3, 0, 1),
(600015, 169, '2785091', 'bb_gate_r', 1, 0, 1);
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `amount`) VALUES
(600014, 169, '2785090', 'bb_knj1', 3, 0, 1),
(600018, 169, '2785094', 'bb_tddhead', 4, 0, 1),
(600019, 169, '2785095', 'bb_pyramid', 3, 0, 1),
(600020, 169, '2785096', 'bb_patch1', 5, 0, 1),
(600021, 169, '2785097', 'bb_fnc3', 3, 0, 1),
(600022, 169, '2785098', 'bb_gate_y', 2, 0, 1),
(600023, 169, '2785099', 'bb_apparatus', 3, 0, 1),
(600024, 169, '2785100', 'bb_caterbody', 2, 0, 1),
(600025, 169, '2785101', 'bb_knj2', 3, 0, 1),
(600026, 169, '2785102', 'bb_fnc1', 3, 0, 1),
(600027, 169, '2785103', 'bb_puck', 3, 0, 1),
(600028, 169, '2785104', 'bb_rnd_tele', 3, 0, 1),
(600029, 169, '2785105', 'bb_gate_b', 3, 0, 1),
(600030, 169, '2785106', 'bb_score_r', 3, 0, 1),
(600031, 169, '2785107', 'bb_painimies1', 3, 0, 1),
(600032, 169, '2785108', 'bb_painimies2', 5, 0, 1),
(600035, 169, '2785096', 'bb_patch1', 5, 0, 100),
(600002, 169, '2785078', 'bb_score_b', 3, 0, 1),
(600003, 169, '2785079', 'bb_robo', 3, 0, 1),
(600004, 169, '2785080', 'bb_dragon', 8, 0, 1),
(600005, 169, '2785081', 'bb_ducklight', 3, 0, 1),
(600006, 169, '2785082', 'bb_caterhead', 3, 0, 1),
(600007, 169, '2785083', 'bb_cargobox', 4, 0, 1),
(600008, 169, '2785084', 'bb_gate_g', 3, 0, 1),
(600009, 169, '2785085', 'bb_crchair3', 4, 0, 1),
(600010, 169, '2785086', 'bb_score_g', 3, 0, 1),
(600011, 169, '2785087', 'bb_crchair', 3, 0, 1),
(600012, 169, '2785088', 'bb_crchair2', 3, 0, 1),
(600013, 169, '2785089', 'bb_score_y', 3, 0, 1),
(600037, 137, '1', '', 10, 0, 1),
(600038, 137, '1', '', 10, 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `catalog_marketplace_offers`
--
CREATE TABLE `catalog_marketplace_offers` (
`offer_id` int(10) unsigned NOT NULL auto_increment,
`item_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`asking_price` int(11) NOT NULL,
`total_price` int(11) NOT NULL default '0',
`public_name` text NOT NULL,
`sprite_id` int(11) NOT NULL,
`item_type` enum('1','2') NOT NULL default '1',
`timestamp` double NOT NULL,
`state` enum('1','2') NOT NULL default '1',
`extra_data` text NOT NULL,
PRIMARY KEY (`offer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=480 ;
--
-- Dumping data for table `catalog_marketplace_offers`
--
INSERT INTO `catalog_marketplace_offers` (`offer_id`, `item_id`, `user_id`, `asking_price`, `total_price`, `public_name`, `sprite_id`, `item_type`, `timestamp`, `state`, `extra_data`) VALUES
(1, 300, 135, 1, 2, 'Duck trophy', 1512, '1', 1281978627.69157, '1', 'Coolmotokross 9-7-2010 TAJNY AGENT NR. 1 W POLSCE'),
(2, 20122, 135, 10000, 10100, 'petfood13 name', 3359, '1', 1281978635.62506, '1', ''),
(3, 3, 135, 2, 3, 'Bookcase', 15, '1', 1281978663.84345, '1', ''),
(4, 20266, 135, 9, 10, 'VIP Stool', 3448, '1', 1281978672.0035, '1', ''),
(5, 625, 135, 5, 6, 'Black Mode Bardesk Gate', 1925, '1', 1281978682.53852, '1', '1'),
(6, 20372, 135, 1, 2, 'bw_water_1 name', 3530, '1', 1281982057.51095, '1', ''),
(7, 20372, 135, 1, 2, 'bw_water_1 name', 3530, '1', 1281982062.13198, '1', ''),
(8, 20372, 135, 1, 2, 'bw_water_1 name', 3530, '1', 1281982069.60064, '1', ''),
(9, 20372, 135, 1, 2, 'bw_water_1 name', 3530, '1', 1281982077.72553, '1', ''),
(10, 20372, 135, 1, 2, 'bw_water_1 name', 3530, '1', 1281982083.71764, '1', ''),
(11, 20106, 1356, 3, 4, 'org_lamppnk', 3348, '1', 1281997984.07077, '1', ''),
(12, 112, 1820, 1, 2, 'Bar/desk', 130, '1', 1282158074.35548, '1', ''),
(13, 202, 1885, 6000, 6060, 'Throne', 230, '1', 1282158937.31099, '1', ''),
(14, 1710, 1875, 6, 7, 'Diner Side Table', 4048, '2', 1282191966.1804, '1', ''),
(15, 20372, 1874, 1, 2, 'bw_water_1 name', 3530, '1', 1282193822.79302, '1', ''),
(16, 20390, 1874, 2, 3, 'bw_mttrss name', 3548, '1', 1282193883.02549, '1', ''),
(17, 20268, 1875, 4, 5, 'runway_bigchr_2 name', 3427, '1', 1282193906.75444, '1', ''),
(18, 20394, 1874, 1, 2, 'bw_fnc name', 3552, '1', 1282193951.03872, '1', ''),
(19, 1357, 1875, 1, 2, 'Disco Floor', 2958, '1', 1282199896.16016, '1', ''),
(20, 1357, 1875, 1, 2, 'Disco Floor', 2958, '1', 1282199905.25918, '1', ''),
(21, 1603, 1875, 5, 6, 'Display Gate', 3221, '1', 1282200114.72429, '1', '0'),
(22, 992, 1875, 5, 6, 'Black HC Gate', 2598, '1', 1282201317.44614, '1', '0'),
(200, 1502, 2094, 4, 5, 'Road', 3110, '1', 1283333991.57274, '1', ''),
(24, 1803, 620, 5, 6, 'Mood Switch (Large)', 4237, '2', 1282221654.73236, '1', '1,1,1,#F2F851,76'),
(25, 1654, 620, 25, 26, 'ktchn_gate name', 3254, '1', 1282221672.52615, '1', ''),
(26, 1651, 620, 25, 26, 'ktchn_fridge name', 3249, '1', 1282221685.55656, '1', '0'),
(27, 1650, 620, 6, 7, 'ktchn_inspctr name', 3250, '1', 1282221696.96208, '1', ''),
(28, 1647, 620, 50, 51, 'ktchn_countr_2 name', 3253, '1', 1282221718.6521, '1', ''),
(29, 1647, 620, 50, 51, 'ktchn_countr_2 name', 3253, '1', 1282221734.55636, '1', ''),
(30, 1647, 620, 50, 51, 'ktchn_countr_2 name', 3253, '1', 1282221745.94918, '1', ''),
(31, 1647, 620, 50, 51, 'ktchn_countr_2 name', 3253, '1', 1282221756.03838, '1', ''),
(32, 1648, 620, 49, 50, 'ktchn_bBlock name', 3255, '1', 1282221771.98853, '1', '1'),
(33, 1648, 620, 49, 50, 'ktchn_bBlock name', 3255, '1', 1282221781.98789, '1', '2'),
(34, 1645, 620, 25, 26, 'ktchn_desk name', 3260, '1', 1282221796.65297, '1', ''),
(35, 1645, 620, 50, 51, 'ktchn_desk name', 3260, '1', 1282221805.45807, '1', ''),
(36, 1335, 620, 20, 21, 'Hospital Curtain (blood)', 2942, '1', 1282221821.9199, '1', ''),
(37, 1335, 620, 20, 21, 'Hospital Curtain (blood)', 2942, '1', 1282221837.86029, '1', ''),
(38, 1335, 620, 20, 21, 'Hospital Curtain (blood)', 2942, '1', 1282221853.00092, '1', ''),
(39, 1335, 620, 20, 21, 'Hospital Curtain (blood)', 2942, '1', 1282221861.9691, '1', ''),
(40, 1335, 620, 20, 21, 'Hospital Curtain (blood)', 2942, '1', 1282221870.82791, '1', ''),
(41, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221884.43446, '1', ''),
(42, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221892.27771, '1', ''),
(43, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221901.74585, '1', '0'),
(44, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221909.72874, '1', '0'),
(45, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221917.4011, '1', ''),
(46, 1641, 620, 2, 3, 'ktchn_plates name', 3263, '1', 1282221923.83916, '1', '0'),
(47, 216, 620, 1, 2, 'Hatch (Lockable)', 244, '1', 1282221946.00767, '1', '0'),
(48, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282221957.33604, '1', ''),
(49, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282221966.80614, '1', ''),
(50, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282221973.8301, '1', ''),
(51, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282222003.58504, '1', ''),
(52, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282222012.52001, '1', ''),
(53, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282222021.03997, '1', ''),
(54, 112, 620, 7, 8, 'Bar/desk', 130, '1', 1282222031.08816, '1', ''),
(55, 1495, 620, 1, 2, 'Potted Cactus 3', 3085, '1', 1282222053.8494, '1', ''),
(56, 1725, 620, 10, 11, 'X-Ray Light Box', 4060, '2', 1282222071.14224, '1', '0'),
(57, 20202, 620, 123, 125, 'bling_cabinet', 4321, '2', 1282222101.28093, '1', ''),
(58, 1798, 620, 50, 51, 'ktchn_wall name', 4235, '2', 1282222137.96413, '1', ''),
(59, 1798, 620, 50, 51, 'ktchn_wall name', 4235, '2', 1282222149.47902, '1', ''),
(60, 1798, 620, 50, 51, 'ktchn_wall name', 4235, '2', 1282222157.44726, '1', ''),
(61, 1798, 620, 50, 51, 'ktchn_wall name', 4235, '2', 1282222168.63502, '1', ''),
(62, 1801, 620, 5, 6, 'ktchn_knives name', 4233, '2', 1282222179.4146, '1', ''),
(63, 1801, 620, 5, 6, 'ktchn_knives name', 4233, '2', 1282222186.05578, '1', '1'),
(64, 1341, 620, 100, 101, 'Hospital Bed (blood)', 2945, '1', 1282222206.53982, '1', ''),
(65, 1341, 620, 50, 51, 'Hospital Bed (blood)', 2945, '1', 1282222239.47619, '1', ''),
(66, 1341, 620, 50, 51, 'Hospital Bed (blood)', 2945, '1', 1282222248.45803, '1', ''),
(67, 1341, 620, 50, 51, 'Hospital Bed (blood)', 2945, '1', 1282222256.13039, '1', ''),
(68, 1341, 620, 500, 505, 'Hospital Bed (blood)', 2945, '1', 1282222265.39836, '1', ''),
(385, 426, 1946, 7, 8, 'Vanilla Ice Cream Machine', 1638, '1', 1284328863.27264, '2', ''),
(70, 1305, 1820, 1, 2, 'Greek Corner', 2910, '1', 1282335312.61014, '1', ''),
(403, 20266, 743, 1, 2, 'VIP Stool', 3448, '1', 1284498486.95314, '2', ''),
(404, 45, 743, 1, 2, 'Faux-Fur Bear Rug', 61, '1', 1284498494.63624, '2', ''),
(405, 156, 743, 1, 2, 'Sink', 177, '1', 1284498502.03811, '2', ''),
(74, 320, 2013, 100, 101, 'Cabbage Mega Multipack', 1534, '1', 1282422369.96389, '1', '0'),
(75, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423080.30417, '1', ''),
(76, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423086.79496, '1', ''),
(77, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423101.60359, '1', ''),
(78, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423115.756, '1', ''),
(79, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423121.58082, '1', ''),
(80, 1357, 2012, 1, 2, 'Disco Floor', 2958, '1', 1282423130.1125, '1', ''),
(81, 676, 1820, 1, 2, 'Orange Sleeping Bag', 1976, '1', 1282426643.61517, '1', ''),
(82, 221, 1820, 100, 101, 'Corner Shelf', 249, '1', 1282426663.65783, '1', ''),
(83, 1213, 2013, 5, 6, 'Black Diner Sofa 2', 2806, '1', 1282437622.3119, '1', ''),
(84, 1213, 2013, 5, 6, 'Black Diner Sofa 2', 2806, '1', 1282437642.88578, '1', ''),
(85, 246, 2013, 500, 505, 'Dicemaster', 284, '1', 1282447533.44805, '1', ''),
(86, 246, 2013, 500, 505, 'Dicemaster', 284, '1', 1282447551.85312, '1', ''),
(87, 246, 2013, 500, 505, 'Dicemaster', 284, '1', 1282447565.94402, '1', ''),
(88, 1132, 620, 11, 12, 'Mint Tea Tray', 2734, '1', 1282476035.43631, '1', ''),
(89, 1132, 620, 11, 12, 'Mint Tea Tray', 2734, '1', 1282476049.31335, '1', ''),
(90, 1132, 620, 11, 12, 'Mint Tea Tray', 2734, '1', 1282476058.45144, '1', ''),
(91, 441, 2038, 2, 3, 'Navy Habbo Roller', 1653, '1', 1282495419.19664, '1', ''),
(92, 441, 2038, 4, 5, 'Navy Habbo Roller', 1653, '1', 1282495436.94649, '1', ''),
(93, 441, 2038, 3, 4, 'Navy Habbo Roller', 1653, '1', 1282495486.9677, '1', ''),
(94, 20383, 2038, 5, 6, 'bw_water_2 name', 3541, '1', 1282495545.65144, '1', ''),
(95, 20383, 2038, 10, 11, 'bw_water_2 name', 3541, '1', 1282495586.06682, '1', ''),
(96, 1221, 2036, 1, 2, 'Diner Floor', 2803, '1', 1282497594.27716, '1', ''),
(97, 663, 2012, 1, 2, 'Blue Solarium', 1963, '1', 1282502940.02192, '1', '1'),
(98, 20010, 2012, 1, 2, 'Pavement Slab', 3274, '1', 1282504317.28924, '1', ''),
(99, 20010, 2012, 1, 2, 'Pavement Slab', 3274, '1', 1282504326.50447, '1', ''),
(100, 1269, 2013, 66, 67, 'Black Diner Stool', 2863, '1', 1282531978.9055, '1', ''),
(101, 20275, 2036, 4, 5, 'VIP Shelves', 3438, '1', 1282556104.3477, '1', '1'),
(102, 1223, 2036, 2, 3, 'Pink Gumball Machine', 2828, '1', 1282556121.11909, '1', ''),
(103, 19996, 2036, 2, 3, 'Standing Rose Bouquet', 3304, '1', 1282556175.85875, '1', ''),
(104, 1801, 2036, 2, 3, 'ktchn_knives name', 4233, '2', 1282556257.63574, '1', ''),
(105, 20382, 2036, 1, 2, 'bw_shower name', 3540, '1', 1282559897.80412, '1', ''),
(106, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561060.96405, '1', ''),
(107, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561073.22792, '1', ''),
(108, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561083.405, '1', ''),
(109, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561098.11207, '1', ''),
(110, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561121.92109, '1', ''),
(111, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561133.44965, '1', ''),
(112, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561139.9795, '1', ''),
(113, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561148.78949, '1', ''),
(114, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561157.20203, '1', ''),
(115, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561164.60976, '1', ''),
(116, 1513, 2036, 1, 2, 'Grass patch', 3129, '1', 1282561174.04178, '1', ''),
(117, 1055, 2036, 3, 4, 'Take a memo', 2644, '1', 1282575103.41684, '1', ''),
(118, 1055, 2036, 2, 3, 'Take a memo', 2644, '1', 1282575117.71475, '1', ''),
(119, 20144, 2036, 4, 5, 'bling_fridge_restricted name', 3394, '1', 1282575763.64411, '1', ''),
(120, 1650, 2036, 3, 4, 'ktchn_inspctr name', 3250, '1', 1282576755.38728, '1', ''),
(121, 2, 2036, 1, 2, 'Bookcase', 14, '1', 1282576846.30431, '1', ''),
(122, 1425, 2036, 1, 2, 'Star Pillow', 3030, '1', 1282577431.9055, '1', ''),
(123, 20383, 2038, 1, 2, 'bw_water_2 name', 3541, '1', 1282583279.68134, '1', ''),
(124, 20383, 2038, 1, 2, 'bw_water_2 name', 3541, '1', 1282645028.41472, '1', ''),
(125, 1171, 2038, 10, 11, 'Tiki Bar Desk', 2795, '1', 1282645054.31833, '1', ''),
(126, 20394, 2038, 1, 2, 'bw_fnc name', 3552, '1', 1282645075.46834, '1', ''),
(127, 157, 1860, 5, 6, 'Loo Seat', 178, '1', 1282766092.83895, '1', ''),
(128, 20343, 1820, 2, 3, 'fball_ptch1', 3524, '1', 1282767219.92013, '1', ''),
(129, 617, 2150, 3, 4, 'Black Mode Bardesk Corner', 1917, '1', 1282816703.47857, '1', ''),
(130, 320, 2126, 1, 2, 'Cabbage Mega Multipack', 1534, '1', 1282936735.04354, '1', '0'),
(131, 20340, 1735, 2, 3, 'fball_gate name', 3516, '1', 1282975857.58183, '1', '0'),
(132, 20330, 2227, 1000, 1010, 'fball_bench name', 3494, '1', 1283027912.84129, '1', ''),
(133, 319, 2216, 1, 2, 'Sardines Mega Multipack', 1533, '1', 1283096591.55985, '1', ''),
(134, 319, 2216, 1, 2, 'Sardines Mega Multipack', 1533, '1', 1283096599.69256, '1', ''),
(135, 319, 2216, 1, 2, 'Sardines Mega Multipack', 1533, '1', 1283096609.88774, '1', ''),
(136, 319, 2216, 1, 2, 'Sardines Mega Multipack', 1533, '1', 1283096617.39155, '1', ''),
(137, 20099, 2216, 2, 3, 'Polar Bear Nest', 3339, '1', 1283096639.43424, '1', ''),
(138, 321, 2216, 2, 3, 'Blue Water Bowl', 1535, '1', 1283097419.65862, '1', ''),
(139, 20078, 2216, 1, 2, 'Chicken', 3325, '1', 1283097427.71711, '1', ''),
(140, 320, 2216, 1, 2, 'Cabbage Mega Multipack', 1534, '1', 1283097444.90439, '1', '0'),
(141, 20006, 2248, 100, 101, 'Mesh Corner', 3275, '1', 1283125024.99668, '1', ''),
(142, 20012, 2248, 50, 51, 'Mesh Fencing', 3267, '1', 1283126266.94562, '1', ''),
(143, 1683, 2252, 50, 51, 'Mood Light', 4027, '2', 1283129480.56074, '1', '1,1,1,#000000,255'),
(144, 112, 2252, 60, 61, 'Bar/desk', 130, '1', 1283130358.90496, '1', ''),
(145, 113, 2252, 100, 101, 'Corner Cabinet/Desk', 131, '1', 1283130440.84532, '1', ''),
(146, 113, 2252, 900, 909, 'Corner Cabinet/Desk', 131, '1', 1283130452.16549, '1', ''),
(147, 20276, 2252, 1, 2, 'runway_head name', 3432, '1', 1283181025.94001, '1', '0'),
(148, 1154, 2252, 2, 3, 'HC Katana Red', 2751, '1', 1283181036.55706, '1', ''),
(149, 1360, 2252, 500, 505, ' MC', 2953, '1', 1283181054.54511, '1', ''),
(150, 1349, 2252, 250, 253, 'Stage Block Large', 2950, '1', 1283181067.16605, '1', ''),
(151, 1207, 2252, 5, 6, 'Spaghetti Meatballs', 2841, '1', 1283181076.48233, '1', ''),
(152, 1358, 2252, 10, 11, 'Glitter Ball', 2964, '1', 1283181085.54081, '1', '0'),
(153, 219, 2252, 50, 51, 'Knock', 247, '1', 1283181097.61878, '1', ''),
(154, 219, 2252, 50, 51, 'Knock', 247, '1', 1283181120.55989, '1', ''),
(155, 219, 2252, 48, 49, 'Knock', 247, '1', 1283181208.86345, '1', ''),
(156, 219, 2252, 70, 71, 'Knock', 247, '1', 1283181221.99219, '1', ''),
(157, 219, 2252, 80, 81, 'Knock', 247, '1', 1283181236.94903, '1', ''),
(158, 219, 2252, 100, 101, 'Knock', 247, '1', 1283181250.15199, '1', ''),
(159, 219, 2252, 20, 21, 'Knock', 247, '1', 1283181262.13621, '1', ''),
(160, 219, 2252, 50, 51, 'Knock', 247, '1', 1283181276.00712, '1', ''),
(161, 219, 2252, 5, 6, 'Knock', 247, '1', 1283181287.55385, '1', ''),
(162, 219, 2252, 50, 51, 'Knock', 247, '1', 1283181297.97559, '1', '0'),
(163, 1536, 2252, 30, 31, 'Rain Shower', 3153, '1', 1283181512.15254, '1', '1'),
(164, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181526.81251, '1', '1'),
(165, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181541.53107, '1', '0'),
(166, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181560.83551, '1', '1'),
(167, 1536, 2252, 900, 909, 'Rain Shower', 3153, '1', 1283181578.40169, '1', '1'),
(168, 1536, 2252, 60, 61, 'Rain Shower', 3153, '1', 1283181607.44038, '2', '0'),
(169, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181625.58077, '1', '1'),
(170, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181652.34606, '1', '0'),
(171, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181666.66228, '1', '0'),
(172, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181681.05272, '1', '1'),
(173, 1536, 2252, 90, 91, 'Rain Shower', 3153, '1', 1283181694.95098, '1', '0'),
(174, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181709.42736, '1', '1'),
(175, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181716.98195, '1', '0'),
(176, 1536, 2252, 250, 253, 'Rain Shower', 3153, '1', 1283181737.21606, '1', '0'),
(177, 1536, 2252, 150, 152, 'Rain Shower', 3153, '1', 1283181747.55578, '1', '1'),
(178, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181762.53605, '1', '1'),
(179, 20335, 2252, 50, 51, 'fball_goal_b name', 3515, '1', 1283181775.14917, '1', ''),
(180, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181783.58656, '1', '1'),
(181, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181797.37154, '1', '0'),
(182, 1536, 2252, 50, 51, 'Rain Shower', 3153, '1', 1283181806.55111, '1', '0'),
(183, 20329, 2252, 500, 505, 'fball_ball5 name', 3518, '1', 1283181825.73837, '1', ''),
(184, 20336, 2252, 50, 51, 'fball_goal_g', 3519, '1', 1283181855.86298, '1', ''),
(185, 20352, 2252, 90, 91, 'fball_score_g', 3512, '1', 1283181870.3042, '1', ''),
(186, 20354, 2252, 90, 91, 'fball_score_y', 3506, '1', 1283181879.13222, '1', ''),
(187, 20341, 2252, 30, 31, 'fball_counter name', 3525, '1', 1283181896.17106, '1', ''),
(188, 1712, 2252, 30, 31, 'Window', 4052, '2', 1283201473.70649, '1', ''),
(189, 1369, 2252, 50, 51, 'Hot Tub', 2986, '1', 1283202040.33596, '2', ''),
(190, 1292, 2247, 1, 2, 'Red Diner Corner', 2878, '1', 1283205198.29553, '1', ''),
(191, 1292, 2247, 1, 2, 'Red Diner Corner', 2878, '1', 1283205208.41259, '1', ''),
(192, 1292, 2247, 1, 2, 'Red Diner Corner', 2878, '1', 1283205216.46718, '1', ''),
(193, 1292, 2247, 1, 2, 'Red Diner Corner', 2878, '1', 1283205226.30689, '1', ''),
(194, 1301, 2247, 2, 3, 'Red Diner Bar', 2859, '1', 1283205279.88824, '1', ''),
(195, 1301, 2247, 2, 3, 'Red Diner Bar', 2859, '1', 1283205292.70448, '1', ''),
(196, 1301, 2247, 2, 3, 'Red Diner Bar', 2859, '1', 1283205300.6536, '1', ''),
(197, 1301, 2247, 2, 3, 'Red Diner Bar', 2859, '1', 1283205322.23535, '1', ''),
(198, 1305, 2280, 1, 2, 'Greek Corner', 2910, '1', 1283219843.51042, '1', ''),
(201, 1502, 2094, 5, 6, 'Road', 3110, '1', 1283337698.91982, '1', ''),
(202, 1502, 2094, 5, 6, 'Road', 3110, '1', 1283337704.41975, '1', ''),
(203, 1502, 2094, 6, 7, 'Road', 3110, '1', 1283337710.54857, '1', ''),
(204, 1540, 2311, 100, 101, 'Field Grass', 3162, '1', 1283534998.85138, '2', ''),
(205, 1540, 2311, 10, 11, 'Field Grass', 3162, '1', 1283535206.18857, '2', ''),
(206, 1540, 2311, 18, 19, 'Field Grass', 3162, '1', 1283535224.30943, '2', ''),
(207, 1540, 2311, 20, 21, 'Field Grass', 3162, '1', 1283535248.00053, '2', ''),
(208, 1540, 2311, 10, 11, 'Field Grass', 3162, '1', 1283535260.71912, '2', ''),
(209, 1540, 2311, 10, 11, 'Field Grass', 3162, '1', 1283535276.29704, '2', ''),
(210, 1540, 2311, 10, 11, 'Field Grass', 3162, '1', 1283535305.40995, '2', ''),
(211, 20340, 2322, 1, 2, 'fball_gate name', 3516, '1', 1283535357.84678, '2', '0'),
(212, 1397, 2311, 10, 11, 'Ice divider', 2992, '1', 1283536087.439, '1', ''),
(213, 1397, 2311, 10, 11, 'Ice divider', 2992, '1', 1283536099.49354, '1', ''),
(214, 120, 2044, 2, 3, 'Soft Wool Rug', 138, '1', 1283536139.68052, '2', ''),
(215, 1171, 2044, 20, 21, 'Tiki Bar Desk', 2795, '1', 1283536156.53187, '1', ''),
(216, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536161.9029, '1', ''),
(217, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536171.94574, '1', ''),
(218, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536182.15264, '1', ''),
(219, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536195.78137, '1', ''),
(220, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536213.76551, '1', ''),
(221, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536222.37478, '1', ''),
(222, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536235.94492, '1', ''),
(223, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536243.8081, '1', ''),
(224, 1739, 2311, 10, 11, 'Icy Wall', 4076, '2', 1283536253.16735, '1', ''),
(225, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536281.43262, '1', ''),
(226, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536340.35374, '1', ''),
(227, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536362.5097, '1', ''),
(228, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536378.13841, '1', ''),
(229, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536385.89612, '1', ''),
(230, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536395.39209, '1', ''),
(231, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536413.4778, '2', ''),
(232, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536450.78592, '1', ''),
(233, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536461.36391, '1', ''),
(234, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536482.72301, '1', ''),
(235, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536490.68384, '1', ''),
(236, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536501.14074, '1', ''),
(237, 1777, 2311, 10, 11, 'Forest Wall Poster', 4114, '2', 1283536512.62106, '1', ''),
(238, 20339, 2156, 10, 11, 'fball_light name', 3499, '1', 1283584239.70546, '1', ''),
(239, 1257, 2156, 9, 10, 'Red Diner Booth Table', 2905, '1', 1283585119.52232, '2', ''),
(240, 218, 2156, 3, 4, 'Room divider', 246, '1', 1283585131.29561, '1', ''),
(241, 212, 2156, 10, 11, 'Club sofa', 267, '1', 1283585152.45159, '1', ''),
(242, 860, 2156, 20, 21, 'Habbowood Spotlight', 2519, '1', 1283587937.30657, '2', ''),
(243, 1318, 1917, 1, 2, 'Crime scene', 2918, '1', 1283695544.04262, '1', ''),
(244, 1318, 1917, 1, 2, 'Crime scene', 2918, '1', 1283695555.76513, '1', ''),
(245, 1318, 1917, 1, 2, 'Crime scene', 2918, '1', 1283695570.08526, '1', ''),
(246, 1145, 1345, 396, 400, 'Gold Bar (China)', 2764, '1', 1283721118.41448, '2', ''),
(247, 1309, 2344, 1, 2, 'Greek trophy', 2622, '1', 1283743926.02879, '2', 'jennifer1nicole 6-9-2010 '),
(248, 860, 2344, 10, 11, 'Habbowood Spotlight', 2519, '1', 1283744413.66318, '2', ''),
(249, 1717, 2376, 10000, 10100, 'Skyscraper Window', 4054, '2', 1283781444.78292, '1', ''),
(251, 159, 2376, 10, 11, 'Floor Tiles', 180, '1', 1283784765.5412, '1', ''),
(252, 1654, 2373, 30, 31, 'ktchn_gate name', 3254, '1', 1283839193.35232, '1', ''),
(253, 146, 2399, 2, 3, 'Yukka Plant', 165, '1', 1283844951.3919, '1', ''),
(254, 20383, 2399, 3, 4, 'bw_water_2 name', 3541, '1', 1283845028.34795, '1', ''),
(255, 20391, 2398, 10, 11, 'F.L.A.G Prison trasporter', 3549, '1', 1283846023.81177, '1', ''),
(256, 20010, 1917, 1, 2, 'Pavement Slab', 3274, '1', 1283867359.86679, '1', ''),
(257, 819, 1917, 1, 2, 'T-Bones Mega Multipack', 2131, '1', 1283867374.03067, '1', ''),
(384, 860, 1946, 2, 3, 'Habbowood Spotlight', 2519, '1', 1284328830.16636, '2', ''),
(306, 1171, 482, 1, 2, 'Tiki Bar Desk', 2795, '1', 1284140562.54802, '2', ''),
(303, 1764, 2391, 5, 6, 'Eco Curtain 1', 4105, '2', 1284138583.88975, '1', ''),
(309, 426, 1906, 5, 6, 'Vanilla Ice Cream Machine', 1638, '1', 1284194904.69615, '2', '0'),
(426, 10352, 2689, 1, 2, 'african_patch', 3602, '1', 1284696285.41435, '2', ''),
(427, 1698, 2645, 1, 2, 'Large Romantic Window', 4041, '2', 1284722329.63567, '1', '1'),
(307, 1171, 482, 1, 2, 'Tiki Bar Desk', 2795, '1', 1284140580.98919, '1', ''),
(308, 1171, 482, 1, 2, 'Tiki Bar Desk', 2795, '1', 1284140598.0085, '1', ''),
(299, 1324, 2391, 3, 4, 'Glass Divider', 2927, '1', 1284137496.20836, '1', ''),
(298, 1324, 2391, 3, 4, 'Glass Divider', 2927, '1', 1284137488.20846, '1', ''),
(297, 1324, 2391, 3, 4, 'Glass Divider', 2927, '1', 1284137480.49372, '1', ''),
(296, 1324, 2391, 3, 4, 'Glass Divider', 2927, '1', 1284137473.1735, '1', ''),
(295, 1324, 2391, 3, 4, 'Glass Divider', 2927, '1', 1284137463.02519, '1', ''),
(292, 1641, 2391, 2, 3, 'ktchn_plates name', 3263, '1', 1284137384.95978, '1', '2'),
(291, 1641, 2391, 2, 3, 'ktchn_plates name', 3263, '1', 1284137366.92486, '1', ''),
(279, 137, 2423, 4, 5, 'Double Bed', 156, '1', 1284006099.18714, '2', ''),
(280, 137, 2423, 4, 5, 'Double Bed', 156, '1', 1284006202.54519, '2', ''),
(281, 1035, 2458, 6, 7, 'Lantern Bundle 2', 2641, '1', 1284069452.91917, '2', '1'),
(282, 1095, 2458, 10000, 10100, 'Brown Share Bear', 2702, '1', 1284073266.29614, '2', ''),
(286, 10352, 20, 10000, 10100, 'african_patch', 3602, '1', 1284113666.70088, '2', ''),
(285, 10352, 20, 10000, 10100, 'african_patch', 3602, '1', 1284113656.64632, '2', ''),
(288, 1145, 2099, 10000, 10100, 'Gold Bar (China)', 2764, '1', 1284116182.35618, '1', ''),
(289, 1493, 2402, 1, 2, 'Potted Cactus 1', 3083, '1', 1284119826.8564, '1', ''),
(290, 1493, 2402, 10, 11, 'Potted Cactus 1', 3083, '1', 1284119850.82875, '1', ''),
(304, 1764, 2391, 5, 6, 'Eco Curtain 1', 4105, '2', 1284138595.12789, '1', ''),
(387, 45, 2587, 13, 14, 'Faux-Fur Bear Rug', 61, '1', 1284366864.65485, '2', ''),
(314, 430, 1906, 4, 5, 'Purple Dragon Skin Fan', 1642, '1', 1284195007.54601, '1', ''),
(315, 407, 1906, 4, 5, 'Serpent of Doom', 1619, '1', 1284195031.35894, '2', '1'),
(316, 407, 1906, 4, 5, 'Serpent of Doom', 1619, '1', 1284195057.15612, '2', '1'),
(318, 418, 1906, 4, 5, 'Chocolate Ice Cream Machine', 1630, '1', 1284195079.75721, '2', '0'),
(320, 20209, 1906, 1, 2, 'beanstalk', 3401, '1', 1284195116.81148, '2', '3'),
(396, 672, 2417, 444, 449, 'Lime Sleeping Bag', 1972, '1', 1284390580.95918, '2', ''),
(326, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195215.645, '1', ''),
(327, 1349, 1906, 1, 2, 'Stage Block Large', 2950, '1', 1284195236.85848, '1', ''),
(328, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195249.2405, '1', ''),
(329, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195256.34063, '1', ''),
(330, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195264.13799, '1', ''),
(331, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195272.97434, '1', ''),
(332, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195279.11652, '1', ''),
(333, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195286.37289, '1', ''),
(334, 246, 1906, 2, 3, 'Dicemaster', 284, '1', 1284195292.9545, '1', ''),
(335, 1573, 1906, 2, 3, 'Stone Statue', 3185, '1', 1284195300.15228, '2', '1'),
(336, 1584, 1906, 100, 101, 'Large Tribal Torch', 3187, '1', 1284195314.97067, '1', '1'),
(337, 1584, 1906, 150, 152, 'Large Tribal Torch', 3187, '1', 1284195325.40164, '1', '1'),
(338, 435, 1906, 4, 5, 'Stylish', 1647, '1', 1284195351.44881, '1', ''),
(339, 343, 1906, 4, 5, 'Security Fence', 1554, '1', 1284195358.54601, '1', ''),
(340, 1574, 1906, 1, 2, 'Tarantula', 3178, '1', 1284195373.38685, '1', ''),
(341, 343, 1906, 4, 5, 'Security Fence', 1554, '1', 1284195381.08558, '1', '0'),
(342, 1574, 1906, 10000, 10100, 'Tarantula', 3178, '1', 1284195390.54494, '1', ''),
(343, 343, 1906, 10000, 10100, 'Security Fence', 1554, '1', 1284195415.02677, '1', '0'),
(344, 1576, 1906, 2, 3, 'Tribal Seat', 3171, '1', 1284195428.76124, '1', '1'),
(345, 1576, 1906, 2, 3, 'Tribal Seat', 3171, '1', 1284195436.02542, '2', '1'),
(346, 1576, 1906, 2, 3, 'Tribal Seat', 3171, '1', 1284195444.65964, '1', '1'),
(347, 1581, 1906, 2, 3, 'Ant Hill', 3174, '1', 1284195454.64044, '1', '1'),
(348, 1581, 1906, 2, 3, 'Ant Hill', 3174, '1', 1284195479.09493, '1', '1'),
(386, 154, 2587, 12, 13, 'Digital TV', 173, '1', 1284366838.5784, '2', ''),
(351, 67, 1906, 1, 2, 'Doormat', 83, '1', 1284195533.7555, '1', ''),
(352, 1785, 1906, 1, 2, 'lt_wall', 4123, '2', 1284195557.7979, '1', '1'),
(353, 1785, 1906, 1, 2, 'lt_wall', 4123, '2', 1284195576.9539, '1', '1'),
(354, 1785, 1906, 1, 2, 'lt_wall', 4123, '2', 1284195586.09492, '1', '1'),
(355, 1785, 1906, 1, 2, 'lt_wall', 4123, '2', 1284195603.27351, '1', '1'),
(357, 497, 2494, 1, 2, 'Pink Bookcase', 1796, '1', 1284197581.85488, '1', ''),
(358, 1208, 2498, 1, 2, 'Steak and Mash', 2802, '1', 1284203237.49485, '1', ''),
(359, 1204, 2498, 1, 2, 'Vanilla', 2826, '1', 1284203248.90623, '1', ''),
(360, 1206, 2498, 1, 2, 'Pancakes', 2800, '1', 1284203261.64174, '1', ''),
(361, 1209, 2498, 1, 2, 'Burger and Chips', 2839, '1', 1284203298.23998, '1', ''),
(362, 1581, 2517, 10000, 10100, 'Ant Hill', 3174, '1', 1284216459.20329, '1', '1'),
(363, 125, 2374, 2, 3, 'Portable TV', 144, '1', 1284218714.99543, '1', ''),
(364, 20329, 2374, 3, 4, 'fball_ball5 name', 3518, '1', 1284218732.81168, '1', ''),
(365, 20325, 2374, 1, 2, 'fball_ball name', 3508, '1', 1284218744.97398, '1', '0'),
(366, 20336, 2374, 2, 3, 'fball_goal_g', 3519, '1', 1284218754.50267, '1', ''),
(367, 1601, 2374, 4, 5, 'Alien Lifeform', 3210, '1', 1284218780.00495, '2', ''),
(368, 20008, 2374, 3, 4, 'City Bench (Dirty)', 3269, '1', 1284218795.585, '1', ''),
(369, 20011, 2374, 2, 3, 'Water Hydrant', 3272, '1', 1284218808.93669, '1', ''),
(370, 1221, 2374, 1, 2, 'Diner Floor', 2803, '1', 1284218995.80363, '1', ''),
(371, 20340, 2374, 3, 4, 'fball_gate name', 3516, '1', 1284219040.32813, '1', '0'),
(372, 172, 2498, 1, 2, 'Pura Shelves', 196, '1', 1284219202.8978, '1', ''),
(373, 116, 2498, 1, 2, 'Bardesk', 134, '1', 1284220195.49833, '1', ''),
(374, 20275, 2498, 1, 2, 'VIP Shelves', 3438, '1', 1284220214.9258, '2', ''),
(375, 116, 2498, 1, 2, 'Bardesk', 134, '1', 1284220226.40749, '1', ''),
(376, 1357, 2498, 1, 2, 'Disco Floor', 2958, '1', 1284220429.47262, '1', ''),
(377, 1357, 2498, 1, 2, 'Disco Floor', 2958, '1', 1284220450.02403, '1', ''),
(378, 829, 2498, 1, 2, 'Amber Grand Piano', 2141, '1', 1284220463.33764, '2', ''),
(379, 235, 2498, 1, 2, 'Corner Cabinet/Desk', 270, '1', 1284220472.76672, '1', ''),
(380, 1362, 2498, 1, 2, 'Bar Centre', 2962, '1', 1284220480.88729, '1', ''),
(381, 1362, 2498, 1, 2, 'Bar Centre', 2962, '1', 1284220489.63283, '1', ''),
(382, 1376, 2498, 1, 2, 'Executive Penguin', 3008, '1', 1284220503.06458, '1', ''),
(383, 20282, 2498, 1, 2, 'VIP Lamp', 3447, '1', 1284220525.31414, '1', '1'),
(388, 156, 2587, 1, 2, 'Sink', 177, '1', 1284367708.4817, '2', ''),
(389, 20275, 2587, 1, 2, 'VIP Shelves', 3438, '1', 1284367728.80755, '2', ''),
(390, 20252, 2587, 1, 2, 'Glass Table', 3434, '1', 1284367741.27062, '2', ''),
(391, 20252, 2587, 1, 2, 'Glass Table', 3434, '1', 1284367749.47517, '2', ''),
(392, 377, 2587, 1, 2, 'Puffy', 1588, '1', 1284367756.68955, '2', ''),
(393, 370, 2587, 1, 2, 'White Lace Pillow', 1581, '1', 1284367882.98909, '2', ''),
(394, 373, 2587, 1, 2, 'Purple Velvet Pillow', 1584, '1', 1284367898.2469, '2', ''),
(395, 370, 2587, 1, 2, 'White Lace Pillow', 1581, '1', 1284367906.36357, '2', ''),
(397, 1145, 2325, 10000, 10100, 'Gold Bar (China)', 2764, '1', 1284396652.81567, '1', ''),
(398, 20339, 569, 53, 54, 'fball_light name', 3499, '1', 1284411590.45823, '2', '1'),
(399, 20339, 569, 54, 55, 'fball_light name', 3499, '1', 1284411603.92221, '2', '1'),
(400, 20339, 569, 55, 56, 'fball_light name', 3499, '1', 1284411614.79554, '2', '1'),
(401, 20266, 2372, 100, 101, 'VIP Stool', 3448, '1', 1284473545.6159, '2', ''),
(402, 1785, 2628, 25, 26, 'lt_wall', 4123, '2', 1284486675.32339, '2', ''),
(406, 20275, 743, 1, 2, 'VIP Shelves', 3438, '1', 1284498508.51133, '2', ''),
(407, 20252, 743, 1, 2, 'Glass Table', 3434, '1', 1284498513.31181, '2', ''),
(408, 1053, 743, 1, 2, 'Executive Drinks Tray', 2645, '1', 1284498519.50575, '2', ''),
(409, 20252, 743, 1, 2, 'Glass Table', 3434, '1', 1284498525.85104, '1', ''),
(410, 1050, 743, 1, 2, 'Executive Sofa Chair', 2647, '1', 1284498532.75685, '1', ''),
(411, 1493, 2622, 1, 2, 'Potted Cactus 1', 3083, '1', 1284553125.64061, '1', ''),
(412, 1487, 2622, 3, 4, 'Fruit Bowl 3', 3104, '1', 1284553148.10109, '2', ''),
(413, 1490, 2622, 1, 2, 'Potted Cactus 2', 3105, '1', 1284553161.90489, '1', ''),
(414, 1495, 2622, 1, 2, 'Potted Cactus 3', 3085, '1', 1284553194.36473, '1', ''),
(415, 1495, 2622, 1, 2, 'Potted Cactus 3', 3085, '1', 1284553206.06613, '1', ''),
(416, 1495, 2622, 1, 2, 'Potted Cactus 3', 3085, '1', 1284553219.55843, '1', ''),
(417, 1495, 2622, 1, 2, 'Potted Cactus 3', 3085, '1', 1284553227.83036, '1', ''),
(418, 1766, 2622, 1, 2, 'Eco Curtain 3', 4104, '2', 1284553233.95009, '2', ''),
(419, 1767, 2622, 2, 3, 'Eco Curtain 2', 4102, '2', 1284553261.59578, '2', ''),
(422, 20087, 626, 157, 159, 'Green Pet Snuggle', 3023, '1', 1284568916.50668, '2', ''),
(423, 323, 626, 10, 11, 'Green Water Bowl', 1537, '1', 1284568932.20001, '1', ''),
(424, 1736, 2662, 5, 6, 'Bar Shelf', 4071, '2', 1284577339.63456, '2', '1'),
(425, 1534, 2086, 1, 2, 'ads_idol_carpet name', 3140, '1', 1284638092.33207, '2', ''),
(428, 1000, 2645, 1, 2, 'Executive Rug', 2567, '1', 1284722339.91678, '1', ''),
(429, 1000, 2645, 1, 2, 'Executive Rug', 2567, '1', 1284722346.64717, '1', ''),
(430, 20340, 2645, 1, 2, 'fball_gate name', 3516, '1', 1284727993.59051, '2', '0'),
(441, 757, 2586, 1, 2, 'Sack of Credits', 2065, '1', 1284891501.84468, '2', ''),
(442, 20334, 2086, 1, 2, 'fball_fnc3 name', 3495, '1', 1284893138.87451, '1', ''),
(443, 20335, 2086, 1, 2, 'fball_goal_b name', 3515, '1', 1284893146.12442, '2', ''),
(444, 1357, 1399, 2, 3, 'Disco Floor', 2958, '1', 1284897243.26338, '1', ''),
(448, 20125, 2795, 10000, 10100, 'val09_floor', 3363, '1', 1285202877.35121, '1', ''),
(449, 177, 2794, 8, 9, 'Pura Refridgerator', 201, '1', 1285211388.17196, '1', ''),
(450, 19, 588, 10000, 10100, 'Armchair', 34, '1', 1285246211.37075, '1', ''),
(451, 1717, 2890, 8, 9, 'Skyscraper Window', 4054, '2', 1294655380.92214, '1', ''),
(452, 1439, 2910, 1, 2, 'Ornamental Tile', 3028, '1', 1294779199.64079, '1', ''),
(453, 1439, 2910, 1, 2, 'Ornamental Tile', 3028, '1', 1294779205.73415, '1', ''),
(456, 2785105, 2928, 1000, 1010, 'bb_gate_b', 3643, '1', 1295076418.71381, '1', ''),
(455, 2785105, 2928, 1000, 1010, 'bb_gate_b', 3643, '1', 1295076166.37449, '1', ''),
(457, 320, 2927, 1, 2, 'Cabbage Mega Multipack', 1534, '1', 1295094377.68643, '1', '0'),
(458, 320, 2927, 1, 2, 'Cabbage Mega Multipack', 1534, '1', 1295094385.4086, '1', '0'),
(459, 1534, 2927, 1, 2, 'ads_idol_carpet name', 3140, '1', 1295094533.49775, '1', ''),
(460, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094594.57294, '1', ''),
(461, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094599.82163, '1', ''),
(462, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094604.82131, '1', ''),
(463, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094612.9663, '1', ''),
(464, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094619.05282, '1', ''),
(465, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094627.92042, '1', ''),
(466, 1534, 2927, 1, 2, 'ads_idol_carpet name', 3140, '1', 1295094634.57819, '1', ''),
(467, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094685.01442, '1', ''),
(468, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094689.76802, '1', ''),
(469, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094694.23356, '1', ''),
(470, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094698.46961, '1', ''),
(471, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094704.28467, '1', ''),
(472, 1447, 2927, 1, 2, 'ads_idol_floor2 name', 3047, '1', 1295094709.90638, '1', ''),
(473, 1534, 2927, 1, 2, 'ads_idol_carpet name', 3140, '1', 1295094717.73303, '1', ''),
(474, 1583, 2927, 1, 2, 'clrack name', 3184, '1', 1295094866.75279, '1', ''),
(475, 1583, 2927, 1, 2, 'clrack name', 3184, '1', 1295094887.6284, '1', ''),
(476, 20075, 1817, 20, 21, 'ads_spang_sleep', 3280, '1', 1295188208.63169, '2', ''),
(477, 219, 1804, 2, 3, 'Knock', 247, '1', 1295625974.12786, '2', ''),
(478, 1145, 778, 20, 21, 'Gold Bar (China)', 2764, '1', 1295708225.86172, '2', ''),
(479, 319, 778, 2, 3, 'Sardines Mega Multipack', 1533, '1', 1295711039.64159, '1', '');
-- --------------------------------------------------------
--
-- Table structure for table `catalog_pages`
--
CREATE TABLE `catalog_pages` (
`id` int(11) NOT NULL auto_increment,
`parent_id` int(11) NOT NULL default '-1',
`caption` varchar(100) NOT NULL,
`icon_color` int(11) NOT NULL default '1',
`icon_image` int(11) NOT NULL default '1',
`visible` enum('0','1') NOT NULL default '1',
`enabled` enum('0','1') NOT NULL default '1',
`min_rank` int(10) unsigned NOT NULL default '1',
`club_only` enum('0','1') NOT NULL default '0',
`coming_soon` enum('0','1') NOT NULL default '0',
`order_num` int(11) NOT NULL,
`page_layout` enum('default_3x3','frontpage','spaces','recycler','recycler_info','recycler_prizes','trophies','plasto','marketplace','marketplace_own_items','bots','pets','pets2') NOT NULL default 'default_3x3',
`page_headline` text NOT NULL,
`page_teaser` text NOT NULL,
`page_special` text NOT NULL,
`page_text1` text NOT NULL,
`page_text2` text NOT NULL,
`page_text_details` text NOT NULL,
`page_text_teaser` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=504 ;
--
-- Dumping data for table `catalog_pages`
--
INSERT INTO `catalog_pages` (`id`, `parent_id`, `caption`, `icon_color`, `icon_image`, `visible`, `enabled`, `min_rank`, `club_only`, `coming_soon`, `order_num`, `page_layout`, `page_headline`, `page_teaser`, `page_special`, `page_text1`, `page_text2`, `page_text_details`, `page_text_teaser`) VALUES
(1, -1, 'Frontpage', 6, 1, '1', '1', 1, '0', '0', 1, 'frontpage', 'catalog_frontpage_headline2_en', 'ts_respect', '', 'Respect the Hotel? \r\nGet More Users, \r\nInvite Friends!', 'Admin', 'Redeem a voucher code here:', 'Redeem a voucher code here:'),
(146, -1, 'Bot', 0, 65, '1', '1', 1, '0', '1', 11, 'bots', 'catalog_bots_headline1_en', '', 'Bots', 'Bots - get a groovy bot for your room. Use our virtual Bot preview below to test out the combinations before you buy. Select the design and color you like and click Buy.', '', 'Bots', 'Bots'),
(3, -1, 'Furni Shop', 3, 2, '1', '0', 1, '0', '0', 3, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(4, -1, 'Pixel Shop', 5, 5, '1', '0', 1, '0', '0', 4, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(5, -1, 'Spazz Club', 7, 75, '1', '0', 1, '0', '0', 8, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(6, -1, 'Trax Shop', 4, 4, '1', '0', 1, '0', '0', 10, 'default_3x3', 'catalog_frontpage_headline2_en', 'Trax dont work at the moment but put these in your room to spice up your club ect', '', '', '', '', ''),
(7, 5, 'Buy Spazz Club', 1, 75, '1', '1', 1, '0', '0', 1, 'default_3x3', 'catalog_club_headline1', 'catalog_hc_teaser', '', 'Spazz Club is our VIP members-only club - absolutely no riff-raff admitted! Members enjoy a wide range of benefits, including exclusive clothes, free gifts and an extended friends list.', '', '', ''),
(8, 5, 'Club Furniture', 1, 75, '1', '1', 1, '1', '0', 2, 'default_3x3', 'catalog_club_headline1', 'catalog_hc_teaser', '', 'We''ve got all that exclusive club furniture available for you right here .. but for an exclusive price.', '', '', ''),
(9, -1, 'Ecotron', 3, 7, '1', '0', 1, '0', '0', 9, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(10, 9, 'Ecotron', 1, 7, '1', '1', 1, '0', '0', 1, 'recycler', 'catalog_recycler_headline3', 'ctlg_ecotron_image', '', 'Become an Eco-warrior', 'Recycle your worthless stuff and be rewarded with a random prize. Check out the prizes and the instructions for recycling.', 'Drag 5 items to the boxes below and click recycle!', ''),
(11, 9, 'Rewards', 1, 26, '1', '1', 1, '0', '0', 2, 'recycler_prizes', 'catalog_recycler_headline3', '', '', 'What are the prizes? Ecotron box may contain one of these:', '', '', ''),
(12, 9, 'Instructions', 1, 42, '1', '1', 1, '0', '0', 3, 'recycler_info', 'catalog_recycler_headline3', 'ctlg_ecotron_box', '', 'The Ecotron is a furni recycler. Get rid of old furni... what will you get in return? It''s a surprise! Become a Habbo eco-warrior. No refunds!', 'How to use the Ecotron?', '1. Just drag 5 items from your hand to the Ecotron. One item / square. Recyclable items are marked in your inventory with an image. When you have 5 items in the boxes, click the "Recycle" button. You can now find the Ecotron prize box from your hand.\r\n\r\n2. Click the box to see its tag. Open the box, or trade it unopened. The timer shows you how long you have to wait before you can recycle more items. Check the prizes before you recycle- don''t be surprised by the surprise!', ''),
(13, -1, 'Spazz Exchange', 11, 6, '1', '1', 1, '0', '0', 7, 'default_3x3', 'catalog_bank_headline1', 'catalog_bank_teaser', 'catalog_special_txtbg1', 'You can exchange your Uber credits here for Exchange furniture, which you can use in a trade or simply exchange for actual credits.', '', 'Click on an item to see more details.', 'Gold! Glorious Gold!'),
(14, -1, 'Pets Shop', 2, 8, '1', '0', 1, '0', '0', 6, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(15, 3, 'Spaces', 1, 55, '1', '1', 1, '0', '0', 1, 'spaces', 'catalog_spaces_headline1', '', '', 'Floors, wallpapers and landscapes - get a groovy combination for your room! Use our sample room below to try before you buy! Select your favourite designs and colours and simply click Buy!', '', '', ''),
(235, 91, 'Calipo', 0, 43, '1', '1', 1, '0', '0', 15, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(24, 3, 'Windows', 0, 63, '1', '1', 1, '0', '0', 3, 'default_3x3', 'ctlg_windows_headline1_en', 'ctlg_windows_teaser1_en', 'catalog_special_txtbg2', 'Let some light in! Our windows come in many unique styles to give an exciting look to your room. Buy landscapes to go with your windows from the ''Spaces'' page!', '', 'Click on an item for more information.', 'Ooh, new view!'),
(26, 3, 'Moodlights', 0, 40, '1', '1', 1, '0', '0', 4, 'default_3x3', 'catalog_dimmers_header_en', 'dimmers_teaser', '', 'Our range of moodlights allow you to control the atmosphere and transform your room in just a click. What will your room look like? Click the switch and find out now!', '', 'Click on an item for more information.', ''),
(27, 3, 'Christmas', 1, 64, '1', '1', 1, '0', '0', 47, 'default_3x3', 'catalog_xmas_headline1', 'xmas2009_catalogue', 'catalog_special_txtbg2', 'Get yourself into the Christmas spirit with our selection of festive furni! From baubles to Reindeer poo, we''ve got it all!', '', 'Click on an item for more information.', '''tis the season!'),
(28, 3, 'Artic', 0, 13, '1', '1', 1, '0', '0', 35, 'default_3x3', 'catalog_arc_header1_en', 'catalog_arc_teaser1_en', '', 'Stay cool (or warm with out campfire!) with and create your own Winter Wonderland or Humble Homeland for your Penguins.', '', 'Click on an item for more information.', ''),
(29, 3, 'Teleporters', 0, 58, '1', '1', 1, '0', '0', 12, 'default_3x3', 'catalog_doors_headline1', 'catalog_door_a', 'catalog_special_txtbg1', 'Take your room to a whole new level with our range of space age teleporters! Just buy a pair, put one in each room and voila! You''ll have two linked rooms!', '', 'Click on an item for more information.', 'Take your room to the next level!'),
(30, 3, 'Mode', 0, 39, '1', '1', 1, '0', '0', 5, 'default_3x3', 'catalog_mode_headline1', 'catalog_mode_teaser1', 'catalog_special_txtbg2', 'Steely, grey industrial standard metal with a sleek design. The perfect range for a streetwise city dweller.', '', 'Click on an item for more information.', 'So shiny and new..'),
(31, 3, 'Candy', 0, 19, '1', '1', 1, '0', '0', 6, 'default_3x3', 'catalog_candy_headline1', 'catalog_candy_teaser1', 'catalog_special_txtbg2', 'A bit more feminine than ''Mode'', this will add a bit of glamour and glitz to your rooms. Lacking a few items? Head on over to the ''Mode'' catagory!', '', 'Click on an item for more information.', 'lol I killed a pink bear for this rug!'),
(32, 3, 'Pura', 0, 48, '1', '1', 1, '0', '0', 9, 'default_3x3', 'catalog_pura_headline1', 'catalog_pura_teaser1', 'catalog_special_txtbg2', 'The clenest, freshest range. You can almost hear it breath cool and tranquility within your room. Use it to create a haven away from the hetic lifestyle of SpazzHotel.', '', 'Click on an item for more information.', 'So many colors!'),
(33, 3, 'Area', 0, 14, '1', '1', 1, '0', '0', 8, 'default_3x3', 'catalog_area_headline1', 'catalog_area_teaser1', 'catalog_special_txtbg2', 'A chunky and sofisticated line for the down-to-earth, studious Spazz. It''s simplicty is beautful and will add a welcoming charm to every room.', '', 'Click on an item for more information.', 'Beautiful in it''s simplicity!'),
(34, 3, 'Country', 0, 21, '1', '1', 1, '0', '0', 31, 'default_3x3', 'country_header1_en_001', 'country_teaser1', 'catalog_special_txtbg2', 'Lets leave the busy city streets and head over to the wide abyss of golden whear, emerald fields and home grown, organic vegetables. Everything you need to create a farm!', '', 'Click on an item for more information.', 'Who''d be a crow, eh?'),
(35, 3, 'Lodge', 0, 37, '1', '1', 1, '0', '0', 7, 'default_3x3', 'catalog_lodge_headline1', 'catalog_lodge_teaser1', 'catalog_special_txtbg2', 'For that splendid ski-lodge effect with an open fire and whisky on the sidebar. This range is for those who appreicate the true beauty of solid wood.', '', 'Click on an item for more information.', 'I liek wood!'),
(36, 3, 'Plastic', 0, 46, '1', '1', 1, '0', '0', 11, 'plasto', 'catalog_plasto_headline1', '', '', 'Throw on an afro and grab a disco ball! Feel that retro, 1970s vibe? You soon will with this colourful, plastic range! Choose a colour to suit your mood and off you go!', '', 'Click on an item for more information.', ''),
(37, 3, 'Kitchen', 0, 43, '1', '1', 1, '0', '0', 29, 'default_3x3', 'kitchen_header_en', 'kitchen_teaser_en', 'catalog_special_txtbg2', 'Hygiene, hygiene, hygiene! With this new range you can keep your meat chilled and vegetables stored correctly! Just watch out for that dreaded Health Inspector...', '', 'Click on an item for more information.', 'Choccy mouse you say?'),
(38, 3, 'Bathroom', 0, 17, '1', '1', 1, '0', '0', 14, 'default_3x3', 'catalog_bath_headline1', 'catalog_bath_teaser1', 'catalog_special_txtbg2', 'Lets face it.. you can''t live without your bathroom. Give yours guests somewhere to freshen up with our cheeful bathroom collection!', '', 'Click on an item for more information.', 'Every Uber needs one!'),
(39, 3, 'Plants', 0, 45, '1', '1', 1, '0', '0', 15, 'default_3x3', 'catalog_plants_headline1', 'catalog_plants_teaser1', 'catalog_special_txtbg2', 'Every room needs some greenery, dear! Not only do they enhance the air quality, they cheer up a room to make it simply splendid! And what better gift for a friend than an elegant rose..', '', 'Click on an item for more information.', 'I''m a tree!'),
(40, 3, 'Rugs', 0, 52, '1', '1', 1, '0', '0', 16, 'default_3x3', 'catalog_rugs_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Rugs for all occasions, white for weddings, black for funerals and everything in between! All rugs and non-slip and machine washable. Take your pick!', '', 'Click on an item for more information.', 'This''ll be perfect in my room!'),
(41, 3, 'Gallery', 0, 47, '1', '1', 1, '0', '0', 17, 'default_3x3', 'catalog_gallery_headline1', 'catalog_posters_teaser1', 'catalog_special_txtbg2', 'Adorn your walls with posters, art, plaques and wall hangings. This gallery is bursting with items to suit all tastes, traditional and modern!', '', 'Click on an item for more information.', 'Brighten up your walls!'),
(42, 3, 'Trophies', 0, 60, '1', '1', 1, '0', '0', 20, 'trophies', 'catalog_trophies_headline1', '', '', 'Everyone a winner with Spazz trophies! Now you can reward all your friends with our pre-polished array of trohpies. In bronze, silver and gold. \r\nFirst choose your trophy model, then the metal and carefully type your inscription. Don''t worry, we''ll engrave it all with your name and the date.', '', 'Click on an item for more information.', ''),
(43, 3, 'Accessories', 0, 11, '1', '1', 1, '0', '0', 19, 'default_3x3', 'catalog_extra_headline1', 'catalog_extra_teaser1', 'catalog_special_txtbg2', 'However you like to place your essentials, its the finishing touches that really make a room and express your true personality. Don''t forget, like anything else, you can move them all about to suit your mood!', '', 'Click on an item for more information.', 'I love my rabbit...'),
(45, 4, 'Rentals', 0, 44, '1', '1', 1, '0', '0', 23, 'default_3x3', 'catalog_pixelrent_headline1_en', 'catalog_pxl_teaser3_en', '', 'Hire some cool effects to add an explosive touch to your room. From bubbles to firestarters, you can enhance your room dramatically!', '', 'Click on an item for more information.', ''),
(58, 3, 'Lost City', 0, 18, '1', '1', 1, '0', '0', 26, 'default_3x3', 'catalog_lc_headline2_en', '', '', 'Under the seaaaaaaaaa, oh, Under the seaaaaaa! What will your underwater world look like? We have it all here, crabs, HIV and genital warts!', '', 'Click on an item for more information.', ''),
(59, 3, 'Easter', 0, 25, '1', '1', 1, '0', '0', 48, 'default_3x3', 'catalog_easter_headline1', '', '', 'Little birdies hatching from their eggs, pretty, dainty flowers blooming and cute rabbits bouncy in Spring meadows.. FUCK IT ALL! LETS BUY FURNI!', '', 'Click on an item for more information.', ''),
(60, 3, 'Executive', 0, 27, '1', '1', 1, '0', '0', 38, 'default_3x3', 'catalog_exe_headline1_en', '', '', 'For the ultimate business man, the Executive range with its leather seats and Italian coffee is a dream! How about you try the easy lifestyle?', '', 'Click on an item for more information.', ''),
(61, 3, 'Glass', 0, 29, '1', '1', 1, '0', '0', 40, 'default_3x3', 'catalog_glass_headline1', '', '', 'You can really open up a space with this stylish glass furniture, just don''t walk into it!', '', 'Click on an item for more information.', ''),
(62, 3, 'Gothic', 0, 30, '1', '1', 1, '0', '0', 37, 'default_3x3', 'catalog_gothic_headline1', '', '', 'As the church bells ring out midnight, you walk through your cobbled hall lit by candles, throw yourself into your medieval throne and paint your nails black. This is what we imagined when we ordered this range!', '', 'Click on an item for more information.', ''),
(63, 3, 'Sport', 0, 56, '1', '1', 1, '0', '0', 43, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Sport contains all those vital Olympic pieces from running tracks to basketball courts! 3 2 1 GO!', '', 'Click on an item for more information.', ''),
(64, 3, 'Grunge', 0, 32, '1', '1', 1, '0', '0', 28, 'default_3x3', 'catalog_grunge_headline1', '', '', 'Sleeping rough? Make the streets a bit more bearable with our collection of homeless furni, Grunge!', '', 'Click on an item for more information.', ''),
(56, 3, 'Alhambra', 0, 12, '1', '1', 1, '0', '0', 22, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'For the cold Arabian nights and hot Arabian days, you''ll need a palace.. and we have just what you need! Green blossom print should cover it just fine!', '', 'Click on an item for more information.', ''),
(57, 3, 'Asian', 0, 15, '1', '1', 1, '0', '0', 23, 'default_3x3', 'catalog_asian_headline1', '', '', 'Ting tong! Ching chong? Ting chong ting, ping ping! I mean uh.. with our authentic Chinese furniture, you can make a beautiful oriental room!', '', 'Click on an item for more information.', ''),
(55, 3, 'Iced', 0, 13, '1', '1', 1, '0', '0', 10, 'default_3x3', 'catalog_iced_headline1', '', '', 'The Iced range, squishy, soft and most definitely cool. Whatever your needs, this stylish range should cover it!', '', 'Click on an item for more information.', ''),
(65, 3, 'Spazzwood', 0, 33, '1', '1', 1, '0', '0', 39, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'No flash photography, darling! This range is only for the VIP Hollywood actors!', '', 'Click on an item for more information.', ''),
(66, 3, 'Halloween', 0, 34, '1', '1', 1, '0', '0', 50, 'default_3x3', 'catalog_halloween_headline1', '', '', 'WooOOOOoooOOoo! Spooky! Don''t wanna be left with this range at night.. who knows what would happen!', '', 'Click on an item for more information.', ''),
(67, 3, 'Japanese', 0, 36, '1', '1', 1, '0', '0', 24, 'default_3x3', 'catalog_jap_headline2_en', '', '', 'We have sushi, tatami and katana''s! I have no idea what the difference is, but I sure know its Japanese! Fulfil your fantasies and buy some today!', '', 'Click on an item for more information.', ''),
(68, 3, 'Lost Tribe', 0, 38, '1', '1', 1, '0', '0', 27, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Start your own tribal village with our ancient furniture, all carved from hard wearing stone. NOTE: Lava is hot, get an adult to help you.', '', 'Click on an item for more information.', ''),
(69, 3, 'Neon', 0, 41, '1', '1', 1, '0', '0', 42, 'default_3x3', 'catalog_neon_header1_en', '', '', 'New years eve, birthdays and every other day of the year, there''s always an exscuse for a party! So, why don''t you buy some Neon furni!?', '', 'Click on an item for more information.', ''),
(71, 3, 'Relax', 0, 49, '1', '1', 1, '0', '0', 41, 'default_3x3', 'rela_header_en', '', '', 'Relax after a busy day in the Welcome Lounge. Light a few candles, and chill out with a good read in a wicker chair. We understand the needs of an Spazz with a hectic lifestyle!', '', 'Click on an item for more information.', ''),
(72, 3, 'Romantique', 0, 50, '1', '1', 1, '0', '0', 45, 'default_3x3', 'catalog_romantique_headline1', '', '', 'Found in a French barn, this sweet but sexily romantic range caters to every ladies needs. Just going to powder my nose!', '', 'Click on an item for more information.', ''),
(73, 3, 'Sci Fi', 0, 53, '1', '1', 1, '0', '0', 28, 'default_3x3', 'sf_header_en', '', '', 'Blipblop blip blip blip.. Oooh.. what''s this button do?.. You can find out exactly what it does with our new Scifi range, batteries included!', '', 'Click on an item for more information.', ''),
(74, 3, 'Shalimar', 0, 54, '1', '1', 1, '0', '0', 44, 'default_3x3', 'catalog_shal_header1_en', '', '', 'Everyone loves Bollywood! Want some free credits? Tell Oscar you successfully read the Shalimar page! Tell no one else you found this Easter egg. Watch out for rose petals!', '', 'Click on an item for more information.', ''),
(75, 3, 'Summer', 0, 57, '1', '1', 1, '0', '0', 32, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Phwoar! Start up the barbie! This range has everything you need for the perfect summer garden!', '', 'Click on an item for more information.', ''),
(76, 3, 'Love', 0, 62, '1', '1', 1, '0', '0', 46, 'default_3x3', 'catalog_love_headline1', '', '', 'Love is in the air once again! Buy your sweetheart a rose or whisper sweet nothings in their ear on a love sofa. Can you feel it? <3', '', 'Click on an item for more information.', ''),
(77, 3, 'Greek', 0, 31, '1', '1', 1, '0', '0', 25, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Be transported back to ancient Greece with a couple of thousand pounds and British Airways. Until then, build your own panthenon with our realist Greek range!', '', 'Click on an item for more information.', ''),
(85, 4, 'Collectables', 0, 71, '1', '1', 1, '0', '1', 1, 'default_3x3', 'catalog_pixeldeals_headline1_en', 'catalog_pxl_teaser2_en', '', 'The Pixel Collectables are the ultimate collectors items, requiring a mammoth 2000 pixels and credits to buy! If you collect all the pieces and manage to put them together in certain ways, you''ll receive a special effect!', '', 'Click on an item for more information.', ''),
(88, 3, 'Virus', 0, 42, '1', '1', 1, '0', '0', 36, 'default_3x3', 'catalog_vir_header1_en', '', '', 'All of Spazz''s emergency pandemic supplies are kept here! They need a bit of a clean after the exploding puss disease but.. they''ll do fine!', '', 'Click on an item for more information.', ''),
(91, -1, 'Staff Pages', 6, 28, '1', '0', 3, '0', '0', 14, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(93, 91, 'Trophies', 1, 60, '1', '1', 4, '0', '0', 2, 'trophies', 'catalog_trophies_headline1', '', '', 'This page contains special trophies available for staff to give as prizes. STAFF CAUGHT GIVING OUT THESE WITH NO REASON WILL BE DEMOTED.', '', 'Click in this grey box and type your inscription *carefully* - it''s permanent!', ''),
(94, 91, 'Rares', 1, 10, '1', '1', 3, '0', '0', 1, 'default_3x3', 'catalog_rares_headline1', '', '', 'This page contains special rares available for staff. STAFF CAUGHT GIVING OUT THESE WITH NO REASON WILL BE DEMOTED.', '', 'Click on an item for more information.', ''),
(95, 223, 'Promotional', 1, 11, '1', '1', 2, '0', '0', 1, 'default_3x3', 'catalog_rares_headline1', '', '', 'This page contains special promotional items available for VIP''s. VIP CAUGHT GIVING OUT THESE TO NON VIP WILL LOSE VIP.', '', 'Click on an item for more information.', ''),
(105, 3, 'Rares', 0, 69, '1', '1', 1, '0', '0', 57, 'default_3x3', 'catalog_rares_headline1', '', '', 'On this page, we have some lovely rares for you! We''ve kept a few behind for competition and event prizes!', '', 'Click on an item for more information.', ''),
(102, 3, 'Rollers', 0, 16, '1', '1', 1, '0', '0', 13, 'default_3x3', 'catalog_roller_headline1', '', '', 'Zoooooooom, Zooooooooooooooooooooooooooom! Was it a plane? Was it a bird!? No, it was Simon on a roller! You can use rollers in games, events or even just to move a queue along.', '', 'Click on an item for more information.', ''),
(103, 3, 'Diner', 0, 51, '1', '1', 1, '0', '0', 30, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Originally from the 50''s this furni has been refurbished and put right into the catalogue! Use this with the Kitchen range for ultimate diner experience!', '', 'Click on an item for more information.', ''),
(112, 3, 'Twilight', 0, 64, '1', '1', 1, '0', '0', 51, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'I''ve never read the book, all I know is it has vampires playing basket ball and some heart throb called Edward Cullen, but the furni looks good!', '', 'Click on an item for more information.', ''),
(121, 6, 'Trax Machines', 0, 4, '1', '1', 1, '0', '0', 52, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Buy your Trax machines here, ready to load with all your wonderful, musical creations! Check the Sound Sets page for all the discs you could use!', '', 'Trax dont work (YET!!!)', ''),
(116, -1, 'Marketplace', 6, 69, '1', '0', 1, '0', '0', 5, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', '', ''),
(117, 116, 'Offers', 1, 70, '1', '1', 1, '0', '0', 1, 'marketplace', 'catalog_marketplace_header_en', '', '', '', '', '', ''),
(118, 116, 'My Sales', 1, 71, '1', '1', 1, '0', '0', 2, 'marketplace_own_items', 'catalog_marketplace_header_en', '', '', '', '', '', ''),
(119, 116, 'Instructions', 1, 42, '1', '1', 1, '0', '0', 3, 'recycler_info', 'catalog_marketplace_header_en', '', '', 'Uber Marketplace is a convenient and safe way to buy and sell items in Uber.', 'How does the Uber Marketplace work?', 'Selling items:\r\nYou can sell any item which is tradable by selecting the item in your inventory and clicking on ''Sell in Marketplace''. You are able to post 5 items for sale at the cost of 1 credit. You cannot use items currently in the Catalogue.\r\n\r\nBuying items:\r\nBrowse for the item you want to buy on the Marketplace Offers page and click Buy. We guarantee you''ll get the item at the cheapest price available at the moment of purchase.', ''),
(122, 6, 'Sound Sets', 0, 4, '1', '1', 1, '0', '1', 53, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'We have every sound you could ever want right here! From sound effects and ambient tunes to rock and roll and heavy metal!', '', 'Click on an item for more info', ''),
(123, 4, 'Hello Furni', 0, 35, '1', '1', 1, '0', '0', 24, 'default_3x3', 'catalog_hello_header1_en', 'catalog_hello_teaser1_en', '', 'Hello Furni is available with Pixels and is perfect if you are decorating your room for the very first time. The Furni is yours to keep and therefore cannot be traded.', '', 'Click on an item for more information.', ''),
(125, 4, 'Special Effects', 1, 61, '1', '1', 1, '0', '0', 25, 'default_3x3', 'catalog_pixeleffects_headline1_en', 'catalog_pxl_teaser1_en', '', 'Tune your character with cool effects that fit the occasion. Ride the hoverboard and spit on the mic. Effects can be activated from the menu, by clicking on your avatar.', '', 'Click on an item for more information.', ''),
(126, 3, 'Tiki', 0, 59, '1', '1', 1, '0', '0', 33, 'default_3x3', 'catalog_tiki_header1_en', '', '', 'Imagine in the scene.. lost on a desert island when you stumble across a small local tribe.. now you can with our Tiki range!', '', 'Click on an item for more information.', ''),
(128, 3, 'Urban', 0, 26, '1', '1', 1, '0', '0', 21, 'default_3x3', 'urban_header_en', '', '', 'New York City styled furni range, Urban is perfect for any street, alleyway or road. Rubbish bins, street lights and benches, all the Urban furniture you need!', '', 'Click on an item for more information.', ''),
(129, 4, 'Automobile', 0, 16, '1', '1', 1, '0', '0', 26, 'default_3x3', 'catalog_automobile_header1_en', 'catalog_automobile_teaser1_en', '', 'Every Spazz needs a car effect! Not only do they bring a bit of the outside inside, they also enhance the air quality! And what better gift for a friend than a beautiful traffic sign or elegant pile of tires...', '', 'Click on an item for more information.', ''),
(130, 3, 'Environment', 0, 21, '1', '1', 1, '0', '0', 34, 'default_3x3', '', '', '', 'Go green with our environmentally friendly Environment range! This selection of furni is perfect for a beautiful, relaxing garden.', '', 'Click on an item for more information.', ''),
(134, 91, 'System', 0, 65, '1', '1', 3, '0', '0', 9, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(137, 3, 'Orgie', 51, 1, '1', '1', 1, '0', '0', 55, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'The latest range from Ann Summers, the Orgie line. Made of soft, wipe clean plastic, its perfect for any three, four or fivesome!', '', 'Click on an item for more information.', ''),
(136, 3, 'Bling', 0, 42, '1', '1', 1, '0', '0', 52, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Bling, Bling! Flash, Flash! Want to have that real celebrity lifestyle? Well, go somewhere else, all we have here is a tacky range of furni.', '', 'Click on an item for more information.', ''),
(139, 14, 'Pets Information', 0, 42, '1', '1', 1, '0', '0', 8, 'pets2', 'catalog_pet_headline1', 'ctlg_pet_note', '', 'Pets are inhabitants of uberHotel too, so each pet owner needs to know a bit about them. Look after your pet by looking through our key points below.', '', '', '- You cannot trade or give away pets. Once you purchase them, they will be yours forever.\r\n- You can own as many as you want, but you can have no more than 5 pets per room.\r\n- You can take pets with you to other rooms, should the room owner allow you to do so.\r\n- Your pet needs to be trained before it''ll listen to your commands. By training your pets, you can gain some awesome achievements as well.'),
(141, 14, 'Pigs', 0, 67, '1', '1', 1, '0', '0', 1, 'pets', 'catalog_pet_headline1', '', '', 'These little scamps were destined for the dining table until we struck a deal with a local farmer to rescue their cute pigtails! Adopt your little piglet today, all you need now is a name.', '', 'Give a name:Pick a color:Pick a race:', ''),
(142, 14, 'Pets'' Accessories', 0, 43, '1', '1', 1, '0', '0', 7, 'default_3x3', 'catalog_pet_headline1', 'ctlg_pet_teaser1', 'catalog_special_txtbg2', 'This page has everything you need to give your pet the happy life it deserves. We''ve got a huge selection!', '', 'Click on an item for more information.', 'Keep ''em happy!'),
(143, 3, 'Flower Power', 0, 73, '1', '1', 1, '0', '0', 53, 'default_3x3', 'flowerpower_header_en', '', '', 'Woah! Far out man... let the petals take control. Lets collaborate on a hippy hideout and plant some seeds! Lucy in the sky with diamonds style eyy?!', '', 'Click on an item for more information.', ''),
(144, 3, 'Runway', 0, 74, '1', '1', 1, '0', '0', 54, 'default_3x3', 'runway_header_en', '', '', 'Spice up your salon, hair parlour or boutique with our stylish yet practical range! From sewing machines to comfy seating, we''ve got the perfect option for you.', '', 'Click on an item for more information.', ''),
(145, 3, 'Wedding', 0, 10, '1', '1', 1, '0', '0', 56, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'Whos the lucky one, getting married?', '', 'Click on an item for more information.', ''),
(151, 14, 'Crocodiles', 0, 22, '1', '1', 1, '0', '0', 6, 'pets', 'catalog_pet_headline1', '', '', 'Scaly skin, growls and snaps! You''re about to enter the world of Habbo Crocs. Security for your room or to scare your friends a trustworthy and surprisingly loving companion can be yours. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', ''),
(150, 14, 'Dogs', 0, 24, '1', '1', 1, '0', '0', 5, 'pets', 'catalog_pet_headline1', '', '', 'Wet noses, paws, yaps and woofs! You''re about to enter the world of Habbo Dogs. An adorable and faithful servant awaits you with a wagging tail everytime they see you. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', ''),
(149, 14, 'Cats', 0, 20, '1', '1', 1, '0', '0', 4, 'pets', 'catalog_pet_headline1', '', '', 'Fluff, whiskers, meows and purrs! You''re about to enter the world of Habbo Cats. These cute little critters make great playmates and will keep you company if you look after them well. Find a new friend from our ever-changing selection.', '', 'Give a name:Pick a color:Pick a race:', ''),
(147, 14, 'Terriers', 0, 66, '1', '1', 1, '0', '0', 2, 'pets', 'catalog_pet_headline1', '', '', 'Good things come in small packages and Habbo''s Terriers are no exception!', '', 'Give a name:Pick a color:Pick a race:', ''),
(148, 14, 'Bears', 0, 68, '1', '1', 1, '0', '0', 3, 'pets', 'catalog_pet_headline1', '', '', 'A large, heavy, mammal that walks on the soles of its feet, with thick fur and a very short tail. Fall in love with our adorable range of Bears that include the Grizzly and Polar varieties!', '', 'Give a name:Pick a color:Pick a race:', ''),
(502, 3, 'African', 1, 45, '1', '1', 1, '0', '0', 63, 'default_3x3', 'catalog_african_headline1', '', '', 'The new African furniture range is here!', '', '', ''),
(188, 3, 'Big Wave', 1, 1, '0', '1', 1, '0', '0', 7, 'default_3x3', 'catalog_rares_headline1', '', '', 'Big Wave 2010 Rares', '', 'Click on an item for more information.', ''),
(223, -1, 'VIP', 9, 10, '1', '0', 2, '0', '0', 13, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(226, -1, 'Rare Of The Week', 0, 69, '1', '1', 1, '0', '0', 2, 'default_3x3', 'catalog_rares_headline1', '', '', 'Rare Of The Week', '', 'Get Them Now Or Never', ''),
(225, 91, 'Bulk', 0, 11, '1', '1', 3, '0', '0', 10, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', 'For items edited to be bulk.', '', 'Click on an item for more information.', ''),
(185, 3, 'Football 2010', 0, 56, '1', '1', 1, '0', '0', 2, 'default_3x3', 'catalog_rares_headline1', '', '', '', '', '', ''),
(167, 14, 'Lion', 0, 76, '1', '1', 1, '0', '0', 6, 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', ''),
(168, 14, 'Rhino', 0, 77, '1', '1', 1, '0', '0', 7, 'pets', 'catalog_pet_headline1', '', '', '', '', 'Give a name:Pick a color:Pick a race:', ''),
(229, 3, 'Igor', 0, 42, '1', '1', 1, '0', '0', 58, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(231, 91, '711', 0, 42, '1', '1', 1, '0', '0', 12, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(232, 91, 'Mall', 0, 63, '1', '1', 1, '0', '0', 13, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(233, 3, 'American Idol', 0, 33, '1', '1', 1, '0', '0', 59, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(234, 91, 'Childline', 0, 5, '1', '1', 1, '0', '0', 14, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(236, 3, 'SpiderWick Chronicles', 0, 64, '1', '1', 0, '0', '0', 60, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(238, 3, 'Prison', 0, 30, '1', '1', 1, '0', '0', 61, 'default_3x3', 'catalog_frontpage_headline2_en', '', '', '', '', 'Click on an item for more information.', ''),
(169, 3, 'Battle Banzai', 1, 1, '1', '1', 1, '0', '0', 62, 'default_3x3', 'Los nuevos furnis de Battle Banzai por fin en catalogo', '', '', 'Los nuevos furnis de Battle Ball por fin en catalogo', '', '', '');