text
stringlengths
6
9.38M
#worst day of the month for delays caused by weather in ATL SELECT DAY_OF_MONTH, COUNT(IF(WEATHER_DELAY > 0, "", NULL)) AS wst FROM airline WHERE ORIGIN LIKE '%ATL%' GROUP BY DAY_OF_MONTH ORDER BY wst DESC LIMIT 1;
--INCREASE db_schema_version from 3.4 to 3.5; UPDATE settings SET value = '3.5' WHERE scope = '[app]' AND name = 'db_schema_version' AND trim(value) = '3.4'; delete from attachments where trim(id) not in (select trim(value) from fields where field_types_id='FIELD_TYPE_5'); update fields set value=Null where field_types_id='FIELD_TYPE_5' and trim(value) in(select trim(id) from attachments where length(value)=0 or value Is Null); delete from attachments where length(value)=0 or value Is Null; update Items set Images_id='CAT_9_IMG' where category_id='CAT_9' and (length(Images_id)=0 or Images_id Is Null); update field_types set name='Number', last_modified='2013-08-08 02:38:29' where id='FIELD_TYPE_8' and name='Account Number'; Delete from settings where scope='[app]' and (name='CID_USERNAME' or name='CID_PASSWORD' or name='profile_info'); Delete from classes_template_fields where id not in ( select min(id) from classes_template_fields GROUP BY class_id, field_types_id, title ); CREATE TABLE keys_certificates (id TEXT, name TEXT, type TEXT, key TEXT, iv TEXT, last_modified TEXT); INSERT INTO keys_certificates VALUES('0D6EEBCD-70DC-4184-9C57-47428E064F25','','application/x-wiseid-aes256','1FD7D19B8A936DA2F7EC506EA4BD63F5C0C46B9D0600CFFE4AB3C9CF48F61B61','8A30EBD0042A25ABEF7C0CCFDF2FC6457AD760693ED1E618B7B3BDE98A287B47','2013-10-22 04:19:26'); CREATE TABLE file_encryption (id TEXT, keys_certificates_id TEXT, iv TEXT, folder_id TEXT, name TEXT, path TEXT, thumbnail BLOB, type TEXT, status TEXT, last_modified TEXT);
create table attendee ( attendee_id serial PRIMARY KEY , user_id varchar(32) NOT NULL UNIQUE , email varchar(128) NOT NULL UNIQUE , surname varchar(64) NOT NULL , name varchar(32) NOT NULL , skills text ); create table chat ( chat_id serial PRIMARY KEY , name varchar(64) NOT NULL ); create table message ( msg_id serial PRIMARY KEY , chat_id integer REFERENCES chat NOT NULL , sender integer REFERENCES attendee NOT NULL , content text NOT NULL , msg_date timestamp NOT NULL ); create table chat_members ( chat_id integer REFERENCES chat NOT NULL , attendee_id integer REFERENCES attendee NOT NULL, PRIMARY KEY(chat_id, attendee_id) );
CREATE TABLE emails ( id_ema serial NOT NULL, email varchar(255) NOT NULL, CONSTRAINT pk_ema PRIMARY KEY (id_ema) );
/* Ftp setup SQL script */ ALTER ROLE galaxyftp PASSWORD '1234'; GRANT SELECT ON galaxy_user TO galaxyftp;
# Reports those products that have been sold with a markup of 100% or more (i.e., # the priceEach is at least twice the buyPrice) SELECT DISTINCT productName FROM Products AS p JOIN OrderDetails AS o ON o.productCode = p.productCode WHERE o.priceEach > 2 * p.buyPrice
drop table Class; drop table ClassAdvancement; drop table ClassAdvancementFeatureList; drop table Feature; drop table AlignmentList; drop table Alignment; --drop table Skills; drop table SkillList; drop table AbilityScore; drop table Race; drop table RaceFeatureList; drop table Language; drop table RaceLanguageList; drop table ClassLanguageList; create table Class ( ClassID integer primary key autoincrement, Name varchar( 50 ) not null, Description varchar( 512 ) not null, HitDieType smallint not null, BaseSkillPoints smallint not null ); create table ClassAdvancement ( ClassID int not null references Class( ClassID ), ClassAdvancementId integer primary key autoincrement, Level smallint not null, BaseAttackBonus varchar( 20 ) not null, FortitudeSave int, ReflexSave int, WillSave int, SpellsLevel0 smallint default null, SpellsLevel1 smallint default null, SpellsLevel2 smallint default null, SpellsLevel3 smallint default null, SpellsLevel4 smallint default null, SpellsLevel5 smallint default null, SpellsLevel6 smallint default null, SpellsLevel7 smallint default null, SpellsLevel8 smallint default null, SpellsLevel9 smallint default null , KnownSpellsLevel0 smallint default null, KnownSpellsLevel1 smallint default null, KnownSpellsLevel2 smallint default null, KnownSpellsLevel3 smallint default null, KnownSpellsLevel4 smallint default null, KnownSpellsLevel5 smallint default null, KnownSpellsLevel6 smallint default null, KnownSpellsLevel7 smallint default null, KnownSpellsLevel8 smallint default null, KnownSpellsLevel9 smallint default null ); CREATE UNIQUE INDEX idx_unq_classadvancement ON ClassAdvancement(ClassID, Level); create table ClassAdvancementFeatureList ( AbilityListId integer primary key autoincrement, ClassAdvancementId int references ClassAdvancement( ClassAdvancementId ), FeatureID int references Feature( FeatureID ), Level int ); create table Feature( FeatureID integer primary key autoincrement, Type varchar( 10 ), -- constraint (Class, Race, Feat) SubType varchar( 10 ), -- constraint (metamagic) Name varchar( 50 ), Description varchar( 2000 ), BonusValue int, ReplacesFeature int null references Feature( FeatureID ), PrerequisiteFeature int null references Feature( FeatureID ), PrerequisiteAbilityScore int null references AbilityScore( AbilityScoreID ), PrerequisiteAbilityScoreValue int null, PrerequisiteOther varchar( 50 ), SkillID int references Skill( SkillID ) ); CREATE UNIQUE INDEX idx_unq_feature ON Feature(Type, Subtype, Name); create table AlignmentList ( ClassID int references Class( ClassID ), AlignmentListID integer primary key autoincrement, AlignmentID int references Alignment( AlignmentID ) ); create table Alignment ( AlignmentID integer primary key autoincrement, Name varchar( 16 ) not null ); create table Skills ( SkillID integer primary key autoincrement, Name varchar( 60 ) not null, AbilityScoreID int not null references AbilityScore ( AbilityScoreID ), Untrained smallint not null default ( 0 ), Multiple not null default( 0 ), ArmorCheckPenalty int not null default( 0 ), Description varchar( 1024 ) ); create table SkillList ( SkillListID integer primary key autoincrement, SkillID int references Skills( SkillID ), Specialization varchar( 50 ), CrossClass smallint not null default( 0 ), ClassID integer references Class( ClassID ), Prerequisite varchar( 50 ) ); create table AbilityScore ( AbilityScoreID integer primary key, Name varchar( 16 ) ); create table Race ( RaceID integer primary key autoincrement, Name varchar( 16 ), LowLightVisionDepth smallint, DarkVisionDepth smallint, Size varchar( 30 ), Speed smallint, FavoredClass varchar( 24 ) ); create table RaceFeatureList ( RaceFeatureID integer primary key autoincrement, RaceID integer references Race( RaceID ), FeatureID integer references Feature( FeatureID ) ); create table Language ( LanguageID integer primary key autoincrement, Name varchar( 16 ) ); create table RaceLanguageList ( RaceID integer references Race( RaceID ), LanguageID integer references Language( LanguageID ), AutomaticallyKnown smallint ); create table ClassLanguageList ( ClassID integer references Class( ClassID ), LanguageID integer references Language( LanguageID ), AutomaticallyKnown smallint );
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 29 Des 2020 pada 16.42 -- Versi server: 10.4.17-MariaDB -- Versi PHP: 8.0.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `flashsale_jzonetech` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `event` -- CREATE TABLE `event` ( `id` int(11) NOT NULL, `nama_event` varchar(155) NOT NULL, `deskripsi` varchar(400) NOT NULL, `fee` varchar(155) NOT NULL, `image` varchar(155) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `event` -- INSERT INTO `event` (`id`, `nama_event`, `deskripsi`, `fee`, `image`) VALUES (1, 'Redmi 9A 2/32 GB ', 'Lazada 12 Desember 2020 Pukul 10:00 WIB', 'Rp 40.000', 'flashsale.jpg'), (2, 'Redmi 9A 3/32 GB ', 'Lazada 12 Desember 2020 Pukul 10:00 WIB', 'Rp 30.000', 'flashsale.jpg'); -- -------------------------------------------------------- -- -- Struktur dari tabel `pesanan` -- CREATE TABLE `pesanan` ( `id` int(11) NOT NULL, `nomor_pesanan` varchar(155) NOT NULL, `status` int(11) NOT NULL, `resi` varchar(155) NOT NULL, `id_event` int(11) NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `pesanan` -- INSERT INTO `pesanan` (`id`, `nomor_pesanan`, `status`, `resi`, `id_event`, `id_user`) VALUES (5, '486523833755923', 1, 'LXAT-0005145846', 1, 13), (6, '455910082855111', 1, 'LXAT-0003355555', 1, 13), (7, '441152583755222', 2, 'LXAT-0003888888', 2, 14), (8, '448634158459999', 2, 'LXAT-0003444444', 2, 14); -- -------------------------------------------------------- -- -- Struktur dari tabel `status_pesanan` -- CREATE TABLE `status_pesanan` ( `id` int(11) NOT NULL, `status` varchar(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `status_pesanan` -- INSERT INTO `status_pesanan` (`id`, `status`) VALUES (1, 'Diproses'), (2, 'Diterima'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `name` varchar(128) NOT NULL, `email` varchar(128) NOT NULL, `image` varchar(128) NOT NULL, `password` varchar(256) NOT NULL, `role_id` int(11) NOT NULL, `is_active` int(1) NOT NULL, `date_created` int(11) NOT NULL, `bank` varchar(155) NOT NULL, `norek` varchar(155) NOT NULL, `alamat` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user` -- INSERT INTO `user` (`id`, `name`, `email`, `image`, `password`, `role_id`, `is_active`, `date_created`, `bank`, `norek`, `alamat`) VALUES (1, 'Akun Admin', 'akunadmin@jzonetech.com', 'default.png', '$2y$10$d.He0jlbAUxfzYM8x6fZpeLcWlmmNmHWN/PVU2zGrvNH.2B27m/Wa', 1, 1, 1609255015, '', '', ''), (13, 'Akun Tester 1', 'akunterster1@jzonetech.com', 'default.png', '$2y$10$VCT0/Ud9hhDLihXH9hhWLujkvnwoyFNMBGbEhfYsu37Trz/Pv0r9G', 2, 1, 1609255050, '', '', ''), (14, 'Akun Tester 2', 'akunterster2@jzonetech.com', 'default.png', '$2y$10$RaD6Zs.NGDEZSMXbR7TKr.53dnbXxLgPp8R08uYpcVJyYVPRXWeMC', 2, 1, 1609255072, 'BCA', '1111111111', 'Prambanan'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_role` -- CREATE TABLE `user_role` ( `id` int(11) NOT NULL, `role` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user_role` -- INSERT INTO `user_role` (`id`, `role`) VALUES (1, 'Administrator'), (2, 'Member'); -- -------------------------------------------------------- -- -- Stand-in struktur untuk tampilan `v_historyorder` -- (Lihat di bawah untuk tampilan aktual) -- CREATE TABLE `v_historyorder` ( `id` int(11) ,`nomor_pesanan` varchar(155) ,`resi` varchar(155) ,`status` varchar(11) ,`nama_event` varchar(155) ,`fee` varchar(155) ); -- -------------------------------------------------------- -- -- Struktur untuk view `v_historyorder` -- DROP TABLE IF EXISTS `v_historyorder`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v_historyorder` AS SELECT `pesanan`.`id` AS `id`, `pesanan`.`nomor_pesanan` AS `nomor_pesanan`, `pesanan`.`resi` AS `resi`, `status_pesanan`.`status` AS `status`, `event`.`nama_event` AS `nama_event`, `event`.`fee` AS `fee` FROM ((`pesanan` join `status_pesanan` on(`pesanan`.`status` = `status_pesanan`.`id`)) join `event` on(`pesanan`.`id_event` = `event`.`id`)) ; -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `event` -- ALTER TABLE `event` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `pesanan` -- ALTER TABLE `pesanan` ADD PRIMARY KEY (`id`), ADD KEY `id_event` (`id_event`), ADD KEY `id_pemilik` (`id_user`), ADD KEY `status` (`status`); -- -- Indeks untuk tabel `status_pesanan` -- ALTER TABLE `status_pesanan` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_role` -- ALTER TABLE `user_role` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `event` -- ALTER TABLE `event` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `pesanan` -- ALTER TABLE `pesanan` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `status_pesanan` -- ALTER TABLE `status_pesanan` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT untuk tabel `user_role` -- ALTER TABLE `user_role` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `pesanan` -- ALTER TABLE `pesanan` ADD CONSTRAINT `pesanan_ibfk_1` FOREIGN KEY (`id_event`) REFERENCES `event` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pesanan_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pesanan_ibfk_3` FOREIGN KEY (`status`) REFERENCES `status_pesanan` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE DATABASE agenda_db; USE agenda_db; CREATE TABLE personas( id_persona int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, nombre varchar(100) NOT NULL, email varchar(100) NOT NULL ) ENGINE= InnoDB DEFAULT CHARSET=latin1; INSERT INTO personas(nombre,email) VALUES ('Dejah', 'dejah@barson.com'), ('Jhon','jhon@earth.com'); CREATE USER 'user_agenda'@'localhost' IDENTIFIED BY 'Agenda.2020'; GRANT ALL PRIVILEGES ON agenda_db.* TO 'user_agenda'@'localhost'; FLUSH PRIVILEGES;
-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 24, 2021 at 12:08 PM -- Server version: 10.4.17-MariaDB -- PHP Version: 8.0.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `cricket_rest` -- -- -------------------------------------------------------- -- -- Table structure for table `player` -- CREATE TABLE `player` ( `id` int(11) NOT NULL, `name` varchar(60) NOT NULL, `age` int(11) NOT NULL, `jersey_no` decimal(10,0) DEFAULT NULL, `team_id` int(11) NOT NULL DEFAULT 1, `stats_id` int(11) NOT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp(), `updated_by` int(11) NOT NULL DEFAULT 1, `deleted` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `player` -- INSERT INTO `player` (`id`, `name`, `age`, `jersey_no`, `team_id`, `stats_id`, `created_at`, `updated_at`, `updated_by`, `deleted`) VALUES (1, 'Virat Kohli', 29, '12', 1, 1, '2021-01-21 23:25:40', '2021-01-21 23:25:40', 1, 0), (2, 'pat cummins', 31, '18', 2, 2, '2021-01-21 23:25:40', '2021-01-21 23:25:40', 1, 0), (3, 'Rohit Sharama', 33, '10', 1, 3, '2021-01-23 13:21:20', '2021-01-23 13:21:20', 1, 0), (6, 'Youvaraj Singh', 36, '6', 1, 4, '2021-01-23 14:31:36', '2021-01-23 14:31:36', 1, 0), (7, 'Steve Smith', 30, '28', 2, 5, '2021-01-24 14:12:30', '2021-01-24 14:12:30', 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `statistics` -- CREATE TABLE `statistics` ( `id` int(11) NOT NULL, `roll` varchar(30) NOT NULL DEFAULT 'na', `matches` decimal(10,0) NOT NULL DEFAULT 0, `runs` decimal(10,0) NOT NULL DEFAULT 0, `run_rate` float NOT NULL DEFAULT 0, `strike_rate` float NOT NULL DEFAULT 0, `fours` decimal(10,0) NOT NULL DEFAULT 0, `sixes` decimal(10,0) NOT NULL DEFAULT 0, `fifties` decimal(10,0) NOT NULL DEFAULT 0, `hundreds` decimal(10,0) NOT NULL DEFAULT 0, `wickets` decimal(10,0) NOT NULL DEFAULT 0, `wickets_strike_rate` float NOT NULL DEFAULT 0, `economy_rate` float NOT NULL DEFAULT 0, `maidens` decimal(10,0) NOT NULL DEFAULT 0, `five_wickets` decimal(10,0) NOT NULL DEFAULT 0, `catches` decimal(10,0) NOT NULL DEFAULT 0, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_by` int(11) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `statistics` -- INSERT INTO `statistics` (`id`, `roll`, `matches`, `runs`, `run_rate`, `strike_rate`, `fours`, `sixes`, `fifties`, `hundreds`, `wickets`, `wickets_strike_rate`, `economy_rate`, `maidens`, `five_wickets`, `catches`, `created_at`, `updated_at`, `updated_by`) VALUES (1, 'batsman', '58', '2039', 38.56, 96.67, '322', '86', '9', '3', '0', 0, 0, '0', '0', '19', '2021-01-21 23:20:18', '2021-01-21 23:20:18', 1), (2, 'bowler', '60', '2094', 37.98, 88.56, '106', '25', '14', '6', '82', 24.76, 8.38, '2', '0', '93', '2021-01-21 23:20:18', '2021-01-21 23:20:18', 1), (3, 'batsman', '83', '4067', 45.56, 98.26, '234', '68', '31', '8', '0', 0, 0, '0', '0', '0', '2021-01-23 13:21:21', '2021-01-23 13:21:21', 1), (4, 'all rounder', '76', '3096', 45.27, 110.26, '232', '89', '26', '13', '64', 29.45, 8.45, '4', '1', '157', '2021-01-23 14:31:36', '2021-01-23 14:31:36', 1), (5, 'batsman', '98', '4864', 37.94, 92.64, '232', '89', '26', '13', '64', 29.45, 8.45, '4', '1', '157', '2021-01-24 14:12:30', '2021-01-24 14:12:30', 1); -- -------------------------------------------------------- -- -- Table structure for table `team` -- CREATE TABLE `team` ( `id` int(11) NOT NULL, `name` varchar(60) NOT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp(), `updated_by` int(11) DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `team` -- INSERT INTO `team` (`id`, `name`, `created_at`, `updated_at`, `updated_by`) VALUES (1, 'india', '2021-01-21 23:12:48', '2021-01-21 23:12:48', 1), (2, 'australia', '2021-01-21 23:12:48', '2021-01-21 23:12:48', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `player` -- ALTER TABLE `player` ADD PRIMARY KEY (`id`); -- -- Indexes for table `statistics` -- ALTER TABLE `statistics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `team` -- ALTER TABLE `team` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `player` -- ALTER TABLE `player` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `statistics` -- ALTER TABLE `statistics` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `team` -- ALTER TABLE `team` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 3.4.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 09, 2014 at 05:09 PM -- Server version: 5.5.16 -- PHP Version: 5.3.8 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `mad` -- -- -------------------------------------------------------- -- -- Table structure for table `userinfo` -- CREATE TABLE IF NOT EXISTS `userinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `college` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `branch` varchar(100) NOT NULL, `level` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; -- -- Dumping data for table `userinfo` -- INSERT INTO `userinfo` (`id`, `username`, `password`, `firstname`, `lastname`, `contact`, `college`, `email`, `year`, `branch`, `level`) VALUES (1, 'admin', '65fb21c516f574f33c707506774f11e8', 'Vivek', 'Gopalakrishnan', '9884596263', 'SASTRA University', 'gvivek19@gmail.com', '4', 'CSE', 1), (2, 'gvivek19', '31e308af68964d6e79ecfcdac35f0dc4', 'FN', 'LN', '9884596263', 'SASTRA', 'gvivek19@gmail.com', 'B.Tech-1st Year', 'B.Tech-1st Year', 0); -- -------------------------------------------------------- -- -- Table structure for table `websense_entries` -- CREATE TABLE IF NOT EXISTS `websense_entries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entryname` varchar(100) NOT NULL, `theme` varchar(100) NOT NULL, `participantname` varchar(100) NOT NULL, `foldername` varchar(100) NOT NULL, `filename` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `college` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `branch` varchar(100) NOT NULL, `totalrate` int(11) NOT NULL, `norates` int(11) NOT NULL, `averagerate` int(11) NOT NULL, `disqus` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
drop table if exists advertisement; create table advertisement( id int primary key auto_increment, title varchar (100) not null, description varchar (300) not null, age_category varchar not null, photo varchar not null , price NUMERIC not null, city varchar (100) not null, category varchar (100) not null, brand varchar (100) not null )
-- Создаем базу. CREATE DATABASE TestDB; USE TestDB; -- Создаем таблицу сотрудников. CREATE TABLE Employee ( id TINYINT unsigned NOT NULL AUTO_INCREMENT, -- Первичный ключ. emplName VARCHAR(20) NOT NULL, -- Имя сотрудника. father VARCHAR(20) NOT NULL default '', -- Отчество сотрудника. secname VARCHAR(20) NOT NULL, -- Фамилия сотрудника. birthday DATE NOT NULL, -- Дата рождения сотрудника. departmentName varchar(10) NOT NULL, -- Id департамента, в котором работает сотрудник. PRIMARY KEY (id) ); -- Создаем таблицу департаментов. CREATE TABLE Department ( -- id INT NOT NULL AUTO_INCREMENT, -- Первичный ключ. depName varchar(10) NOT NULL unique, -- Название департамента. chiefId TINYINT unsigned NULL, -- Id сотрудника, который является начальником отдела PRIMARY KEY (depName), FOREIGN KEY (chiefId) REFERENCES Employee(id) ); -- Добавляем в таблицу сотрудников внешний ключ на id департамента. ALTER TABLE Employee ADD CONSTRAINT FK_DepartmentId FOREIGN KEY (departmentName) REFERENCES Department(depName); -- 2. Заполняем таблицу тестовыми данными. -- Создаем два департамента. INSERT INTO Department (depName) VALUES ('отдел IT'), ('отдел HR'); drop function getadultbirthday; -- Создаем функцию которая возвращает случайную дату рождения в диапазоне возрастов от 18 лет до 60 лет. DELIMITER // CREATE FUNCTION GetAdultBirthday() RETURNS date deterministic BEGIN SET @beginDate = date_add(CURDATE(), INTERVAL -60 YEAR); SET @endDate = date_add(CURDATE(), INTERVAL -18 YEAR); SET @rand = (to_days(@endDate) - to_days(@beginDate)) * rand(); SET @birthDate = to_days(@beginDate) + @rand; RETURN from_days(@birthDate); END; // -- DELIMITER; -- Заполняем таблицу сотрудников. INSERT INTO Employee (emplName, father, secname, birthday, departmentName) VALUES ('Иван', 'Иванович', 'Иванов', GetAdultBirthday(), 'отдел IT'), ('Петр', 'Петрович', 'Петров', GetAdultBirthday(), 'отдел HR'), ('Андрей', 'Васильевич', 'Сидоров', GetAdultBirthday(), 'отдел IT'), ('Максим', 'Юрьевич', 'Пришвин', GetAdultBirthday(),'отдел HR'), ('Александр', 'Сергеевич', 'Пушкин', GetAdultBirthday(), 'отдел IT'), ('Сергей', 'Александрович', 'Есенин', GetAdultBirthday(),'отдел HR'), ('Михаил', 'Юрьевич', 'Лермонтов', GetAdultBirthday(), 'отдел IT'), ('Корней', 'Михайлович', 'Чуковский', GetAdultBirthday(),'отдел HR'), ('Афанасий', 'Афанасьевич', 'Фет', GetAdultBirthday(), 'отдел IT'), ('Иван', 'Алексеевич', 'Бунин', GetAdultBirthday(),'отдел HR'), ('Иван', 'Савельевич', 'Сусанин', GetAdultBirthday(), 'отдел IT'), ('Аркадий', 'Исаакович', 'Райкин', GetAdultBirthday(),'отдел HR'), ('Александр', 'Васильевич', 'Масляков', GetAdultBirthday(), 'отдел IT'); -- Назначаем начальников отделов. UPDATE Department SET chiefId = 5 WHERE depName LIKE 'отдел IT'; UPDATE Department SET chiefId = 6 WHERE depName LIKE 'отдел HR'; -- Функция, возвращающая количество полных лет из даты рождения. DELIMITER // CREATE FUNCTION GetFullYears(birthday DATE) RETURNS TINYINT deterministic BEGIN SET @YEARS = year(CURDATE()) - year(birthday); -- DATEDIFF(YEAR, @birthday, GETDATE()); IF MONTH(birthday) > MONTH(CURDATE()) THEN SET @YEARS = @YEARS - 1; END IF; IF (MONTH(birthday) = MONTH(CURDATE())) AND (DAY(birthday) > DAY(CURDATE())) THEN SET @YEARS = @YEARS - 1; END IF; RETURN @YEARS; END; // -- DELIMITER SELECT CONCAT(Emp1.secname, ' ', SUBSTRING(Emp1.emplName, 1, 1), '.', SUBSTRING(Emp1.father, 1, 1), '.') AS 'Ф.И.О.', GetFullYears(Emp1.birthday) AS 'Возраст', Dep.depName AS 'Отдел', Emp2.secname AS 'Начальник отдела' FROM Employee AS Emp1 JOIN Department Dep ON departmentName = Dep.depName JOIN Employee Emp2 ON Dep.chiefId = Emp2.id LIMIT 10;
DROP DATABASE IF EXISTS blogologydb; CREATE DATABASE blogologydb; USE blogologydb;
--<ScriptOptions statementTerminator=";"/> CREATE TABLE tbl_book ( id BIGINT NOT NULL, sku VARCHAR(255), name VARCHAR(255), description VARCHAR(255), unit_price DECIMAL(10 , 2), image_url VARCHAR(255), active BIT DEFAULT b'1', units_in_stock INT, date_created DATETIME, last_updated DATETIME, category_id BIGINT NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB; CREATE INDEX category_id ON tbl_book (category_id ASC); ALTER TABLE tbl_book ADD CONSTRAINT tbl_book_ibfk_1 FOREIGN KEY (category_id) REFERENCES tbl_category (id) ON DELETE RESTRICT ON UPDATE RESTRICT;
CREATE DATABASE kurly; USE kurly; CREATE TABLE customer ( id VARCHAR(50) NOT NULL, pw VARCHAR(16) NOT NULL, name VARCHAR(10) NOT NULL, reg_date VARCHAR(50) NOT NULL, tel VARCHAR(20) NOT NULL, postcode INT(10) NOT NULL, address VARCHAR(100) NOT NULL, email VARCHAR(20) NOT NULL ); CREATE TABLE item ( item_number int(50), item_category VARCHAR(20), item_name VARCHAR(16), item_price int(50), item_stock int(50), item_image VARCHAR(10), item_info VARCHAR(100), discount_rate int(50), reg_date VARCHAR(50), sold int(50) ); CREATE TABLE cart ( cart_number int(50), buyer VARCHAR(50), item_name VARCHAR(16), buy_price int(50), buy_count int(50), item_image VARCHAR(50) ); CREATE TABLE buy ( customer_id VARCHAR(50), customer_name VARCHAR(50), cart_number int(50), item_name VARCHAR(50), buy_price int(50), buy_count int(50), item_image VARCHAR(50), buy_date VARCHAR(50), howpay VARCHAR(50), address VARCHAR(100) ); CREATE table manager ( id varchar(50), pw varchar(50), name varchar(50) ); create table board ( num int(10), writer varchar(20), title varchar(50), pw varchar(20), reg_date date, ref int(10), re_step int(10), re_level int(10), readcount int(10), content varchar(100), status varchar(30) ); --------------------------------------------------------------------------- -- manager 테이블 insert into manager values ('admin', 'admin', '관리자'); -- customer 테이블 insert into customer values ('junlee', '1234', '이준규', '2021-02-11', '01027516903', 16944, '용인시 수지', 'junlee0620@naver.com'); insert into customer values ('qwer', '1234', '이중구', '2020-02-13', '01033334444', 18527, '서울 강남', 'qwer@naver.com'); insert into item -- item 테이블 values (1, 'vegetable', '대파', 1200, 3, '1.jpg', '대파입니다', 0, now(), 10); insert into item values (2, 'vegetable', '상추', 2000, 4, '2.jpg', '상추입니다', 10, now(), 0); insert into item values (3, 'vegetable', '당근', 2500, 8, '3.jpg', '당근입니다', 10, now(), 0); insert into item values (4, 'vegetable', '깻잎', 1200, 0, '4.jpg', '깻잎입니다', 0, now(), 0); insert into item values (5, 'vegetable', '애호박', 1000, 5, '5.jpg', '애호박입니다', 0, now(), 0); insert into item values (6, 'vegetable', '버섯', 1500, 4, '6.jpg', '버섯입니다', 20, now(), 0); insert into item values (7, 'vegetable', '단호박', 3000, 7, '7.jpg', '단호박입니다', 10, now(), 0); insert into item values (8, 'vegetable', '파프리카', 3000, 6, '8.jpg', '파프리카입니다', 10, now(), 0); insert into item values (9, 'vegetable', '아스파라거스', 3000, 10, '9.jpg', '아스파라거스입니다', 0, now(), 0); insert into item values (10, 'vegetable', '양파', 2000, 11, '10.jpg', '양파입니다', 0, now(), 0); insert into item values (11, 'fish', '자반고등어', 5000, 20, '11.jpg', '고등어입니다', 0, now(), 4); insert into item values (12, 'fish', '연어', 14000, 40, '12.jpg', '노르웨이산 연어입니다', 0, now(), 0); insert into item values (13, 'fish', '오징어', 5000, 10, '13.jpg', '오징어입니다', 10, now(), 0); insert into item values (14, 'fish', '바지락', 7000, 0, '14.jpg', '바지락입니다', 0, now(), 0); insert into item values (15, 'fish', '새우', 10000, 1, '15.jpg', '새우입니다', 10, now(), 0); insert into item values (16, 'fish', '전복', 20000, 5, '16.jpg', '전복입니다', 0, now(), 0); insert into item values (17, 'meat', '막창', 20000, 5, '17.jpg', '막창입니다', 0, now(), 0); insert into item values (18, 'meat', '안심스테이크', 18000, 0, '18.jpg', '안심스테이크입니다', 0, now(), 0); insert into item values (19, 'meat', '닭', 12000, 4, '19.jpg', '닭입니다', 20, now(), 0); insert into item values (20, 'meat', '닭다리', 10000, 7, '20.jpg', '닭다리입니다', 0, now(), 8); insert into item values (21, 'meat', '폭립', 20000, 10, '21.jpg', '폭립니다', 10, now(), 0); insert into item values (22, 'meat', '양념갈비', 25000, 20, '22.jpg', '양념갈비입니다', 30, now(), 0); insert into item values (23, 'meat', '등갈비구이', 20000, 0, '23.jpg', '등갈비구이입니다', 0, now(), 5); insert into item values (24, 'meat', '치즈돈가스', 13000, 1, '24.jpg', '치즈돈가스입니다', 0, now(), 50); insert into item values (25, 'meat', '닭가슴살', 5000, 4, '25.jpg', '닭가슴살입니다', 0, now(), 0); insert into item values (26, 'meat', '차돌박이', 20000, 3, '26.jpg', '차돌박이입니다', 10, now(), 10); insert into item values (27, 'electronic', '그라인더', 28000, 3, '27.jpg', '그라인더입니다', 10, now(), 0); insert into item values (28, 'electronic', '스팀다리미', 30000, 3, '28.jpg', '스팀다리미입니다', 10, now(), 0); insert into item values (29, 'electronic', '헤어드라이기', 25000, 3, '29.jpg', '헤어드라이기입니다', 10, now(), 0); insert into item values (30, 'electronic', '체중계', 19000, 3, '30.jpg', '체중계입니다', 10, now(), 0); insert into item values (31, 'electronic', '전자체중계', 22000, 3, '31.jpg', '전자체중계입니다', 10, now(), 0); insert into item values (32, 'electronic', '미니선풍기', 16000, 0, '32.jpg', '미니선풍기입니다', 10, now(), 0); insert into item values (33, 'electronic', '청소기', 40000, 3, '33.jpg', '청소기입니다', 10, now(), 0); insert into item values (34, 'electronic', '카메라', 50000, 3, '34.jpg', '카메라입니다', 10, now(), 0); insert into item values (35, 'electronic', '믹서기', 3800, 3, '35.jpg', '믹서기입니다', 10, now(), 7); select * from item; select * from customer;
/* Navicat MySQL Data Transfer Source Server : 本地 Source Server Version : 50547 Source Host : localhost:3306 Source Database : healthy_manager Target Server Type : MYSQL Target Server Version : 50547 File Encoding : 65001 Date: 2017-11-10 09:26:46 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for hm_clock -- ---------------------------- DROP TABLE IF EXISTS `hm_clock`; CREATE TABLE `hm_clock` ( `CLOCK_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '闹钟编号', `FREQUENCY` varchar(255) DEFAULT NULL COMMENT '频率(0:一次;1:每天一次;2:每天两次;3、每天三次)', `TIME1` time DEFAULT NULL COMMENT '时间1', `TIME2` time DEFAULT NULL COMMENT '时间2', `TIME3` time DEFAULT NULL COMMENT '时间3', `USER_NO` int(11) DEFAULT NULL COMMENT '用户编号', `BELL_URL` varchar(500) DEFAULT NULL COMMENT '铃声路径', `REMARK` varchar(400) DEFAULT NULL COMMENT '备注', `ITEM` varchar(255) DEFAULT NULL COMMENT '主题', PRIMARY KEY (`CLOCK_NO`), KEY `fk_clock_user_no` (`USER_NO`), CONSTRAINT `fk_clock_user_no` FOREIGN KEY (`USER_NO`) REFERENCES `hm_user_info` (`USER_NO`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_clock -- ---------------------------- -- ---------------------------- -- Table structure for hm_medical -- ---------------------------- DROP TABLE IF EXISTS `hm_medical`; CREATE TABLE `hm_medical` ( `MEDICAL_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '病历编号', `USER_NO` int(11) DEFAULT NULL COMMENT '用户编号', `INQUIRY_TIME` timestamp NULL DEFAULT NULL COMMENT '就诊日期', `HOSPITAL_NAME` varchar(255) DEFAULT NULL COMMENT '医院名称', `DEPT_NAME` varchar(255) DEFAULT NULL COMMENT '科室名称', `DOCTOR_NAME` varchar(255) DEFAULT NULL COMMENT '医生姓名', `MAIN_SUIT` varchar(400) DEFAULT NULL COMMENT '主诉', `MEDICAL_HISTORY` varchar(1000) DEFAULT NULL COMMENT '现病史', `PHYSICAL_EXAMINATION` varchar(400) DEFAULT NULL COMMENT '查体', `DIAGNOSE` varchar(1000) DEFAULT NULL COMMENT '诊断', `SUGGEST` varchar(1000) DEFAULT NULL COMMENT '诊疗建议', `PRESCRIPTION_NO` int(11) DEFAULT NULL COMMENT '处方编号', `PHOTO_URL` varchar(500) DEFAULT NULL COMMENT '照片路径', `REMARK` varchar(4000) DEFAULT NULL COMMENT '备注', PRIMARY KEY (`MEDICAL_NO`), KEY `fk_medical_user_no` (`USER_NO`), CONSTRAINT `fk_medical_user_no` FOREIGN KEY (`USER_NO`) REFERENCES `hm_user_info` (`USER_NO`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_medical -- ---------------------------- INSERT INTO `hm_medical` VALUES ('3', '1', '2017-06-12 14:56:46', '西京医院', '外壳', '失明', '双手无力', '无', '无', '无', '无', null, null, '无'); INSERT INTO `hm_medical` VALUES ('5', '1', '2017-06-12 11:32:19', '省人民医院', '2', '2', '记忆力衰退', '', '', '无', '', null, null, ''); INSERT INTO `hm_medical` VALUES ('7', '1', '2017-06-19 00:00:00', '2', '2', '2', '2', '2', '2', '2', '2', null, null, '2'); INSERT INTO `hm_medical` VALUES ('8', '1', '2017-06-19 00:00:00', '3', '3', '3', '3', '3', '3', '3', '3', null, null, '3'); INSERT INTO `hm_medical` VALUES ('16', '40', '2017-05-16 00:00:00', '西京医院', '神经内科', '史明', '双手无力', '颈椎曲度变直', '无', '特发性震颤', '随诊', null, null, '无'); INSERT INTO `hm_medical` VALUES ('18', '29', '2017-05-01 00:00:00', '西京医院', '神经内科', '史明', '双手无力', '颈椎曲度变直', '无', '特发性震颤', '随诊', null, null, '无'); -- ---------------------------- -- Table structure for hm_medicine -- ---------------------------- DROP TABLE IF EXISTS `hm_medicine`; CREATE TABLE `hm_medicine` ( `MEDICINE_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '药品编号', `PRESCRIPTION_NO` int(11) DEFAULT NULL COMMENT '处方编号', `MEDICINE_NAME` varchar(255) DEFAULT NULL COMMENT '药品名称', `MEDICINE_SPEC` varchar(255) DEFAULT NULL COMMENT '药品规格(数量)', `MEDICINE_DOSAGE` varchar(255) DEFAULT NULL COMMENT '药品用量(单位)', `FREQUENCY` varchar(255) DEFAULT NULL COMMENT '频次', `WAY` varchar(255) DEFAULT NULL COMMENT '用药途径', `PHOTO_URL` varchar(500) DEFAULT NULL COMMENT '照片路径', `REMARK` varchar(4000) DEFAULT NULL COMMENT '备注', `PRODUCER` varchar(255) DEFAULT NULL COMMENT '生产商', PRIMARY KEY (`MEDICINE_NO`), KEY `hm_medicine_prescription_no` (`PRESCRIPTION_NO`), CONSTRAINT `hm_medicine_prescription_no` FOREIGN KEY (`PRESCRIPTION_NO`) REFERENCES `hm_prescription` (`PRESCRIPTION_NO`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_medicine -- ---------------------------- INSERT INTO `hm_medicine` VALUES ('1', '3', '盐酸阿罗洛尔片', '3*10mg*10', '1.00*10mg', '3/日', '口服', null, '备注', ''); INSERT INTO `hm_medicine` VALUES ('2', '3', '艾地苯醌片', '4*30mg*24', '1.00*30mg', '3/日', '口服', null, '备注', ''); INSERT INTO `hm_medicine` VALUES ('3', '3', '氯硝西泮片', '1*2mg*20', '0.25*2mg', '3/日', '口服', null, '备注', ''); INSERT INTO `hm_medicine` VALUES ('4', '4', '清脑复神液', '2疗程', '10mg', '3/日', '口服', null, '无', '无'); INSERT INTO `hm_medicine` VALUES ('5', '4', '星瑙灵片', '2疗程', '10mg', '3/日', '口服', null, '无', '无'); INSERT INTO `hm_medicine` VALUES ('6', '4', '1', '', '', '', '', null, '', ''); INSERT INTO `hm_medicine` VALUES ('8', '3', '22', '', '', '', '', null, '', ''); INSERT INTO `hm_medicine` VALUES ('16', '12', '腰酸', '', '', '', '', null, '', ''); INSERT INTO `hm_medicine` VALUES ('17', '12', '‘', '‘', '‘', '‘', '‘', null, '', ''); -- ---------------------------- -- Table structure for hm_prescription -- ---------------------------- DROP TABLE IF EXISTS `hm_prescription`; CREATE TABLE `hm_prescription` ( `PRESCRIPTION_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '处方编号', `HOSPITAL_NAME` varchar(255) DEFAULT NULL COMMENT '医院/门诊名称', `INQUIRY_TIME` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '就诊日期', `REMARK` varchar(4000) DEFAULT NULL COMMENT '备注', `PRESCRIPTION_ABSTRACT` varchar(255) DEFAULT NULL COMMENT '处方描述', `PHOTO_URL` varchar(255) DEFAULT NULL COMMENT '照片路径', `USER_NO` int(11) DEFAULT NULL COMMENT '用户编号', PRIMARY KEY (`PRESCRIPTION_NO`), KEY `hm_prescription_user_no` (`USER_NO`), CONSTRAINT `hm_prescription_user_no` FOREIGN KEY (`USER_NO`) REFERENCES `hm_user_info` (`USER_NO`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_prescription -- ---------------------------- INSERT INTO `hm_prescription` VALUES ('3', '西京医院', '2017-06-12 14:55:35', '', '双手无力', null, '1'); INSERT INTO `hm_prescription` VALUES ('4', '社区门诊', '2017-06-12 13:40:04', '', '社区门诊', null, '1'); INSERT INTO `hm_prescription` VALUES ('5', '1', '2017-06-19 00:00:00', '1', '1', null, '1'); INSERT INTO `hm_prescription` VALUES ('12', '西京医院', '2017-05-01 00:00:00', '无', '双手无力', null, '29'); -- ---------------------------- -- Table structure for hm_schedule -- ---------------------------- DROP TABLE IF EXISTS `hm_schedule`; CREATE TABLE `hm_schedule` ( `SCHEDULE_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '提醒编号', `ITEM` varchar(255) DEFAULT NULL COMMENT '主题', `CONTENT` varchar(255) DEFAULT NULL COMMENT '内容', `TIME` timestamp NULL DEFAULT NULL COMMENT '时间', `BELL_URL` varchar(500) DEFAULT NULL COMMENT '铃声路径', `USER_NO` int(11) DEFAULT NULL COMMENT '用户编号', PRIMARY KEY (`SCHEDULE_NO`), KEY `fk_remind_user_no` (`USER_NO`) USING BTREE, CONSTRAINT `fk_schedule_user_no` FOREIGN KEY (`USER_NO`) REFERENCES `hm_user_info` (`USER_NO`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_schedule -- ---------------------------- -- ---------------------------- -- Table structure for hm_search -- ---------------------------- DROP TABLE IF EXISTS `hm_search`; CREATE TABLE `hm_search` ( `SEARCH_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `SEARCH_NAME` varchar(255) DEFAULT NULL COMMENT '网址名称', `SEARCH_URL` varchar(255) DEFAULT NULL COMMENT '网址路径', `USER_NO` int(11) DEFAULT NULL COMMENT '用户ID(为空表示所有用户共用)', `SEARCH_ABSTRACT` varchar(255) DEFAULT NULL COMMENT '简介', PRIMARY KEY (`SEARCH_NO`), KEY `fk_search_user_no` (`USER_NO`), CONSTRAINT `fk_search_user_no` FOREIGN KEY (`USER_NO`) REFERENCES `hm_user_info` (`USER_NO`) ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of hm_search -- ---------------------------- INSERT INTO `hm_search` VALUES ('1', '药品价格315网', 'https://www.315jiage.cn/', null, null); INSERT INTO `hm_search` VALUES ('2', '趣医网', 'https://www.quyiyuan.com/', null, null); INSERT INTO `hm_search` VALUES ('3', '西京医院预约挂号网', 'http://www.83215321.com/Index.aspx', null, null); INSERT INTO `hm_search` VALUES ('6', '淘个宝', 'https://www.taobao.com', '2', null); INSERT INTO `hm_search` VALUES ('7', '好大夫', 'http://www.haodf.com/', '1', 'miaoshushshbfh'); INSERT INTO `hm_search` VALUES ('16', '百度一哈', 'https://www.baidu.com', '1', ''); INSERT INTO `hm_search` VALUES ('26', '1', '1', '1', ''); INSERT INTO `hm_search` VALUES ('27', '2', '啊', '1', ''); INSERT INTO `hm_search` VALUES ('36', '百度', 'https://www.baidu.com', '29', ''); -- ---------------------------- -- Table structure for hm_user_info -- ---------------------------- DROP TABLE IF EXISTS `hm_user_info`; CREATE TABLE `hm_user_info` ( `USER_NO` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户编号', `USER_NAME` varchar(255) DEFAULT NULL COMMENT '用户名', `PHONE_NUMBER` varchar(11) DEFAULT NULL COMMENT '联系电话', `PASSWORD` varchar(255) DEFAULT NULL COMMENT '登录密码', `LAST_LOG_TIME` timestamp NULL DEFAULT NULL COMMENT '最后登录时间', PRIMARY KEY (`USER_NO`), UNIQUE KEY `uq_phone_number` (`PHONE_NUMBER`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8 COMMENT='用户信息表'; -- ---------------------------- -- Records of hm_user_info -- ---------------------------- INSERT INTO `hm_user_info` VALUES ('1', 'admin', '18888888888', 'cXdlcg==\n', '2017-06-21 10:10:57'); INSERT INTO `hm_user_info` VALUES ('2', 'root', '18888888881', 'cXdlcg==\n', null); INSERT INTO `hm_user_info` VALUES ('29', 'rambler', '18829027593', 'd3hxODU0MDE5MTM0\n', '2017-06-22 23:01:43'); INSERT INTO `hm_user_info` VALUES ('39', 'wxq', '18829027389', 'd3d3\n', '2017-06-21 18:49:23'); INSERT INTO `hm_user_info` VALUES ('40', 'wxq', '13659201296', 'd3d3\n', '2017-06-21 21:00:06'); INSERT INTO `hm_user_info` VALUES ('41', 'wxq', '15686098453', 'd3d3\n', '2017-06-21 21:35:03');
--USE [Data_10] ALTER VIEW BG_SELECT_PRODUCTION_SCHEDULE_CMT AS --Created: 06/20/12 By: BG --Last Updated: 06/20/12 By: BG --Purpose: View for Select Plastic production schedule --Last Change: SELECT DISTINCT OC.ord_type, RIGHT(OC.ord_no,5) AS Ord_No, OC.line_seq_no AS [line_no], CASE WHEN OC.line_seq_no = 0 THEN 'Header Cmt' WHEN OC.line_seq_no > 0 THEN 'Line Cmt' END AS cmt_type, OC.cmt_seq_no, LTRIM(OC.cmt) AS Comment, CASE WHEN OC.line_seq_no = 0 THEN 'N/A' ELSE OL.item_no END AS item_no FROM dbo.OELINCMT_SQL AS OC INNER JOIN dbo.oeordlin_sql AS OL ON OL.ord_no = OC.ord_no INNER JOIN dbo.oeordhdr_sql AS OH ON OH.ord_no = OC.ord_no AND OC.ord_type = OH.ord_type WHERE (OH.ord_type = 'O') AND (OC.cmt NOT LIKE 'Shipment:%') AND (OC.cmt NOT LIKE 'Shipment Date:%') AND (OC.cmt NOT LIKE 'Shipment Type:%') AND (OC.cmt NOT LIKE 'Trailer:%') AND (OC.cmt NOT LIKE 'Pallet:%') AND (OC.cmt NOT LIKE '%Tracking No:%') AND (OC.cmt NOT LIKE 'End Shipment:%') AND (OC.cmt NOT LIKE '%Carton:%') AND (OC.cmt NOT LIKE 'Color Length%') AND (OC.cmt NOT LIKE 'Height%') AND (OC.cmt NOT LIKE 'FOOD ORANGECol%') AND (OC.cmt <> 'Delivery Day Within 10 Days') AND (OC.cmt NOT LIKE 'ColorBLKGLS%') AND (OC.cmt NOT LIKE '%Unit of Dim.IN%') AND (OC.cmt NOT LIKE '%samsclub%') AND (OC.cmt NOT LIKE '%uswalmart%') AND (OC.cmt NOT LIKE '%us.wal%') AND (OC.cmt NOT LIKE '%stores.us%') AND (OC.cmt NOT LIKE '%.000%')
UPDATE bpk_account_credit_detail SET ordered_by_department = bpkget_department_description_by_spid(verify_spid) WHERE fix_visit_type_id='0' AND verify_date BETWEEN '$P!{FromDate}' AND '$P!{FromDate}'
-- Jan 4, 2010 11:24:38 AM COT -- 2925700_Create 2010 official periods in GardenWorld INSERT INTO C_Year (AD_Client_ID,AD_Org_ID,C_Calendar_ID,Created,CreatedBy,C_Year_ID,FiscalYear,IsActive,Processing,Updated,UpdatedBy) VALUES (11,0,102,TO_DATE('2010-01-04 11:24:37','YYYY-MM-DD HH24:MI:SS'),100,50003,'2010','Y','N',TO_DATE('2010-01-04 11:24:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:48 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50036,TO_DATE('2010-01-04 11:24:48','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-01-31','YYYY-MM-DD'),'Y','Jan-10',1,'S','N',TO_DATE('2010-01-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:24:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50888,50036,TO_DATE('2010-01-04 11:24:48','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:24:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50889,50036,TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50890,50036,TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50891,50036,TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:24:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50892,50036,TO_DATE('2010-01-04 11:24:50','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:24:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50893,50036,TO_DATE('2010-01-04 11:24:51','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:24:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50894,50036,TO_DATE('2010-01-04 11:24:51','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:24:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50895,50036,TO_DATE('2010-01-04 11:24:52','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:24:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:56 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50896,50036,TO_DATE('2010-01-04 11:24:53','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:24:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:56 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50897,50036,TO_DATE('2010-01-04 11:24:56','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:24:56','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:57 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50898,50036,TO_DATE('2010-01-04 11:24:56','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:24:56','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:57 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50899,50036,TO_DATE('2010-01-04 11:24:57','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:24:57','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:58 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50900,50036,TO_DATE('2010-01-04 11:24:57','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:24:57','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:58 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50901,50036,TO_DATE('2010-01-04 11:24:58','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:24:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50902,50036,TO_DATE('2010-01-04 11:24:58','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:24:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:24:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50903,50036,TO_DATE('2010-01-04 11:24:59','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:24:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50904,50036,TO_DATE('2010-01-04 11:24:59','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:24:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50905,50036,TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50906,50036,TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50907,50036,TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:25:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50908,50036,TO_DATE('2010-01-04 11:25:01','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:25:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50909,50036,TO_DATE('2010-01-04 11:25:01','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50910,50036,TO_DATE('2010-01-04 11:25:02','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:25:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50911,50036,TO_DATE('2010-01-04 11:25:02','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:25:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50912,50036,TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50913,50036,TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:04 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50914,50036,TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:25:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:06 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50915,50036,TO_DATE('2010-01-04 11:25:04','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:04','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:06 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50916,50036,TO_DATE('2010-01-04 11:25:06','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:25:06','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:07 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50037,TO_DATE('2010-01-04 11:25:06','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-02-28','YYYY-MM-DD'),'Y','Feb-10',2,'S','N',TO_DATE('2010-02-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:25:06','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50917,50037,TO_DATE('2010-01-04 11:25:07','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:25:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50918,50037,TO_DATE('2010-01-04 11:25:07','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:25:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50919,50037,TO_DATE('2010-01-04 11:25:08','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:25:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50920,50037,TO_DATE('2010-01-04 11:25:08','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:25:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50921,50037,TO_DATE('2010-01-04 11:25:09','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:25:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50922,50037,TO_DATE('2010-01-04 11:25:09','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:25:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50923,50037,TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50924,50037,TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50925,50037,TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:25:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50926,50037,TO_DATE('2010-01-04 11:25:11','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:25:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50927,50037,TO_DATE('2010-01-04 11:25:11','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:25:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50928,50037,TO_DATE('2010-01-04 11:25:12','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:25:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50929,50037,TO_DATE('2010-01-04 11:25:12','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:25:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50930,50037,TO_DATE('2010-01-04 11:25:13','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:25:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:14 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50931,50037,TO_DATE('2010-01-04 11:25:13','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:25:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50932,50037,TO_DATE('2010-01-04 11:25:14','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:25:14','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50933,50037,TO_DATE('2010-01-04 11:25:16','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:25:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:17 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50934,50037,TO_DATE('2010-01-04 11:25:16','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:25:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50935,50037,TO_DATE('2010-01-04 11:25:17','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:25:17','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50936,50037,TO_DATE('2010-01-04 11:25:18','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:25:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:19 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50937,50037,TO_DATE('2010-01-04 11:25:18','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:25:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50938,50037,TO_DATE('2010-01-04 11:25:19','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50939,50037,TO_DATE('2010-01-04 11:25:20','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:25:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50940,50037,TO_DATE('2010-01-04 11:25:20','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:25:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50941,50037,TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50942,50037,TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50943,50037,TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:25:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50944,50037,TO_DATE('2010-01-04 11:25:22','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50945,50037,TO_DATE('2010-01-04 11:25:22','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:25:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:23 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50038,TO_DATE('2010-01-04 11:25:23','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-03-31','YYYY-MM-DD'),'Y','Mar-10',3,'S','N',TO_DATE('2010-03-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:25:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50946,50038,TO_DATE('2010-01-04 11:25:23','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:25:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50947,50038,TO_DATE('2010-01-04 11:25:24','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:25:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:25 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50948,50038,TO_DATE('2010-01-04 11:25:24','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:25:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50949,50038,TO_DATE('2010-01-04 11:25:25','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:25:25','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50950,50038,TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50951,50038,TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:27 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50952,50038,TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:25:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:28 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50953,50038,TO_DATE('2010-01-04 11:25:27','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:25:27','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:28 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50954,50038,TO_DATE('2010-01-04 11:25:28','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:25:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50955,50038,TO_DATE('2010-01-04 11:25:28','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:25:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50956,50038,TO_DATE('2010-01-04 11:25:29','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:25:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50957,50038,TO_DATE('2010-01-04 11:25:29','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:25:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50958,50038,TO_DATE('2010-01-04 11:25:30','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:25:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50959,50038,TO_DATE('2010-01-04 11:25:30','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:25:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50960,50038,TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50961,50038,TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50962,50038,TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:25:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50963,50038,TO_DATE('2010-01-04 11:25:32','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:25:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50964,50038,TO_DATE('2010-01-04 11:25:32','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:25:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50965,50038,TO_DATE('2010-01-04 11:25:33','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:25:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:34 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50966,50038,TO_DATE('2010-01-04 11:25:33','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:25:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:34 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50967,50038,TO_DATE('2010-01-04 11:25:34','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:34','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:35 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50968,50038,TO_DATE('2010-01-04 11:25:34','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:25:34','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:35 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50969,50038,TO_DATE('2010-01-04 11:25:35','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:25:35','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:36 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50970,50038,TO_DATE('2010-01-04 11:25:35','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:25:35','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:36 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50971,50038,TO_DATE('2010-01-04 11:25:36','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:25:36','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50972,50038,TO_DATE('2010-01-04 11:25:36','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:25:36','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50973,50038,TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50974,50038,TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:38 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50039,TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-04-30','YYYY-MM-DD'),'Y','Apr-10',4,'S','N',TO_DATE('2010-04-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:25:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50975,50039,TO_DATE('2010-01-04 11:25:38','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:25:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50976,50039,TO_DATE('2010-01-04 11:25:39','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:25:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50977,50039,TO_DATE('2010-01-04 11:25:39','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:25:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50978,50039,TO_DATE('2010-01-04 11:25:41','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:25:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50979,50039,TO_DATE('2010-01-04 11:25:41','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:25:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50980,50039,TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50981,50039,TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50982,50039,TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:25:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50983,50039,TO_DATE('2010-01-04 11:25:43','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:25:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:44 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50984,50039,TO_DATE('2010-01-04 11:25:43','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:25:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:44 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50985,50039,TO_DATE('2010-01-04 11:25:44','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:25:44','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:45 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50986,50039,TO_DATE('2010-01-04 11:25:44','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:25:44','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:45 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50987,50039,TO_DATE('2010-01-04 11:25:45','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:25:45','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:46 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50988,50039,TO_DATE('2010-01-04 11:25:45','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:25:45','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:46 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50989,50039,TO_DATE('2010-01-04 11:25:46','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:25:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50990,50039,TO_DATE('2010-01-04 11:25:46','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:25:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50991,50039,TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50992,50039,TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50993,50039,TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:25:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50994,50039,TO_DATE('2010-01-04 11:25:48','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:25:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50995,50039,TO_DATE('2010-01-04 11:25:48','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:25:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50996,50039,TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50997,50039,TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50998,50039,TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:25:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,50999,50039,TO_DATE('2010-01-04 11:25:50','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:25:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51000,50039,TO_DATE('2010-01-04 11:25:50','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:25:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51001,50039,TO_DATE('2010-01-04 11:25:51','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:25:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51002,50039,TO_DATE('2010-01-04 11:25:51','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:25:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51003,50039,TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:52 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50040,TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-05-31','YYYY-MM-DD'),'Y','May-10',5,'S','N',TO_DATE('2010-05-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51004,50040,TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:25:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51005,50040,TO_DATE('2010-01-04 11:25:53','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:25:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:25:54 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51006,50040,TO_DATE('2010-01-04 11:25:53','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:25:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51007,50040,TO_DATE('2010-01-04 11:25:54','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:25:54','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51008,50040,TO_DATE('2010-01-04 11:26:00','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:26:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51009,50040,TO_DATE('2010-01-04 11:26:01','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:26:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51010,50040,TO_DATE('2010-01-04 11:26:01','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:26:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51011,50040,TO_DATE('2010-01-04 11:26:02','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:26:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51012,50040,TO_DATE('2010-01-04 11:26:02','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:26:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51013,50040,TO_DATE('2010-01-04 11:26:03','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:26:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:04 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51014,50040,TO_DATE('2010-01-04 11:26:03','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:26:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:04 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51015,50040,TO_DATE('2010-01-04 11:26:04','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:26:04','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:05 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51016,50040,TO_DATE('2010-01-04 11:26:04','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:26:04','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:06 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51017,50040,TO_DATE('2010-01-04 11:26:05','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:26:05','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:06 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51018,50040,TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:06 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51019,50040,TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51020,50040,TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:26:06','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51021,50040,TO_DATE('2010-01-04 11:26:07','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:26:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51022,50040,TO_DATE('2010-01-04 11:26:07','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:26:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51023,50040,TO_DATE('2010-01-04 11:26:08','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:26:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51024,50040,TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51025,50040,TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51026,50040,TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:26:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51027,50040,TO_DATE('2010-01-04 11:26:11','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:26:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51028,50040,TO_DATE('2010-01-04 11:26:11','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:26:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:14 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51029,50040,TO_DATE('2010-01-04 11:26:12','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:26:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:15 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51030,50040,TO_DATE('2010-01-04 11:26:14','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:26:14','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51031,50040,TO_DATE('2010-01-04 11:26:15','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:15','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51032,50040,TO_DATE('2010-01-04 11:26:16','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:26:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:17 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50041,TO_DATE('2010-01-04 11:26:16','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-06-30','YYYY-MM-DD'),'Y','Jun-10',6,'S','N',TO_DATE('2010-06-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:26:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:17 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51033,50041,TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:17 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51034,50041,TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51035,50041,TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:26:17','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:19 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51036,50041,TO_DATE('2010-01-04 11:26:18','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:26:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:19 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51037,50041,TO_DATE('2010-01-04 11:26:19','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:26:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51038,50041,TO_DATE('2010-01-04 11:26:19','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:26:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51039,50041,TO_DATE('2010-01-04 11:26:20','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:26:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51040,50041,TO_DATE('2010-01-04 11:26:20','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:26:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51041,50041,TO_DATE('2010-01-04 11:26:21','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:26:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51042,50041,TO_DATE('2010-01-04 11:26:21','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:26:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51043,50041,TO_DATE('2010-01-04 11:26:22','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:26:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51044,50041,TO_DATE('2010-01-04 11:26:22','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:26:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51045,50041,TO_DATE('2010-01-04 11:26:23','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:26:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51046,50041,TO_DATE('2010-01-04 11:26:23','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:26:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51047,50041,TO_DATE('2010-01-04 11:26:24','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:26:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:25 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51048,50041,TO_DATE('2010-01-04 11:26:24','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:26:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:25 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51049,50041,TO_DATE('2010-01-04 11:26:25','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:26:25','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51050,50041,TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51051,50041,TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:27 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51052,50041,TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:26:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:27 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51053,50041,TO_DATE('2010-01-04 11:26:27','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:26:27','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:28 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51054,50041,TO_DATE('2010-01-04 11:26:27','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:27','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:28 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51055,50041,TO_DATE('2010-01-04 11:26:28','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:26:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51056,50041,TO_DATE('2010-01-04 11:26:28','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:26:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51057,50041,TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51058,50041,TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51059,50041,TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:26:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51060,50041,TO_DATE('2010-01-04 11:26:30','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51061,50041,TO_DATE('2010-01-04 11:26:30','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:26:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:31 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50042,TO_DATE('2010-01-04 11:26:31','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-07-31','YYYY-MM-DD'),'Y','Jul-10',7,'S','N',TO_DATE('2010-07-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:26:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51062,50042,TO_DATE('2010-01-04 11:26:31','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:26:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51063,50042,TO_DATE('2010-01-04 11:26:32','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:26:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51064,50042,TO_DATE('2010-01-04 11:26:32','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:26:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51065,50042,TO_DATE('2010-01-04 11:26:33','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:26:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:34 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51066,50042,TO_DATE('2010-01-04 11:26:33','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:26:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:34 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51067,50042,TO_DATE('2010-01-04 11:26:34','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:26:34','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:36 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51068,50042,TO_DATE('2010-01-04 11:26:34','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:26:34','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:36 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51069,50042,TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:36 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51070,50042,TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51071,50042,TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:26:36','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51072,50042,TO_DATE('2010-01-04 11:26:37','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:26:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:38 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51073,50042,TO_DATE('2010-01-04 11:26:37','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:26:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:38 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51074,50042,TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:38 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51075,50042,TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51076,50042,TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:26:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51077,50042,TO_DATE('2010-01-04 11:26:39','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:26:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:40 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51078,50042,TO_DATE('2010-01-04 11:26:39','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:26:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:40 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51079,50042,TO_DATE('2010-01-04 11:26:40','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:26:40','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51080,50042,TO_DATE('2010-01-04 11:26:40','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:26:40','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51081,50042,TO_DATE('2010-01-04 11:26:41','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:26:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51082,50042,TO_DATE('2010-01-04 11:26:41','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:26:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51083,50042,TO_DATE('2010-01-04 11:26:42','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51084,50042,TO_DATE('2010-01-04 11:26:42','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:26:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51085,50042,TO_DATE('2010-01-04 11:26:43','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:26:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51086,50042,TO_DATE('2010-01-04 11:26:43','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:26:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:44 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51087,50042,TO_DATE('2010-01-04 11:26:44','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:26:44','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:45 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51088,50042,TO_DATE('2010-01-04 11:26:44','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:26:44','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:45 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51089,50042,TO_DATE('2010-01-04 11:26:45','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:26:45','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:46 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51090,50042,TO_DATE('2010-01-04 11:26:45','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:26:45','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:46 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50043,TO_DATE('2010-01-04 11:26:46','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-08-31','YYYY-MM-DD'),'Y','Aug-10',8,'S','N',TO_DATE('2010-08-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:26:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51091,50043,TO_DATE('2010-01-04 11:26:46','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:26:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51092,50043,TO_DATE('2010-01-04 11:26:47','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:26:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51093,50043,TO_DATE('2010-01-04 11:26:47','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:26:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51094,50043,TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51095,50043,TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51096,50043,TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:26:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51097,50043,TO_DATE('2010-01-04 11:26:49','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:26:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51098,50043,TO_DATE('2010-01-04 11:26:50','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:26:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51099,50043,TO_DATE('2010-01-04 11:26:51','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:26:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51100,50043,TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51101,50043,TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51102,50043,TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:26:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51103,50043,TO_DATE('2010-01-04 11:26:53','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:26:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:54 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51104,50043,TO_DATE('2010-01-04 11:26:53','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:26:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:55 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51105,50043,TO_DATE('2010-01-04 11:26:54','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:26:54','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:56 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51106,50043,TO_DATE('2010-01-04 11:26:55','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:26:55','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:57 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51107,50043,TO_DATE('2010-01-04 11:26:56','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:26:56','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:58 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51108,50043,TO_DATE('2010-01-04 11:26:57','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:26:57','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51109,50043,TO_DATE('2010-01-04 11:26:58','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:26:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:26:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51110,50043,TO_DATE('2010-01-04 11:26:59','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:26:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51111,50043,TO_DATE('2010-01-04 11:26:59','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:26:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51112,50043,TO_DATE('2010-01-04 11:27:00','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51113,50043,TO_DATE('2010-01-04 11:27:01','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:27:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51114,50043,TO_DATE('2010-01-04 11:27:02','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:27:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:05 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51115,50043,TO_DATE('2010-01-04 11:27:03','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:27:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:05 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51116,50043,TO_DATE('2010-01-04 11:27:05','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:27:05','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51117,50043,TO_DATE('2010-01-04 11:27:05','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:27:05','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51118,50043,TO_DATE('2010-01-04 11:27:07','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51119,50043,TO_DATE('2010-01-04 11:27:07','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:27:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:08 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50044,TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-09-30','YYYY-MM-DD'),'Y','Sep-10',9,'S','N',TO_DATE('2010-09-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51120,50044,TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51121,50044,TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:27:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51122,50044,TO_DATE('2010-01-04 11:27:09','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:27:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51123,50044,TO_DATE('2010-01-04 11:27:10','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:27:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51124,50044,TO_DATE('2010-01-04 11:27:10','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:27:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51125,50044,TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51126,50044,TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51127,50044,TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:27:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51128,50044,TO_DATE('2010-01-04 11:27:12','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:27:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51129,50044,TO_DATE('2010-01-04 11:27:12','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:27:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51130,50044,TO_DATE('2010-01-04 11:27:13','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:27:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:14 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51131,50044,TO_DATE('2010-01-04 11:27:13','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:27:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:14 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51132,50044,TO_DATE('2010-01-04 11:27:14','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:27:14','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:17 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51133,50044,TO_DATE('2010-01-04 11:27:14','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:27:14','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51134,50044,TO_DATE('2010-01-04 11:27:17','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:27:17','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51135,50044,TO_DATE('2010-01-04 11:27:18','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:27:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51136,50044,TO_DATE('2010-01-04 11:27:18','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:27:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51137,50044,TO_DATE('2010-01-04 11:27:20','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:27:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51138,50044,TO_DATE('2010-01-04 11:27:20','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:27:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51139,50044,TO_DATE('2010-01-04 11:27:21','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:27:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51140,50044,TO_DATE('2010-01-04 11:27:21','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:27:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51141,50044,TO_DATE('2010-01-04 11:27:23','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51142,50044,TO_DATE('2010-01-04 11:27:23','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:27:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51143,50044,TO_DATE('2010-01-04 11:27:24','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:27:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:25 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51144,50044,TO_DATE('2010-01-04 11:27:24','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:27:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51145,50044,TO_DATE('2010-01-04 11:27:25','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:27:25','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:26 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51146,50044,TO_DATE('2010-01-04 11:27:26','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:27:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:27 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51147,50044,TO_DATE('2010-01-04 11:27:26','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:26','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:27 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51148,50044,TO_DATE('2010-01-04 11:27:27','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:27:27','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:28 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50045,TO_DATE('2010-01-04 11:27:27','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-10-31','YYYY-MM-DD'),'Y','Oct-10',10,'S','N',TO_DATE('2010-10-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:27:27','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:29 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51149,50045,TO_DATE('2010-01-04 11:27:28','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:27:28','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51150,50045,TO_DATE('2010-01-04 11:27:29','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:27:29','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51151,50045,TO_DATE('2010-01-04 11:27:30','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:27:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51152,50045,TO_DATE('2010-01-04 11:27:31','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:27:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51153,50045,TO_DATE('2010-01-04 11:27:31','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:27:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51154,50045,TO_DATE('2010-01-04 11:27:32','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:27:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51155,50045,TO_DATE('2010-01-04 11:27:32','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:27:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51156,50045,TO_DATE('2010-01-04 11:27:33','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:27:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:34 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51157,50045,TO_DATE('2010-01-04 11:27:33','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:27:33','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51158,50045,TO_DATE('2010-01-04 11:27:34','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:27:34','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:37 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51159,50045,TO_DATE('2010-01-04 11:27:37','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:27:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:38 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51160,50045,TO_DATE('2010-01-04 11:27:37','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:27:37','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:38 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51161,50045,TO_DATE('2010-01-04 11:27:38','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:27:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51162,50045,TO_DATE('2010-01-04 11:27:38','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:27:38','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51163,50045,TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:39 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51164,50045,TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:40 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51165,50045,TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:27:39','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:40 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51166,50045,TO_DATE('2010-01-04 11:27:40','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:27:40','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51167,50045,TO_DATE('2010-01-04 11:27:40','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:27:40','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:41 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51168,50045,TO_DATE('2010-01-04 11:27:41','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:27:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51169,50045,TO_DATE('2010-01-04 11:27:41','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:27:41','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:42 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51170,50045,TO_DATE('2010-01-04 11:27:42','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:43 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51171,50045,TO_DATE('2010-01-04 11:27:42','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:27:42','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:45 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51172,50045,TO_DATE('2010-01-04 11:27:43','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:27:43','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:46 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51173,50045,TO_DATE('2010-01-04 11:27:45','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:27:45','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:46 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51174,50045,TO_DATE('2010-01-04 11:27:46','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:27:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51175,50045,TO_DATE('2010-01-04 11:27:46','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:27:46','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:47 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51176,50045,TO_DATE('2010-01-04 11:27:47','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:27:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:48 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51177,50045,TO_DATE('2010-01-04 11:27:47','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:27:47','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:48 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50046,TO_DATE('2010-01-04 11:27:48','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-11-30','YYYY-MM-DD'),'Y','Nov-10',11,'S','N',TO_DATE('2010-11-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:27:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51178,50046,TO_DATE('2010-01-04 11:27:48','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:27:48','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:49 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51179,50046,TO_DATE('2010-01-04 11:27:49','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:27:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51180,50046,TO_DATE('2010-01-04 11:27:49','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:27:49','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:50 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51181,50046,TO_DATE('2010-01-04 11:27:50','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:27:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:51 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51182,50046,TO_DATE('2010-01-04 11:27:50','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:27:50','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51183,50046,TO_DATE('2010-01-04 11:27:51','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:27:51','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:52 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51184,50046,TO_DATE('2010-01-04 11:27:52','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:27:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51185,50046,TO_DATE('2010-01-04 11:27:52','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:27:52','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:53 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51186,50046,TO_DATE('2010-01-04 11:27:53','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:27:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:54 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51187,50046,TO_DATE('2010-01-04 11:27:53','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:27:53','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:56 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51188,50046,TO_DATE('2010-01-04 11:27:54','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:27:54','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:57 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51189,50046,TO_DATE('2010-01-04 11:27:56','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:27:56','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:58 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51190,50046,TO_DATE('2010-01-04 11:27:57','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:27:57','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:58 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51191,50046,TO_DATE('2010-01-04 11:27:58','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:27:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51192,50046,TO_DATE('2010-01-04 11:27:58','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:27:58','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:27:59 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51193,50046,TO_DATE('2010-01-04 11:27:59','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:27:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51194,50046,TO_DATE('2010-01-04 11:27:59','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:27:59','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:00 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51195,50046,TO_DATE('2010-01-04 11:28:00','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:28:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51196,50046,TO_DATE('2010-01-04 11:28:00','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:28:00','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:01 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51197,50046,TO_DATE('2010-01-04 11:28:01','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:28:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51198,50046,TO_DATE('2010-01-04 11:28:01','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:28:01','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:02 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51199,50046,TO_DATE('2010-01-04 11:28:02','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:28:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:03 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51200,50046,TO_DATE('2010-01-04 11:28:02','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:28:02','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:04 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51201,50046,TO_DATE('2010-01-04 11:28:03','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:28:03','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:07 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51202,50046,TO_DATE('2010-01-04 11:28:04','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:28:04','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51203,50046,TO_DATE('2010-01-04 11:28:07','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:28:07','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:08 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51204,50046,TO_DATE('2010-01-04 11:28:08','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:28:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:09 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51205,50046,TO_DATE('2010-01-04 11:28:08','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:28:08','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:10 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51206,50046,TO_DATE('2010-01-04 11:28:09','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:28:09','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:10 AM COT INSERT INTO C_Period (AD_Client_ID,AD_Org_ID,C_Period_ID,Created,CreatedBy,C_Year_ID,EndDate,IsActive,Name,PeriodNo,PeriodType,Processing,StartDate,Updated,UpdatedBy) VALUES (11,0,50047,TO_DATE('2010-01-04 11:28:10','YYYY-MM-DD HH24:MI:SS'),100,50003,TO_DATE('2010-12-31','YYYY-MM-DD'),'Y','Dec-10',12,'S','N',TO_DATE('2010-12-01','YYYY-MM-DD'),TO_DATE('2010-01-04 11:28:10','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:11 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51207,50047,TO_DATE('2010-01-04 11:28:11','YYYY-MM-DD HH24:MI:SS'),100,'MMR','Y','N','N','N',TO_DATE('2010-01-04 11:28:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51208,50047,TO_DATE('2010-01-04 11:28:11','YYYY-MM-DD HH24:MI:SS'),100,'MMS','Y','N','N','N',TO_DATE('2010-01-04 11:28:11','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:12 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51209,50047,TO_DATE('2010-01-04 11:28:12','YYYY-MM-DD HH24:MI:SS'),100,'PJI','Y','N','N','N',TO_DATE('2010-01-04 11:28:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51210,50047,TO_DATE('2010-01-04 11:28:12','YYYY-MM-DD HH24:MI:SS'),100,'CMA','Y','N','N','N',TO_DATE('2010-01-04 11:28:12','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51211,50047,TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100,'MXI','Y','N','N','N',TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:13 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51212,50047,TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100,'MMP','Y','N','N','N',TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:14 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51213,50047,TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100,'GLD','Y','N','N','N',TO_DATE('2010-01-04 11:28:13','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:15 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51214,50047,TO_DATE('2010-01-04 11:28:14','YYYY-MM-DD HH24:MI:SS'),100,'CMC','Y','N','N','N',TO_DATE('2010-01-04 11:28:14','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51215,50047,TO_DATE('2010-01-04 11:28:15','YYYY-MM-DD HH24:MI:SS'),100,'MXP','Y','N','N','N',TO_DATE('2010-01-04 11:28:15','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:16 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51216,50047,TO_DATE('2010-01-04 11:28:16','YYYY-MM-DD HH24:MI:SS'),100,'MMM','Y','N','N','N',TO_DATE('2010-01-04 11:28:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51217,50047,TO_DATE('2010-01-04 11:28:16','YYYY-MM-DD HH24:MI:SS'),100,'MMI','Y','N','N','N',TO_DATE('2010-01-04 11:28:16','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:18 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51218,50047,TO_DATE('2010-01-04 11:28:18','YYYY-MM-DD HH24:MI:SS'),100,'ARF','Y','N','N','N',TO_DATE('2010-01-04 11:28:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:19 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51219,50047,TO_DATE('2010-01-04 11:28:18','YYYY-MM-DD HH24:MI:SS'),100,'CMB','Y','N','N','N',TO_DATE('2010-01-04 11:28:18','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:19 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51220,50047,TO_DATE('2010-01-04 11:28:19','YYYY-MM-DD HH24:MI:SS'),100,'API','Y','N','N','N',TO_DATE('2010-01-04 11:28:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51221,50047,TO_DATE('2010-01-04 11:28:19','YYYY-MM-DD HH24:MI:SS'),100,'APC','Y','N','N','N',TO_DATE('2010-01-04 11:28:19','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:20 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51222,50047,TO_DATE('2010-01-04 11:28:20','YYYY-MM-DD HH24:MI:SS'),100,'GLJ','Y','N','N','N',TO_DATE('2010-01-04 11:28:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:21 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51223,50047,TO_DATE('2010-01-04 11:28:20','YYYY-MM-DD HH24:MI:SS'),100,'ARI','Y','N','N','N',TO_DATE('2010-01-04 11:28:20','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51224,50047,TO_DATE('2010-01-04 11:28:21','YYYY-MM-DD HH24:MI:SS'),100,'ARC','Y','N','N','N',TO_DATE('2010-01-04 11:28:21','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:22 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51225,50047,TO_DATE('2010-01-04 11:28:22','YYYY-MM-DD HH24:MI:SS'),100,'ARR','Y','N','N','N',TO_DATE('2010-01-04 11:28:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51226,50047,TO_DATE('2010-01-04 11:28:22','YYYY-MM-DD HH24:MI:SS'),100,'APP','Y','N','N','N',TO_DATE('2010-01-04 11:28:22','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:23 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51227,50047,TO_DATE('2010-01-04 11:28:23','YYYY-MM-DD HH24:MI:SS'),100,'POR','Y','N','N','N',TO_DATE('2010-01-04 11:28:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:24 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51228,50047,TO_DATE('2010-01-04 11:28:23','YYYY-MM-DD HH24:MI:SS'),100,'SOO','Y','N','N','N',TO_DATE('2010-01-04 11:28:23','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51229,50047,TO_DATE('2010-01-04 11:28:24','YYYY-MM-DD HH24:MI:SS'),100,'POO','Y','N','N','N',TO_DATE('2010-01-04 11:28:24','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:30 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51230,50047,TO_DATE('2010-01-04 11:28:30','YYYY-MM-DD HH24:MI:SS'),100,'HRP','Y','N','N','N',TO_DATE('2010-01-04 11:28:30','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51231,50047,TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100,'MOP','Y','N','N','N',TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:31 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51232,50047,TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100,'MOF','Y','N','N','N',TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51233,50047,TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100,'MQO','Y','N','N','N',TO_DATE('2010-01-04 11:28:31','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:32 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51234,50047,TO_DATE('2010-01-04 11:28:32','YYYY-MM-DD HH24:MI:SS'),100,'DOO','Y','N','N','N',TO_DATE('2010-01-04 11:28:32','YYYY-MM-DD HH24:MI:SS'),100) ; -- Jan 4, 2010 11:28:33 AM COT INSERT INTO C_PeriodControl (AD_Client_ID,AD_Org_ID,C_PeriodControl_ID,C_Period_ID,Created,CreatedBy,DocBaseType,IsActive,PeriodAction,PeriodStatus,Processing,Updated,UpdatedBy) VALUES (11,0,51235,50047,TO_DATE('2010-01-04 11:28:32','YYYY-MM-DD HH24:MI:SS'),100,'MCC','Y','N','N','N',TO_DATE('2010-01-04 11:28:32','YYYY-MM-DD HH24:MI:SS'),100) ;
CREATE TABLE TBL_BOARD_POST ( seq INT AUTO_INCREMENT PRIMARY KEY, nick_name VARCHAR(200) NOT NULL, user_id VARCHAR(50) NOT NULL, title VARCHAR(500) NOT NULL, content VARCHAR(2000) NOT NULL, hit INT, delete_yn CHAR(1) NOT NULL, register_date TIMESTAMP NOT NULL, last_update_date TIMESTAMP NULL ); CREATE TABLE TBL_BOARD_POST_COMMENT ( seq INT AUTO_INCREMENT PRIMARY KEY, parent_comment_seq INT, post_seq INT, nick_name VARCHAR(200) NOT NULL, user_id VARCHAR(50) NOT NULL, content CLOB NOT NULL, delete_yn CHAR(1) NOT NULL, register_date TIMESTAMP NOT NULL, last_update_date TIMESTAMP NULL ); CREATE TABLE TBL_USER ( id INT AUTO_INCREMENT PRIMARY KEY, user_id VARCHAR(250) NOT NULL, password VARCHAR(250) NOT NULL, email VARCHAR(250) DEFAULT NULL ); -- SEQUENCES -------------------------------------------- CREATE SEQUENCE SEQ_BOARD_POST START WITH 1; CREATE SEQUENCE SEQ_BOARD_POST_COMMENT START WITH 1;
CREATE TABLE `tag` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8 NOT NULL, `version` int(11) NOT NULL DEFAULT '0', `date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; CREATE TABLE `post` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(500) CHARACTER SET utf8 NOT NULL, `article` longtext NOT NULL, `authored_by_id` int(11) NOT NULL, `is_published` bit(1) NOT NULL DEFAULT b'1', `version` int(11) NOT NULL DEFAULT '0', `published_date` datetime DEFAULT NULL, `date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `keywords` varchar(500) CHARACTER SET utf8 DEFAULT NULL, `summary` varchar(500) CHARACTER SET utf8 DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1; CREATE TABLE `post_tag` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag_id` int(11) NOT NULL, `post_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_post_tag_tag` (`tag_id`), KEY `fk_post_tag_post` (`post_id`), CONSTRAINT `fk_post_tag_post` FOREIGN KEY (`post_id`) REFERENCES `post` (`id`), CONSTRAINT `fk_post_tag_tag` FOREIGN KEY (`tag_id`) REFERENCES `tag` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=latin1; CREATE TABLE `role` ( `id` int(11) NOT NULL AUTO_INCREMENT, `authority` varchar(100) CHARACTER SET utf8 NOT NULL, `version` int(11) NOT NULL DEFAULT '0', `date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(100) CHARACTER SET utf8 NOT NULL, `password` varchar(200) CHARACTER SET utf8 DEFAULT NULL, `first_name` varchar(100) CHARACTER SET utf8 NOT NULL, `last_name` varchar(100) CHARACTER SET utf8 NOT NULL, `enabled` bit(1) NOT NULL DEFAULT b'1', `account_expired` bit(1) NOT NULL DEFAULT b'0', `password_expired` bit(1) NOT NULL DEFAULT b'0', `account_locked` bit(1) NOT NULL DEFAULT b'0', `version` int(11) NOT NULL DEFAULT '0', `date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; CREATE TABLE `user_role` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_user_role_user` (`user_id`), KEY `fk_user_role_role` (`role_id`), CONSTRAINT `fk_user_role_role` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`), CONSTRAINT `fk_user_role_user` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--다중 행 서브쿼리-- --IN-- --1 SELECT DISTINCT sal FROM emp WHERE job=upper('salesman') ORDER BY sal; --2 SELECT * FROM emp WHERE sal IN(1250,1500,1600); --1과2 합치면? SELECT * FROM emp WHERE sal IN( SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); --사장이 속한 부서번호 확인 SELECT deptno FROM emp WHERE job='PRESIDENT'; --사장이 속한 부서에 일하는 모든 사람들 SElECT * FROM emp WHERE deptno IN (SELECT deptno FROM emp WHERE job='PRESIDENT'); --ANY연산자-잘 사용X, SOME SELECT * FROM emp WHERE sal =ANY( SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); --=IN SELECT * FROM emp WHERE sal <ANY( --ANY안하고 MAX()를 사용하는게 더 편하다 SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); --SALESMAN의 최고MAX값보다 작은 건 모두 나온다 --반대라면 MIN값보다 큰 데이터가 나오게된다 SELECT * FROM emp WHERE sal =SOME( --ANY와 똑같음 , 결과도 같음 SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); --=IN --ALL SELECT * FROM emp WHERE sal=ALL( --세개랑 같을 수가 없다 SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); SELECT * FROM emp WHERE sal<ALL( --MIN값보다 작아야된다 -> 그냥 MIN으로 비교해주면됨 SELECT DISTINCT sal FROM emp WHERE job='SALESMAN'); --EXISTS SELECT DISTINCT mgr FROM emp; --매니저들 번호 --매니저 역할을 수행하고 있는 사원들의 정보 SELECT * FROM emp E WHERE empno IN( SELECT DISTINCT mgr FROM emp ); --위와 같다 (IN이 편하지만 EXISTS가 빠르다) SELECT * FROM emp E WHERE EXISTS ( SELECT DISTINCT mgr FROM emp M WHERE E.empno =M.mgr ); --소속 인원이 존재하는 부서들의 정보 SELECT * FROM dept D WHERE EXISTS( SELECT * FROM emp E WHERE D.deptno =E.deptno); --40은 0명이므로 제외 --다중 열 서브 쿼리 --부서별 최고 임금을 받는 사원 조회하기 SELECT max(sal) FROM emp; --전체의 최고금액 SELECT deptno, max(sal) FROM emp GROUP BY deptno; --부서별 최고금액 --다중 열 서브쿼리 이용해서 풀어보기 SELECT deptno, empno, ename, sal FROM emp WHERE (deptno,sal) IN( SELECT deptno, max(sal) FROM emp GROUP BY deptno); --IN은 앞에 항과 연결, deptno과 sal을 비교하려면 괄호를 해준다 SELECT E.deptno, dname, empno, ename, sal FROM emp E INNER JOIN dept D ON E.deptno = D.deptno WHERE(E.deptno,sal) IN ( SELECT deptno,max(sal) FROM emp GROUP BY deptno) ORDER BY deptno; --집합 연산자! --UNION 합집합 SELECT empno, ename, job FROM emp WHERE job='SALESMAN'; SELECT empno, ename, job FROM emp WHERE job='MANAGER'; --UNION쓰기 SELECT empno, ename, job,0 deptno FROM emp WHERE job='SALESMAN' --Alias로도 컬럼명이 같아도된다 UNION SELECT empno, ename, job,deptno FROM emp WHERE job='MANAGER' ORDER BY ENAME; --UNION ALL 합집합 중복 허용 SELECT empno, ename, sal FROM emp WHERE sal<2000 --2000연봉이하 UNION ALL -- UNION 을 쓰면 중복제거, -- UNION ALL하면 중복제거 안된다 SELECT empno, ename, sal FROM emp WHERE sal<1000; --1000연봉이하 --INTERSECT 교집합 SELECT empno, ename, sal FROM emp WHERE sal<2000 INTERSECT --중복만 조회 SELECT empno, ename, sal FROM emp WHERE sal<1000; --MINUS 차집합 SELECT empno, ename, sal FROM emp WHERE sal<2000 MINUS --중복은 제거 SELECT empno, ename, sal FROM emp WHERE sal<1000;
-- -*- mode: sql -*- -- vi: set ft=sql : -- Check
CREATE TABLE likes ( id INT NOT NULL AUTO_INCREMENT, user_id INT NOT NULL, -- user.user_id picture_id INT NOT NULL, -- picture.picture_id create_time DATETIME NOT NULL DEFAULT NOW(), PRIMARY KEY(id) );
create table ClassInfo( classno varchar(5) not null, major varchar(20) default null, primary key (classno) ); create table StudentInfo( sno varchar(5) not null, passwd varchar(20) not null, sname varchar(10) default null, sex varchar(2) default null, age varchar(3) default null, classno varchar(5), primary key (sno), foreign key (classno) references ClassInfo ); create table TeacherInfo( tno varchar(5) not null, passwd varchar(20) not null, tname varchar(10) default null, sex varchar(2) default null, age varchar(3) default null, primary key (tno) ); create table AdminInfo( ano varchar(5) not null, passwd varchar(20) not null, primary key (ano) ); create table CourseInfo( cno varchar(5) not null, cname varchar(30) default null, tno varchar(5), primary key (cno), foreign key (tno) references TeacherInfo ); create table StudentCourse( cno varchar(5) not null, sno varchar(5) not null, grade varchar(3), primary key (cno, sno), foreign key (cno) references CourseInfo on delete cascade, foreign key (sno) references StudentInfo on delete cascade );
DROP TABLE IF EXISTS ims_user_role; DROP TABLE IF EXISTS ims_role; DROP TABLE IF EXISTS ims_user; DROP TABLE IF EXISTS shipment_constraint; DROP TABLE IF EXISTS transaction_relationship; DROP TABLE IF EXISTS transaction_to_client_site; DROP TABLE IF EXISTS line_item; DROP TABLE IF EXISTS transaction; DROP TABLE IF EXISTS shipment; DROP TABLE IF EXISTS transaction_type; DROP TABLE IF EXISTS site; DROP TABLE IF EXISTS client; DROP TABLE IF EXISTS product;
CREATE DATABASE IF NOT EXISTS `books`; USE `books`; create table book ( isbn nvarchar(20) primary key, title nvarchar(200), isRead bit, numberPages int); create table author ( id int primary key, professionalDesignation nvarchar(50), firstName nvarchar(50), lastName nvarchar(50)); create table publisher ( id int primary key, pName nvarchar(200), address nvarchar(200)); create table genre ( gName nvarchar(20) primary key, gType nvarchar(20)); create table bformat ( fName nvarchar(20) primary key); create table writes ( isbn nvarchar(20), authorId int, primary key (isbn, authorId), foreign key (isbn) references book(isbn), foreign key (authorId) references author(id) on update cascade on delete cascade); create table publishes ( isbn nvarchar(20), publisherId int, primary key (isbn, publisherId), foreign key (isbn) references book(isbn), foreign key (publisherId) references publisher(id) on update cascade on delete cascade); create table is_of_type ( isbn nvarchar(20), fName nvarchar(20), primary key (isbn, fName), foreign key (isbn) references book(isbn), foreign key (fName) references bformat(fName) on update cascade on delete cascade); create table belongs ( isbn nvarchar(20), gName nvarchar(20), primary key (isbn, gName), foreign key (isbn) references book(isbn), foreign key (gName) references genre(gName) on update cascade on delete cascade); insert into book (`isbn`, `title`, `isRead`, `numberPages`) values ('978-0142437230', 'Don Quixote', 0, 1072), ('978-0191569579', 'Pilgrims Progress', 1, 380), ('978-1503292383', 'Robinson Cruesoe', 1, 158), ('978-0486292731', 'Gullivers Travels', 1, 158), ('978‐18535260216', 'Tom Jones', 1, 768), ('978-1426221774', 'Cosmic Queries', 0, 312), ('978-0671562717', 'My Life With The Chimpanzees', 1, 160), ('978-0451524935', '1984', 1, 328), ('978-1493663644', 'Emma', 1, 208), ('978-0553380163', 'A Brief History of Time', 1, 212); insert into author (`id`, `professionalDesignation`, `firstName`, `lastName`) values (1, null, 'Miguel', 'De Cervantes'), (2, null, 'John', 'Bunyan'), (3, null, 'Daniel', 'Defoe'), (4, null, 'Jonathan', 'Swift'), (5, null, 'Henry', 'Fielding'), (6, 'Dr.', 'Neil', 'deGrasse Tyson'), (7, 'Dr.', 'Jane', 'Goodall'), (8, null, 'George', 'Orwell'), (9, null, 'Jane', 'Austen'), (10, 'Dr.', 'Stephen', 'Hawking'); insert into bformat (`fName`) values ('Paperback'), ('eBook'), ('Hard Cover'), ('Audiobook'); insert into genre (`gName`, `gType`) values ('Satire', 'Fiction'), ('Religion', 'Fiction'), ('Adventure', 'Fiction'), ('Science', 'Non-fiction'), ('Political', 'Non-fiction'); insert into publisher (`id`, `pName`, `address`) values (1, 'Penguin Random House LLC', '1745 Broadway 15‐3, New York, NY 10019'), (2, 'Aneko Press', '203 E. Birch Street, Abbotsford, WI 54405'), (3, 'CreateSpace', '4900 Lacross Rd, North Charleston, SC 29406'), (4, 'Dover Publications', '1325 Franklin Ave, Garden City, NY 11530'), (5, 'Wordsworth Edition Ltd.', 'PO Box 13147, Stansted CM21 1BT'), (6, 'National Geographic', '1145 17th Street NW, Washington, DC 20036'), (7, 'Aladdin', '1230 Avenue of the Americas 4th Floor, New York, NY 10020'); insert into is_of_type (`isbn`, `fName`) values ('978-0142437230', 'Paperback'), ('978-0191569579', 'eBook'), ('978-1503292383', 'Paperback'), ('978-0486292731', 'Hard Cover'), ('978‐18535260216', 'Paperback'), ('978-1426221774', 'Paperback'), ('978-0671562717', 'Paperback'), ('978-0451524935', 'Paperback'), ('978-1493663644', 'Paperback'), ('978-0553380163', 'Paperback'); insert into publishes (`isbn`, `publisherId`) values ('978-0142437230', 1), ('978-0191569579', 2), ('978-1503292383', 3), ('978-0486292731', 4), ('978‐18535260216', 5), ('978-1426221774', 6), ('978-0671562717', 7), ('978-0451524935', 1), ('978-1493663644', 3), ('978-0553380163', 1); insert into writes (`isbn`, `authorId`) values ('978-0142437230', 1), ('978-0191569579', 2), ('978-1503292383', 3), ('978-0486292731', 4), ('978‐18535260216', 5), ('978-1426221774', 6), ('978-0671562717', 7), ('978-0451524935', 8), ('978-1493663644', 9), ('978-0553380163', 10); insert into belongs (`isbn`, `gName`) values ('978-0142437230', 'Satire'), ('978-0191569579', 'Religion'), ('978-1503292383', 'Adventure'), ('978-0486292731', 'Satire'), ('978‐18535260216', 'Satire'), ('978-1426221774', 'Science'), ('978-0671562717', 'Science'), ('978-0451524935', 'Political'), ('978-1493663644', 'Satire'), ('978-0553380163', 'Science');
create table user_device ( id bigint not null auto_increment, model varchar(255) not null, platform varchar(255) not null, uuid varchar(255) not null, user_id bigint not null, primary key (id) ) ENGINE=InnoDB; alter table user_device add index FKDCA4654A5F66E1A4 (user_id), add constraint FKDCA4654A5F66E1A4 foreign key (user_id) references users (id); alter table decisions add column voting_actual_closing_date datetime; alter table decisions add column description varchar(255);
/*Delete aliasName from ( Select *, ROW_NUMBER() over (Partition by beygingarmynd, uppflettiord order by beygingarmynd) as rowNumber From bin) aliasName Where rowNumber > 1 */ SELECT beygingarmynd, /*uppflettiord,*/ COUNT(*) FROM bin GROUP BY beygingarmynd/*, uppflettiord*/ HAVING COUNT(*) > 1
CREATE DATABASE acesso_db1 CHARACTER SET utf8 COLLATE utf8_unicode_ci; use acesso_db1; DROP TABLE cadastros; CREATE TABLE cadastros ( id INT(6) UNSIGNED AUTO_INCREMENT, tagId VARCHAR(30) NOT NULL UNIQUE, nome VARCHAR(30) NOT NULL, PRIMARY KEY (id, tagId) ); DROP TABLE registros; CREATE TABLE registros ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, tagId VARCHAR(30) NOT NULL, nome VARCHAR(30) NOT NULL, data TIMESTAMP, estado TINYINT(1) DEFAULT NULL );
-- phpMyAdmin SQL Dump -- version 4.4.14 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Apr 14, 2017 at 01:52 AM -- Server version: 5.5.41 -- PHP Version: 5.4.16 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `lhoug001_goldbuy` -- -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE IF NOT EXISTS `products` ( `product_id` int(11) NOT NULL, `product_title` text NOT NULL, `product_img` text NOT NULL, `product_price` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `products` -- INSERT INTO `products` (`product_id`, `product_title`, `product_img`, `product_price`) VALUES (1, 'Iphone 7', 'iphone.png', 700), (2, 'Macbook Pro', 'mac.png', 1000); -- -------------------------------------------------------- -- -- Table structure for table `seller` -- CREATE TABLE IF NOT EXISTS `seller` ( `seller_id` int(11) NOT NULL, `username` varchar(100) NOT NULL, `password` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `seller` -- INSERT INTO `seller` (`seller_id`, `username`, `password`) VALUES (1, 'John Doe', '836babddc66080e01d52b8272aa9461c69ee0496\r\n\r\n'); -- -- Indexes for dumped tables -- -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`product_id`); -- -- Indexes for table `seller` -- ALTER TABLE `seller` ADD PRIMARY KEY (`seller_id`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- MySQL dump 10.13 Distrib 5.7.17, for Win32 (AMD64) -- -- Host: localhost Database: tienda -- ------------------------------------------------------ -- Server version 5.7.17-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `cliente` -- DROP TABLE IF EXISTS `cliente`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cliente` ( `IDcliente` char(6) NOT NULL, `Nombre` varchar(20) DEFAULT NULL, `ApPat` varchar(20) DEFAULT NULL, `ApMat` varchar(20) DEFAULT NULL, `Direccion` varchar(50) DEFAULT NULL, `Fechnac` varchar(30) DEFAULT NULL, PRIMARY KEY (`IDcliente`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cliente` -- LOCK TABLES `cliente` WRITE; /*!40000 ALTER TABLE `cliente` DISABLE KEYS */; /*!40000 ALTER TABLE `cliente` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `empresa` -- DROP TABLE IF EXISTS `empresa`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `empresa` ( `IDempre` char(6) NOT NULL, `Nombre` varchar(50) DEFAULT NULL, `producto` varchar(60) DEFAULT NULL, `pedido` char(5) DEFAULT NULL, PRIMARY KEY (`IDempre`), KEY `pedido` (`pedido`), KEY `producto` (`producto`), CONSTRAINT `empresa_ibfk_1` FOREIGN KEY (`pedido`) REFERENCES `pedido` (`Idpedido`), CONSTRAINT `empresa_ibfk_2` FOREIGN KEY (`producto`) REFERENCES `productos` (`Codigo`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `empresa` -- LOCK TABLES `empresa` WRITE; /*!40000 ALTER TABLE `empresa` DISABLE KEYS */; /*!40000 ALTER TABLE `empresa` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pedido` -- DROP TABLE IF EXISTS `pedido`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pedido` ( `Idpedido` char(5) NOT NULL, `cliente` char(6) DEFAULT NULL, `cantidad` char(6) DEFAULT NULL, PRIMARY KEY (`Idpedido`), KEY `cliente` (`cliente`), CONSTRAINT `pedido_ibfk_1` FOREIGN KEY (`cliente`) REFERENCES `cliente` (`IDcliente`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pedido` -- LOCK TABLES `pedido` WRITE; /*!40000 ALTER TABLE `pedido` DISABLE KEYS */; /*!40000 ALTER TABLE `pedido` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productos` -- DROP TABLE IF EXISTS `productos`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `productos` ( `Codigo` varchar(20) NOT NULL, `Nombre` varchar(30) DEFAULT NULL, `PrecioU` char(5) DEFAULT NULL, `n_prove` varchar(80) DEFAULT NULL, PRIMARY KEY (`Codigo`), KEY `n_prove` (`n_prove`), CONSTRAINT `productos_ibfk_1` FOREIGN KEY (`n_prove`) REFERENCES `proveedor` (`NIF`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productos` -- LOCK TABLES `productos` WRITE; /*!40000 ALTER TABLE `productos` DISABLE KEYS */; /*!40000 ALTER TABLE `productos` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proveedor` -- DROP TABLE IF EXISTS `proveedor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `proveedor` ( `NIF` varchar(30) NOT NULL, `Nombre` varchar(50) DEFAULT NULL, `Direccion` varchar(60) DEFAULT NULL, PRIMARY KEY (`NIF`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proveedor` -- LOCK TABLES `proveedor` WRITE; /*!40000 ALTER TABLE `proveedor` DISABLE KEYS */; /*!40000 ALTER TABLE `proveedor` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-05-09 11:57:40
CREATE TABLE testTable (testField VARCHAR );
SET SESSION sql_mode='ALLOW_INVALID_DATES'; SET foreign_key_checks = 0; LOAD DATA LOCAL INFILE '/Users/ashwin/Downloads/2012q4/sub.txt' IGNORE INTO TABLE registrants FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' IGNORE 1 LINES (@dummy, cik, name, @sic, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @ein, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy) SET sic = nullif(@sic, ''), ein = nullif(@ein, ''); LOAD DATA LOCAL INFILE '/Users/ashwin/Downloads/2012q4/sub.txt' IGNORE INTO TABLE submissions FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' IGNORE 1 LINES (adsh, cik, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @dummy, @afs, @wksi, @fye, form, @period, @fy, @fp, @filed, @accepted, @dummy, @detail, @dummy, @dummy, @dummy) SET afs = cast(SUBSTRING(nullif(@afs, ''), 1, 1) as signed) - 1, wksi = cast(@wksi as signed), period = STR_TO_DATE(@period, '%Y%m%d'), fye = STR_TO_DATE(nullif(CONCAT(@fy, @fye), ''), '%Y%m%d'), fp = nullif(@fp, ''), filed = STR_TO_DATE(@filed, '%Y%m%d'), accepted = STR_TO_DATE(@accepted, '%Y-%m-%d %T.%f'), detail = cast(@detail as signed); LOAD DATA LOCAL INFILE '/Users/ashwin/Downloads/2012q4/tag.txt' IGNORE INTO TABLE tags FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' IGNORE 1 LINES (name, version, @custom, @abstract, @datatype, @iord, @crdr, @label, @foc) SET custom = cast(@custom as signed), abstract = cast(@abstract as signed), datatype = nullif(@datatype, ''), iord = nullif(@iord, ''), crdr = nullif(@crdr, ''), label = nullif(@label, ''), foc = nullif(@foc, ''); LOAD DATA LOCAL INFILE '/Users/ashwin/Downloads/2012q4/num.txt' IGNORE INTO TABLE numbers FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n' IGNORE 1 LINES (adsh, name, version, coreg, @ddate, duration, units, @value, @footnote) SET ddate = STR_TO_DATE(@ddate, '%Y%m%d'), value = nullif(@value, ''), footnote = nullif(@footnote, ''); SET foreign_key_checks = 1; SELECT TABLE_NAME, TABLE_ROWS FROM `information_schema`.`tables` WHERE `table_schema` = 'sec';
SELECT o.order_transaction_timestamp, l.line_item_date, l.line_item_type, SUM(line_item_gross) AS total_gross FROM {{ ref('orders_line_items') }} o CROSS JOIN o.line_items l GROUP BY 1,2,3 ORDER BY 1,2,3
/* **SHOW DATABASES; - > Mostra os banco de dados presentes **CREATE DATABASE nomedobanco; -> Cria banco de dados **USE nomedobanco; -> Seleciona o banco de dados selecionado **CREATE TABLE nomedatabela; -> Cria uma tabela **SHOW TABLES; ->Mostra as tabelas do banco selecionado **DESCRIBE nomedatabela; ->Mostra as informações das colunas da tabela */ CREATE TABLE usuario( nome VARCHAR(50), email VARCHAR(50), mensagem VARCHAR(200) ); /*COMANDOS DE EDIÇÃO DE REGISTROS **INSERIR INSERT INTO usuario(nome, email, mensagem) VALUES("Leonardo Rabelo","leonardorabelo@zoho.com","Um teste de banco de dados"); ------------------------------------------------------- **SELECIONAR SELECIONE TODOS DE usuario ONDE nome é igual a leonardo SELECT * FROM usuario WHERE nome = "leonardo"; SELECIONE TODOS DE usuario ONDE idade é maior ou igual a 18 SELECT * FROM usuario WHERE idade >= 18; ------------------------------------------------------- **DELETAR APAGUE de usarios ONDE nome for igual a Leonardo DELETE FROM usuarios WHERE nome = "Leonardo"; ------------------------------------------------------- **ATUALIZAR ATUALIZE usuarios e TROQUE nome Leonardo ONDE nome for igual a Leonardo Rabelo UPDATE usuarios SET nome "Leonardo" WHERE nome ="Leonardo Rabelo"; *********************SEQUELIZE************************* npm install --save sequelize npm install --save mysql ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'SUASENHA'
--一级权限 INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('商品模块','','','',0), ('权限模块','','','',0), ('会员模块','','','',0); --二级权限 INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('商品管理','Admin','Goods','lst',1), ('品牌管理','Admin','Brand','lst',1), ('分类管理','Admin','Category','lst',1), ('类型管理','Admin','Type','lst',1), ('权限管理','Admin','Privilege','lst',2), ('角色管理','Admin','Role','lst',2), ('管理员管理','Admin','Admin','lst',2), ('级别管理','Admin','MemberLevel','lst',3); --三级权限 INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('商品添加','Admin','Goods','add',4), ('商品修改','Admin','Goods','edit',4), ('商品删除','Admin','Goods','delete',4), ('品牌添加','Admin','Brand','add',5), ('品牌修改','Admin','Brand','edit',5), ('品牌删除','Admin','Brand','delete',5), ('分类添加','Admin','Category','add',6), ('分类修改','Admin','Category','edit',6), ('分类删除','Admin','Category','delete',6), ('类型添加','Admin','Type','add',7), ('类型修改','Admin','Type','edit',7), ('类型删除','Admin','Type','delete',7), ('会员级别添加','Admin','MemberLevel','add',8), ('会员级别修改','Admin','MemberLevel','edit',8), ('会员级别删除','Admin','MemberLevel','delete',8); INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('权限添加','Admin','Privilege','add',8), ('权限修改','Admin','Privilege','edit',8), ('权限删除','Admin','Privilege','delete',8), ('角色添加','Admin','Role','add',9), ('角色修改','Admin','Role','edit',9), ('角色删除','Admin','Role','delete',9), ('管理员添加','Admin','Admin','add',10), ('管理员修改','Admin','Admin','edit',10), ('管理员删除','Admin','Admin','delete',10); --四级权限 INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('属性列表','Admin','Attribute','lst',7); --五级权限 INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('属性添加','Admin','Attribute','add',36), ('属性修改','Admin','Attribute','edit',36), ('属性删除','Admin','Attribute','delete',36); INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('Ajax获取分类','Admin','Category','ajaxGetCats',19); INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('Ajax删除商品属性','Admin','GoodsAttr','ajaxDelAttr',13); INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('Ajax删除商品图片','Admin','Goods','ajaxDelPic',13); INSERT INTO `p39_privilege` (`pri_name`,`module_name`,`controller_name`,`action_name`,`parent_id`) VALUES ('商品库存量列表','Admin','GoodsNumber','lst',13);
-- script lists all genres and displays number of shows linked -- doesn't display a genre that has no shows linked -- record displays genre title and number of shows -- results sorted in desc order by number of shows linked SELECT tv_genres.name AS 'genre', COUNT(tv_show_genres.genre_id) AS 'number_shows' FROM tv_show_genres INNER JOIN tv_genres ON tv_show_genres.genre_id = tv_genres.id GROUP BY tv_genres.id ORDER BY COUNT(tv_show_genres.genre_id) DESC;
# --- !Ups CREATE TABLE "user" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, "nickname" VARCHAR NOT NULL, "password" VARCHAR NOT NULL); INSERT INTO user (id, nickname, password) VALUES (1, "test", "4297f44b13955235245b2497399d7a93"); INSERT INTO user (id, nickname, password) VALUES (2, "test2", "4297f44b13955235245b2497399d7a93"); INSERT INTO user (id, nickname, password) VALUES (3, "test3", "4297f44b13955235245b2497399d7a93"); # --- !Downs DROP TABLE user;
INSERT INTO `roles` (`id`, `role_name`) VALUES (1, 'ROLE_User'), (2, 'ROLE_Admin'); INSERT INTO `users` (`id`, `email`, `password`, `salt`) VALUES (1, 'admin@example.com', '$2y$12$L790ffCbaBB45/MvMQ4bpu0YWcZipy9lLRjdY64hjhj4cJ3ZZqpRO', null), (2, 'testuser@example.com', '$2y$12$L790ffCbaBB45/MvMQ4bpu0YWcZipy9lLRjdY64hjhj4cJ3ZZqpRO', null); INSERT INTO `roles_users` (`user_id`, `role_id`) VALUES (1, 1), (1, 2), (2, 1);
SELECT leg_id, fault_code, occurrences FROM bombardier.servb_fde_fault WHERE fault_code IN :fault_codes AND leg_id IN :leg_ids UNION ALL SELECT leg_id, code as fault_code, count as occurrences FROM bombardier.SERVS_FDE_FAULT_COUNT WHERE code IN :fault_codes AND leg_id IN :leg_ids
CREATE OR REPLACE ALGORITHM = UNDEFINED DEFINER = `synapsemaster`@`%` SQL SECURITY DEFINER VIEW `person_with_risk_intent_denullifier` AS SELECT p.id AS person_id, p.external_id, p.firstname, p.lastname, p.username, p.organization_id, p.created_at, CASE WHEN p.risk_level IS NULL THEN 6 ELSE p.risk_level END AS risk_level, CASE WHEN p.risk_update_date IS NULL THEN p.created_at ELSE p.risk_update_date END AS risk_updated_date, CASE WHEN p.intent_to_leave IS NULL THEN 5 ELSE p.intent_to_leave END AS intent_to_leave, CASE WHEN p.intent_to_leave_update_date IS NULL THEN p.created_at ELSE p.intent_to_leave_update_date END AS intent_to_leave_updated_date FROM person p WHERE p.deleted_at IS NULL;
INSERT INTO users(username,password,enabled) values('user', 'user', true ); INSERT INTO users(username,password,enabled) values('admin', 'admin', true ); INSERT INTO users(username,password,enabled) values('super', 'super', true ); INSERT INTO authorities(username, authority) values('user', 'ROLE_USER' ); INSERT INTO authorities(username, authority) values('admin', 'ROLE_ADMIN' ); INSERT INTO authorities(username, authority) values('super', 'ROLE_SUPER' );
-- -- convert to latlon -- -- sidewalks ALTER TABLE sidewalks ALTER COLUMN geom TYPE geometry(LINESTRING, 4326) USING ST_Transform(geom, 4326); -- crossings ALTER TABLE crossings ALTER COLUMN geom TYPE geometry(LINESTRING, 4326) USING ST_Transform(geom, 4326); -- curbramps ALTER TABLE curbramps ALTER COLUMN geom TYPE geometry(POINT, 4326) USING ST_Transform(geom, 4326);
CREATE TRIGGER check_pro_date AFTER INSERT ON "watch_special" BEGIN SELECT CASE WHEN((SELECT expiredate FROM "special_user" WHERE pro_id = NEW.pro_id) <= DATETIME('now')) THEN RAISE(ABORT, 'Your wallet amount in low.') END; END; END;
DROP DATABASE IF EXISTS bamazon; CREATE DATABASE bamazon; USE bamazon; CREATE TABLE products ( item_id INT NOT NULL AUTO_INCREMENT, product_name VARCHAR(50) NOT NULL, department_name VARCHAR(50) NOT NULL, price DECIMAL(10,2) NOT NULL, stock_quantity INT NOT NULL, PRIMARY KEY (item_id) ); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ("Pens", "Office", 3.17, 200), ("Pink Glitter", "Crafts", 1.89, 50), ("Mason Jars", "Home", 15.99, 12), ("Toothbrush", "Bath", 3.49, 25), ("Clock", "Home", 7.89, 50), ("Sticky Notes", "Office", 2.99, 100), ("Popsicle Sticks", "Crafts", 3.12, 40), ("Pillow", "Home", 18.55, 5), ("Shampoo", "Bath", 22.99, 43), ("Lamp", "Home", 25.79, 8)
Create Procedure mERP_sp_MarketInfo_GetBeatSalesman(@CustomerCode nVarchar(255)) as Begin Select Top 1 B.Description, S.Salesman_Name From Customer C, Beat B, Salesman S, Beat_Salesman BS Where B.Active = 1 and C.DefaultBeatID = B.BeatID and B.BeatID = BS.BeatId and BS.SalesManID = S.SalesmanID and C.CustomerID = @CustomerCode End
-- 1. Find the total amount of poster_qty paper ordered in the orders table. SELECT SUM(poster_qty) total FROM orders; -- 2. Find the total amount of standard_qty paper ordered in the orders table. SELECT SUM(standard_qty) total FROM orders; -- 3. Find the total dollar amount of sales using the total_amt_usd in the orders table. SELECT SUM(total_amt_usd) total FROM orders; -- 4. Find the total amount spent on standard_amt_usd and gloss_amt_usd paper for each order in the orders table. -- This should give a dollar amount for each order in the table. SELECT standard_amt_usd + gloss_amt_usd total_standard_gloss FROM orders; -- 5. Find the standard_amt_usd per unit of standard_qty paper. Your solution should use both an aggregation and a mathematical operator. SELECT SUM(standard_amt_usd)/SUM(standard_qty) AS standard_price_per_unit FROM orders; -- MIN MAX AVG AND MEDIAN -- 1. When was the earliest order ever placed? You only need to return the date. SELECT MIN(occurred_at) earliest_order_date FROM orders; -- 2. Try performing the same query as in question 1 without using an aggregation function. SELECT occurred_at earliest_order_date FROM orders ORDER BY occurred_at LIMIT 1; -- 3. When did the most recent (latest) web_event occur? SELECT MAX(occurred_at) latest_web_event_date FROM web_events; -- 4. Try to perform the result of the previous query without using an aggregation function. SELECT occurred_at latest_web_event_date FROM web_events ORDER BY occurred_at DESC LIMIT 1; -- 5. Find the mean (AVERAGE) amount spent per order on each paper type, as well as the mean amount of each paper type purchased per order. -- Your final answer should have 6 values - one for each paper type for the average number of sales, as well as the average amount. SELECT AVG(standard_amt_usd) avg_standard_amt, AVG(gloss_amt_usd) avg_gloss_amt, AVG(poster_amt_usd) avg_poster_amt, AVG(standard_qty) avg_standard, AVG(gloss_qty) avg_gloss, AVG(poster_qty) avg_poster FROM orders; -- 6. Via the video, you might be interested in how to calculate the MEDIAN. Though this is more advanced than what we have covered so far -- try finding - what is the MEDIAN total_usd spent on all orders? SELECT AVG(total_amt_usd) median_value FROM ( SELECT * FROM ( SELECT total_amt_usd FROM orders ORDER BY total_amt_usd LIMIT 3457 ) AS Table2 ORDER BY total_amt_usd DESC LIMIT 2 ) AS Table3; /* GROUP BY GROUP BY can be used to aggregate data within subsets of the data. For example, grouping for different accounts, different regions, or different sales representatives. Any column in the SELECT statement that is not within an aggregator must be in the GROUP BY clause. The GROUP BY always goes between WHERE and ORDER BY. ORDER BY works like SORT in spreadsheet software. GROUP BY - Expert Tip Before we dive deeper into aggregations using GROUP BY statements, it is worth noting that SQL evaluates the aggregations before the LIMIT clause. If you don’t group by any columns, you’ll get a 1-row result—no problem there. If you group by a column with enough unique values that it exceeds the LIMIT number, the aggregates will be calculated, and then some rows will simply be omitted from the results. This is actually a nice way to do things because you know you’re going to get the correct aggregates. If SQL cuts the table down to 100 rows, then performed the aggregations, your results would be substantially different. The above query’s results exceed 100 rows, so it’s a perfect example. In the next concept, use the SQL environment to try removing the LIMIT and running it again to see what changes. */ -- 1. Which account (by name) placed the earliest order? Your solution should have the account name and the date of the order. -- Agregation solution SELECT a.name account_name, MIN(o.occurred_at) date FROM orders o JOIN accounts a ON o.account_id = a.id GROUP BY a.name ORDER BY date LIMIT 1; -- No agregation solution - BEST FOR ME SELECT a.name account_name, o.occurred_at order_date FROM orders o JOIN accounts a ON o.account_id = a.id ORDER BY order_date LIMIT 1; -- 2. Find the total sales in usd for each account. You should include two columns - the total sales for each company's orders in usd and -- the company name. SELECT a.name account_name, SUM(o.total_amt_usd) total_sales_usd FROM orders o JOIN accounts a ON o.account_id = a.id GROUP BY a.name; -- 3. Via what channel did the most recent (latest) web_event occur, which account was associated with this web_event? Your query should return -- only three values - the date, channel, and account name. -- No agregation solution - BEST FOR ME SELECT a.name account_name, w.channel channel, w.occurred_at event_date FROM web_events w JOIN accounts a ON w.account_id = a.id ORDER BY event_date DESC LIMIT 1; -- Agregation solution SELECT a.name account_name, w.channel channel, MAX(w.occurred_at) event_date FROM web_events w JOIN accounts a ON w.account_id = a.id GROUP BY a.name, w.channel ORDER BY event_date DESC LIMIT 1; -- 4. Find the total number of times each type of channel from the web_events was used. Your final table should have two columns - -- the channel and the number of times the channel was used. SELECT channel, COUNT(channel) number_of_times_used FROM web_events GROUP BY channel; -- 5. Who was the primary contact associated with the earliest web_event? SELECT a.primary_poc FROM web_events w JOIN accounts a ON a.id = w.account_id ORDER BY w.occurred_at LIMIT 1; -- 6. What was the smallest order placed by each account in terms of total usd. Provide only two columns - the account name -- and the total usd. Order from smallest dollar amounts to largest. SELECT a.name account, MIN(o.total_amt_usd) total_usd FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name ORDER BY total_usd; -- 7. Find the number of sales reps in each region. Your final table should have two columns - the region and the number -- of sales_reps. Order from fewest reps to most reps. SELECT r.name region, COUNT(s.region_id) number_of_reps FROM sales_reps s JOIN region r ON r.id = s.region_id GROUP BY r.name ORDER BY number_of_reps; -- GROUP BY II -- 1. For each account, determine the average amount of each type of paper they purchased across their orders. Your result should have -- four columns - one for the account name and one for the average quantity purchased for each of the paper types for each account. SELECT a.name, AVG(o.standard_qty) avg_standard, AVG(o.gloss_qty) avg_gloss, AVG(o.poster_qty) avg_poster FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name; -- 2. For each account, determine the average amount spent per order on each paper type. Your result should have four columns - one for the -- account name and one for the average amount spent on each paper type. SELECT a.name, AVG(o.standard_amt_usd) avg_standard, AVG(o.gloss_amt_usd) avg_gloss, AVG(o.poster_amt_usd) avg_poster FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name; -- 3. Determine the number of times a particular channel was used in the web_events table for each sales rep. Your final table should have -- three columns - the name of the sales rep, the channel, and the number of occurrences. Order your table with the highest number of -- occurrences first. SELECT s.name, w.channel, COUNT(w.channel) channel_count -- or COUNT(*) FROM web_events w JOIN accounts a ON a.id = w.account_id JOIN sales_reps s ON s.id = a.sales_rep_id GROUP BY s.name, w.channel ORDER BY s.name, channel_count DESC; -- 4. Determine the number of times a particular channel was used in the web_events table for each region. Your final table should have three -- columns - the region name, the channel, and the number of occurrences. Order your table with the highest number of occurrences first. SELECT r.name, w.channel, COUNT(w.channel) channel_count -- or COUNT(*) FROM web_events w JOIN accounts a ON a.id = w.account_id JOIN sales_reps s ON s.id = a.sales_rep_id JOIN region r ON r.id = s.region_id GROUP BY r.name, w.channel ORDER BY r.name, channel_count DESC; -- SELECT DISTINCE -- 1. Use DISTINCT to test if there are any accounts associated with more than one region. SELECT DISTINCT a.name account, r.name region FROM accounts a JOIN sales_reps s ON s.id = a.sales_rep_id JOIN region r ON r.id = s.region_id ORDER BY account; -- NO -- 2. Have any sales reps worked on more than one account? SELECT DISTINCT s.name rep, a.name account FROM accounts a JOIN sales_reps s ON s.id = a.sales_rep_id ORDER BY rep; -- YES -- SOLUTION IN CLASS ALSO GREAT (LESSON 2 - Agregation(21. Solution DISTINCT)) -- HAVING -- 1. How many of the sales reps have more than 5 accounts that they manage? SELECT COUNT(*) FROM ( SELECT s.name, COUNT(*) number_of_account FROM sales_reps s JOIN accounts a ON a.sales_rep_id = s.id GROUP BY s.name HAVING COUNT(*) > 5 ) AS Table1; -- 2. How many accounts have more than 20 orders? SELECT COUNT(*) FROM ( SELECT a.name, COUNT(*) number_of_orders FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name HAVING COUNT(*) > 20 ) AS Table1; -- 3. Which account has the most orders? SELECT * -- Not nescessary FROM ( SELECT a.name, COUNT(*) number_of_orders FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name HAVING COUNT(*) > 20 ) AS Table1 ORDER BY number_of_orders DESC LIMIT 1; -- Basically SELECT a.name, COUNT(*) number_of_orders FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY a.name HAVING COUNT(*) > 20 ORDER BY number_of_orders DESC LIMIT 1; -- 4. Which accounts spent more than 30,000 usd total across all orders? SELECT a.name account, SUM(o.total_amt_usd) total_spent -- RIGHT FROM accounts a JOIN orders o ON a.id = o.account_id GROUP BY a.name HAVING SUM(o.total_amt_usd) > 30000 ORDER BY SUM(o.total_amt_usd) DESC; SELECT a.name, o.total_amt_usd -- WRONG FROM orders o JOIN accounts a ON a.id = o.account_id WHERE o.total_amt_usd > 30000; -- 5. Which accounts spent less than 1,000 usd total across all orders? SELECT a.name account, SUM(o.total_amt_usd) total_spent -- RIGHT FROM accounts a JOIN orders o ON a.id = o.account_id GROUP BY a.name HAVING SUM(o.total_amt_usd) < 1000 ORDER BY SUM(o.total_amt_usd); SELECT a.name, o.total_amt_usd -- WRONG FROM orders o JOIN accounts a ON a.id = o.account_id WHERE o.total_amt_usd < 1000; -- 6. Which account has spent the most with us? SELECT a.name account, SUM(o.total_amt_usd) total_spent -- RIGHT FROM accounts a JOIN orders o ON a.id = o.account_id GROUP BY a.name ORDER BY SUM(o.total_amt_usd) DESC LIMIT 1; SELECT a.name, o.total_amt_usd -- WRONG FROM orders o JOIN accounts a ON a.id = o.account_id ORDER BY o.total_amt_usd DESC LIMIT 1; -- 7. Which account has spent the least with us? SELECT a.name account, SUM(o.total_amt_usd) total_spent -- RIGHT FROM accounts a JOIN orders o ON a.id = o.account_id GROUP BY a.name ORDER BY SUM(o.total_amt_usd) LIMIT 1; SELECT a.name, o.total_amt_usd FROM orders o JOIN accounts a ON a.id = o.account_id ORDER BY o.total_amt_usd LIMIT 1; -- Produced zero SELECT a.name, o.total_amt_usd -- One with an actual ammount spent FROM orders o JOIN accounts a ON a.id = o.account_id WHERE o.total_amt_usd > 0 ORDER BY o.total_amt_usd LIMIT 1; -- 8. Which accounts used facebook as a channel to contact customers more than 6 times? SELECT a.name, COUNT(*) FROM accounts a JOIN web_events w ON a.id = w.account_id GROUP BY a.name, w.channel HAVING w.channel = 'facebook' AND COUNT(*) > 6; -- 9. Which account used facebook most as a channel? SELECT a.name, COUNT(*) FROM accounts a JOIN web_events w ON a.id = w.account_id GROUP BY a.name, w.channel HAVING w.channel = 'facebook' ORDER BY COUNT(*) DESC LIMIT 1; -- 10. Which channel was most frequently used by most accounts? SELECT w.channel, COUNT(*) FROM accounts a JOIN web_events w ON a.id = w.account_id GROUP BY w.channel ORDER BY COUNT(*) DESC LIMIT 1; -- CHECK CLASS SOLUTION AS WELL -- WORKING WITH DATES -- So using the DATE_PART(date, 'dow') actually gives the day of the week so we can know if an event happened on Sunday or Monday -- from the events timestamp, amazing. -- 1. Find the sales in terms of total dollars for all orders in each year, ordered from greatest to least. -- Do you notice any trends in the yearly sales totals? SELECT DATE_TRUNC('year', occurred_at) sales_year, SUM(total_amt_usd) total_dollars FROM orders GROUP BY 1 ORDER BY 2 DESC; -- A trend noticed was that the sales where increase with time, probably in the 1st quater of the year 2017 hence the small sales SELECT DATE_TRUNC('year', occurred_at) AS sales_year, MIN(occurred_at) date_of_first_transaction, MAX(occurred_at) date_of_last_transaction, SUM(total_amt_usd) total_sales_usd FROM orders GROUP BY 1 ORDER BY 2 DESC; -- Shows better information on the second part of the question -- 2. Which month did Parch & Posey have the greatest sales in terms of total dollars? Are all months evenly represented by the dataset? -- A part SELECT DATE_PART('month', occurred_at) sales_month, SUM(total_amt_usd) total_sales_usd FROM orders GROUP BY 1 ORDER BY 2 DESC; -- B part (Seems to be evenly distributed) SELECT DATE_TRUNC('month', occurred_at) sales_month, SUM(total_amt_usd) total_sales_usd FROM orders WHERE DATE_PART('month', DATE_TRUNC('month', occurred_at)) = 1 GROUP BY 1 ORDER BY 2 DESC; -- From the video, because of uneven data in the year 2013 and 2017, we remove the both of them SELECT DATE_PART('month', occurred_at) ord_month, SUM(total_amt_usd) total_spent FROM orders WHERE occurred_at BETWEEN '2014-01-01' AND '2017-01-01' GROUP BY 1 ORDER BY 2 DESC; -- 3. Which year did Parch & Posey have the greatest sales in terms of total number of orders? Are all years evenly represented by the dataset? SELECT DATE_TRUNC('year', occurred_at) sales_year, SUM(total) total_sales FROM orders GROUP BY 1 ORDER BY 2 DESC; -- For the second part of the question, it looks so to me. But lets for understand what it means to be evenly represented -- Again, 2016 by far has the most amount of orders, but again 2013 and 2017 are not evenly represented to the other years in the dataset. -- 4. Which month did Parch & Posey have the greatest sales in terms of total number of orders? Are all months evenly represented by the dataset? SELECT DATE_PART('month', occurred_at) sales_month, SUM(total) total_sales FROM orders GROUP BY 1 ORDER BY 2 DESC; -- To make a fair comparison from one month to another 2017 and 2013 data were removed. SELECT DATE_PART('month', occurred_at) ord_month, COUNT(*) total_sales FROM orders WHERE occurred_at BETWEEN '2014-01-01' AND '2017-01-01' GROUP BY 1 ORDER BY 2 DESC; -- 5. In which month of which year did Walmart spend the most on gloss paper in terms of dollars? SELECT DATE_TRUNC('month', o.occurred_at) sales_month, SUM(o.gloss_amt_usd) total_sales FROM orders o JOIN accounts a ON o.account_id = a.id WHERE a.name = 'Walmart' GROUP BY 1 ORDER BY 2 DESC; -- CASE -- 1. Write a query to display for each order, the account ID, total amount of the order, and the level of the order - ‘Large’ or ’Small’ - depending -- on if the order is $3000 or more, or smaller than $3000. SELECT account_id, total_amt_usd, CASE WHEN total_amt_usd > 3000 THEN 'Large' ELSE 'Small' END AS order_level FROM orders; -- 2. Write a query to display the number of orders in each of three categories, based on the total number of items in each order. The three categories -- are: 'At Least 2000', 'Between 1000 and 2000' and 'Less than 1000' SELECT CASE WHEN total >= 2000 THEN 'Atleast 2000' WHEN total < 2000 AND total >= 1000 THEN 'Between 2000 and 1000' ELSE 'Less than 1000' END AS order_category, COUNT(*) number_of_orders FROM orders GROUP BY 1; -- 3. We would like to understand 3 different levels of customers based on the amount associated with their purchases. The top level includes -- anyone with a Lifetime Value (total sales of all orders) greater than 200,000 usd. The second level is between 200,000 and 100,000 usd. -- The lowest level is anyone under 100,000 usd. Provide a table that includes the level associated with each account. You should provide -- the account name, the total sales of all orders for the customer, and the level. Order with the top spending customers listed first. SELECT a.name account, SUM(o.total_amt_usd) total_sales, CASE WHEN SUM(o.total_amt_usd) > 200000 THEN 'top' WHEN SUM(o.total_amt_usd) > 100000 THEN 'middle' ELSE 'low' END AS order_level FROM orders o JOIN accounts a ON a.id = o.account_id GROUP BY 1 ORDER BY 2 DESC; -- 4. We would now like to perform a similar calculation to the first, but we want to obtain the total amount spent by customers only in 2016 -- and 2017. Keep the same levels as in the previous question. Order with the top spending customers listed first. SELECT DATE_PART('year', occurred_at) sales_year, a.name account, SUM(o.total_amt_usd) total_sales, CASE WHEN SUM(o.total_amt_usd) > 200000 THEN 'top' WHEN SUM(o.total_amt_usd) > 100000 THEN 'middle' ELSE 'low' END AS order_level FROM orders o JOIN accounts a ON a.id = o.account_id WHERE DATE_PART('year', occurred_at) IN (2016, 2017) GROUP BY 1, 2 ORDER BY 3 DESC; -- LESSON SOLUTION SELECT a.name, SUM(total_amt_usd) total_spent, CASE WHEN SUM(total_amt_usd) > 200000 THEN 'top' WHEN SUM(total_amt_usd) > 100000 THEN 'middle' ELSE 'low' END AS customer_level FROM orders o JOIN accounts a ON o.account_id = a.id WHERE occurred_at > '2015-12-31' GROUP BY 1 ORDER BY 2 DESC; -- 5. We would like to identify top performing sales reps, which are sales reps associated with more than 200 orders. Create a table with -- the sales rep name, the total number of orders, and a column with top or not depending on if they have more than 200 orders. Place the -- top sales people first in your final table. SELECT s.name rep, COUNT(*) number_of_orders, CASE WHEN COUNT(*) > 200 THEN 'top' ELSE 'not' END AS performance FROM orders o JOIN accounts a ON a.id = o.account_id JOIN sales_reps s ON a.sales_rep_id = s.id GROUP BY 1 ORDER BY 2 DESC; -- 6. The previous didn't account for the middle, nor the dollar amount associated with the sales. Management decides they want to see these -- characteristics represented as well. We would like to identify top performing sales reps, which are sales reps associated with more than -- 200 orders or more than 750000 in total sales. The middle group has any rep with more than 150 orders or 500000 in sales. Create a table -- with the sales rep name, the total number of orders, total sales across all orders, and a column with top, middle, or low depending on -- this criteria. Place the top sales people based on dollar amount of sales first in your final table. You might see a few upset sales -- people by this criteria! SELECT s.name rep, COUNT(*) number_of_orders, SUM(o.total_amt_usd) total_sales, CASE WHEN COUNT(*) > 200 OR SUM(o.total_amt_usd) > 750000 THEN 'top' WHEN COUNT(*) > 150 OR SUM(o.total_amt_usd) > 500000 THEN 'middle' ELSE 'low' END AS performance FROM orders o JOIN accounts a ON a.id = o.account_id JOIN sales_reps s ON a.sales_rep_id = s.id GROUP BY 1 ORDER BY 3 DESC; -- THERE IS A FUNCTION COUNT(DISTINCT column)
CREATE TABLE d3_user ( id int(11) NOT NULL AUTO_INCREMENT, ip_number VARCHAR(50) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE d3_admin ( id int(11) NOT NULL AUTO_INCREMENT, name CHARACTER(30) NOT NULL, password VARCHAR(20) NOT NULL, date TIMESTAMP NOT NULL, PRIMARY KEY (id) );
DROP TABLE IF EXISTS mail_folder_matrix CASCADE; -- CASCADE will drop all references to this table CREATE TABLE mail_folder_matrix ( creation timestamp WITH TIME ZONE NOT NULL DEFAULT now(), profile_id bigint NOT NULL REFERENCES profile_profiles (id) ON DELETE CASCADE ON UPDATE CASCADE, folder_counter_id bigint NOT NULL, -- Delay Reference Check Until After Table Creation from_profile_id bigint NOT NULL REFERENCES profile_profiles (id) ON DELETE CASCADE ON UPDATE CASCADE, from_counter_id bigint NOT NULL, active bool DEFAULT 't', FOREIGN KEY (profile_id, folder_counter_id) REFERENCES mail_folder_folders(profile_id, counter) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE, FOREIGN KEY (from_profile_id, from_counter_id) REFERENCES mail_mails(profile_id, counter) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE ); CREATE UNIQUE INDEX mail_folder_matrix_profile_folder_from_counter_x ON mail_folder_matrix (profile_id, folder_counter_id, from_profile_id, from_counter_id); --CREATE INDEX mail_folder_matrix_profile_folder_counter_x ON mail_folder_matrix (profile_id, folder_counter_id); ALTER TABLE public.mail_folder_matrix OWNER TO vmdbuser; --Update the mail_folder_folders total_mail_count field on inserts and deletes --CREATE TRIGGER "mail_folder_matrix_total_count_trigger" AFTER INSERT OR UPDATE OR DELETE ON "mail_folder_matrix" FOR EACH ROW EXECUTE PROCEDURE "update_total_count" ('mail_folder_folders', 'total_mail_count', 'false', 'profile_id', 'profile_id', 'counter', 'folder_counter_id'); ----------------------------------------------------------------------------------------------------
select *from tb_instrumento; select *from tb_tecnico_servico; use bdlamel; insert into tb_instrumento values(11, 2233, "padrão2", "fab2", "mod2", "noserie2", 11, 2, "energia"); insert into tb_tecnico values(2, "Rodrigo Ribeiro", "05620744736", "0201206760", "Detran", "6797", "1510-5", null, null, null, null, null, null); insert into tb_usuarios values (null, 'Rodrigo Rodrigues Nascimento Zampilis', 'rrzampilis', md5('rrzampilis')); insert into tb_usuarios values (null, 'Rodrigo', 'rsribeiro', md5('rsribeiro')); select count(mes) from tb_dias_inuteis where mes = '2'; select * from tb_usuarios; select * from tb_cliente; SELECT cod_instr from tb_instrumento where num_serie_instr = '13'; select *from tb_contato; select *from tb_endereco_cliente; select *from tb_telefone_contato; select *from tb_instrumento; select *from tb_faixa_instr; select *from tb_acessorio_item; select *from tb_tecnico; select *from tb_endereco_tecnico; select *from tb_telefone_tecnico; select *from tb_servicos; select * from tb_padrao; select * from tb_dias_inuteis; select *from tb_solicitacao; select *from tb_agendamento; select *from tb_calibracao; select *from tb_reg_med; select cod_instr, cod_samci from tb_instrumento where num_serie_instr = 432; insert into tb_padrao_temp values (null, '2017-05-01', 6, 'temperatura', 'MTH-1380', '138000212', 3, -11, 0.05); insert into tb_reg_med values(null, 1, 1, 1, 12, 60, 120, 5, 1, '2017-05-01', 0.001, 0.002, 0.003, 25.3, 25.4, 26.4); insert into tb_dias_inuteis values('02','01','2017'); 01-Jan-2017 27-Feb-2017 28-Feb-2017 14-Apr-2017 16-Apr-2017 21-Apr-2017 01-May-2017 13-Jun-2017 15-Jun-2017 07-Sep-2017 12-Oct-2017 02-Nov-2017 15-Nov-2017 25-Dec-2017; SELECT prazo, cod_serv, dt_inicio_servico, num_processo, tipo_instr from tb_solicitacao as a inner join tb_agendamento as b on ( a.cod_solicitacao = b.cod_solicitacao ) inner join tb_instrumento as c on (b.cod_instr = c.cod_instr) where dt_inicio_servico between '2017-01-01' and '2017-12-31'; SELECT * from tb_cliente as a inner join tb_contato as b on (a.cod_samci = b.cod_samci) where a.cod_samci = '229'; SELECT * from tb_instrumento as a inner join tb_cliente as b on (a.cod_samci = b.cod_samci); SELECT * from tb_instrumento as a inner join tb_acessorio_item as b on (a.cod_instr = b.cod_instr); SELECT * from tb_instrumento where cod_samci = 229;
SELECT OWNER ,TABLE_NAME ,COLUMN_NAME ,COLUMN_ID ,DATA_TYPE FROM ALL_TAB_COLUMNS WHERE OWNER='A01YOSOKU' AND TABLE_NAME='数理Vレート_健康還付_V基礎'
CREATE TEMPORARY TABLE IF NOT EXISTS tempFacturasTotal AS ( SELECT f.nroFactura, SUM(fm.cantidad * fm.precio) AS total FROM facturas f INNER JOIN facturas_maestra fm ON fm.nro_factura = f.nroFactura GROUP BY nroFactura); UPDATE facturas f SET total = (SELECT total FROM tempFacturasTotal tf WHERE tf.nroFactura = f.nroFactura)
INSERT INTO core_available_taxes(myid,mykatastima,title,taxpercentage) VALUES (1,:mykatastima,'24%',24);
set serveroutput on size 10000 set pagesi 0 linesize 200 trims on recsepchar "-" define input_query='&1' exec print_table('&input_query');
SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION >120000;
 ALTER TABLE PromotionsRecordsEmployees ADD ByExamResult decimal(5,2) null INSERT INTO PromotionsRecordsActionsTypes (PromotionActionTypeID, PromotionActionTypeName) VALUES (19 , N'تعديل درجة الإختبار التحصيلي') INSERT INTO PromotionsRecordsActionsTypes (PromotionActionTypeID, PromotionActionTypeName) VALUES (20 , N'حذف درجات الإختبار التحصيلي ')
-- -------------------------------------------------------- -- Host: 127.0.0.1 -- Server version: 10.2.6-MariaDB - mariadb.org binary distribution -- Server OS: Win64 -- HeidiSQL Version: 9.4.0.5125 -- -------------------------------------------------------- CREATE OR REPLACE VIEW `vw_merged_work_order_eis` AS SELECT 'EIS' AS 'asset_code' , 'MAP1' AS 'facility_code' , `functional_loc` , `description` , `order_type` , `Order` , `maint_activ_type` , `description_4` , `planner_group` , `main_work_ctr` , `user_status` , `system_status` , `Priority` , `estimated_costs` , `total_act_costs` , `total_settlemt` , `total_plnnd_costs` , `tot_sum_plan` , `total_rev_act` , `tot_plan_rev` , `tot_sum_actual` , `abc_indic` , `reference_date` , `ref_element_pm_ps` , `address_number` , `reference_time` , `changed_on` , `changed_by` , `available_to` , `avail_to_time` , `asset` , `sub_number` , `available_from` , `available_from30` , `system_condition` , `work_center` , `priority_type` , `res_purc_req` , `subnet_work_of` , `order_category` , `plant_wk_cntr` , `assembly` , `assembly_desc` , `plant_section` , `acctg_indicator` , `po_date` , `po_number` , `company_code` , `city` , `district` , `country` , `device_data` , `sort_field` , `description_50` , `equipment` , `created_on` , `entered_by` , `billingform` , `actual_release` , `actual_finish` , `actual_finish1` , `basic_fin_date` , `sched_finish` , `basic_fin_time` , `finish_time` , `business_area` , `actual_start` , `bas_start_date` , `sched_start` , `actual_start1` , `start_time` , `sched_start_time` , `hist_fr` , `planning_plant` , `costing_sheet` , `sales_document` , `item` , `co_Area` , `cost_center` , `resp_cost_cntr` , `customer` , `leading_order` , `deletion_flag` , `long_txt_exists` , `description_81` , `superior_order` , `base_unit` , `quantity` , `room` , `list_name` , `object_number` , `paging_status` , `pgrp_task_list` , `order_plan_ind` , `group_counter` , `group` , `postal_code` , `profit_center` , `priority_95` , `wbs_element` , `wbs_ord_header` , `notification` , `region` , `revision` , `serial_number` , `material` , `service_product` , `service_product_104` , `division` , `division_sales` , `location` , `street` , `maint_plant` , `telephone` , `sales_office` , `sales_group` , `sales_org` , `sales_org_sales` , `superior_act` , `distr_channel` , `distr_channel_sal` , `currency` , `maint_item` , `maintenance_plan` , `plant` , `comp` , `overhead_key` , `earlst_allow_fin_dat` , `earl_allow_start_dat` , `latest_allow_fin_dat` , `original_due_date` , `object_list` , `catalog_type` , `code_group` , `coding` FROM `barrier_ods`.`work_order_eis_map1` WHERE `current_flag`=1 UNION ALL SELECT 'EIS' AS 'asset_code' , 'MCP1' AS 'facility_code' , `functional_loc` , `description` , `order_type` , `Order` , `maint_activ_type` , `description_4` , `planner_group` , `main_work_ctr` , `user_status` , `system_status` , `Priority` , `estimated_costs` , `total_act_costs` , `total_settlemt` , `total_plnnd_costs` , `tot_sum_plan` , `total_rev_act` , `tot_plan_rev` , `tot_sum_actual` , `abc_indic` , `reference_date` , `ref_element_pm_ps` , `address_number` , `reference_time` , `changed_on` , `changed_by` , `available_to` , `avail_to_time` , `asset` , `sub_number` , `available_from` , `available_from30` , `system_condition` , `work_center` , `priority_type` , `res_purc_req` , `subnet_work_of` , `order_category` , `plant_wk_cntr` , `assembly` , `assembly_desc` , `plant_section` , `acctg_indicator` , `po_date` , `po_number` , `company_code` , `city` , `district` , `country` , `device_data` , `sort_field` , `description_50` , `equipment` , `created_on` , `entered_by` , `billingform` , `actual_release` , `actual_finish` , `actual_finish1` , `basic_fin_date` , `sched_finish` , `basic_fin_time` , `finish_time` , `business_area` , `actual_start` , `bas_start_date` , `sched_start` , `actual_start1` , `start_time` , `sched_start_time` , `hist_fr` , `planning_plant` , `costing_sheet` , `sales_document` , `item` , `co_Area` , `cost_center` , `resp_cost_cntr` , `customer` , `leading_order` , `deletion_flag` , `long_txt_exists` , `description_81` , `superior_order` , `base_unit` , `quantity` , `room` , `list_name` , `object_number` , `paging_status` , `pgrp_task_list` , `order_plan_ind` , `group_counter` , `group` , `postal_code` , `profit_center` , `priority_95` , `wbs_element` , `wbs_ord_header` , `notification` , `region` , `revision` , `serial_number` , `material` , `service_product` , `service_product_104` , `division` , `division_sales` , `location` , `street` , `maint_plant` , `telephone` , `sales_office` , `sales_group` , `sales_org` , `sales_org_sales` , `superior_act` , `distr_channel` , `distr_channel_sal` , `currency` , `maint_item` , `maintenance_plan` , `plant` , `comp` , `overhead_key` , `earlst_allow_fin_dat` , `earl_allow_start_dat` , `latest_allow_fin_dat` , `original_due_date` , `object_list` , `catalog_type` , `code_group` , `coding` FROM `barrier_ods`.`work_order_eis_mcp1` WHERE `current_flag`=1 UNION ALL SELECT 'EIS' AS 'asset_code' , 'MDP1' AS 'facility_code' , `functional_loc` , `description` , `order_type` , `Order` , `maint_activ_type` , `description_4` , `planner_group` , `main_work_ctr` , `user_status` , `system_status` , `Priority` , `estimated_costs` , `total_act_costs` , `total_settlemt` , `total_plnnd_costs` , `tot_sum_plan` , `total_rev_act` , `tot_plan_rev` , `tot_sum_actual` , `abc_indic` , `reference_date` , `ref_element_pm_ps` , `address_number` , `reference_time` , `changed_on` , `changed_by` , `available_to` , `avail_to_time` , `asset` , `sub_number` , `available_from` , `available_from30` , `system_condition` , `work_center` , `priority_type` , `res_purc_req` , `subnet_work_of` , `order_category` , `plant_wk_cntr` , `assembly` , `assembly_desc` , `plant_section` , `acctg_indicator` , `po_date` , `po_number` , `company_code` , `city` , `district` , `country` , `device_data` , `sort_field` , `description_50` , `equipment` , `created_on` , `entered_by` , `billingform` , `actual_release` , `actual_finish` , `actual_finish1` , `basic_fin_date` , `sched_finish` , `basic_fin_time` , `finish_time` , `business_area` , `actual_start` , `bas_start_date` , `sched_start` , `actual_start1` , `start_time` , `sched_start_time` , `hist_fr` , `planning_plant` , `costing_sheet` , `sales_document` , `item` , `co_Area` , `cost_center` , `resp_cost_cntr` , `customer` , `leading_order` , `deletion_flag` , `long_txt_exists` , `description_81` , `superior_order` , `base_unit` , `quantity` , `room` , `list_name` , `object_number` , `paging_status` , `pgrp_task_list` , `order_plan_ind` , `group_counter` , `group` , `postal_code` , `profit_center` , `priority_95` , `wbs_element` , `wbs_ord_header` , `notification` , `region` , `revision` , `serial_number` , `material` , `service_product` , `service_product_104` , `division` , `division_sales` , `location` , `street` , `maint_plant` , `telephone` , `sales_office` , `sales_group` , `sales_org` , `sales_org_sales` , `superior_act` , `distr_channel` , `distr_channel_sal` , `currency` , `maint_item` , `maintenance_plan` , `plant` , `comp` , `overhead_key` , `earlst_allow_fin_dat` , `earl_allow_start_dat` , `latest_allow_fin_dat` , `original_due_date` , `object_list` , `catalog_type` , `code_group` , `coding` FROM `barrier_ods`.`work_order_eis_mdp1` WHERE `current_flag`=1 ; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
UPDATE crppcontacts_contact SET first_name = trim(substring(name from 0 for position(' ' in name))), last_name = trim(substring(name from position(' ' in name)+1 for char_length(name))) WHERE trim(first_name) = '';
select * from t_user join t_order on t_user.id=t_order.id;
select "firstName", "lastName", sum("payments"."amount") as "total payment" from "customers" join "payments" using ("customerId") group by "customerId" order by "total payment" desc;
-- phpMyAdmin SQL Dump -- version 4.5.4.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 16, 2021 at 11:00 PM -- Server version: 5.7.11 -- PHP Version: 7.0.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `catalogueproduits` -- -- -------------------------------------------------------- -- -- Table structure for table `categorie` -- CREATE TABLE `categorie` ( `idCategorie` int(11) NOT NULL, `nomCategorie` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `categorie` -- INSERT INTO `categorie` (`idCategorie`, `nomCategorie`) VALUES (1, 'Smartphone'), (2, 'Laptop'), (3, 'Tablet'); -- -------------------------------------------------------- -- -- Table structure for table `produit` -- CREATE TABLE `produit` ( `idProduit` varchar(11) NOT NULL, `nomProduit` varchar(50) NOT NULL, `prix` double NOT NULL, `quantite` int(11) NOT NULL, `idCategorie` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `produit` -- INSERT INTO `produit` (`idProduit`, `nomProduit`, `prix`, `quantite`, `idCategorie`) VALUES ('S1', 'Samsung S21 Ultra', 1200, 150, 1), ('S2', 'OnePlus 9', 850, 200, 1), ('S3', 'iPhone 12 Max', 1500, 100, 1), ('L1', 'MSI GF75', 1600, 80, 2), ('L2', 'Acer Predator Helios 300', 1800, 50, 2), ('T1', 'iPad Air 3', 650, 450, 3), ('T2', 'Microsoft Surface Pro', 950, 75, 3), ('T3', 'Tab S7+', 650, 120, 3); -- -- Indexes for dumped tables -- -- -- Indexes for table `categorie` -- ALTER TABLE `categorie` ADD PRIMARY KEY (`idCategorie`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `categorie` -- ALTER TABLE `categorie` MODIFY `idCategorie` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Create PROCEDURE spr_list_grn_items(@GRNID int) AS Begin SELECT 1, "Item Code" = GRNDetail.Product_Code, "Item Name" = Items.ProductName, "Received" = (Sum(GRNDetail.QuantityReceived) + Sum(IsNull(FreeQty, 0))), "Rejected" = Sum(GRNDetail.QuantityRejected), "Reason" = RejectionReason.Message, "Batch" = NULL, "Expiry" = NULL, "PKD" = NULL, "PFM" = NULL, "Net PTS" = NULL, "Original PTS" = NULL, "PTR" = NULL, "ECP" = NULL, "MRPPerPack" = NULL, "Special Price" = NULL FROM GRNDetail Inner Join Items On GRNDetail.Product_Code = Items.Product_Code Left Outer Join RejectionReason On GRNDetail.ReasonRejected = RejectionReason.MessageID WHERE GRNID = @GRNID GROUP BY GRNDetail.Product_Code, Items.ProductName, RejectionReason.Message UNION ALL SELECT 2, Batch_Products.Product_Code, Items.ProductName, Sum(Batch_Products.QuantityReceived), NULL, "Reason" = NULL, Batch_Products.Batch_Number, Batch_Products.Expiry, Batch_Products.PKD, Isnull(Batch_Products.PFM, 0), Isnull(Batch_Products.PFM, 0), isnull(Batch_Products.OrgPTS, 0), ISNULL(Batch_Products.PTR, 0), ISNULL(Batch_Products.ECP, 0), ISNULL(Batch_Products.MRPPerPack, 0), ISNULL(Batch_Products.Company_Price, 0) FROM Batch_Products, Items, ItemCategories WHERE Batch_Products.GRN_ID = @GRNID AND Batch_Products.Product_Code = Items.Product_Code AND ItemCategories.CategoryID = Items.CategoryID AND (Items.Track_Batches = 1 OR ItemCategories.Price_Option = 1) AND Batch_Products.QuantityReceived > 0 GROUP BY Batch_Products.Product_Code, Items.ProductName, Batch_Products.Batch_Number, Batch_Products.Expiry, Batch_Products.PKD,Batch_Products.PFM, Batch_Products.PTS,Batch_Products.OrgPTS, Batch_Products.PTR, Batch_Products.ECP, Batch_Products.MRPPerPack,Batch_Products.Company_Price ORDER BY Items.ProductName, Batch End
-- 商家表tb_Merchant CREATE TABLE tb_Merchant ( Mno VARCHAR(30) NOT NULL, Mpassword VARCHAR(30) NOT NULL, Mname VARCHAR(30) NOT NULL, Mtel VARCHAR(30) NOT NULL, PRIMARY KEY(Mno) ); -- 顾客表tb_Customer CREATE TABLE tb_Customer ( Cno VARCHAR(30) NOT NULL, Cpassword VARCHAR(30) NOT NULL, Cname VARCHAR(30) NOT NULL, Csex VARCHAR(30) CHECK(Csex IN('男','女')), Ctel VARCHAR(30), Caddress VARCHAR(300) , Cbalance Float(2) NOT NULL CHECK(Cbalance >= 0), PRIMARY KEY(Cno) ); -- 店铺表tb_Shop CREATE TABLE tb_Shop ( Sno VARCHAR(30) NOT NULL, Sname VARCHAR(30) NOT NULL, Stype VARCHAR(30) NOT NULL, Saddress VARCHAR(300) NOT NULL, PRIMARY KEY(Sno) ); -- 商品信息表tb_Goods CREATE TABLE tb_Goods ( Gno VARCHAR(30) NOT NULL, Gname VARCHAR(30) , Gtype VARCHAR(30) NOT NULL, Gconcrete_type VARCHAR(30) NOT NULL, Gprice FLOAT NOT NULL CHECK(Gprice >= 0), Gmessage VARCHAR(400) NOT NULL, Gimage VARCHAR(200) NOT NULL, PRIMARY KEY(Gno) ); -- 店铺库存表tb_Stock(一种商品只能放在一个店铺里) CREATE TABLE tb_Stock ( Gno VARCHAR(30) NOT NULL, Sno VARCHAR(30) NOT NULL, STnum INT NOT NULL CHECK(STnum >= 0), STsales_num INT NOT NULL CHECK(STsales_num >= 0), PRIMARY KEY(Gno), FOREIGN KEY (Sno) REFERENCES tb_Shop(Sno), FOREIGN KEY (Gno) REFERENCES tb_Goods(Gno) ); -- 订单总表tb_Order CREATE TABLE tb_Order ( Ono VARCHAR(30) NOT NULL, Cno VARCHAR(30) NOT NULL, Otime_create TIMESTAMP NOT NULL, Otime_complete TIMESTAMP, Ostatus VARCHAR(30) NOT NULL, Oprice FLOAT(2) NOT NULL CHECK(Oprice >= 0), PRIMARY KEY(Ono), FOREIGN KEY (Cno) REFERENCES tb_Customer(Cno) ); -- 订单明细表tb_ODetails CREATE TABLE tb_ODetails ( ODno VARCHAR(30) NOT NULL, Ono VARCHAR(30) NOT NULL, Gno VARCHAR(30) NOT NULL, ODnum INT NOT NULL CHECK(ODnum > 0), ODprice FLOAT NOT NULL CHECK(ODprice >= 0), PRIMARY KEY(ODno), FOREIGN KEY (Ono) REFERENCES tb_Order(Ono), FOREIGN KEY (Gno) REFERENCES tb_Goods(Gno) ); -- 购物车表tb_ShoopingCart CREATE TABLE tb_ShoppingCart ( SCno VARCHAR(30) NOT NULL, Cno VARCHAR(30) NOT NULL, PRIMARY KEY(SCno), FOREIGN KEY (Cno) REFERENCES tb_Customer(Cno) ); -- 购物车明细表tb_SCDetails CREATE TABLE tb_SCDetails ( SCDno VARCHAR(30) NOT NULL, SCno VARCHAR(30) NOT NULL, Gno VARCHAR(30) NOT NULL, SCDnum INT NOT NULL CHECK(SCDnum > 0), PRIMARY KEY(SCDno), FOREIGN KEY (SCno) REFERENCES tb_ShoppingCart(SCno), FOREIGN KEY (Gno) REFERENCES tb_Goods(Gno) );
# --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table weather ( id bigint not null, title varchar(255), constraint pk_weather primary key (id)) ; create sequence weather_seq; # --- !Downs SET REFERENTIAL_INTEGRITY FALSE; drop table if exists weather; SET REFERENTIAL_INTEGRITY TRUE; drop sequence if exists weather_seq;
/* SQLyog Ultimate v8.61 MySQL - 5.5.5-10.1.10-MariaDB-log : Database - simak_cs ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`simak_cs` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `simak_cs`; /*Table structure for table `admin` */ DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `id_admin` tinyint(4) NOT NULL AUTO_INCREMENT, `nama_admin` varchar(30) DEFAULT NULL, `username` varchar(15) DEFAULT NULL, `password` varchar(32) DEFAULT NULL, `tgl_gabung` datetime DEFAULT NULL, PRIMARY KEY (`id_admin`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `admin` */ insert into `admin`(`id_admin`,`nama_admin`,`username`,`password`,`tgl_gabung`) values (1,'Reroet','reroet','628a98554d657ca8aa0577b07d56b602','2016-05-28 14:56:45'); /*Table structure for table `agama` */ DROP TABLE IF EXISTS `agama`; CREATE TABLE `agama` ( `id_agama` tinyint(2) NOT NULL AUTO_INCREMENT, `nama_agama` varchar(17) DEFAULT NULL, PRIMARY KEY (`id_agama`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*Data for the table `agama` */ insert into `agama`(`id_agama`,`nama_agama`) values (1,'Buddha'),(2,'Hindu'),(3,'Islam'),(4,'Kristen Protestan'),(5,'Kristen Katolik'),(6,'Konghuchu'); /*Table structure for table `alamat_calon_mahasiswa` */ DROP TABLE IF EXISTS `alamat_calon_mahasiswa`; CREATE TABLE `alamat_calon_mahasiswa` ( `no_reg` char(18) NOT NULL, `id_kewarganegaraan` smallint(4) DEFAULT NULL, `id_provinsi` smallint(4) DEFAULT NULL, `id_kabupaten` smallint(4) DEFAULT NULL, `id_kecamatan` smallint(4) DEFAULT NULL, `id_jenis_tinggal` tinyint(2) DEFAULT NULL, `nik` char(16) DEFAULT NULL, `alamat` varchar(30) DEFAULT NULL, `kelurahan` varchar(15) DEFAULT NULL, `dusun` varchar(20) DEFAULT NULL, `rt` tinyint(3) DEFAULT NULL, `rw` tinyint(3) DEFAULT NULL, `kode_pos` mediumint(5) DEFAULT NULL, `no_telp` varchar(13) DEFAULT NULL, `no_hp` varchar(13) DEFAULT NULL, `email` varchar(30) DEFAULT NULL, `kps` tinyint(1) DEFAULT NULL, `no_kps` char(32) DEFAULT NULL, PRIMARY KEY (`no_reg`), KEY `FK_kabupaten_mahasiswa` (`id_kabupaten`), KEY `FK_jenis_tinggal_mahasiswa` (`id_jenis_tinggal`), KEY `FK_kecamatan_mahasiswa` (`id_kecamatan`), KEY `FK_provinsi_mahasiswa` (`id_provinsi`), KEY `FK_warganegara_mahasiswa` (`id_kewarganegaraan`), CONSTRAINT `FK_alamat_calon_mahasiswa` FOREIGN KEY (`no_reg`) REFERENCES `biodata_calon_mahasiswa` (`no_reg`) ON UPDATE CASCADE, CONSTRAINT `FK_jenis_tinggal_mahasiswa` FOREIGN KEY (`id_jenis_tinggal`) REFERENCES `jenis_tinggal` (`id_jenis_tinggal`) ON UPDATE CASCADE, CONSTRAINT `FK_kabupaten_mahasiswa` FOREIGN KEY (`id_kabupaten`) REFERENCES `kabupaten` (`id_kabupaten`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_kecamatan_mahasiswa` FOREIGN KEY (`id_kecamatan`) REFERENCES `kecamatan` (`id_kecamatan`) ON UPDATE CASCADE, CONSTRAINT `FK_provinsi_mahasiswa` FOREIGN KEY (`id_provinsi`) REFERENCES `provinsi` (`id_provinsi`) ON UPDATE CASCADE, CONSTRAINT `FK_warganegara_mahasiswa` FOREIGN KEY (`id_kewarganegaraan`) REFERENCES `negara` (`id_negara`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `alamat_calon_mahasiswa` */ insert into `alamat_calon_mahasiswa`(`no_reg`,`id_kewarganegaraan`,`id_provinsi`,`id_kabupaten`,`id_kecamatan`,`id_jenis_tinggal`,`nik`,`alamat`,`kelurahan`,`dusun`,`rt`,`rw`,`kode_pos`,`no_telp`,`no_hp`,`email`,`kps`,`no_kps`) values ('00000001-CMHS-2016',1,1,1,1,1,'1995063005493001','Jln. Pulau Saelus 1 No. 1','Pedungan','Br. Karang Suwung',1,1,80222,'085338106836','085338106836','wayanpuguhsudarma@gmail.com',0,NULL); /*Table structure for table `biodata_calon_mahasiswa` */ DROP TABLE IF EXISTS `biodata_calon_mahasiswa`; CREATE TABLE `biodata_calon_mahasiswa` ( `no_reg` char(18) NOT NULL, `id_agama` tinyint(2) DEFAULT NULL, `id_semester` smallint(3) DEFAULT NULL, `tgl_reg` datetime DEFAULT NULL, `nama_mahasiswa` varchar(70) DEFAULT NULL, `tempat_lahir` varchar(50) DEFAULT NULL, `tanggal_lahir` date DEFAULT NULL, `jenis_kelamin` tinyint(1) DEFAULT NULL, `prodi` varchar(21) DEFAULT NULL, `asal_sma` varchar(30) DEFAULT NULL, `angkatan` smallint(4) DEFAULT NULL, PRIMARY KEY (`no_reg`), KEY `FK_agama_mahasiswa` (`id_agama`), KEY `FK_semester_mahasiswa` (`id_semester`), CONSTRAINT `FK_agama_mahasiswa` FOREIGN KEY (`id_agama`) REFERENCES `agama` (`id_agama`) ON UPDATE CASCADE, CONSTRAINT `FK_semester_mahasiswa` FOREIGN KEY (`id_semester`) REFERENCES `semester` (`id_semester`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `biodata_calon_mahasiswa` */ insert into `biodata_calon_mahasiswa`(`no_reg`,`id_agama`,`id_semester`,`tgl_reg`,`nama_mahasiswa`,`tempat_lahir`,`tanggal_lahir`,`jenis_kelamin`,`prodi`,`asal_sma`,`angkatan`) values ('00000001-CMHS-2016',1,1,'2016-05-29 09:02:42','I Wayan Reroet Kupluk','Surabaya','1995-07-23',0,'S1 Teknik Informatika','SMK TI Bali Global Denpasar',2013),('00000001-CMHS-2017',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('00000002-CMHS-2016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('00000002-CMHS-2017',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('00000003-CMHS-2016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*Table structure for table `dosen` */ DROP TABLE IF EXISTS `dosen`; CREATE TABLE `dosen` ( `nip` char(18) NOT NULL, `nama_dosen` varchar(80) DEFAULT NULL, `jabatan` varchar(30) DEFAULT NULL, PRIMARY KEY (`nip`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `dosen` */ /*Table structure for table `dosen_pembimbing` */ DROP TABLE IF EXISTS `dosen_pembimbing`; CREATE TABLE `dosen_pembimbing` ( `id_dosen_pembimbing` mediumint(9) NOT NULL AUTO_INCREMENT, `nip_dosen` char(18) DEFAULT NULL, `id_pkl` mediumint(9) DEFAULT NULL, PRIMARY KEY (`id_dosen_pembimbing`), KEY `FK_dosen_pembimbing_pkl` (`id_pkl`), KEY `FK_nip_dosen_pembimbing` (`nip_dosen`), CONSTRAINT `FK_dosen_pembimbing_pkl` FOREIGN KEY (`id_pkl`) REFERENCES `pkl` (`id_pkl`) ON UPDATE CASCADE, CONSTRAINT `FK_nip_dosen_pembimbing` FOREIGN KEY (`nip_dosen`) REFERENCES `dosen` (`nip`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `dosen_pembimbing` */ /*Table structure for table `jenis_tinggal` */ DROP TABLE IF EXISTS `jenis_tinggal`; CREATE TABLE `jenis_tinggal` ( `id_jenis_tinggal` tinyint(2) NOT NULL AUTO_INCREMENT, `nama_jenis_tinggal` varchar(20) DEFAULT NULL, PRIMARY KEY (`id_jenis_tinggal`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*Data for the table `jenis_tinggal` */ insert into `jenis_tinggal`(`id_jenis_tinggal`,`nama_jenis_tinggal`) values (1,'Kost'),(2,'Menumpang Tempat'),(3,'Bersama Orang Tua'); /*Table structure for table `kabupaten` */ DROP TABLE IF EXISTS `kabupaten`; CREATE TABLE `kabupaten` ( `id_kabupaten` smallint(4) NOT NULL AUTO_INCREMENT, `id_provinsi` smallint(4) DEFAULT NULL, `nama_kabupaten` varchar(45) DEFAULT NULL, PRIMARY KEY (`id_kabupaten`), KEY `FK_kabupaten` (`id_provinsi`), CONSTRAINT `FK_kabupaten` FOREIGN KEY (`id_provinsi`) REFERENCES `provinsi` (`id_provinsi`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `kabupaten` */ insert into `kabupaten`(`id_kabupaten`,`id_provinsi`,`nama_kabupaten`) values (1,1,'Denpasar'); /*Table structure for table `kecamatan` */ DROP TABLE IF EXISTS `kecamatan`; CREATE TABLE `kecamatan` ( `id_kecamatan` smallint(4) NOT NULL AUTO_INCREMENT, `id_kabupaten` smallint(4) DEFAULT NULL, `nama_kecamatan` varchar(40) DEFAULT NULL, PRIMARY KEY (`id_kecamatan`), KEY `FK_kecamatan` (`id_kabupaten`), CONSTRAINT `FK_kecamatan` FOREIGN KEY (`id_kabupaten`) REFERENCES `kabupaten` (`id_kabupaten`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `kecamatan` */ insert into `kecamatan`(`id_kecamatan`,`id_kabupaten`,`nama_kecamatan`) values (1,1,'Denpasar Selatan'); /*Table structure for table `mahasiswa` */ DROP TABLE IF EXISTS `mahasiswa`; CREATE TABLE `mahasiswa` ( `nim` char(10) NOT NULL, `no_reg` char(18) DEFAULT NULL, `lulus` tinyint(1) DEFAULT NULL, PRIMARY KEY (`nim`), UNIQUE KEY `jadi_mahasiswa` (`no_reg`), CONSTRAINT `FK_jadi_mahasiswa` FOREIGN KEY (`no_reg`) REFERENCES `biodata_calon_mahasiswa` (`no_reg`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `mahasiswa` */ /*Table structure for table `negara` */ DROP TABLE IF EXISTS `negara`; CREATE TABLE `negara` ( `id_negara` smallint(4) NOT NULL AUTO_INCREMENT, `nama_negara` varchar(15) DEFAULT NULL, PRIMARY KEY (`id_negara`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `negara` */ insert into `negara`(`id_negara`,`nama_negara`) values (1,'Indonesia'); /*Table structure for table `perusahaan` */ DROP TABLE IF EXISTS `perusahaan`; CREATE TABLE `perusahaan` ( `id_perusahaan` smallint(4) NOT NULL AUTO_INCREMENT, `nama_perusahaan` varchar(70) DEFAULT NULL, `alamat_perusahaan` varchar(80) DEFAULT NULL, `telepon_perusahaan` varchar(13) DEFAULT NULL, `jenis_usaha` varchar(20) DEFAULT NULL, `aktif` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id_perusahaan`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `perusahaan` */ /*Table structure for table `pkl` */ DROP TABLE IF EXISTS `pkl`; CREATE TABLE `pkl` ( `id_pkl` mediumint(9) NOT NULL AUTO_INCREMENT, `nim` char(10) DEFAULT NULL, `id_semester` smallint(3) DEFAULT NULL, `id_perusahaan` smallint(4) DEFAULT NULL, `id_ketua_komisi` char(18) DEFAULT NULL, `judul_pkl` varchar(100) DEFAULT NULL, `tgl_mulai` date DEFAULT NULL, `tgl_selesai` date DEFAULT NULL, `tgl_daftar` datetime DEFAULT NULL, PRIMARY KEY (`id_pkl`), KEY `FK_mahasiswa_pkl` (`nim`), KEY `FK_semester_pkl` (`id_semester`), KEY `FK_perusahaan_tempat_pkl` (`id_perusahaan`), CONSTRAINT `FK_mahasiswa_pkl` FOREIGN KEY (`nim`) REFERENCES `mahasiswa` (`nim`) ON UPDATE CASCADE, CONSTRAINT `FK_perusahaan_tempat_pkl` FOREIGN KEY (`id_perusahaan`) REFERENCES `perusahaan` (`id_perusahaan`) ON UPDATE CASCADE, CONSTRAINT `FK_semester_pkl` FOREIGN KEY (`id_semester`) REFERENCES `semester` (`id_semester`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `pkl` */ /*Table structure for table `provinsi` */ DROP TABLE IF EXISTS `provinsi`; CREATE TABLE `provinsi` ( `id_provinsi` smallint(4) NOT NULL AUTO_INCREMENT, `id_negara` smallint(4) DEFAULT NULL, `nama_provinsi` varchar(30) DEFAULT NULL, PRIMARY KEY (`id_provinsi`), KEY `FK_provinsi` (`id_negara`), CONSTRAINT `FK_provinsi` FOREIGN KEY (`id_negara`) REFERENCES `negara` (`id_negara`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `provinsi` */ insert into `provinsi`(`id_provinsi`,`id_negara`,`nama_provinsi`) values (1,1,'Bali'); /*Table structure for table `semester` */ DROP TABLE IF EXISTS `semester`; CREATE TABLE `semester` ( `id_semester` smallint(3) NOT NULL AUTO_INCREMENT, `tahun` smallint(4) DEFAULT NULL, `tahun_ajaran` char(9) DEFAULT NULL, `semester` tinyint(1) DEFAULT NULL, `tgl_mulai` date DEFAULT NULL, `tgl_selesai` date DEFAULT NULL, `berlaku` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id_semester`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*Data for the table `semester` */ insert into `semester`(`id_semester`,`tahun`,`tahun_ajaran`,`semester`,`tgl_mulai`,`tgl_selesai`,`berlaku`) values (1,2016,'2015/2016',0,'2015-08-05','2016-01-10',1); /* Procedure structure for procedure `get_last_id` */ /*!50003 DROP PROCEDURE IF EXISTS `get_last_id` */; DELIMITER $$ /*!50003 CREATE DEFINER=`root`@`localhost` PROCEDURE `get_last_id`() BEGIN SELECT no_reg, CONCAT(SUBSTRING(no_reg, -4), SUBSTRING(no_reg, 1,8))*1 AS nomor, SUBSTRING(no_reg,-4)*1 AS tahun, SUBSTRING(no_reg,1,8)*1 AS urutan FROM biodata_calon_mahasiswa ORDER BY nomor DESC LIMIT 1; END */$$ DELIMITER ; /*Table structure for table `calon_mahasiswa` */ DROP TABLE IF EXISTS `calon_mahasiswa`; /*!50001 DROP VIEW IF EXISTS `calon_mahasiswa` */; /*!50001 DROP TABLE IF EXISTS `calon_mahasiswa` */; /*!50001 CREATE TABLE `calon_mahasiswa`( `no_reg` char(18) , `nama_mahasiswa` varchar(70) , `tgl_reg` datetime , `jenis_kelamin` tinyint(1) , `asal_sma` varchar(30) , `angkatan` smallint(4) , `alamat` varchar(30) , `no_telp` varchar(13) , `email` varchar(30) , `nomor` double )*/; /*View structure for view calon_mahasiswa */ /*!50001 DROP TABLE IF EXISTS `calon_mahasiswa` */; /*!50001 DROP VIEW IF EXISTS `calon_mahasiswa` */; /*!50001 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `calon_mahasiswa` AS (select `b`.`no_reg` AS `no_reg`,`b`.`nama_mahasiswa` AS `nama_mahasiswa`,`b`.`tgl_reg` AS `tgl_reg`,`b`.`jenis_kelamin` AS `jenis_kelamin`,`b`.`asal_sma` AS `asal_sma`,`b`.`angkatan` AS `angkatan`,`a`.`alamat` AS `alamat`,`a`.`no_telp` AS `no_telp`,`a`.`email` AS `email`,(concat(substr(`b`.`no_reg`,-(4)),substr(`b`.`no_reg`,1,8)) * 1) AS `nomor` from (`biodata_calon_mahasiswa` `b` left join `alamat_calon_mahasiswa` `a` on((`b`.`no_reg` = `a`.`no_reg`))) order by (concat(substr(`b`.`no_reg`,-(4)),substr(`b`.`no_reg`,1,8)) * 1)) */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
CREATE TABLE `dislikes` ( `id_dislikes` Int AUTO_INCREMENT NOT NULL UNIQUE, `id_usr` Int NOT NULL, `id_disliked` int(11) NOT NULL, CONSTRAINT dislikes_PK PRIMARY KEY (`id_dislikes`), CONSTRAINT dislikes_users_FK FOREIGN KEY (`id_usr`) REFERENCES users(`id_usr`) ON DELETE CASCADE );
CREATE OR REPLACE VIEW History_Previous_Counts_View AS SELECT pmh.tid_id AS tidid, pmh.interface_id as ifcid, to_char(pmh.timeentered, 'MM-DD-YYYY HH24:MI:SS') AS lasttime, to_char(pmh.timeentered, 'YYYY-MM-DD HH24:MI:SS') AS sorttime, decode( to_char(timeentered, 'MM-DD-YYYY'), to_char(SYSDATE - 1, 'MM-DD-YYYY'), '0', '86400') + to_char(timeentered, 'SSSSS') AS lasttimenumber, pmh.c1 AS c1, pmh.c2 AS c2, pmh.c3 AS c3, pmh.c4 AS c4, pmh.c5 AS c5, pmh.c6 AS c6, pmh.c7 AS c7, pmh.c8 AS c8, pmh.c9 AS c9, pmh.c10 AS c10 FROM pm_history pmh WHERE pmh.timeentered >= SYSDATE - 1 ORDER BY pmh.timeentered ; COMMIT;
/** * http://it-channel.ru/ * <p> * @author Budnikov Aleksandr */ CREATE TABLE purses ( id BIGINT AUTO_INCREMENT, ownerId BIGINT, name VARCHAR(255), currency VARCHAR(255), amount DECIMAL, PRIMARY KEY (id), FOREIGN KEY (ownerId) REFERENCES users(id) );
DROP DATABASE IF EXISTS reviews; CREATE DATABASE reviews; USE reviews; CREATE TABLE reviews ( id INT AUTO_INCREMENT NOT NULL PRIMARY KEY, prodId INT NOT NULL, rating INT NOT NULL, title TEXT, body TEXT NOT NULL, recommended BOOLEAN NOT NULL, name TEXT NOT NULL, verified BOOLEAN NOT NULL, helpfulYes INT NOT NULL, helpfulNo INT NOT NULL, date TEXT NOT NULL, dateNum INT NOT NULL, size INT NOT NULL, width INT NOT NULL, comfort INT NOT NULL, quality INT NOT NULL );
delete p1 from Person p1 join Person p2 on p1.Email = p2.Email where p1.Id > p2.Id;
create or replace PACKAGE BODY "PK_T008_PROY_ADJUNTO" is -- Funciones y Procedimientos del paquete PROCEDURE Pr_Insertar (p_A008IDPROYECTO IN GPYT_T008_PROY_ADJUNTO.A008IDPROYECTO%TYPE, p_A008IDADJNT IN GPYT_T008_PROY_ADJUNTO.A008IDADJNT%TYPE, p_A008IDARCHV IN GPYT_T008_PROY_ADJUNTO.A008IDARCHV%TYPE, p_A008NUMRRADCD IN GPYT_T008_PROY_ADJUNTO.A008NUMRRADCD%TYPE, p_A008FECHADJNT IN GPYT_T008_PROY_ADJUNTO.A008FECHADJNT%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2) IS codExcepcion NUMBER; NOMBRE_PROCEDIMIENTO VARCHAR2(50) := 'Pr_Insertar'; p_A008CODIGO NUMBER; BEGIN -- obtenemos el siguiente id p_A008CODIGO := PK_UTL_UTILIDAD.Fn_ObtenerId('T008_PROY_ADJUNTO_SEQ'); PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Entro a Pr_Insertar ' || p_A008CODIGO); -- hacemos inactivos los otros registros UPDATE GPYT_T008_PROY_ADJUNTO SET A008ESTADOREGISTRO = PK_UTL_CONSTANTE.COD_INACTIVO WHERE A008IDPROYECTO=p_A008IDPROYECTO AND A008IDADJNT=p_A008IDADJNT; INSERT INTO GPYT_T008_PROY_ADJUNTO (A008CODIGO, A008IDPROYECTO, A008IDADJNT, A008IDARCHV, A008NUMRRADCD, A008FECHADJNT, A008ESTADOREGISTRO, A008FECHACREACION, A008USUARIOCREACION) VALUES (p_A008CODIGO, p_A008IDPROYECTO, p_A008IDADJNT, p_A008IDARCHV, p_A008NUMRRADCD, TO_DATE(p_A008FECHADJNT,'YYYY-MM-DD'), PK_UTL_CONSTANTE.COD_ACTIVO, sysdate, p_idUsuario); OPEN p_resultado FOR SELECT p_A008CODIGO A008CODIGO FROM dual; p_codError := PK_UTL_CONSTANTE.COD_OPERACION_CORRECTA; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Salio de Pr_Insertar ' || p_A008CODIGO); END Pr_Insertar; PROCEDURE Pr_Eliminar (p_A008CODIGO IN GPYT_T008_PROY_ADJUNTO.A008CODIGO%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2) IS codExcepcion NUMBER; NOMBRE_PROCEDIMIENTO VARCHAR2(50) := 'Pr_Eliminar'; p_A026CODIGO NUMBER; BEGIN PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Entro a Pr_Eliminar ' || p_A008CODIGO); UPDATE GPYT_T008_PROY_ADJUNTO SET A008ESTADOREGISTRO = PK_UTL_CONSTANTE.COD_INACTIVO, A008FECHAMODIFICACION = sysdate, A008USUARIOMODIFICACION = p_idUsuario WHERE A008CODIGO = p_A008CODIGO; -- Obtenemos el identificador del archivo asociado OPEN p_resultado FOR SELECT A008IDARCHV FROM GPYT_T008_PROY_ADJUNTO WHERE A008CODIGO = p_A008CODIGO; FETCH p_resultado INTO p_A026CODIGO; -- Marcamos como eliminado el archivo asociado PK_T026_ARCHIVO.Pr_Eliminar (p_A026CODIGO => p_A026CODIGO, p_idUsuario => p_idUsuario, p_resultado => p_resultado, p_codError => p_codError, p_msjError => p_msjError); OPEN p_resultado FOR SELECT p_A008CODIGO A008CODIGO FROM dual; p_codError := PK_UTL_CONSTANTE.COD_OPERACION_CORRECTA; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Salio de Pr_Eliminar ' || p_A008CODIGO); END Pr_Eliminar; PROCEDURE Pr_Actualizar (p_A008CODIGO IN GPYT_T008_PROY_ADJUNTO.A008CODIGO%TYPE, p_A008IDPROYECTO IN GPYT_T008_PROY_ADJUNTO.A008IDPROYECTO%TYPE, p_A008IDADJNT IN GPYT_T008_PROY_ADJUNTO.A008IDADJNT%TYPE, p_A008IDARCHV IN GPYT_T008_PROY_ADJUNTO.A008IDARCHV%TYPE, p_A008NUMRRADCD IN GPYT_T008_PROY_ADJUNTO.A008NUMRRADCD%TYPE, p_A008FECHADJNT IN GPYT_T008_PROY_ADJUNTO.A008FECHADJNT%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2) IS codExcepcion NUMBER; NOMBRE_PROCEDIMIENTO VARCHAR2(50) := 'Pr_Actualizar'; numReg NUMBER; BEGIN PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Entro a Pr_Actualizar ' || p_A008CODIGO); IF p_A008CODIGO IS NULL THEN p_codError := 4; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); OPEN p_resultado FOR SELECT '' FROM dual; return; END IF; SELECT COUNT(*) INTO numReg FROM GPYT_T008_PROY_ADJUNTO WHERE A008CODIGO = p_A008CODIGO AND A008ESTADOREGISTRO = PK_UTL_CONSTANTE.COD_ACTIVO; IF numReg > 0 THEN UPDATE GPYT_T008_PROY_ADJUNTO SET A008IDPROYECTO = NVL(p_A008IDPROYECTO, A008IDPROYECTO), A008IDADJNT = NVL(p_A008IDADJNT, A008IDADJNT), A008IDARCHV = NVL(p_A008IDARCHV, A008IDARCHV), A008FECHADJNT = NVL(TO_DATE(p_A008FECHADJNT,'YYYY-MM-DD'), A008FECHADJNT), A008USUARIOMODIFICACION = p_idUsuario, A008FECHAMODIFICACION = sysdate WHERE A008CODIGO = p_A008CODIGO; OPEN p_resultado FOR SELECT p_A008CODIGO A008CODIGO FROM dual; p_codError := PK_UTL_CONSTANTE.COD_OPERACION_CORRECTA; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); return; ELSE p_codError := 5; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); OPEN p_resultado FOR SELECT '' FROM dual; return; END IF; PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Salio de Pr_Actualizar ' || p_A008CODIGO); END Pr_Actualizar; PROCEDURE Pr_ConsultarPorFiltro (p_Filtro IN VARCHAR2, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2) IS codExcepcion NUMBER; NOMBRE_PROCEDIMIENTO VARCHAR2(50) := 'Pr_ConsultarPorFiltro'; strSQL VARCHAR2(1000); p_Temp1 VARCHAR2(200); p_Temp2 VARCHAR2(200); p_Temp3 VARCHAR2(200); BEGIN PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Entro a Pr_ConsultarPorFiltro ' || p_Filtro); IF p_Filtro IS NULL THEN OPEN p_resultado FOR SELECT * FROM GPYT_T025_ADJUNTO AD LEFT JOIN GPYT_T008_PROY_ADJUNTO PA ON A008IDADJNT = A025CODIGO LEFT JOIN GPYT_T026_ARCHIVO AR ON A008IDARCHV = A026CODIGO WHERE A026ESTADOREGISTRO = PK_UTL_CONSTANTE.COD_ACTIVO; p_codError := PK_UTL_CONSTANTE.COD_OPERACION_CORRECTA; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); return; END IF; p_Temp1 := q'{ AND NVL(A008ESTADOREGISTRO,'}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{') = '}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{' }'; p_Temp2 := q'{ AND NVL(A025ESTADOREGISTRO,'}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{') = '}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{' }'; p_Temp3 := q'{ AND NVL(A026ESTADOREGISTRO,'}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{') = '}' || PK_UTL_CONSTANTE.COD_ACTIVO || q'{' }'; strSQL := 'SELECT * FROM GPYT_T025_ADJUNTO AD LEFT JOIN ( SELECT PA.*, AR.* FROM GPYT_T008_PROY_ADJUNTO PA LEFT JOIN GPYT_T026_ARCHIVO AR ON A008IDARCHV = A026CODIGO LEFT JOIN GPYT_T025_ADJUNTO AD ON A008IDADJNT = A025CODIGO WHERE ' || p_Filtro || p_Temp1 || p_Temp2 || p_Temp3 || ' ) REGISTRADOS ON A008IDADJNT = A025CODIGO WHERE ' || p_Filtro || p_Temp1 || p_Temp2 || p_Temp3 || 'ORDER BY A025CODIGO'; PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'strSQL ' || strSQL); OPEN p_resultado FOR strSQL; p_codError := PK_UTL_CONSTANTE.COD_OPERACION_CORRECTA; p_msjError := PK_UTL_UTILIDAD.Fn_ObtenerMensaje (p_codError); PK_UTL_UTILIDAD.Pr_RegistrarDebug (p_niveldebug => PK_UTL_CONSTANTE.NIVEL_TRACE, p_paquete => NOMBRE_PAQUETE, p_procedimiento => NOMBRE_PROCEDIMIENTO, p_usuario => p_idUsuario, p_descripcion => 'Salio de Pr_ConsultarPorFiltro ' || p_Filtro); END Pr_ConsultarPorFiltro; end PK_T008_PROY_ADJUNTO;
CREATE TABLE ARTICLES ( ARTICLE_ID VARCHAR(32) NOT NULL, ACCOUNT_ID VARCHAR(32) NOT NULL, SUBJECT_ID VARCHAR(32) NOT NULL, DATE_CREATE DATETIME NOT NULL, SECTION INTEGER NOT NULL, DATE_ARTICLE DATETIME NOT NULL, TITLE VARCHAR(250) NOT NULL, EXCERPT VARCHAR(1000) NOT NULL, ARTICLE_TEXT LONGBLOB, PICTURE LONGBLOB, LINK VARCHAR(250), PRIMARY KEY (ARTICLE_ID), FOREIGN KEY (ACCOUNT_ID) REFERENCES ACCOUNTS (ACCOUNT_ID), FOREIGN KEY (SUBJECT_ID) REFERENCES SUBJECTS (SUBJECT_ID) ) -- CREATE VIEW S_ARTICLES AS SELECT A.*, A1.USER_NAME, A1.SURNAME AS ACCOUNT_SURNAME, A1.NAME AS ACCOUNT_NAME, A1.PATRONYMIC AS ACCOUNT_PATRONYMIC, S.NAME AS SUBJECT_NAME FROM ARTICLES A JOIN ACCOUNTS A1 ON A1.ACCOUNT_ID=A.ACCOUNT_ID JOIN SUBJECTS S ON S.SUBJECT_ID=A.SUBJECT_ID -- CREATE PROCEDURE I_ARTICLE ( IN ARTICLE_ID VARCHAR(32), IN ACCOUNT_ID VARCHAR(32), IN SUBJECT_ID VARCHAR(32), IN DATE_CREATE DATETIME, IN SECTION INTEGER, IN DATE_ARTICLE DATETIME, IN TITLE VARCHAR(250), IN EXCERPT VARCHAR(1000), IN ARTICLE_TEXT LONGBLOB, IN PICTURE LONGBLOB, IN LINK VARCHAR(250) ) BEGIN INSERT INTO ARTICLES (ARTICLE_ID,ACCOUNT_ID,SUBJECT_ID,DATE_CREATE,SECTION, DATE_ARTICLE,TITLE,EXCERPT,ARTICLE_TEXT,PICTURE,LINK) VALUES (ARTICLE_ID,ACCOUNT_ID,SUBJECT_ID,DATE_CREATE,SECTION, DATE_ARTICLE,TITLE,EXCERPT,ARTICLE_TEXT,PICTURE,LINK); END; -- CREATE PROCEDURE U_ARTICLE ( IN ARTICLE_ID VARCHAR(32), IN ACCOUNT_ID VARCHAR(32), IN SUBJECT_ID VARCHAR(32), IN DATE_CREATE DATETIME, IN SECTION INTEGER, IN DATE_ARTICLE DATETIME, IN TITLE VARCHAR(250), IN EXCERPT VARCHAR(1000), IN ARTICLE_TEXT LONGBLOB, IN PICTURE LONGBLOB, IN LINK VARCHAR(250), IN OLD_ARTICLE_ID VARCHAR(32) ) BEGIN UPDATE ARTICLES A SET A.ARTICLE_ID=ARTICLE_ID, A.ACCOUNT_ID=ACCOUNT_ID, A.SUBJECT_ID=SUBJECT_ID, A.DATE_CREATE=DATE_CREATE, A.SECTION=SECTION, A.DATE_ARTICLE=DATE_ARTICLE, A.TITLE=TITLE, A.EXCERPT=EXCERPT, A.ARTICLE_TEXT=ARTICLE_TEXT, A.PICTURE=PICTURE, A.LINK=LINK WHERE A.ARTICLE_ID=OLD_ARTICLE_ID; END; -- CREATE PROCEDURE D_ARTICLE ( IN OLD_ARTICLE_ID VARCHAR(32) ) BEGIN DELETE FROM ARTICLES WHERE ARTICLE_ID=OLD_ARTICLE_ID; END; -- CREATE TABLE COMMENTS ( COMMENT_ID VARCHAR(32) NOT NULL, ACCOUNT_ID VARCHAR(32) NOT NULL, ARTICLE_ID VARCHAR(32) NOT NULL, PARENT_ID VARCHAR(32), DATE_COMMENT DATETIME NOT NULL, TITLE VARCHAR(250) NOT NULL, COMMENT_TEXT LONGBLOB NOT NULL, VISIBLE INTEGER NOT NULL, LEVEL INTEGER NOT NULL, PRIMARY KEY (COMMENT_ID), FOREIGN KEY (PARENT_ID) REFERENCES COMMENTS (COMMENT_ID), FOREIGN KEY (ACCOUNT_ID) REFERENCES ACCOUNTS (ACCOUNT_ID), FOREIGN KEY (ARTICLE_ID) REFERENCES ARTICLES (ARTICLE_ID) ) -- CREATE VIEW S_COMMENTS AS SELECT C.*, C1.TITLE AS PARENT_TITLE, A.USER_NAME, A.SURNAME AS ACCOUNT_SURNAME, A.NAME AS ACCOUNT_NAME, A.PATRONYMIC AS ACCOUNT_PATRONYMIC, A1.TITLE AS ARTICLE_TITLE, A1.DATE_ARTICLE FROM COMMENTS C JOIN ACCOUNTS A ON A.ACCOUNT_ID=C.ACCOUNT_ID JOIN ARTICLES A1 ON A1.ARTICLE_ID=C.ARTICLE_ID LEFT JOIN COMMENTS C1 ON C1.COMMENT_ID=C.PARENT_ID -- CREATE PROCEDURE I_COMMENT ( IN COMMENT_ID VARCHAR(32), IN ACCOUNT_ID VARCHAR(32), IN ARTICLE_ID VARCHAR(32), IN PARENT_ID VARCHAR(32), IN DATE_COMMENT DATETIME, IN TITLE VARCHAR(250), IN COMMENT_TEXT LONGBLOB, IN VISIBLE INTEGER ) BEGIN DECLARE LEVEL INTEGER; IF (PARENT_ID IS NULL) THEN SET LEVEL=1; ELSE SELECT C.LEVEL+1 INTO LEVEL FROM COMMENTS C WHERE C.COMMENT_ID=PARENT_ID; END IF; INSERT INTO COMMENTS (COMMENT_ID,ACCOUNT_ID,ARTICLE_ID,PARENT_ID,DATE_COMMENT, TITLE,COMMENT_TEXT,VISIBLE,LEVEL) VALUES (COMMENT_ID,ACCOUNT_ID,ARTICLE_ID,PARENT_ID,DATE_COMMENT, TITLE,COMMENT_TEXT,VISIBLE,LEVEL); END; -- CREATE PROCEDURE R_COMMENT_LEVELS ( IN PARENT_ID VARCHAR(32), IN LEVEL INTEGER ) BEGIN DECLARE COMMENT_ID VARCHAR(32); DECLARE DONE INTEGER DEFAULT 0; DECLARE C1 CURSOR FOR SELECT C.COMMENT_ID FROM COMMENTS C WHERE C.PARENT_ID=PARENT_ID; DECLARE CONTINUE HANDLER FOR NOT FOUND SET DONE=1; OPEN C1; FETCH C1 INTO COMMENT_ID; WHILE NOT DONE DO UPDATE COMMENT_IDS C SET C.LEVEL=LEVEL+1 WHERE C.COMMENT_ID=COMMENT_ID; CALL R_COMMENT_LEVELS(COMMENT_ID,LEVEL+1); FETCH C1 INTO COMMENT_ID; END WHILE; CLOSE C1; END; -- CREATE PROCEDURE U_COMMENT ( IN COMMENT_ID VARCHAR(32), IN ACCOUNT_ID VARCHAR(32), IN ARTICLE_ID VARCHAR(32), IN PARENT_ID VARCHAR(32), IN DATE_COMMENT DATETIME, IN TITLE VARCHAR(250), IN COMMENT_TEXT LONGBLOB, IN VISIBLE INTEGER, IN OLD_COMMENT_ID VARCHAR(32) ) BEGIN DECLARE LEVEL INTEGER; IF (PARENT_ID IS NULL) THEN SET LEVEL=1; ELSE SELECT C.LEVEL+1 INTO LEVEL FROM COMMENTS C WHERE C.COMMENT_ID=PARENT_ID; END IF; UPDATE COMMENTS C SET C.COMMENT_ID=COMMENT_ID, C.ACCOUNT_ID=ACCOUNT_ID, C.ARTICLE_ID=ARTICLE_ID, C.PARENT_ID=PARENT_ID, C.DATE_COMMENT=DATE_COMMENT, C.TITLE=TITLE, C.COMMENT_TEXT=COMMENT_TEXT, C.VISIBLE=VISIBLE, C.LEVEL=LEVEL WHERE C.COMMENT_ID=OLD_COMMENT_ID; CALL R_COMMENT_LEVELS(COMMENT_ID,LEVEL); END; -- CREATE PROCEDURE D_COMMENT ( IN OLD_COMMENT_ID VARCHAR(32) ) BEGIN DELETE FROM COMMENTS WHERE COMMENT_ID=OLD_COMMENT_ID; END; --
ALTER TABLE houses ADD $column_name $column_def [FIRST $column_name || AFTER $column_name]; ALTER TABLE houses DROP COLUMN $column_name
-- Version 1.4 -- DROP TABLE PUBLIC.REMARK IF EXISTS; CREATE TABLE PUBLIC.REMARK( ID INT GENERATED BY DEFAULT AS IDENTITY (START WITH 1) NOT NULL PRIMARY KEY, SORTING_NUMBER INT NOT NULL, ocRemark VARCHAR(255) NOT NULL ); INSERT INTO PUBLIC.SYSPARAM(KEY, VALUE) VALUES ('kitchen-printer-font-size' ,'2');
ALTER TABLE casev2.cases ADD COLUMN IF NOT EXISTS survey_launched BOOLEAN DEFAULT false not null; ALTER TABLE actionv2.cases ADD COLUMN IF NOT EXISTS survey_launched BOOLEAN DEFAULT false not null;
create table message( `id` BIGINT(20) not null auto_increment, `from_user_id` BIGINT(20) not null, `to_user_id` BIGINT(20) not null, `content` TEXT not null, `sent_at` timestamp not null default now(), primary key(id), foreign key (from_user_id) references users(id), foreign key (to_user_id) references users(id) ) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8 COLLATE = utf8_bin;
create table `chushou_image` ( `id` int unsigned not null auto_increment, `postid` int unsigned not null, `imageid` int unsigned not null, `pos` tinyint unsigned not null, PRIMARY KEY (`id`), KEY idx_postid (`postid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8
insert into gha_events_commits_files( sha, event_id, path, ext, dt, size, dup_repo_id, dup_repo_name, dup_type, dup_created_at ) select distinct sub.sha, sub.event_id, sub.path, sub.ext, sub.dt, sub.size, sub.dup_repo_id, sub.dup_repo_name, sub.dup_type, sub.dup_created_at from ( select cf.sha, c.event_id, c.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, c.dup_repo_id, c.dup_repo_name, c.dup_type, c.dup_created_at from gha_comments c, gha_commits_files cf where c.commit_id = cf.sha -- or c.original_commit_id = cf.sha union select cf.sha, r.event_id, r.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, r.dup_repo_id, r.dup_repo_name, r.dup_type, r.dup_created_at from gha_reviews r, gha_commits_files cf where r.commit_id = cf.sha union select cf.sha, c.event_id, c.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, c.dup_repo_id, c.dup_repo_name, c.dup_type, c.dup_created_at from gha_commits c, gha_commits_files cf where c.sha = cf.sha union select cf.sha, p.event_id, p.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, p.dup_repo_id, p.dup_repo_name, p.dup_type, p.dup_created_at from gha_pages p, gha_commits_files cf where p.sha = cf.sha union select cf.sha, pl.event_id, pl.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, pl.dup_repo_id, pl.dup_repo_name, pl.dup_type, pl.dup_created_at from gha_payloads pl, gha_commits_files cf where pl.dup_type in ('PushEvent') and ( pl.head = cf.sha or pl.commit = cf.sha ) union select cf.sha, pr.event_id, pr.dup_repo_name || '/' || cf.path as path, cf.ext, cf.dt, cf.size, pr.dup_repo_id, pr.dup_repo_name, pr.dup_type, pr.dup_created_at from gha_pull_requests pr, gha_commits_files cf where pr.dup_type in ('PullRequestReviewCommentEvent', 'PullRequestEvent', 'PullRequestReviewEvent') and ( pr.head_sha = cf.sha or pr.merge_commit_sha = cf.sha ) ) sub left join gha_events_commits_files ecf on sub.sha = ecf.sha and sub.path = ecf.path and sub.event_id = ecf.event_id where ecf.sha is null on conflict do nothing ;
CREATE TABLE IF NOT EXISTS `tb_backup` ( `id_backup` int(11) NOT NULL AUTO_INCREMENT, `backup_file` varchar(300) NOT NULL, `dt_backup` date NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_backup`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_barbottom` ( `id_barbottom` int(11) NOT NULL AUTO_INCREMENT, `class_name` varchar(500) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_barbottom`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_calendar_item` ( `id_calendar_item` int(11) NOT NULL AUTO_INCREMENT, `dt_event` date NOT NULL, `id_events` int(11) NOT NULL, `id_user` int(11) NOT NULL, `pathCalendar` varchar(200) NOT NULL, PRIMARY KEY (`id_calendar_item`), KEY `id_user` (`id_user`), KEY `id_events` (`id_events`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_contact` ( `id_contact` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `phone` varchar(20) NOT NULL, `email` varchar(120) NOT NULL, `image` varchar(500) DEFAULT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_contact`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_contact_list` ( `id_contact_list` int(11) NOT NULL AUTO_INCREMENT, `id_contact` int(11) DEFAULT NULL, `status` varchar(1) NOT NULL, `name` varchar(200) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_contact_list`), KEY `id_contact` (`id_contact`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_control_elements` ( `id_control_element` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `imagePath` varchar(50) NOT NULL, `id_grp_control` int(11) NOT NULL, `callFunction` varchar(100) NOT NULL, PRIMARY KEY (`id_control_element`), KEY `id_grp_control` (`id_grp_control`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; INSERT INTO `tb_control_elements` (`id_control_element`, `name`, `imagePath`, `id_grp_control`, `callFunction`) VALUES (1, 'Appearance', 'desktop_m.png', 1, 'callWindow(this,''appearance'',''callWindowAppearance'','''')'), (2, 'Gadgets', 'gadgets.png', 1, 'getControlPage(this,''getListWidgets'')'), (3, 'Start Menu', 'startmenu.png', 1, ''), (4, 'Security', 'firewall.png', 2, 'callWindow(this,''security'',''callWindowSecurity'','''')'), (5, 'Folder Options', 'folder_lock.png', 2, 'callWindow(this,''fonts_options'',''callWindowFonts_options'','''')'), (6, 'System', 'system.png', 3, 'getListControl(this, ''getSystemInfo'' ,'''','''','''');'), (7, 'Backup', 'backup.png', 2, 'getControlPage(this,''getBackupinfo'')'), (8, 'Programs', 'programs.png', 2, 'getControlPage(this,''getListPrograms'')'), (9, 'User Account', 'account.png', 2, 'getControlPage(this,''getUserInfo'')'), (10, 'Wos Update', 'update.png', 2, 'getControlPage(this,''getUpdateInfo'')'), (11, 'Languages', 'language.png', 3, 'callWindowWithParameter(this,''language'',''callWindowLanguage'','''',''system,lang_system'')'), (12, 'Fonts', 'fonts.png', 3, 'getControlPage(this,''getListFonts'')'), (13, 'Date', 'calendar.png', 3, 'callWindow(this,''sdate'',''callWindowSdate'','''')'); CREATE TABLE IF NOT EXISTS `tb_country` ( `id_country` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `abv` varchar(50) NOT NULL, `continent` varchar(30) NOT NULL, `status` varchar(1) NOT NULL, `language` varchar(5) DEFAULT NULL, PRIMARY KEY (`id_country`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=195 ; INSERT INTO `tb_country` (`id_country`, `name`, `abv`, `continent`, `status`, `language`) VALUES (1, 'Algeria', 'dz', 'africa', 'I', NULL), (2, 'Angola', 'ao', 'africa', 'I', NULL), (3, 'Benin', 'bj', 'africa', 'I', NULL), (4, 'Botswana', 'bw', 'africa', 'I', NULL), (5, 'Burkina', 'bf', 'africa', 'I', NULL), (6, 'Burundi', 'bi', 'africa', 'I', NULL), (7, 'Cameroon', 'cm', 'africa', 'I', NULL), (8, 'Cape Verde', 'cv', 'africa', 'I', NULL), (9, 'Central African Republic', 'cf', 'africa', 'I', NULL), (10, 'Chad', 'td', 'africa', 'I', NULL), (11, 'Comoros', 'km', 'africa', 'I', NULL), (12, 'Congo', 'cg', 'africa', 'I', NULL), (13, 'Congo, Democratic Republic of', 'cd', 'africa', 'I', NULL), (14, 'Djibouti', 'dj', 'africa', 'I', NULL), (15, 'Egypt', 'eg', 'africa', 'I', NULL), (16, 'Equatorial Guinea', 'gq', 'africa', 'I', NULL), (17, 'Eritrea', 'er', 'africa', 'I', NULL), (18, 'Ethiopia', 'et', 'africa', 'I', NULL), (19, 'Gabon', 'ga', 'africa', 'I', NULL), (20, 'Gambia', 'gm', 'africa', 'I', NULL), (21, 'Ghana', 'gh', 'africa', 'I', NULL), (22, 'Guinea', 'gn', 'africa', 'I', NULL), (23, 'Guinea-Bissau', 'gw', 'africa', 'I', NULL), (24, 'Ivory Coast', 'ci', 'africa', 'I', NULL), (25, 'Kenya', 'ke', 'africa', 'I', NULL), (26, 'Lesotho', 'ls', 'africa', 'I', NULL), (27, 'Liberia', 'lr', 'africa', 'I', NULL), (28, 'Libya', 'ly', 'africa', 'I', NULL), (29, 'Madagascar', 'mg', 'africa', 'I', NULL), (30, 'Malawi', 'mw', 'africa', 'I', NULL), (31, 'Mali', 'ml', 'africa', 'I', NULL), (32, 'Mauritania', 'mr', 'africa', 'I', NULL), (33, 'Mauritius', 'mu', 'africa', 'I', NULL), (34, 'Morocco', 'ma', 'africa', 'I', NULL), (35, 'Mozambique', 'mz', 'africa', 'I', NULL), (36, 'Namibia', 'na', 'africa', 'I', NULL), (37, 'Niger', 'ne', 'africa', 'I', NULL), (38, 'Nigeria', 'ng', 'africa', 'I', NULL), (39, 'Rwanda', 'rw', 'africa', 'I', NULL), (40, 'Sao Tome and Principe', 'st', 'africa', 'I', NULL), (41, 'Senegal', 'sn', 'africa', 'I', NULL), (42, 'Seychelles', 'sc', 'africa', 'I', NULL), (43, 'Sierra Leone', 'sl', 'africa', 'I', NULL), (44, 'Somalia', 'so', 'africa', 'I', NULL), (45, 'South Africa', 'za', 'africa', 'I', NULL), (46, 'South Sudan', 'ss', 'africa', 'I', NULL), (47, 'Sudan', 'sd', 'africa', 'I', NULL), (48, 'Swaziland', 'sz', 'africa', 'I', NULL), (49, 'Tanzania', 'tz', 'africa', 'I', NULL), (50, 'Togo', 'tg', 'africa', 'I', NULL), (51, 'Tunisia', 'tn', 'africa', 'I', NULL), (52, 'Uganda', 'ug', 'africa', 'I', NULL), (53, 'Zambia', 'zm', 'africa', 'I', NULL), (54, 'Zimbabwe\r\n ', 'zw', 'africa', 'I', NULL), (55, 'Afghanistan', 'af', 'asia', 'I', NULL), (56, 'Bahrain', 'bh', 'asia', 'I', NULL), (57, 'Bangladesh', 'bd', 'asia', 'I', NULL), (58, 'Bhutan', 'bt', 'asia', 'I', NULL), (59, 'Brunei', 'bn', 'asia', 'I', NULL), (60, 'Burma (Myanmar)', 'mm', 'asia', 'I', NULL), (61, 'Cambodia', 'kh', 'asia', 'I', NULL), (62, 'China', 'cn', 'asia', 'I', NULL), (63, 'East Timor', 'etimor', 'asia', 'I', NULL), (64, 'India', 'in', 'asia', 'I', NULL), (65, 'Indonesia', 'id', 'asia', 'I', NULL), (66, 'Iran', 'ir', 'asia', 'I', NULL), (67, 'Iraq', 'iq', 'asia', 'I', NULL), (68, 'Israel', 'il', 'asia', 'I', NULL), (69, 'Japan', 'jp', 'asia', 'A', 'ja_JP'), (70, 'Jordan', 'jo', 'asia', 'I', NULL), (71, 'Kazakhstan', 'kz', 'asia', 'I', NULL), (72, 'Korea, North', 'kp', 'asia', 'I', NULL), (73, 'Korea, South', 'kr', 'asia', 'I', NULL), (74, 'Kuwait', 'kw', 'asia', 'I', NULL), (75, 'Kyrgyzstan', 'kg', 'asia', 'I', NULL), (76, 'Laos', 'la', 'asia', 'I', NULL), (77, 'Lebanon', 'lb', 'asia', 'I', NULL), (78, 'Malaysia', 'my', 'asia', 'I', NULL), (79, 'Maldives', 'mv', 'asia', 'I', NULL), (80, 'Mongolia', 'mn', 'asia', 'I', NULL), (81, 'Nepal', 'np', 'asia', 'I', NULL), (82, 'Oman', 'om', 'asia', 'I', NULL), (83, 'Pakistan', 'pk', 'asia', 'I', NULL), (84, 'Philippines', 'ph', 'asia', 'I', NULL), (85, 'Qatar', 'qa', 'asia', 'I', NULL), (86, 'Russian Federation', 'ru', 'asia', 'I', NULL), (87, 'Saudi Arabia', 'sa', 'asia', 'I', NULL), (88, 'Singapore', 'sg', 'asia', 'I', NULL), (89, 'Sri Lanka', 'lk', 'asia', 'I', NULL), (90, 'Syria', 'sy', 'asia', 'I', NULL), (91, 'Tajikistan', 'tj', 'asia', 'I', NULL), (92, 'Thailand', 'th', 'asia', 'I', NULL), (93, 'Turkey', 'tr', 'asia', 'I', NULL), (94, 'Turkmenistan', 'tm', 'asia', 'I', NULL), (95, 'United Arab Emirates', 'ae', 'asia', 'I', NULL), (96, 'Uzbekistan', 'uz', 'asia', 'I', NULL), (97, 'Vietnam', 'vn', 'asia', 'I', NULL), (98, 'Yemen', 'ye', 'asia', 'I', NULL), (99, 'Albania', 'al', 'europe', 'I', NULL), (100, 'Andorra', 'ad', 'europe', 'I', NULL), (101, 'Armenia', 'am', 'europe', 'I', NULL), (102, 'Austria', 'at', 'europe', 'I', NULL), (103, 'Azerbaijan', 'az', 'europe', 'I', NULL), (104, 'Belarus', 'by', 'europe', 'I', NULL), (105, 'Belgium', 'be', 'europe', 'I', NULL), (106, 'Bosnia and Herzegovina', 'ba', 'europe', 'I', NULL), (107, 'Bulgaria', 'bg', 'europe', 'I', NULL), (108, 'Croatia', 'hr', 'europe', 'I', NULL), (109, 'Cyprus', 'cy', 'europe', 'I', NULL), (110, 'Czech Republic', 'cz', 'europe', 'I', NULL), (111, 'Denmark', 'dk', 'europe', 'I', NULL), (112, 'Estonia', 'ee', 'europe', 'I', NULL), (113, 'Finland', 'fi', 'europe', 'I', NULL), (114, 'France', 'fr', 'europe', 'I', NULL), (115, 'Georgia', 'ge', 'europe', 'I', NULL), (116, 'Germany', 'de', 'europe', 'A', 'de_DE'), (117, 'Greece', 'gr', 'europe', 'I', NULL), (118, 'Hungary', 'hu', 'europe', 'I', NULL), (119, 'Iceland', 'is', 'europe', 'I', NULL), (120, 'Ireland', 'ie', 'europe', 'A', 'en_US'), (121, 'Italy', 'it', 'europe', 'I', NULL), (122, 'Latvia', 'lv', 'europe', 'I', NULL), (123, 'Liechtenstein', 'li', 'europe', 'I', NULL), (124, 'Lithuania', 'lt', 'europe', 'I', NULL), (125, 'Luxembourg', 'lu', 'europe', 'I', NULL), (126, 'Macedonia', 'mk', 'europe', 'I', NULL), (127, 'Malta', 'mt', 'europe', 'I', NULL), (128, 'Moldova', 'md', 'europe', 'I', NULL), (129, 'Monaco', 'mc', 'europe', 'I', NULL), (130, 'Montenegro', 'mj', 'europe', 'I', NULL), (131, 'Netherlands', 'nl', 'europe', 'I', NULL), (132, 'Norway', 'no', 'europe', 'I', NULL), (133, 'Poland', 'pl', 'europe', 'I', NULL), (134, 'Portugal', 'pt', 'europe', 'I', NULL), (135, 'Romania', 'ro', 'europe', 'I', NULL), (136, 'San Marino', 'sm', 'europe', 'I', NULL), (137, 'Serbia', 'mj', 'europe', 'I', NULL), (138, 'Slovakia', 'sk', 'europe', 'I', NULL), (139, 'Slovenia', 'si', 'europe', 'I', NULL), (140, 'Spain', 'es', 'europe', 'I', NULL), (141, 'Sweden', 'se', 'europe', 'I', NULL), (142, 'Switzerland', 'ch', 'europe', 'I', NULL), (143, 'Ukraine', 'ua', 'europe', 'I', NULL), (144, 'United Kingdom', 'uk', 'europe', 'A', 'en_US'), (145, 'Vatican City', 'va', 'europe', 'I', NULL), (146, 'Antigua and Barbuda', 'caribb', 'north america', 'I', NULL), (147, 'Bahamas', 'caribb', 'north america', 'I', NULL), (148, 'Barbados', 'caribb', 'north america', 'I', NULL), (149, 'Belize', 'camerica', 'north america', 'I', NULL), (150, 'Canada', 'ca', 'north america', 'A', 'en_US'), (151, 'Costa Rica', 'camerica', 'north america', 'I', NULL), (152, 'Cuba', 'caribb', 'north america', 'I', NULL), (153, 'Dominica', 'caribb', 'north america', 'I', NULL), (154, 'Dominican Republic', 'caribb', 'north america', 'I', NULL), (155, 'El Salvador', 'camerica', 'north america', 'I', NULL), (156, 'Grenada', 'caribb', 'north america', 'I', NULL), (157, 'Guatemala', 'camerica', 'north america', 'I', NULL), (158, 'Haiti', 'caribb', 'north america', 'I', NULL), (159, 'Honduras', 'camerica', 'north america', 'I', NULL), (160, 'Jamaica', 'caribb', 'north america', 'I', NULL), (161, 'Mexico', 'mx', 'north america', 'I', NULL), (162, 'Nicaragua', 'camerica', 'north america', 'I', NULL), (163, 'Panama', 'camerica', 'north america', 'I', NULL), (164, 'Saint Kitts and Nevis', 'caribb', 'north america', 'I', NULL), (165, 'Saint Lucia', 'caribb', 'north america', 'I', NULL), (166, 'Saint Vincent and the Grenadines', 'caribb', 'north america', 'I', NULL), (167, 'Trinidad and Tobago', 'caribb', 'north america', 'I', NULL), (168, 'United States', 'us', 'north america', 'A', 'en_US'), (169, 'Australia', 'au', 'oceania', 'A', 'en_US'), (170, 'Fiji', 'fj', 'oceania', 'I', NULL), (171, 'Kiribati', 'ki', 'oceania', 'I', NULL), (172, 'Marshall Islands', 'mh', 'oceania', 'I', NULL), (173, 'Micronesia', 'fm', 'oceania', 'I', NULL), (174, 'Nauru', 'nr', 'oceania', 'I', NULL), (175, 'New Zealand', 'nz', 'oceania', 'A', 'en_US'), (176, 'Palau', 'pw', 'oceania', 'I', NULL), (177, 'Papua New Guinea', 'pg', 'oceania', 'I', NULL), (178, 'Samoa', 'ws', 'oceania', 'I', NULL), (179, 'Solomon Islands', 'sb', 'oceania', 'I', NULL), (180, 'Tonga', 'to', 'oceania', 'I', NULL), (181, 'Tuvalu', 'tv', 'oceania', 'I', NULL), (182, 'Vanuatu', 'vu', 'oceania', 'I', NULL), (183, 'Argentina', 'ar', 'south america', 'I', NULL), (184, 'Bolivia', 'bo', 'south america', 'I', NULL), (185, 'Brazil', 'br', 'south america', 'A', NULL), (186, 'Chile', 'cl', 'south america', 'I', NULL), (187, 'Colombia', 'co', 'south america', 'I', NULL), (188, 'Ecuador', 'ec', 'south america', 'I', NULL), (189, 'Guyana', 'gy', 'south america', 'I', NULL), (190, 'Paraguay', 'py', 'south america', 'I', NULL), (191, 'Peru', 'pe', 'south america', 'I', NULL), (192, 'Suriname', 'sr', 'south america', 'I', NULL), (193, 'Uruguay', 'uy', 'south america', 'I', NULL), (194, 'Venezuela', 've', 'south america', 'I', NULL); CREATE TABLE IF NOT EXISTS `tb_domain` ( `id_domain` int(11) NOT NULL AUTO_INCREMENT, `domain_code` varchar(20) NOT NULL, `domain_value` varchar(200) NOT NULL, `domain_name` varchar(200) NOT NULL, `status` varchar(1) NOT NULL, PRIMARY KEY (`id_domain`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; INSERT INTO `tb_domain` (`id_domain`, `domain_code`, `domain_value`, `domain_name`, `status`) VALUES (1, 'NORM', 'Normal', 'LOGIN_TYPE', 'A'), (2, 'CARD', 'Card', 'LOGIN_TYPE', 'A'), (3, 'VOIC', 'Voice', 'LOGIN_TYPE', 'A'), (4, 'VWEAKY', 'Very Weak', 'PASSWORD_FORCE', 'A'), (5, 'WEAK', 'Weak', 'PASSWORD_FORCE', 'A'), (6, 'MEDI', 'Medium', 'PASSWORD_FORCE', 'A'), (7, 'GOOD', 'Good', 'PASSWORD_FORCE', 'A'), (8, 'STRONG', 'Strong', 'PASSWORD_FORCE', 'A'), (9, 'VSTRONG', 'Very Strong', 'PASSWORD_FORCE', 'A'), (10, 'NCAP', 'Normal Captcha', 'CAPTCHA_TYPE', 'A'), (11, 'VCAP', 'Voice Captcha', 'CAPTCHA_TYPE', 'A'); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tb_encrypt` ( `id_encrypt` int(11) NOT NULL AUTO_INCREMENT, `encrypt_name` varchar(50) NOT NULL, PRIMARY KEY (`id_encrypt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; INSERT INTO `tb_encrypt` (`id_encrypt`, `encrypt_name`) VALUES (1, 'md5'), (2, 'ripemd160'), (3, 'sha1'), (4, 'sha256'), (5, 'sha512'), (6, 'Random'); CREATE TABLE IF NOT EXISTS `tb_events_calendar` ( `id_events` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `image` varchar(100) DEFAULT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_events`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; CREATE TABLE IF NOT EXISTS `tb_fonts` ( `id_fonts` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(300) NOT NULL, `folder` varchar(600) NOT NULL, `type` varchar(10) NOT NULL, PRIMARY KEY (`id_fonts`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; INSERT INTO `tb_fonts` (`id_fonts`, `name`, `folder`, `type`) VALUES (1, 'fontawesome', 'css/fontes', ''), (2, 'coda-heavy', 'css/fontes', ''), (3, 'glyphicons-halflings', 'css\\fonts', ''); CREATE TABLE IF NOT EXISTS `tb_fonts_files` ( `id_fonts_files` int(11) NOT NULL AUTO_INCREMENT, `file` varchar(300) NOT NULL, `id_fonts` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_fonts_files`), KEY `id_fonts` (`id_fonts`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_gallery` ( `id_gallery` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `image` varchar(100) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_gallery`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_gallery_item` ( `id_gallery_item` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `pathImage` varchar(50) NOT NULL, `description` varchar(30) NOT NULL, `id_user` int(11) NOT NULL, `id_gallery` int(11) NOT NULL, PRIMARY KEY (`id_gallery_item`), KEY `id_user` (`id_user`), KEY `id_gallery` (`id_gallery`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_general` ( `id_general` int(11) NOT NULL AUTO_INCREMENT, `flag_login_type` varchar(8) DEFAULT NULL, `flag_login_encrypt` int(11) DEFAULT NULL, `number_of_bits` int(11) DEFAULT NULL, `number_attempts` int(11) DEFAULT NULL, `flag_password_force` varchar(8) DEFAULT NULL, `flag_enable_question` varchar(1) DEFAULT NULL, `flag_enable_captcha` varchar(1) DEFAULT NULL, `flag_captcha_type` varchar(6) NOT NULL, `seq_update` varchar(200) NOT NULL, `seq_optional` varchar(200) NOT NULL, `app_path` varchar(1000) DEFAULT NULL, PRIMARY KEY (`id_general`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; INSERT INTO `tb_general` (`id_general`, `flag_login_type`, `flag_login_encrypt`, `number_of_bits`, `number_attempts`, `flag_password_force`, `flag_enable_question`, `flag_enable_captcha`, `flag_captcha_type`, `seq_update`, `seq_optional`, `app_path`) VALUES (1, 'NORM', 5, 10, 3, 'STRONG', 'D', 'D', 'D', '0', '0', 'C:#wamp#www#estudo#wos'); CREATE TABLE IF NOT EXISTS `tb_group` ( `id_group` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `group_image` varchar(500) NOT NULL, `id_group_pai` int(11) NOT NULL, PRIMARY KEY (`id_group`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; INSERT INTO `tb_group` (`id_group`, `name`, `group_image`, `id_group_pai`) VALUES (1, 'admin', '', 0); CREATE TABLE IF NOT EXISTS `tb_group_user` ( `id_group_user` int(11) NOT NULL AUTO_INCREMENT, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_group_user`), KEY `id_group` (`id_group`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; CREATE TABLE IF NOT EXISTS `tb_grpusers_files` ( `id_grpusers_files` int(11) NOT NULL AUTO_INCREMENT, `pathfile` varchar(300) NOT NULL, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_grpusers_files`), KEY `id_group` (`id_group`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; CREATE TABLE IF NOT EXISTS `tb_grp_control` ( `id_grp_control` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id_grp_control`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; INSERT INTO `tb_grp_control` (`id_grp_control`, `name`, `priority`) VALUES (1, 'Layout', 2), (2, 'Security', 1), (3, 'Format', 3); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tb_grp_program` ( `id_grp_program` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id_grp_program`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; INSERT INTO `tb_grp_program` (`id_grp_program`, `name`, `priority`) VALUES (1, 'ESSENTIALS', 1), (2, 'TEXT EDITOR', 2), (3, 'DOCUMENTS VIEWER', 3), (4, 'AUDIO & VIDEO', 4), (5, 'IMAGE MEDIA', 5), (6, 'CODE EDITOR', 6), (7, 'IMAGE EDITOR', 7), (8, 'ACCESSORIES', 8), (10, 'WIDGET', 9), (11, 'SYSTEM', 11), (12, 'CHAT', 10); -- -------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tb_message` ( `id_message` int(11) NOT NULL AUTO_INCREMENT, `text` varchar(4000) NOT NULL, `status` varchar(1) NOT NULL, `dt_msg` date NOT NULL, `id_contact_sender` int(11) NOT NULL, `id_contact_receiver` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_message`), KEY `id_contact_sender` (`id_contact_sender`), KEY `id_contact_receiver` (`id_contact_receiver`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; CREATE TABLE IF NOT EXISTS `tb_notes` ( `id_note` int(11) NOT NULL AUTO_INCREMENT, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, `note` varchar(1000) NOT NULL, PRIMARY KEY (`id_note`), KEY `id_group` (`id_group`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; CREATE TABLE IF NOT EXISTS `tb_open` ( `id_open` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `callFunction` varchar(300) NOT NULL, `flagchangepath` varchar(1) NOT NULL, PRIMARY KEY (`id_open`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=31 ; INSERT INTO `tb_open` (`id_open`, `name`, `callFunction`, `flagchangepath`) VALUES (1, 'pdf', 'callWindow(this,''pdf_viewer'',''callWindowPdf_viewer'',file_op);', 'S'), (2, 'doc', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (3, 'ppt', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (4, 'pptx', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (5, 'docx', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (6, 'dot', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (7, 'docx', 'callWindow(this,''gdocs'',''callWindowGdocs'',file_op);', 'S'), (8, 'mp3', ' callWindow(this,''waudio'',''callWindowWaudio'',file_op);', 'S'), (9, 'py', 'callWindow(this,''pythoneditor'',''callWindowPythonEditor'',file_op);', 'N'), (10, 'wav', 'callWindow(this,''waudio'',''callWindowWaudio'',file_op);', 'S'), (11, 'mp4', 'callWindow(this,''wvideo'',''callWindowWvideo'',file_op);', 'S'), (12, 'avi', 'callWindow(this,''wvideo'',''callWindowWvideo'',file_op);', 'S'), (13, 'txt', 'callWindow(this,''wnpad'',''callWindowWnpad'',file_op);', 'N'), (14, 'wdoc', 'callWindow(this,''wdoc'',''callWindowWdoc'',file_op);', 'N'), (15, 'html', 'callWindow(this,''htmleditor'',''callWindowHtmlEditor'',file_op);', 'N'), (16, 'php', 'callWindow(this,''phpeditor'',''callWindowPhpEditor'',file_op);', 'N'), (17, 'xml', 'callWindow(this,''xmleditor'',''callWindowXmlEditor'',file_op);', 'N'), (18, 'cs', 'callWindow(this,''ccharpeditor'',''callWindowCcharpEditor'',file_op);', 'N'), (19, 'css', 'callWindow(this,''csseditor'',''callWindowCssEditor'',file_op);', 'N'), (20, 'sql', 'callWindow(this,''sqleditor'',''callWindowSqlEditor'',file_op);', 'N'), (21, 'java', 'callWindow(this,''javaeditor'',''callWindowJavaEditor'',file_op);', 'N'), (22, 'js', 'callWindow(this,''jseditor'',''callWindowJsEditor'',file_op);', 'N'), (23, 'jpg', 'callWindow(this,''wslider'',''callWindowWSlider'',file_op);', 'N'), (24, 'jpeg', 'callWindow(this,''wslider'',''callWindowWSlider'',file_op);', 'N'), (25, 'png', 'callWindow(this,''wcarousel'',''callWindowWCarousel'',file_op);', 'N'), (26, 'gif', 'callWindow(this,''galleria'',''callWindowGalleria'',file_op);', 'N'), (27, 'ytb', 'callWindow(this,''ytbmanager'',''callWindowYtbManager'',file_op);', 'N'), (28, 'sbm', 'callWindow(this,''soundmanager'',''callWindowSoundManager'',file_op);', 'N'), (29, 'wcal', 'callWindow(this,''wcalendar'',''callWindowWCalendar'',file_op);', 'N'), (30, 'zip', 'callWindow(this,''wzip'',''callWindowWZip'',file_op);', 'N'); CREATE TABLE IF NOT EXISTS `tb_open_user` ( `id_open_user` int(11) NOT NULL AUTO_INCREMENT, `id_open` int(11) NOT NULL, `id_user` int(11) NOT NULL, `callFunction` varchar(300) NOT NULL, PRIMARY KEY (`id_open_user`), KEY `id_open` (`id_open`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_programs` ( `id_program` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `imagePath` varchar(50) NOT NULL, `id_grp_program` int(11) NOT NULL, `callFunction` varchar(300) NOT NULL, `folder` varchar(300) NOT NULL, `serial` varchar(300) NOT NULL, `gip` varchar(300) NOT NULL, `class_program` varchar(300) NOT NULL, `type` varchar(200) NOT NULL, `opentype` varchar(300) NOT NULL, PRIMARY KEY (`id_program`), KEY `id_grp_program` (`id_grp_program`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=67 ; INSERT INTO `tb_programs` (`id_program`, `name`, `imagePath`, `id_grp_program`, `callFunction`, `folder`, `serial`, `gip`, `class_program`, `type`, `opentype`) VALUES (1, 'Upload Zone', 'upload.png', 1, 'callUploadWindow(this,''upload'')', '', '', 'gip fadegip', 'upload', 'normal', ''), (2, 'Wexplore', 'folder.png', 1, 'callWindowWExplore(this,''wexplore'','''',''normal'','''','''','''')', '', '', 'gip', 'wexplore', 'normal', ''), (3, 'WDoc', 'doc.png', 2, 'callWindow(this,''wdoc'',''callWindowWdoc'','''')', '', '', 'gip', 'wdoc', 'normal', 'wdoc'), (4, 'Wnpad', 'txt.png', 2, 'callWindow(this,''wnpad'',''callWindowWnpad'','''')', '', '', 'gip', 'wnpad', 'normal', 'txt,php,xml,java,cs,py,js,css,sql,html'), (5, 'GDocs', 'gdocs.png', 3, 'callWindow(this,''gdocs'',''callWindowGdocs'','''')', '', '', 'gip', 'gdocs', 'normal', 'pdf,doc,docx,ppt,pptx,dot,dotx'), (6, 'Pdf Viewer', 'pdf-viewer.png', 3, 'callWindow(this,''pdf_viewer'',''callWindowPdf_viewer'','''')', '', '', 'gip', 'pdf_viewer', 'normal', 'pdf'), (7, 'Sound Manager', 'sound.png', 4, 'callWindow(this,''soundmanager'',''callWindowSoundManager'','''')', '', '', 'gip', 'soundmanager', 'normal', 'sbm'), (8, 'WAudio', 'waudio.png', 4, 'callWindow(this,''waudio'',''callWindowWaudio'','''')', '', '', 'gip', 'waudio', 'normal', 'mp3,wav,aac,ogg,wma'), (9, 'WVideo', 'video_logo.png', 4, 'callWindow(this,''wvideo'',''callWindowWvideo'','''')', '', '', 'gip', 'wvideo', 'normal', 'mp4,avi'), (10, 'Ytb Manager', 'ytd.png', 4, 'callWindow(this,''ytbmanager'',''callWindowYtbManager'','''')', '', '', 'gip', 'ytbmanager', 'normal', 'ytb'), (11, 'Galleria', 'galleria.png', 5, 'callWindow(this,''galleria'',''callWindowGalleria'','''')', '', '', 'gip', 'galleria', 'normal', 'jpg,png,gif,jpeg'), (13, 'Wcarousel', 'wcarousel.png', 5, 'callWindow(this,''wcarousel'',''callWindowWCarousel'','''')', '', '', 'gip', 'wcarousel', 'normal', 'jpg,png,gif,jpeg'), (14, 'WSlider', 'wslider.png', 5, 'callWindow(this,''wslider'',''callWindowWSlider'','''')', '', '', 'gip', 'wslider', 'normal', 'jpg,png,gif,jpeg'), (15, 'Xml Editor', 'xml.png', 6, 'callWindow(this,''xmleditor'',''callWindowXmlEditor'','''')', '', '', 'gip', 'xmleditor', 'normal', 'xml'), (16, 'Html Editor', 'html.png', 6, 'callWindow(this,''htmleditor'',''callWindowHtmlEditor'','''')', '', '', 'gip', 'htmleditor', 'normal', 'html,xhtml'), (17, 'Php Editor', 'php.png', 6, 'callWindow(this,''phpeditor'',''callWindowPhpEditor'','''')', '', '', 'gip', 'phpeditor', 'normal', 'php'), (18, 'Ccharp Editor', 'cs.png', 6, 'callWindow(this,''ccharpeditor'',''callWindowCcharpEditor'','''')', '', '', 'gip', 'ccharpeditor', 'normal', 'cs'), (19, 'Css Editor', 'css.png', 6, 'callWindow(this,''csseditor'',''callWindowCssEditor'','''')', '', '', 'gip', 'csseditor', 'normal', 'css'), (20, 'Django Editor', 'django.png', 6, 'callWindow(this,''djangoeditor'',''callWindowDjangoEditor'','''')', '', '', 'gip', 'djangoeditor', 'normal', 'py'), (21, 'Java Editor', 'java.png', 6, 'callWindow(this,''javaeditor'',''callWindowJavaEditor'','''')', '', '', 'gip', 'javaeditor', 'normal', 'java'), (22, 'JsEditor', 'js.png', 6, 'callWindow(this,''jseditor'',''callWindowJsEditor'','''')', '', '', 'gip', 'jseditor', 'normal', 'js'), (23, 'Python Editor', 'python.png', 6, 'callWindow(this,''pythoneditor'',''callWindowPythonEditor'','''')', '', '', 'gip', 'pythoneditor', 'normal', 'py'), (24, 'Sql Editor', 'sql.png', 6, 'callWindow(this,''sqleditor'',''callWindowSqlEditor'','''')', '', '', 'gip', 'sqleditor', 'normal', 'sql'), (25, 'WCalc', 'wcalc.png', 8, 'callWindowFade(this,''wcalc'','''')', '', '', 'gip fadegip', 'wcalc', 'normal', ''), (26, 'Calculator', 'calculator.png', 8, 'callWindowFade(this,''calculator'','''')', '', '', 'gip fadegip', 'calculator', 'normal', ''), (27, 'WPaint', 'wpaint.png', 7, 'callWindow(this,''wpaint'',''callWindowWPaint'','''')', '', '', 'gip', 'wpaint', 'normal', 'svg'), (28, 'Paint', 'paint.png', 7, 'callWindow(this,''paint'',''callWindowPaint'','''')', '', '', 'gip', 'paint', 'normal', ''), (31, 'WCam', 'wcam.png', 4, 'callWindowFade(this,''wcam'',''callWindowWCam'')', '', '', 'gip fadegip', 'wcam', 'normal', ''), (32, 'WCalendar', 'wcalendar.png', 8, 'callWindow(this,''wcalendar'',''callWindowWCalendar'','''')', '', '', 'gip', 'wcalendar', 'normal', 'wcal'), (33, 'WZip', 'zip.png', 1, 'callWindow(this,''wzip'',''callWindowWZip'','''')', '', '', 'gip', 'wzip', 'normal', 'zip'), (34, 'Control Panel', 'controlpanel.png', 1, 'callWindow(this,''controlpanel'',''callWindowControlPanel'','''')', '', '', 'gip', 'controlpanel', 'normal', ''), (35, 'Calendar', 'calendar.png', 10, 'callWindow(this,''calendar'',''callWindowCalendar'','''')', '', '', 'gip', 'calendar', 'system', ''), (36, 'DClock', 'dclock.png', 10, 'callWindow(this,''dclock'',''callWindowDClock'','''')', '', '', 'gip', 'dclock', 'system', ''), (37, 'User Account', 'user_account.png', 11, 'callWindow(this,''useraccount'',''callWindowUserAccount'','''')', '', '', 'gip', 'useraccount', 'system', ''), (38, 'Group Account', 'account_group.png', 11, 'callWindow(this,''groupaccount'',''callWindowGroupAccount'','''')', '', '', 'gip', 'groupaccount', 'system', ''), (39, 'Window extract', 'extract.png', 11, 'callWindow(this,''window_extract'',''callWindowWindow_extract'','''')', '', '', 'gip', 'window_extract', 'system', ''), (40, 'Window Zip', 'zippar.png', 11, 'callWindow(this,''window_zip'',''callWindowWindow_zip'','''')', '', '', 'gip', 'window_zip', 'system', ''), (41, 'WWeather', 'wweather.png', 10, 'callWindowFade(this,''wweather'','''')', '', '', 'gip', 'wweather', 'system', ''), (42, 'WSound', 'wsound.png', 4, 'callWindowFade(this,''wsound'',''callWindowWSound'')', '', '', 'gip fadegip', 'wsound', 'normal', 'mp3,wav,aac,ogg,wma'), (43, 'Audiovisualize', 'audiovisualize.png', 4, 'callWindowFade(this,''audiovisualize'',''callWindowAudiovisualize'')', '', '', 'gip fadegip', 'audiovisualize', 'normal', 'mp3,wav,aac,ogg,wma'), (44, 'Stickies', 'stickies.png', 8, 'callWindow(this,''stickies'',''callWindowStickies'')', '', '', 'gip', 'stickies', 'normal', ''), (45, 'WTalk', 'wtalk.png', 12, 'callWindowFade(this,''wtalk'',''callWindowWtalk'')', '', '', 'gip fadegip', 'wtalk', 'normal', ''), (46, 'Elfinder', 'elfinder.png', 11, 'callWindowFade(this,''elfinder'',''callWindowElfinder'')', '', '', 'gip fadegip', 'elfinder', 'normal', ''), (47, 'Uninstall', 'uninstall.png', 11, 'callWindow(this,''uninstall'',''callWindowUninstall'','''')', '', '', 'gip', 'uninstall', 'system', ''), (48, 'Install', 'install.png', 11, 'callWindow(this,''install'',''callWindowInstall'','''')', '', '', 'gip', 'install', 'system', ''), (49, 'Folder Options', 'folder_options.png', 11, 'callWindow(this,''folder_options'',''callWindowFolder_options'','''')', '', '', 'gip', 'folder_options', 'system', ''), (50, 'Fonts Options', 'fonts_options.png', 11, 'callWindow(this,''fonts_options'',''callWindowFonts_options'','''')', '', '', 'gip', 'fonts_options', 'system', ''), (51, 'Appearance', 'appearance.png', 11, 'callWindow(this,''appearance'',''callWindowAppearance'','''')', '', '', 'gip', 'appearance', 'system', ''), (52, 'Timezone', 'timezone.png', 11, 'callWindow(this,''timezone'',''callWindowTimezone'','''')', '', '', 'gip', 'timezone', 'system', ''), (53, 'Datetime', 'calendar.png', 11, 'callWindow(this,''datetime'',''callWindowDatetime'','''')', '', '', 'gip', 'datetime', 'system', ''), (54, 'Security', 'security.png', 11, 'callWindow(this,''security'',''callWindowSecurity'','''')', '', '', 'gip', 'security', 'system', ''), (55, 'Change Password', 'change_password.png', 11, 'callWindow(this,''changepassword'',''callWindowChangepassword'','''')', '', '', 'gip', 'changepassword', 'system', ''), (56, 'ResetPassword', 'reset_password.png', 11, 'callWindowWithParameter(this,''resetpassword'',''callWindowResetpassword'','''','''')', '', '', 'gip', 'resetpassword', 'system', ''), (57, 'msg', 'msg.png', 11, 'callWindowWithParameter(this,''msg'',''callWindowMsg'','''','''')', '', '', 'gip', 'msg', 'system', ''), (58, 'Backup', 'backup.png', 11, 'callWindow(this,''backup'',''callWindowBackup'','''')', '', '', 'gip', 'backup', 'system', ''), (59, 'Language', 'language.png', 11, 'callWindowWithParameter(this,''language'',''callWindowLanguage'','''',''system,lang_system'')', '', '', 'gip', 'language', 'system', ''), (61, 'Programs Association', 'program_association.png', 11, 'callWindowWithParameter(this,''programs_association'',''callWindowPrograms_association'','''',1)', '', '', 'gip', 'programs_association', 'system', ''), (62, 'Programs Options', 'options.png', 11, '', '', '', 'gip', 'programs_options', 'system', ''), (63, 'SDate', 'datecalendar.png', 11, 'callWindow(this,''sdate'',''callWindowSdate'','''')', '', '', 'gip', 'sdate', 'system', ''), (64, 'Add User Account', 'user_account.png', 11, 'callWindowWithParameter(this,''adduser'',''callWindowAdduser'','''','''')', '', '', 'gip', 'adduser', 'system', ''), (65, 'Add Group Account', 'account_group.png', 11, 'callWindowWithParameter(this,''addgroup'',''callWindowAddgroup'','''','''')', '', '', 'gip', 'addgroup', 'system', ''), (66, 'Wopen', 'wopen.png', 11, 'callWindowWithParameter(this,''wopen'',''callWindowWOpen'','''','''')', '', '', 'gip', 'wopen', 'system', ''); CREATE TABLE IF NOT EXISTS `tb_programs_group` ( `id_program_group` int(11) NOT NULL AUTO_INCREMENT, `id_program` int(11) NOT NULL, `id_group` int(11) NOT NULL, PRIMARY KEY (`id_program_group`), KEY `id_program` (`id_program`), KEY `id_group` (`id_group`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; INSERT INTO `tb_programs_group` (`id_program_group`, `id_program`, `id_group`) VALUES (3, 1, 4), (5, 1, 7), (6, 3, 6); CREATE TABLE IF NOT EXISTS `tb_programs_grpusers` ( `id_program_grpusers` int(11) NOT NULL AUTO_INCREMENT, `id_program` int(11) NOT NULL, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_program_grpusers`), KEY `id_program` (`id_program`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; CREATE TABLE IF NOT EXISTS `tb_program_language` ( `id_program_language` int(11) NOT NULL AUTO_INCREMENT, `id_program` int(11) NOT NULL, `id_group` int(11) NOT NULL, `id_user` int(11) NOT NULL, `id_country` int(11) NOT NULL, PRIMARY KEY (`id_program_language`), KEY `id_program` (`id_program`), KEY `id_group` (`id_group`), KEY `id_user` (`id_user`), KEY `id_country` (`id_country`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; CREATE TABLE IF NOT EXISTS `tb_requirements` ( `id_requirements` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `id_program` int(11) NOT NULL, `require_type` varchar(1) NOT NULL, PRIMARY KEY (`id_requirements`), KEY `id_program` (`id_program`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_settings` ( `id_setting` int(11) NOT NULL AUTO_INCREMENT, `system_date` varchar(10) DEFAULT NULL, `system_hour` varchar(8) DEFAULT NULL, `time_zone` varchar(100) DEFAULT NULL, `dateformat` varchar(10) DEFAULT NULL, `background` varchar(300) DEFAULT NULL, `id_user` int(11) NOT NULL, `id_group` int(11) NOT NULL, `user_image` varchar(300) DEFAULT NULL, `mouse_image` varchar(300) DEFAULT NULL, `current_location` varchar(7) DEFAULT NULL, `id_country` int(11) NOT NULL, PRIMARY KEY (`id_setting`), KEY `id_group` (`id_group`), KEY `id_user` (`id_user`), KEY `fk_country_settings_1` (`id_country`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; INSERT INTO `tb_settings` (`id_setting`, `system_date`, `system_hour`, `time_zone`, `dateformat`, `background`, `id_user`, `id_group`, `user_image`, `mouse_image`, `current_location`, `id_country`) VALUES (1, '0', '0:0', 'America/Bahia', NULL, 'images/themes/animals/1.jpg', 1, 1, 'images/account_image/download.png', 'images/mouse_icon/apple_system.png', NULL, 168); CREATE TABLE IF NOT EXISTS `tb_thema` ( `id_thema` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, PRIMARY KEY (`id_thema`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_user` ( `id_user` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `email` varchar(30) NOT NULL, `login` varchar(30) NOT NULL, `password` varchar(20) NOT NULL, `id_group` int(11) NOT NULL, `user_image` varchar(500) NOT NULL, `voice_password` varchar(20) NOT NULL, PRIMARY KEY (`id_user`), KEY `id_group` (`id_group`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Extraindo dados da tabela `tb_user` -- INSERT INTO `tb_user` (`id_user`, `name`, `email`, `login`, `password`, `id_group`, `user_image`, `voice_password`) VALUES (1, 'admin', 'admin', 'admin', '1234', 1, '', ''); CREATE TABLE IF NOT EXISTS `tb_youtube_gallery` ( `id_youtube_gallery` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` varchar(30) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_youtube_gallery`), KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tb_youtube_item` ( `id_youtube_item` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` varchar(30) NOT NULL, `id_user` int(11) NOT NULL, `id_youtube_gallery` int(11) NOT NULL, PRIMARY KEY (`id_youtube_item`), KEY `id_user` (`id_user`), KEY `id_youtube_gallery` (`id_youtube_gallery`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; ALTER TABLE `tb_backup` ADD CONSTRAINT `tb_backup_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_barbottom` ADD CONSTRAINT `tb_barbottom_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_calendar_item` ADD CONSTRAINT `tb_calendar_item_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`), ADD CONSTRAINT `tb_calendar_item_ibfk_2` FOREIGN KEY (`id_events`) REFERENCES `tb_events_calendar` (`id_events`); ALTER TABLE `tb_contact` ADD CONSTRAINT `tb_contact_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_contact_list` ADD CONSTRAINT `tb_contact_list_ibfk_1` FOREIGN KEY (`id_contact`) REFERENCES `tb_contact` (`id_contact`), ADD CONSTRAINT `tb_contact_list_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_control_elements` ADD CONSTRAINT `tb_control_elements_ibfk_1` FOREIGN KEY (`id_grp_control`) REFERENCES `tb_grp_control` (`id_grp_control`); ALTER TABLE `tb_events_calendar` ADD CONSTRAINT `tb_events_calendar_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_fonts_files` ADD CONSTRAINT `tb_fonts_files_ibfk_1` FOREIGN KEY (`id_fonts`) REFERENCES `tb_fonts` (`id_fonts`), ADD CONSTRAINT `tb_fonts_files_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_gallery` ADD CONSTRAINT `tb_gallery_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_gallery_item` ADD CONSTRAINT `tb_gallery_item_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`), ADD CONSTRAINT `tb_gallery_item_ibfk_2` FOREIGN KEY (`id_gallery`) REFERENCES `tb_gallery` (`id_gallery`); ALTER TABLE `tb_group_user` ADD CONSTRAINT `tb_group_user_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`), ADD CONSTRAINT `tb_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_grpusers_files` ADD CONSTRAINT `tb_grpusers_files_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`), ADD CONSTRAINT `tb_grpusers_files_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_message` ADD CONSTRAINT `tb_message_ibfk_1` FOREIGN KEY (`id_contact_sender`) REFERENCES `tb_contact` (`id_contact`), ADD CONSTRAINT `tb_message_ibfk_2` FOREIGN KEY (`id_contact_receiver`) REFERENCES `tb_contact` (`id_contact`), ADD CONSTRAINT `tb_message_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_notes` ADD CONSTRAINT `tb_notes_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`), ADD CONSTRAINT `tb_notes_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_open_user` ADD CONSTRAINT `tb_open_user_ibfk_1` FOREIGN KEY (`id_open`) REFERENCES `tb_open` (`id_open`), ADD CONSTRAINT `tb_open_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_programs` ADD CONSTRAINT `tb_programs_ibfk_1` FOREIGN KEY (`id_grp_program`) REFERENCES `tb_grp_program` (`id_grp_program`); ALTER TABLE `tb_programs_group` ADD CONSTRAINT `tb_programs_group_ibfk_1` FOREIGN KEY (`id_program`) REFERENCES `tb_programs` (`id_program`), ADD CONSTRAINT `tb_programs_group_ibfk_2` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`); ALTER TABLE `tb_programs_grpusers` ADD CONSTRAINT `tb_programs_grpusers_ibfk_1` FOREIGN KEY (`id_program`) REFERENCES `tb_programs` (`id_program`), ADD CONSTRAINT `tb_programs_grpusers_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_program_language` ADD CONSTRAINT `tb_program_language_ibfk_1` FOREIGN KEY (`id_program`) REFERENCES `tb_programs` (`id_program`), ADD CONSTRAINT `tb_program_language_ibfk_2` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`), ADD CONSTRAINT `tb_program_language_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`), ADD CONSTRAINT `tb_program_language_ibfk_4` FOREIGN KEY (`id_country`) REFERENCES `tb_country` (`id_country`); ALTER TABLE `tb_requirements` ADD CONSTRAINT `tb_requirements_ibfk_1` FOREIGN KEY (`id_program`) REFERENCES `tb_programs` (`id_program`); ALTER TABLE `tb_settings` ADD CONSTRAINT `fk_country_settings_1` FOREIGN KEY (`id_country`) REFERENCES `tb_country` (`id_country`), ADD CONSTRAINT `tb_settings_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`), ADD CONSTRAINT `tb_settings_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_user` ADD CONSTRAINT `tb_user_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `tb_group` (`id_group`); ALTER TABLE `tb_youtube_gallery` ADD CONSTRAINT `tb_youtube_gallery_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`); ALTER TABLE `tb_youtube_item` ADD CONSTRAINT `tb_youtube_item_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tb_user` (`id_user`), ADD CONSTRAINT `tb_youtube_item_ibfk_2` FOREIGN KEY (`id_youtube_gallery`) REFERENCES `tb_youtube_gallery` (`id_youtube_gallery`);
DROP PROCEDURE IF EXISTS InsertUser; CREATE PROCEDURE InsertUser (IN userFirstnameIN varchar(50), IN userLastnameIN varchar(50), IN userMiddlenameIN varchar(50), IN userDateOfBirthIN date, IN userGenderIN char(1), IN userContactPhoneIN varchar(25) ) BEGIN INSERT INTO user( userFirstname, userLastname, userMiddlename, userDateOfBirth, userGender, userContactPhone ) VALUES(userFirstnameIN, userLastnameIN, userMiddlenameIN, userDateOfBirthIN, userGenderIN, userContactPhoneIN); END;
{{ config( materialized = 'table', ) }} select *, 'charles'::varchar(50) Trader from {{ ref('stg_company_profile') }} where symbol in ('AMZN','CAT','COF','GE','GOOG','MCK','MSFT','NFLX','SBUX','TSLA','VOO','XOM') union all select * from {{ ref('temp_watchlist') }} order by trader, symbol, exchange
DROP VIEW v_flights; CREATE OR REPLACE VIEW v_flights AS SELECT flights.id AS flight_id, flights.callsign, flights.status, flights.model, COALESCE(models.human_string, flights.model) AS aero, flights.start_time, flights.end_time, to_char(end_time - start_time, 'HH24:MI:SS') AS duration, EXTRACT(EPOCH FROM end_time) - EXTRACT(EPOCH FROM start_time) AS duration_sec FROM flights LEFT JOIN models ON flights.model = models.fg_string ;
\encoding UTF8; SET client_min_messages TO WARNING; CREATE TABLE app.com_tipo_indirizzo ( id SERIAL NOT NULL PRIMARY KEY, descrizione VARCHAR(255) NOT NULL ); INSERT INTO app.com_tipo_indirizzo (id, descrizione) VALUES (1, 'Sede legale'); INSERT INTO app.com_tipo_indirizzo (id, descrizione) VALUES (2, 'Sede operativa'); INSERT INTO app.com_tipo_indirizzo (id, descrizione) VALUES (3, 'Spedizione fatture'); SELECT setval('app.com_tipo_indirizzo_id_seq', (SELECT MAX(id) FROM app.com_tipo_indirizzo)); CREATE TABLE app.com_indirizzo ( id serial NOT NULL PRIMARY KEY, cliente_id INTEGER NOT NULL REFERENCES app.com_cliente(id), tipo_indirizzo_id INTEGER NOT NULL REFERENCES app.com_tipo_indirizzo(id), destinatario1 VARCHAR(255) NOT NULL, destinatario2 VARCHAR(255), toponimo VARCHAR(50), indirizzo VARCHAR(255), civico VARCHAR(50), localita VARCHAR(255), cap VARCHAR(50), provincia VARCHAR(50), paese VARCHAR(255) );
UPDATE `payments` SET `tax_rate` = `tax_rate` * 0.97; SELECT `tax_rate` FROM `payments`;
INSERT INTO user (id, name, created, email, password_hash, space_name) VALUES (3, 'Test1', now(), 'test1@example.com', '$2a$10$xsiDSyv7rJRBHDYJ2e8oyOeN5FEC8DGr.IrLBv.6WZnejXLySGw9e', 'Tester 1 world'); INSERT INTO user (id, name, created, email, password_hash, space_name) VALUES (4, 'Test2', now(), 'test2@example.com', '$2a$10$xsiDSyv7rJRBHDYJ2e8oyOeN5FEC8DGr.IrLBv.6WZnejXLySGw9e', 'Tester 2 world');
BEGIN TRANSACTION; UPDATE cluster_namespace SET quota_cpu = 'small', quota_memory = 'small', quota_storage = 'small'; END TRANSACTION;
-- phpMyAdmin SQL Dump -- version 4.6.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Sep 13, 2017 at 05:10 AM -- Server version: 5.7.14 -- PHP Version: 5.6.25 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `andriusv` -- -- -------------------------------------------------------- -- -- Table structure for table `todos_log` -- CREATE TABLE `todos_log` ( `id` int(11) NOT NULL, `event` varchar(255) COLLATE utf8mb4_lithuanian_ci NOT NULL, `task_id` int(11) DEFAULT NULL, `event_time` varchar(255) COLLATE utf8mb4_lithuanian_ci NOT NULL, `user_name` varchar(255) COLLATE utf8mb4_lithuanian_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_lithuanian_ci; -- -- Dumping data for table `todos_log` -- INSERT INTO `todos_log` (`id`, `event`, `task_id`, `event_time`, `user_name`) VALUES (1, 'Added new task: Make logs', 0, '2017-08-29 17:31:02', 'AndriusV'), (2, 'Edited task: ', 0, '2017-08-29 17:32:36', 'AndriusV'), (3, 'Edited task: Make logs edit2', 0, '2017-08-29 17:33:42', 'AndriusV'), (4, 'Deleted task id: 232', 0, '2017-08-29 17:36:42', 'AndriusV'), (5, 'Added new task: sfbg id: ', 0, '2017-08-29 17:38:58', 'AndriusV'), (6, 'Task id: 233Changed status to: done', 0, '2017-08-29 17:43:11', 'AndriusV'), (7, 'Task id: 233 changed status to: in_progress', 0, '2017-08-29 17:43:58', 'AndriusV'), (8, 'Task id: 233 changed status to: done', 0, '2017-08-29 17:47:34', 'AndriusV'), (9, 'Task id: 233 changed status to: not_done', 0, '2017-08-29 17:48:17', 'AndriusV'), (10, 'Task id: 233 changed status to: in_progress', 0, '2017-08-29 17:48:49', 'AndriusV'), (11, 'Added new task: dsfdsddgbfh svfgbgfbf fdghnbbfgbfgbfbgfgbfg', 0, '2017-08-29 20:02:17', 'AndriusV'), (12, 'Deleted task id: 234', 0, '2017-08-29 20:08:11', 'AndriusV'), (13, 'Added new task: dfgdbfvfdsfdgfffffffffffffffffffffffffffffffffffffffffffffff', 0, '2017-08-29 20:26:32', 'AndriusV'), (14, 'Edited task: dfgdbfvfdsfdgfffffff ffffffffffffffffffffffffffffffffffffffff', 0, '2017-08-29 20:27:06', 'AndriusV'), (15, 'Edited task: dfgdbfvf dsfdgfffffff fffff ffffffffr fffffffffff ffffffffffffffff', 0, '2017-08-29 20:27:29', 'AndriusV'), (16, 'Edited task: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 0, '2017-08-29 20:33:25', 'AndriusV'), (17, 'Edited task: aaaaaaaaaaaaaaaaaaaaaaaaaaa', 0, '2017-08-29 21:02:15', 'AndriusV'), (18, 'Deleted task id: 235', 0, '2017-08-29 21:02:25', 'AndriusV'), (19, 'Deleted task id: 233', 0, '2017-08-29 21:02:27', 'AndriusV'), (20, 'Deleted task id: 233', 0, '2017-08-29 21:03:05', 'AndriusV'), (21, 'Edited task: edit208', 0, '2017-09-01 10:43:21', 'AndriusV'), (22, 'Task id: 216 changed status to: gfd', 0, '2017-09-01 10:44:09', 'AndriusV'), (23, 'Task id: 216 changed status to: not_done', 0, '2017-09-01 10:44:24', 'AndriusV'), (24, 'Task id: 216 changed status to: done', 0, '2017-09-01 11:14:52', 'AndriusV'), (25, 'Task id: 216 changed status to: not_done', 0, '2017-09-01 11:15:09', 'AndriusV'), (26, 'Added new task: Bla', 0, '2017-09-01 17:57:26', 'JurgitaK'), (27, 'Added new task: ups', 0, '2017-09-01 17:58:08', 'JurgitaK'), (28, 'Task id: 236 changed status to: in_progress', 0, '2017-09-01 17:58:17', 'JurgitaK'), (29, 'Task id: 237 changed status to: done', 0, '2017-09-01 17:58:27', 'JurgitaK'), (30, 'Deleted task id: 236', 0, '2017-09-01 17:58:51', 'JurgitaK'), (31, 'Edited task: ups', 0, '2017-09-01 17:59:05', 'JurgitaK'), (32, 'Task id: 216 changed status to: DDR', 0, '2017-09-01 18:00:36', 'AndriusV'), (33, 'Added new task: fwsg', 0, '2017-09-03 08:44:10', 'AndriusV'), (34, 'Added new task: wdfsgd', 0, '2017-09-03 08:44:22', 'AndriusV'), (35, 'Added new task: fdsvb', 0, '2017-09-03 08:44:33', 'AndriusV'), (36, 'Added new task: dfs', 0, '2017-09-03 08:44:44', 'AndriusV'), (37, 'Added new task: wqefw', 0, '2017-09-03 08:44:56', 'AndriusV'), (38, 'Added new task: fgbfh', 0, '2017-09-03 08:45:40', 'AndriusV'), (39, 'Added new task: fdsvd', 0, '2017-09-03 08:45:58', 'AndriusV'), (40, 'Added new task: wfegg', 0, '2017-09-03 08:46:09', 'AndriusV'), (41, 'Added new task: wefrg', 0, '2017-09-03 08:46:20', 'AndriusV'), (42, 'Added new task: fgb', 0, '2017-09-03 08:49:32', 'AndriusV'), (43, 'Added new task: dsfvdg', 0, '2017-09-03 08:49:47', 'AndriusV'), (44, 'Added new task: qdefsvd', 0, '2017-09-03 08:49:58', 'AndriusV'), (45, 'Added new task: edfd', 0, '2017-09-03 08:50:10', 'AndriusV'), (46, 'Deleted task id: 245', 0, '2017-09-03 19:16:07', 'AndriusV'), (47, 'Deleted task id: 243', 0, '2017-09-03 19:16:11', 'AndriusV'), (48, 'Deleted task id: 240', 0, '2017-09-03 19:16:14', 'AndriusV'), (49, 'Deleted task id: 227', 0, '2017-09-03 19:16:17', 'AndriusV'), (50, 'Deleted task id: 229', 0, '2017-09-03 19:16:19', 'AndriusV'), (51, 'Deleted task id: 246', 0, '2017-09-03 19:16:22', 'AndriusV'), (52, 'Deleted task id: 247', 0, '2017-09-03 19:16:24', 'AndriusV'), (53, 'Deleted task id: 250', 0, '2017-09-03 19:16:28', 'AndriusV'), (54, 'Deleted task id: 230', 0, '2017-09-03 19:16:30', 'AndriusV'), (55, 'Deleted task id: 228', 0, '2017-09-03 19:16:32', 'AndriusV'), (56, 'Deleted task id: 238', 0, '2017-09-03 19:16:34', 'AndriusV'), (57, 'Deleted task id: 239', 0, '2017-09-03 19:16:37', 'AndriusV'), (58, 'Deleted task id: 241', 0, '2017-09-03 19:16:39', 'AndriusV'), (59, 'Deleted task id: 242', 0, '2017-09-03 19:16:41', 'AndriusV'), (60, 'Deleted task id: 244', 0, '2017-09-03 19:16:43', 'AndriusV'), (61, 'Deleted task id: 249', 0, '2017-09-03 19:16:46', 'AndriusV'), (62, 'Added new task: dfsbgd', 0, '2017-09-03 19:17:34', 'AndriusV'), (63, 'Added new task: fsgbd', 0, '2017-09-03 19:17:46', 'AndriusV'), (64, 'Added new task: efrgbd', 0, '2017-09-03 19:17:53', 'AndriusV'), (65, 'Added new task: fegb', 0, '2017-09-03 19:18:10', 'AndriusV'), (66, 'Added new task: efg', 0, '2017-09-03 19:18:26', 'AndriusV'), (67, 'Added new task: werg', 0, '2017-09-03 19:18:35', 'AndriusV'), (68, 'Added new task: dfadsgdb', 0, '2017-09-03 19:18:46', 'AndriusV'), (69, 'Added new task: dfsdg', 0, '2017-09-03 19:18:55', 'AndriusV'), (70, 'Added new task: efwrgb', 0, '2017-09-03 19:19:06', 'AndriusV'), (71, 'Added new task: defdsgbd', 0, '2017-09-03 19:19:15', 'AndriusV'), (72, 'Added new task: dfwsgdhgj', 0, '2017-09-03 19:19:32', 'AndriusV'), (73, 'Added new task: dfdgdfb', 0, '2017-09-03 19:19:59', 'AndriusV'), (74, 'Added new task: frgd', 0, '2017-09-03 19:20:07', 'AndriusV'), (75, 'Added new task: refrgdf', 0, '2017-09-03 19:20:16', 'AndriusV'), (76, 'Added new task: efgdh', 0, '2017-09-03 19:20:24', 'AndriusV'), (77, 'Added new task: errfgh', 0, '2017-09-03 19:20:33', 'AndriusV'), (78, 'Added new task: ertgth', 0, '2017-09-03 19:20:41', 'AndriusV'), (79, 'Added new task: fghf', 0, '2017-09-03 19:20:58', 'AndriusV'), (80, 'Deleted task id: 216', 0, '2017-09-03 19:23:58', 'AndriusV'), (81, 'Deleted task id: 224', 0, '2017-09-03 19:24:12', 'AndriusV'), (82, 'Deleted task id: 248', 0, '2017-09-03 19:24:16', 'AndriusV'), (83, 'Deleted task id: 251', 0, '2017-09-03 19:24:22', 'AndriusV'), (84, 'Deleted task id: 251', 0, '2017-09-03 19:25:01', 'AndriusV'), (85, 'Task id: 253 changed status to: in_progress', 0, '2017-09-03 19:52:48', 'AndriusV'), (86, 'Task id: 254 changed status to: in_progress', 0, '2017-09-03 19:52:52', 'AndriusV'), (87, 'Edited task: efrgbd', 0, '2017-09-03 19:57:39', 'AndriusV'), (88, 'Edited task: edit', 0, '2017-09-03 20:05:40', 'AndriusV'), (89, 'Edited task: edit now', 0, '2017-09-03 20:11:05', 'AndriusV'), (90, 'Added new task: Astunta uzduotis', 0, '2017-09-03 20:25:23', 'AndriusV'), (91, 'Added new task: dfgg', 0, '2017-09-03 22:44:15', 'AndriusV'), (92, 'Added new task: fdsfgh', 0, '2017-09-03 22:51:14', 'AndriusV'), (93, 'Added new task: defsgdbf', 0, '2017-09-03 22:51:56', 'AndriusV'), (94, 'Added new task: qwdefgthry', 0, '2017-09-03 22:52:21', 'AndriusV'), (95, 'Task id: 264 changed status to: in_progress', 0, '2017-09-03 22:52:33', 'AndriusV'), (96, 'Added new task: dsfdgfhg', 0, '2017-09-03 22:54:02', 'AndriusV'), (97, 'Task id: 253 changed status to: done', 0, '2017-09-03 22:55:56', 'AndriusV'), (98, 'Added new task: frgsdhfngid: ', 0, '2017-09-03 22:58:33', 'AndriusV'), (99, 'Added new task: dfsgdhfnjid: ', 0, '2017-09-03 22:59:40', 'AndriusV'), (100, 'Added new task: tikrinu id: ', 0, '2017-09-03 23:00:52', 'AndriusV'), (101, 'Added new task: ewfrgth id: ', 0, '2017-09-03 23:04:08', 'AndriusV'), (102, 'Added new task: ewrgehn id: ', 0, '2017-09-03 23:09:09', 'AndriusV'), (103, 'Added new task: defwrghfn id: ', 0, '2017-09-03 23:11:00', 'AndriusV'), (104, 'Added new task: frgethy id: Array', 0, '2017-09-03 23:13:26', 'AndriusV'), (105, 'Added new task: frgfhjtk,, id: ', 0, '2017-09-03 23:15:12', 'AndriusV'), (106, 'Added new task: fgfdbfhn id: ', 0, '2017-09-03 23:16:11', 'AndriusV'), (107, 'Added new task: ewfgrthyn id: ', 0, '2017-09-03 23:16:56', 'AndriusV'), (108, 'Deleted task id: 285', 0, '2017-09-03 23:17:13', 'AndriusV'), (109, 'Deleted task id: 253', 0, '2017-09-03 23:17:15', 'AndriusV'), (110, 'Deleted task id: 254', 0, '2017-09-03 23:17:17', 'AndriusV'), (111, 'Deleted task id: 255', 0, '2017-09-03 23:17:19', 'AndriusV'), (112, 'Deleted task id: 256', 0, '2017-09-03 23:17:21', 'AndriusV'), (113, 'Deleted task id: 257', 0, '2017-09-03 23:17:22', 'AndriusV'), (114, 'Deleted task id: 264', 0, '2017-09-03 23:17:24', 'AndriusV'), (115, 'Deleted task id: 265', 0, '2017-09-03 23:17:25', 'AndriusV'), (116, 'Deleted task id: 269', 0, '2017-09-03 23:17:27', 'AndriusV'), (117, 'Deleted task id: 270', 0, '2017-09-03 23:17:29', 'AndriusV'), (118, 'Deleted task id: 271', 0, '2017-09-03 23:17:31', 'AndriusV'), (119, 'Deleted task id: 272', 0, '2017-09-03 23:17:32', 'AndriusV'), (120, 'Deleted task id: 273', 0, '2017-09-03 23:17:34', 'AndriusV'), (121, 'Deleted task id: 274', 0, '2017-09-03 23:17:35', 'AndriusV'), (122, 'Deleted task id: 275', 0, '2017-09-03 23:17:37', 'AndriusV'), (123, 'Deleted task id: 276', 0, '2017-09-03 23:17:38', 'AndriusV'), (124, 'Deleted task id: 277', 0, '2017-09-03 23:17:40', 'AndriusV'), (125, 'Deleted task id: 278', 0, '2017-09-03 23:17:42', 'AndriusV'), (126, 'Deleted task id: 279', 0, '2017-09-03 23:17:44', 'AndriusV'), (127, 'Deleted task id: 280', 0, '2017-09-03 23:17:45', 'AndriusV'), (128, 'Deleted task id: 281', 0, '2017-09-03 23:17:47', 'AndriusV'), (129, 'Deleted task id: 282', 0, '2017-09-03 23:17:49', 'AndriusV'), (130, 'Added new task: sgdhg id: 292', 0, '2017-09-03 23:49:20', 'a'), (131, 'Added new task: fwgrthg id: 293', 0, '2017-09-03 23:52:28', 'a'), (132, '1', 0, '2017-09-03 23:53:10', 'a'), (133, 'Added new task: ewgt id: 296', 0, '2017-09-03 23:54:53', 'a'), (134, 'Added new task: efrgt id: 289', 0, '2017-09-03 23:56:10', 'AndriusV'), (135, 'Added new task: regthf id: 297', 0, '2017-09-03 23:58:53', 'AndriusV'), (136, 'Added new task: turi veikt id: 300 ', 0, '2017-09-04 00:08:17', 'AndriusV'), (137, 'Added new task: bus 301 id: 297 ', 0, '2017-09-04 00:09:11', 'a'), (138, 'Added new task: 302 id: 302 ', 0, '2017-09-04 00:10:36', 'a'), (139, 'Added new task: 303 id: 303 ', 0, '2017-09-04 00:11:18', 'AndriusV'), (140, 'Added new task: 304 id: 304 ', 0, '2017-09-04 00:11:56', 'AndriusV'), (141, 'Added new task: 305 id: 305 ', 0, '2017-09-04 00:12:09', 'AndriusV'), (142, 'Added new task: 306 id: 306 ', 0, '2017-09-04 00:12:23', 'AndriusV'), (143, 'Added new task: 307 id: 307 ', 0, '2017-09-04 00:13:08', 'a'), (144, 'Added new task: 308 id: 308 ', 0, '2017-09-04 00:13:49', 'a'), (145, 'Added new task: 309 id: 309 ', 0, '2017-09-04 00:14:38', 'b'), (146, 'Added new task: 310 id: 310 ', 0, '2017-09-04 00:14:50', 'b'), (147, 'Deleted task id: 300', 0, '2017-09-04 00:20:31', 'AndriusV'), (148, 'Added new task: naujas id: 311 ', 0, '2017-09-04 00:22:32', 'AndriusV'), (149, 'Task id: 289 changed status to: done', 0, '2017-09-04 09:31:12', 'a'), (150, 'Task id: 290 changed status to: in_progress', 0, '2017-09-05 18:56:05', 'a'), (151, 'Deleted task id: 308', 0, '2017-09-08 22:00:21', 'a'), (152, 'Deleted task id: 307', 0, '2017-09-08 22:00:24', 'a'), (153, 'Edited task: Uzduoties pavadinimas', 0, '2017-09-08 22:11:18', 'a'), (154, 'Task id: 291 changed status to: done', 0, '2017-09-08 22:19:59', 'a'), (155, 'Task id: 293 changed status to: in_progress', 0, '2017-09-08 22:31:03', 'a'), (156, 'Task id: 294 changed status to: in_progress', 0, '2017-09-08 22:31:17', 'a'), (157, 'Task id: 296 changed status to: done', 0, '2017-09-08 22:31:23', 'a'), (158, 'Task id: 296 changed status to: in_progress', 0, '2017-09-08 22:36:11', 'a'), (159, 'Task id: 302 changed status to: done', 0, '2017-09-08 22:37:24', 'a'), (160, 'Task id: 291 changed status to: in_progress', 0, '2017-09-08 22:38:16', 'a'), (161, 'Task id: 293 changed status to: not_done', 0, '2017-09-08 22:41:30', 'a'), (162, 'Task id: 291 changed status to: not_done', 0, '2017-09-08 22:43:22', 'a'), (163, 'Deleted task id: 291', 0, '2017-09-08 22:44:42', 'a'), (164, 'Deleted task id: 291', 0, '2017-09-08 22:44:54', 'a'), (165, 'Edited task: Naujos uzduoties pavadinimas', 0, '2017-09-08 22:45:28', 'a'), (166, 'Task id: 289 changed status to: Done', 0, '2017-09-08 22:45:34', 'a'), (167, 'Task id: 289 changed status to: In progress', 0, '2017-09-08 22:46:33', 'a'), (168, 'Task id: 289 changed status to: Not started', 0, '2017-09-08 22:53:33', 'a'), (169, 'Task id: 289 changed status to: In progress', 0, '2017-09-08 22:54:57', 'a'), (170, 'Task id: 289 changed status to: Done', 0, '2017-09-08 23:04:33', 'a'), (171, 'Task id: 290 changed status to: In progress', 0, '2017-09-08 23:05:42', 'a'), (172, 'Edited task: uzduoties pav', 0, '2017-09-08 23:10:39', 'a'), (173, 'Task id: 292 changed status to: In progress', 0, '2017-09-08 23:10:44', 'a'), (174, 'Task id: 289 changed status to: Not started', 0, '2017-09-08 23:12:40', 'a'), (175, 'Added new task: Naujai prideta uzduotis id: 312 ', 0, '2017-09-08 23:17:27', 'a'), (176, 'Task id: 312 changed status to: In progress', 0, '2017-09-08 23:17:33', 'a'), (177, 'Task id: 312 changed status to: Done', 0, '2017-09-08 23:17:37', 'a'), (178, 'Changed task status to: In progress', 0, '2017-09-08 23:22:43', 'a Task id: 289'), (179, 'Changed task status to: Done', 0, '2017-09-08 23:23:15', 'a Task id: 289'), (180, 'Changed task status to: In progress', 0, '2017-09-08 23:23:43', 'a Task id: 312'), (181, 'Changed task status to: Not started', 0, '2017-09-08 23:23:45', 'a Task id: 312'), (182, 'Changed task status to: In progress', 0, '2017-09-08 23:25:07', 'a Task id: 312'), (183, 'Changed task status to: Not started Task id: 312', 0, '2017-09-08 23:25:58', 'a'), (184, 'Changed task status to: In progress Task id: 312', 0, '2017-09-08 23:26:01', 'a'), (185, 'Changed task status to: Done Task id: 312', 0, '2017-09-08 23:26:04', 'a'), (186, 'Changed task status to: Not started', 312, '2017-09-08 23:31:26', 'a'), (187, 'Changed task status to: In progress', 312, '2017-09-08 23:31:29', 'a'), (188, 'Changed task status to: Done', 312, '2017-09-08 23:31:33', 'a'), (189, 'Changed task status to: In progress', 313, '2017-09-08 23:45:22', 'a'), (190, 'Changed task status to: Done', 313, '2017-09-08 23:45:28', 'a'), (191, 'Added new task: pridedu nauja', 314, '2017-09-08 23:48:42', 'a'), (192, 'Changed task status to: In progress', 314, '2017-09-08 23:52:06', 'a'), (193, 'Edited task: tikrinu ar editina', 314, '2017-09-08 23:54:26', 'a'), (194, 'Deleted task', 314, '2017-09-08 23:54:52', 'a'), (195, 'Added new task: kategorija', 314, '2017-09-09 08:55:14', 'a'), (196, 'Deleted task', 302, '2017-09-09 08:56:51', 'a'), (197, 'Added new task: vdbgfn', 316, '2017-09-09 08:57:01', 'a'), (198, 'Deleted task', 302, '2017-09-09 08:57:01', 'a'), (199, 'Deleted task', 295, '2017-09-09 08:58:05', 'a'), (200, 'Deleted task', 301, '2017-09-09 08:58:07', 'a'), (201, 'Deleted task', 293, '2017-09-09 08:58:10', 'a'), (202, 'Added new task: nnnnnnnnnnnnnnnnnnn', 317, '2017-09-09 08:58:47', 'a'), (203, 'Deleted task', 293, '2017-09-09 08:58:47', 'a'), (204, 'Deleted task', 296, '2017-09-09 09:00:10', 'a'), (205, 'Deleted task', 317, '2017-09-09 09:00:17', 'a'), (206, 'Deleted task', 317, '2017-09-09 09:00:21', 'a'), (207, 'Changed task status to: In progress', 315, '2017-09-09 09:00:21', 'a'), (208, 'Deleted task', 290, '2017-09-09 09:02:00', 'a'), (209, 'Deleted task', 312, '2017-09-09 09:02:16', 'a'), (210, 'Added new task: task ', 317, '2017-09-09 09:02:44', 'a'), (211, 'Deleted task', 312, '2017-09-09 09:02:44', 'a'), (212, 'Added new task: uzduotis ', 319, '2017-09-09 09:05:23', 'a'), (213, 'Deleted task', 313, '2017-09-09 09:07:04', 'a'), (214, 'Added new task: aaaaaaaaaaaaaaaaaaaaaa', 320, '2017-09-09 09:07:23', 'a'), (215, 'Deleted task', 320, '2017-09-09 09:08:09', 'a'), (216, 'Added new task: 321', 320, '2017-09-09 09:08:20', 'a'), (217, 'Deleted task', 321, '2017-09-09 09:12:16', 'a'), (218, 'Added new task: 322', 320, '2017-09-09 09:12:35', 'a'), (219, 'Deleted task', 322, '2017-09-09 09:13:21', 'a'), (220, 'Added new task: 323', 320, '2017-09-09 09:13:42', 'a'), (221, 'Deleted task', 323, '2017-09-09 09:29:06', 'a'), (222, 'Added new task: sdwfvefgvrv', 320, '2017-09-09 09:29:26', 'a'), (223, 'Deleted task', 324, '2017-09-09 09:29:30', 'a'), (224, 'Added new task: gthyhhthththt', 320, '2017-09-09 09:31:10', 'a'), (225, 'Deleted task', 325, '2017-09-09 09:39:02', 'a'), (226, 'Added new task: sadfsvbdg', 320, '2017-09-09 09:39:44', 'a'), (227, 'Deleted task', 326, '2017-09-09 09:40:18', 'a'), (228, 'Added new task: sdfgh', 320, '2017-09-09 09:40:31', 'a'), (229, 'Deleted task', 327, '2017-09-09 09:51:57', 'a'), (230, 'Added new task: wfg', 320, '2017-09-09 09:56:01', 'a'), (231, 'Deleted task', 328, '2017-09-09 09:56:06', 'a'), (232, 'Added new task: sdggdhfh', 320, '2017-09-11 00:06:08', 'a'), (233, 'Added new task: aaaaaaaaaaaaaaaaaaaaaa', 330, '2017-09-11 00:06:22', 'a'), (234, 'Deleted task', 330, '2017-09-12 20:15:38', 'a'), (235, 'Deleted task', 329, '2017-09-12 20:15:40', 'a'), (236, 'Deleted task', 319, '2017-09-12 20:15:42', 'a'), (237, 'Deleted task', 318, '2017-09-12 20:15:44', 'a'), (238, 'Deleted task', 316, '2017-09-12 20:15:46', 'a'), (239, 'Deleted task', 315, '2017-09-12 20:15:47', 'a'), (240, 'Deleted task', 294, '2017-09-12 20:15:49', 'a'), (241, 'Deleted task', 292, '2017-09-12 20:15:51', 'a'), (242, 'Added new task: cat3', 312, '2017-09-12 20:19:37', 'a'), (243, 'Added new task: cat2', 332, '2017-09-12 21:10:10', 'a'), (244, 'Deleted task', 311, '2017-09-12 21:13:06', 'AndriusV'), (245, 'Deleted task', 305, '2017-09-12 21:13:08', 'AndriusV'), (246, 'Deleted task', 306, '2017-09-12 21:13:10', 'AndriusV'), (247, 'Deleted task', 304, '2017-09-12 21:13:12', 'AndriusV'), (248, 'Deleted task', 303, '2017-09-12 21:13:13', 'AndriusV'), (249, 'Deleted task', 299, '2017-09-12 21:13:15', 'AndriusV'), (250, 'Deleted task', 298, '2017-09-12 21:13:16', 'AndriusV'), (251, 'Deleted task', 297, '2017-09-12 21:13:19', 'AndriusV'), (252, 'Deleted task', 288, '2017-09-12 21:13:22', 'AndriusV'), (253, 'Changed task status to: In progress', 3, '2017-09-12 21:39:59', 'AndriusV'), (254, 'Changed task status to: Done', 1, '2017-09-12 21:47:00', 'AndriusV'), (255, 'Changed task status to: Done', 1, '2017-09-12 21:47:06', 'AndriusV'), (256, 'Changed task status to: In progress', 283, '2017-09-12 22:02:31', 'AndriusV'), (257, 'Changed task status to: Done', 283, '2017-09-12 22:08:15', 'AndriusV'), (258, 'Edited task: eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee', 287, '2017-09-12 22:11:01', 'AndriusV'), (259, 'Edited task: Bbbbbbbbbbbbbbbbbbbb', 286, '2017-09-12 22:21:04', 'AndriusV'), (260, 'Edited task: Bbbbbbbbbbbbbbbbbbbb', 286, '2017-09-12 22:24:33', 'AndriusV'), (261, 'Added new task: ccccccccccccccccccccc', 333, '2017-09-12 22:25:42', 'AndriusV'), (262, 'Added new task: ddddddddddddddd', 334, '2017-09-12 22:29:38', 'AndriusV'), (263, 'Changed task status to: In progress', 334, '2017-09-12 22:29:44', 'AndriusV'), (264, 'Added new task: aaaaaaaaaaaaaaa', 335, '2017-09-12 22:30:48', 'AndriusV'), (265, 'Deleted task', 335, '2017-09-12 22:31:07', 'AndriusV'), (266, 'Changed task status to: Abab', 334, '2017-09-12 22:32:27', 'AndriusV'), (267, 'Edited task: ddddddddddddddd', 334, '2017-09-12 22:32:39', 'AndriusV'), (268, 'Edited task: dddddddddddddddooooooooo', 334, '2017-09-13 07:30:17', 'AndriusV'), (269, 'Added new task: qqqqqqqqqqqqqqq', 335, '2017-09-13 07:32:52', 'AndriusV'), (270, 'Added new task: qwe', 337, '2017-09-13 07:35:24', 'qwe'), (271, 'Changed task status to: In progress', 337, '2017-09-13 07:35:31', 'qwe'), (272, 'Edited task: Bbbbbbbbbbbbbbbbbbbbfffffffff', 286, '2017-09-13 07:53:37', 'AndriusV'), (273, 'Added new task: wedfdg', 338, '2017-09-13 07:54:24', 'AndriusV'), (274, 'Added new task: wwwwwwwwwww', 339, '2017-09-13 08:01:31', 'AndriusV'), (275, 'Edited task: wwwwwwwwwww', 339, '2017-09-13 08:02:35', 'AndriusV'), (276, 'Changed task status to: In progress', 339, '2017-09-13 08:02:39', 'AndriusV'); -- -- Indexes for dumped tables -- -- -- Indexes for table `todos_log` -- ALTER TABLE `todos_log` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `todos_log` -- ALTER TABLE `todos_log` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=277; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 3.4.9 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Apr 04, 2012 at 09:31 AM -- Server version: 5.0.95 -- PHP Version: 5.2.17 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `shadowsun7_geosg` -- -- -------------------------------------------------------- -- -- Table structure for table `tweets` -- CREATE TABLE IF NOT EXISTS `tweets` ( `id` int(8) NOT NULL auto_increment, `user` int(8) default NULL, `location` varchar(128) default NULL, `tweet` varchar(256) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12888 ; -- -- Dumping data for table `tweets` -- INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (1, 1, 'Johor Bahru, Johore', 'RT“@remelevine: Jay chou songs so nostalgic” like duh. My songs are always nice:)'), (2, 2, 'Johor Bahru, Johore', 'Ni Mak Cik India pun MINTAK KENA TUMBUK PER?! DH LANGGAR ORNG RABAK BLEH DUDUK BUAT MUKA SLUMBER NGN AKU!!'), (3, 3, 'Johor Bahru, Johore', 'Aloy replied me WHOOHOOO&lt;3'), (4, 4, 'Johor Bahru, Johore', 'So sleepy now! Whats app flood !'), (5, 5, 'Johore, Malaysia', 'I`m bulletproof , nothing to lose , fire away , fire away ~'), (6, 6, 'Johore, Malaysia', 'Fuck the hell off! What is on your mind old man??'), (7, 7, 'Johor Bahru, Johore', 'No wonder can''t solve!! Made so many careless mistake. &gt;&lt;'), (8, 8, 'Johore, Malaysia', 'Guysssss I want a baby dragon plssssss'), (9, 9, 'Johor Bahru, Johore', 'Tweeting with mack eventhough i''m right beside him . Fag . Hahahahah'), (10, 10, 'Singapore', 'Hopeless.'), (11, 11, 'Johor Bahru, Johore', '@_ohpyyy hey! My friend has been asking about the job! How is it going? :)'), (12, 12, 'Johore, Malaysia', '@IHEARTSUZY Haha. Nevermind. :)'), (13, 13, 'Singapore', '@akash_kaura @anishapri i wouldn''t mind some tuition if necessary ^^'), (14, 14, 'Johore, Malaysia', '@choccherrycandy Tx bro'), (15, 15, 'Johor Bahru, Johore', 'Honeymoon avenue &lt;3 @ArianaGrande'), (16, 16, 'Singapore', '@ladygaga I have so much love and respect for you.'), (17, 17, 'Plentong, Johor Bahru', '"@AnilGujaraTi: Dear Rapists, I''ve slept with more little kids than you ever could. Sincerely, Teddy Bear" hahaha..LOL'), (18, 18, 'Johor Bahru, Johore', 'Faster faster,i wanna sleep(:'), (19, 19, 'Johor Bahru, Johore', '@KaayyKayy hahahahaha'), (20, 5, 'Johore, Malaysia', 'You take your aim , fire away , fire away ~'), (21, 20, 'Johor Bahru, Johore', '@verachoo hohoho'), (22, 21, 'Johor Bahru, Johore', 'Jahannam nye kwn bedal kwn sndiri.'), (23, 22, 'Johor Bahru, Johore', 'Epic fail ,you lose .omg I lika this part!!'), (24, 23, 'Malaysia', 'กูไม่ใช่ภรรยายุนโฮ กูเป็นสามีแทมิน ~ #เพื่อ #กูคือแจจุง #ไม่ใช่มึงคือจงฮยอน 5555555'), (25, 24, 'Johore, Malaysia', 'WHAT COMMERCIAL BREAK =.=? #B1A4ISBACK'), (26, 25, 'Singapore', '@pinkneonchains massage it! stretch it!!'), (27, 26, 'Johore, Malaysia', '@KidEvidence @hdytz tengok dulu la! maybe aku jumpa u ols semua kat esplanade je! tak janji! aku punya turn nk kirim tiket! hehe'), (28, 27, 'Johor Bahru, Johore', 'Just woke up from\nNap'), (29, 5, 'Johore, Malaysia', '@ElmaSwag Elma , bukan kau lhh ~'), (30, 29, 'Johor Bahru, Johore', 'So excited to go back to phils. With my family. It''s my father''s 60th bday!!!'), (31, 30, 'Johor Bahru, Johore', '@janjan101'), (32, 31, 'Johore, Malaysia', 'relate?! heheh (with Jo Nathaniel at jimmie''s crib) [pic] — http://t.co/obremhvl'), (33, 32, 'Johore, Malaysia', '@kenkillslamb @fannntasy talking about salted egg flavored cotton candy.'), (34, 33, 'Plentong, Johor Bahru', 'slumber kan kau tipu aku :''('), (35, 34, 'Johor Bahru, Johore', 'All Tution cancel.pleaseseeeeee!'), (36, 35, 'Singapore', 'Vietnam- Korea music festival performance list : http://t.co/8T6N2bjI'), (37, 9, 'Johor Bahru, Johore', 'Haikal is irritating . :D'), (38, 36, 'Johore, Malaysia', 'Juz wat on earth did i ate laz nite? Hurt my tummy so....oh, i remembered, great stuff &gt;=}'), (39, 37, 'Johore, Malaysia', '@GhazaleeIbr it''s a what a disgrace siaaaaa . Tak lama lagi diorang pon bawak fixie . Malu sia aku nak bawak fixie lagi . They are so #nabei'), (40, 38, 'Johor Bahru, Johore', 'The show just ended. Sial la, i love the show. &lt;3'), (41, 39, 'Johor Bahru, Johore', 'JANGAN MENANGIS SAYANG . KU INGIN KAU RASAKAN PAHITNYA TERBUANG SIA SIA =3'), (42, 40, 'Johor Bahru, Johore', 'Haha i''m like staring at the chat box thingy for someone to post the name of the group performing. Cause I''m absolutely clueless.'), (43, 10, 'Singapore', 'I must do my homework after dinner. I must. I must. I must.'), (44, 41, 'Plentong, Johor Bahru', '@FackStifk hahaha, run for my life :D'), (45, 42, 'Riau, Indonesia', 'calon pacar nyaa @romeobilang nih kak cecile wahahaha=)) @Mutiaradea'), (46, 24, 'Johore, Malaysia', 'WHEN IS IT T_T #B1A4ISBACK'), (47, 3, 'Johor Bahru, Johore', '@AloyPang 相信这全部你都经历过,才能有现在那么完美的你:)'), (48, 43, 'Johore, Malaysia', 'Sometimes kita sibuk happy kan orang. Tapi diri sendiri macam.... K'), (49, 44, 'Johore, Malaysia', 'i really miss u....'), (50, 45, 'Kota Tinggi, Johore', '@fucklifeup yes . LOL !! so long alr'), (51, 46, 'Johore, Malaysia', '@J0shyGill The Squillari!'), (52, 47, 'Johore, Malaysia', 'Waiting for Lorax to start!^^ (with @Cursedetragedy at Eng Wah hall 3) [pic] — http://t.co/Nz5r5V6G'), (53, 9, 'Johor Bahru, Johore', '@Mackuereau you''re the annoying faggot ! Hahahahah !'), (54, 41, 'Plentong, Johor Bahru', '@sfatinfarhana alaaaa, sejarah teruk la kak fatin =='''), (55, 48, 'Johore, Malaysia', '@SugaryKittyx I never text her. She just ask me whether I''m going tonight anot.'), (56, 49, 'Johor Bahru, Johore', '@Sixthsensex cookie pls'), (57, 50, 'Johore, Malaysia', '@NityBaizura tok juara &amp; tukang karut? Apa tu???'), (58, 43, 'Johore, Malaysia', '@hanaffiehashim Ee mn ada :/'), (59, 42, 'Riau, Indonesia', 'okeeee(: RT @ALWAYSLOVEPAA : @BLINK_STARINDO min aku save ya avanya..'), (60, 51, 'Johor Bahru, Johore', 'Wa hot ahhhh'), (61, 52, 'Johore, Malaysia', 'Never lie to someone who trusted you. -''- http://t.co/M7anTqmW'), (62, 24, 'Johore, Malaysia', 'why boyfriend tweet now T_T #B1A4ISBACK'), (63, 53, 'Johor Bahru, Johore', '@hy_eming @AdeleSeah -.-'), (64, 34, 'Johor Bahru, Johore', 'Pleaseeeee cancel all my tution! :('), (65, 54, 'Johore, Malaysia', 'U getting better ? U real bestfriens ever, u really understanding me ! RT @winnywintje: Poke (cont) http://t.co/0zQ8Gh9G'), (66, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, dia tak berapa nak kesa kat tweet tapi dia sangat kesa kat luar xD'), (67, 55, 'Johore, Malaysia', '@jeanbeanwean ❤❤❤ http://t.co/5XpSLYfd'), (68, 12, 'Johore, Malaysia', '@IHEARTSUZY Listening to some songs. Playing Tetris at the same time :)'), (69, 56, 'Johore, Malaysia', '#SomePeopleNeedTo know that I have feelings too.'), (70, 57, 'Johor Bahru, Johore', 'I wished I was born much earlier... So there needn''t be so much history to learn.'), (71, 58, 'Malaysia', '@patt2534 หนีพ่อเที่ยววววววววววววววนี่หว่าาาา'), (72, 59, 'Johore, Malaysia', 'Dear person-who-designed-designshow''s-poster, why did you put in the middle of 2 tall or you may call them average height guys?'), (73, 20, 'Johor Bahru, Johore', 'Anyone on to cycle tamp eco terrain?'), (74, 60, 'Singapore', '@popsywhoopsy hi Gennie! Tmr meet where?'), (75, 61, 'Johor Bahru, Johore', 'I love p e i y i more than Haiti'), (76, 63, 'Johore, Malaysia', 'I noe u are talking bout me tak kesah lah tuhan napak pe'), (77, 64, 'Johore, Malaysia', '@fuelledbyglee i finished it today . it''s pretty fast. haha and Thats ALL that I did for homework\nso far :('), (78, 39, 'Johor Bahru, Johore', '@FuzaRdzn alahai betulah T,T'), (79, 24, 'Johore, Malaysia', 'WHEN IS THE NEXT #B1A4ISBACK'), (80, 65, 'Singapore', '#Np part of me'), (81, 55, 'Johore, Malaysia', '@maxallover skipping meals will make you fatter mel, haha!'), (82, 43, 'Johore, Malaysia', '@amirsyazwina So pgil apa Amir eh? Haha cukup lah buat sekarang. Oh still young. Nice :D'), (83, 66, 'Johore, Malaysia', '47 days more to go to enjoy my sglhood'), (84, 41, 'Plentong, Johor Bahru', 'Batu Pahat, I miss you :*'), (85, 57, 'Johor Bahru, Johore', '#SMUggers ftw'), (86, 67, 'Johor Bahru, Johore', 'HAHA bimbo-ing with christabel and yuyong'), (87, 65, 'Singapore', '@Widhiadarii Yeah. wat r ya doin now , katycat?'), (88, 68, 'Riau, Indonesia', 'new ava, wdyt?'), (89, 23, 'Malaysia', 'แซงคนนี้ ทักกูตลอดเอยย ~ ภรรยาพี่ยุนโฮ กูอยากจะบอกว่า กูเป็นสามีแทมินนะ -.-'), (90, 61, 'Johor Bahru, Johore', 'I m a mental nut case'), (91, 57, 'Johor Bahru, Johore', 'Jonghyun. :)'), (92, 49, 'Johor Bahru, Johore', '@f_cukyou cfm very hot'), (93, 43, 'Johore, Malaysia', '@EzzaSB Haha sorang je? Eleh tipu ahh. uRasa dgn siapa je skrg?'), (94, 58, 'Malaysia', '@PloYSaiizaStorY น่าสงสารจังงงง'), (95, 24, 'Johore, Malaysia', '#B1A4ISBACK .'), (96, 69, 'Singapore', 'why can''t i access http://t.co/f5zGooMa? pffft!'), (97, 70, 'Johor Bahru, Johore', 'I''m unique. I''m different. I''m limited edition because there''s only one me in the middle of billion people on this earth.'), (98, 71, 'Johor Bahru, Johore', '@song_song333 clumsy lorrrr &gt;&lt;'), (99, 58, 'Malaysia', 'ไม่ชอบหน้าก้บอกกันมาตรง ๆ อย่ามาแอ๊บใส่ ไม่ชอบบ !'), (100, 67, 'Johor Bahru, Johore', '@geniuswalnut DUN TELL U LEHH'), (101, 72, 'Johor Bahru, Johore', '“@sheneedstrength: just cooked my own dinner :D Cheese Macaroni xDD” talented! (Y)'), (102, 36, 'Johore, Malaysia', 'Gals! U can hav fun like guys do! Ignore the titles given by others...do wat u feel like! This world aint perfect anyway~'), (103, 72, 'Johor Bahru, Johore', '@TheEntertainerX u grade what?'), (104, 43, 'Johore, Malaysia', '@EzzaSB aha sorang je? Eleh tipu ahh. uRapat dgn siapa je skrg?'), (105, 42, 'Riau, Indonesia', 'cieee kak yulia nyanyinya keceeee abiiis kemaren:D @dvurs'), (106, 73, 'Singapore', '@suki_teh blehhhh :b'), (107, 61, 'Johor Bahru, Johore', 'I lose forever to p e i yi'), (108, 74, 'Johore, Malaysia', 'I think i''m so lame, went back playing coin dozer.'), (109, 76, 'Johore, Malaysia', 'Lucky! My cabbing buddy also doing OT today!!!! Later share cab hehee....\nI''ll work until 6:45 =)'), (110, 41, 'Plentong, Johor Bahru', '@FackStifk Wonder Girls &lt;3'), (111, 67, 'Johor Bahru, Johore', '@WingYan28 HAHA its not good but its what i wanted'), (112, 23, 'Malaysia', 'กะจะงดซักเจ็ดวันแต่ก็ทำไมได้ ~ RT @gugroupb ไม่ได้แตะโซเชี่ยวเน็ตเวิร์ควันหนึ่งคนกรุ๊ปบีแทบจะขนาดใจ 555 #gugroupb'), (113, 24, 'Johore, Malaysia', 'DYING ALR B1A4 WHR R U #B1A4ISBACK'), (114, 62, 'Johor Bahru, Johore', 'Alah.. Meh hug.. Hahahah! RT“@tweetlipxz: @ForeverChronic Sedih la you always scold me one.....”'), (115, 77, 'Johore, Malaysia', '@bangkenvi ahahaha u also !!!'), (116, 13, 'Singapore', '@akash_kaura @anishapri should do some yoga for increased flexibility too I guess (Y)'), (117, 70, 'Johor Bahru, Johore', 'God puts people in your life for a reason, and removes them from your life for a better reason.'), (118, 78, 'Johore, Malaysia', 'YEAH! LORAX HERE I COME!'), (119, 79, 'Plentong, Johor Bahru', 'aww. tergoda dengan mat salleh depan kite &gt;&lt;'''''), (120, 72, 'Johor Bahru, Johore', '@awesomelady98 must tell u meh? :x'), (121, 5, 'Johore, Malaysia', '#np Sweetest thing'), (122, 80, 'Johor Bahru, Johore', 'omg!!!!! bil api smpai RM 600 !!! speechless \n:[ yang tinggal kat rumah ni 4 org je kot... grr..'), (123, 61, 'Johor Bahru, Johore', 'I m a mental disabled person'), (124, 81, 'Johore, Malaysia', '@ohmysofiaa im at ECP! Where you?'), (125, 64, 'Johore, Malaysia', '@jolihappygirl98 that''s his own opinion on how to use Facebook! -.- what an old man.'), (126, 43, 'Johore, Malaysia', '@amirsyazwina Haha eleh. Syazwina tu mst nama awek kan. Erin, taman daya, 18. Enough right? Haha'), (127, 24, 'Johore, Malaysia', 'OGMGMGM FUCK #B1A4ISBACK'), (128, 82, 'Malaysia', '@ununnize ชิลชิลละนะ 5555'), (129, 52, 'Johore, Malaysia', 'seriously wdf is wrong with you sia ? Why you keep asking me to eat ? NBCB I EAT ALRDY RYTE , Stop everytime u come out tell me eat can'), (130, 83, 'Johor Bahru, Johore', '@nurulshaazlynn weii . ''in My Sleep'' . THAT''S MINE :('), (131, 84, 'Kota Tinggi, Johore', 'Though the job title is Recruitment Officer, but there''s challenging part behind this simple title.'), (132, 41, 'Plentong, Johor Bahru', '@sfatinfarhana haha, oke la daripada along tu. dia ngan bebudak mana ngam, macam singa je xD'), (133, 49, 'Johor Bahru, Johore', 'I did it I''m gonna do it tmr ignore'), (134, 39, 'Johor Bahru, Johore', '@LeeyaSygg ye ye ye ye ye -.-'), (135, 21, 'Johor Bahru, Johore', 'Walls ni pondan mkn kwn nye pmpn mcm knl.'), (136, 72, 'Johor Bahru, Johore', '@awesomelady98 sorry no cure!'), (137, 85, 'Johore, Malaysia', 'Sorry cant join you for swimming'), (138, 39, 'Johor Bahru, Johore', '@FuzaRdzn malaysia yang sedih , bukan rakyatnye . haha'), (139, 24, 'Johore, Malaysia', 'OH MY FUCKING GOD #B1A4ISBACK'), (140, 12, 'Johore, Malaysia', '@IHEARTSUZY Ouh. It''s my little brother''s turn to use the comp. I was watching TV. :)'), (141, 41, 'Plentong, Johor Bahru', '@zulailizulkifli hahaha, blushing I xD'), (142, 86, 'Plentong, Johor Bahru', 'Jelmaan Kamal Artatuk ialah AI.. I guess.. mmm..'), (143, 19, 'Johor Bahru, Johore', 'I WANT TO KILL EVERYBODY IN THE WORLD!!!!\n\nSKIRLLEX ROCKZ!!!'), (144, 72, 'Johor Bahru, Johore', '@awesomelady98 have! Ask your brain. Even it says it''s a lie! :D'), (145, 87, 'Johore, Malaysia', 'Edit the photo until so pekcek ! Waste my time sia ! ROBERT I HATE YOU'), (146, 88, 'Plentong, Johor Bahru', '@BesorSokmo @MohdZahriSafri @douspeak x jd nk turun.... :p'), (147, 24, 'Johore, Malaysia', 'OMG #B1A4ISBACK'), (148, 89, 'Johore, Malaysia', '@Estrella_sL LOL so is 3 exams or just 1? I''m confused xD'), (149, 13, 'Singapore', '@pinkfrost5 apart from the scariness, was The Woman In Black good or was it lame?'), (150, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, dia kenal kau ke? kalau kau tak kenal dia, aku rasa dia pun tak kenal kau'), (151, 90, 'Singapore', 'Just finished the last lecture with my #nafasas students... Gonna miss them... All the best...'), (152, 91, 'Johor Bahru, Johore', 'Dropped again :/'), (153, 92, 'Johore, Malaysia', '@kucengmiow bro!!hahah3.01 aku this sat...hahaha...'), (154, 93, 'Johore, Malaysia', 'Thanks to Huda. I''m addicted to aglio olio . I feel like eating it every single day:('), (155, 94, 'Johor Bahru, Johore', '@Juper_Sunior Can design our travel journal or must write until very neat on foolscap?0.0'), (156, 95, 'Johor Bahru, Johore', 'Turn all the lights on. I need some lights it''s way too dark.'), (157, 42, 'Riau, Indonesia', 'jam berapa min? RT @putihabuabuINDO Nanti malem INSYALLAH kuis follback dari barbie @mutiaradea nya malem ya. Sebelum Kuisfollback dari'), (158, 24, 'Johore, Malaysia', 'PERFCT OMG #B1A4ISBACK'), (159, 96, 'Johore, Malaysia', '@_jamietan good luck'), (160, 97, 'Pulai, Johor Bahru', 'goold luck kela .bariah. nana. fadz'), (161, 19, 'Johor Bahru, Johore', '@KaayyKayy hahaha finally.....'), (162, 37, 'Kota Tinggi, Johore', 'First of the Year'), (163, 82, 'Malaysia', 'แค่นอนเหงาเดียวดายไม่มีเทอเหมือนเดิม'), (164, 74, 'Johore, Malaysia', 'On bus 222. Going to eat! Yeah! Haha.'), (165, 98, 'Johor Bahru, Johore', 'Stop stop breaking my heart'), (166, 99, 'Johor Bahru, Johore', '@Muz_zamil aku rase tak'), (167, 44, 'Johore, Malaysia', 'Gtg im feeling a little dizzy...at night im gonna go online again see u...'), (168, 80, 'Johor Bahru, Johore', '#PeopleIWantToMeet ****N lol..'), (169, 100, 'Johore, Malaysia', 'At Isetan Supermarket — http://t.co/SYOQWoDQ'), (170, 101, 'Malaysia', 'Happy Birth Day : LiverpoolFC #YNWA ♥ ♥'), (171, 94, 'Johor Bahru, Johore', 'I don''t wanna go..T_T'), (172, 97, 'Pulai, Johor Bahru', 'good luck kela,bariah .nana.fadz'), (173, 43, 'Johore, Malaysia', '@EzzaSB Me? okay tak. Haha'), (174, 102, 'Singapore', 'wah Headache when waking up from my nap.'), (175, 103, 'Johor Bahru, Johore', 'Screw it la everytime also no....come on pls just once can I go out'), (176, 92, 'Johore, Malaysia', '@kucengmiow btw fazzer blm cnfrm ah dok...abg aku pkai moto tu hari2 for work...'), (177, 40, 'Johor Bahru, Johore', 'Oh b1a4! The one I like is in yellow :D'), (178, 104, 'Johore, Malaysia', '@Sya_miza x gi tanah abang'), (179, 97, 'Pulai, Johor Bahru', 'only 7minutes.. go k9 netball team'), (180, 58, 'Malaysia', '@patt2534 ไอย่ะ ๆๆๆๆๆๆๆ'), (181, 106, 'Johor Bahru, Johore', 'Motherfucking Malays playing soccer at the basketball court . Gtfo .'), (182, 24, 'Johore, Malaysia', 'BABY IM SORRY OMG FANCHANTS #B1A4ISBACK'), (183, 107, 'Singapore', '@yapminghui @PostHairFlick beating off is a form of cardio too.'), (184, 108, 'Johore, Malaysia', 'I saw derrick from 4E 2010 and he recognised me also :)'), (185, 109, 'Johore, Malaysia', 'Fooddddddddddddd. (with 欧阳 at Victor''s Kitchen) — http://t.co/QMyCQqQA'), (186, 11, 'Johor Bahru, Johore', 'Hopefully I will not be late for work.'), (187, 18, 'Johor Bahru, Johore', 'Slack? Okay lor (:'), (188, 37, 'Kota Tinggi, Johore', '"@GhazaleeIbr: @_hfque Hahahaha! No worries, they are Trend Hopers, Fuck Trend hopers." fcukyeah son ! ;D'), (189, 97, 'Pulai, Johor Bahru', 'only 7minutes.. go k9 basketball team'), (190, 73, 'Singapore', '@suki_teh i''m too lazy to do!! my chinese got 2 freaking compos that is still untouched :p'), (191, 58, 'Malaysia', '@PloYSaiizaStorY อ่า ๆ เพิ่งรุ้กะแกนี่แล'), (192, 111, 'Johore, Malaysia', '@ZivanChua what time gym tmr'), (193, 39, 'Johor Bahru, Johore', 'dunia belum berakhir bila kau putuskan aku , banyak lagi teman temanku di sini menemaniku :'')'), (194, 112, 'Malaysia', 'หาดใหญ่ อิอิ'), (195, 23, 'Malaysia', 'และอาจจะไม่ใช่เขาคนเดียวเหมือน ที่เราบอกว่าคิดถึง RT @realufofacts อาจจะไม่ใช่เราคนเดียว ที่เขาบอกว่าคิดถึง #realufofacts'), (196, 13, 'Singapore', '@pinkfrost5 aw, was considering watching it. haha kthx'), (197, 113, 'Johore, Malaysia', '@YilingGumshoe chey.. I thought you so good, come see your lao pa..'), (198, 114, 'Malaysia', 'ปองโก้ ; เพอรี่'), (199, 115, 'Johor Bahru, Johore', 'Haiyuuuuu... I shouldn''t have slept &gt;: now I''ll be home late'), (200, 41, 'Plentong, Johor Bahru', '@FackStifk 4Minute &lt;3'), (201, 116, 'Riau, Indonesia', 'gk da slesai na dx., mgkn bln dpn x bru slesai RT @Sella_YN: Kapan selesai kaRT @tritamaraa: oke :) RT Sella_YN: @tritamaraa hahah sama2 kk'), (202, 13, 'Singapore', '@natalieehuan hurray (Y)'), (203, 23, 'Malaysia', 'และอาจจะไม่ใช่เขาคนเดียวเหมือนกัน ที่เราบอกว่าคิดถึง RT @realufofacts อาจจะไม่ใช่เราคนเดียว ที่เขาบอกว่าคิดถึง #realufofacts'), (204, 65, 'Singapore', '#np firework'), (205, 117, 'Johore, Malaysia', '@AndreasTJJ @whattheasyraf shadafakap'), (206, 102, 'Singapore', 'wah, now a days, so many stuff got to do with NCC, wah cialat!'), (207, 118, 'Johore, Malaysia', 'Sun is out again.. Boo'), (208, 82, 'Malaysia', 'แค่ยอมรับในความเปลี่ยนแปลง :)'), (209, 41, 'Plentong, Johor Bahru', '@FackStifk Shinee &lt;3'), (210, 119, 'Johor Bahru, Johore', 'Just woke up from a long afternoon nap!! :)'), (211, 117, 'Johore, Malaysia', 'NEW WORD : SHADAFAKAP HAHAHAHHA'), (212, 99, 'Johor Bahru, Johore', '@Muz_zamil yupp'), (213, 120, 'Johore, Malaysia', '“@AshRald: The ASSUMING word.. by mindfairy http://t.co/WaUCLwgE” nice one :) @MaVicky04 @Krztine_426 @LheaM28 @siangieako @biebiewan'), (214, 41, 'Plentong, Johor Bahru', '@FackStifk G.Na &lt;3'), (215, 121, 'Johore, Malaysia', 'So happy I got to talk to em today. :)'), (216, 122, 'Johore, Malaysia', '@attyanlove18 もちろんさー☆*:.。. o(≧▽≦)o .。.:*☆'), (217, 123, 'Riau, Indonesia', 'aaaaccccckkkkhhhh....\nlpa bwa charger....\nm''npis ni btray lptop.........'), (218, 111, 'Johore, Malaysia', 'Stupid @fattyfattyheha don''t want sing .'), (219, 124, 'Johore, Malaysia', '@Rosszaliah ohh aku kt spize ngn yahya uh..pape aku text'), (220, 10, 'Singapore', '@Joreen_Teo i thought 1 day nvr go = out'), (221, 11, 'Johor Bahru, Johore', '@ii_iime hold your home and lock button tgt.'), (222, 102, 'Singapore', 'SIBEH TENG-TENG!'), (223, 39, 'Johor Bahru, Johore', '@FuzaRdzn kan ? haha adyeb moy pun dah tukar couple aku aceni lagi --'), (224, 19, 'Johor Bahru, Johore', '@ZaineYing @kaayykayy hahahahaha.... Willy fapping.... Hahahahaha OMFG.... Hahahahaha fake la....'), (225, 43, 'Johore, Malaysia', '@amirsyazwina Habis nama siapa? School?last year smk taman daya 3'), (226, 39, 'Johor Bahru, Johore', '@LeeyaSygg rindu awak jugak yayang &lt;3'), (227, 62, 'Johor Bahru, Johore', 'Wah! Angkat maha angkat ehk! Im just a normal guy :) RT@tweetlipxz: @ForeverChronic yay!!!! abang hot nak kasi hug :'') hahahahaha”'), (228, 125, 'Johore, Malaysia', '@rockandcow hahaha. like a fast!!!'), (229, 126, 'Johor Bahru, Johore', '@iSmackYour_BUTT you idiot!'), (230, 127, 'Johor Bahru, Johore', 'Can someone give me and ans wat is AGREE TO DISAGREE ..!!!!!!!!'), (231, 117, 'Johore, Malaysia', '@burntmittens speaking about legs....'), (232, 43, 'Johore, Malaysia', '@EzzaSB Eelh terpaksa haha'), (233, 41, 'Plentong, Johor Bahru', '@sfatinfarhana haha, budak kecik memang la, kalau budak umor macam alia memang kena maki la kalau tak siap keje sekolah xD'), (234, 61, 'Johor Bahru, Johore', 'My account just got hijacked by a mental retard'), (235, 83, 'Johor Bahru, Johore', 'Kenapa Korang Nak Maki Maki?\nDah Tak ingat Ugama Ke?\nDari Kecil Sampai Ke Tua Bangka Pn Tak Serik Serik Orang Mengajar Pasal Halal Dan Haram'), (236, 128, 'Singapore', 'ok i use phone le nth to do but i think i got alot things forget to do lol'), (237, 11, 'Johor Bahru, Johore', 'Should I? Yes no?'), (238, 124, 'Johore, Malaysia', '@halimlatiff @Rosszaliah astagh..dirty ah...hahahaha!!'), (239, 48, 'Johore, Malaysia', '@SugaryKittyx never eh.'), (240, 129, 'Plentong, Johor Bahru', '@Normfasz_NF bersabar lah yee :)'), (241, 130, 'Plentong, Johor Bahru', '@ahmadsyauqiPO yukk :D'), (242, 43, 'Johore, Malaysia', '@iAmyliaNatasya Hi amy you still young. Pretty much. Bkt indah? Jauhnya haha'), (243, 125, 'Johore, Malaysia', 'yippee. finally the contract is out today. left with the agent code. ^^'), (244, 82, 'Malaysia', '@Kkeez จองตั๋วกันเลย 5555'), (245, 131, 'Johore, Malaysia', 'thats frends..omg so touchedT.T'), (246, 132, 'Johore, Malaysia', '@yinqxuan kick you off the cliff!!!'), (247, 133, 'Johor Bahru, Johore', 'ぶるぉっこるぃぃぃぃ'), (248, 134, 'Johore, Malaysia', '@Lovedroses Don''t say out loud la! Later my secret is out.'), (249, 135, 'Johor Bahru, Johore', 'The Sun is shining so brightly at me:P'), (250, 136, 'Johore, Malaysia', '@LydiaLQY no luh you. :) chillax.'), (251, 137, 'Johor Bahru, Johore', 'Filled with love cookies made by darling @JerineToh . Love it to the max! ❤ http://t.co/C2CtENsM'), (252, 43, 'Johore, Malaysia', '@yarkkkkpashhhaa awekk rindu lama taktweet'), (253, 61, 'Johor Bahru, Johore', 'People like her talk with double space bar and don''t even know how to spell properly'), (254, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, sape tak kenal laili? juara racing kat masa kempen lalu lintas xD'), (255, 138, 'Johore, Malaysia', 'Gonna sleep for awhile at Tiffany''s house. So tired'), (256, 111, 'Johore, Malaysia', '@fattyfattyheha just sing no one cares'), (257, 139, 'Singapore', '@Zophia98 Okay boss. Sleepy pig go sleep liao. people dont want me le :((('), (258, 23, 'Malaysia', '@lbadz_ แรงตัลหลอดดด ~'), (259, 82, 'Malaysia', '@ununnize ไปดิ'), (260, 132, 'Johore, Malaysia', '@junsui_kokoro wanna run or cycle with us?? XD'), (261, 140, 'Plentong, Johor Bahru', 'Bought this just because super junior is on the cover. Wait, *ahem* actually ita because lee hyukjae is on it. Bwahaha http://t.co/h8uMRI5e'), (262, 141, 'Johor Bahru, Johore', 'Haha.. I matured a lot i think.... I partially forget my brat / spoiled fussy attitude.. Hehehe #goodMAN'), (263, 142, 'Johore, Malaysia', 'Shove aside your ego &amp; look at the true reality of US. Isn''t it enough to prove you anything? Not even a small thing? Open up your eyes la!!'), (264, 143, 'Johor Bahru, Johore', 'Craving for mountain dew .'), (265, 144, 'Johor Bahru, Johore', 'The only thing I do at home is eating non stop. K random'), (266, 132, 'Johore, Malaysia', '@jaeribeanz left and right leh??'), (267, 145, 'Johore, Malaysia', '@iamanrose hanji hun daso'), (268, 139, 'Singapore', '@LAMSHITKAYYYY_ poly like that one marhx :P'), (269, 43, 'Johore, Malaysia', '@hanaffiehashim Okay just ignore. You da mkn ?'), (270, 24, 'Johore, Malaysia', 'OMG I JUST DIED #B1A4ISBACK'), (271, 82, 'Malaysia', 'คืนนี้ ดูจอห์นคาร์เตอร์ #แฮ่'), (272, 146, 'Johore, Malaysia', '@LiveLoveNiall zayn? :OO'), (273, 147, 'Johore, Malaysia', '@ahhhyeeel kau pegy besok?'), (274, 51, 'Johor Bahru, Johore', '@pairuuz main soccer?'), (275, 148, 'Johore, Malaysia', '@marvinsaw korak! ang yabang nadadagdagan through time! :)'), (276, 132, 'Johore, Malaysia', '@hhnnaa waaa gratd! I haven applied yet xD'), (277, 131, 'Johore, Malaysia', 'u make me touched..T.T'), (278, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. How about you? :)'), (279, 149, 'Johore, Malaysia', 'awww boss says he like my retro sku shooz'), (280, 63, 'Johore, Malaysia', '@SyazNami get we''ll soon babe'), (281, 150, 'Johor Bahru, Johore', 'You yourself know you are the one .'), (282, 141, 'Johor Bahru, Johore', 'LADY GAGAwill be in the Philipines.. Great.. Now that im not there... Grrrr'), (283, 131, 'Johore, Malaysia', '义气'), (284, 74, 'Johore, Malaysia', 'I believe that Singapore is smart.'), (285, 117, 'Johore, Malaysia', '@zomgitsnawar HAHHAHA COPYCATTTTTTT'), (286, 151, 'Johor Bahru, Johore', '@Changi..terminal 3'), (287, 152, 'Johore, Malaysia', '@lynetteteo98 haha true that! Like big time rush'), (288, 39, 'Johor Bahru, Johore', '@FuzaRdzn jodoh ? jangan nak jodoh sangat --'' . aku pang kau kang =3'), (289, 153, 'Riau, Indonesia', 'gak hujan lagi kayak nya ni.!'), (290, 74, 'Johore, Malaysia', 'I love Taiwan like shit. Hehe.'), (291, 140, 'Plentong, Johor Bahru', 'All eyes on choi siwon? #bitchplease my eyes are on lee hyukjae and lee hyukjae only! #pfft http://t.co/14JzM19g'), (292, 154, 'Singapore', 'Tensed &amp; havin a bit of discomfort in my eyes due 2 conferences all day,need 2 de-stress &amp; sooth my eyes...*lookin 4 @linekrami ''s profile*'), (293, 41, 'Plentong, Johor Bahru', '@AjimAnis kakak aku xD'), (294, 42, 'Riau, Indonesia', 'besok ya min? RT @putihabuabuINDO Siapa yang besok mau ikutan KuisFollback? Yang ngefollback Barbie @mutiaradea lohh! Yang mau ikutan rt don'), (295, 43, 'Johore, Malaysia', 'Malam ni malam khamis. Khamis malam apa?'), (296, 155, 'Johor Bahru, Johore', 'fεει ιίke εᎯττίɴg dίɱ SUɱ ⓓⓞɴ"τ κɴow ϓ\n(⊙﹏⊙)(╯ˍ╰)'), (297, 144, 'Johor Bahru, Johore', 'I Love Food. Yummy. Random'), (298, 74, 'Johore, Malaysia', 'I want to go taiwan to try out their night markets. Heheheheh.'), (299, 99, 'Johor Bahru, Johore', 'Window Shopper :)'), (300, 131, 'Johore, Malaysia', '友情会永远在。。爱情是会走的。。别指望爱情。。'), (301, 140, 'Plentong, Johor Bahru', '@selvan_12 alrdy watch. Neva gonna watch it ever again. Gross lah.'), (302, 73, 'Singapore', '@suki_teh i finished eng maths sci. literature is group. history &amp; chi i lazy do'), (303, 24, 'Johore, Malaysia', 'MY HEAD IS FULL OF GONGCHAN ALKJALKJDALKAS HOW? #B1A4ISBACK'), (304, 156, 'Johore, Malaysia', '@sliteyedsyaf its okay, I graduated from a science course with 0 knowledge :)'), (305, 157, 'Johor Bahru, Johore', 'Everytime i do homework, i will always feel like sleeping. Idk why.'), (306, 98, 'Johor Bahru, Johore', '@FunisLifeisFun hahahah!!! Maybe i shall try? But to who? :P chey'), (307, 58, 'Malaysia', '@PloYSaiizaStorY ฮ่า ๆ ทีแอลลล คือไรฟ่ะ งง 555'), (308, 158, 'Malaysia', 'Alhamdulillah.. '), (309, 117, 'Johore, Malaysia', '@burntmittens speaking about dicks'), (310, 146, 'Johore, Malaysia', 'well shit you.'), (311, 41, 'Plentong, Johor Bahru', 'let''s have a heart to heart to heart :D'), (312, 160, 'Johor Bahru, Johore', 'I''m at Red Round Hall For Bmx (Singapore) http://t.co/YT0dji2b'), (313, 146, 'Johore, Malaysia', '@Divya__14 TAKE A PIC TAKE IT TAKE IT NOWWWWWWWWWWWW'), (314, 161, 'Johore, Malaysia', 'I''m at eServ Service Center (Singapore) http://t.co/0M4l2Rfz'), (315, 65, 'Singapore', '#np teenage dreams'), (316, 162, 'Pulai, Johor Bahru', 'Dh agak pong....kau mesti bleh punya.... http://t.co/9Nho0exF'), (317, 117, 'Johore, Malaysia', '@JoleneAwesomey you also cut short hair?'), (318, 163, 'Johor Bahru, Johore', 'I''m at South View LRT Station (BP2) (Singapore, Singapore) http://t.co/3V9zrVSJ'), (319, 61, 'Johor Bahru, Johore', 'Mental retard just came out from the toilet after a battle with herself @PeiYi2706'), (320, 164, 'Malaysia', 'BM 6-7 (@ Maths Clinic Setiawangsa) http://t.co/Js7BbKdA'), (321, 159, 'Johore, Malaysia', '@teddyycherryy @valery_meow2552 OMG NO NO FREAK YOU.'), (322, 165, 'Johor Bahru, Johore', 'Seriously? Why are they so inconsiderate? Got 2 children so what?! Can anyhow kick people izzit?! Zz -.-'), (323, 166, 'Johor Bahru, Johore', 'I''m at Blk 506 Choa Chu Kang St 51 (Singapore) http://t.co/T70FetFl'), (324, 146, 'Johore, Malaysia', '@LiveLoveNiall oh thank you! :D X'), (325, 167, 'Plentong, Johor Bahru', 'SPRAY! ^_^y (@ Sek Men Sultan Ibrahim (SIGS)) http://t.co/EJWb6q0k'), (326, 82, 'Malaysia', '@Kkeez อดเลย 5555'), (327, 168, 'Johore, Malaysia', 'I''m at Parkway Parade (Singapore) w/ 8 others http://t.co/JJcOrzPb'), (328, 42, 'Riau, Indonesia', 'sebelumnya kakak pernah main difilm apa kak? *please dijawab :) @Mutiaradea'), (329, 169, 'Johor Bahru, Johore', 'I''m at Chong Pang (Yishun, Singapore) http://t.co/OfyUvf2s'), (330, 144, 'Johor Bahru, Johore', 'The Lazy Song is my current situation.'), (331, 170, 'Johore, Malaysia', 'iˈskeip - #nofilter @ HarbourFront Centre http://t.co/Yd22hadd'), (332, 171, 'Johor Bahru, Johore', 'I''m at Eastpoint Mall (Singapore) w/ 4 others http://t.co/KF6P3PWN'), (333, 172, 'Riau, Indonesia', 'I''m at Songs of the Sea (Sentosa Island, Singapore) http://t.co/NUUTO918'), (334, 104, 'Johore, Malaysia', '@Sya_miza shopping apa kat bndung?'), (335, 173, 'Johor Bahru, Johore', '@JayneRozario hahaha he''s\nSuch a sad sack.'), (336, 60, 'Singapore', '@iAttachedToKpop where to meet tmr????'), (337, 174, 'Johore, Malaysia', 'I''m at Strictly Pancakes (Singapore, Singapore) w/ 4 others http://t.co/srYytykI'), (338, 175, 'Malaysia', 'I''m at Asian Hotel @ Hadyai (Hat Yai, Songkhla) http://t.co/Exp87FR5'), (339, 176, 'Johor Bahru, Johore', 'Circuit trainin Is (y) compared to suicides :)'), (340, 123, 'Riau, Indonesia', 'aaaaccccckkkkhhhh....\nonyet aiii\nlpa bwa charger....\nm''npis ni btray lptop.........'), (341, 140, 'Plentong, Johor Bahru', '@yenyin33 hahaha i also bought 8days cause ryeowook donghae siwon and eunhyuk was on the cover! But most things inside are bout siwon -.-'), (342, 168, 'Johore, Malaysia', 'I''m at Banquet @ Parkway Parade http://t.co/7zhuhQKf'), (343, 39, 'Johor Bahru, Johore', '@FuzaRdzn perli eh ? perli eh ? brrrrrbbbb =3'), (344, 177, 'Johor Bahru, Johore', 'I''m at Blk 632 Choa Chu Kang North 6 (Singapore) http://t.co/iq6uxdOs'), (345, 159, 'Johore, Malaysia', '@teddyycherryy http://t.co/MG4Pgw7E'), (346, 178, 'Malaysia', '#squaready Hello hatyai!! @ Central Hatyai (เซ็นทรัล หาดใหญ่) http://t.co/uk9lTEcU'), (347, 19, 'Johor Bahru, Johore', '@KaayyKayy @zaineying WTF seriously gross..... No other place to do his fapping.... Wah sick sia... I think he on to u.... Becareful... Lol'), (348, 179, 'Johore, Malaysia', 'I''m at Sim Lim Square (Singapore) w/ 3 others http://t.co/p0dzQRwb'), (349, 180, 'Johor Bahru, Johore', '@AllySugarSepet nak nak nak!'), (350, 181, 'Johor Bahru, Johore', 'Studying with @ShuMei28 now!! (@ McDonald''s) http://t.co/qdzEap17'), (351, 182, 'Johor Bahru, Johore', 'The shooting is tommorow. And its from 7.45-3pm . Hope got my clear face in the show ;D'), (352, 183, 'Riau, Indonesia', 'Dewasa gak hanya tentang kata-kata bijak, dewasa juga harus bisa mengalah.'), (353, 184, 'Johor Bahru, Johore', 'I''m at Terminal 3 (Singapore, Singapore) w/ 13 others http://t.co/36YyLHft'), (354, 185, 'Johor Bahru, Johore', 'Just came back from buying ingredients for chocolate cake with sis! @MiraAtiqah'), (355, 119, 'Johor Bahru, Johore', '@okaygladys LOL!! PHOTOOOO!'), (356, 148, 'Johore, Malaysia', 'Can''t wait to see my OB in 3 weeks!!! I think i''ve suffered enough from this hormonal imbalance..time to cure it! :)'), (357, 186, 'Johore, Malaysia', '@stooffi @cyberharpielady @xhopingstars Thanks! You too &lt;3'), (358, 52, 'Johore, Malaysia', 'I want you back T_____________________T .'), (359, 68, 'Riau, Indonesia', 'hehe thanks sandraaaa RT @Sandra_Shansan: comek :'') RT @IlfaAzlyani: new ava, wdyt?'), (360, 187, 'Johore, Malaysia', 'I''m at Nihon Muza Kallang Leisure (Singapore) http://t.co/13Qch713'), (361, 188, 'Kota Tinggi, Johore', 'Thanks for the day out ♥♥ @NamirahAzm_n @Rynwcz_ &amp; Ezzati ~ sayaang korang . xoxo &lt;3'), (362, 189, 'Johore, Malaysia', 'I''m at Bedok Temporary Bus Interchange (Singapore, Singapore) http://t.co/rsUTbKV0'), (363, 150, 'Johor Bahru, Johore', 'Who won''t get angry that you offer cigg t their own friend? Even though they are the one who want, but you can say no.'), (364, 68, 'Riau, Indonesia', 'hehe thanks sandraaaa RT @Sandra_Shansan: comek :'') RT @IlfaAzlyani: new ava, wdyt? [Like it? http://t.co/8ABDJi6P ]'), (365, 190, 'Johore, Malaysia', '@whatyouwantnow wht ka kia-.-'), (366, 144, 'Johor Bahru, Johore', 'I wanna go out... But no money... Sad life :('), (367, 158, 'Malaysia', '@_afrinajff Coordinate Geom. &amp; simultaneous.'), (368, 191, 'Plentong, Johor Bahru', 'HAHAHAHAHAHAHAHAHAAHHAHAHAAHAHAH KELAKARR!'), (369, 12, 'Johore, Malaysia', '@IHEARTSUZY Ouh I see. Haha. :)'), (370, 192, 'Plentong, Johor Bahru', 'Wahhhhhh :) (@ Danga Flyover) http://t.co/rufncQgq'), (371, 193, 'Johor Bahru, Johore', 'passing through (@ Sengkang Bus Interchange w/ 4 others) http://t.co/NPNO9F5N'), (372, 194, 'Johor Bahru, Johore', 'Me when I was young. :D http://t.co/h9B9b6ze'), (373, 61, 'Johor Bahru, Johore', 'She is laughing at her own retardedness'), (374, 195, 'Johore, Malaysia', 'I''m at Queenstown MRT Station (EW19) (Singapore, Singapore) http://t.co/bYudMm60'), (375, 41, 'Plentong, Johor Bahru', '@sfatinfarhana haha, sifat keibuan memang la nampak tapi dia patot save bebelan dia untuk anak dia. ni tak, dia bebel lebih dahsyat dari mak'), (376, 42, 'Riau, Indonesia', 'thanks for 376 followers! ingat ya tgl 24 mimin bakal ngadain kuisfollowback buat 5 org,karna lagi anniv tu hehe:p'), (377, 39, 'Johor Bahru, Johore', '@FuzaRdzn aku pun dpt txt tu --'), (378, 68, 'Riau, Indonesia', 'haaaaa'), (379, 157, 'Johor Bahru, Johore', 'The weather hot like asdfghjkl.'), (380, 196, 'Johore, Malaysia', '@Ruotinqqqq @fairoz97 free pour'), (381, 43, 'Johore, Malaysia', 'Gadis semasa berdansa ke apa? Haha'), (382, 197, 'Johor Bahru, Johore', 'Racism..!! This is the place..! (@ GE Aviation Services-ATI) http://t.co/DEapp1a4'), (383, 130, 'Plentong, Johor Bahru', 'Semalam JB pukul 5pm macam pukul 7pm. Nari pukul 5pm macam 12pm. Makanya, makan jakgi kita panggil lunch. Lunch yukk :D'), (384, 12, 'Johore, Malaysia', 'I''m Hungry. :( Food! Where are you?'), (385, 146, 'Johore, Malaysia', '@colourfultapes Yesssss i want to meet you too /sobs'), (386, 198, 'Johore, Malaysia', 'I''m at Topshop Raffles City (Singapore, Singapore) http://t.co/8dO3czQV'), (387, 199, 'Johor Bahru, Johore', 'blue sky @ Ryan''s Paradise http://t.co/2qOvr6Vc'), (388, 200, 'Johore, Malaysia', 'YUM (@ Nando''s) http://t.co/gnERF65H'), (389, 201, 'Johore, Malaysia', 'Ejection systolic heart murmur. Haix:(( what wrong with me?'), (390, 118, 'Johore, Malaysia', '@rohanitarohin their building design standard quite good I realize. Design perspective.'), (391, 61, 'Johor Bahru, Johore', 'Just my luck to be wearing the same colour as her right now no wonder i feel so uncomfortable the whole day'), (392, 202, 'Johore, Malaysia', 'Fried fish soup :'') (@ Mr Teh Tarik Eating House) http://t.co/oPdk1hSL'), (393, 163, 'Johor Bahru, Johore', 'I''m at Crystal''s Bedroom  (-, -) http://t.co/CwjiJPyc'), (394, 87, 'Johore, Malaysia', 'My brain no energy already . Use overload today ! STUPID DREAMWEAVER !!!!! Y U SO HARD !'), (395, 93, 'Johore, Malaysia', '@xNurulHudax ikr. Dimple Aku cacat satu side Ade satu side Takde Hahahahahahhahaha'), (396, 159, 'Johore, Malaysia', 'YOU MADE MY DAY CHERRY. SHE FURTHER PEFECTED IT❤ http://t.co/d5ZvslpS'), (397, 13, 'Singapore', 'BOOM SHAKALAKA'), (398, 158, 'Malaysia', '@syaimaaaa ohh okay. Thanks for the info can''t wait!!!'), (399, 193, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre (Singapore) w/ 14 others http://t.co/DLzSIBKN'), (400, 203, 'Johor Bahru, Johore', 'I''m at Woodlands Drive 52 (Singapore, Woodlands) http://t.co/1X2NpmMG'), (401, 191, 'Plentong, Johor Bahru', 'Bye Angsanaaaaa! :D (@ Plaza Angsana w/ 8 others) http://t.co/pCGJLG4M'), (402, 41, 'Plentong, Johor Bahru', '@mfaiz_za haha, mana bole pakai. dosa xD'), (403, 204, 'Johore, Malaysia', '@KatDeCastro: Happy hour na!!! #boracayis❤ --- hi Ms. Kat, inggit much from SG #deepsigh :('), (404, 43, 'Johore, Malaysia', '@yarkkkkpashhhaa Haha lama lah juga :P Sihat?'), (405, 153, 'Riau, Indonesia', 'masih ngantuk.'), (406, 144, 'Johor Bahru, Johore', 'Now Playing: Forget You...'), (407, 113, 'Johore, Malaysia', '@YilingGumshoe no la:) i working in a school.'), (408, 13, 'Singapore', '@akash_kaura @anishapri for all we know...'), (409, 205, 'Singapore', '@ikenpinem Sabar yah neeekkk!! Tante kan lekas pulang segeraaahhh!!!'), (410, 82, 'Malaysia', '@ununnize งั้นอด 555'), (411, 206, 'Singapore', '@yepimtalia hwaiting all da best! :D'), (412, 74, 'Johore, Malaysia', 'When I see UNO cards, I thought of primary 5'), (413, 130, 'Plentong, Johor Bahru', 'Yayyy! Yukk! Yukk! Kata aku ke diriku'), (414, 207, 'Johore, Malaysia', 'I''m at Orchard MRT Station (NS22) (Singapore, Singapore) w/ 3 others http://t.co/iZBQWVKe'), (415, 43, 'Johore, Malaysia', '@amirsyazwina Haha na,a syazwina tu nama siapa?'), (416, 36, 'Johore, Malaysia', '@YYAALLIINNGG sure :) really thankful even though my life fuck up so jiak lat le, still got you pei ban me...never regret knwing u...'), (417, 208, 'Johore, Malaysia', '#igdaily #photooftheday #iphonesg :] @ East Coast Park http://t.co/3rXedux9'), (418, 188, 'Johor Bahru, Johore', 'Mrt takder lembab lagy per? -.- aku raser aku kluar kan chocolate makan pun cantek.'), (419, 58, 'Malaysia', '@patt2534 อ่อ ๆ จ้าาาา ๕๕ ถึงบ้านปลอดภัยน้ะเจ้'), (420, 190, 'Johore, Malaysia', '“@JessicaBunnyLiu: @chloeliting heeheehee. I guess shake gonna be very pop soon with u too.'), (421, 209, 'Johore, Malaysia', 'Slice finger with penknife.... Carry on cutting with scissors.'), (422, 144, 'Johor Bahru, Johore', 'Active GILER'), (423, 206, 'Singapore', 'though i was super extra , today was bestdayever for me(:&lt;3'), (424, 61, 'Johor Bahru, Johore', '"@PeiYi2706: Now''s @veradesu is trying to hijacked my whole phone, too bad she can''t guess the passcode" is now not now''s are u Eng disabled'), (425, 119, 'Johor Bahru, Johore', '@okaygladys take secretly ~'), (426, 210, 'Johore, Malaysia', 'back to wearing my training tag ! woohoo ! ~ http://t.co/3gC7Icme'), (427, 10, 'Singapore', '@Joreen_Teo Oh. 80% means 4/5 days go ma.'), (428, 43, 'Johore, Malaysia', '@EzzaSB Haha lagi terpaksa. ahahah :P'), (429, 211, 'Johor Bahru, Johore', 'Finally, i reach. #Tired #Hungry #Sleepy (@ Eiima cribs &lt;3) http://t.co/EhOhUe3p'), (430, 212, 'Johor Bahru, Johore', 'Pang Kang !'), (431, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, aku ada la. idham, razif, suffian, and ramai lagi la'), (432, 213, 'Pulai, Johor Bahru', 'I''m at Ali cafe (Johor Bahru, Johor) http://t.co/dmtFJvfg'), (433, 205, 'Singapore', '@nia_bocil http://t.co/ez8BuBAI'), (434, 214, 'Johor Bahru, Johore', 'I''m at Terminal 1 (Singapore, Singapore) w/ 8 others http://t.co/yAyAbg8F'), (435, 215, 'Johore, Malaysia', 'SO PISSED RIGHT NOW FOR LOSING 2nd EAR-PIECE ! ARGHHHHHHHHHHHHHHH !'), (436, 216, 'Malaysia', '@Fu_heartless หลับเพิ่งตื่นเลย ล้วทำไรกันนั้น'), (437, 217, 'Johore, Malaysia', 'I''m at Regency House http://t.co/ING2R7jn'), (438, 61, 'Johor Bahru, Johore', '"@PeiYi2706: The reason why I keep retweeting @veradesu tweets with a mental blah blah blah is because she''s just so contradicting"'), (439, 53, 'Johor Bahru, Johore', 'RT @ThatLoveBitch: "You may know me but you don''t understand me."'), (440, 193, 'Johor Bahru, Johore', 'money gone huhu (@ POSB Compass Point Branch) http://t.co/LgL41ljt'), (441, 68, 'Riau, Indonesia', 'ciee one week yoooo @messymayrisaa @Aimaconggg'), (442, 218, 'Johore, Malaysia', 'I''m at Bus Stop 11141 (Queenstown Station) (Singapore) http://t.co/p3E3iAKl'), (443, 219, 'Johor Bahru, Johore', '@KJiaweii Happy uh ~'), (444, 220, 'Johor Bahru, Johore', 'I''m at Tampines Mall (Singapore, Singapore) w/ 15 others http://t.co/1ieGsI1H'), (445, 221, 'Johor Bahru, Johore', 'Hungry'), (446, 206, 'Singapore', 'freak sherlock! ;o'), (447, 222, 'Johor Bahru, Johore', '乗る~ (@ Gate F40) http://t.co/BKhAlqnB'), (448, 80, 'Johor Bahru, Johore', 'cant stop smiling :))'), (449, 223, 'Pulai, Johor Bahru', 'I''m at 观音庙 (Guan Yin Temple) (Johor Bahru, Johor) http://t.co/8HR7CeQX'), (450, 87, 'Johore, Malaysia', '@Edmundnmq YA !'), (451, 224, 'Indonesia', ': Jaga Rumah! (@ My Siztaa Humz) [pic]: http://t.co/Db4uTAVe'), (452, 206, 'Singapore', 'chehhh i thought teaser;&gt;'), (453, 72, 'Johor Bahru, Johore', '@ClarissaQQL in hollows that rustle between~'), (454, 225, 'Kota Tinggi, Johore', 'Dinner with ibu and baba! (@ Kfc @ Jurong Point) http://t.co/dwBK7t7R'), (455, 226, 'Johore, Malaysia', '“@Notebook: If you''re lucky enough to get a second chance at something, don''t waste it.” -- how about third chance?'), (456, 40, 'Johor Bahru, Johore', '@SarahhhhLin LOL. LOL'), (457, 227, 'Johore, Malaysia', 'watching @randomnology eat~~~ with @anttyp (@ McDonald''s w/ 2 others) http://t.co/Cq9e3r1W'), (458, 228, 'Johor Bahru, Johore', '@SyafiiieeQ idk, call me'), (459, 61, 'Johor Bahru, Johore', 'Nobody ask her why she re tweet me but she is trying to explain herself omg'), (460, 223, 'Pulai, Johor Bahru', 'I''m at 源香美食中心,Tmn Perling http://t.co/6BGC3mTG'), (461, 157, 'Johor Bahru, Johore', 'Shall use com &amp; do my mt hmwrk which requires me to describe a picture with 50 words.(:'), (462, 229, 'Johor Bahru, Johore', 'I''m at NTUC Income (Singapore) http://t.co/WcYX53VT'), (463, 43, 'Johore, Malaysia', 'Eh warga twitter jaya. Be friendly. K :*'), (464, 216, 'Malaysia', 'แอบน้อยใจ'), (465, 145, 'Johore, Malaysia', 'tusi menu keha ki mai tuhadi hasdi hoi jindgi nu barbaad kar dita ehde vich kala mera hi kasoor ci ja tuhada vi is lai me keha ci'), (466, 116, 'Riau, Indonesia', 'hy kaq @jojosilalahi., lg ap ne?'), (467, 230, 'Johore, Malaysia', 'I''m at TANGS Orchard (Singapore, Singapore) w/ 7 others http://t.co/6WmnJyHl'), (468, 231, 'Johore, Malaysia', 'Fariz Junaidi and The Search for Red Transparent Card Sleeve'), (469, 73, 'Singapore', '@suki_teh sports sci?'), (470, 223, 'Pulai, Johor Bahru', 'I''m at 新源香美食阁 (Johor Bahru, Johor) http://t.co/62TlMZue'), (471, 232, 'Johore, Malaysia', 'I''m at Bus Stop 03223 (INTL Plaza Anson Rd) (Singapore, Singapore) http://t.co/uo8B8XMc'), (472, 233, 'Johore, Malaysia', 'I''m at Bus Stop 10111 (Opp Blk 28) (Singapore, Singapore) http://t.co/nKOXH5ZH'), (473, 113, 'Johore, Malaysia', '@YilingGumshoe Overseas Family School:)'), (474, 234, 'Johore, Malaysia', 'I''m at Jane Thai Food w/ @infernoxv http://t.co/auWkecUq'), (475, 58, 'Malaysia', '@patt2534 ฮ่า ๆ'), (476, 235, 'Johor Bahru, Johore', 'I''m not a toy , don''t use me when u need me , and leave me at a corner when u don''t need me .'), (477, 104, 'Johore, Malaysia', '@Sya_miza kemang x gi eh dunia fantasi ?'), (478, 65, 'Singapore', '#np california gurls'), (479, 116, 'Riau, Indonesia', '@anneputrisaid cie., cie...... fto ava na unyu2 kaq :*'), (480, 236, 'Johor Bahru, Johore', '@PinkLeprechauns arghhhhh. Now shes mad with me for going out. When I didn''t,I went to study with unicorn. And I already told her.'), (481, 237, 'Johore, Malaysia', 'Bus spoil. Got so suay ant'), (482, 238, 'Johor Bahru, Johore', 'Its official , my pay for this 2weeks is $719.. weeeeeeeeeeeeeeeeeeee, keje mcm tk keje ... hahahaaaaa'), (483, 43, 'Johore, Malaysia', '@iAmyliaNatasya Haha taman daya, 18 babyy ;)'), (484, 68, 'Riau, Indonesia', 'sepiiiiii'), (485, 239, 'Johor Bahru, Johore', 'I''m at SBS Transit: Bus 147 (Singapore) http://t.co/Kf1GK1Kx'), (486, 191, 'Plentong, Johor Bahru', '@erichafitrih Hahha awk prg kannn? Tahuu ;p'), (487, 240, 'Johore, Malaysia', 'I''m at Just Acia (Singapore) http://t.co/X5K5kRc4'), (488, 241, 'Johor Bahru, Johore', '@ReubenNeo_ @eeyenlim wanna play today!!?'), (489, 157, 'Johor Bahru, Johore', 'Hahaha!(: RT"@DNoviana___: #PeopleIWantToMeet @Lowisal (:"'), (490, 242, 'Johor Bahru, Johore', '@motorstig depends on quality ,.'), (491, 243, 'Pulai, Johor Bahru', '#KenanganTadika main berudu waktu rehat secara berjemaah.'), (492, 58, 'Malaysia', '@patt2534 ตกลงเรื่องเมื่อคืนน เรียบร้อยแล้วช่ายป่ะเจ้ ?'), (493, 244, 'Johore, Malaysia', 'Havnt step into e corporate Wrld or a long time!'), (494, 173, 'Johor Bahru, Johore', '@cheeekit @dylanloo Walao -.-'), (495, 81, 'Johore, Malaysia', '@ohmysofiaa alone -.-'), (496, 185, 'Johor Bahru, Johore', '@iFARRK bring back some crab sushi for me!'), (497, 245, 'Johor Bahru, Johore', 'I''m at Singapore Sports School (Singapore, Singapore) w/ 2 others http://t.co/xrR9Dqom'), (498, 133, 'Johore, Malaysia', '最近ヒュンダイのタクシーがよく止まってる。導入されてから3年だから、そろそろ寿命を迎える頃なんでしょうね。そう考えると、高くても日本車を選んだタクシー会社が正解だったんでしょうね。トヨタなら15年は大丈夫だと運ちゃんが言ってた。'), (499, 246, 'Johor Bahru, Johore', 'Otw out again ~ (@ HOME SWEET HOME♥) http://t.co/CLY0W2O3'), (500, 236, 'Johor Bahru, Johore', '@PinkLeprechauns she said OK. But she forgot. So noe she''s being all bitchy to me and tells me I''m taking this pp thing too far.'), (501, 23, 'Malaysia', 'http://t.co/kZThvQQX ฝากกกกก'), (502, 247, 'Johore, Malaysia', '2k12-ibg!'), (503, 26, 'Johore, Malaysia', '#PeopleIWantToMeet @Neelofa'), (504, 41, 'Plentong, Johor Bahru', '@AjimAnis kau taktau? =='''), (505, 18, 'Johor Bahru, Johore', 'Dont think you are big-sized,im scared -.-'), (506, 192, 'Plentong, Johor Bahru', 'Tgk abam abam macho men bola la uollss :)y (@ Padang Sri Gelam) http://t.co/FQnFAHGq'), (507, 43, 'Johore, Malaysia', 'iNeed food to eat'), (508, 246, 'Johor Bahru, Johore', 'I''m at MY HOUSE BUSSTOP (: http://t.co/nDslkM5c'), (509, 248, 'Johore, Malaysia', 'It''s somewhat sad when you don''t know people well enough.'), (510, 23, 'Malaysia', '@lbadz_ อย่านอยด์สิเมียรัก ~'), (511, 249, 'Johore, Malaysia', '"Just for this moment, as long as you''re mine."'), (512, 250, 'Plentong, Johor Bahru', 'tak paham aku family yg bawak anak2 kecik diorang tgk John Carter. Faham ker diorang? #fb'), (513, 61, 'Johor Bahru, Johore', '@PeiYi2706 hey you are welcome'), (514, 41, 'Plentong, Johor Bahru', '@sfatinfarhana hahaha, jangan la. kang kena bebel tak memasal xD'), (515, 175, 'Malaysia', 'Traveling Yanxing, Take a rest http://t.co/OStFrfvJ #pudding_to'), (516, 251, 'Johor Bahru, Johore', 'I''m at Kovan Heartland Mall (Singapore, Singapore) w/ 5 others http://t.co/IBryps92'), (517, 12, 'Johore, Malaysia', '#PeopleIWantToMeetNow @taeccool @0430yes @Khunnie0624 @Jun2daKAY @dlwnsghek @2PMagreement211 :)'), (518, 122, 'Johore, Malaysia', '@attyanlove18 メッチャ暑いよ~'), (519, 191, 'Plentong, Johor Bahru', 'Bieee? Hahahahahaha xD'), (520, 26, 'Johore, Malaysia', '#PeopleIWantToMeet @Nor4Danish'), (521, 252, 'Johore, Malaysia', 'On the way to pasir ris :) (@ Lavender MRT Station (EW11) w/ 2 others) http://t.co/QbUuNEqD'), (522, 233, 'Johore, Malaysia', 'I''m at Bus Stop 11021 (Aft Queenstown NPC HQ) (Singapore, Singapore) http://t.co/RPhACA8d'), (523, 233, 'Johore, Malaysia', 'I just ousted @berber08 as the mayor of Bus Stop 11021 (Aft Queenstown NPC HQ) on @foursquare! http://t.co/jvTggFQ8'), (524, 253, 'Johor Bahru, Johore', 'Where''s the bus &gt;:( (@ Bus Stop 43409 (opp Blk 127)) http://t.co/OYa8aHBg'), (525, 39, 'Johor Bahru, Johore', '@FuzaRdzn kan aku pun couple dgn maxis . kau madu aku ah ni . -oo- hokhokk'), (526, 68, 'Riau, Indonesia', '#PeopleIWantToMeet F'), (527, 26, 'Johore, Malaysia', '#PeopleIWantToMeet @eykafarhana_95'), (528, 254, 'Kota Tinggi, Johore', '235 comes here now ! Nice ! (@ Caldecott MRT Station (CC17)) http://t.co/qZ5i23D1'), (529, 41, 'Plentong, Johor Bahru', '@zulailizulkifli aku tak masuk tapi aku tengok kat tepi. idham? haha, nape takut?'), (530, 93, 'Johore, Malaysia', 'Y I no hip Bones like @xNurulHudax'), (531, 255, 'Johore, Malaysia', 'RT @/Gateway2Korea: [Live] Bagbang running #1 followed by JonePark and Miss A at M-Countdown Ranking\n"BagBang" &amp; JonePark? New groups?'), (532, 256, 'Johore, Malaysia', '@unbitemylips end month sounds good.'), (533, 257, 'Johor Bahru, Johore', 'I''m at Blk 230 Pasir Ris St 21 (Pasir Ris, Singapore) http://t.co/s2TGoNN9'), (534, 158, 'Malaysia', '@_afrinajff and thank you '), (535, 258, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre (Singapore) w/ 12 others http://t.co/ajKtjiuT'), (536, 68, 'Riau, Indonesia', '#PeopleIWantToMeet R'), (537, 98, 'Johor Bahru, Johore', '@FunisLifeisFun okay fine!! Hahahahah'), (538, 43, 'Johore, Malaysia', '@amirsyazwina Haha ignore. Tanya sahaja'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (539, 259, 'Johor Bahru, Johore', 'I''m at Bus Stop 27101 (Westville) http://t.co/lpzmIWPn'), (540, 236, 'Johor Bahru, Johore', '@PinkLeprechauns saying I''M coming home so late and all this shit when it wasn''t my fault. The rehearsal is frm seven to nine.'), (541, 52, 'Johore, Malaysia', 'eh i ur dog issit ? no wonder keep tell me go eat , wan me buy for you eat .'), (542, 191, 'Plentong, Johor Bahru', '@RaihanHamid Bieeee? Hahahahahaha xD'), (543, 260, 'Kota Tinggi, Johore', 'Pass my prac altough I use army boot'), (544, 261, 'Johor Bahru, Johore', 'I''m at Bukit Batok MRT Station (NS2) (Singapore, Singapore) http://t.co/46xQRfAg'), (545, 26, 'Johore, Malaysia', 'tadi bukan nap sia. tu tido. dari 11 pai 5. mati ah siang tido malam bangun. =.='), (546, 130, 'Plentong, Johor Bahru', '@Aerza_Amir bukaan... Dia tak reply mention kite. Orang tengah main #DrawSomething ni baby... Mintak dia jawapan bocor...'), (547, 40, 'Johor Bahru, Johore', '“@SA_MANT_HAHAHAH: RT @ameliaaateo: RT @Joey__Ng: screw homework:)”'), (548, 128, 'Johore, Malaysia', 'Banas!! B1A4 GO GO GO'), (549, 262, 'Plentong, Johor Bahru', '@gLvenmosh kurang ashem. dalam diam ku ditikam.'), (550, 263, 'Johore, Malaysia', 'B&gt; Lvl 163 staff clean with no pot, for any mapler who followed me, please help me spread.'), (551, 58, 'Malaysia', '@patt2534 ดีแล้วววจ้าาา'), (552, 264, 'Riau, Indonesia', 'jerawatnya uyuuh deh,. nimbulnya sllu di kuping.. :*'), (553, 190, 'Johore, Malaysia', '@chloeliting dun emo nemo. I love yoy okay?:)'), (554, 13, 'Singapore', '@prissyyyyyy I listen to all sorts of music d^_^b'), (555, 265, 'Johor Bahru, Johore', 'I''m at Che Che New York (Singapore) http://t.co/Ytanvjiy'), (556, 266, 'Johor Bahru, Johore', 'Qys tk nk balik ke? (@ My First Skool@406 Woodlands St 41) [pic]: http://t.co/awrvSgTd'), (557, 267, 'Johore, Malaysia', '“@Moggie78: Prelude @ The Boathouse http://t.co/Pk3uTawh #expat #Singapore” thirsty already? Try it out or any of the other #chilloutbars'), (558, 52, 'Johore, Malaysia', 'You nv even tell me go buy for you , go complain say i nv buy for wad . Knn ems la you lkk'), (559, 268, 'Johore, Malaysia', 'I''m at Sogurt (Singapore, Singapore) http://t.co/ElSqlZIH'), (560, 269, 'Johor Bahru, Johore', '@aljaru93 http://t.co/Oi0cQVe5'), (561, 186, 'Johore, Malaysia', '@RegineeeYow Take care and get well soon! :)'), (562, 270, 'Johore, Malaysia', 'I''m at Ngee Ann City (Singapore, Singapore) http://t.co/q5UG1tp3'), (563, 191, 'Plentong, Johor Bahru', '@erichafitrih Hahahaha tk ahhh. Hurun cakap'), (564, 260, 'Kota Tinggi, Johore', 'Right leg drop..dash right on incoming car...still pass'), (565, 241, 'Johor Bahru, Johore', '@EeyenLim @reubenneo_ walao we need the big 3 tgt. Ben go find lan play!!'), (566, 272, 'Johore, Malaysia', 'I think I''m getting hypertension at such a young age :('), (567, 128, 'Johore, Malaysia', 'Lol why b1a4 so cute de'), (568, 273, 'Johor Bahru, Johore', 'The weather totally don''t give face! Days ago rain like mad. Now b @ Bus Stop 30041 (Opp Home Team Academy) http://t.co/rGOTBp9D'), (569, 173, 'Johor Bahru, Johore', '@dylanloo dude.......... Don''t pull a fast one on me. And she thanked you gosh so racist'), (570, 274, 'Johor Bahru, Johore', 'I''m at McDonald''s w/ @3xt_caleb http://t.co/sqFY5Ps2'), (571, 236, 'Johor Bahru, Johore', '@PinkLeprechauns of course I''ll coke home late right? Wtf. And she keeps telling me I don''t need to be in the pp when I''M the devil.'), (572, 12, 'Johore, Malaysia', '@KpopHall Wonder Girls'), (573, 275, 'Kota Tinggi, Johore', 'I''m at Jurong West Community Library w/ @x3jay_birdy17 http://t.co/pdmhYBPH'), (574, 276, 'Johor Bahru, Johore', 'No fucking mood at all. Please don''t ask me why. Just want to be alone today. Gonna switched off my phone &amp; go out to take shisha.'), (575, 277, 'Kota Tinggi, Johore', '@oOyaanaaOo camp kt ne?.,,'), (576, 113, 'Johore, Malaysia', '@YilingGumshoe file scanning and some data entry:)then if library need people we go help out.'), (577, 12, 'Johore, Malaysia', '@KpopHall IU'), (578, 129, 'Plentong, Johor Bahru', '@Normfasz_NF relex.. Jgn marah2.. Biase laa..'), (579, 278, 'Johor Bahru, Johore', 'I''m at Blk 724 Ang Mo Kio Market &amp; Food Centre (Singapore, Singapore) w/ 2 others http://t.co/tJP6QyU5'), (580, 279, 'Singapore', '2AM!!!!! OMG'), (581, 251, 'Johor Bahru, Johore', 'I''m at Mavis Tutorial Centre @ Kovan http://t.co/RA0SZj1S'), (582, 267, 'Johore, Malaysia', '“@Moggie78: Prelude @ The Boathouse http://t.co/Pk3uTawh #expat #Singapore” bloody hell I need a pint?'), (583, 280, 'Kota Tinggi, Johore', 'I''m at Jurong Point (Singapore, Singapore) w/ 19 others http://t.co/PF2e9RDC'), (584, 186, 'Johore, Malaysia', 'MAJOR RTTTTTTTTTTTT!!!!! @ddinini: #PeopleIWantToMeet @yelyahwilliams @itstayloryall @schzimmydeanie'), (585, 13, 'Singapore', '@wonderxuqin haha i actually have all their stuff till 2010 on my com but have never listened to more than 5 songs i think LOL'), (586, 260, 'Kota Tinggi, Johore', 'Some moron still cant accept the football way'), (587, 52, 'Johore, Malaysia', 'Cb i next time will nv ever eat , I see how you eat knn . No hands wan me buy for u . I NOT UR DOG .'), (588, 281, 'Malaysia', 'น้องเฟรมและคุณครูเจ http://t.co/vLedLnPO'), (589, 96, 'Johore, Malaysia', '@_jamietan kay welcome'), (590, 173, 'Johor Bahru, Johore', '@cheeekit @dylanloo you thanked Dylan.... Fine'), (591, 282, 'Pulai, Johor Bahru', '@aminnorsyafik sorry for everything la. kan bags mintak maaf sebelum tdo :0 hehe'), (592, 283, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 9 others http://t.co/gKF6Bfvf'), (593, 284, 'Johore, Malaysia', 'pain pain go away... ;((\ni need you Panadol...'), (594, 285, 'Singapore', 'Holidays = boring. School = boring. #GiveMeABreak'), (595, 286, 'Pulai, Johor Bahru', '@marshielarieza adalh...:-)'), (596, 183, 'Riau, Indonesia', 'Dosen: "Kalian memang malas.. tidak ada persiapan", Coba deh liat pas dosen ga ada persiapan mahasiswa jadi tempat pelampiasan #kasihan'), (597, 287, 'Johore, Malaysia', 'YEAY I''m here! (@ Plaza Singapura w/ 10 others) http://t.co/kG7bukGm'), (598, 195, 'Johore, Malaysia', 'I''m at Tiong Bahru MRT Station (EW17) (Singapore) http://t.co/DJq674cL'), (599, 288, 'Johor Bahru, Johore', 'The siok feeling when your skin comes into contact with sunlight~'), (600, 39, 'Johor Bahru, Johore', '@LeeyaSygg hee loveyoutoo baby =*'), (601, 289, 'Johor Bahru, Johore', 'I''m at Raiders Cyber Club @ cck http://t.co/NZVc9sta'), (602, 65, 'Singapore', '@Widhiadarii Oh. Homeworks sucks right ^^'), (603, 291, 'Johore, Malaysia', 'The Lord will guide you always; he will satisfy your needs in a sun-scorched land and will s @ Planet Earth http://t.co/HSR9Q49L'), (604, 292, 'Johor Bahru, Johore', '@eeshawn yeah right... But apparently they didn''t master the art of ''don''t get caught''.'), (605, 293, 'Kota Tinggi, Johore', 'Dafuq! train not moving!'), (606, 294, 'Johor Bahru, Johore', 'I''m at changi airport T3 http://t.co/xdaQ6au3'), (607, 295, 'Johore, Malaysia', '@aiensyamsul @hotfm976 @kieranhotfm @ikhwanhotfm @surayahotfm yeah Ofcos! Luv u too!'), (608, 296, 'Johor Bahru, Johore', '乗継地に着いた #シンガポール #Singapore'), (609, 271, 'Johore, Malaysia', 'Seafood Tom Yum for meh! @ Pastamania http://t.co/EWlVt7jv'), (610, 297, 'Johore, Malaysia', ':) @ Bugis Street http://t.co/oIWVRpiR'), (611, 298, 'Johor Bahru, Johore', '@ANAKSIDEKYO BIATCH! (:'), (612, 283, 'Johore, Malaysia', 'I''m at Manna Story (Singapore, Singapore) http://t.co/OnkCn9yY'), (613, 236, 'Johor Bahru, Johore', '@PinkLeprechauns I feel so annoyed. Argh. Plus with Ralph and all. Wtf.'), (614, 299, 'Malaysia', 'Lapar, masak sendiri...'), (615, 288, 'Johor Bahru, Johore', 'Yay off day tomorrow~~ ahhh'), (616, 157, 'Johor Bahru, Johore', 'Suaaaaaaa. Dad, mum &amp; brotherr using. Wts.'), (617, 260, 'Kota Tinggi, Johore', 'Dives so what??...I dive my problem uh...your parents never feed me what'), (618, 300, 'Riau, Indonesia', 'Dad whatsapping me bout home cleaning and everything. Seriously -.-'), (619, 301, 'Johore, Malaysia', 'I''m at Tower 3 Marina Bay Sands Hotel (Singapore, Singapore) http://t.co/UlXiliSB'), (620, 282, 'Pulai, Johor Bahru', 'never been awkward talking to you.'), (621, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, aku mana kenal kau masa tu. aku kenal kau bila idham dapat num kau then aku search kau kay myspace'), (622, 39, 'Johor Bahru, Johore', '@FuzaRdzn eish madu dgn kau ? aku rasakan maxis as a husband mampuih sekejap lagi =,='), (623, 302, 'Singapore', '@maxallover idk maybe because then they were having orientation and shit haha but it''s a big place no doubt. how did it go?! :D'), (624, 12, 'Johore, Malaysia', '@IHEARTSUZY Where? :)'), (625, 157, 'Johor Bahru, Johore', 'RT"@13elieveHYUK: RT @fxtg88k: Life would be so much more greater if fast food were healthy and not fattening."'), (626, 303, 'Johor Bahru, Johore', 'Can''t get back up'), (627, 12, 'Johore, Malaysia', '@KpopHall Miss A'), (628, 297, 'Johore, Malaysia', 'On the streets @ Bugis http://t.co/DS4t2X9e'), (629, 304, 'Riau, Indonesia', 'Hehehehe. (with Lingo at @rwsentosa) [pic] — http://t.co/i8rVCk1s'), (630, 165, 'Johor Bahru, Johore', '&amp; i tot i''ve scanned my card but wen i tapped out it''s invalid. So #annoying'), (631, 207, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 24 others http://t.co/HhBqbpk5'), (632, 305, 'Johore, Malaysia', 'I''m at Marina Bay MRT Interchange (NS27/CE2) (Singapore, Singapore) http://t.co/wA3RWiy4'), (633, 58, 'Malaysia', '@patt2534 ทำไมตรังไม่สร้างสนามบินนล่ะเจ้ ๕๕'), (634, 87, 'Johore, Malaysia', '@Joannazxzx YES ! LAZY ROBERT'), (635, 288, 'Johor Bahru, Johore', 'Customized Oakley arriving 3 weeks from now~ :D excitedddddddddddddd!!'), (636, 10, 'Singapore', '@Joreen_Teo aiyo..'), (637, 5, 'Johore, Malaysia', '#np Forever young'), (638, 282, 'Pulai, Johor Bahru', 'syukur kat sini terang benderang. ada chance bersenam :)'), (639, 186, 'Johore, Malaysia', 'Yeah I agree lol, she likes to show her cleavage. ._.'), (640, 306, 'Johor Bahru, Johore', 'I just ousted @gladysdejour as the mayor of Block 410A Multi Storey Carpark on @foursquare! http://t.co/qIhWx0Ny'), (641, 306, 'Johor Bahru, Johore', 'I''m at Block 410A Multi Storey Carpark http://t.co/3YvV1ow5'), (642, 307, 'Johor Bahru, Johore', 'ONG MAINTAIN.'), (643, 3, 'Johor Bahru, Johore', '@ian_ianization Moonlight nice meh?;O'), (644, 236, 'Johor Bahru, Johore', '@PinkLeprechauns idkkkkkk. How to let our parents not be pissed with us? And let us go for the retreat?'), (645, 308, 'Kota Tinggi, Johore', '@Bozotastic ya we all passed audition LOL!'), (646, 309, 'Johor Bahru, Johore', '@JoltzSchiffer wtf?'), (647, 310, 'Kota Tinggi, Johore', 'I''m at Jurong Point (Singapore, Singapore) w/ 20 others http://t.co/GOaxuTVd'), (648, 311, 'Plentong, Johor Bahru', 'I''m at Exotica Shisha @ Mr. Kombi http://t.co/2ASHg9VL'), (649, 312, 'Johore, Malaysia', 'I''m at {prologue} Bookstore (Singapore, Singapore) http://t.co/ujCOVEpZ'), (650, 313, 'Plentong, Johor Bahru', '@Missyaya93 h0h0 c(:'), (651, 314, 'Johor Bahru, Johore', 'My dear we''re slow dancing in the burning room.'), (652, 165, 'Johor Bahru, Johore', 'Worst trip home (@ SBS Bus 3) http://t.co/SCqj75qG'), (653, 195, 'Johore, Malaysia', 'I''m at Tiong Bahru Plaza (Singapore, Singapore) w/ 2 others http://t.co/piMA3WOc'), (654, 9, 'Johor Bahru, Johore', '@TrulyLee hahahahah ! :P where are you now ?'), (655, 241, 'Johor Bahru, Johore', '@EeyenLim @reubenneo_ you need to practice more.. Ai nightmare again...'), (656, 284, 'Johore, Malaysia', 'great win @143redangel .. congratsiiee'), (657, 306, 'Johor Bahru, Johore', 'I''m at Shihlin Taiwan Street Snacks (Singapore) http://t.co/EudUat3U'), (658, 315, 'Plentong, Johor Bahru', 'wat m I thinking~I just can''t forgot the moment we..........I miss u &amp; miss last night!! M I silly? \n#I miss the moment #'), (659, 236, 'Johor Bahru, Johore', '@PinkLeprechauns she did. Arghh'), (660, 316, 'Johore, Malaysia', 'I''m at Marina Bay Sands TM Entrance (Marina Bay Sands, Singapore) http://t.co/Z3toshT3'), (661, 219, 'Johor Bahru, Johore', '@NicholasPwn @kjiaweii nic goin back tmr ?!'), (662, 12, 'Johore, Malaysia', '@Jollenesmilexz Er. Shawols. :)'), (663, 157, 'Johore, Malaysia', 'RT"@HL_ELF_KissMe: The latest epop the cover page will be Donghae and Siwon :)"'), (664, 281, 'Malaysia', 'วันนี้ชิลๆค๊าาา'), (665, 317, 'Kota Tinggi, Johore', 'I''m at Blk 53 Lorong 5 Toa Payoh (Singapore, Singapore) http://t.co/KoFxnit2'), (666, 304, 'Riau, Indonesia', 'Lingo is pretty and all dressed up!!!!!! (with Lingo at @rwsentosa) [pic] — http://t.co/UjsRyaV7'), (667, 318, 'Plentong, Johor Bahru', 'Minum ptg! (@ Restoran Osman Uda) http://t.co/mWmdxV45'), (668, 319, 'Johor Bahru, Johore', 'I''m at Pasir Ris MRT Station (EW1) (Singapore, Singapore) http://t.co/XOLB1lfW'), (669, 320, 'Johore, Malaysia', 'I''m at Blk 77 Circuit Rd http://t.co/1R5tUqPk'), (670, 42, 'Riau, Indonesia', 'btw follback fanbase ini dong kak:D sekaliiiii ajadeeeh:* @dvurs'), (671, 82, 'Malaysia', '@Kkeez อ้อนเลยยยย'), (672, 321, 'Malaysia', 'Back to BKK (@ สถานีขนส่งผู้โดยสารหาดใหญ่) http://t.co/ihzkoAYK'), (673, 130, 'Plentong, Johor Bahru', '@Lynnlaloy hala...!!! Baru nak hajak kaan orang dah order mee medical nii dia baru nak hajak p mekdi T T'), (674, 282, 'Pulai, Johor Bahru', '@aminnorsyafik yes i am :))'), (675, 65, 'Singapore', '#np walking up in vegas'), (676, 322, 'Johore, Malaysia', 'I''m at Din Tai Fung 鼎泰豐 (Singapore) http://t.co/wzLOPFFz'), (677, 12, 'Johore, Malaysia', '@KpopHall MBLAQ'), (678, 82, 'Malaysia', '@ununnize ปกติ'), (679, 58, 'Malaysia', '@PloYSaiizaStorY อ่อ เห้นย่อออมาซะขนาดนั้นน ๕๕'), (680, 230, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 24 others http://t.co/4ETAAQ6O'), (681, 51, 'Johor Bahru, Johore', '@Fitri_Wazowski where you?'), (682, 12, 'Johore, Malaysia', '@KpopHall SISTAR'), (683, 323, 'Johore, Malaysia', 'Fucking annoying people.'), (684, 324, 'Johor Bahru, Johore', 'Woooo~ tired #TTM'), (685, 325, 'Johore, Malaysia', 'CCA camp! :-) (@ Canteen @ Raffles Girls'' School) http://t.co/cfj0KtNN'), (686, 326, 'Johor Bahru, Johore', 'I''m at Singapore Zoo (Singapore) http://t.co/3brpZAub'), (687, 9, 'Johor Bahru, Johore', 'Wrestle with @Mackuereau on the bed just to get his iphone . Hahahah'), (688, 327, 'Johore, Malaysia', 'ITS BACK TO NORMAL . I''M SO RELIEFFFF'), (689, 183, 'Riau, Indonesia', 'Gue aneh deh ko semua orang pada stres mikirin blok kali ini, apa jangan" guenya yang terlampau santai kali yak -____-"'), (690, 153, 'Riau, Indonesia', 'buktikan aja sma kamu.'), (691, 68, 'Riau, Indonesia', 'mention'), (692, 328, 'Johor Bahru, Johore', 'I''m at Bus Stop 42189 (Opp Grand Chateau) (Singapore, Singapore) http://t.co/Ug27UTDs'), (693, 116, 'Riau, Indonesia', 'tantikk kaq., i like it :* RT @anneputrisaid: Heiii :) nii akuu.. Si pipi chubby :):) http://t.co/1qyD7qvs'), (694, 329, 'Plentong, Johor Bahru', 'Nothin to do in tea time :/ (@ Yard''s Car Porch) http://t.co/toERlioa'), (695, 330, 'Johore, Malaysia', 'Imma buy long socks when I''m at Malaysia this Monday.'), (696, 18, 'Johor Bahru, Johore', 'I want to sleep la! ):'), (697, 331, 'Johor Bahru, Johore', 'I''m coming home. Coming home. Tell zhe world that I''m coming home. :)'), (698, 306, 'Johor Bahru, Johore', 'I''m at Ya Kun Toastwich (Singapore, Singapore) http://t.co/XIDHlimN'), (699, 241, 'Johor Bahru, Johore', '@EeyenLim @reubenneo_ fck you your deaths more str hero somemore'), (700, 39, 'Johor Bahru, Johore', '@yuliyanatruffle hahahha ye wei nama dia yaya evans , kenai ka ?'), (701, 188, 'Johor Bahru, Johore', 'I expected the person who gave birth to me to wish me first on my birthday.Bt unfortunately she didnt even gve a fuck about it.Tak ke sedih?'), (702, 332, 'Johore, Malaysia', 'I''m at Asian food court lucky plaza (Singapore) http://t.co/vAPDCn3M'), (703, 333, 'Johore, Malaysia', 'Jaejin''s Ameblog update! Cr:@WithTreasures\n\nTitle: Everyone!\n\nEveryone!\nWinter is ending already (^^) \nAnd ... (more) http://t.co/0myCltQr'), (704, 334, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang Bus Interchange (Singapore) http://t.co/gMMQ7mGZ'), (705, 54, 'Johore, Malaysia', 'Big hug ! RT @winnywintje: Lmyn,kngn bgt,have a nice holiday in SIN,wish I could join u RT (cont) http://t.co/xEwkYTeA'), (706, 335, 'Riau, Indonesia', '@Daniel_safwan hahahahah ku nak kuliahan kok, umr 21 kamu?'), (707, 336, 'Johore, Malaysia', 'Quality dinner with Twiniee'' earlier! &lt;3 (@ Al Afrose Restaurant) http://t.co/PL4xZtl0'), (708, 337, 'Kota Tinggi, Johore', '@godfreycua ang umarte!'), (709, 338, 'Johore, Malaysia', 'I''m at PastaMania (Singapore, Singapore) http://t.co/bZ7VDPgG'), (710, 339, 'Plentong, Johor Bahru', 'I''m at JPJ Lama http://t.co/yvzNCcSr'), (711, 157, 'Johor Bahru, Johore', 'I think you touchdown in singapore le bahh. ):'), (712, 340, 'Johore, Malaysia', 'Not all "Hahah" ''s are me really laughing. Its me trying to cover up my real fellings.'), (713, 341, 'Johore, Malaysia', '@hydrobioctlina ok u take care wd ur family.'), (714, 282, 'Pulai, Johor Bahru', '@dilaramping dila dila dila excited kenapa? *sibuk*'), (715, 332, 'Johore, Malaysia', 'I''m at Lucky Plaza (Singapore, Singapore) w/ 3 others http://t.co/KrW3SeTE'), (716, 342, 'Johore, Malaysia', 'Everyone wants to escape sometimes.'), (717, 343, 'Johore, Malaysia', 'I''m at Novena Square (Singapore, Singapore) w/ 2 others http://t.co/RcNbAwHp'), (718, 344, 'Johore, Malaysia', 'So tired after work... No mood to study at all... Shagshagshag!'), (719, 130, 'Plentong, Johor Bahru', 'Orang sihat macam Lyn tu madahnya makan mekdi kite medical mee je la gamaknya /_\\'), (720, 345, 'Johore, Malaysia', 'Pulang gawe..mampir bentar aaaahh (@ Marina Bay Sands By The River w/ 2 others) [pic]: http://t.co/gsAe4aGQ'), (721, 346, 'Singapore', 'Just discovered that I only can''t see nuffnang units (even on other people''s blog) on my firefox, on chrome and ie it appears. Hmm.'), (722, 347, 'Johor Bahru, Johore', 'I''m at Central http://t.co/ff2sJhHL'), (723, 348, 'Plentong, Johor Bahru', 'off to work again :\\'), (724, 332, 'Johore, Malaysia', 'I''m at Lucky Polo ! (Singapore) http://t.co/D7ceg9DX'), (725, 349, 'Johore, Malaysia', 'Eating here at our fav restaurant here in tekka!! :D :D the 5 girls, grandma and aunty :D [pic]: http://t.co/5FRygzM1'), (726, 307, 'Johor Bahru, Johore', '15 in 30 days.'), (727, 186, 'Johore, Malaysia', 'So free ah?'), (728, 315, 'Plentong, Johor Bahru', 'I not drunk until I back home &amp; get ready to sleep~I know wat is happening! Silly me!!!'), (729, 335, 'Riau, Indonesia', '@ieamsaguband ge ngpain? pokabo selat?'), (730, 323, 'Johore, Malaysia', '@bryan_danni i dced :/ prob not gonna on until tonight'), (731, 350, 'Johor Bahru, Johore', 'I''m at Arches Hair Spa (Singapore) http://t.co/uuWArPDt'), (732, 351, 'Kota Tinggi, Johore', 'Asl rmai gi uss niari? Hmm..'), (733, 352, 'Riau, Indonesia', 'Forget to check in lol (@ Universal Studios Singapore w/ 2 others) http://t.co/85vlwEKJ'), (734, 186, 'Johore, Malaysia', 'Spell wrong'), (735, 353, 'Johore, Malaysia', 'I''m at Crystal Jade Kitchen http://t.co/1nC7zGRx'), (736, 5, 'Johore, Malaysia', '-.-"'), (737, 354, 'Johore, Malaysia', 'Fung feeling na di mo maexplain.'), (738, 323, 'Johore, Malaysia', 'GOD. NEED TO TEAR SOMETHING DOWN RIGHT NOW.'), (739, 324, 'Johor Bahru, Johore', '#confirmpluschop my Ezlink Card pic gonna be damn MASAI! Hahahahah ! My prepared for the photo-taking :/'), (740, 65, 'Singapore', 'Shut up and put ur money where ur mouth is tat what u get for walking up in vegas'), (741, 306, 'Johor Bahru, Johore', 'I''m at StarHub Shop (Singapore, Singapore) http://t.co/Tv6yZXg1'), (742, 58, 'Malaysia', '@PloYSaiizaStorY ก่าเบอะะะะ ะะะะ 5555'), (743, 9, 'Johor Bahru, Johore', '@TrulyLee ohh . Long journey huh ? Boleh tidur dalam bus , ;)'), (744, 355, 'Johore, Malaysia', 'I''m at The Centrepoint (Singapore) w/ 3 others http://t.co/UcrSP4YL'), (745, 188, 'Johor Bahru, Johore', '@Rynwcz_ @natasharenalz @namirahazm_n hahaha xD yesyes had very much fun ^^v shall watch the movie soon again. &lt;3 meet you again soon &lt;3'), (746, 335, 'Riau, Indonesia', 'hujannnnnn?????'), (747, 315, 'Plentong, Johor Bahru', '#Library'), (748, 282, 'Pulai, Johor Bahru', 'azam bulan march is i want to improve myself for a better. xsemua orang selesa dengan kita :)'), (749, 356, 'Johore, Malaysia', 'just came out of a huge modeling deal - hopefully they liked me cause I''m going broke and need money @ItsMarsMoiz'), (750, 146, 'Johore, Malaysia', '@Divya__14 tryyyyy'), (751, 357, 'Johore, Malaysia', 'Nnnnnnnn...'), (752, 12, 'Johore, Malaysia', '@Jollenesmilexz I think is like SHINee + SHINee World. But The fan club use to be SHINee world.'), (753, 358, 'Johore, Malaysia', 'Weekly craving satisfied. (@ Saizeriya Ristorante E Caffe) http://t.co/pQERuQiv'), (754, 39, 'Johor Bahru, Johore', '@FuzaRdzn erk aku pun nak single , maxis tu player wei . semua org pengguna dia dia send acentu =='''), (755, 357, 'Johore, Malaysia', 'Vb'), (756, 81, 'Johore, Malaysia', '@ohmysofiaa If I realize !'), (757, 230, 'Johore, Malaysia', 'I''m at Wisma Atria (Singapore) w/ 4 others http://t.co/gBpwoz78'), (758, 324, 'Johor Bahru, Johore', 'And stupid skirt sold out ! :/'), (759, 228, 'Johor Bahru, Johore', 'I dont wanna get involve'), (760, 307, 'Johor Bahru, Johore', 'One more hour to go!'), (761, 359, 'Johor Bahru, Johore', 'I''m at Blk 746,St 71,pasir Ris http://t.co/RY837Cif'), (762, 42, 'Riau, Indonesia', 'kak,kira2 tiap hari kakak ada di loksyut gak? pengen deh kesana kapan2:( @Mutiaradea'), (763, 302, 'Singapore', '"Marriage on your mind?" "WHAT THE HELL NO"'), (764, 360, 'Johore, Malaysia', 'Almost die from hunger.'), (765, 361, 'Johore, Malaysia', 'Dinnering (@ iluma) http://t.co/EUPx1avE'), (766, 126, 'Johor Bahru, Johore', '@Rebeccaolc _|_'), (767, 165, 'Johor Bahru, Johore', 'I''m at Blk 780 Lvl16 http://t.co/WyvjcF6G'), (768, 357, 'Johore, Malaysia', 'Ahhhhh'), (769, 41, 'Plentong, Johor Bahru', '@zulailizulkifli haha, dia pakai syida awek ajib masa tu. then syida call @Princess_Meoww then mira cakap kau sepupu dia xD'), (770, 362, 'Malaysia', '@VincePanna ไม่ไปเรียนลีลาศหรอจ้ะ? 555 ^^'), (771, 228, 'Johor Bahru, Johore', '@SyafiiieeQ What game?'), (772, 364, 'Johore, Malaysia', 'I''m at Starbucks (Singapore, Singapore) http://t.co/Q8CHlj9B'), (773, 357, 'Johore, Malaysia', 'Poops'), (774, 147, 'Johore, Malaysia', '@ahhhyeeel Dah buat homework?'), (775, 9, 'Johor Bahru, Johore', 'On my way to causeway to meet corinne . :)'), (776, 324, 'Johor Bahru, Johore', 'The double XL is loose for me );'), (777, 365, 'Johore, Malaysia', 'Bought a mini cheesecake for myself. Heh.'), (778, 68, 'Riau, Indonesia', 'haii kak ;;) RT @tessaaMRD: RT @IlfaAzlyani: mention'), (779, 366, 'Johor Bahru, Johore', '@mynameisyanling things doesnt go smooth :(. How r u uh ?'), (780, 48, 'Johor Bahru, Johore', '@SugaryKittyx I not sure. I with @yuxiang19944'), (781, 317, 'Kota Tinggi, Johore', 'I''m at Brian"s Crib http://t.co/VrNIGkXZ'), (782, 367, 'Johore, Malaysia', 'I''m at Al-Falah Mosque (Singapore, Singapore) http://t.co/Fc4adNyn'), (783, 323, 'Johore, Malaysia', 'why. WHY do i even borther'), (784, 368, 'Johore, Malaysia', 'Friendly fires anybody?'), (785, 369, 'Johore, Malaysia', 'I want that piece'), (786, 356, 'Johore, Malaysia', '@BrookeBTweet @SherleyCourt followed (:'), (787, 188, 'Johor Bahru, Johore', 'Currently at khatib. -.- train can move faster?'), (788, 154, 'Singapore', 'Ppl ask me evry year wat I’d most appreciate gettin for my bday n its the same answer,for LFC to beat MUFC again n again,HAPPY BIRTHDAY #LFC'), (789, 191, 'Plentong, Johor Bahru', '@erichafitrih Hahaha Tk ahh td terserempak dgan dia Dia tny Ahmuy tk nmpk Shaz awk snua ke.'), (790, 324, 'Johor Bahru, Johore', 'Hope mum not lazy to alter for me ^^'), (791, 146, 'Johore, Malaysia', '@colourfultapes yep ikr that''d be awesome'), (792, 68, 'Riau, Indonesia', 'haiii RT @mumutcimamay: RT @IlfaAzlyani: mention'), (793, 41, 'Plentong, Johor Bahru', '@sfatinfarhana a,ah. lebih menyinga daripada singa. tapi ada protection, abang FJ bole selamatkan xD'), (794, 370, 'Johor Bahru, Johore', 'usaha tangga kejayaan\ndoa itu penting\nrestu dari ibu bapa sgt pedoa ibu bapa sgt penting'), (795, 371, 'Plentong, Johor Bahru', 'Kudapan (@ Kacang Pool Haji @ Plaza Larkin) http://t.co/7uAZouUs'), (796, 165, 'Johor Bahru, Johore', 'I''m at Nightlife Home http://t.co/h6gTh1el'), (797, 40, 'Johor Bahru, Johore', 'Eh shinee.. Minho teaser pic.. Err..'), (798, 65, 'Singapore', 'Give me some cash out baby ~'), (799, 372, 'Johore, Malaysia', '@cha_lacap hahaha.. Mabuti naman.. Eto kinakausap ko na sarili ko wahahahaha..'), (800, 68, 'Riau, Indonesia', 'kasian kena sindir'), (801, 373, 'Johore, Malaysia', 'I''m at Jaslyn''s Home http://t.co/nlgzTDoh'), (802, 335, 'Riau, Indonesia', '@SyahriniFC sesuatchu yechhhhhh hehehehe'), (803, 39, 'Johor Bahru, Johore', '@LeeyaSygg tweeting fbing , kau ?'), (804, 68, 'Riau, Indonesia', 'kasian kena sindir [Like it? http://t.co/iBcmp73w ]'), (805, 146, 'Johore, Malaysia', '@Smile1DFans thank you &amp; you''re beautiful too &lt;3'), (806, 374, 'Johore, Malaysia', 'I''m at Expo MRT Station (CG1/DT35) w/ @milikoh http://t.co/2zPo0j3F'), (807, 375, 'Riau, Indonesia', 'hei :D RT @larasoktvn'), (808, 65, 'Singapore', 'Twitter on phone ^^'), (809, 376, 'Plentong, Johor Bahru', 'I''m at Holiday Plaza (Johor, Johor) w/ 2 others http://t.co/OjsjA9no'), (810, 39, 'Johor Bahru, Johore', '@yuliyanatruffle oh rmbut dia panjang comel xD'), (811, 378, 'Johore, Malaysia', 'Just posted a photo @ Expo MRT Station (CG1/DT35) http://t.co/Wd56FPCX'), (812, 302, 'Singapore', '@maxallover congrats la, next time you play MVP'), (813, 356, 'Johore, Malaysia', '@Sommercdn @martyrogers im goood! hru?'), (814, 375, 'Riau, Indonesia', 'kakak :) RT @ainun_ramdhani'), (815, 146, 'Johore, Malaysia', '@Divya__14 woiiii take picture pleaase.'), (816, 185, 'Johor Bahru, Johore', '@iFARRK @yanayeyoh Yana tkleh coz tak join! :('), (817, 40, 'Johor Bahru, Johore', 'BIGBANG'), (818, 285, 'Singapore', 'If you can do it tomorrow, why do it today?'), (819, 379, 'Plentong, Johor Bahru', 'Gayo Daejun. Hihi'), (820, 279, 'Singapore', 'perfect stream, perfect perf!!! T______T'), (821, 255, 'Johore, Malaysia', '@hongkiholic HAHAHAHAHAAHA!!!! then,let''s just spam their twitter for ftisland!:D u dont need to tell them u''ll be more patriotic than ever!'), (822, 9, 'Johor Bahru, Johore', '@TrulyLee hahahahha ! Baring je lah . Malu ? Hahahahah'), (823, 12, 'Johore, Malaysia', '@IHEARTSUZY Haha. So cannot watch. Just watch the videos on YouTube.'), (824, 13, 'Singapore', '@agrimsingh ain''t no bitch out there crazy enough for you, sonny'), (825, 302, 'Singapore', '@gleecurb @marklimweishen not cool bruce'), (826, 41, 'Plentong, Johor Bahru', '#PeopleIWantToMeet @yunamusic :D'), (827, 380, 'Johor Bahru, Johore', 'I miss &amp; want the old times. #NewJourney'), (828, 381, 'Plentong, Johor Bahru', 'agk2 la wei.satu2 la babe.xsenonoh.haha'), (829, 382, 'Johore, Malaysia', 'My fav chocolate Cakie from colleague. :) so sweet. http://t.co/u2gBbaip'), (830, 188, 'Johor Bahru, Johore', 'I think,im gonna the woman in black again next week xD it was damn scary bt fun. The whole cinema shouted together . xD'), (831, 145, 'Johore, Malaysia', '@iamanrose ans de dita hai'), (832, 84, 'Kota Tinggi, Johore', '@awemazingCHAR yeah, I thnk it''s gd too. Just feel their job scope kinda challenging.'), (833, 5, 'Johore, Malaysia', '@_fakeAsmileee_ Hii ! Abit , you ?'), (834, 26, 'Johore, Malaysia', 'hingus pls la tkmu ganggu aku. kau dah lah mcm apple pie. berlendeh lemak bercream. fuh..'), (835, 143, 'Johor Bahru, Johore', 'Penipu haram !'), (836, 383, 'Johor Bahru, Johore', 'Dinner with Godma , cousin , Godpa , Lorne &amp; Cordelia . Lastly , my beloved dog (: [pic]: http://t.co/5YZcGYOK'), (837, 384, 'Indonesia', '@bernardtambtamb bantu promosi akun twitter ku ini yea pra, mauliate #HORAS'), (838, 58, 'Malaysia', '@patt2534 อ่อ ๆ ๕๕๕'), (839, 146, 'Johore, Malaysia', '#PeopleIWantToMeet @keananieuwoudt @colourfultapes @1Dhoroscopes @False_Liam_Payn xx'), (840, 12, 'Johore, Malaysia', '@Jollenesmilexz Name Tag. Weird.'), (841, 39, 'Johor Bahru, Johore', '@FuzaRdzn haaa okay aku pun nak makan . bye bye take care .'), (842, 360, 'Johore, Malaysia', 'Almost die from hunger.'), (843, 279, 'Singapore', '@2AMONG @2AMkwon @2AMCHANGMIN @2AMjinwoon PERFECT PERF!!! 2AM jjang!!! &lt;3'), (844, 191, 'Plentong, Johor Bahru', '@fadhlinrashid Hahaha Fadh niii nmpk jorrr'), (845, 282, 'Pulai, Johor Bahru', 'haaa?? menyesal walk in closet orang. kan da nafsu membeli melebihi segala galanya.'), (846, 327, 'Johore, Malaysia', '@nikeccentrix HAHHAHAHAHAHAHAH tu tadi xD'), (847, 146, 'Johore, Malaysia', 'and the #1Dfamily ;")'), (848, 385, 'Johore, Malaysia', 'Rsh warehouse sale -day 2! araw-arawin na yan...;)) @ Wisma gulab building http://t.co/evIBqFRk'), (849, 58, 'Malaysia', '@PloYSaiizaStorY มาต่ะ พี่โบขายชาเย้นนนนแล้วววว'), (850, 42, 'Riau, Indonesia', 'MENDING FOLLBACK FANBASE INI SHIL,DARIPADA GALAU HEHE:D @ashillazhrtiara'), (851, 386, 'Plentong, Johor Bahru', '@NurulEkmi @anormaziah aah laa da lamenyeee x mkn seafood..ekmi jd organizer cpt!!'), (852, 387, 'Johor Bahru, Johore', 'Going to singapore (@ The Johor-Singapore Causeway) http://t.co/JgewBlaD'), (853, 388, 'Johore, Malaysia', 'Sick of listening to all the sings in my #ipod.'), (854, 277, 'Kota Tinggi, Johore', '@oOyaanaaOo anjuran sk0la ke?..,'), (855, 389, 'Plentong, Johor Bahru', 'I''m at Tebrau City Traffic Lights (Johor Bahru, Johor) http://t.co/m9NolQt2'), (856, 335, 'Riau, Indonesia', '@thalitalatief kapan maen ke riau kak(kuliner pekanbaru uizzzz enak2 lho)'), (857, 390, 'Johor Bahru, Johore', 'I''m at Sakura International Buffet Restaurant (Singapore, Singapore) http://t.co/KTKXdwy2'), (858, 391, 'Johore, Malaysia', '&lt;3 &lt;3 &lt;3 @lynettesim I''m bloated! http://t.co/K5LPUlEt'), (859, 68, 'Riau, Indonesia', 'hehe hai RT @triskamendlev: mentionRT @IlfaAzlyani: mention'), (860, 82, 'Malaysia', '@ununnize งืมมม'), (861, 309, 'Johor Bahru, Johore', '@marsypudding hais~ don''t trust me lors~ :('), (862, 185, 'Johor Bahru, Johore', '@nurulm OMG CALL ME MAYBE GAY GUY!!!!'), (863, 392, 'Johore, Malaysia', 'Omw back to teban bro =]'), (864, 393, 'Plentong, Johor Bahru', 'I''m at My Place (Johor Bahru, Johor) http://t.co/MKuvZfYo'), (865, 394, 'Johore, Malaysia', 'I''m at Suyen''s crib ♡ http://t.co/T9my84c9'), (866, 82, 'Malaysia', '@Kkeez เหมือนกัน 5555'), (867, 309, 'Johor Bahru, Johore', '@JoltzSchiffer not me luh retard'), (868, 276, 'Johor Bahru, Johore', 'Who the fuck do you think you are to stop me from taking shisha? It''s my fucking life. It''s my body. I die earlier, not you. So why care?'), (869, 395, 'Johore, Malaysia', 'I''m at Everton Food Place (Outram, Singapore) http://t.co/Qx0YNQMC'), (870, 68, 'Riau, Indonesia', 'haii kak;) RT @ulphaDNP: RT @IlfaAzlyani mention'), (871, 104, 'Johore, Malaysia', '@Sya_miza xpe bole u turn'), (872, 146, 'Johore, Malaysia', '@UpAllNialler your tweets are A+ okkk'), (873, 396, 'Johore, Malaysia', 'dinnerh (: (@ Chinatown Market &amp; Food Centre) http://t.co/END7tk33'), (874, 397, 'Johor Bahru, Johore', 'First ever pantry that is soooo simply nice &amp; chilling !! Comfortable TTM !'), (875, 279, 'Singapore', '@hweesan @xnetzz heh..waeyo!!?? this customer so troublesome!!??'), (876, 398, 'Johor Bahru, Johore', 'Finally home:-)'), (877, 3, 'Johor Bahru, Johore', '@ian_ianization 怎么那么开心啊?哈哈恭喜你呀!'), (878, 399, 'Johor Bahru, Johore', '@ruisshi yeah I''m doing lit in JC. haahhaha perfect excuse to lie on bed and mull over the texts! How are you!'), (879, 288, 'Johor Bahru, Johore', 'Will I ever get the chance to say the words, I make you feel the way that you belive?'), (880, 116, 'Riau, Indonesia', '@UlineVelova89 uline., klian dah slesai ujian prktek?'), (881, 400, 'Johor Bahru, Johore', '@fahmi_seleng @wanorumairah bodoo. sukati aku laa wehhh'), (882, 401, 'Johore, Malaysia', 'I''m at Blk 80A Bedok Road (Bedok, Singapore) http://t.co/e4npMbGG'), (883, 68, 'Riau, Indonesia', 'hehe lagi apa kakcan? RT @tessaaMRD: haai muut ;;) RT @IlfaAzlyani: haii kak ;;) RT @tessaaMRD: RT @IlfaAzlyani: mention'), (884, 12, 'Johore, Malaysia', '@Jollenesmilexz I AM. :)'), (885, 381, 'Plentong, Johor Bahru', '#peopleiwanttome is @emirdanial'), (886, 279, 'Singapore', '@ichi_monji 2AM!!! i watched on my PC here~~~ it''s jjang!!! :D'), (887, 362, 'Malaysia', '@VincePanna อะไรคือดังๆอะั?'), (888, 402, 'Johore, Malaysia', 'I''m at Quiznos http://t.co/botByUah'), (889, 327, 'Johore, Malaysia', 'I had a mini-heart attack when suddenly all I type turn up to be chinese xD'), (890, 403, 'Kota Tinggi, Johore', 'I''m at Wendy''s (Singapore, Singapore) http://t.co/xKud1ook'), (891, 52, 'Johore, Malaysia', 'Diam lah nbcb i got say dunwan let issit -''- \nHe oso use very long alr ryte .'), (892, 23, 'Malaysia', '@lbadz_ น่าสงสาร'), (893, 42, 'Riau, Indonesia', 'AAA JGN GALAU SHILL. KEEP STRONG WEHEHE:P @ashillazhrtiara'), (894, 404, 'Johore, Malaysia', 'I''m at HMV (Singapore, Singapore) http://t.co/b7yo3jNM'), (895, 405, 'Riau, Indonesia', '.Senyuman adalah hadiah bagi orang dan juga bagi diri sendiri...'), (896, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc @ZhenJingKimchi_ what time tmr? http://t.co/pv20BrRZ'), (897, 5, 'Johore, Malaysia', 'I can`t believe i let you walk away .'), (898, 406, 'Johore, Malaysia', 'Why the police men cap look so funny now ?!?!?! Looked like Pokemon ash &gt;.&lt;'), (899, 36, 'Johore, Malaysia', '@YYAALLIINNGG dont go think so much ;( k? Cheer up i am still that guy who can make u smile like an idiot and listen to you, but u r bz ;)'), (900, 395, 'Johore, Malaysia', 'I''m at Sebastian Mix Fusion Cuisine http://t.co/gPDW9EF2'), (901, 386, 'Plentong, Johor Bahru', '@anormaziah @nurulekmi i folo 2'), (902, 340, 'Johore, Malaysia', 'Yeah! I''m a stalker! SO WHAT?!'), (903, 185, 'Johor Bahru, Johore', '@iFARRK @yanayeyoh tu ah nasi goreng makan sorang je! Ada hati nak instagram :('), (904, 407, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 24 others http://t.co/1M2ZhhNO'), (905, 408, 'Johore, Malaysia', 'There is no fight left on the inside. But maybe that is where I should be. I''ve given up trying, I''m giving it all to You.'), (906, 409, 'Johor Bahru, Johore', 'BACK FROM CAMMP....'), (907, 399, 'Johor Bahru, Johore', 'OMG @UNTRUSTABLEKID DO ME A FAVOR AND GO AND WATCH THE SUNSET OK AND TAKE PICTURES OF THEM.'), (908, 335, 'Riau, Indonesia', '@SyahriniFC kapan main keriau. te2h keknya blm ad dech ke riau(pekanbaru)'), (909, 9, 'Johor Bahru, Johore', '@Mackuereau well i can ! Its just that i have to go to the toilet . Hahahahaha'), (910, 12, 'Johore, Malaysia', '@IHEARTSUZY Really arh. :( Miss A als? == Same entertainment group.'), (911, 12, 'Johore, Malaysia', '@Jollenesmilexz V.I.P'), (912, 188, 'Johor Bahru, Johore', 'Me: sial ah namira,dah lah rambut aku mcm lelaki abeh aku tutup muka pekik. Unglam betul xD \n@NamirahAzm_n : hahaha! Diam lah kau nata xD'), (913, 381, 'Plentong, Johor Bahru', '#peopleIWantToMeet is @emirdanial'), (914, 410, 'Johore, Malaysia', 'After a loong absence! (@ Nektar) http://t.co/8btBawV4'), (915, 411, 'Johor Bahru, Johore', 'Seriously, I can wait.'), (916, 412, 'Johor Bahru, Johore', '@jchichibu somebody basketball like zai only!!!'), (917, 52, 'Johore, Malaysia', 'you fucking forgotten what you said ? You said holidays i can use the whole day , NOW ? eh pls lah , next time pls keep ur promise .'), (918, 409, 'Johor Bahru, Johore', 'Just came out frm band..... Sien.... Now going back home'), (919, 255, 'Johore, Malaysia', '@skullhong 홍바보!!!!!&gt;_&lt; 바보 같이 굴지 않는다!!!!'), (920, 413, 'Johore, Malaysia', 'Must as well forget about it'), (921, 414, 'Plentong, Johor Bahru', 'I''m at Santa Barbara Polo &amp; Racquet Club Metrojaya Danga City mall.. http://t.co/JoWyepYE'), (922, 415, 'Johor Bahru, Johore', 'I''m at Bishan Stadium (Singapore, Singapore) http://t.co/9fTyfQ9u'), (923, 416, 'Johor Bahru, Johore', 'I''m at Blk 981B @ Buangkok Crescent http://t.co/tuI1UV4l'), (924, 22, 'Johor Bahru, Johore', 'YES“@fxtg88k: "Gorgeous shoes give you blisters."”'), (925, 9, 'Johor Bahru, Johore', '@TrulyLee hahahaha . Then lean on your bf shoulder . Hahahahah'), (926, 43, 'Johore, Malaysia', '@amirsyazwina That right. Btw thanks. okay act im so scary :/'), (927, 417, 'Johore, Malaysia', 'I''m at Holland Village (Singapore, Singapore) http://t.co/KOKFdEk4'), (928, 411, 'Johor Bahru, Johore', 'What''s wrong with my Blackshot together? zzz.'), (929, 68, 'Riau, Indonesia', 'makanya jadi orang jan terlalu gauuul'), (930, 9, 'Johor Bahru, Johore', '@LoverLoiiopop yeah . :)'), (931, 5, 'Johore, Malaysia', '@_fakeAsmileee_ EL , science wrksht , thn the rest i nt sure .'), (932, 418, 'Johore, Malaysia', 'I''m at Fitness Gym @ Blk 13 http://t.co/SvG2j9n2'), (933, 26, 'Johore, Malaysia', 'berpenyakit betul la. asal bgn tido je ada hingus. =.='), (934, 375, 'Riau, Indonesia', 'hihi :) lagi apa larasss kecee :D wka @larasoktvn'), (935, 409, 'Johor Bahru, Johore', 'Going malaysia tmr ._. Didn''t even pack my things._.'), (936, 188, 'Johor Bahru, Johore', '@_purrplekitty it damn scary :)'), (937, 419, 'Johor Bahru, Johore', 'I''m at Sarah''s House. http://t.co/rUjbnklj'), (938, 400, 'Johor Bahru, Johore', 'bongok lah mereka mereka nih. aku buat fb baru sebab nk remove frends yg saiko sumeee.'), (939, 68, 'Riau, Indonesia', 'hehe,lagi apa kakak? RT @ulphaDNP: @IlfaAzlyani heeii jugaak deeek ;;))'), (940, 398, 'Johor Bahru, Johore', 'Time to eattt!!!'), (941, 378, 'Johore, Malaysia', 'Got enough cameras? @ Expo MRT Station (CG1/DT35) http://t.co/JS7awcws'), (942, 420, 'Johor Bahru, Johore', '@feezee10 Wah Itu bahaya ganda dua!'), (943, 421, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 9 others http://t.co/qj0TN8FK'), (944, 422, 'Johor Bahru, Johore', 'Home. Tired. (@ Blk 498H, Tampines Street 45) http://t.co/CWtqxUYp'), (945, 43, 'Johore, Malaysia', '@iAmyliaNatasya Thanks babyy :* Smk taman daya 3. Tahu ?'), (946, 416, 'Johor Bahru, Johore', 'I''m at Shop N Save (Singapore) http://t.co/8Wv4b2tG'), (947, 423, 'Johor Bahru, Johore', 'I''m at Terminal 1 (Singapore, Singapore) w/ 7 others http://t.co/dYo1A0Pa'), (948, 424, 'Johore, Malaysia', 'And it''s a wrap at the office! http://t.co/IvrLTwcM'), (949, 425, 'Kota Tinggi, Johore', 'I''m at Bustop No 27309 (Opp Blk 978) http://t.co/qQoZ9cNf'), (950, 3, 'Johor Bahru, Johore', '根据调查显示, @uggene likes to use ''haha'', '':)'' \n\nHahah^^'), (951, 12, 'Johore, Malaysia', '@Jollenesmilexz Say A.'), (952, 58, 'Malaysia', '@PloYSaiizaStorY ๕๕๕๕๕ ไปเคลียกับกะเจ้เอาาาเองหน๋าา'), (953, 41, 'Plentong, Johor Bahru', '@zulailizulkifli entah la, aku macam lupa tapi memang ada call la, sebab aku nak cakap ngan mira kot xD'), (954, 426, 'Johore, Malaysia', 'Feeling lazy to OT but if i dont finish section U today, it willl continue to haunt me even in my sleep'), (955, 299, 'Malaysia', '@JoannnaRamdzan why joe?'), (956, 247, 'Johore, Malaysia', 'Sometimes we should really think before we talk'), (957, 143, 'Johor Bahru, Johore', 'I rather die in my sleep ~'), (958, 84, 'Kota Tinggi, Johore', '@awemazingCHAR AIA.. I''m waiting for another agency''s call by this few days too which e wrking place is either bt batok or commonwealth.'), (959, 68, 'Riau, Indonesia', 'gi apa say? RT @mumutcimamay: Iaa haaii :D RT @IlfaAzlyani: haiii RT @mumutcimamay: RT @IlfaAzlyani: mention'), (960, 356, 'Johore, Malaysia', 'silent treatment never works on me cause i know exactly how to play the stupid childish games you do just as well'), (961, 334, 'Johor Bahru, Johore', 'I''m at SMRT Buses: Bus 302 (Singapore) http://t.co/ksFSqToh'), (962, 427, 'Johore, Malaysia', 'Late lunch &amp; early dinner W/@denisechuaaa , @huiminnnnns &amp; Max :&gt; (@ Domani w/ @huiminnnnns) http://t.co/h9aP2SjX'), (963, 302, 'Singapore', '@maxallover we see :P playmaker siol'), (964, 428, 'Johor Bahru, Johore', 'I''m at Tampines Mall (Singapore, Singapore) w/ 16 others http://t.co/Aoq0mV7r'), (965, 429, 'Johor Bahru, Johore', 'I''m at Daiso (Singapore) http://t.co/yadxcSXT'), (966, 241, 'Johor Bahru, Johore', '@EeyenLim difference between us is that I''m a smart attacker while you''re a reckless chiongster'), (967, 58, 'Malaysia', '@patt2534 ๕๕๕๕๕๕๕๕๕๕ ไม่ได้ไปนานแล้วววเบออะ ๕๕'), (968, 191, 'Plentong, Johor Bahru', 'Ehh tk cakapa pape punnnn?'), (969, 131, 'Johore, Malaysia', 'mac ICECREAM..ROAR!!!MUAHAHAHAH'), (970, 26, 'Johore, Malaysia', 'chey takla ahahhah'), (971, 430, 'Johor Bahru, Johore', 'I''m at Newcourt :) http://t.co/Lx0eWmsg'), (972, 51, 'Johor Bahru, Johore', 'Nga otp ngan bb skali nak terberry pulak . Kecoh uh . Hhaha'), (973, 327, 'Johore, Malaysia', '#SekolahSayaAda cikgu yang pervetic (-_-)'), (974, 431, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 10 others http://t.co/uwqzAMNO'), (975, 432, 'Plentong, Johor Bahru', '@noynoysyukriah kalau xphm kasi hantok lu punye kepale kt dinding .'), (976, 433, 'Johore, Malaysia', '@IanColorina bored?heehe!'), (977, 40, 'Johor Bahru, Johore', 'BAD BOY.'), (978, 223, 'Pulai, Johor Bahru', 'I''m at TESCO Bukit Indah (Johor Bahru, Johor) http://t.co/wbCQXob9'), (979, 292, 'Johor Bahru, Johore', '@yannc2021 cause you didn''t see me working. I''m still stuck in office ok? http://t.co/r8rPGr2o'), (980, 434, 'Johore, Malaysia', 'I''m at marine parade central http://t.co/ByFO23BA'), (981, 153, 'Riau, Indonesia', '@rinrams follback y.'), (982, 18, 'Johor Bahru, Johore', 'Shall i go to school or go home straight?'), (983, 9, 'Johor Bahru, Johore', '@TrulyLee ohhh . 0.0 erm , okay . Becareful then . Look out for the cars . :)'), (984, 246, 'Johor Bahru, Johore', 'I''m at Sin Ming Court Void Deck http://t.co/xcCxXB8J'), (985, 302, 'Singapore', '@aparonomasiac just got a mail from http://t.co/NdiPeWm0 . I wonder how they got my email in the first place.'), (986, 435, 'Johore, Malaysia', '@SaxophonistD NAFA? WHATS THAT?'), (987, 188, 'Johor Bahru, Johore', '@_purrplekitty welcome :) and thankyou for the wish. :D'), (988, 142, 'Johore, Malaysia', 'I can''t take these terrible cough and cold and flu and runny nose anymore. Non-stop cough and sneezing. And crying too. =''('), (989, 412, 'Johor Bahru, Johore', 'Things I hate after office hours: RT'), (990, 68, 'Riau, Indonesia', 'Nobody''s Perfect'), (991, 26, 'Johore, Malaysia', 'masih tak percaya stengah duit aku dah hilang tadi pagi baru blanja barang dapur je. hais.. ahha'), (992, 436, 'Johore, Malaysia', 'Cheap, clean, accessible Beary hostel. So far, so good. (@ Beary Best! By Beary Good) [pic]: http://t.co/TtoCakIO'), (993, 437, 'Johore, Malaysia', 'HOME !! (@ Blk 501 Bedok North Ave 2) http://t.co/EwR89Qu6'), (994, 438, 'Johor Bahru, Johore', 'At Kofu here naoo playing bball ^~^'), (995, 68, 'Riau, Indonesia', 'Nobody''s Perfect [Like it? http://t.co/s8FVD9lP ]'), (996, 185, 'Johor Bahru, Johore', '@nurulm lol I love the song!!! :) reminds me of the prank call I did to you hehe'), (997, 409, 'Johor Bahru, Johore', 'It feels weird using my phone to listen to music now/: using my iPod nano is now a common thing for me..):'), (998, 68, 'Riau, Indonesia', 'RT @KamusCewek: Kalo ada cowok blg sayang ke kita, pasti ekspresi pertama itu senyum #KamusCewek'), (999, 439, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 26 others http://t.co/xTsxA2hi'), (1000, 43, 'Johore, Malaysia', '@yarkkkkpashhhaa Haha good. i sakit kepala sikit. *Speaking pun boleh. Haha'), (1001, 431, 'Johore, Malaysia', 'I''m at Xin Wang Hong Kong Cafe (Singapore) http://t.co/Aa2uohKi'), (1002, 9, 'Johor Bahru, Johore', 'Did i said something wrong ?'), (1003, 440, 'Johore, Malaysia', '@mrjonchong LIKE'), (1004, 327, 'Johore, Malaysia', '#SekolahSayaAda kucing :3'), (1005, 192, 'Plentong, Johor Bahru', 'Sabar ye opah.nih sume dugaan kan.haihhhhh cian opah kite auw :( (@ Hospital Sultana Aminah JB w/ 2 others) http://t.co/v2nKwMMg'), (1006, 72, 'Johor Bahru, Johore', '@doubleyouuem sleep la. Buses are fun to sleep on'), (1007, 223, 'Pulai, Johor Bahru', 'I''m at McDonald''s Bukit Indah http://t.co/PAvD0K7M'), (1008, 12, 'Johore, Malaysia', '@Jollenesmilexz A+ cause their blood type all A.'), (1009, 441, 'Johore, Malaysia', 'Come here just to have dinner . Siaoliao ! &gt;.&gt; lazy cycle LOL . (@ East Coast Park Area C) http://t.co/NMY9cEx1'), (1010, 442, 'Johore, Malaysia', 'I''m at The Clementi Mall (Singapore, Singapore) w/ 10 others http://t.co/LaM77a49'), (1011, 58, 'Malaysia', '@PloYSaiizaStorY ๕๕๕๕๕๕๕๕๕๕๕'), (1012, 237, 'Johore, Malaysia', 'Pcb those auntie can squeeze jiu squeeze. Never give chance de'), (1013, 443, 'Johore, Malaysia', '@iamYourlanda #teamEachACup Whooop.'), (1014, 444, 'Johor Bahru, Johore', '@StupidRuiZhen Ohh nvm :)'), (1015, 206, 'Singapore', 'As Requested! Preorder SHINee’s 4th Mini Album Sherlock @ SGD19.90 (1 out of 5 random poster designs given while stocks last!)'), (1016, 188, 'Johor Bahru, Johore', 'andro for a day. Wtf nata? xD'), (1017, 445, 'Malaysia', '@TheDanap ไม่เกี่ยวน่ะ!5555'), (1018, 236, 'Johor Bahru, Johore', '@PinkLeprechauns Ralph keeps on sweet talking to me.I keep falling for him over and over again. Argh, I know he''s a douche but.he''s so nice.'), (1019, 146, 'Johore, Malaysia', '@Divya__14 no like literally take a pic'), (1020, 143, 'Johor Bahru, Johore', '“@AkuSingaporean: When you buy something in a vending machine and stuck halfway. Fuuuuuuu!”'), (1021, 446, 'Singapore', 'I''m addicted to Pokemon game!!! But digimon is still the best.'), (1022, 206, 'Singapore', 'WTH WHY ONLY 19.90 :('), (1023, 36, 'Johore, Malaysia', '@YYAALLIINNGG when was the last time you had this feeling :) glad you are back :) welcome back~ sotong :)'), (1024, 447, 'Johore, Malaysia', 'I''m at CDC koven - Potong Pasir Pick Up Point http://t.co/mXbOE0PN'), (1025, 61, 'Johor Bahru, Johore', 'Was @PeiYi2706 talking to herself 5 minutes ago again? O.o'), (1026, 443, 'Johore, Malaysia', 'Hanya ingat kamu, kala duka ku :&lt;'), (1027, 448, 'Plentong, Johor Bahru', 'I''m at CIMB Permas Jaya (Johor Bahru, Johor, Malaysia) http://t.co/RkrQK9bp'), (1028, 449, 'Johor Bahru, Johore', '@thiveebeanie @kickassredlips hahahaha if it really was for me then piaseh her lah.. Coz it wasn''t for her.. Hehehehe'), (1029, 206, 'Singapore', 'nehmind not gonna buy shinee''s xD'), (1030, 72, 'Johor Bahru, Johore', 'Listening to seal lullaby again..'), (1031, 450, 'Johor Bahru, Johore', 'I''m at MOF の My Izakaya (Singapore) http://t.co/ZWJww7HF'), (1032, 422, 'Johor Bahru, Johore', 'While day out. R tired. But still a very productive day today! :)) satisfied.'), (1033, 451, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 29 others http://t.co/GWckaDm8'), (1034, 207, 'Johore, Malaysia', 'I''m at H&amp;M (Singapore) w/ 8 others http://t.co/U3oAsW1N'), (1035, 452, 'Johore, Malaysia', 'Cb. Wanna eat also no place to sit.'), (1036, 355, 'Johore, Malaysia', 'I''m at The Basement by Kopitiam (Singapore, Singapore) http://t.co/sjtSmBVg'), (1037, 68, 'Riau, Indonesia', 'haha cama;) nonton apa beb? RT @mumutcimamay: Lagi ntn beeb:) kamuu? RT @IlfaAzlyani: gi apa say? RT @mumutcimamay: Iaa h'), (1038, 154, 'Singapore', 'And in the end,its not the years in your club that count,It''s the number of trophies in your club...HAPPY BIRTHDAY #LFC'), (1039, 185, 'Johor Bahru, Johore', '@yanayeyOh @ifarrk Yana nanti I instagram my cake k and Farrah if nice, I send you ☺'), (1040, 146, 'Johore, Malaysia', '@Divya__14 needs to hurry up and get me that pic'), (1041, 299, 'Malaysia', '@JoannnaRamdzan aik,,,camtue plak.. kesian gila,,'), (1042, 80, 'Johor Bahru, Johore', 'i''ll make him the third person know where i''m going...'), (1043, 72, 'Johor Bahru, Johore', '@ClarissaQQL Ahhh weary flipperling curl at thy ease~'), (1044, 453, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 8 others http://t.co/IZpK2wGJ'), (1045, 2, 'Johor Bahru, Johore', 'Just Reached the Chalet..Damn Tired dat now Imma Lying on the Bed ..Aunty Entertaining Guests which is My Uncle''s Sis..'), (1046, 13, 'Singapore', '@agrimsingh LOL maybe someone''s sending you subtle hints'), (1047, 116, 'Riau, Indonesia', 'sm qta syang., :( tp hru sbtu aq gk da ujian prktek dow. emg klian mulai na kpn? kox lm x slesai na? RT @UlineVelova89: belum syg :( sabtu'), (1048, 444, 'Johor Bahru, Johore', 'This is our love ♥'), (1049, 146, 'Johore, Malaysia', '@Hungry4horan wow that''s really cute! x'), (1050, 454, 'Johore, Malaysia', 'Those moment when you feel so happy'), (1051, 128, 'Johore, Malaysia', 'Damn english hmk how do zz'), (1052, 72, 'Johor Bahru, Johore', '@doubleyouuem ._. Where u go? Go home sleep la!'), (1053, 68, 'Riau, Indonesia', 'messy galau aim'), (1054, 327, 'Johore, Malaysia', 'I''m lookin'' forward to my KL trip but not my SCHOOL trip.'), (1055, 455, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 28 others http://t.co/Ys3dzwk4'), (1056, 375, 'Riau, Indonesia', 'haha iyaaa sama sama :) owhh :D eh nama fb kamu apaan ? RT @larasoktvn'), (1057, 456, 'Johor Bahru, Johore', '@GladysSeahh I''m alright babe'), (1058, 457, 'Riau, Indonesia', 'I''m at Fort Siloso (Sentosa Island, Singapore) http://t.co/movfn6G3'), (1059, 12, 'Johore, Malaysia', '@IHEARTSUZY Ouh okay :) Thank you. :)'), (1060, 458, 'Johore, Malaysia', '@mingfats @shing_nee what''s with the calling and stuff -.-"'), (1061, 459, 'Tebrau, Johor Bahru', '@Hasinahp @Sehin23 @YiJieNoobNoob @sunny_penny outing! We must share d horror! Mwahaha!'), (1062, 26, 'Johore, Malaysia', '#BestThingAboutBeingSingle tkya nk pujuk pompan nya ngada ngada. menyamz. sepak nak?'), (1063, 146, 'Johore, Malaysia', 'i will marry liam #okbro'), (1064, 333, 'Johore, Malaysia', '120315 M!Countdown FTISLAND Severely☆\nhttp://t.co/44U1KATS \nvia:@FtDrLOVEarays'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (1065, 115, 'Johor Bahru, Johore', 'Twitcon changed to Katniss-Inspired-Camwhoring-Session-During-Coursework-EC-because-I-Was-Bored xD #TotallyObsessedWithTheHungerGamesAlready'), (1066, 216, 'Malaysia', '@Fu_heartless 199 ที'), (1067, 460, 'Johore, Malaysia', 'Looking back on the things I''ve done, I was trying to be someone.'), (1068, 143, 'Johor Bahru, Johore', '“@TheseDamnQuote: I don''t have EX''s. I have Y''s. Like "Y the hell did I date you?”'), (1069, 41, 'Plentong, Johor Bahru', '@sfatinfarhana tapi FJ tu super F xD'), (1070, 461, 'Kota Tinggi, Johore', 'Ngaji. If not can continue play basketball siah... :( (@ Blk 685A Jurong West St 64) http://t.co/LOdHRZPH'), (1071, 98, 'Johor Bahru, Johore', 'Cause love is over, love love is over tonight'), (1072, 462, 'Johore, Malaysia', '@_purrplekitty I''m craving for mac Brekkie too! Lol'), (1073, 9, 'Johor Bahru, Johore', '@TrulyLee hahah . Sure . :) while i drive ? 0.0'), (1074, 41, 'Plentong, Johor Bahru', 'if you love me.you need to accept me as i am. my good,my bad. you need to accept it and adapt to it.i don''t have to change. but you are. :D'), (1075, 43, 'Johore, Malaysia', 'Hi model :P'), (1076, 463, 'Johor Bahru, Johore', 'I''m at Hougang Mall w/ @veeohna http://t.co/chMi89yg'), (1077, 292, 'Johor Bahru, Johore', '@yannc2021 *shakes head* reporting is a tough job.'), (1078, 464, 'Johor Bahru, Johore', '@TuneTalk hi i wish to know what is the difference between 60 sec charging block and 30 sec charging block? thanks'), (1079, 465, 'Plentong, Johor Bahru', 'got chased out of the office.'), (1080, 171, 'Johor Bahru, Johore', 'Early dinner cum dessert with family :) (@ Terminal 2 w/ 11 others) http://t.co/ic69ZigX'), (1081, 145, 'Johore, Malaysia', '@iamanrose tusi menu kiha si naa ki mai tuhadi hasdi kheldi jindgi barbaad kar diti is lai mai kiha si ki'), (1082, 58, 'Malaysia', '@patt2534 ๕๕๕๕๕๕'), (1083, 466, 'Malaysia', 'http://t.co/x5IShoc2'), (1084, 467, 'Plentong, Johor Bahru', 'Aku nak nanges ni :''('), (1085, 468, 'Johor Bahru, Johore', 'Hungry dao yao Si !!! (@ Long John Silver''s) http://t.co/05oqVUPH'), (1086, 412, 'Johor Bahru, Johore', '@jchichibu I''m in camp now lor where got jb! LOL!'), (1087, 335, 'Riau, Indonesia', '@MK_MN @dahSyatMusik @inne_Milova mantap'), (1088, 469, 'Johore, Malaysia', 'I''m at Marrison Hotel (Singapore) http://t.co/RVkC4jaw'), (1089, 19, 'Johor Bahru, Johore', '@ZaineYing @kaayykayy hahahahaha..... Ur stocker...... Hahahahaha....'), (1090, 470, 'Kota Tinggi, Johore', '@ryo74 oooo. Sport bra sexyyyy....'), (1091, 375, 'Riau, Indonesia', 'sama :D , jgan bete2 mending hapy2 :'') *eh @Ayudiadiadia'), (1092, 462, 'Johore, Malaysia', '@jennytyl Wah seh!! Japan holiday ~~ woohoo'), (1093, 448, 'Plentong, Johor Bahru', 'Pecah duit (@ CIMB Permas Jaya) http://t.co/DUBEfLeb'), (1094, 277, 'Kota Tinggi, Johore', '@oOyaanaaOo peringkat pe?.'), (1095, 173, 'Johor Bahru, Johore', 'Don''t know what for, you''re turning heads when you walk through the doooooor RT @myraaong: Insecure.'), (1096, 282, 'Pulai, Johor Bahru', '@ctAika haha da habes lab ke? nak beli nasik kukus x?yummeh'), (1097, 43, 'Johore, Malaysia', '@NurSabrinaSam Hi baby :*'), (1098, 471, 'Johore, Malaysia', 'Module 6A 3/4 (@ SGX Centre 2) http://t.co/GadrjoDt'), (1099, 460, 'Johore, Malaysia', 'Help me, i can''t win this war.'), (1100, 80, 'Johor Bahru, Johore', 'he know my best buddie !!! hahaha... awesome'), (1101, 241, 'Johor Bahru, Johore', '@EeyenLim you talk shyt so much 1v1 -apomsh la make so much noise'), (1102, 472, 'Johor Bahru, Johore', 'batt tinggal 17%.. wth.. hahhaha'), (1103, 36, 'Johore, Malaysia', '@YYAALLIINNGG hehe my HD?'), (1104, 292, 'Johor Bahru, Johore', '@MYuDreamRain oh no, yes you can. :)'), (1105, 473, 'Johor Bahru, Johore', 'I''m at Terminal 1 (Singapore, Singapore) w/ 11 others http://t.co/zmKxU0lO'), (1106, 474, 'Johor Bahru, Johore', 'I''m at Minions'' Gallery http://t.co/lTsDniEy'), (1107, 475, 'Johore, Malaysia', 'Branding is impt!!'), (1108, 476, 'Johore, Malaysia', '@jaja3012 @nazri_ ja xbaik curang!'), (1109, 477, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 11 others http://t.co/VhVlOxCF'), (1110, 84, 'Kota Tinggi, Johore', '@charisthegreat yup! I will! Hope to start wrk ASAP! Yup, received. Thanks a lot a lot!'), (1111, 454, 'Johore, Malaysia', 'Loyal woman deserve the best'), (1112, 153, 'Riau, Indonesia', '@TesalonikaJnnt follback.'), (1113, 310, 'Kota Tinggi, Johore', 'I''m at NTUC FairPrice (Singapore, Singapore) http://t.co/Z1jetBSZ'), (1114, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc @zhenjingkimchi_ Huh then meet what time?'), (1115, 478, 'Johore, Malaysia', 'Alcohol screwed up ur mind. Examples been set. A leopard will nv change it spot.'), (1116, 479, 'Johore, Malaysia', 'I''m at *SCAPE (Singapore, Singapore) w/ 6 others http://t.co/yfxyVa94'), (1117, 12, 'Johore, Malaysia', '@Jollenesmilexz Angel. I know right so weird.'), (1118, 48, 'Johor Bahru, Johore', '@SugaryKittyx Okok. If you coming down then text me lor.'), (1119, 480, 'Johor Bahru, Johore', '@kobedarren @CherieCjl later :)'), (1120, 481, 'Tebrau, Johor Bahru', 'Meeting cousin at Aloha Terrace. First time riding motorcycle. I''m terrified!!'), (1121, 482, 'Johor Bahru, Johore', 'I''m at Yishun Swimming Complex (Yishun, Singapore) [pic]: http://t.co/4HKKs8fA'), (1122, 472, 'Johor Bahru, Johore', 'mendaq pe. hahaha'), (1123, 483, 'Johor Bahru, Johore', 'I''m at Century Square (Singapore, Singapore) http://t.co/VVhbl7eS'), (1124, 87, 'Johore, Malaysia', 'HOLIDAY MODE ON !!!'), (1125, 53, 'Johor Bahru, Johore', '@AdeleSeah (Y)'), (1126, 412, 'Johor Bahru, Johore', 'Feel like going botak once again'), (1127, 484, 'Johor Bahru, Johore', 'Full time win 6-4 !! woooo (@ Park Beside Peiying Primary School) [pic]: http://t.co/iJuRy74G'), (1128, 411, 'Johor Bahru, Johore', 'Okayy, you not ready?'), (1129, 464, 'Johor Bahru, Johore', '@umobilesb hi i wish to know what is the difference between 60 sec charging block and 30 sec charging block? thanks'), (1130, 485, 'Johore, Malaysia', 'Wow!!! Crowded as ALWAYS with (@ City Hall MRT Interchange (EW13/NS25) w/ 7 others) http://t.co/VMHXV7pF'), (1131, 242, 'Johor Bahru, Johore', '@motorstig lol , can'), (1132, 486, 'Johor Bahru, Johore', 'Uhuh home alone again . #teamforeveralone'), (1133, 487, 'Johore, Malaysia', 'BENGAY!? or us ^^ RT @euxuanlin: I like that gay thing a lot.'), (1134, 26, 'Johore, Malaysia', 'main air mcm budak kecik kat dlm toilet. bye'), (1135, 129, 'Plentong, Johor Bahru', '@Normfasz_NF ƗƗɐƗƗɐƗƗɐ "̮.. Siape yang berjaya halang u tu?'), (1136, 183, 'Riau, Indonesia', 'wwwkwk apaan @TaNTiCePeLa_LO, males ia, gmana ya blajar yang rajin kyk bang peter ckckckck RT @YessicaMEP namanya juga org pinter may :P'), (1137, 139, 'Singapore', '@Zophia98 Sorry for what sio? :OOO Heheh :))'), (1138, 476, 'Johore, Malaysia', '@RusydiRosli alaa takut yg dasyat xfully scary bebanding takut extra dasyat!'), (1139, 340, 'Johor Bahru, Johore', '@NurFatynAngel thanks fatin ! &lt;3'), (1140, 40, 'Johor Bahru, Johore', 'SEUNGRI COUNTING HIS PIERCING SO CUTE'), (1141, 488, 'Johore, Malaysia', 'I''m at ION Orchard w/ @glitt3rcandy http://t.co/JfoRbUP8'), (1142, 486, 'Johor Bahru, Johore', '"@LTAsg: Accident on KJE towards BKE after Tengah Flyover. Congestion till Tengah Flyover over"'), (1143, 489, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 28 others http://t.co/WLh4EqDb'), (1144, 327, 'Johore, Malaysia', 'Bila kene tanye pasal ''penyanyi wanita yang kau kenal'' mesti cakap siti nurhaliza. Outdated la korang ni.'), (1145, 490, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/9iMhL6eO'), (1146, 128, 'Johore, Malaysia', 'Cant stop repeating BABY IM SORRY'), (1147, 491, 'Johore, Malaysia', 'Last groupon voucher. Hehe (@ Popeyes® Louisiana Kitchen) http://t.co/4ydj87ON'), (1148, 492, 'Johor Bahru, Johore', 'I''m at My Dining Table!! http://t.co/DwwWt3Ga'), (1149, 282, 'Pulai, Johor Bahru', '@ctAika bulan?'), (1150, 412, 'Johor Bahru, Johore', 'I''m at Civil Defence Academy (VTC) http://t.co/BRTm0kBW'), (1151, 310, 'Kota Tinggi, Johore', '@eleapot syempre! Hehe.. Dito ko FP. Yoga kayo tonyt?'), (1152, 493, 'Johor Bahru, Johore', 'Shall continue after the run. Really have to take a chill pill.'), (1153, 216, 'Malaysia', '@Fu_heartless อ๋ออืมโอเค พี่รอพี่เขาก่อนเดียวพอพี่เขามาเดียวรีบไปรับนะ'), (1154, 36, 'Johore, Malaysia', '@YYAALLIINNGG take care in life :) hehe jia you ah dun give ho'), (1155, 494, 'Johor Bahru, Johore', 'Pleasee jgn call call call...irritating la'), (1156, 9, 'Johor Bahru, Johore', '@TrulyLee hahahah . Wah . Macam2 eh ? Hahahahah'), (1157, 145, 'Johore, Malaysia', '@iamanrose eh sara kuch mere karke hoeya pyar menu kalle nu tuhade naal nai ci tuhanu vi mere naal ci na tanhi eh sab kuch hoeya'), (1158, 495, 'Pulai, Johor Bahru', '#KalauCrushAku sekelas ngn aku,sumpahh time study memang CONFIRM takboleh fokus! Asyik pandang mukaa DIA sambil berangan je!\nXP #GilaBeb'), (1159, 36, 'Johore, Malaysia', '@YYAALLIINNGG up***'), (1160, 496, 'Singapore', '@Jon_tyty will do . can do .'), (1161, 297, 'Johore, Malaysia', 'Sides @ Arirang Korean Restuarant @ Liang Seah Street http://t.co/RL9WhNGR'), (1162, 292, 'Johor Bahru, Johore', '@yannc2021 and I''m starving...'), (1163, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc @zhenjingkimchi_ K.'), (1164, 497, 'Plentong, Johor Bahru', 'Nasik lemak pulak (@ Mr combi cafe and kopitiam) http://t.co/apDSg5jb'), (1165, 12, 'Johore, Malaysia', '@IHEARTSUZY haha. Yup. But I think will be Big Bang.'), (1166, 365, 'Johore, Malaysia', 'Stupid patient wana complain cos i nvr inform doctor bout his high bp,padahal its ard baseline ape.nabeyyy'), (1167, 498, 'Johor Bahru, Johore', 'I miss him &lt;3'), (1168, 333, 'Johore, Malaysia', '120315 F.T.Island -- 지독하게 Severely on M! Countdown: http://t.co/FzmIn1MY\nvia:@FtDrLOVEarays'), (1169, 444, 'Johor Bahru, Johore', 'Me and you ♥ http://t.co/BMODoF5w'), (1170, 146, 'Johore, Malaysia', '@Divya__14 WHY DIVYA WHY'), (1171, 40, 'Johor Bahru, Johore', 'AIN''T NO FUN. &lt;33'), (1172, 145, 'Johore, Malaysia', '@iamanrose nai ta kuch vi nai c hona na tuhadi jindigi barbaad honi si naa meri life khrab honi ci'), (1173, 41, 'Plentong, Johor Bahru', '@zulailizulkifli hahaha, sikit la kelakarnya xD'), (1174, 9, 'Johor Bahru, Johore', '@Mackuereau who cares ? I told you i''m strong enough to flick your dragon with my tongue . :) hahahahahah'), (1175, 487, 'Johore, Malaysia', 'RT @DAILYDlARY: olny sxey poeple cna unscarbmle tish snetnece.'), (1176, 268, 'Johore, Malaysia', 'I''m at Singapore Botanic Gardens http://t.co/AHG05Nhw'), (1177, 499, 'Malaysia', '@Tumvadee ขอโทด ถ้าทำอะไรผิดไป :))'), (1178, 146, 'Johore, Malaysia', '@Divya__14 you goondu ok!'), (1179, 191, 'Plentong, Johor Bahru', 'HAHAHAHAHAHAHAHAHAHAH :''('), (1180, 500, 'Malaysia', 'I''m at The Zon Duty Free @Padang Besar http://t.co/gU042PSE'), (1181, 501, 'Johore, Malaysia', 'I''m at Bus Stop 42051 (The Sterling) (Singapore, Singapore) http://t.co/Qqn9M63g'), (1182, 38, 'Johor Bahru, Johore', 'Faster my turn larh, so long /:'), (1183, 375, 'Riau, Indonesia', 'lagi on twitt + pesbuk juga :) ohh yadeh sipp ntar aku add :D @larasoktvn'), (1184, 61, 'Johor Bahru, Johore', 'I m forever inferior to p e i y i'), (1185, 502, 'Johore, Malaysia', 'Just posted a photo @ Marina Bay Sands @ 57 Level Sky Park http://t.co/2rzFwR4H'), (1186, 207, 'Johore, Malaysia', 'I''m at ZARA (Singapore, Singapore) http://t.co/AIm1Laqm'), (1187, 503, 'Johor Bahru, Johore', '@Sertainly :D same here! Gg to pang kang soon?'), (1188, 327, 'Johore, Malaysia', 'If I were to live in KL, i would choose digi as my phone prepaid. It has 20 sms free with every 6 sms sent.'), (1189, 504, 'Johor Bahru, Johore', '@MelKnaus1 been signing all the petitions I could see ever since. -.-'), (1190, 505, 'Johor Bahru, Johore', '@FAMJIEXIN yeap . :-) went thr for SL w/rackey trip.'), (1191, 506, 'Johore, Malaysia', 'I''m at Takashimaya Department Store (Singapore, Singapore) w/ 13 others http://t.co/N0241Z0j'), (1192, 507, 'Johor Bahru, Johore', 'I''m at 126B Edgedale Plains (Singapore) http://t.co/W8gGwiHP'), (1193, 508, 'Johore, Malaysia', 'I''m at Bus Stop 01059 (Singapore, Singapore) http://t.co/UXcU9EJO'), (1194, 509, 'Johor Bahru, Johore', 'I''m at AMK Hub w/ @rforrenhao http://t.co/H85JGNWg'), (1195, 12, 'Johore, Malaysia', '@Jollenesmilexz Inspirit. :)'), (1196, 510, 'Johor Bahru, Johore', 'I''m at Blk 333 Bukit Batok Street 32 (Singapore) http://t.co/JubE2ELp'), (1197, 511, 'Johor Bahru, Johore', 'Men@work.... @ Gate E22 Terminal 2 Changi http://t.co/WJ81RVTz'), (1198, 82, 'Malaysia', 'แต่ก่อนสะท้อนแสงเงาสองเรานอนกอดกัน'), (1199, 476, 'Johore, Malaysia', '@jaja3012 @nazri_ xpayah!min ho bagi nazri usya!xlama lagi die jadi cantik!'), (1200, 512, 'Riau, Indonesia', 'Rode mummy 3 times!'), (1201, 486, 'Johor Bahru, Johore', '"God made coke; God made pepsi. God made me; oh so sexy. God made rivers; God made lakes. God made you; well... we all make mistakes."'), (1202, 43, 'Johore, Malaysia', 'Ha. Hi zaa minah rocker, gelabah, kuat bedekak. Eh? Hahaa'), (1203, 513, 'Johor Bahru, Johore', '“@Angshiting: Some teachers are just too unreasonable.”'), (1204, 153, 'Riau, Indonesia', '@Deviranthy follback.'), (1205, 514, 'Johor Bahru, Johore', 'I''m at Pasir Ris Park (Area 1) (Singapore) http://t.co/nXzwo44T'), (1206, 98, 'Johor Bahru, Johore', 'Corn eh @ficobutternuts?? Bagus'), (1207, 515, 'Johor Bahru, Johore', 'changi airport ni 11 12 lah sm supadio hehe, amiiin http://t.co/emHgxOCb'), (1208, 146, 'Johore, Malaysia', '@teenswagster awkward when zayns cousin will marry him. haha!'), (1209, 12, 'Johore, Malaysia', '@IHEARTSUZY Okay :) I will.'), (1210, 516, 'Johor Bahru, Johore', 'wondering if anyone in Singapore got email from #Apple for their new #iPad delivery tomorrow ?'), (1211, 518, 'Johore, Malaysia', '@Sihuimoos dont think so. I dont know how to give to her'), (1212, 519, 'Johore, Malaysia', 'sarap mag jogging :) @ Block 97 Old Airport Road http://t.co/iQc5iGXG'), (1213, 520, 'Johore, Malaysia', 'I''m at I ❤ Taimei (Singapore, Singapore) http://t.co/e8ewfm0X'), (1214, 521, 'Malaysia', 'I just ousted @salsabilaputrip as the mayor of Istana Plaza on @foursquare! http://t.co/gr5TKDm8'), (1215, 521, 'Malaysia', 'I''m at Istana Plaza (Bandung) http://t.co/qTBZ9BMj'), (1216, 522, 'Plentong, Johor Bahru', 'Sungguh malas nk keje'), (1217, 61, 'Johor Bahru, Johore', 'I m a loser'), (1218, 416, 'Johore, Malaysia', 'Chillaxin☕ (@ Marriott Café) http://t.co/0NWTTpkY'), (1219, 483, 'Johor Bahru, Johore', 'I''m at Tampines Mall (Singapore, Singapore) w/ 18 others http://t.co/hJ4cBweQ'), (1220, 523, 'Malaysia', '@SodsaiiZ ไม่ไปละ - -'''), (1221, 464, 'Johor Bahru, Johore', '@Zairie_Maxis hi my no is 012-7702497. user name charan81.thanks'), (1222, 524, 'Kota Tinggi, Johore', 'I''m at Braddell MRT Station (NS18) (Singapore, Singapore) w/ 4 others http://t.co/fo8UWhQv'), (1223, 525, 'Johore, Malaysia', 'Conclusion. When u are broke, just go window shopping with your buddies'), (1224, 375, 'Riau, Indonesia', 'eh iyaa udah aku add :D haha @larasoktvn'), (1225, 41, 'Plentong, Johor Bahru', '@AjimAnis akak 2 kali lebih rendah dari aku xD'), (1226, 357, 'Johore, Malaysia', 'I''m so lonely ~'), (1227, 61, 'Johor Bahru, Johore', 'I m dumb'), (1228, 9, 'Johor Bahru, Johore', '@Mackuereau you''re the gay one fag ! Hahahahahahaha'), (1229, 526, 'Johore, Malaysia', '@yunisbungisngis Hi Dora! Lol, jk'), (1230, 527, 'Johor Bahru, Johore', 'Hungryyyyyyyy'), (1231, 445, 'Malaysia', '@TheDanap กร๊ากกกก~&gt;&lt;~'), (1232, 219, 'Johor Bahru, Johore', 'Who is this ?! http://t.co/BuzsbUAf'), (1233, 528, 'Johor Bahru, Johore', 'The unexpected surprise.'), (1234, 443, 'Johore, Malaysia', 'HIT THE LIGHTS LET THE MUSIC MOVE YOU.'), (1235, 523, 'Malaysia', 'เย็ดแม่เซ็ง'), (1236, 486, 'Johor Bahru, Johore', '@hafiq_hanapi i have you dowan ..'), (1237, 146, 'Johore, Malaysia', 'OH AND I FORGOT #PeopleIWantToMeet @Kimthawesome and @HeyPriyah :) Xx'), (1238, 436, 'Johore, Malaysia', '"@BearGrylls: ''All life is a chance. So take it! The person who goes furthest is the one who is willing to do and dare.''" #fb'), (1239, 41, 'Plentong, Johor Bahru', 'semakin ramai orang mengenali kite. semakin ramai orang akan membenci kite :)'), (1240, 413, 'Johore, Malaysia', 'Continuing mocking me used to it.'), (1241, 277, 'Kota Tinggi, Johore', '@oOyaanaaOo B''tuah ;'' }'), (1242, 365, 'Johore, Malaysia', 'And i took his blood presure in the morning ok. The doctor also stupid nvr see properly.'), (1243, 188, 'Johor Bahru, Johore', 'RT @Rynwcz_: THIS RT @SayingsForGirls: Being single sucks when you know exactly who you want.! :/”'), (1244, 529, 'Johor Bahru, Johore', '@FathineeNaboloh u write wad?'), (1245, 523, 'Malaysia', 'แม่งเหี้ย :('), (1246, 185, 'Johor Bahru, Johore', '@yanayeyOh @ifarrk da jgn sedih, pergi mkn nasi goreng sana.'), (1247, 38, 'Johor Bahru, Johore', 'That dog in the show so damn cute can. I want!! Can run so damn fast sialz.'), (1248, 530, 'Malaysia', 'I''m at Robinson Had Yai (โรบินสัน หาดใหญ่) (Hat Yai, Songkhla) http://t.co/sgJjNMU2'), (1249, 531, 'Johor Bahru, Johore', 'ah bear is here charging her iphone. lol (@ hello! SingTel Shop) http://t.co/PowJoSss'), (1250, 23, 'Malaysia', 'กูจะมาออนยูวันอาทิตย์ แต่กูออนทวิตทุกวัน #เพื่อ'), (1251, 532, 'Johore, Malaysia', 'WORKKK!!! Come come sogurt~ (@ Sogurt) http://t.co/IbuP9MlQ'), (1252, 58, 'Malaysia', '@Bverzlyy @patt2534 เจ้ค่อยไปต่อน้าา ไปออกกำลังกายยก่อนจ้าา'), (1253, 413, 'Johore, Malaysia', 'Never good enough for anything and anyone'), (1254, 255, 'Johore, Malaysia', '@hongkiholic HAHAHAHAHA!!!!kk hot ur point:) but when i spam them,i also have to say that i''ll be more patriotic than ever?:D'), (1255, 80, 'Johor Bahru, Johore', 'my best buddie ever!!! shashot and shirot kekeke http://t.co/PYIH9bbP'), (1256, 79, 'Plentong, Johor Bahru', '#SusahSukaDenganOrangSusahBenciDenganOrang'), (1257, 43, 'Johore, Malaysia', 'Everything gonna be okay. But iNotOkay?'), (1258, 533, 'Johor Bahru, Johore', 'I''m at Simei MRT Station (EW3) (Singapore, Singapore) http://t.co/IVarKeCA'), (1259, 534, 'Johore, Malaysia', 'Picking up stuff (@ 65 Tiong poh rd) http://t.co/rWhueyJT'), (1260, 523, 'Malaysia', 'พอจะเอาจิง ๆ ก็ไม่ไปเนี่ยละ เย็ดแม่'), (1261, 459, 'Tebrau, Johor Bahru', 'I hope/pray that the day will come when I meet someone who I can share my passion with.. A partner.. That''d be very nice :-)'), (1262, 422, 'Johor Bahru, Johore', 'Home and saw the ps3 is back! And Fifa street has been bought! Thx bro! :DD Alhamdulillah.'), (1263, 529, 'Johor Bahru, Johore', '“@Retwittings: Complete the sentence: #MyParentsCanBe _____.” naggy but lovely &lt;3'), (1264, 535, 'Johor Bahru, Johore', 'too late to take a nap..'), (1265, 495, 'Pulai, Johor Bahru', '#KalauCrushAku dapat Tawaran ke sekolah lain,aku org 1st yg happy untuk DIA.. #Untunglah Crush aku yg pandai bukan akuu..XDD'), (1266, 41, 'Plentong, Johor Bahru', '@sfatinfarhana tu la gelaran yang diberi, kita budak2 ikot je xD'), (1267, 536, 'Johore, Malaysia', 'Ahhhhhh back ! :DDDD'), (1268, 145, 'Johore, Malaysia', '@iamanrose jida tusi kende pai naa ki mai tuhadi hasdi jindgi kharba kar diti te tusi eda hi samj lo'), (1269, 537, 'Johor Bahru, Johore', 'I''m at Subway @ Ang Mo Kio Jubilee (Ang Mo Kio, Singapore) http://t.co/DbyfcaRR'), (1270, 538, 'Johor Bahru, Johore', 'Jus becos i hav a gf and u did that?'), (1271, 539, 'Johor Bahru, Johore', 'I''m at Under MRT track. (Singapore) http://t.co/IUzQFcNk'), (1272, 515, 'Johor Bahru, Johore', 'Eh knpe nu? RT @ibnunawila: Pray for pontianak. Semoga pontianak damai sejahtera. http://t.co/EVymPzjC'), (1273, 540, 'Johore, Malaysia', 'Expert views on RBI''s mid-quarter policy review http://t.co/T950mYhc #investing'), (1274, 3, 'Johor Bahru, Johore', '@Meikee_Tan OMG SUZY&lt;3'), (1275, 541, 'Johore, Malaysia', 'I just ousted Eric T. as the mayor of Sauce on @foursquare! http://t.co/KmErWgh4'), (1276, 541, 'Johore, Malaysia', 'I''m at Sauce (Singapore, #01-10/12) http://t.co/1b0bUhmE'), (1277, 512, 'Riau, Indonesia', 'Waiting for monster rock to start! http://t.co/Kzg1AGTk'), (1278, 538, 'Johor Bahru, Johore', 'No comments'), (1279, 494, 'Johor Bahru, Johore', 'Kena raped sia lelaki nie...hah'), (1280, 542, 'Johor Bahru, Johore', 'I''m at My Room http://t.co/dgEPtAJE'), (1281, 21, 'Johor Bahru, Johore', '"@Retwittings: Mention a friend who is as horny as a goat." @shaheedmcmnak xD'), (1282, 399, 'Johor Bahru, Johore', 'Rhe dust collecting on the ivory keys, neglected by other commitments.'), (1283, 76, 'Johore, Malaysia', 'My job requires strong Maths bg ... That''s why I still can survive my Maths module hahaa'), (1284, 365, 'Johore, Malaysia', 'Ok relax breathe in n out. Sabar sabar.'), (1285, 239, 'Johor Bahru, Johore', 'I''m at JiaYi''s pineapple! ♡ http://t.co/d2Kd32dZ'), (1286, 529, 'Johor Bahru, Johore', 'I wanna go eastpoint! But lazy walk!'), (1287, 543, 'Johor Bahru, Johore', 'I''m at Karu''s indian banana leaf restaurant (Singapore, Singapore) http://t.co/tuNmg6KM'), (1288, 340, 'Johor Bahru, Johore', '@NurFatynAngel kay. U too! &lt;3'), (1289, 231, 'Johore, Malaysia', '@bulletthrough they have one side red but got grooves, better to have clear for me ;('), (1290, 12, 'Johore, Malaysia', '@IHEARTSUZY They are the most powerful there.'), (1291, 9, 'Johor Bahru, Johore', '@TrulyLee hahaha . :) good to know that . :) have you eaten ?'), (1292, 462, 'Johore, Malaysia', '@_purrplekitty oh ya! It''s Sch holidays now~'), (1293, 443, 'Johore, Malaysia', 'Gah, Bobby kenapa hot sangat ni? Haiss. Stress, cube tngk MILLION DOLLAR MONEY DROP. Hot gila oi, Dhe tak button baju dia yg atas atas sana,'), (1294, 544, 'Johor Bahru, Johore', '@Jerwaynehtw faster ah!!!!'), (1295, 375, 'Riau, Indonesia', 'iyaaa udahh aku lupaakk @larasoktvn'), (1296, 545, 'Johore, Malaysia', '@Jiamin_Bliss Okayokay I will! Okay, you plan laa. LOLOL.'), (1297, 546, 'Johore, Malaysia', 'Dinner @ my fav lunch place near town office @ Netau-Retsu Ichibantei Restaurant http://t.co/9XCjgSxu'), (1298, 547, 'Johor Bahru, Johore', '@ivanlim24 err.. Noon? I think I''ve to get back to study. I''ve been reading all day :/'), (1299, 403, 'Kota Tinggi, Johore', 'I''m at Jurong Point (Singapore, Singapore) w/ 22 others http://t.co/OCYs4rVj'), (1300, 72, 'Johor Bahru, Johore', '@doubleyouuem no jio D: jkjk. U very free hor? LOL. Go sleep!'), (1301, 548, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard w/ @moremorekaching http://t.co/D4GwkqJp'), (1302, 549, 'Malaysia', 'ตรวจฉี่ๆๆ @ Sirosos Hospital http://t.co/LhpXxBAH'), (1303, 550, 'Johore, Malaysia', 'Unhealthy dinner. :( (@ Texas Chicken) http://t.co/EaYKjSRb'), (1304, 551, 'Johor Bahru, Johore', '@Shermainezxc for hos breath'), (1305, 529, 'Johor Bahru, Johore', 'I seriously damn lazy do e-learning!!! WALAU!!!!'), (1306, 411, 'Johor Bahru, Johore', 'haha funny siol.'), (1307, 544, 'Johor Bahru, Johore', 'Eve so evil, she said the dimple thingy I jitao laugh out loud sia. Wthwth.'), (1308, 255, 'Johore, Malaysia', '@hongsyie introduce them to us!!!ㅋㅋㅋㅋㅋ i was kidding!:D'), (1309, 552, 'Johore, Malaysia', 'yeay..!!parcel dah sampai..cuma tak sempat nak ambil kat office..class habis kul 6pm :( bsok je laa...'), (1310, 145, 'Johore, Malaysia', '@iamanrose haan eh ta gal thik aa per oh taa hun vi kuch eda di hai'), (1311, 553, 'Johor Bahru, Johore', '@Melhuels :D :D'), (1312, 43, 'Johore, Malaysia', '@NurSabrinaSam bubuy? what stuck name haha'), (1313, 554, 'Johore, Malaysia', '@kellylilin Ecp :['), (1314, 515, 'Johor Bahru, Johore', 'Eh pontianak ngape kok TL heboh?? http://t.co/tCELUPP3'), (1315, 72, 'Johor Bahru, Johore', 'Omg. Tmr whole day busy. Got concert'), (1316, 529, 'Johor Bahru, Johore', 'Lazyness kills -.-'), (1317, 555, 'Johore, Malaysia', 'I''m at Han''s http://t.co/3QzNDTJ5'), (1318, 9, 'Johor Bahru, Johore', '@Mackuereau me too . :) hahahahahah'), (1319, 72, 'Johor Bahru, Johore', 'Saturday I going plaza sing with friends.'), (1320, 556, 'Johor Bahru, Johore', 'I''m at 157D Rivervale Cresent.. http://t.co/opJBVQAb'), (1321, 557, 'Plentong, Johor Bahru', '@YDiyanaa MAYBANK ~ HO KAR MEN 164856080944 ... RM247'), (1322, 40, 'Johor Bahru, Johore', 'FANTASTIC BABY. 4 SONGS. BOOMSHAKALAKA. BIGBANG.'), (1323, 558, 'Johore, Malaysia', 'I''m at Texas Chicken (Singapore) http://t.co/E5FqMzer'), (1324, 72, 'Johor Bahru, Johore', 'Sunday I might be going out with friends too.'), (1325, 559, 'Johore, Malaysia', 'I''m at Wong jingtian house http://t.co/tpaXDH4G'), (1326, 560, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang Bus Interchange (Singapore) http://t.co/N7zhnppo'), (1327, 495, 'Pulai, Johor Bahru', '#KalauCrushAku famous,KONFEMM tak layannya aku ni..\nIm Just A fan..:P'), (1328, 115, 'Johor Bahru, Johore', 'Most probably gonna change it again later because my Mockingjay pin isn''t VUJZZZZHAAAM enough :p'), (1329, 357, 'Johore, Malaysia', 'Feel like puking. Train sickkkkk.'), (1330, 41, 'Plentong, Johor Bahru', '@sfatinfarhana haha, kalau da bahagia tu oke la, dari yang dulu :)'), (1331, 561, 'Johore, Malaysia', 'I''m at Sim Lim Square (Singapore) w/ 2 others http://t.co/gmLcXfeA'), (1332, 72, 'Johor Bahru, Johore', 'WHERE GOT TIME DO HW? OMG. I think I got to chiong today'), (1333, 562, 'Plentong, Johor Bahru', 'I''m at traffic light tampoi / kg melayu majidee (johor bahru, johor) http://t.co/bzqZfa60'), (1334, 563, 'Johore, Malaysia', 'My art director passes me a cup of tea... In a Winnie the pooh mug! Awww @ BBDO/Proximity Singapore Pte Ltd http://t.co/Z4jHgRMb'), (1335, 564, 'Johore, Malaysia', 'With biying n fat long. Waiting for keng siew (at The Cathay) — http://t.co/0PAkVlYy'), (1336, 565, 'Johor Bahru, Johore', '@imkaiyisah yeahhh why uh?'), (1337, 113, 'Johor Bahru, Johore', '@YilingGumshoe hahas. Nevermind de la.:)i just now joking only:). Plus i also left le.'), (1338, 496, 'Singapore', '@Jon_tyty stop poking meeeeee !! :('), (1339, 566, 'Johore, Malaysia', 'In the cable (@ The Singapore Flyer w/ 3 others) http://t.co/quO4VrkU'), (1340, 41, 'Plentong, Johor Bahru', '@AjimAnis haha, maken muda maken tinggi. bhaha'), (1341, 168, 'Johore, Malaysia', 'I''m at FairPrice Finest (Singapore, Singapore) http://t.co/0ZgxP0B6'), (1342, 40, 'Johor Bahru, Johore', '“@Joey__Ng: RT @asdesfghjkl: After mr sied(idl how to spell) kept correcting @Joey__Ng , she was all like "I swear.. He hates me" HAHAHA !”'), (1343, 12, 'Johore, Malaysia', 'BIG Bang performing Fantastic Baby on M!Countdown now.'), (1344, 226, 'Johore, Malaysia', '@AizvD eh next month p kami magkaka-wifi s bahay. lipat kc ulit kami eh...'), (1345, 357, 'Johore, Malaysia', 'On the train w @OkCanKK and @TohBugLemonpop'), (1346, 567, 'Johore, Malaysia', 'Ulalaaaaa http://t.co/HDXceDju'), (1347, 568, 'Johore, Malaysia', 'I''m at Walton International Group (S) Pte Ltd (City, Singapore) http://t.co/7nS3fv1w'), (1348, 569, 'Johore, Malaysia', 'I''m at Abercrombie &amp; Fitch (Singapore) w/ 5 others http://t.co/mxYbffXN'), (1349, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh i am Bazil'), (1350, 570, 'Plentong, Johor Bahru', 'HARI NI HARI MALANG SEDUNIA EH? OKAY FINE :('), (1351, 571, 'Johore, Malaysia', 'I''m at 407 Pandan Gardens (Singapore, Singapore) http://t.co/jgmqR5Pd'), (1352, 12, 'Johore, Malaysia', '@Jollenesmilexz Welcome :)'), (1353, 411, 'Johor Bahru, Johore', '@fluffy_lovee Gws. :D'), (1354, 486, 'Johor Bahru, Johore', '@hafiq_hanapi you dont speaking english with me . Tak lah aku blh ajr kau main bola ..'), (1355, 572, 'Pulai, Johor Bahru', 'Lapoooo po po po'), (1356, 573, 'Johore, Malaysia', 'I''m at Queenstown MRT Station (EW19) (Singapore, Singapore) http://t.co/w1KtnsVy'), (1357, 191, 'Plentong, Johor Bahru', '@RaihanHamid Nevermindddd. Dont care about me....'), (1358, 544, 'Johor Bahru, Johore', 'Eve teaching me skills to suan bitch. HAHAHAHA'), (1359, 574, 'Johore, Malaysia', 'I''m at Novena MRT Station (NS20) (Singapore, Singapore) http://t.co/ABtTVqle'), (1360, 411, 'Kota Tinggi, Johore', '@germandalxt Relax!'), (1361, 575, 'Johore, Malaysia', 'I''m at Seoul Garden (Singapore, Singapore) http://t.co/TQBiFUo8'), (1362, 576, 'Johor Bahru, Johore', 'At eighteen chefs with mich:)))'), (1363, 185, 'Johor Bahru, Johore', '@iFARRK @yanayeyoh takpe aku jap lagi Ada cake dalam perut! HAHAHA'), (1364, 302, 'Singapore', '@aparonomasiac but...i''m not ready yet *blushes*'), (1365, 375, 'Riau, Indonesia', 'iyaa maklumm orang sibukk jadi sering lupaa *eh wkwk @larasoktvn'), (1366, 231, 'Johore, Malaysia', '@bulletthrough went to art friend and mustafa centre but don''t have what I want! I think have to do it myself -_-'), (1367, 577, 'Johore, Malaysia', 'I''m just flabbergasted http://t.co/ZX4VUzcN'), (1368, 191, 'Plentong, Johor Bahru', 'Nevermind sayang, I''ll find someone better than you okay? :'')'), (1369, 578, 'Plentong, Johor Bahru', 'Bapak murah brg fone (@ Holiday Plaza w/ 3 others) http://t.co/MBKJP0rr'), (1370, 530, 'Malaysia', 'I''m at MK Restaurant (เอ็มเค เรสโตรองต์) (Hat Yai, Songkhla) [pic]: http://t.co/V7XwQ33K'), (1371, 579, 'Johor Bahru, Johore', 'Mummy help me bathe baby! Now he is white and clean!! :)'), (1372, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah me too.'), (1373, 375, 'Riau, Indonesia', 'hahaa :) @Ayudiadiadia'), (1374, 580, 'Johor Bahru, Johore', 'FRENCH HW instead of FRENCH fries!!!!:( sucks X('), (1375, 529, 'Johor Bahru, Johore', 'How old oni go iphone play ah! So fortunate'), (1376, 411, 'Kota Tinggi, Johore', '@witheringdreams Of Cos!'), (1377, 340, 'Johor Bahru, Johore', '@NurFatynAngel Wellys?'), (1378, 581, 'Johor Bahru, Johore', '@RattleUrbone_ @priscillaaarawr wad bio work???? Hbl do wad??? Idk xia!'), (1379, 412, 'Johor Bahru, Johore', '@sinnikoh yup!!'), (1380, 302, 'Singapore', 'watching a fat kid sing songs in an indian accent. life is sweet like this'), (1381, 375, 'Riau, Indonesia', 'tapii kalo ada waktu ngeblokk yakk :D @HUSNULASIDOO'), (1382, 582, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall (Singapore, Singapore) w/ 17 others http://t.co/pEFWLQDI'), (1383, 583, 'Malaysia', 'I''m at Diana Hatyai (ไดอาน่า หาดใหญ่) (Hat Yai, Songkhla) http://t.co/WtIuUfd4'), (1384, 168, 'Johore, Malaysia', 'I''m at Singapore Pools FairPrice Finest http://t.co/EVS1bTVY'), (1385, 357, 'Johore, Malaysia', 'And also @OkCanSim , @Neubronnah.'), (1386, 260, 'Kota Tinggi, Johore', 'Lepak or going to mosque....choose the dark side or the light side'), (1387, 584, 'Johor Bahru, Johore', 'A totally awesome one hour swim under the sun and warm waters &lt;3'), (1388, 585, 'Johore, Malaysia', 'homework not done.'), (1389, 529, 'Johor Bahru, Johore', 'When i was dat age,i was playing gameboy &gt;&lt; lol'), (1390, 557, 'Plentong, Johor Bahru', '@YDiyanaa Monday.....'), (1391, 335, 'Riau, Indonesia', '@firmanrizky1 @SyahriniFC hahahaahha firman fans syahrini jg'), (1392, 495, 'Pulai, Johor Bahru', '#KalauCrushAku gila macam adik aku,SUMPAHH carik Crush lainn!\nXP'), (1393, 586, 'Johore, Malaysia', 'I''m at Kallang Bowl (Kallang, Singapore) http://t.co/Aw4yl8C2'), (1394, 587, 'Plentong, Johor Bahru', 'Ikot kate kevin zahri...cycle...cycle.... (@ ONE Gym Muay Thai &amp; KickBoxing) http://t.co/1pL0FqeS'), (1395, 207, 'Johore, Malaysia', 'Sale 50% all promotion (@ GAP) http://t.co/wOF7vRzf'), (1396, 302, 'Singapore', 'HE GOT THE MOOOVES HAHA'), (1397, 581, 'Johor Bahru, Johore', 'Break camp, go time to go home :)'), (1398, 400, 'Johor Bahru, Johore', '@norulaien laaa biar laa. takdak benda kekal lam dunia nih aihh'), (1399, 529, 'Johor Bahru, Johore', '@FathineeNaboloh haha wads dat!! Aiyo! So diff :p'), (1400, 206, 'Singapore', 'haters gonna hate. (; #idc'), (1401, 588, 'Johore, Malaysia', '@Felixwriggles u come back liao ma?'), (1402, 335, 'Riau, Indonesia', '@ieamsaguband hahhahahahha'), (1403, 589, 'Johore, Malaysia', 'I''m at Marina Bay Sands (Hotel) (Singapore, Singapore) w/ 7 others http://t.co/FInsYfS3'), (1404, 297, 'Johore, Malaysia', 'ITC Hangout @ Arirang Korean Restuarant @ Liang Seah Street http://t.co/pghIXPP0'), (1405, 185, 'Johor Bahru, Johore', '@iFARRK @yanayeyoh join ah Yana! :( nak cake tak? Lol'), (1406, 413, 'Johore, Malaysia', '@nativeheartz haiz used tomit'), (1407, 590, 'Johor Bahru, Johore', '@tara in fact rest of world except merkinia'), (1408, 13, 'Singapore', '@agrimsingh just do it yaar'), (1409, 486, 'Johor Bahru, Johore', '@PIXI3KID nice to meet you fixed rider ..?'), (1410, 12, 'Johore, Malaysia', 'Booshakalaka &lt;3'), (1411, 41, 'Plentong, Johor Bahru', '@sfatinfarhana haha, rapat la jugak dulu, sekarang da jarang jumpe. kalau dia bole tunggu along sampai setahun insyaAllah dia bole jaga :)'), (1412, 579, 'Johor Bahru, Johore', 'He is so tired now after running around in the house!! Haha! :D http://t.co/YyLBqnXU'), (1413, 591, 'Johore, Malaysia', 'Acupuncture for the first time today. Wasn''t that scary ahha so proud of y bravery'), (1414, 308, 'Johore, Malaysia', '@Bozotastic ya LOL. mavis brendan ong priya ariel hany laksmi elton nirisha yuting me lo'), (1415, 592, 'Johor Bahru, Johore', 'I''m at Warren Country Club http://t.co/hp5O9e1f'), (1416, 593, 'Johor Bahru, Johore', '@AngelusChan why stoning?? Aiyo why dont want go home rest?!?'), (1417, 594, 'Malaysia', '@DP_Dame ใบเดียวค่ะโซนD1'), (1418, 595, 'Johore, Malaysia', 'I''m at Takashimaya Department Store (Singapore, Singapore) w/ 14 others http://t.co/raEnIuid'), (1419, 12, 'Johore, Malaysia', 'Lol. *Boomshakalaka'), (1420, 596, 'Johor Bahru, Johore', 'Have I found you, flightless bird?'), (1421, 597, 'Johor Bahru, Johore', 'I''m at Tampines St45 Blk 491G http://t.co/slA99Khw'), (1422, 480, 'Johor Bahru, Johore', '@kobedarren @cheriecjl haha for story. ? 0.0'), (1423, 486, 'Johor Bahru, Johore', '@Axuisa i love sardines .'), (1424, 41, 'Plentong, Johor Bahru', 'mat luthfi? :D'), (1425, 598, 'Johor Bahru, Johore', 'I''m at Yishun Bus Interchange (Singapore) w/ 4 others http://t.co/eXhVwsFk'), (1426, 599, 'Johore, Malaysia', 'Juust now was "kecoh" to the maxxx !! @imsxxsy_bxm @p1nkrxbbxn :) hahahs.... and i go home with Rui Jia they all "."'), (1427, 13, 'Singapore', '@wonderxuqin haha probably their worst one! i just listen to their music a bit that''s all :P'), (1428, 600, 'Plentong, Johor Bahru', '#tetiba dpt call from Prudential psl life insurance, #xkesahla tp kamo berckp ✗ berenti, panas telinga sy tau ✗?.. #gosh'), (1429, 591, 'Johore, Malaysia', '@cowlovespig I have 4 thick cheem books to read wlao dieezzzz'), (1430, 23, 'Malaysia', '@lbadz_ ดูดิดู'), (1431, 486, 'Johor Bahru, Johore', '@rynnafenske @rafash_ash sial punye ashraf'), (1432, 601, 'Johore, Malaysia', 'You come all this way you have to have a Singapore Sling. But they know that so it''s S$26 (@ Long Bar) [pic]: http://t.co/BWqV5M7v'), (1433, 12, 'Johore, Malaysia', 'Eeee! Why breakdown?!'), (1434, 116, 'Riau, Indonesia', 'sm., tp kox lm klian slesai na ya? iya lin., krna abiez uas hrus ngadapin TO dri dinas RT @UlineVelova89: senin kemarin tri :) tetap semanga'), (1435, 602, 'Pulai, Johor Bahru', 'Hah..jln lg.. (@ Jusco Bukit Indah) http://t.co/PMmLH3jU'), (1436, 72, 'Johor Bahru, Johore', '@doubleyouuem you. :D'), (1437, 603, 'Johore, Malaysia', 'I''m at Bugis Junction (Singapore, Singapore) w/ 20 others http://t.co/JD9DPHxd'), (1438, 413, 'Johore, Malaysia', 'I am not the old me already so\nForget it'), (1439, 302, 'Singapore', '@aparonomasiac not without a nike sponsorship ;)'), (1440, 400, 'Johor Bahru, Johore', 'Mark zuckerberg dah warning tak bagi add ramai dlm 1 masa. zz'), (1441, 335, 'Riau, Indonesia', '@ieamsaguband gak minta oleh2 ma kiki do, hbiz dri bogor dia bnyak bwa oleh2 aq ja bnyak dibawaiinnya'), (1442, 604, 'Johor Bahru, Johore', 'Meimeii feesing the fish . (@ Bishan Park) http://t.co/uD6Tk1eQ'), (1443, 444, 'Johor Bahru, Johore', 'After tmr, my trip to Malaysia ^^'), (1444, 53, 'Johor Bahru, Johore', 'No rights to judge me . It''s me . I''ll get my own problems solved . You don''t have to interfere . Go get on with your life .'), (1445, 605, 'Johor Bahru, Johore', '@Desmondtan12 pa camp;)'), (1446, 84, 'Kota Tinggi, Johore', '@awemazingCHAR haha.. Really? Hahah.. If we gt the same job, that''s fate! xD'), (1447, 606, 'Johor Bahru, Johore', '@Charmiann hahaha! So funny. Depends lorhh maybe if next time got room but not fit my time i also dw to go already, like waste time go 1day!'), (1448, 413, 'Johore, Malaysia', 'Stone-cold heart'), (1449, 5, 'Johore, Malaysia', '@LostWords_ , i love your tweets ! ♥ \\m/'), (1450, 607, 'Johore, Malaysia', 'w/ @adamrockerr @liyninja (@ Cold Stone Creamery w/ 4 others) http://t.co/971H3pyl'), (1451, 41, 'Plentong, Johor Bahru', '@zulailizulkifli tak la, menumpang rumah orang. maju la nenek aku kalau aku dok BP dy dok Putrajaya xD'), (1452, 594, 'Malaysia', 'แมนป่ะล่ะ -.,- http://t.co/jFu6GiL2'), (1453, 400, 'Johor Bahru, Johore', '@norulaien haha twitter takdak laaa'), (1454, 335, 'Riau, Indonesia', '@Daniel_safwan owh kuliah pa kerja?'), (1455, 608, 'Singapore', 'Back pain...'), (1456, 609, 'Riau, Indonesia', 'sarap matulog haizzzz @ movenpick heritage hotel room 508 http://t.co/EKfEdwjG'), (1457, 610, 'Plentong, Johor Bahru', 'bana must be proud ^^'), (1458, 411, 'Kota Tinggi, Johore', 'Wow, you gave me chances, I will cherish it for sure!'), (1459, 145, 'Johore, Malaysia', '@iamanrose mai eh kiha ki dona nu ik duje naal pyar hai is lai eh sara kuch hoeya ok'), (1460, 13, 'Singapore', '@agrimsingh you get considered for sponsorship AFTER you do it :P'), (1461, 41, 'Plentong, Johor Bahru', '@AjimAnis eh, muda oke dari kau, abang aku and kakak aku xD'), (1462, 611, 'Johore, Malaysia', 'I''m at Tiong Bahru Plaza (Singapore, Singapore) w/ 2 others http://t.co/xl1FRj3Z'), (1463, 612, 'Johor Bahru, Johore', 'Grocery shopping (@ NTUC FairPrice) http://t.co/eGw1h24H'), (1464, 613, 'Johor Bahru, Johore', 'Waiting for my ice cream tea~ (@ KOI Café) http://t.co/no7QiU0g'), (1465, 340, 'Johore, Malaysia', ':(('), (1466, 519, 'Johore, Malaysia', 'it takes 28 days for it to be a habit. http://t.co/kC94OR2U'), (1467, 614, 'Johore, Malaysia', 'I''m at Bugis Junction w/ @abcdubstep http://t.co/113atvJm'), (1468, 615, 'Johore, Malaysia', 'How to do nothing, and still think your helping. By a Prayer! -glimpse this passage inside Las Pinas Christian Church.. http://t.co/FAzAxKtJ'), (1469, 243, 'Plentong, Johor Bahru', 'kat rumah attached tak sampai 2 minit pon. F U internet ofis'), (1470, 68, 'Riau, Indonesia', 'haha sama kakakcan;) nonton apa? RT @tessaaMRD: lagi nonton nih, kamu muut?RT @IlfaAzlyani: hehe lagi apa kakcan?'), (1471, 616, 'Johore, Malaysia', 'today was so busy that i can''t even enjoy my pokemon :('), (1472, 179, 'Johore, Malaysia', 'I''m at iluma (Singapore) w/ 4 others http://t.co/WWG64sf5'), (1473, 617, 'Pulai, Johor Bahru', 'I''m at pangsapuri teratai, taman melor http://t.co/08BHtPI6'), (1474, 617, 'Pulai, Johor Bahru', 'I just became the mayor of pangsapuri teratai, taman melor on @foursquare! http://t.co/sGodljWx'), (1475, 64, 'Johore, Malaysia', 'guess what, I support Naomi neo all the way woohoo. she''s much better than those girls with sick/gross twitter usernames'), (1476, 43, 'Johore, Malaysia', 'but I was always there beside you *Zaa'), (1477, 581, 'Johor Bahru, Johore', 'But thinking that I still have so much hw and piano exam on sat make me feel so Sian... &gt;&lt;'), (1478, 614, 'Johore, Malaysia', 'I''m at M1 Shop (Singapore) http://t.co/v8cB3xH2'), (1479, 375, 'Riau, Indonesia', 'haha yoiii mbakk \n:D @larasoktvn'), (1480, 505, 'Johor Bahru, Johore', '@FAMJIEXIN awwwwwww, really? ;p'), (1481, 173, 'Johor Bahru, Johore', 'If bio was my girlfriend, I would have been dumped along time ago for neglecting her'), (1482, 249, 'Johore, Malaysia', '@Weiiscrazy hahahahah i know i knoww. &lt;3'), (1483, 302, 'Singapore', '@aparonomasiac ''just did it'' doesn''t sound too good ;)'), (1484, 618, 'Johore, Malaysia', 'Shall die at work from tomorrow onward sigh lol need more strength and energy to fight the big volume'), (1485, 619, 'Johore, Malaysia', 'I''m at Starbucks (Singapore) http://t.co/Es2z4zwt'), (1486, 68, 'Riau, Indonesia', '@ulphaDNP haha lagi nonton ajaa hehe'), (1487, 620, 'Johore, Malaysia', 'And so the train has moved. Some said it seems a lil faster than usual. All I can say its pretty empty alright. Yeah! http://t.co/B1GL32jt'), (1488, 12, 'Johore, Malaysia', 'Who will be the winner? Hmm.'), (1489, 621, 'Plentong, Johor Bahru', 'I''m at Anjung Tokoh Restaurant http://t.co/E1c89m10'), (1490, 523, 'Malaysia', 'สุดท้ายก็เป็นแบบนี้ :('), (1491, 622, 'Johor Bahru, Johore', 'I''m at Bukit Batok Bus Interchange (Singapore, Singapore) http://t.co/hcem52yP'), (1492, 219, 'Johor Bahru, Johore', '@NicholasPwn @kjiaweii LAN Jiao uh sarbo my name ownself don''t want go !'), (1493, 302, 'Singapore', 'NUTELLAAAAAAAA'), (1494, 43, 'Johore, Malaysia', 'but I was always there beside you :)'), (1495, 425, 'Kota Tinggi, Johore', 'I''m at Boon Lay MRT Station (EW27) (Singapore) http://t.co/WtbzpRv3'), (1496, 68, 'Riau, Indonesia', 'hehe,udh intro belum? RT @triskamendlev: hai juga\\(´▽`)/ RT @IlfaAzlyani: hehe hai RT @triskamendlev: mention'), (1497, 12, 'Johore, Malaysia', 'I can see is Big Bang.'), (1498, 185, 'Johor Bahru, Johore', '@yanayeyOh @ifarrk kedai cake banyak coma yang buat, Ni melayu punya!'), (1499, 357, 'Johore, Malaysia', 'And @ALMIGHTYALDEN , @ALMIGHTYVIGNESH , @iStepDiligent , @OkCanPokemon'), (1500, 529, 'Johor Bahru, Johore', '@FathineeNaboloh orh chey! Chill darling! Haha :)'), (1501, 147, 'Johore, Malaysia', 'The show is such a horror, now im listening to mirror.'), (1502, 557, 'Plentong, Johor Bahru', '@YDiyanaa resit....'), (1503, 43, 'Johore, Malaysia', '@ElysExiara Habis apa dia?'), (1504, 623, 'Kota Tinggi, Johore', 'Wayang Kulit Manusia : Hypocrite &amp; Backstabbers...'), (1505, 624, 'Johor Bahru, Johore', 'you know you love me. xoxo. http://t.co/P9yDS7YJ'), (1506, 616, 'Johore, Malaysia', 'and i wish it will be busy in the store today when i am on shift. haha. such irony'), (1507, 552, 'Johore, Malaysia', 'hang..!! *damn!!!!'), (1508, 5, 'Johore, Malaysia', 'Menyampah lhh sia -.-"'), (1509, 581, 'Johor Bahru, Johore', '@Hyclipse007 shit, typo'), (1510, 12, 'Johore, Malaysia', 'Okay is really big bang.'), (1511, 43, 'Johore, Malaysia', '@yarkkkkpashhhaa Belumm lagi. Ubat itu membunuhku. Haha'), (1512, 255, 'Johore, Malaysia', 'Test http://t.co/nCaU2sQ6'), (1513, 255, 'Johore, Malaysia', '@hongsyie hehehehe!^_^ just kidding&lt;3'), (1514, 41, 'Plentong, Johor Bahru', 'jangan jeles dengan benda yang tak perlu. semua orang ade kenangan dengan orang yang pernah kite sayang'), (1515, 219, 'Johor Bahru, Johore', '@heiditan who is this uh ?!! http://t.co/iMeDW1lN'), (1516, 127, 'Johor Bahru, Johore', '@RomeoMiller i love u:)'), (1517, 625, 'Johore, Malaysia', '@vanillajas LOL , yea had fun "mother" , woops , xD'), (1518, 626, 'Johore, Malaysia', '@nauxnew @Faddicti0n @viviensoo @siawu1420 happy birthday is!!'), (1519, 627, 'Johor Bahru, Johore', '“@NoviaLie: @roliepolierinny :p RT @MentionTo: #MentionTo your following who loves @ZaynMalik so much.” HAHAHAISSSS'), (1520, 628, 'Johor Bahru, Johore', 'I''m at Buangkok MRT Station (NE15) (Singapore) http://t.co/LMK8jdBI'), (1521, 357, 'Johore, Malaysia', 'Hahahahaha. So happy he sitting w me ;)'), (1522, 629, 'Johore, Malaysia', 'I''m at Orchard Road (Singapore, Singapore) http://t.co/nRYjtMC4'), (1523, 630, 'Johore, Malaysia', 'It''s a wrap. Going home! (@ Zouk) http://t.co/m8ppw9bs'), (1524, 150, 'Johor Bahru, Johore', 'Currently having this freaking symptom that''s killing me.'), (1525, 12, 'Johore, Malaysia', '@IHEARTSUZY Big Bang won.'), (1526, 628, 'Johor Bahru, Johore', 'I''m at Serangoon MRT Interchange (NE12/CC13) (Singapore, Singapore) w/ 5 others http://t.co/U8wGp9aP'), (1527, 375, 'Riau, Indonesia', 'jiahaha kenapa azekk azekk mbakk ? @larasoktvn'), (1528, 631, 'Pulai, Johor Bahru', 'rase suka2 hati nk tulis status ke ape? aiyak. ok, keje xsep nih. damn'), (1529, 606, 'Johor Bahru, Johore', 'Drive safely! @xJosephYee :D'), (1530, 632, 'Johore, Malaysia', 'I''m at Lucky Plaza (Singapore, Singapore) w/ 3 others http://t.co/NANZtpHX'), (1531, 633, 'Johore, Malaysia', 'I''m at Alexandra Village Food Centre (Singapore, Singapore) http://t.co/FQfE6tJY'), (1532, 634, 'Johor Bahru, Johore', 'Okay too shag should have a nap now. Nights people.'), (1533, 635, 'Johor Bahru, Johore', 'I''m at Downtown East Escape http://t.co/Kh7bhonD'), (1534, 636, 'Johore, Malaysia', '“@mcsyze: Singapore, u better take good care of her! u understand me??” | Needa take care of who?'), (1535, 551, 'Johor Bahru, Johore', '@Shermainezxc got oreo smell'), (1536, 637, 'Singapore', 'watch my back so i''ll make sure, you are right behind me as before, yesterday the night before tomorrow'), (1537, 12, 'Johore, Malaysia', 'Top talking now.'), (1538, 41, 'Plentong, Johor Bahru', '@AjimAnis tapi ketawa tu macam tak yakin je :D'), (1539, 628, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 19 others http://t.co/fksWa4Jo'), (1540, 356, 'Johore, Malaysia', 'they say images have have a few words to describe them with but this one has only 3'), (1541, 292, 'Johor Bahru, Johore', '@chen_jz go get her number'), (1542, 581, 'Johor Bahru, Johore', '@priscillaaarawr @rattleurbone_ that is damn Sian!!!!!!!!! =='), (1543, 627, 'Johor Bahru, Johore', 'MELACCA WAS FREAKING AWESOME!!!'), (1544, 12, 'Johore, Malaysia', '@IHEARTSUZY Tony An talking.'), (1545, 638, 'Johore, Malaysia', 'Hey good luck for your mid terms @pamtan !!'), (1546, 150, 'Johor Bahru, Johore', 'It will be better , and soon I will succeed in quitting it .'), (1547, 232, 'Johore, Malaysia', 'I''m at @doublev89''s House &lt;3 http://t.co/6BA3sN8k'), (1548, 51, 'Johor Bahru, Johore', '@Fitri_Wazowski 630'), (1549, 536, 'Johore, Malaysia', '@ChangHong_Hoo Hi CHANG HONG !'), (1550, 639, 'Johor Bahru, Johore', 'I''m at Terminal 1 (Singapore, Singapore) w/ 12 others http://t.co/5c1BUqOt'), (1551, 640, 'Johore, Malaysia', 'I''m at KFC (Boon Keng, Singapore) http://t.co/sGQ3MkWm'), (1552, 12, 'Johore, Malaysia', '@IHEARTSUZY Ouh Big Bang singing again. :)'), (1553, 544, 'Johor Bahru, Johore', 'Showed Eve that bitch''s pic and she''s like "duhhhhhhh."'), (1554, 641, 'Johore, Malaysia', 'Stand up and scream'), (1555, 113, 'Johor Bahru, Johore', '@YilingGumshoe it''s a international school like schools in america. From grade 1- 12.'), (1556, 51, 'Johor Bahru, Johore', '@Fitri_Wazowski takpe its okay:)'), (1557, 411, 'Johor Bahru, Johore', 'Can''t bear.'), (1558, 638, 'Johore, Malaysia', '@javinthey @valloure eh don''t bully Val ah'), (1559, 642, 'Johore, Malaysia', 'cara ngebalikin laginya gimana? (@ Suntec City Mall w/ 5 others) http://t.co/CrJe2VHn'), (1560, 643, 'Johor Bahru, Johore', 'You''ve been a very cool and trustable junior but we have to cut the bond between us.'), (1561, 297, 'Johore, Malaysia', 'Kotean BBQ @ Arirang Korean Restuarant @ Liang Seah Street http://t.co/SI74NlFe'), (1562, 628, 'Johor Bahru, Johore', 'I''m at LASERflair @ NEX http://t.co/nDHzsd5N'), (1563, 644, 'Johore, Malaysia', 'More oil~ Jia you ~ (@ Macpherson (esso). Fair Price Xpress) http://t.co/a06AVZX1'), (1564, 327, 'Johore, Malaysia', 'or maybe hotlink is better.'), (1565, 629, 'Johore, Malaysia', 'I''m at Ngee Ann City (Singapore, Singapore) w/ 2 others http://t.co/UvtvHqac'), (1566, 150, 'Johor Bahru, Johore', 'Sore throat , restless . Nose block'), (1567, 170, 'Johore, Malaysia', 'Festival Arch @ Istana Park http://t.co/3Wt3N3zY'), (1568, 375, 'Riau, Indonesia', 'jiaha , kalo enak nya apaan ? @Ayudiadiadia'), (1569, 628, 'Johor Bahru, Johore', 'I''m at Starbucks (Singapore, Singapore) w/ 2 others http://t.co/UhHpPYWC'), (1570, 581, 'Johor Bahru, Johore', 'Rmb at jp tmr at 11am hor!!!!! @RattleUrbone_ @stellathamrin'), (1571, 487, 'Johore, Malaysia', '@euxuanlin SORRY'), (1572, 375, 'Riau, Indonesia', 'jiahaha @larasoktvn'), (1573, 38, 'Johor Bahru, Johore', 'Accupuncture on the little girl? Do i look like i give a damn? I did accupuncture before too and no one gave a damn.'), (1574, 645, 'Kota Tinggi, Johore', 'lovely thursday #Scenery #content #happy #sun\n#LemeCamera_iPhone Photo Sharing\nhttp://t.co/OsN03bRI http://t.co/QYPj4pR6'), (1575, 646, 'Malaysia', '@lataedekd ผมติดแล้ว ไม่สละสิทธิ์ด้วยคร้าบบ ^^'), (1576, 495, 'Pulai, Johor Bahru', '#KalauCrushAku classmate aku,HABISLAHH rosak akhlak crush aku yg alim ituhh dipengaruhi Lelaki2 yg BAIK dalam kelas akuu..#4SI1\nXDD'), (1577, 109, 'Johore, Malaysia', 'Yummy!!! (with @MarshallOng, Ryo, and 欧阳 at Victor''s Kitchen) [pic] — http://t.co/yJS8Ko6P'), (1578, 340, 'Johore, Malaysia', 'Missing Spring Chicken..'), (1579, 411, 'Johor Bahru, Johore', 'Serioisly too hungry and House nothing to eat. Wth! Seriously. Any kind soul.'), (1580, 647, 'Johore, Malaysia', 'I''m craving for Doughnuts! #Krispykreme #gonuts'), (1581, 460, 'Johore, Malaysia', '@DarrenYKY Hmm a little here and there la. But still happy at times.'), (1582, 38, 'Johor Bahru, Johore', 'At the bus stop. /:'), (1583, 648, 'Johor Bahru, Johore', 'Im really Lovin my JvC Hi-Fi set that i won for my lucky draw at dnd.... The bass of the speaker really awesome!!! http://t.co/ZjbYR1QZ'), (1584, 138, 'Johore, Malaysia', 'Camping in Tiffany''s room. Got aircon ! With zhangwei , shaohang and @topazore'), (1585, 12, 'Johore, Malaysia', '-End-'), (1586, 649, 'Johore, Malaysia', 'More seafood! (@ Jumbo Seafood Resturant @ NSRCC Safra Resort) http://t.co/gyCMD6V3'), (1587, 150, 'Johor Bahru, Johore', 'Buey tahan. 为了你'), (1588, 650, 'Johore, Malaysia', '@hpeiling @redotsME @PamelaWee @BrianCjj @HilariousFreak jiam jiam coming to find us ah?'), (1589, 627, 'Johor Bahru, Johore', 'I feel so different. Hahahaha hi hi hi'), (1590, 651, 'Johore, Malaysia', 'Looks like a heart shape to me ^^ what do you think? (at Duxton Plain Park) [pic] — http://t.co/a8yNxRa5'), (1591, 652, 'Riau, Indonesia', 'testing~'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (1592, 529, 'Johor Bahru, Johore', 'I find geog damn diff now!!! &gt;&lt; after eugene lee teach!!! ARGHHGGGGGGG -''-'), (1593, 61, 'Johor Bahru, Johore', 'From this incident i conclude that @PeiYi2706 is my biggest fan'), (1594, 38, 'Johor Bahru, Johore', 'Why so many bus 27 one? Why not bus 15?? /:'), (1595, 411, 'Johor Bahru, Johore', 'Nvr mind, i shall order Mac.'), (1596, 3, 'Johor Bahru, Johore', '@Edwininja mojojojo? Powerpuff girls? LOL JK! what u mean?:$'), (1597, 653, 'Johore, Malaysia', 'I''m at Rasapura Masters Food Court (Singapore, Singapore) http://t.co/PRjgCnQF'), (1598, 654, 'Johore, Malaysia', 'kemana ya kok gak di bales dm gw'), (1599, 655, 'Johor Bahru, Johore', 'I''m at Sunrise Gardens http://t.co/SemQsqFS'), (1600, 643, 'Johor Bahru, Johore', 'But when its bad, its awful.'), (1601, 38, 'Johor Bahru, Johore', 'Now need eat medicine. Haishh. /:'), (1602, 193, 'Johor Bahru, Johore', 'I just became the mayor of Chew Fun Phonecard Specialist on @foursquare! http://t.co/R7WfcpB2'), (1603, 193, 'Johor Bahru, Johore', 'top up (@ Chew Fun Phonecard Specialist) http://t.co/j6UA40nv'), (1604, 656, 'Kota Tinggi, Johore', 'Getting bored of all the shoppings in Singapore..'), (1605, 657, 'Pulai, Johor Bahru', '@ShakillaKhoriri ubtnya kalau sakit ni kena bagi 2 biji rest,sesudu tidur secukup rasa,&amp; sejambak doa dari kami peminat..insyakallah sihat'), (1606, 147, 'Johore, Malaysia', 'RT @iyrahgees I love you'), (1607, 658, 'Pulai, Johor Bahru', 'I''m at Taska Q [pic]: http://t.co/5pW5b69Z'), (1608, 43, 'Johore, Malaysia', 'when I bored. I feel like crazy!'), (1609, 411, 'Johor Bahru, Johore', 'Luckly Mom put money on the table. Mac where are you?'), (1610, 659, 'Plentong, Johor Bahru', 'Apa teruk jem kat jb ni ? High time jb have an alternative road (@ jemmm...) [pic]: http://t.co/tBxsYlea'), (1611, 61, 'Johor Bahru, Johore', 'Out of 10 battles she finally won one today i don''t know if i should cry or laugh for her'), (1612, 480, 'Johor Bahru, Johore', '@helloimamelias lee min woo discharged from hospital lols !'), (1613, 660, 'Johore, Malaysia', 'I''m at Nespresso Boutique (Singapore, Singapore) [pic]: http://t.co/luC7qqwt'), (1614, 661, 'Plentong, Johor Bahru', 'Have yet to speak, but been yawning like a lion. Cepat laaaa...'), (1615, 357, 'Johore, Malaysia', 'Im sitting in the middle of my two bfs.'), (1616, 529, 'Johor Bahru, Johore', '@fieraaah yeah!!! Must :)'), (1617, 652, 'Riau, Indonesia', '@meldamaharany lagi ngangenin kamu sayangg:*'), (1618, 449, 'Johor Bahru, Johore', 'Haiz Haiz'), (1619, 41, 'Plentong, Johor Bahru', 'cukup saya ada awak sorang :)'), (1620, 662, 'Johore, Malaysia', 'There''s no one here....'), (1621, 513, 'Johor Bahru, Johore', '“@turqu0iseee: RT @sexthedope :I''m not the same, I look the same, &amp; sound the same. But my smile isn''t as real as it used to be.”'), (1622, 663, 'Plentong, Johor Bahru', '@SyaaBosri hahaha!!qt mlysia yek..engat qt luo ngra..:))'), (1623, 664, 'Johor Bahru, Johore', '@DinSharif sorry din. ..$178 paleng murah'), (1624, 665, 'Johore, Malaysia', 'Food at MBS is ex!'), (1625, 13, 'Singapore', '@agrimsingh we haz a cohort shirt ''JUST DID IB'' \\m/'), (1626, 666, 'Johore, Malaysia', 'That moment when you laid your head on my shoulder. Best feeling ever. :'') But its behind me now.'), (1627, 667, 'Johore, Malaysia', 'So, there''s really some disturbance happening in my school. Just for the past one week, a lot of things happened. A lot. And I mean a lot.'), (1628, 668, 'Pulai, Johor Bahru', 'I''m at Block D, Nusa Perdana Service Apartment. (Gelang Patah, Johor) http://t.co/hOnXWEU3'), (1629, 449, 'Johor Bahru, Johore', 'You did the same thing he did'), (1630, 669, 'Malaysia', 'จากการห่างหายไปนาน กลับมาเริ่มใหม่อีกครั้ง'), (1631, 670, 'Pulai, Johor Bahru', 'I''m at 源香小贩中心 http://t.co/2ErGg1wJ'), (1632, 671, 'Johor Bahru, Johore', 'I''m at Sun Plaza (Singapore, Singapore) http://t.co/jAHhpadU'), (1633, 652, 'Riau, Indonesia', '@lelysaAF Hey :) @helensafitrigc hey kembali;;)'), (1634, 99, 'Johor Bahru, Johore', '@LittleMousyy who?? o.O'), (1635, 41, 'Plentong, Johor Bahru', '@zulailizulkifli da lama da aku amek. sebelum gerak aus'), (1636, 672, 'Johor Bahru, Johore', 'Ha fun with PHPPS peeps in FB :)'), (1637, 38, 'Johor Bahru, Johore', 'In the bus. Lol. Okay.'), (1638, 129, 'Plentong, Johor Bahru', '@Normfasz_NF cehh.. Mcm knl plak.. ahhaaakkzz'), (1639, 523, 'Malaysia', 'อยากหายไปจากโลกนี้ :('), (1640, 673, 'Johor Bahru, Johore', 'What a day today ! Cinamon challenge in the afternoon and home made chilli crab for dinner with family !'), (1641, 650, 'Johore, Malaysia', '@hpeiling @redotsME @PamelaWee @BrianCjj @HilariousFreak jiam jiam is you lor who else? hahahaha'), (1642, 365, 'Johore, Malaysia', '30 days.'), (1643, 627, 'Johor Bahru, Johore', 'Im gonna miss that cute indo guy that i met hahahahahahais'), (1644, 41, 'Plentong, Johor Bahru', '@sfatinfarhana entah la diorang, takpaham'), (1645, 674, 'Indonesia', 'ho ma te bujang,,RW @Aprianestambz Tena. RT @arifainsbl: I''m at kamar 606 (Bandung, Jawa Barat) http://t.co/zXx5cPeW'), (1646, 652, 'Riau, Indonesia', '@lelysaAF Hey :) @helensafitrigc hey kembali;;),,'), (1647, 675, 'Johore, Malaysia', 'Terlalu byk kenangan Aku telah lalui.mmg pahit dan pedih tapi terpakse.......'), (1648, 146, 'Johore, Malaysia', '@Divya__14 check DMs'), (1649, 480, 'Johor Bahru, Johore', '@helloimamelias ytd I mahjonging &gt;&lt; hehes'), (1650, 38, 'Johor Bahru, Johore', 'And and, on the same bus as Valerie! Lol. Okay.'), (1651, 449, 'Johor Bahru, Johore', 'That one thing that always breaks me'), (1652, 529, 'Johor Bahru, Johore', '@FathineeNaboloh surprise?'), (1653, 638, 'Johore, Malaysia', '@javinthey @valloure is he there?'), (1654, 676, 'Johore, Malaysia', 'Jacky Wu charged with fraud http://t.co/XbMxRW1N'), (1655, 411, 'Johor Bahru, Johore', 'I care abt you you know?'), (1656, 399, 'Johor Bahru, Johore', 'Empty beyond compare.'), (1657, 627, 'Johor Bahru, Johore', 'ANYONE GOT MISS ME NOT'), (1658, 495, 'Pulai, Johor Bahru', '#PeopleIWantToMeet @RynAsri @didieyaya @strawberryisme @evayezza \nRINDU TAHAP GABAN kat mereka walau selalu nmpak kt twitter!\nXP'), (1659, 677, 'Johor Bahru, Johore', 'As long as bhatrr'), (1660, 678, 'Johore, Malaysia', 'I''m at Hermitage "Pondok Sexy" http://t.co/CQ9Xmgyi'), (1661, 679, 'Johor Bahru, Johore', '@nicolethinggg @ReinaTaeminnie :)'), (1662, 135, 'Johor Bahru, Johore', 'Im so tireddd..D:'), (1663, 680, 'Johore, Malaysia', 'I''m at 313@Somerset (Singapore, Singapore) w/ 20 others http://t.co/hYYJKxBF'), (1664, 652, 'Riau, Indonesia', '@lelysaAF Hey :) @helensafitrigc hey kembali;;),,,,'), (1665, 681, 'Johor Bahru, Johore', 'I''m at Bus Opp Sembawang Station (Singapore) http://t.co/x381OpJs'), (1666, 677, 'Johor Bahru, Johore', '名牌9'), (1667, 651, 'Johore, Malaysia', 'Home sweet home ^^ (at Pinnacle@Duxton) [pic] — http://t.co/FUDZYToY'), (1668, 682, 'Johore, Malaysia', 'I''m at Heart of God Church (Singapore, Singapore) http://t.co/hVVar1Xl'), (1669, 41, 'Plentong, Johor Bahru', '@writerBEKU aku balek BP ye aku bagi'), (1670, 309, 'Johor Bahru, Johore', 'Time to go swimming :D'), (1671, 683, 'Johor Bahru, Johore', '@Ashleyounicorn OMG THROW THAT AWAY!'), (1672, 684, 'Johore, Malaysia', 'So tempted to take a cab home. But I''ll endure.'), (1673, 432, 'Plentong, Johor Bahru', '@noynoysyukriah no cOmnt . Xphm .'), (1674, 680, 'Johore, Malaysia', 'I''m at Forever 21 (Singapore) w/ 2 others http://t.co/d7lqrzcY'), (1675, 684, 'Johore, Malaysia', 'I''m sick.'), (1676, 446, 'Singapore', 'RAYQUAZA!!!'), (1677, 170, 'Johore, Malaysia', 'Tiny Flowers! @ Istana Park http://t.co/VnkMXLI6'), (1678, 685, 'Singapore', '@shinalabbsyuu okie :)'), (1679, 686, 'Johor Bahru, Johore', 'I''m at My Comfy Nest!  (Singapore) http://t.co/KmfpgW7D'), (1680, 683, 'Johor Bahru, Johore', '@aaatiikaaa anytime babe.'), (1681, 116, 'Riau, Indonesia', 'he''eh. semangat., semangat..!! jgn mlz2an :) :) RT @UlineVelova89: iya sama kita syg,to dari dinas baru un :) RT @tritamaraa: sm.,'), (1682, 51, 'Johor Bahru, Johore', '@Fitri_Wazowski naik rumah aku'), (1683, 443, 'Johore, Malaysia', '@shafira07 HAHAHAHA you want the answerrrr ? or you wanna PASS :p'), (1684, 687, 'Johore, Malaysia', '@NabilahRugan @greenie_leena i want your bedroom door to be open for me with all the love i need . Hehehe'), (1685, 688, 'Johor Bahru, Johore', 'I''m at Terminal 2 (Singapore, Singapore) w/ 10 others http://t.co/6uTS5Jw9'), (1686, 652, 'Riau, Indonesia', 'Beri,kamu? "@lelysaAF: @beririval iyalaaaaah:Dsiapa?;)" @beririval lelysa fulandary :D'), (1687, 309, 'Johor Bahru, Johore', 'After much persuasion @PeterSinghLeto finally agree to stay over^.^'), (1688, 375, 'Riau, Indonesia', 'hahaha iya deh @Ayudiadiadia'), (1689, 38, 'Johor Bahru, Johore', 'Dafugg? The kid so young have boyfriend and i don''t? #foreveralone.'), (1690, 689, 'Johor Bahru, Johore', 'It hurts knowing that nobody actually cares .'), (1691, 536, 'Johore, Malaysia', '@ChangHong_Hoo Yup =P so u muz use twitter everyday hor ! :PPPP'), (1692, 599, 'Johore, Malaysia', 'If you think I''m liike that, then thiis is for you , nah _|_ &gt;.&lt;'), (1693, 690, 'Johore, Malaysia', 'With @estherzoeee !!!!!! :D (@ CoCoICHIBANYA Curry House) [pic]: http://t.co/nxbX7uf6'), (1694, 99, 'Johor Bahru, Johore', 'Kene dengar cakap bapak..kalau bapak suruh amik ganja?? Amik jee :))'), (1695, 691, 'Johor Bahru, Johore', '@ValerieLuvszxc @stitchyrach_ You haven''t ask yr mom uh? You ask us go then you neh ask yr mom? =='), (1696, 652, 'Riau, Indonesia', 'Beri,kamu? "@lelysaAF: @beririval iyalaaaaah:Dsiapa?;)" @beririval lelysa fulandary :D,,'), (1697, 135, 'Johor Bahru, Johore', 'AJ''s dimples..&lt;3'), (1698, 627, 'Johor Bahru, Johore', '“@SyafiqahNutella: @roliepolierinny WHOOP WHOOP.” WOOOOO'), (1699, 297, 'Johore, Malaysia', 'Korean BBQ @ Arirang Korean Restuarant @ Liang Seah Street http://t.co/e03JsTZn'), (1700, 513, 'Johor Bahru, Johore', '“@turqu0iseee: The amount of food I eat is way too much. Fml.”'), (1701, 693, 'Plentong, Johor Bahru', 'I''m at Perpustakaan Sultan Ismail, Larkin http://t.co/NFpEyCt3'), (1702, 674, 'Indonesia', '@Aprianestambz ayo makan'), (1703, 694, 'Johor Bahru, Johore', 'Just posted a photo @ Kranji MRT Station (NS7) http://t.co/Kgr6yzPU'), (1704, 292, 'Johor Bahru, Johore', '@yannc2021 你!會有報應的。:/'), (1705, 529, 'Johor Bahru, Johore', 'Best to be honest &lt;3 i like!'), (1706, 695, 'Johore, Malaysia', 'I''m at Jumbo Seafood Resturant @ NSRCC Safra Resort w/ @seventimestwo http://t.co/rk7IKlw2'), (1707, 38, 'Johor Bahru, Johore', '@Marezl_CrazyMe ''cause i''m sick?'), (1708, 696, 'Johore, Malaysia', '新しいiPad欲しい'), (1709, 664, 'Johor Bahru, Johore', '@DinSharif yeap'), (1710, 419, 'Johor Bahru, Johore', 'w/ @elizzabethhhhhh stalking people on facebook~ (@ Sarah''s Room) http://t.co/dYyRpiEH'), (1711, 527, 'Johor Bahru, Johore', 'Dry you eyes, dry your eyes.'), (1712, 677, 'Johor Bahru, Johore', 'Ive been having stomach pain whenever I bite my thunb'), (1713, 672, 'Johor Bahru, Johore', '@nabilahaddidas Oii Bull dog reply me'), (1714, 72, 'Johor Bahru, Johore', '@ClarissaQQL nor shark overtake thee~'), (1715, 691, 'Johor Bahru, Johore', '@ValerieLuvszxc @stitchyrach_ *No Offence*'), (1716, 697, 'Johore, Malaysia', 'On the way to Jurong east to skate!!!! (@ Bus Stop 21561 Blk 158) http://t.co/CP6bJ20F'), (1717, 698, 'Johore, Malaysia', 'I''m at Imm Arcade http://t.co/h7lnMH6f'), (1718, 5, 'Johore, Malaysia', '@suuppergirl Haah . Naah , nvm :))'), (1719, 699, 'Johor Bahru, Johore', 'After her haircut. @chiawenfang http://t.co/8QrINTC0'), (1720, 335, 'Riau, Indonesia', '@ieamsaguband mintalah,, tp ponaan.... ku bnyak dikasinya bang'), (1721, 700, 'Johor Bahru, Johore', '@sfqdnl I''ll ask you to mengucap'), (1722, 701, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore) http://t.co/orOufs3J'), (1723, 38, 'Johor Bahru, Johore', '@SupYoEee ''cause i miss you. Lolcheykidding.'), (1724, 655, 'Johor Bahru, Johore', 'Just posted a photo @ Swimming Pool @ Sunrise Gardens http://t.co/Egzy3xnd'), (1725, 43, 'Johore, Malaysia', 'Mouth can be Cheating, but the heart Feels guilty! #Note'), (1726, 480, 'Johor Bahru, Johore', '@kobedarren @cheriecjl haha nvm :) I ltr then on :p'), (1727, 702, 'Johor Bahru, Johore', '#FIFAStreet A.I ''s goalkeeper is totally overpowered..'), (1728, 703, 'Johor Bahru, Johore', 'I''m at Junction 10 (Singapore) http://t.co/j5jqhwrs'), (1729, 704, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 19 others http://t.co/yfpQr1CF'), (1730, 72, 'Johor Bahru, Johore', '@TheEntertainerX so u grade 1 now? O_O u no take exam meh?'), (1731, 705, 'Pulai, Johor Bahru', 'I''m at Taman Awam MPJBT Taman Universiti (Skudai, Johor) http://t.co/ysBrUpAL'), (1732, 193, 'Johor Bahru, Johore', 'coconut jelly milk tea (@ KOI Café) http://t.co/BEx9ds28'), (1733, 706, 'Johore, Malaysia', 'Salon-ing done!!!! Watch strap forget!! Sori!!! (at Clementi Avenue 5) — http://t.co/gr4IuxVZ'), (1734, 707, 'Johore, Malaysia', 'I want to eat Mac!!!'), (1735, 472, 'Johor Bahru, Johore', 'now hfl my arabic sub ah.. hahaha'), (1736, 292, 'Johor Bahru, Johore', '@yannc2021 yea why not just cook me a meal. &gt;:('), (1737, 708, 'Johor Bahru, Johore', 'Choked on OJ..\nNow coughing like mad &gt;~&lt;'), (1738, 513, 'Johor Bahru, Johore', '6.21'), (1739, 536, 'Johore, Malaysia', '@ChangHong_Hoo Cannot T.T'), (1740, 361, 'Johore, Malaysia', 'Dinner (@ Chef Daniel''s Kitchen) http://t.co/l9lRvKu8'), (1741, 3, 'Johor Bahru, Johore', 'After tomorrow if I have time, I swear I''m going to watch timeless love for the third time!'), (1742, 38, 'Johor Bahru, Johore', 'Lalala~ Reaching home. Okay.'), (1743, 304, 'Riau, Indonesia', 'Don''t touch Lingo''s and my Chinese Junk! (with Lingo at @rwsentosa) [pic] — http://t.co/iboWqCNs'), (1744, 677, 'Johor Bahru, Johore', '比挺好ch'), (1745, 709, 'Johore, Malaysia', 'I''m at Wild Honey (Orchard, Singapore) http://t.co/YYrao8iN'), (1746, 406, 'Johore, Malaysia', '@veopoo yes, still open (:'), (1747, 710, 'Johor Bahru, Johore', 'I''m at Tampines MRT Station (EW2/DT32) (Singapore, Singapore) w/ 5 others http://t.co/8pRLZQLN'), (1748, 643, 'Johor Bahru, Johore', 'Jian Long is best and most patient trainer i ever experienced!'), (1749, 677, 'Johor Bahru, Johore', '&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;'), (1750, 116, 'Riau, Indonesia', 'he''eh dx :'') RT @Sella_YN: Hahaha sabar yawRT @tritamaraa: gk da slesai na dx., mgkn bln dpn x bru slesai RT Sella_YN: Kapan selesai (cont)'), (1751, 711, 'Johore, Malaysia', '@appleliciouseye kau da gilerrr ke?'), (1752, 712, 'Pulai, Johor Bahru', 'I''m at Success Service &amp; Maintenance Sdn Bhd (Gelang Patah, Johor) http://t.co/jbt9jvj6'), (1753, 713, 'Johore, Malaysia', 'I''m at Dhoby Ghaut MRT Interchange (CC1/NE6/NS24) (Singapore, Singapore) w/ 9 others http://t.co/cAfX0ZEV'), (1754, 631, 'Pulai, Johor Bahru', 'keje is about to siap, but, scholaship xtgk lagi, aiyak, anyone with money, taja me?'), (1755, 513, 'Johor Bahru, Johore', '“@turqu0iseee: this.. RT @Tinyacidz :i feel like everytime we talk, i bother you.”'), (1756, 135, 'Johor Bahru, Johore', 'My tailbone hurts..D:'), (1757, 714, 'Johore, Malaysia', '630 le still on the way to suntec'), (1758, 715, 'Johore, Malaysia', '@BornThisWayXD Lolz :)'), (1759, 716, 'Johor Bahru, Johore', 'Reaached home. (: Tiredd but in a highh moood. :D'), (1760, 147, 'Johore, Malaysia', '&lt;----------------------- This guy is in love &lt;3'), (1761, 717, 'Johor Bahru, Johore', '@looooofy tmrw got DB ah ?'), (1762, 718, 'Johor Bahru, Johore', 'Art is hard .'), (1763, 411, 'Johor Bahru, Johore', 'She meant alot, lot until i cannot forget abt it.'), (1764, 41, 'Plentong, Johor Bahru', 'selaju mana pun kereta memotong motor. apabila di traffic light. motor jugak kat depan xD'), (1765, 375, 'Riau, Indonesia', 'siapa yang d''linstar disini ???'), (1766, 719, 'Johor Bahru, Johore', '@bavanidevi21 lol. Stupid smrt.'), (1767, 720, 'Plentong, Johor Bahru', '@Didi_Astillah okayyy!! :)'), (1768, 135, 'Johor Bahru, Johore', 'Imma not enjoying the holidays..:/ #happyholidays tho :D'), (1769, 135, 'Johor Bahru, Johore', 'Imma like stalking ppl..LOL :D'), (1770, 599, 'Johore, Malaysia', 'I thiink you misunderstood me -.-'), (1771, 721, 'Johore, Malaysia', 'Yeah ~ baby pick me from work then go sing k :)'), (1772, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa yupp mini... something like this http://t.co/E8SfRyWR'), (1773, 723, 'Plentong, Johor Bahru', 'I just ousted Tanpa N. as the mayor of Bilik Solat on @foursquare! http://t.co/aXx21Gmm'), (1774, 723, 'Plentong, Johor Bahru', 'I''m at Bilik Solat (Pasir Gudang, Johor) http://t.co/U0RQsboc'), (1775, 724, 'Indonesia', 'yesung oppa :D http://t.co/BtYZf84n'), (1776, 718, 'Johor Bahru, Johore', 'Waiting my dad for dinner :&gt;'), (1777, 725, 'Johor Bahru, Johore', '@TAERIN_LEE he ar really nth do leh'), (1778, 375, 'Riau, Indonesia', 'bacot lo'), (1779, 486, 'Johor Bahru, Johore', '@rafash_ash naomi neo .'), (1780, 720, 'Plentong, Johor Bahru', '@yeyaanazari ohhokayy! hehe ;]'), (1781, 726, 'Johore, Malaysia', 'Studying my guitar notes at Starbucks City Hall =)'), (1782, 135, 'Johor Bahru, Johore', 'I just cant find the wallet&gt;.&lt;'), (1783, 727, 'Johor Bahru, Johore', 'Yay! Got someone sending me home today. Hehe... Can save $$$!!! =D'), (1784, 728, 'Johore, Malaysia', 'Finally everything is over!!!'), (1785, 643, 'Johor Bahru, Johore', 'When can i have my 100th follower ._. Followers please dont unfollow me.'), (1786, 115, 'Johor Bahru, Johore', 'Katniss Everdeen &lt;3'), (1787, 515, 'Johor Bahru, Johore', 'Parah dak? :''( RT @muftimuftia: rusuh FPI vs dayak hun RT: @ddiittaayeye: Eh pontianak ngape kok TL heboh?? http://t.co/tCELUPP3'), (1788, 729, 'Johore, Malaysia', 'Done with ze training ;)'), (1789, 310, 'Kota Tinggi, Johore', '@iamryan2316 @eleapot @j_t_gumban sarap hokienmee!!!!! Ahahaha..'), (1790, 340, 'Johore, Malaysia', 'Love my HARUM FIGHTS! AHAHHAHA! :DD'), (1791, 433, 'Johore, Malaysia', 'Chicken Ricefor dinner!!! (@ Food Style) [pic]: http://t.co/V7uLIeD7'), (1792, 730, 'Johore, Malaysia', 'Mais duas hrs e partimos! Frakfurt na proa!!! (@ Grand Mercure Roxy Singapore) http://t.co/xi5OFVFm'), (1793, 486, 'Johor Bahru, Johore', '@PIXI3KID hi . Oh damn it ! Haha okay then .'), (1794, 631, 'Pulai, Johor Bahru', 'status entah ape2 la farahana, delete la, tpi, kenape cik @Allysz like ek?'), (1795, 301, 'Johore, Malaysia', 'I''m at Sands SkyPark (Singapore, Singapore) http://t.co/ie3VHBWg'), (1796, 700, 'Johor Bahru, Johore', 'nenek just talked to me about akhirat just now'), (1797, 9, 'Johor Bahru, Johore', '@TrulyLee hahaha. Makan lagi lah . Awak tak padan dgn kecil eh . :)'), (1798, 490, 'Johor Bahru, Johore', 'Home.... (@ Blk 457 Ang Mo Kio Ave 10) http://t.co/ZjH1NfRe'), (1799, 679, 'Johor Bahru, Johore', 'Damn tired x.x'), (1800, 643, 'Johor Bahru, Johore', 'Tze Hern and Yufan brighten up my day in 3/4.'), (1801, 413, 'Johore, Malaysia', 'Never gonna fail again ... Wanna cry liao'), (1802, 513, 'Johor Bahru, Johore', '“@turqu0iseee: things I want to do with you http://t.co/JJ6RodXD”'), (1803, 599, 'Johore, Malaysia', 'you think you so good mehh ?! Hello, may you be struck down kk?? :)'), (1804, 731, 'Johor Bahru, Johore', 'Ah bt cpt onlen donk yank.."!!'), (1805, 529, 'Johor Bahru, Johore', 'Anyhow frame ppl! Arsehole bitch!'), (1806, 732, 'Kota Tinggi, Johore', 'I am so random .'), (1807, 117, 'Johore, Malaysia', 'im so tireddddddddd'), (1808, 173, 'Johor Bahru, Johore', 'Wanna 69? Hahahahahahaha RT @dayhui: Omg I hate you @Kumarwood ruin my reputation'), (1809, 13, 'Singapore', '@prissyyyyyy lol what joketown are you working at'), (1810, 733, 'Johore, Malaysia', '@YoursTrulyLyne i spam call your phone then you feel around for vibration? :D'), (1811, 639, 'Johor Bahru, Johore', 'I''m at Relay (Singapore, Singapore) http://t.co/HBjmivvy'), (1812, 734, 'Riau, Indonesia', 'Omfg,we jus went to the boat ride &amp; it was fucking scary . We fell from 3 story high D; my heart stopped for a sec . But it was fun :]]'), (1813, 643, 'Johor Bahru, Johore', 'My team got 3rd position! There are only 3 teams.'), (1814, 486, 'Johor Bahru, Johore', 'Whats the difference between fixie and pixie ? hmmmmm .'), (1815, 513, 'Johor Bahru, Johore', '“@Simcheeeky: RT @FCJX: I bet you forgotten.”'), (1816, 735, 'Johore, Malaysia', 'I''m at McDonald''s (Singapore) http://t.co/yLGbkqFf'), (1817, 454, 'Johor Bahru, Johore', 'Pretty words aren''t always true\nTrue words aren''t always pretty'), (1818, 515, 'Johor Bahru, Johore', 'Tggu smpai indo ya :3 RT @muftimuftia: watcap jak :D RT: @ddiittaayeye: Bnyk laa beb, nti ye kite crite2 :D RT @muftimuftia: uda kemane2'), (1819, 664, 'Johor Bahru, Johore', '@DinSharif biru oren aku lupe uh. Kau nak beli?'), (1820, 340, 'Johore, Malaysia', 'I wanna have FROLICK!'), (1821, 714, 'Johore, Malaysia', 'Wth trafffic jam so sian...'), (1822, 729, 'Johore, Malaysia', 'Should I eat at Ecp?'), (1823, 736, 'Johore, Malaysia', 'Left two weeks better enjoy it while we can !'), (1824, 718, 'Johor Bahru, Johore', '“@Retwittings: Complete the sentence: #MyParentsCanBe _____.” awesome !'), (1825, 737, 'Johore, Malaysia', 'I''m at The Coffee Bean &amp; Tea Leaf (Singapore) http://t.co/wXY4Gh7T'), (1826, 610, 'Plentong, Johor Bahru', 'y ? RT;@TeheeSarawr Mcd delivery kuantan bodoh! Haha'), (1827, 738, 'Johor Bahru, Johore', 'I''m at Bukit Gombak MRT Station (NS3) (Singapore, Singapore) http://t.co/mbc8SKta'), (1828, 739, 'Johore, Malaysia', 'Selling out. But that''s cos there''s no Starbucks here lol. (at The Coffee Bean &amp; Tea Leaf) [pic] — http://t.co/ymNlKSHD'), (1829, 147, 'Johore, Malaysia', '@macamretard who?'), (1830, 700, 'Johor Bahru, Johore', 'Of course i do, i bet Syareena does too RT @sfqdnl: @afiqahyamin alhamdulillah, at least someone cares for me. :'')'), (1831, 81, 'Johore, Malaysia', '@ohmysofiaa eh! Road safety park open to public sia!'), (1832, 740, 'Johore, Malaysia', '@ulfaDHAH33 asal tak on fb ? :D'), (1833, 643, 'Johor Bahru, Johore', 'Omg i really feel like mentioning both of you in a tweet. Please dont start.'), (1834, 741, 'Johore, Malaysia', 'RT @markmackinnon: RT @DejiangZhang: I just ousted @BoXilai as the mayor of the Party''s Chongqing Committee on @foursquare!'), (1835, 209, 'Johore, Malaysia', '@Aarella @iffakhalissa it has blood too?'), (1836, 539, 'Johor Bahru, Johore', 'I''m at Yishun MRT Station (NS13) (Singapore, Singapore) http://t.co/JBeQ9Lgv'), (1837, 167, 'Pulai, Johor Bahru', 'Mandi... (@ Lagaria Laguna) http://t.co/8rVT0is6'), (1838, 486, 'Johor Bahru, Johore', '@rafash_ash siape lah bodoh'), (1839, 411, 'Johor Bahru, Johore', 'It seems so fake. . .'), (1840, 742, 'Johor Bahru, Johore', 'Going back to school now for the camp.. Haizz.. I''m so tired rite now!!'), (1841, 94, 'Johor Bahru, Johore', 'I WANT POSTERS.. RAWWWWR~'), (1842, 515, 'Johor Bahru, Johore', 'Bneran? RT @muftimuftia: smntr msh aman2 yak sih,cume jalanan kn pd ditutup RT: @ddiittaayeye: Parah dak? :''( RT @muftimuftia: rusuh FPI vs'), (1843, 734, 'Riau, Indonesia', 'Omg! Me &amp; my cousin .. Wanted to go to the mummy rollercoaster but half way going thru the entrance it was dark so screamed , so nvr go xD'), (1844, 654, 'Johore, Malaysia', 'KALAU UDAH PUTUS PUTUS AJA GAK USAH NYINDIR-NYINDIR KALE -_- cape deh'), (1845, 41, 'Plentong, Johor Bahru', '@writerBEKU band shu kinyobi nak beli baju v-kei, lagipun aku ingat nak beli baju kat kedai district tu sekali'), (1846, 743, 'Johore, Malaysia', '@Gen_SayHii Hello :D'), (1847, 554, 'Johore, Malaysia', '@kellylilin aww :( next time then *generation gap*'), (1848, 631, 'Pulai, Johor Bahru', 'mlm nih farahana, jgn wat org susah ahti or sakit hati, kamu tuh, state sgt la xbetul, aiyak'), (1849, 744, 'Johore, Malaysia', 'I''m at Cold Stone Creamery (Singapore, Singapore) w/ 5 others http://t.co/AZTYWUos'), (1850, 745, 'Johor Bahru, Johore', 'Weewt.. So exhausting..'), (1851, 599, 'Johore, Malaysia', 'You are not me and therefore, don''t act as if you know me,myself and I .'), (1852, 676, 'Johore, Malaysia', 'iPad 3rd gen plans in Singapore only comes with 10GB for $40? What the Nathan?!'), (1853, 746, 'Johor Bahru, Johore', 'I''m at 27 Hazel Park Terrace (Singapore, Singapore) http://t.co/uDWITgGl'), (1854, 536, 'Johore, Malaysia', '@ChangHong_Hoo Yay ! ^^ of cos but make sure u do it horh ~~~'), (1855, 747, 'Johore, Malaysia', 'Just posted a photo @ Glitz Hair Workz http://t.co/f2fxtz4I'), (1856, 748, 'Johor Bahru, Johore', '@ahhmaaa very good n userfriendly'), (1857, 735, 'Johore, Malaysia', 'I''m at Bugis MRT Interchange (EW12/DT14) (Singapore, Singapore) w/ 7 others http://t.co/jZDTVAaw'), (1858, 700, 'Johor Bahru, Johore', 'I want to sleep'), (1859, 749, 'Johore, Malaysia', 'mum and chubbz, our neighbour''s dog :) #chowpoodle @ Tanjong Rhu Road http://t.co/RL10FUTn'), (1860, 43, 'Johore, Malaysia', 'Wuu zaa ganas main tumbuk pula. Taksakit pun :P'), (1861, 627, 'Johor Bahru, Johore', 'Still stuck at Tuas Checkpoint rn thanks to the friggin china lady who forgot to bring her bag along with her when we went down the coach.'), (1862, 750, 'Johore, Malaysia', 'hi (@ MDIS ''Bus Stop '') http://t.co/ydW5xgtR'), (1863, 388, 'Johore, Malaysia', '#OneThingIWillMiss when I my bus concession expires is taking bus 30 and enjoy the nice scenery at Marina Bay. http://t.co/s9iayNMm'), (1864, 524, 'Johore, Malaysia', 'I''m at Dhoby Ghaut MRT Interchange (CC1/NE6/NS24) (Singapore, Singapore) w/ 10 others http://t.co/YwefXJCx'), (1865, 340, 'Johore, Malaysia', 'Have it with you please. Oh! Cannot eh ?!'), (1866, 751, 'Johore, Malaysia', 'Multitasking. (@ SIM HQ LT1.08 w/ @njann) http://t.co/nrmO5QVE'), (1867, 752, 'Johore, Malaysia', '@TLneon Heya, gonna head home first to shower off the muck, might be like 10 mins late'), (1868, 752, 'Johore, Malaysia', '“@reihansalam: The Blow &gt; YACHT.”\n@De7erminist'), (1869, 753, 'Johor Bahru, Johore', 'Going for a walk soon haha'), (1870, 754, 'Johore, Malaysia', '@Ap_uh Love you too baby♥'), (1871, 755, 'Kota Tinggi, Johore', 'Talented in your own world?'), (1872, 411, 'Johor Bahru, Johore', 'WowWow, You care abt it? I didn''t notic abt it.'), (1873, 515, 'Johor Bahru, Johore', 'Msi d sngpore RT @muftimuftia: sekarang lg dmn hun? RT: @ddiittaayeye: Tggu smpai indo ya :3 RT @muftimuftia: watcap jak :D RT: @ddiittaayey'), (1874, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa hahah kecik baru comel wehh.. molek gituu. hahaha'), (1875, 451, 'Johore, Malaysia', 'RT “@KingDuy: Some people just need a hug... Around their neck.... With a rope :)”'), (1876, 700, 'Johor Bahru, Johore', 'Exactly RT @sfqdnl: why i suddenly emo sia?'), (1877, 756, 'Johor Bahru, Johore', 'I''m at Changi Intl. Airport Singapore (Quezon City, Metro Manila) http://t.co/iOzxlkNV'), (1878, 664, 'Johor Bahru, Johore', '@DinSharif esok malam.ride.nk.ikot?'), (1879, 127, 'Johor Bahru, Johore', '@lydsamm u me my bro rememberrr'), (1880, 740, 'Johore, Malaysia', '"dalam bidang bahasa dan sastera. " dlm BI apa haa ? @ulfaDHAH33 ??'), (1881, 757, 'Johor Bahru, Johore', 'Woke up from my nap feel so refresh !!'), (1882, 207, 'Johore, Malaysia', 'I''m at McDonald''s (Singapore, Singapore) w/ 3 others http://t.co/NrmXwfek'), (1883, 758, 'Johore, Malaysia', 'Addiction na to. (@ Din Tai Fung 鼎泰豐) http://t.co/bZbUft9S'), (1884, 759, 'Johore, Malaysia', '@jamzxz Whats happening tmrw?! :X'), (1885, 603, 'Johore, Malaysia', 'I''m at M1 Shop w/ @blackheartesj http://t.co/QuvO8uKM'), (1886, 760, 'Johor Bahru, Johore', '@princessqie really random. She send me the whole banana potato minion song through talkbox. Semangat!'), (1887, 9, 'Johor Bahru, Johore', '@TrulyLee hahaha . Soon you will get it . I already have the recipes . Yinggal nak beli barang je . :) hehehe'), (1888, 9, 'Johor Bahru, Johore', '@FaraRossi yeap. Why ? 0.0'), (1889, 145, 'Johore, Malaysia', '@iamanrose mai koshish karunga ki tuhadi barbaad jingdi nu abbad kar saka ok\nby'), (1890, 472, 'Johor Bahru, Johore', 'penat. bsk hari ape ah. lupe lk'), (1891, 301, 'Johore, Malaysia', 'I''m at Sands SkyPark (Singapore, Singapore) http://t.co/iY31nY6R'), (1892, 761, 'Johore, Malaysia', '@billkadir @Degedakhehaaa bill, din...sok mcm mne..? jadik pi ke x ni?'), (1893, 762, 'Johore, Malaysia', '@Joycestruckedd HELLO JOYCE!!!'), (1894, 523, 'Malaysia', 'เชี่ย :( อารมเสีย'), (1895, 267, 'Johore, Malaysia', 'The condo stray cat missed out last night, put sardines out, he was too shy and some other cat noshed the fish #shithappens'), (1896, 723, 'Plentong, Johor Bahru', 'I''m at Anbu''s House (Pasir Gudang, Johor) http://t.co/lv3ya26X'), (1897, 142, 'Johore, Malaysia', 'Even my small kid said to mom that I loooked so sick right now. &amp; she''s just 4years old. Sigh'), (1898, 689, 'Johor Bahru, Johore', '@DannDynno followed . (:'), (1899, 763, 'Singapore', 'Assignment is submitted... Now wait for the tutor to check tomorrow.... :"('), (1900, 764, 'Johor Bahru, Johore', 'KidsPlay w Boyboy. :) (@ Nex Mall Rooftop) http://t.co/YE8HXRTM'), (1901, 715, 'Johore, Malaysia', 'Little brother dancing hip hop :D http://t.co/0xjZ3eCC'), (1902, 718, 'Johor Bahru, Johore', 'Vry hungryyy'), (1903, 765, 'Kota Tinggi, Johore', '@nuralizaalias comelnyaa kitaaaaa !! :DD'), (1904, 766, 'Plentong, Johor Bahru', 'I''m at Larkin Jaya http://t.co/KxEJNANd'), (1905, 767, 'Johor Bahru, Johore', 'I''m at Gek Poh Comunity Centre http://t.co/0lLzG8MP'), (1906, 147, 'Johore, Malaysia', 'I guess your wrong this time..'), (1907, 768, 'Johore, Malaysia', '@DJMIKEAQUINO oi! Penge!'), (1908, 13, 'Singapore', '@prissyyyyyy oic kk don''t angry life goes on'), (1909, 769, 'Singapore', '#PeopleIWantToMeet @greysonchance'), (1910, 529, 'Johor Bahru, Johore', '@FathineeNaboloh i got it lah!! :) hahah'), (1911, 43, 'Johore, Malaysia', '@ElysExiara Patut ah kalau jumpa kenal mcm takenal je'), (1912, 147, 'Johore, Malaysia', 'Sshe is own by alot of time..'), (1913, 411, 'Johor Bahru, Johore', 'I put my trust in you, Did you cherish it?'), (1914, 671, 'Johor Bahru, Johore', 'I''m at Sembawang MRT Station (NS11) (Singapore, Singapore) w/ 3 others http://t.co/5Jx4APU3'), (1915, 340, 'Johore, Malaysia', 'I wanna have some time with you, just you, on the swing. &lt;3'), (1916, 411, 'Johor Bahru, Johore', 'Did you even know that?'), (1917, 770, 'Johore, Malaysia', 'satunya bongkot, satunya arthit. jelek banget kedengerannya...'), (1918, 716, 'Johor Bahru, Johore', 'Reaached home. (: Tiredd but in a highh moood. :D http://t.co/TeOoGYPX'), (1919, 771, 'Johore, Malaysia', 'Eating durian pancake :3'), (1920, 43, 'Johore, Malaysia', '@yarkkkkpashhhaa Eh yeke lirik? Shhh haha. Nti ah klu teruk sgt baru mkn ubat'), (1921, 399, 'Johor Bahru, Johore', '@pinkshortcake_ sure sure.'), (1922, 185, 'Johor Bahru, Johore', '@yanayeyOh @ifarrk cina* sorry autocorrect!'), (1923, 772, 'Johor Bahru, Johore', 'WhereEver U Go, Whatever U Do,\nI will be Right Here Waiting for Cha! Perghhh! WatEva WatEva lahhhhh...'), (1924, 292, 'Johor Bahru, Johore', '@yannc2021 foooooooood....arghhhhhh'), (1925, 713, 'Johore, Malaysia', 'I''m at Raffles Place MRT Interchange (EW14/NS26) (Singapore, Singapore) w/ 6 others http://t.co/bZSf9rFZ'), (1926, 773, 'Johore, Malaysia', 'So who else''s having a mid week drink? (@ Mulligan''s Irish Pub &amp; Restaurant) [pic]: http://t.co/R5QIpqD0'), (1927, 774, 'Johor Bahru, Johore', 'Was out running 5.04 km with #Endomondo. See it here: http://t.co/famnQRaC'), (1928, 775, 'Johore, Malaysia', '@Dariuslua bro. tmr gym 8am?'), (1929, 776, 'Johore, Malaysia', 'Should I work after working hours ? Damn sian'), (1930, 529, 'Johor Bahru, Johore', 'I know the truth nowh!'), (1931, 723, 'Plentong, Johor Bahru', 'I''m at Lambaian Muhibah http://t.co/4fycSYdB'), (1932, 486, 'Johor Bahru, Johore', '@rafash_ash itu nenek kau lah'), (1933, 700, 'Johor Bahru, Johore', '&lt;3 RT @sfqdnl: @afiqahyamin aww hehehe thank you!! yes, i really hope she does. :'')'), (1934, 43, 'Johore, Malaysia', '@you_azima Whoaa for second meet eh? haha'), (1935, 699, 'Johor Bahru, Johore', 'So engrossed in her scramble with friends. -.- @ Live Culture Hair &amp; Beauty Salon http://t.co/H3K8kSjJ'), (1936, 627, 'Johor Bahru, Johore', 'Okay we''re going out of here nao. Lol'), (1937, 475, 'Johore, Malaysia', 'Taking train to town now.. Not fun!! All the smelly ppl!!'), (1938, 729, 'Johore, Malaysia', 'Anyone wanna have dinz? :)'), (1939, 777, 'Johore, Malaysia', 'Only during a cruise drive do images like this exist... :) @ 192 Pandan Loop http://t.co/PT6BOf8q'), (1940, 292, 'Johor Bahru, Johore', '@yannc2021 WHY NOT? 1more hr to go before I can call it a day... :/'), (1941, 529, 'Johor Bahru, Johore', 'I wan gongcha! ;)'), (1942, 482, 'Johor Bahru, Johore', 'I''m at Yishun Swimming Complex (Yishun, Singapore) [pic]: http://t.co/Xx8CUvo6'), (1943, 536, 'Johore, Malaysia', '@ChangHong_Hoo Hahahah xPPPP'), (1944, 94, 'Johor Bahru, Johore', '@cornybom Can our travel diary be like colourful etc or must it be written on foolscap??'), (1945, 73, 'Singapore', 'next friday &lt;3'), (1946, 411, 'Johor Bahru, Johore', 'Sometime the truth can be so hurt until i cannot bear.'), (1947, 41, 'Plentong, Johor Bahru', '@writerBEKU takde duit giler, nak bawak balik BP lagi. nak bayar hutang solihin ngan hutang buku teks'), (1948, 665, 'Johore, Malaysia', '1 meal 7 bucks. No $ already..'), (1949, 778, 'Kota Tinggi, Johore', 'Shall go get my monster arm back. Just kidding ^^'), (1950, 779, 'Johor Bahru, Johore', 'Fluism, Coughism, Runny Nosism = Stay Homeism...'), (1951, 43, 'Johore, Malaysia', '@amirsyazwina Aliran paip :P Pa je. You ?'), (1952, 780, 'Johor Bahru, Johore', 'nampotah! dang tindi talaga! di pa kayo mama***!'), (1953, 10, 'Singapore', '):'), (1954, 691, 'Johor Bahru, Johore', '@AloyPang Hahah. Get yr Timeless Love Co-stars to go diving w you again! (: Then you can enjoy the peace underwater again! (:'), (1955, 781, 'Johore, Malaysia', '@euniceyisme u cut what hair !!!???'), (1956, 782, 'Plentong, Johor Bahru', 'hello,,,,hello semua'), (1957, 783, 'Singapore', '@CloeMak Haha! Just went to check it out uh! Your giant picture should rescale a little!'), (1958, 716, 'Johor Bahru, Johore', 'Hazizi took a picture of me. I THINK IT WILL BE DAAMN UNGLAAM. AHHH.'), (1959, 771, 'Johore, Malaysia', 'Ahhh ! Sedapnye !'), (1960, 784, 'Kota Tinggi, Johore', 'I''m at Changi General Hospital (CGH) (Singapore, Singapore) http://t.co/rrK3OcF0'), (1961, 785, 'Singapore', '@NandosSingapore @1Derful1D_ @boythunder913 Vas Happenin'' Barci!! I wonder if 1D have a mascot? lol :)'), (1962, 700, 'Johor Bahru, Johore', '@katydara Chio siaaaa'), (1963, 487, 'Johore, Malaysia', '@euxuanlin after i pay my debts kayyy !!!!'), (1964, 515, 'Johor Bahru, Johore', 'Blm terlalu? Mksudny gmn? RT @nugiienugraha: @ddiittaayeye iye kak, belom terlalu sih. Doekan yak baek2 nih. http://t.co/jNkMdKD1'), (1965, 771, 'Johore, Malaysia', 'Kay gonna enjoy ! Brb !'), (1966, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. They are very strong. Big Bang will win.'), (1967, 776, 'Johore, Malaysia', 'China driver are so fierce'), (1968, 769, 'Singapore', 'kasian adk gak di blehin bli ayam di angkringan. dan akhirnya aku sma abng diem2 bliin ayam itu tnpa spengetahuan mama.'), (1969, 411, 'Johor Bahru, Johore', 'You are so S.P.E.C.I.A.L to me, You know?'), (1970, 117, 'Johore, Malaysia', 'http://t.co/XMFJcVSW'), (1971, 486, 'Johor Bahru, Johore', 'P-U-K-I-M-A-K-A-U .'), (1972, 786, 'Johore, Malaysia', '“@Oli_Pettigrew: Kenny G playing in the bathroom. Something very wrong about holding my penis thinking about him" you made my day Oli'), (1973, 627, 'Johor Bahru, Johore', 'This @swagxtastix is being such a gay. She never miss me sia what is this'), (1974, 763, 'Singapore', 'Manner is not something you can teach.... if you don''t have it then you don''t have it. too bad...'), (1975, 787, 'Johor Bahru, Johore', 'I''m at Canteen A @ NTU http://t.co/0B3BIOyR'), (1976, 327, 'Johore, Malaysia', '@MohdNohSalleh Happy Birthday Noh~ Hidup Raingers \\m/'), (1977, 98, 'Johor Bahru, Johore', '@ficobutternuts kimice sorry la aku kluar jap!!! Dah check da'), (1978, 539, 'Johor Bahru, Johore', 'I''m at Northpoint Shopping Centre (Singapore, Singapore) w/ 8 others http://t.co/1yRO2KFJ'), (1979, 788, 'Johore, Malaysia', '@Hp Singapore'), (1980, 43, 'Johore, Malaysia', 'Hi awak?'), (1981, 789, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 21 others http://t.co/UraJXQ3g'), (1982, 117, 'Johore, Malaysia', '@paperdrizzle not for everyone HHAHAH'), (1983, 790, 'Johor Bahru, Johore', '@juvenile94 hahahahaa!! He got tht from Malaysia! :)'), (1984, 529, 'Johor Bahru, Johore', 'UNFAIR AH !!!!!!!!!!!!!!!!!!!!!'), (1985, 643, 'Johor Bahru, Johore', 'And it goes like this.'), (1986, 791, 'Johor Bahru, Johore', 'At Ang Mo Kio Community Centre — http://t.co/gTZVyzir'), (1987, 302, 'Singapore', '@illicitflesh HANNAH MONTANA...wait.'), (1988, 513, 'Johor Bahru, Johore', '4833'), (1989, 769, 'Singapore', 'Sayang adekku =*'), (1990, 792, 'Johore, Malaysia', 'Donuts date with Mr Boyfie.  (@ J.Co Donuts &amp; Coffee) http://t.co/XeZkdQnj'), (1991, 116, 'Riau, Indonesia', 'behh., trnyta anak ibuk ne agak ALAY yaa. smpe sgtu na sqa sm tmn q :D'), (1992, 61, 'Johor Bahru, Johore', 'Someone lost all the will to fight after i left. Such a sad ending. @PeiYi2706'), (1993, 793, 'Johore, Malaysia', 'At m1... (at Bugis Junction Shopping Mall) — http://t.co/k9V5y4tE'), (1994, 93, 'Johore, Malaysia', '@chaaaaos REALLY?!? I''m alone at home now...'), (1995, 794, 'Malaysia', 'ถึงเวลาปรับเครื่องมือจัดฟัน.. (@ Dental Room.(Dr.Dental Clinic)) http://t.co/nuT7Ue0Z'), (1996, 794, 'Malaysia', 'I just became the mayor of Dental Room.(Dr.Dental Clinic) on @foursquare! http://t.co/NYycbvmt'), (1997, 771, 'Johore, Malaysia', '@tookitaway ALL THE TIME !'), (1998, 795, 'Johore, Malaysia', 'Just posted a photo @ 7-11 @ Liang Seah Street http://t.co/hequfa3e'), (1999, 796, 'Kota Tinggi, Johore', 'Just finish playing pool with 4B1 pool bros haha @taykaihong @WuYongming @SmellyChouTofu @attitude_smile @taesongha http://t.co/kXpupyRJ'), (2000, 797, 'Johore, Malaysia', 'I''m at Marina Bay Sands (Hotel) (Singapore, Singapore) w/ 8 others http://t.co/3OUmI1Or'), (2001, 726, 'Johore, Malaysia', '@Yeeninglovesred why lei...u in the area?'), (2002, 627, 'Johor Bahru, Johore', '“@DANbeatfreaks: @roliepolierinny thats what chinese people specialise in hahah ok joking.” hahahahahah thats..... no comment har har har'), (2003, 798, 'Johore, Malaysia', 'No offence grandmother but you''re really getting on my nerves.'), (2004, 799, 'Johor Bahru, Johore', '@KennethLJY wtf. Thx ah. Say im horny when im actually a good boy~'), (2005, 693, 'Plentong, Johor Bahru', 'I''m at titiwangsa apartment jalan padi malinja 1 (Johor Bahru, Johor) http://t.co/P9RUQ7Nj'), (2006, 513, 'Johor Bahru, Johore', 'Iwtkta'), (2007, 800, 'Johore, Malaysia', '@BiteMyLeftFoot I won''t know if you say? So are you? Hahahahaaa!'), (2008, 593, 'Johor Bahru, Johore', '@Jae_Jerome hmm.. Idk whose I should get..'), (2009, 73, 'Singapore', 'fats &gt;:('), (2010, 495, 'Pulai, Johor Bahru', '#KenanganTadika Pakai baju gaun kotakkotak pink!\n#ComelKan ? XDD'), (2011, 116, 'Riau, Indonesia', 'sqa sh blh., tp jgn smpe bwt org mrsa trgnggu gtu x -,-'), (2012, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa GOLD okaayy GOLD ! :D'), (2013, 411, 'Johor Bahru, Johore', 'Instant, The mac people says that need to wait for 2 hours? !'), (2014, 769, 'Singapore', 'aku gak mau adk ku sdih..'), (2015, 700, 'Johor Bahru, Johore', '@sfqdnl Dont sedih sedih lah, tak bagus yknw'), (2016, 801, 'Johore, Malaysia', 'I''m at Subway http://t.co/Qec0AcZx'), (2017, 627, 'Kota Tinggi, Johore', 'HUNGRY'), (2018, 593, 'Johor Bahru, Johore', '@AngelusChan who? Xz?'), (2019, 802, 'Johor Bahru, Johore', 'With classmates! @iamfiee @MKA921 @iStraven @kionghuat @Nattrawr (@ 467 Bbq Pit.. w/ @mka921 @istraven @kionghuat) http://t.co/idrGpASn'), (2020, 515, 'Johor Bahru, Johore', 'Ee tak usa, tak enak haha. Eh kok kw tenang2 jak ni? :| RT @muftimuftia: yoi. aku mau pindah ke ausie jak la nih ahaha ;p RT: @ddiittaayeye:'), (2021, 643, 'Johor Bahru, Johore', 'Good both of you have became silent. Thats the first step to patch up.'), (2022, 803, 'Johor Bahru, Johore', '@Tinylittlexz we spell it as pontiyana . We don''t spent it anyway :3'), (2023, 110, 'Johore, Malaysia', 'Tired:/'), (2024, 585, 'Johore, Malaysia', '. http://t.co/VnqDRkYY'), (2025, 803, 'Johor Bahru, Johore', '@Louislikeastyle one pack of sweets .'), (2026, 41, 'Plentong, Johor Bahru', '@writerBEKU oke la kalau macam tu, papehal aku roger, mintak hutang aku sekali la kat farid'), (2027, 117, 'Johore, Malaysia', '@paperdrizzle have laaaaaaaah , where got so different one hhahhaa'), (2028, 771, 'Johore, Malaysia', '@tookitaway omg ! Duh ! Kampong Matlap makanan sedap oi !'), (2029, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc @zhenjingkimchi_ I got reply ma I thought...'), (2030, 763, 'Singapore', 'Those people with trick celebrity name in #twitter . Shame on you...'), (2031, 804, 'Johor Bahru, Johore', 'I''m at Changi International Airport, Singapore - Terminal 2, Gate E2 (Singapore) http://t.co/yGrA9Ugh'), (2032, 805, 'Johor Bahru, Johore', 'I''m at Woodlands Checkpoint (Causeway) (Singapore, Singapore) w/ 7 others http://t.co/RGhGqBig'), (2033, 335, 'Riau, Indonesia', '@ieamsaguband kmrn udh seminggu plg,,,,1 bulan dia dsana, mlm jumaat kmrn dia tdr kos ku'), (2034, 806, 'Tebrau, Johor Bahru', 'Friend to me: "Where''s your mustache and beard?" (Somewhere in the sewer perhaps?)'), (2035, 627, 'Kota Tinggi, Johore', 'hi rindu i tak? Hahahaha @nadpepper @thincookies'), (2036, 807, 'Johor Bahru, Johore', 'I''m at Windsor Park Playground (Singapore) http://t.co/xVxKvBY9'), (2037, 585, 'Johore, Malaysia', 'some people act chio act until very very fail #laughs'), (2038, 411, 'Johor Bahru, Johore', 'Seriously can hungry too death.'), (2039, 691, 'Johor Bahru, Johore', '@ValerieLuvszxc I tot tht day me and Rach agree? *No Offence*'), (2040, 523, 'Malaysia', '@orioenjoy พี่สาวเป็นไร ? TT'), (2041, 544, 'Johor Bahru, Johore', 'This @Jerwaynehtw finally here!'), (2042, 808, 'Riau, Indonesia', '@adzhani1 Hy shabrina !!!'), (2043, 782, 'Plentong, Johor Bahru', ':)'), (2044, 206, 'Singapore', '@yepimtalia darling?! O.o'), (2045, 93, 'Johore, Malaysia', 'My dimples cacat lol. One side got two dimples one Side no have LOL'), (2046, 515, 'Johor Bahru, Johore', 'Singgah lok beli kue :D RT @muftimuftia: ha? kok terdampar disana? RT: @ddiittaayeye: Msi d sngpore RT @muftimuftia: sekarang lg dmn hun? RT'), (2047, 585, 'Johore, Malaysia', '@Natasha_Kinskey seeraiously?whut happen'), (2048, 809, 'Johor Bahru, Johore', '@Boi_Elastico thx for the sr3 kau nak game ape?? Aku dah msg kau'), (2049, 498, 'Johor Bahru, Johore', 'Stupid Pauk Pauk -.-'), (2050, 3, 'Johor Bahru, Johore', '@Rachel_Kimchia Don''t spam them. They did browse through. But don''t have time to reply.'), (2051, 612, 'Johor Bahru, Johore', 'I''m at Changi International Airport - Singapore (Changi, Singapore) http://t.co/w8PRfNS0'), (2052, 536, 'Johore, Malaysia', '@ChangHong_Hoo Of cos :DDDDD'), (2053, 335, 'Riau, Indonesia', '@ieamsaguband galau tros ab nie ha'), (2054, 810, 'Malaysia', 'ซื้ออาหารหมาให้เด็กๆหน่อย หลายตัวเกิน (@ Makro (แม็คโคร)) http://t.co/S3b8FssH'), (2055, 113, 'Johor Bahru, Johore', '@YilingGumshoe no.. Their grade 1 same like our primary 1 so from grade 11 is our age de'), (2056, 206, 'Singapore', '@yepimtalia FEED ME SOME;D'), (2057, 648, 'Johor Bahru, Johore', 'Too bad im not gonna fall into ur trap animore...'), (2058, 800, 'Johore, Malaysia', 'Playing pool with @regina_khs @badbloodmarcus and mm! (;'), (2059, 73, 'Singapore', 'literature tmrw. SIAN'), (2060, 498, 'Johor Bahru, Johore', 'STOP ANNOYING ME LAH !'), (2061, 811, 'Johore, Malaysia', '@mkhairulz erm like 4 days nv lehs waste money also won''t die'), (2062, 812, 'Johore, Malaysia', 'Andy Warhol''s exhibition at ArtScience is amazing. I could spend an entire day at the museum.'), (2063, 627, 'Johore, Malaysia', '“@swagxtastix: @roliepolierinny @nadpepper @thincookies no” SHUTUP'), (2064, 813, 'Johor Bahru, Johore', 'Intented nap time:1hour\nReality:5 hours... HOLY SHIT! &gt;.&lt;'), (2065, 814, 'Johor Bahru, Johore', 'Otw home .'), (2066, 593, 'Johor Bahru, Johore', 'Whole day watch drama.. Time to give my eyes a break'), (2067, 815, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 27 others http://t.co/ZoHkdTKl'), (2068, 816, 'Johore, Malaysia', 'were friends, but mr. Clavio...boy oh boy...the worst case of foot in mouth disease ever. (via @KCMontero)'), (2069, 675, 'Johore, Malaysia', 'Hidup pon merana Lebih baik lepaskan.'), (2070, 677, 'Johor Bahru, Johore', '@qurratuainXDhaaa'), (2071, 814, 'Johor Bahru, Johore', 'Tiring day .'), (2072, 3, 'Johor Bahru, Johore', '@Xubin_ @aloypang @kimberly_chia whoa. Xu bin still thought of Kim ;)'), (2073, 769, 'Singapore', 'rasanya pengen nngis, tpi mlu nngis di dpan adk :('), (2074, 699, 'Johor Bahru, Johore', 'Finally, after much persistence. A smile! @chiawenfang @ Live Culture Hair &amp; Beauty Salon http://t.co/5AX4Tz55'), (2075, 817, 'Johor Bahru, Johore', 'Having flu. And my nose like water tap. :('), (2076, 480, 'Johor Bahru, Johore', '@kobedarren @cheriecjl lols I forgot that account haha &gt;&lt; training up new one :)'), (2077, 782, 'Plentong, Johor Bahru', 'thnkksss 4 follow saya'), (2078, 818, 'Johore, Malaysia', 'Bloody fuck . People help you you like that .'), (2079, 819, 'Johore, Malaysia', 'I''m at McDonald''s (Singapore, Singapore) w/ 2 others http://t.co/5dFjudmm'), (2080, 190, 'Johore, Malaysia', '@whatyouwantnow hahaha!! Monday meeting who bubbletea ah?? '), (2081, 801, 'Johore, Malaysia', 'I''m at Subway @ Toa Payoh Entertainment Center (Toa Payoh, Singapore) http://t.co/Y2O5Dwv0'), (2082, 486, 'Johor Bahru, Johore', '@rafash_ash matair kau marah aku'), (2083, 820, 'Johore, Malaysia', 'Pantes dr kmrn ngepost 100 twit suster/menit si @wesumar ... Lg dirawat masbro?'), (2084, 206, 'Singapore', '*grabs my hand* *squeeeeeze* *squeeeeze harder* *ouch.* xD'), (2085, 821, 'Riau, Indonesia', 'aQu Hanya PeLarian Saja :(( http://t.co/isUe4LgV'), (2086, 822, 'Plentong, Johor Bahru', 'I''m at Dataran Steamboat (Johor Bahru, Johor) http://t.co/5yoanyhD'), (2087, 486, 'Johor Bahru, Johore', '"@LTAsg: Joint News Release by LTA &amp; SBST - North East Line Train Service Resumes Full Operation Following Morning Disruption "'), (2088, 715, 'Johore, Malaysia', 'Wipeout is about watching people suffer while doing the obstacles'), (2089, 12, 'Johore, Malaysia', '@IHEARTSUZY Miss A use to win. But Big Bang. Came.'), (2090, 823, 'Johor Bahru, Johore', 'Must try! (@ Chong Pang Market &amp; Food Centre w/ 3 others) [pic]: http://t.co/u45Fa2L9'), (2091, 824, 'Johor Bahru, Johore', 'Faint!! My mum does not even know how to spell my name.. A.L.I.C.I.A so hard to remember ma???'), (2092, 627, 'Johore, Malaysia', 'Did anything happen in SG while im away? Anyone?'), (2093, 3, 'Johor Bahru, Johore', '@AloyPang I dive with you, mentally xD *dives like dolphin*, *push u into water *, ok I know I''m siao, Hahah xD'), (2094, 676, 'Johore, Malaysia', 'I don''t care how you manage your buses dude, why is there a breakdown in the first place?'), (2095, 779, 'Johor Bahru, Johore', 'my other two djs-ism... Haha“@RaraHayTeRs: @Olliedes if you stay HOMEISM, den who spinism? LOL”'), (2096, 98, 'Johor Bahru, Johore', '@ficobutternuts jersey kind!!!!! Still prefer the all names tho but wtv jersey sudah'), (2097, 771, 'Johore, Malaysia', '@syakilla_xx yea . I am .'), (2098, 41, 'Plentong, Johor Bahru', '@writerBEKU uma membe aku kat tongkang kot'), (2099, 206, 'Singapore', '@yepimtalia *munch nomnomnom:3*'), (2100, 825, 'Johore, Malaysia', 'The winter had passed\nAnd the spring has come\nWe have withered\nAnd our hearts are bruised from longing'), (2101, 826, 'Johore, Malaysia', 'I''m at Far East Plaza (Singapore) w/ 15 others http://t.co/F7OjMdFB'), (2102, 93, 'Johore, Malaysia', 'Home alone'), (2103, 217, 'Johore, Malaysia', 'I''m at HarbourFront Centre (Singapore) w/ 6 others http://t.co/EQMAuKZ4'), (2104, 138, 'Johore, Malaysia', 'So sian. Sigh'), (2105, 827, 'Johore, Malaysia', '@shaqsha make me scared. Thought i did something wrong. Hahaha'), (2106, 828, 'Johor Bahru, Johore', 'I''m at AMK Hub (Singapore) w/ 12 others http://t.co/xOm5f2FN'), (2107, 829, 'Johore, Malaysia', 'Having dinner at CSC!!'), (2108, 411, 'Johor Bahru, Johore', 'I &lt;3 You.'), (2109, 498, 'Johor Bahru, Johore', 'FUCK YOU *** *** ** !!!'), (2110, 830, 'Johore, Malaysia', 'If only I could do a Vulcan Mind Meld. It would make some things so much easier...'), (2111, 513, 'Johor Bahru, Johore', '“@turqu0iseee: RTRT @Simcheeeky :I just hope someone will really mean what they say.”'), (2112, 292, 'Johor Bahru, Johore', '@yannc2021 cause I dont have a pretty face to be celebrity? :/ okay 我會炒蛋炒飯。'), (2113, 553, 'Johor Bahru, Johore', 'No wait. Mugler will be here though. Lol.'), (2114, 831, 'Johore, Malaysia', 'Breakfast.Lunch.Dinner jdi 1 dah... (@ Astons Specialties) http://t.co/SIeeaoDu'), (2115, 73, 'Singapore', 'okcan'), (2116, 808, 'Riau, Indonesia', '@adzhani1 Yah....Aku kalah cepat!!! :Liv Ά​ƙu duluan mention berarti Ά​ƙu ank keren ♡hϱϱ♡hϱϱ♡hϱϱ♡ @Alivia_19'), (2117, 832, 'Johor Bahru, Johore', 'I fucking shag now..feeling very down!!!i want go back to my self..I fucking Hates girl now!!!!'), (2118, 12, 'Johore, Malaysia', 'HUNGRY!'), (2119, 833, 'Johor Bahru, Johore', 'At Blk 491h Tampines St 45 — http://t.co/cDuxFTQ1'), (2120, 775, 'Johore, Malaysia', '@Dariuslua no bro.. train early.. not much people'), (2121, 117, 'Johore, Malaysia', '@MateenFirdaus tomorrow is your smalll dayyyy'), (2122, 12, 'Johore, Malaysia', 'Need to bath ltr.'), (2123, 627, 'Johore, Malaysia', 'Why do i feel like everything changed? Hahahah'), (2124, 834, 'Johore, Malaysia', 'With old primary school friends old reunion :D'), (2125, 811, 'Kota Tinggi, Johore', 'Heading home now like a nice weather to go for a jog anyone???'), (2126, 835, 'Johor Bahru, Johore', 'Yayyyz (@ Zhenghua Primary School) http://t.co/Iw8NrK0z'), (2127, 206, 'Singapore', '@yepimtalia sheesh xD'), (2128, 585, 'Johore, Malaysia', 'i wan to work and earn money'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (2129, 64, 'Johore, Malaysia', '“@merlovescandy: If you are cooler than me, that actually makes me hotter than you ((:”'), (2130, 154, 'Singapore', 'Contrary to popular belief,its not #LFC''s birthday,its June3...today is the day the ppl who formed LFC broke out of EFC http://t.co/9BPYqMUQ'), (2131, 836, 'Johore, Malaysia', 'Eeeee zzsm??? Poke!!! @CyanRhapsody @YunCaiKEN @WanHianKen @_Huiwen'), (2132, 837, 'Johor Bahru, Johore', 'I''m at Admiralty MRT Station (NS10) (Singapore, Singapore) http://t.co/bLlWRcwx'), (2133, 838, 'Singapore', 'how can he is younger than meeee!!????? _ _"'), (2134, 462, 'Johore, Malaysia', '@_purrplekitty Tml? Where? East coast? They going to close down on 18th ~ lol'), (2135, 782, 'Plentong, Johor Bahru', 'berdebarrrr seyyyy'), (2136, 839, 'Johore, Malaysia', 'I''m at Ernst &amp; Young LLP (Singapore, Singapore) http://t.co/eia7Dcu3'), (2137, 840, 'Johor Bahru, Johore', 'dabao ljs for the liquid empire people !! :D (@ bishan j8 w/ 2 others) http://t.co/3Y3D9Vkm'), (2138, 841, 'Johor Bahru, Johore', 'I''m at Southaven 2 Condominium (Singapore) http://t.co/ldOXaXBE'), (2139, 513, 'Johor Bahru, Johore', '“@turqu0iseee: RT @cryingsouls :Where did the old you go?”'), (2140, 676, 'Johore, Malaysia', '@d_lau3 why?'), (2141, 193, 'Johor Bahru, Johore', 'going back (@ Sengkang MRT/LRT Station (NE16/STC) w/ 5 others) http://t.co/N1Q0eoFq'), (2142, 842, 'Johore, Malaysia', 'If I die young, bury me\nIn satin~~'), (2143, 152, 'Johore, Malaysia', '@lynetteteo98 :)'), (2144, 843, 'Malaysia', 'Currently at the saloon ^_^V'), (2145, 117, 'Johore, Malaysia', '@Jages_SixtyNine HAHAHHA dafuggggg , why haha'), (2146, 498, 'Johor Bahru, Johore', 'Only know how to destroy friendship ! Somemore so mushy ! No wonder guys would dump you ! You are nothing but a shit !'), (2147, 844, 'Johore, Malaysia', 'I''m at Toa Payoh Central (Singapore) http://t.co/6nqBAAdz'), (2148, 845, 'Malaysia', 'I''m at 7-11 # 1586 คณะแพทย์ มอ. http://t.co/3vI9EyjL'), (2149, 523, 'Malaysia', 'แม่งเหี้ยกว่านี้มีอีกมั้ย ?'), (2150, 486, 'Johor Bahru, Johore', '@rafash_ash sblm aku marah die baik kau marah die dulu'), (2151, 846, 'Johore, Malaysia', 'I''m at Blk 546 Bedok North Street 3 http://t.co/kT4TROGC'), (2152, 847, 'Johore, Malaysia', 'I''m at Tiong Bahru MRT Station (EW17) (Singapore) http://t.co/8iGiEXCz'), (2153, 513, 'Johor Bahru, Johore', '“@turqu0iseee: RT @_thUnrequited :dykhmiamy?”'), (2154, 117, 'Johore, Malaysia', '@paperdrizzle SHOW ME SOME EXAMPLES PLEASE'), (2155, 848, 'Johore, Malaysia', 'Eating a chicken rice now. Swallow onlyyyy! (@ Tourism Management Insitute of Singapore (TMIS)) http://t.co/xm6I6RuW'), (2156, 771, 'Johore, Malaysia', 'Yes ah ! Hahahaha I manage a annoy one brat :P'), (2157, 643, 'Johor Bahru, Johore', 'Missing this shit. http://t.co/Ca2kTcSB'), (2158, 43, 'Johore, Malaysia', 'Twitcon SharolTravor Gemok wuu :O'), (2159, 849, 'Johore, Malaysia', 'Kuishin-bo @ KuiShin-Bo @ Suntec City Mall http://t.co/MPjY5fqG'), (2160, 844, 'Johore, Malaysia', 'I''m at Toa Payoh Central http://t.co/V0eqgK0g'), (2161, 850, 'Johor Bahru, Johore', 'Keep playing this song. Fatcat like a dream and sing along.'), (2162, 498, 'Johor Bahru, Johore', 'No one would want to be friends with you .'), (2163, 851, 'Johore, Malaysia', 'Never fail to piss me off fucking skunk. Seriously !'), (2164, 852, 'Johor Bahru, Johore', '@DCrissCrossxz Whus you jump I jump?'), (2165, 771, 'Johore, Malaysia', '@mdsaifullah yum yum &lt;3'), (2166, 853, 'Johore, Malaysia', 'I''m at Ku Dé Ta Restaurant (Singapore, Singapore) http://t.co/XGjbP3OM'), (2167, 72, 'Johor Bahru, Johore', '@ClarissaQQL swinging seas! LOL! Singing meh?'), (2168, 847, 'Johore, Malaysia', 'I''m at Tiong Bahru Plaza (Singapore, Singapore) w/ 6 others http://t.co/z6YNMQz5'), (2169, 854, 'Johor Bahru, Johore', '@BADGAL333 laopo wo ai ni lots'), (2170, 498, 'Johor Bahru, Johore', 'Don''t act act lah .'), (2171, 13, 'Singapore', '@herrowwernching none out of 5 have replied yet? :O'), (2172, 844, 'Johore, Malaysia', 'I''m at myawesomeawesomeplace http://t.co/v4DG8joh'), (2173, 855, 'Johore, Malaysia', 'Putain j''ai vu mes premieres mouettes a Singapour en deux ans !!!! #jaimekesmouettes'), (2174, 856, 'Kota Tinggi, Johore', '@chongtingting foc!!! Faints. Haha'), (2175, 857, 'Johor Bahru, Johore', 'At the chalet starting a bbq with @RidzBiscuits @JonniBeans @Chiangfishz'), (2176, 64, 'Johore, Malaysia', 'arch my eyes hurt I''m supposed to be doing homework\nnow'), (2177, 845, 'Malaysia', 'I''m at อ่างปลาดุก มอ. (Kho Hong, Songkhla) http://t.co/VSlf0qCA'), (2178, 113, 'Johor Bahru, Johore', '@YilingGumshoe got chio bu.guys ang mo quite shuai.'), (2179, 858, 'Malaysia', 'balik mkn tidoq (@ Halliburton Staff House) http://t.co/flMxZLm8'), (2180, 859, 'Johor Bahru, Johore', '@CELINLEONG :))'), (2181, 577, 'Johore, Malaysia', 'This is the first time I realised my patience has its limits, especially after been tired, working (cont) http://t.co/STALAtGe'), (2182, 523, 'Malaysia', '@orioenjoy โหย รีบเครียเลยพี่'), (2183, 72, 'Johor Bahru, Johore', '@awesomelady98 your brain is lying to u too! D:'), (2184, 43, 'Johore, Malaysia', 'Eh ttbe? Haha RT" @ApekSteady kalau biyyshort pakai tdung. sumpah comel whaha'), (2185, 685, 'Singapore', '@engrfabian ewan ko sayo pati kasi batibot pinapakialamn mo ;))'), (2186, 771, 'Johore, Malaysia', 'Like no enough . I buy one more pancake can ? :('), (2187, 593, 'Johor Bahru, Johore', '@Jae_Jerome if it''s the teaser pic then I want to get key one. I like key one most. Haha'), (2188, 860, 'Johor Bahru, Johore', 'At boyfriend and his friend''s house right now. 2 guys are gonna make dinner for me later. @.@ dread for the outcome.'), (2189, 118, 'Johore, Malaysia', 'Malacca in sat morning! Woohoo'), (2190, 861, 'Johore, Malaysia', 'Elevator @ Singapore Post Centre http://t.co/9MBl5IZm'), (2191, 139, 'Singapore', '@LAMSHITKAYYYY_ Study laaaaaaaaaaaaaaaaaaaaaaaaaa'), (2192, 862, 'Johore, Malaysia', 'I''m at Sim Lim Square (Singapore) w/ 3 others http://t.co/vuwlisfO'), (2193, 513, 'Johor Bahru, Johore', 'Aiyo ,'), (2194, 779, 'Johor Bahru, Johore', 'yup yup... U comin dwn tonight?“@RaraHayTeRs: @Olliedes Timo-J &amp; Gemstarr? O.o”'), (2195, 854, 'Johor Bahru, Johore', 'Working n my laopo is pei-ing mi thx muack'), (2196, 771, 'Johore, Malaysia', 'Wait ! I find better filling food lah :)'), (2197, 335, 'Riau, Indonesia', '@jess_iskandar oce'), (2198, 72, 'Johor Bahru, Johore', '@awesomelady98 nothing LOL. Yeah I still small kid *-*'), (2199, 863, 'Plentong, Johor Bahru', 'I''m at Pasar Tani Datin Halimah (Johor Bahru, Johor) http://t.co/tyxZjAkH'), (2200, 476, 'Johore, Malaysia', 'Nak pegi date ngan bo iqram katsini @ Esplanade - Theatres on the Bay http://t.co/ao3Zpi3W'), (2201, 81, 'Johore, Malaysia', '@ohmysofiaa reach ECP APREADY AH?'), (2202, 864, 'Johore, Malaysia', 'Math, such a pain. @TiakLeng http://t.co/Xz55rObk'), (2203, 865, 'Johor Bahru, Johore', 'Aku kat mana sekarang?'), (2204, 866, 'Tebrau, Johor Bahru', 'Haix...'), (2205, 411, 'Johor Bahru, Johore', 'Don''t think you are that stupid. You are pretty.'), (2206, 867, 'Johor Bahru, Johore', 'I''m at Northpoint Shopping Centre w/ @swiithearts http://t.co/Ntw7LzAX'), (2207, 868, 'Johor Bahru, Johore', 'Why did it rain yesterday :('), (2208, 869, 'Johore, Malaysia', 'Bau jempol dalam mrt --"'), (2209, 156, 'Johore, Malaysia', '@limyuexiu WOW, FANTASTIC BABY'), (2210, 12, 'Johore, Malaysia', 'Big Bang not tired singing 4 songs at one time arh? Poor thing. But good job!'), (2211, 139, 'Singapore', '@Zophia98 Okay can. Boss ah boss... So like to make joke.'), (2212, 870, 'Johor Bahru, Johore', 'Eating alone like a loner ._.'), (2213, 577, 'Johore, Malaysia', 'RT @BishopBronner: True success involves failure, brokenness &amp; humility! Don''t count urself out (cont) http://t.co/kAlTDj9m'), (2214, 871, 'Johor Bahru, Johore', 'I''m at Inside Mrt http://t.co/n46tdi2R'), (2215, 872, 'Singapore', '@STcom FINALLY!'), (2216, 715, 'Johore, Malaysia', '@SHCENA Haha yeah!!'), (2217, 873, 'Johore, Malaysia', 'Y U NO BUY STUFF'), (2218, 842, 'Johore, Malaysia', 'Funny when you''re dead, people start listening...'), (2219, 854, 'Johor Bahru, Johore', '@BADGAL333 taeny♥'), (2220, 153, 'Riau, Indonesia', 'akhir nya nyampe jugak,.'), (2221, 874, 'Johor Bahru, Johore', 'Hohohomed nk zzzzzleeeep'), (2222, 875, 'Johor Bahru, Johore', '@fitriaini @nurainikhamsani @salwazie @farahelyra bdk manje nie nk selalu gi jegok.. Nanti depress lah ape... Lol!'), (2223, 876, 'Johore, Malaysia', 'I''m at H&amp;M (Singapore) w/ 7 others http://t.co/QYdmih8C'), (2224, 877, 'Johor Bahru, Johore', 'the sweet moment when he hugs you as tight as he can when you wanna leave~ :'') #sweet'), (2225, 878, 'Plentong, Johor Bahru', 'Short photography session with babies (@ Cruise Jetty Danga Bay) [pic]: http://t.co/3Jo9OlvC'), (2226, 536, 'Johore, Malaysia', '@ChangHong_Hoo Hahahaha i know liao , i everyday post one post on fb right ? Now ur turn to start it , but on twitter kay ? :D'), (2227, 147, 'Johore, Malaysia', 'Argh!!!! Hurt my backbone badly...'), (2228, 879, 'Johor Bahru, Johore', 'Linited edition holbrook coming in soon......anybody interested??? @ Yanies Crip http://t.co/3xmpOFXh'), (2229, 880, 'Plentong, Johor Bahru', 'I''m at Projek tapis exxonmobil http://t.co/8ofJlc1m'), (2230, 829, 'Johore, Malaysia', '@lauraxsq haha np'), (2231, 700, 'Johor Bahru, Johore', '@sfqdnl Hahahaha, tu ah tak macho seh :p'), (2232, 72, 'Johor Bahru, Johore', '@TheEntertainerX HUIxin talented siol~ u this holiday no take any grade exam meh?'), (2233, 61, 'Johor Bahru, Johore', '@PeiYi2706 poor thing need think so long before replying me'), (2234, 782, 'Plentong, Johor Bahru', 'berdebarrrr seyyy'), (2235, 881, 'Johore, Malaysia', 'I''m at Nanyang Academy Of Fine Arts Campus 3 http://t.co/bxruDsFf'), (2236, 557, 'Plentong, Johor Bahru', '@YDiyanaa kena simpan'), (2237, 882, 'Johore, Malaysia', '“@k0pio: Again, I maintain: MRT break down, bus break down la, how come ERP never break down?” @HabeebHashim'), (2238, 691, 'Johor Bahru, Johore', '@ValerieLuvszxc Thn you say cos me and @stitchyrach_ neh say cn go so you neh ask? O.o'), (2239, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. haha. Too strong for Miss A. But not SJ.'), (2240, 733, 'Johore, Malaysia', 'Dulan, JC student dua sai ar? 还不是一个poly student 在教你们。So guai lan for fark =_='), (2241, 93, 'Johore, Malaysia', '@chaaaaos You at?'), (2242, 883, 'Johore, Malaysia', 'I''m at Shaw HeadQuarters (Singapore, Orchard) http://t.co/ijrY8NyX'), (2243, 153, 'Riau, Indonesia', '@Deviranthy intro'), (2244, 557, 'Plentong, Johor Bahru', '@YDiyanaa bila nak bank in?'), (2245, 870, 'Kota Tinggi, Johore', 'Eating alone like a loner ._.'), (2246, 884, 'Johor Bahru, Johore', 'I just ousted @deborahmonstaa as the mayor of Blk 641 Yishun St 61 on @foursquare! http://t.co/Pzo3vk2d'), (2247, 884, 'Johor Bahru, Johore', 'Eating with team~ (@ Blk 641 Yishun St 61) http://t.co/IAMwUWBP'), (2248, 771, 'Johore, Malaysia', 'Oh my fucking god . I''m not jealous . Are you angry ? Okay sir . Please go away .'), (2249, 72, 'Johor Bahru, Johore', '@awesomelady98 ._. Juniors. LOL. They are damn irritating'), (2250, 885, 'Johor Bahru, Johore', 'I''m at Bus Stop 76149 (Opp Tampines Stn/Int) (Tampines, Singapore) http://t.co/Jt3cfXeJ'), (2251, 886, 'Johore, Malaysia', 'Pasta maniaaa @Soowey'), (2252, 887, 'Johore, Malaysia', '@Jasmintan have fun! Go and eat the pork collar!'), (2253, 888, 'Johor Bahru, Johore', 'So many no. 21 ~~ the table I''m sitting is also 2110!! My birthday!! :D eating porridge since ate alot just now. http://t.co/k3e0NCNp'), (2254, 768, 'Johore, Malaysia', 'Naman #lacoste wag ka ba mag sale! Enough na ang 2 pairs of shu-es! http://t.co/8mlxknlK'), (2255, 41, 'Plentong, Johor Bahru', '#KenanganTadika ada kawan takde gigi, tapi bila jumpe sekarang da penuh gigi dia xD'), (2256, 752, 'Johor Bahru, Johore', 'ALL of Singapore is on this Train.'), (2257, 486, 'Johor Bahru, Johore', '@rafash_ash i dont get the joke .'), (2258, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh yah im MR_6661 aka BaziLuiSuarez'), (2259, 790, 'Johor Bahru, Johore', '@juvenile94 HAHAHAHAAA YESSS!! :D good mah. :)'), (2260, 153, 'Riau, Indonesia', 'mandi dulu lah.'), (2261, 889, 'Johore, Malaysia', 'It''s times like these I freakin love my job! Setup waiting for sunset. http://t.co/VWF23JEs'), (2262, 890, 'Malaysia', '@Pim_Parinda RTเก่งจิงๆ = = 555.'), (2263, 891, 'Johore, Malaysia', 'I''m at Royal Merukh S.E.A. Building (Singapore) http://t.co/gp4dXeew'), (2264, 808, 'Riau, Indonesia', '@adzhani1 Y lmyan!!!!\nAk lgi mlesszzz aja!!!!\nxixixixi'), (2265, 153, 'Riau, Indonesia', 'EXIT'), (2266, 892, 'Johore, Malaysia', 'I''m at Blk 842 Sims Ave http://t.co/008bEFu1'), (2267, 206, 'Singapore', 'hugggs. &lt;3'), (2268, 733, 'Johore, Malaysia', '@YoursTrulyLyne :P thought can spam call :x'), (2269, 12, 'Johore, Malaysia', '@2PMRules Broadcast'), (2270, 893, 'Johor Bahru, Johore', 'My three wonderful sister :D @DurgaHellanne http://t.co/MlXkjbkz'), (2271, 879, 'Johor Bahru, Johore', '$225.....anybody interested??limited edition holbrook @ Yanies Crip http://t.co/uIZnJJrI'), (2272, 643, 'Johor Bahru, Johore', 'Huge catfish bought it for 20 cents. http://t.co/OG4EGELH'), (2273, 158, 'Malaysia', 'Tiap hari begambar hari hari begambar. Boring urang liat ur face ah '), (2274, 515, 'Johor Bahru, Johore', 'Ape ja yg uda terjadi? RT @nugiienugraha: @ddiittaayeye belum terlalu parah, lumayan lah. http://t.co/eJOYgWxt'), (2275, 894, 'Plentong, Johor Bahru', 'I''m at Nasi Lemak Anggerik http://t.co/DPZ5tve5'), (2276, 870, 'Johor Bahru, Johore', 'Thinking what you doing now ......'), (2277, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa Lol -___-'), (2278, 475, 'Johore, Malaysia', 'The fucking bangla rite infront of me digging gold in his fucking nose!!'), (2279, 523, 'Malaysia', '@orioenjoy เครียกันให้เข้าใจเดี๊ยวก็ดีกัน:)'), (2280, 895, 'Johore, Malaysia', 'I''m at Depot Heights Shopping Centre (Bukit Merah, Singapore) http://t.co/Wawzp8KY'), (2281, 41, 'Plentong, Johor Bahru', '@writerBEKU babeng luuu xD'), (2282, 771, 'Johore, Malaysia', 'I''d sniff your undies cause I miss you so much .'), (2283, 153, 'Riau, Indonesia', '````EXIT````'), (2284, 117, 'Johore, Malaysia', 'omgggggg so annoyingggggg'), (2285, 585, 'Johore, Malaysia', '@Natasha_Kinskey whutttttt. im lazy to reach for my remote control'), (2286, 890, 'Malaysia', '@Kwang_Supreeya เย้ยยยยยยยย -0-'), (2287, 411, 'Johor Bahru, Johore', 'I just love the way you are. :D'), (2288, 93, 'Johore, Malaysia', 'Sorry I just don''t like you.'), (2289, 670, 'Pulai, Johor Bahru', 'I''m at Homeyyy (Johor Bahru, Johor) http://t.co/903fu0Hb'), (2290, 896, 'Johor Bahru, Johore', 'Hair! Y U SO WAVY? I hate my hair.'), (2291, 3, 'Johor Bahru, Johore', 'F u la. Not as childish as you right? Learn from the foreign girl.'), (2292, 12, 'Johore, Malaysia', '@IHEARTSUZY SJ is way to strong for many bands. :('), (2293, 771, 'Johore, Malaysia', 'That''s disgusting but yea , I find it cute .'), (2294, 726, 'Johore, Malaysia', '@Yeeninglovesred i at city link starbucks...haha....'), (2295, 897, 'Johor Bahru, Johore', '@Blehtan WHAT! You''re a Chinese so you should understand! HAHAHAHA'), (2296, 18, 'Johor Bahru, Johore', 'I wasted my $3,seriously.'), (2297, 898, 'Johore, Malaysia', 'I''m at The Cathay Cineplex (Singapore) w/ 5 others http://t.co/bAGuTp9R'), (2298, 857, 'Johor Bahru, Johore', 'At the chalet starting a bbq with @RidzBiscuits @Chiangfishz @JonniBeans @EdmundIanWee'), (2299, 524, 'Johore, Malaysia', 'I''m at Chinatown MRT Station (NE4/DT19) (Singapore, Singapore) http://t.co/aRqSQQwe'), (2300, 513, 'Johor Bahru, Johore', '“@cryingsouls: Love isn''t complicated, people are.”'), (2301, 775, 'Johore, Malaysia', '@Dariuslua yeah buddy'), (2302, 899, 'Johor Bahru, Johore', 'I''m at An-Nahdhah Mosque (Singapore) http://t.co/mZR2Tfb2'), (2303, 900, 'Johore, Malaysia', 'I''m at IMM Building (Singapore, Singapore) w/ 3 others http://t.co/SGrk3fRU'), (2304, 759, 'Singapore', '@jamzxz No! You mad girl? haha But are you? hahaha'), (2305, 901, 'Johore, Malaysia', 'I''m at Lido Shaw House Theatre 7 (Singapore) http://t.co/TcjHfLrb'), (2306, 902, 'Johore, Malaysia', 'I''m at A.venue Bistro (Singapore) http://t.co/HrWGfMft'), (2307, 219, 'Johor Bahru, Johore', '@heiditan yeah ?!!'), (2308, 12, 'Johore, Malaysia', 'Big Bang need to rest well.'), (2309, 903, 'Johor Bahru, Johore', '@clementhiang yup! :('), (2310, 158, 'Malaysia', 'Lets pray!!!!'), (2311, 904, 'Johor Bahru, Johore', '#foodphoto of #singapore - "Prata Kosong Tiga Bawang" (#onion #pancake) @ Mr. Teh Tarik Ang Mo Kio (24hrs) http://t.co/jIU5EhG2'), (2312, 413, 'Johore, Malaysia', 'Really fucking sick and tired of this'), (2313, 905, 'Kota Tinggi, Johore', 'Cycled 1 whole round around Bedok Reservior Park.'), (2314, 906, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 25 others http://t.co/VAB1USGT'), (2315, 907, 'Johore, Malaysia', 'I''m at Parkway Parade (Singapore) w/ 5 others http://t.co/PAF1Q71j'), (2316, 908, 'Johore, Malaysia', 'Yayy.. Dearest is back in singapore... Yahoo!! Looking forward for this weekends :)'), (2317, 909, 'Johore, Malaysia', '@TheTeddyKiller cannot lehhhhhhh, i need to go sch and have driving lesson'), (2318, 287, 'Johore, Malaysia', 'Mmmmdap heheh ^^ (@ The Manhattan Fish Market) http://t.co/KGSduzhp'), (2319, 910, 'Johor Bahru, Johore', 'I''m at Shelter Court @ Bukit Batok http://t.co/IxQlhY6Y'), (2320, 593, 'Johor Bahru, Johore', '@AngelusChan oohh. You better don''t drink alrdy I tell you!'), (2321, 911, 'Johore, Malaysia', '@SMILING_leeErr Semo shi le'), (2322, 248, 'Johore, Malaysia', '@drewboy_ang Says a lot about the current state of Chinese politics.'), (2323, 912, 'Johor Bahru, Johore', 'Damn Tired.'), (2324, 219, 'Johor Bahru, Johore', '@KJiaweii @nicholaspwn don''t know still thinking ~'), (2325, 708, 'Johor Bahru, Johore', 'Choking x.x'), (2326, 897, 'Johor Bahru, Johore', '“@Retwittings: Retweet if you will turn very quiet when you''re upset.”'), (2327, 13, 'Singapore', '@herrowwernching ouch, refusing an all-rounded 44pter... well, hope to see you in the UK in the end, if it''s what you want :)'), (2328, 342, 'Johore, Malaysia', 'I hate liars; fuck love I''m tired of trying. &lt;3'), (2329, 913, 'Johore, Malaysia', 'I''m at Rex Restaurant http://t.co/vxgyo31m'), (2330, 399, 'Johor Bahru, Johore', '@untrustablekid HAHAHAHAHAHAHAHHA'), (2331, 914, 'Plentong, Johor Bahru', 'belanja sat. hehe (@ Kip Mart, Masai) http://t.co/0hgi6Qvb'), (2332, 147, 'Johore, Malaysia', 'Should i do what i am suppose to do? HMMM..'), (2333, 915, 'Johore, Malaysia', '@ ODT now with Mehn ^^'), (2334, 153, 'Riau, Indonesia', 'ikut kebandahara.'), (2335, 916, 'Johore, Malaysia', 'the "unique" adventurism in me has again outdo my worries.. and I''m only spending the next 30 mins to revise for my test in a while..'), (2336, 19, 'Johor Bahru, Johore', '“@FunnyEvil: Yawning is your body''s way of saying 20% of battery remaining.”'), (2337, 917, 'Johor Bahru, Johore', 'After watching the latest episodes of sufbb and dream high II, I''ve learnt that flashback scenes are the best to wreck tears up'), (2338, 147, 'Johore, Malaysia', 'memorizing lagu mirror..'), (2339, 918, 'Johore, Malaysia', 'Cocktail (@ The Fullerton Bay Hotel Singapore) http://t.co/hX6LdcTn'), (2340, 919, 'Johore, Malaysia', 'I''m at Singapore Botanic Gardens (Singapore, Singapore) w/ 2 others http://t.co/iBqZsfjv'), (2341, 12, 'Johore, Malaysia', '9,000 tweets ^o^ Oh yeah!'), (2342, 779, 'Johor Bahru, Johore', 'yup I guess so!“@RaraHayTeRs: @Olliedes I dun know lei.. tot of going.. Its free entry for ladies right? or you got no idea? LOL”'), (2343, 715, 'Johore, Malaysia', '@SHCENA i gg today today come back :P'), (2344, 411, 'Johor Bahru, Johore', 'Just now Freak up sia. Got ppl scared me.'), (2345, 41, 'Plentong, Johor Bahru', '@writerBEKU haha, kau nak 150 ni nak beli jaket ke? xD'), (2346, 153, 'Riau, Indonesia', 'otw SSQ'), (2347, 117, 'Johore, Malaysia', '@MateenFirdaus MUAHAHHAHA see''ya tomorrow~'), (2348, 854, 'Johor Bahru, Johore', '@BADGAL333 hehe muacks♥'), (2349, 920, 'Johore, Malaysia', '@WirShaLee cuteee profile pic!'), (2350, 921, 'Johore, Malaysia', 'I''m at Botak Jones (Singapore, Singapore) http://t.co/Is4HmiER'), (2351, 922, 'Johore, Malaysia', 'I''m at ION Orchard w/ @h4ppypills http://t.co/uy4fTthm'), (2352, 923, 'Johor Bahru, Johore', '@etrangle it''s your fault! Now I want Australia''s fish n chips! Lol! It was a gd read! I really miss GC and Brisbane.'), (2353, 924, 'Johore, Malaysia', 'One of those longest day ever! Last day approved. Tick tock tick tock...'), (2354, 782, 'Plentong, Johor Bahru', 'aty aq sakittt,,tpix de satu yg tauuu :"""('), (2355, 925, 'Johore, Malaysia', 'Ate pasta mania. Yum. Gonna buy teens magazine! :) (@ United Square w/ 2 others) http://t.co/PiFoLNGy'), (2356, 411, 'Johor Bahru, Johore', 'WhyYouDamnCute?'), (2357, 485, 'Johore, Malaysia', 'I see U see Me...\nSo Crowded!!! With (@ City Hall MRT Interchange (EW13/NS25) w/ 8 others) http://t.co/sWkzlv78'), (2358, 41, 'Plentong, Johor Bahru', '@faezahzahid haha, fakta ni xD'), (2359, 658, 'Pulai, Johor Bahru', 'I''m at Jalan PI 8/5 [pic]: http://t.co/agQPTBA1'), (2360, 486, 'Johor Bahru, Johore', '@rafash_ash sorry takraw tonight .'), (2361, 926, 'Johor Bahru, Johore', 'I''m at KFC (Singapore) http://t.co/YCqv5qK4'), (2362, 927, 'Johore, Malaysia', 'I just ousted @telcolawyer as the mayor of Olympus Singapore Pte Ltd on @foursquare! http://t.co/6rewZYTI'), (2363, 296, 'Johor Bahru, Johore', 'またここに来るからとpre-order出来るか尋ねたら、断わられた New iPad http://t.co/ZzDLl8Cq'), (2364, 740, 'Johore, Malaysia', '@ulfaDHAH33 lol. tak the masa k. btw, kau esok bw app ?'), (2365, 928, 'Tebrau, Johor Bahru', '@youheartfarisha , haha yeahh. I actually can do at home ^^'), (2366, 68, 'Riau, Indonesia', 'mention RT @Belbielowday: mention dong yang kece'), (2367, 929, 'Riau, Indonesia', '@MrGunny1963 @dean36ashton10 be a good battle round there #oneofmyfavouritecourses'), (2368, 254, 'Johore, Malaysia', 'I''m at Secret Hideout ! http://t.co/cfaWCPXP'), (2369, 558, 'Johore, Malaysia', 'I''m at KINGDOM INVASION (School of Healing and Impartation) Singapore Expo Hall 1 http://t.co/CyjmpLZp'), (2370, 753, 'Johor Bahru, Johore', 'Staff lounge!!!:)'), (2371, 454, 'Johor Bahru, Johore', 'Happiness keeps you sweet'), (2372, 800, 'Johore, Malaysia', 'Going for ilight later on! (:'), (2373, 930, 'Johore, Malaysia', 'kaya nababato'), (2374, 931, 'Johore, Malaysia', 'Food, more food (@ World Food Fair @ Suntec Convention Centre) http://t.co/wOmUQhCj'), (2375, 932, 'Johor Bahru, Johore', '@FaasstLane Upload those pics leyy?'), (2376, 302, 'Singapore', '@illicitflesh THIS IS TOO COOL. omg that lucky adam levine.'), (2377, 61, 'Johor Bahru, Johore', '@PeiYi2706 before i say anything else i just wanna tell you your tweets are disgusting with the smilies. You think very cute?'), (2378, 933, 'Johor Bahru, Johore', 'I''m at Carissa''s Paradise! http://t.co/sRHATXWl'), (2379, 117, 'Johore, Malaysia', '@paperdrizzle HAHAHHAHAH DAFUGGGGGGGG~ which will be like years from now HHAHAH'), (2380, 934, 'Johore, Malaysia', 'TOOOOOOOOT !!!! HOW COME KBS WORLD ON STARHUB CABLE TV BECOME EXTRA PAID CHANNEL !!!!?????'), (2381, 593, 'Johor Bahru, Johore', '@Jae_Jerome I like key and onew one hahaha'), (2382, 515, 'Johor Bahru, Johore', 'Tak enak, bule smw :D eh srius aku ni. Tak parah k? RT @muftimuftia: kok tak enak? haha tenanglah, aku gitu lo ;p RT: @ddiittaayeye: Ee tak'), (2383, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa yes? May i help you?'), (2384, 68, 'Riau, Indonesia', 'haha nonton shaun the seep RT @mumutcimamay: Hhehe nontn bolaa niih , kamuu? RT @IlfaAzlyani: haha cama;) nonton apa beb'), (2385, 935, 'Johor Bahru, Johore', 'Stress....'), (2386, 10, 'Singapore', 'fml'), (2387, 859, 'Johor Bahru, Johore', 'Tweet later. :)'), (2388, 936, 'Johor Bahru, Johore', 'I am just an ordinary man, not superman. Damn.'), (2389, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh im from Heaven'), (2390, 411, 'Johor Bahru, Johore', 'I often waked up in the night thinking abt you.'), (2391, 3, 'Johor Bahru, Johore', 'Attention Seeker. Yucks=='), (2392, 937, 'Johore, Malaysia', 'I''m at Ajisen Ramen (Singapore, Singapore) http://t.co/Z1xJ720O'), (2393, 254, 'Johore, Malaysia', 'DONT DISTURB ME ! (@ Dream Machine) http://t.co/ZQVB8gId'), (2394, 68, 'Riau, Indonesia', 'ahaha nonton cartoon kakcantik RT @tessaaMRD: berita muut wka, kamu? RT @IlfaAzlyani: haha sama kakakcan;)'), (2395, 938, 'Johore, Malaysia', '@Kesterkjw got scold you? LOL'), (2396, 643, 'Johor Bahru, Johore', '@Blue_blu_sky ba jiu pa stamp.'), (2397, 515, 'Johor Bahru, Johore', 'Wekekek :3 RT @muftimuftia: astagaa :O RT: @ddiittaayeye: Singgah lok beli kue :D RT @muftimuftia: ha? kok terdampar disana? RT: @ddiittaaye'), (2398, 228, 'Johor Bahru, Johore', '@SyafiiieeQ Ohhh'), (2399, 919, 'Johore, Malaysia', 'Just posted a photo @ Singapore Botanic Gardens http://t.co/OhMt7eqP'), (2400, 887, 'Johore, Malaysia', '@Jasmintan I can give you the map if you guys are interested.'), (2401, 911, 'Johore, Malaysia', 'That''s annoying.'), (2402, 939, 'Johor Bahru, Johore', 'Sudden urge to go mega shopping in NTUC lol. Shall do that later :B'), (2403, 412, 'Johor Bahru, Johore', '@CalebCarrot you in camp?'), (2404, 68, 'Riau, Indonesia', 'kenalan RT @triskamendlev: intro apaan ?RT @IlfaAzlyani: hehe,udh intro belum? RT @triskamendlev: hai juga\\(´▽`)'), (2405, 850, 'Johor Bahru, Johore', '@FTIslandFacts this means more ppl are love ftisland now!! Woooo'), (2406, 917, 'Kota Tinggi, Johore', '@gracieeelau ah....... cause i thought it is then i keep staring at their photo and couldn''t find him'), (2407, 680, 'Johore, Malaysia', 'I''m at The Centrepoint (Singapore) w/ 5 others http://t.co/E2jzO3bd'), (2408, 940, 'Johore, Malaysia', 'I''m at Toa Payoh Swimming Complex (Toa Payoh, Singapore) http://t.co/hkL6MKKs'), (2409, 722, 'Johor Bahru, Johore', '#np Ombak Rindu.. Again and again..'), (2410, 72, 'Johor Bahru, Johore', '@TheEntertainerX u think u pass? ._. SOME people. My friend Kisiao one. Even more zai. 2 years go grade 8. LOL.'), (2411, 941, 'Johore, Malaysia', 'At Bugis &lt;3'), (2412, 771, 'Johore, Malaysia', 'Singapore so many accident eh ! Scary :('), (2413, 43, 'Johore, Malaysia', '@ApekSteady haha yelayelaa'), (2414, 942, 'Johore, Malaysia', 'I''m at The Grand Theater (Singapore, Singapore) http://t.co/iMC7Ek5R'), (2415, 882, 'Johore, Malaysia', '@Mr_Hakeem let it flow in bro. My team can work on it. Formed new .NET developer team in India too.'), (2416, 715, 'Johore, Malaysia', '@SHCENA once reach then go :)'), (2417, 515, 'Johor Bahru, Johore', 'Woi serius -,- RT @muftimuftia: yg ud terjadi adalah...jengjengjeng RT: @ddiittaayeye: Ape ja yg uda terjadi? RT @nugiienugraha: @ddiittaaye'), (2418, 480, 'Johor Bahru, Johore', '@CherieCjl dk how &gt;&lt;'), (2419, 41, 'Plentong, Johor Bahru', '@writerBEKU hahaha, mengada la kau. nanti bole pinjam ni xD'), (2420, 943, 'Johore, Malaysia', 'Second last lesson'), (2421, 62, 'Johor Bahru, Johore', 'Yelah, thankiew, happy?:) RT@tweetlipxz: @ForeverChronic Where got time nak angkat.... eh abeh bukan nak cakap thank chu ke ape tau hais”'), (2422, 93, 'Johore, Malaysia', '@chaaaaos ok give me 5min'), (2423, 486, 'Johor Bahru, Johore', 'Youve got two choices to do tonight . Sex or a Date . Which one would you choose ? Kalau aku mestilah sex suar .'), (2424, 944, 'Singapore', 'i really pity people who use the standard ipod headphones, you''re missing out on an entire world of superior sound quality #headphonesnob'), (2425, 267, 'Johore, Malaysia', 'Lack eating inspiration (can''t be arsed)'), (2426, 505, 'Johor Bahru, Johore', '@FAMJIEXIN NOW! I MISS YOU NADDDDDDD. *SUMPAH.'), (2427, 945, 'Pulai, Johor Bahru', 'boringlahh ptg2 gni!!'), (2428, 924, 'Johore, Malaysia', 'Kumusta naman mga sipsip?'), (2429, 324, 'Johor Bahru, Johore', '@suriyaniee take a video ! Post on fb ^^'), (2430, 946, 'Johor Bahru, Johore', '@MuhdRaffli @isteexoxo @owlkqayumi @shaikshameer3 @karxsh_ nvm. Tmr then study'), (2431, 37, 'Kota Tinggi, Johore', '@hazmicurtin_ Off to Bishan Skatepark ! In the bus alrd . You at there ah ?'), (2432, 411, 'Johor Bahru, Johore', 'Maybe i shld just take the first step instead of waiting bah.'), (2433, 302, 'Singapore', '@illicitflesh they are all so good looking omg'), (2434, 117, 'Johore, Malaysia', 'HAHHAH with my teacher''s cameraaaa !! RT @Jages_SixtyNine : "@AllyXanderz you can take such nice pictures of yourself! Haha!"'), (2435, 68, 'Riau, Indonesia', 'ga bosan ngeliat ava sendiri aaaaa :$'), (2436, 947, 'Singapore', 'I dunno if it''s because I''m not in my best condition or if the topic was that minf-cking but I have a splitting headache now )B('), (2437, 43, 'Johore, Malaysia', '@SharolTravor @IzyanYayan Tough ke yayan? Tak kan? Hhaa'), (2438, 897, 'Johor Bahru, Johore', '@Blehtan HAHAHA. really? Then is it Korean or Chinese?'), (2439, 480, 'Johor Bahru, Johore', '@CherieCjl it''s not working !?! :0'), (2440, 948, 'Johore, Malaysia', 'I''m at Bugis MRT Interchange (EW12/DT14) (Singapore, Singapore) w/ 6 others http://t.co/Voijf5ND'), (2441, 475, 'Johore, Malaysia', 'To all hypocrites!! If you have nothing impt to say.. Dun fucking call to show ur fucking Concern.. it''s so damn #FAKE'), (2442, 713, 'Johore, Malaysia', 'I''m at Queenstown MRT Station (EW19) (Singapore, Singapore) w/ 4 others http://t.co/S2oMzykj'), (2443, 949, 'Johor Bahru, Johore', 'I am off for today @ SMRT AMK Bus Depot http://t.co/XI0YJopT'), (2444, 492, 'Johor Bahru, Johore', 'I''m at LINDA''s wonderful toilet http://t.co/Yrd3UC1A'), (2445, 715, 'Johore, Malaysia', '@SHCENA Hahas :)'), (2446, 219, 'Johor Bahru, Johore', '@heiditan haha ok ok doctor (:'), (2447, 815, 'Johore, Malaysia', 'I''m at King''s Ice Cream Cart http://t.co/OFKAmka3'), (2448, 486, 'Johor Bahru, Johore', '@rafash_ash trn ahk'), (2449, 147, 'Johore, Malaysia', '@macamretard nope.. She own by someone already..'), (2450, 324, 'Johor Bahru, Johore', 'I''m so scared :/'), (2451, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh im finr thank you:)dun disturb me,go disturb Shawn,Oreofighter'), (2452, 917, 'Kota Tinggi, Johore', 'Dinner w parents~ (@ Mac @ Pioneer Mall) http://t.co/23tzsM5I'), (2453, 480, 'Johor Bahru, Johore', '@helloimamelias kk ;DD'), (2454, 68, 'Riau, Indonesia', '#B1A4ISBACK'), (2455, 72, 'Johor Bahru, Johore', '@sheneedstrength magi mee HAHA! Still not easy whut, u boil too much milk den taste very milky and weird. Definitely harder than buying food'), (2456, 950, 'Johore, Malaysia', '@_minmin still haven''t know yet leh. LOL!'), (2457, 951, 'Johore, Malaysia', '@Spasticwee hahaha'), (2458, 68, 'Riau, Indonesia', '#B1A4ISBACK [Like it? http://t.co/AP3dJq7u ]'), (2459, 176, 'Johor Bahru, Johore', 'We brother *fist bumps* @joshuamui'), (2460, 952, 'Johore, Malaysia', 'I''m at Leisure Park Kallang (Singapore) w/ 6 others http://t.co/HDewrtAg'), (2461, 643, 'Johor Bahru, Johore', 'Dont underestimate the things that i would do.'), (2462, 953, 'Pulai, Johor Bahru', 'Just one mistake , just one regret http://t.co/7JnFwTIh'), (2463, 954, 'Johor Bahru, Johore', 'Fml. always not a happy ending.'), (2464, 782, 'Plentong, Johor Bahru', 'lollllll,,,saya x sombong tauuu'), (2465, 68, 'Riau, Indonesia', 'ava with yuyun'), (2466, 340, 'Johore, Malaysia', 'What staring staring uh ?\n#memories'), (2467, 911, 'Johore, Malaysia', '@XueNingGoh tomorrow got plans?'), (2468, 411, 'Johor Bahru, Johore', 'Why the first step so difficult to take?'), (2469, 72, 'Johor Bahru, Johore', '@ClarissaQQL *-* seal lullaby is awesome!'), (2470, 955, 'Johor Bahru, Johore', '@Karen_DaviLa bakit pinaalis ni Sen. Roco yong private prosecutor?'), (2471, 12, 'Johore, Malaysia', '@DiniRoszi So cute! &lt;3'), (2472, 956, 'Johor Bahru, Johore', 'They put my ugliest photo ever on my warrant card ._.'), (2473, 957, 'Pulai, Johor Bahru', 'I just ousted @kiethghui as the mayor of Old Town White Coffee, Nusa Bistari, JB on @foursquare! http://t.co/lL96tVp4'), (2474, 957, 'Pulai, Johor Bahru', 'Check out. *notcool* @Aniq_AzaD (@ Old Town White Coffee, Nusa Bistari, JB) http://t.co/JjvzzXnx'), (2475, 358, 'Johore, Malaysia', 'Red mango is ❤ @ Kaplan Wilkie Edge Campus http://t.co/c9vFFgLX'), (2476, 942, 'Johore, Malaysia', 'First timee. (@ Louis Vuitton Island Maison) http://t.co/S64vmyoK'), (2477, 193, 'Johor Bahru, Johore', 'hop off (@ Layar LRT Station (SW6)) http://t.co/PAvLnFjg'), (2478, 324, 'Johor Bahru, Johore', 'Imma shy girl ~ VERRY VERRY SHY );'), (2479, 599, 'Johore, Malaysia', 'Tmrw got 2.4km run -.- Siiaaaaaaan ~'), (2480, 958, 'Johor Bahru, Johore', 'Just paid $30 dollars for a voucher to a trial session of either , massage , facial or slimming down ~.~'), (2481, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa hahahah k aku tak kesah pun k....'), (2482, 959, 'Johor Bahru, Johore', 'I''m at Yishun Bus Interchange (Singapore) w/ 6 others http://t.co/quU5gUz5'), (2483, 515, 'Johor Bahru, Johore', 'Smga ja nda ape2, nda be2 mama ja :3 RT @nugiienugraha: @ddiittaayeye baru rusuh aja gitu. Nutup jalan. Buat warga resah. dan kawan kawannye'), (2484, 897, 'Kota Tinggi, Johore', '@Blehtan yes! HAHAHAHA'), (2485, 185, 'Johor Bahru, Johore', '@nurulm sigh good times ;) hahaha miss you pinoy!'), (2486, 486, 'Johor Bahru, Johore', '@bodohnakmampos haha asl tanak start skrg ?? Nnt kn dah magrib . #bodohnakmampos jkjk . ((:'), (2487, 951, 'Johore, Malaysia', 'I''ll love you everyday without fail.'), (2488, 394, 'Johore, Malaysia', 'I''m at Jambol Place http://t.co/8RbO7qFo'), (2489, 960, 'Riau, Indonesia', 'I''m at Loui''s Signature Pizza (Singapore) w/ 3 others http://t.co/21pSfD8C'), (2490, 37, 'Kota Tinggi, Johore', '"@Rides_on_Fire: Catwoman Stole the Batpod? http://t.co/Itvunapo #Famous" wtf ! Look at that ! :O'), (2491, 961, 'Johor Bahru, Johore', '@sarahlewww time for you to treat me lunch lah.'), (2492, 941, 'Johore, Malaysia', 'Went 3 shopping malls , idk how many shop and she bought a pants . :O'), (2493, 785, 'Singapore', 'Everyone stop what you''re doing and sign this petition. It''ll only take a second. Please! #1DFamily http://t.co/UGTBkxRD xxx'), (2494, 861, 'Johore, Malaysia', '@LackadaisicalFa haha. That''s why I love the glass bubble elevator. Damn nice view...'), (2495, 904, 'Johor Bahru, Johore', '#dailyphoto of #singapore - #sunset amid #cloudy #sky @ KEBUN BARU http://t.co/vi11WiNG'), (2496, 938, 'Johore, Malaysia', '@Kesterkjw ok , wait i online first xD'), (2497, 72, 'Johor Bahru, Johore', 'Omg I kinda hoped commonwealth chorale would sing seal lullaby. *-* though the tenors wouldn''t sound as nice as MTDC one :('), (2498, 962, 'Johor Bahru, Johore', 'Cha Shu Ramen for dinner! Shiok! @ Ramen Champion http://t.co/DBIbUzbK'), (2499, 740, 'Johore, Malaysia', 'ngekk =p RT @ulfaDHAH33 Teringin nak Helikopter'), (2500, 963, 'Johor Bahru, Johore', 'I''m at Phyllis Batok的家 http://t.co/rFfdhFMM'), (2501, 964, 'Johore, Malaysia', 'Home now after (@ Aston Mansions Tower One) http://t.co/XPMPs7oE'), (2502, 965, 'Johore, Malaysia', 'really feel like running now..'), (2503, 966, 'Johor Bahru, Johore', 'I''m at Sher''s den!  http://t.co/kOFmmfe5'), (2504, 644, 'Johore, Malaysia', 'I''m at Peninsula Plaza (Singapore, Singapore) w/ 4 others http://t.co/nH3cXBxg'), (2505, 967, 'Plentong, Johor Bahru', 'on the way pakmunawe open weeee dah bolh dtg mari2 (@ Saudagar Shisha Segget) [pic]: http://t.co/UxsBX28f'), (2506, 968, 'Johor Bahru, Johore', '@Elliong boyfr house ma . I there for 1 year plus Liao leh . Tssktssk. Boxim . Nxt time come down find me lah. Everytime I go down find u :3'), (2507, 861, 'Johore, Malaysia', '@iam_jsonking thanks for the tip bro!'), (2508, 68, 'Riau, Indonesia', 'oke sayaang,eh sabtu libur? RT @mumutcimamay: Hahhaah yayaya deeh sayaang RT @IlfaAzlyani: haha nonton shaun the seep'), (2509, 340, 'Johore, Malaysia', 'Nak off lappy uh.. Text dher dah cukup HAPPY!'), (2510, 952, 'Johore, Malaysia', 'Ice skating!!!! (@ Kallang Ice World) http://t.co/7jnD8dNS'), (2511, 460, 'Johore, Malaysia', 'Too many things on my mind, can''t take it anymore.'), (2512, 117, 'Johore, Malaysia', '@paperdrizzle you going tomorrow?'), (2513, 61, 'Johor Bahru, Johore', '"@PeiYi2706: @veradesu before you says anything you have had says tons of things already dumb" good English'), (2514, 438, 'Johor Bahru, Johore', 'JOKE . LARRY &amp; JOE QUARRELLING SO FUNNY . EUGENE LAUGH HORH . DAMN FUNNY . :D'), (2515, 932, 'Johor Bahru, Johore', 'CAN''T WAIT FOR 30TH MARCH,\nGonna be a fun day:P'), (2516, 939, 'Johor Bahru, Johore', '@minxiiii NO :( the lazy me just had to fall asleep @.@ and then my friend waited at queenstown for v long! LOL I AM A LAZY BITCH LOL'), (2517, 771, 'Johore, Malaysia', 'Anything with mayonnaise or mushroom is yummy !'), (2518, 411, 'Johor Bahru, Johore', 'Siann lah, Wanna play basketball no ppl accompany me.'), (2519, 43, 'Johore, Malaysia', 'Lelaki ni cara dia kasar. Tapi kkdg terlampau aku rasa macam... K dang jelah mls layan!'), (2520, 411, 'Johor Bahru, Johore', 'LalaLa.'), (2521, 247, 'Johore, Malaysia', 'Will you get tired of me one day?'), (2522, 68, 'Riau, Indonesia', 'RT @Poconggg: Kalau Jakarta bahasa gaulnya Jekardah, berarti balita itu belidah ya?'), (2523, 969, 'Johor Bahru, Johore', 'Cookin ABC soup!'), (2524, 555, 'Johore, Malaysia', 'I''m at ComfortDelGro Driving Centre (CDC) (Singapore) w/ 8 others http://t.co/LFcMdCdy'), (2525, 486, 'Johor Bahru, Johore', 'Sleep. School. Sex.'), (2526, 970, 'Plentong, Johor Bahru', 'I''m at Holiday Plaza (Johor, Johor) w/ 4 others http://t.co/5HvEJSF0'), (2527, 228, 'Johor Bahru, Johore', 'Everytime, everyday Fight.'), (2528, 971, 'Singapore', 'LOL. today in tuition kena scolded for using phone :P'), (2529, 18, 'Johor Bahru, Johore', 'Hopefully things tomorrow will go smoothly (:'), (2530, 713, 'Johore, Malaysia', 'I''m at Top Up Machine @ Queenstown MRT http://t.co/pbGj3OyQ'), (2531, 972, 'Johor Bahru, Johore', 'Finished playing street soccer ! Played 4 vs 4 , 5 vs 5 &amp; 6 vs 6 ⚽ Had a blast and tired right now .'), (2532, 68, 'Riau, Indonesia', 'wkwk haiii adek bule kecekuu :* RT @Belbielowday: haii kakak cantik keceku B) RT @IlfaAzlyani mention RT @Belbielowday: mention dong yang ke'), (2533, 43, 'Johore, Malaysia', '@ouhnoor Why sister why?'), (2534, 340, 'Johore, Malaysia', 'Last time on twitter on lappy, SPRING CHICKEN &lt;3'), (2535, 117, 'Johore, Malaysia', '@DEATHIFICATE hey so you going tomorrow? :o confirm with me NOW!'), (2536, 811, 'Johor Bahru, Johore', '@DorcasKoh lol lazy la haha I also tired but I dun care I just run Afew rounds then go home slp liao'), (2537, 101, 'Malaysia', 'เริ่งง่วง คงต้องนอน&gt;&lt;'), (2538, 679, 'Johor Bahru, Johore', 'Yay at my buys today! &lt;3 http://t.co/kLJC1Ztd'), (2539, 506, 'Johore, Malaysia', 'I''m at 313@Somerset (Singapore, Singapore) w/ 19 others http://t.co/PAN5YCBI'), (2540, 973, 'Plentong, Johor Bahru', 'Red velvet and rainbow cake (@ scrumbtious) [pic]: http://t.co/zk5r9W3n'), (2541, 939, 'Johor Bahru, Johore', '@minxiiii oh ya you got eat this daesang (cannot rmb name correctly) Korean BBQ restaurant before? EFFING DELICIOUS'), (2542, 206, 'Singapore', 'i want my cca shirt &gt;:('), (2543, 974, 'Johor Bahru, Johore', 'I''m at Frienzie Bistro &amp; Bar (Singapore) http://t.co/jPKulbh7'), (2544, 3, 'Johor Bahru, Johore', 'I &lt;3 cheese'), (2545, 340, 'Johore, Malaysia', '1406th'), (2546, 976, 'Kota Tinggi, Johore', 'I''m at Homeeeeeee!  http://t.co/MjgUk3i6'), (2547, 977, 'Johore, Malaysia', 'So bored :( (@ Starbucks) http://t.co/99GQwQ5m'), (2548, 43, 'Johore, Malaysia', '@ApekSteady Haha bagi skrrg pun boleh :P'), (2549, 593, 'Johor Bahru, Johore', '@AngelusChan ok first take a deep breathe. Don''t get angry so easily! Easy to get winkles!! Smile:) although u''ll look stupid now hahaha^^'), (2550, 708, 'Johor Bahru, Johore', 'Watching looney tunes while eating can kill XD'), (2551, 61, 'Johor Bahru, Johore', '"@PeiYi2706: @veradesu thank you :)" says the barbarian'), (2552, 68, 'Riau, Indonesia', 'my everything'), (2553, 411, 'Johor Bahru, Johore', 'Is that reallt worth it? For me ¿'), (2554, 41, 'Plentong, Johor Bahru', '@writerBEKU ah kau, kau lagi busuk dari aku. aku campak jugak masuk sungai klang nanti'), (2555, 256, 'Johore, Malaysia', 'Had to choose between having kfc or chicken rice for dinner.it was difficult so i chose both.'), (2556, 941, 'Johore, Malaysia', 'It is difficult to be woman . Especially shopping . :3'), (2557, 978, 'Johor Bahru, Johore', 'I am so bored at home'), (2558, 12, 'Johore, Malaysia', '@DiniRoszi Welcome. Er. B.A.P fanclub is Baby right?'), (2559, 979, 'Johor Bahru, Johore', '@akuimran_ tak ajak lepak ... Rabak'), (2560, 980, 'Johore, Malaysia', 'I''m at Bugis MRT Interchange (EW12/DT14) (Singapore, Singapore) w/ 6 others http://t.co/7TRhWmha'), (2561, 620, 'Johor Bahru, Johore', 'Excellent public transport commuting experience today.. Now that''s great job done! #TeamPublicTransport [pic]: http://t.co/rpkDgu7h'), (2562, 939, 'Johor Bahru, Johore', '@b2utyinspiritkm Saturday want go eat Korean food LOL'), (2563, 722, 'Johor Bahru, Johore', 'k makanan dah serve.. mak dgn abag tak balik lagi :| takpe aku start jelaah dulu makan :s'), (2564, 98, 'Johor Bahru, Johore', '@syuhaidahhusna keyboard kau sakit eh'), (2565, 139, 'Singapore', '@Zophia98 You should call yourself the AwesomeBlurSotongJoker :D'), (2566, 147, 'Johore, Malaysia', '@macamretard i''m not sad laa'), (2567, 12, 'Johore, Malaysia', '@2PMRules Taecyeon.'), (2568, 740, 'Johore, Malaysia', '@ulfaDHAH33 bawa apa esok g KL ? &gt;&lt;'), (2569, 168, 'Johore, Malaysia', 'I''m at Bus Stop 92051 (Opp Blk 72) (Marine Parade, Singapore) http://t.co/wH3ouzyx'), (2570, 41, 'Plentong, Johor Bahru', '@faezahzahid hahahahaha xD'), (2571, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa elelelelleleeee :p'), (2572, 961, 'Johor Bahru, Johore', 'RT @lsmttt: My complexion is max fail.'), (2573, 412, 'Johor Bahru, Johore', 'I''m at Civil Defence Academy (Basketball Court) http://t.co/cynl8aZl'), (2574, 981, 'Riau, Indonesia', 'baik jg dek. hem langgeng ya :D RT @Novitha_inov Baik..kk pa kbr?RT @ira_noevieta: @Novitha_inov sseeepp dek. pa kbr dek?'), (2575, 68, 'Riau, Indonesia', 'fotokuu fa? RT @UlfaHanifah: haii kakak cantik keceku B) RT @IlfaAzlyani mention RT @Belbielowday: mention dong yang kece'), (2576, 139, 'Singapore', '@LAMSHITKAYYYY_ Study the Environment :P'), (2577, 935, 'Johor Bahru, Johore', '@AhQi_worh :('), (2578, 982, 'Johore, Malaysia', 'The pain that never wnds'), (2579, 302, 'Singapore', '@illicitflesh one day when i''m a rich man....'), (2580, 486, 'Johor Bahru, Johore', '@bodohnakmampos hahaha malam jumaat oi . Org nk ngaji .. #bodohnakmampos haha jkjk ^^'), (2581, 159, 'Johore, Malaysia', '@teddyycherryy didn''t know that some ppl could be so easily honoured :O'), (2582, 979, 'Johor Bahru, Johore', '@amalphrodisiac ya i like the movie to ... I speak for the trees too .'), (2583, 13, 'Singapore', '@herrowwernching course-specific testimonial...? that never even occurred to me :/ oh well~'), (2584, 811, 'Johor Bahru, Johore', '@DorcasKoh that''s what u say haha'), (2585, 983, 'Singapore', 'some1 must is stalking me 0.0....'), (2586, 771, 'Johore, Malaysia', 'I want to recognise your beauty is not just a mask .'), (2587, 984, 'Johor Bahru, Johore', 'Beautiful #clouds caught at the expressway @ Bukit Timah Expressway (BKE) http://t.co/qjnj5Hlo'), (2588, 985, 'Plentong, Johor Bahru', 'At home sweet home.'), (2589, 505, 'Johor Bahru, Johore', '@FAMJIEXIN AWWWWW, *HUGS BACK XD'), (2590, 978, 'Johor Bahru, Johore', 'Alone at home, mom went out leaving me here. Its FUUUUUUNNNNN BUT BORINGG COZ I AM ALONNEEEEEEE'), (2591, 986, 'Johore, Malaysia', 'Dinner with Reigi :) (@ Yoshinoya) http://t.co/iXecxBtK'), (2592, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN haha u not at the compy grounds just now so cannot jio u lor'), (2593, 666, 'Johore, Malaysia', '@weitheling yOU'), (2594, 411, 'Johor Bahru, Johore', 'Well, I took the first step, Dont know will you follow and take the steps with me.'), (2595, 551, 'Johor Bahru, Johore', '@MansoorAdabi aanswer'), (2596, 18, 'Johor Bahru, Johore', '@aku_tupai98 gym class heroes!'), (2597, 987, 'Johore, Malaysia', 'I''m at Bus Stop 11051 (opp Mujahidin Mosque) (Singapore) http://t.co/agiAUhCK'), (2598, 988, 'Johor Bahru, Johore', '@cholled ikaw na! Pinoy?'), (2599, 771, 'Johore, Malaysia', 'I suke abang abang police &lt;3'), (2600, 12, 'Johore, Malaysia', '@DiniRoszi Okay ;) B.A.P so cute siol!'), (2601, 68, 'Riau, Indonesia', 'fotoku fa? RT @UlfaHanifah:'), (2602, 247, 'Johore, Malaysia', 'You don''t know how important you are to me'), (2603, 989, 'Johor Bahru, Johore', '@AloysiousSoh tap on my profile picture'), (2604, 990, 'Johor Bahru, Johore', 'I am back in SINGAPORE!!'), (2605, 639, 'Johor Bahru, Johore', 'I''m at Staff Canteen (Singapore, SG) http://t.co/aEZSpqSJ'), (2606, 928, 'Tebrau, Johor Bahru', '종현''s teaser is such a tease! Another few more days to 샤이''니s comeback! Kyaaa! 바보야.. ㅋㅋ.'), (2607, 411, 'Johor Bahru, Johore', 'Sometime the unexpected will expect. Urgh.'), (2608, 12, 'Johore, Malaysia', '@2PMRules Junsu.'), (2609, 991, 'Johor Bahru, Johore', 'Come what may.'), (2610, 798, 'Johore, Malaysia', '@wolfieboi Off in lieu for outfield is it? I''m booking in soon. LOL.'), (2611, 992, 'Johor Bahru, Johore', '@itxjustme @foreheadchin pizza!!!'), (2612, 978, 'Johor Bahru, Johore', 'I had taken 3 sticks of cigarettes, lying down on my sofa lounge, oh my, it cant get any worse than this.'), (2613, 434, 'Johore, Malaysia', 'I''m at marine parade central http://t.co/vz2phrZA'), (2614, 771, 'Johore, Malaysia', 'You , Me , Benci benci sayang ?'), (2615, 206, 'Singapore', 'freaking hell love and miss just now. &lt;3'), (2616, 19, 'Johor Bahru, Johore', '“@FunnyEvil: TEACHER:\nWhat comes after 69?\n\nSTUDENT:\nMouthwash.\n\nTEACHER:\nGet out.”'), (2617, 12, 'Johore, Malaysia', '@IHEARTSUZY Quite :) Not really crazy about them.'), (2618, 37, 'Johore, Malaysia', '@NiniAzuwera HAHAHAHA !'), (2619, 692, 'Johor Bahru, Johore', 'Let''s start BBQ !! \n*hungry* ☺'), (2620, 637, 'Singapore', '@dee_kosh can lah! (:'), (2621, 12, 'Johore, Malaysia', '@2PMRules Nichkhun'), (2622, 486, 'Johor Bahru, Johore', 'All i want for christmas is to beat Santa .'), (2623, 993, 'Johor Bahru, Johore', 'Finally! (@ Tuas Checkpoint (Second Link) w/ 2 others) http://t.co/aQvtt9vc'), (2624, 994, 'Pulai, Johor Bahru', 'Waiting for food, roommate, come back asap~!'), (2625, 313, 'Plentong, Johor Bahru', '@Missyaya93 ea ehh..asal org lak kne grrr..jhahahaha :p'), (2626, 861, 'Johore, Malaysia', '@mynameisdilly I think mothers are superb at being sarcastic! But in a good way of course. Lol'), (2627, 995, 'Malaysia', 'ไปเตะบอล (@ สี่แยกคลองหวะ) http://t.co/UbUjtunQ'), (2628, 387, 'Johor Bahru, Johore', 'Choong U ''s place (@ Golden Hill Park) [pic]: http://t.co/h0B9WaYm'), (2629, 4, 'Johor Bahru, Johore', 'Tired much yo!'), (2630, 798, 'Johore, Malaysia', '@RingNingNing Have you tried being in the army? We''d have to swim to get out HAHAH.'), (2631, 996, 'Plentong, Johor Bahru', '@henrylabz no prob!'), (2632, 997, 'Johor Bahru, Johore', 'Dah habis otp with Syav and Nana. Dari tadi nk blajar,tk start2 -.- Shall start nw while watsapping abg :)) http://t.co/kO6yukHI'), (2633, 998, 'Plentong, Johor Bahru', 'I''m at Royal Golden Bed (JB Rawk, Johor) http://t.co/zAzs80H4'), (2634, 593, 'Johor Bahru, Johore', '@AngelusChan today is your birthday!! \n1. you are alrdy getting old so don''t be angry cause it makes you older\n2. YOUR BDAY=BE HAPPY^^&lt;3'), (2635, 33, 'Plentong, Johor Bahru', '@deeyahmad thankyou very much deeya .'), (2636, 999, 'Johore, Malaysia', 'I''m at HAIXIN''s Home☃ http://t.co/U4pcNDkH'), (2637, 1000, 'Malaysia', 'ตีแบตกับ @MaLiiw_MiLK - สนามจิระนคร'), (2638, 12, 'Johore, Malaysia', 'OMG! My father going to buy me new phone &lt;3'), (2639, 939, 'Johor Bahru, Johore', '@b2utyinspiritkm ya I was planning to. BUT DON''T EAT LIKE GLUTTON LA LAGI EXPENSIVE. at holland v. Then we can eat ice cream after that. Lol'), (2640, 43, 'Johore, Malaysia', 'Bersiap sementara tgu kawan dtg amik'), (2641, 1001, 'Johor Bahru, Johore', 'I''m at Subway @ Ang Mo Kio Jubilee (Ang Mo Kio, Singapore) http://t.co/VDjlhGTd'), (2642, 68, 'Riau, Indonesia', '"Just forget me!! Forget me and go move on !!" = "Please, don''t forget me ☹"'), (2643, 1002, 'Johore, Malaysia', 'I''m at Traders Hotel Singapore (Singapore, Singapore) http://t.co/ImDrysAL'), (2644, 498, 'Johor Bahru, Johore', 'MY GRANDMA PASSED AWAY 16 MIN AGO. - CRYING - GRANDMA !!!!'), (2645, 1003, 'Johore, Malaysia', 'Service is awesomeeeee (@ Prima Taste Kitchen @ Centrepoint) http://t.co/o1kSWv30'), (2646, 12, 'Johore, Malaysia', '@2PMRules ChanSung'), (2647, 989, 'Johor Bahru, Johore', 'If I''m you I will tell them off, I did that to many ppl..'), (2648, 670, 'Pulai, Johor Bahru', '要嘛,不开始;\n要嘛,一辈子。'), (2649, 1004, 'Johore, Malaysia', 'Shopping AGAIN (@ H&amp;M w/ 9 others) http://t.co/baw6lYhB'), (2650, 1005, 'Johor Bahru, Johore', 'I am just too tired to do anything.'), (2651, 971, 'Singapore', '@CharlotteNFT LOL. i do finish my work marh. then nothing to do so take out phone use fb and twitter lorh. then suddenly cher sudenly scold.'), (2652, 551, 'Johor Bahru, Johore', '#PeopleIWantToMeet ME'), (2653, 1006, 'Kota Tinggi, Johore', 'Sarap na ng upo ko... e may tumabing pana... syempre pinaupo ko na si auntie .'), (2654, 1007, 'Johor Bahru, Johore', 'I''ve been sleeping the whole day omg..'), (2655, 689, 'Johor Bahru, Johore', 'Having my first meal of the day . ):'), (2656, 561, 'Johor Bahru, Johore', 'I''m at Badaling Coffee House (Singapore) http://t.co/jmc3hUVN'), (2657, 1008, 'Johore, Malaysia', 'I''m at 328 Coffee Shop (Clementi, Singapore) http://t.co/MEyDa5or'), (2658, 1009, 'Johor Bahru, Johore', 'I''m at Home Sweet Home. &lt;3 http://t.co/ZuomCl8P'), (2659, 961, 'Johor Bahru, Johore', 'please i hope my bag comes by 29 march!'), (2660, 68, 'Riau, Indonesia', 'RT @Belbielowday: RT @IlfaAzlyani my everything'), (2661, 1010, 'Johore, Malaysia', 'Great to be home! (@ St Andrew''s Cathedral) http://t.co/JiDmOGcJ'), (2662, 1011, 'Johor Bahru, Johore', '@RegisteredUserZ Sean y your twitter follower all got horny girl like that..'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (2663, 700, 'Johor Bahru, Johore', 'Mum: Syafil draw peacock lawah..'), (2664, 593, 'Johor Bahru, Johore', '@AngelusChan prepaid low? But la endure a bit more to top up? Dot get angry at little things ok? It makes your life difficult only.'), (2665, 1012, 'Riau, Indonesia', 'Ternyata memang sangat mulus..'), (2666, 1013, 'Plentong, Johor Bahru', 'In Johor Bahru'), (2667, 411, 'Johor Bahru, Johore', 'I am all fire out. You can''t stop me.'), (2668, 337, 'Kota Tinggi, Johore', '@godfreycua uu actually binasa nya! Hehe! @inahbdeguzman db? Kakaloka!'), (2669, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN yup why?'), (2670, 68, 'Riau, Indonesia', 'masaa? RT @UlfaHanifah: Sebenernya sih yang kasian itu dia bukan aku :$'), (2671, 1011, 'Johor Bahru, Johore', 'Dancing'), (2672, 990, 'Johor Bahru, Johore', 'Singapore terminal is still the best! :D'), (2673, 1014, 'Johore, Malaysia', '@carlasolis Bat di ko naget?'), (2674, 1015, 'Malaysia', '@Newziimnz ไม่ลืม รักน้ะ จุ้บ ๆ [♥]'), (2675, 117, 'Johore, Malaysia', '@Xxsasa tomorrow how HAHAHHAHA check ur DM'), (2676, 1016, 'Plentong, Johor Bahru', 'pekena mee bandung ganja semangkuk (@ Restoran Keluargaku Sayang) http://t.co/OtcuZ98Q'), (2677, 486, 'Johor Bahru, Johore', 'Now the trend hair for boys is backcombed hair is it ? Ah ohh okay .'), (2678, 954, 'Johor Bahru, Johore', 'Feel like running home'), (2679, 486, 'Johor Bahru, Johore', '@bodohnakmampos HAHAHA CANTIK CANTIK .'), (2680, 12, 'Johore, Malaysia', '@DiniRoszi Zelo and Daehyun :) &lt;3'), (2681, 700, 'Johor Bahru, Johore', 'Awww, no problem ;) RT @sfqdnl: @afiqahyamin hahaha ikr? anyway, thanks for comforting me. really appreciated it :'')'), (2682, 366, 'Johor Bahru, Johore', 'Cheng xim alr .'), (2683, 1017, 'Singapore', '16 days more to wait,,im soooo excited to see you again..:)'), (2684, 961, 'Johor Bahru, Johore', '@sarahlewww okay thanks for my belated bday present.'), (2685, 68, 'Riau, Indonesia', 'Dan sekarang cuma tinggal kenangan yg ga bisa dirubah'), (2686, 138, 'Johore, Malaysia', 'Class outing = sleeping on the bed with classmates'), (2687, 411, 'Johor Bahru, Johore', 'Wow Sportmanship.'), (2688, 733, 'Johore, Malaysia', '@petrinaheartxcz Buay tahan those people look down on poly students because JC got a supposing "Lower aggregate" score'), (2689, 1018, 'Riau, Indonesia', 'BeTe!!!!\nsama siapa??\nsama Lo!!\n凸(`⌒´メ)凸'), (2690, 41, 'Plentong, Johor Bahru', '@writerBEKU berani kau? hahaha'), (2691, 1019, 'Johore, Malaysia', 'I''m at National Geographic Singapore Store (HarbourFront, Singapore) http://t.co/L2isfVXq'), (2692, 954, 'Johor Bahru, Johore', 'I will do anything to prevent the sinking.'), (2693, 68, 'Riau, Indonesia', '@UlfaHanifah oke ufeeh wkwk'), (2694, 1020, 'Johore, Malaysia', 'I''m at Esplanade - Theatres on the Bay (Singapore, Singapore) w/ 6 others http://t.co/ilIAt4NF'), (2695, 12, 'Johore, Malaysia', '@IHEARTSUZY Haha! High five !'), (2696, 1021, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang Bus Interchange w/ @jia_jin http://t.co/M1x6clbX'), (2697, 1022, 'Johore, Malaysia', 'Omg I''m eatin like a barbarian!!!!'), (2698, 411, 'Johor Bahru, Johore', 'If today that wouls happened.'), (2699, 1007, 'Johor Bahru, Johore', 'Anybody wanna have dinner with me? :/'), (2700, 679, 'Johor Bahru, Johore', '@Hongyeahh Its only $10 :D tehehe'), (2701, 138, 'Johore, Malaysia', '@EatAndShit Idk zzz'), (2702, 700, 'Johor Bahru, Johore', '@katydara Hahahahaha, not so obvious lah the blur but yeah blur but still chio lah youuuuuu'), (2703, 954, 'Johor Bahru, Johore', 'Tell me, what u wan me to do.'), (2704, 68, 'Riau, Indonesia', 'Kalo punya perasaan pasti kamu bisa mikir yg kamu lakuin nyakitin orang lain ga sih'), (2705, 1023, 'Johor Bahru, Johore', 'I''m at Gym (Singapore) http://t.co/MhXVAori'), (2706, 861, 'Kota Tinggi, Johore', 'I get too emotionally attached to everything. Wear my heart on my sleeve. People can tell that something is wrong if they actually care.'), (2707, 1012, 'Riau, Indonesia', 'Alhamdulillah..sesuwatu yaahh.. @anidaryusuf Sumpah salah mantion jadi mau maluuu....*tutupmuka*'), (2708, 68, 'Riau, Indonesia', 'Dan sekarang cuma tinggal kenangan yg ga bisa dirubah [Like it? http://t.co/FMlbq4ss ]'), (2709, 72, 'Johor Bahru, Johore', '@sheneedstrength good luck cooking it then :x hope it tastes nice! :D HAHA.'), (2710, 798, 'Johore, Malaysia', '@yoxingg @_slightning As in we just take a few pictures of the time we had tgt then scrap! Lol orrrr we can scrap for each other HAHAH.'), (2711, 98, 'Johor Bahru, Johore', '@syuhaidahhusna hahaha! alah bila kau free?? bila @SyaJoe free?? Lagipun neng pegi hols'), (2712, 443, 'Johore, Malaysia', 'hey i just met you. and this is crazy so heres my number, so call me maybe. http://t.co/b4dbqXdj'), (2713, 764, 'Johor Bahru, Johore', 'The Woman In Black sounds good and scary. I wanna watch.'), (2714, 1012, 'Riau, Indonesia', '#Gombal_Mukiyo ~&gt; @anidaryusuf KaumembuatkuberantakanKaumembuatkutakaruanKaumembuatkutaberdaya...'), (2715, 313, 'Plentong, Johor Bahru', '@Missyaya93 haha tah ape2 tah..wekk'), (2716, 1024, 'Johor Bahru, Johore', '@KittennyScars wa, very bad leh actually!'), (2717, 68, 'Riau, Indonesia', 'nunggu hp bergetar? wkw sesuatu bgt'), (2718, 771, 'Johore, Malaysia', '@mdsaifullah beh I suke makan :('), (2719, 897, 'Kota Tinggi, Johore', 'Waffles for dinner!(:'), (2720, 486, 'Johor Bahru, Johore', 'Last time the trend hair is overlap . Now backcombed . Later what ? All botak !'), (2721, 129, 'Plentong, Johor Bahru', 'Terasa nak mnum air @Coolblog lah :)'), (2722, 93, 'Johore, Malaysia', '@chaaaaos ok out now'), (2723, 618, 'Johore, Malaysia', 'Really hungry zz'), (2724, 443, 'Johore, Malaysia', '@Yatification dah lama dahde. zzzz.'), (2725, 117, 'Johore, Malaysia', '@DEATHIFICATE huuuuuh why'), (2726, 1025, 'Malaysia', 'กูเจ็บจ้าาาาาาาา5555'), (2727, 94, 'Johor Bahru, Johore', '@cornybom oookay(:'), (2728, 256, 'Johore, Malaysia', 'Master of my own fate.'), (2729, 971, 'Singapore', '@CharlotteNFT NO LA. if use phone there i die arh. is other tuition centre de la. MATHS -.-'), (2730, 93, 'Johore, Malaysia', 'Phewwwww'), (2731, 1026, 'Johor Bahru, Johore', 'I''m at Costa Sands Resort (Pasir Ris) http://t.co/ednAsbSO'), (2732, 49, 'Johor Bahru, Johore', '@crazyhappyqurl welcome back crazy girl ^^'), (2733, 117, 'Johore, Malaysia', '@paperdrizzle you lied to be T_T'), (2734, 12, 'Johore, Malaysia', '@DiniRoszi Haha Lol. No one dare to steal them from you :P They are forever yours.'), (2735, 72, 'Johor Bahru, Johore', 'I realized I became less guailan alr. No mood anymore. Though I became very guailan to some ppl.'), (2736, 267, 'Johore, Malaysia', '@Moggie78 @eexlee just the football'), (2737, 771, 'Johore, Malaysia', 'Isap rokok nan coke ? :P'), (2738, 983, 'Singapore', 'Need to clear my mind ..... where''s the Frisbee?? :P'), (2739, 117, 'Johore, Malaysia', '@paperdrizzle ME*'), (2740, 102, 'Singapore', '@cassiemee , may I ask?'), (2741, 1027, 'Johore, Malaysia', 'I''m at Changi City Point (Singapore) w/ 3 others http://t.co/n3fhow69'), (2742, 798, 'Johore, Malaysia', '@RingNingNing HAHAH I''d rather take my chances inside than to swim out. What time they releasing you?'), (2743, 1028, 'Johore, Malaysia', 'At @SMRT_Singapore — http://t.co/eR5jK8pr'), (2744, 545, 'Johore, Malaysia', '@haiqalzosimos Awwww, you so sweet. (:'), (2745, 1029, 'Johor Bahru, Johore', 'I''m at Bukit Batok Driving Centre (BBDC) (Singapore, Singapore) w/ 6 others http://t.co/i1vgCfnu'), (2746, 1030, 'Johor Bahru, Johore', 'otw to jurong green cc'), (2747, 487, 'Johore, Malaysia', '@euxuanlin you should say "i hhelp you pay!" HAHAHA'), (2748, 897, 'Kota Tinggi, Johore', '@Blehtan hahaha. Why dunno! LOL. Yeah!!'), (2749, 543, 'Johore, Malaysia', 'I''m at Caltex (Singapore) http://t.co/G2k6CCJX'), (2750, 12, 'Johore, Malaysia', '@2PMRules Wooyoung'), (2751, 593, 'Johor Bahru, Johore', '@AngelusChan hmm. I do don''t like to wait. But since u got no choice.. Use the time to think of what to do ltr? And where to go?'), (2752, 93, 'Johore, Malaysia', '@xNurulHudax the near the leg'), (2753, 524, 'Johore, Malaysia', 'Outing wif colleagues (@ Buddha Tooth Relic Temple &amp; Museum (佛牙寺龙华院)) http://t.co/K5JjWQrC'), (2754, 68, 'Riau, Indonesia', 'Satu hal yang perlu lo inget boy! Lo ga bakal pernah nemuin cewe kaya gue lagi. Lo terlalu nyianyiain ketulusan gue'), (2755, 1031, 'Singapore', 'sian, I miss andre villas-boas'), (2756, 722, 'Johor Bahru, Johore', 'DAMMIT apa tu wehh :o sakit siaa mata waa.. hahah RT @noorul_syaffiqa: @WhatMiss ape die tulis? http://t.co/Xtsv77SX'), (2757, 1032, 'Johor Bahru, Johore', 'Swimming now ☝'), (2758, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh i didnt said i wuz interested wat,,,????where got?'), (2759, 214, 'Johore, Malaysia', 'I''m at Dunman Road Food Centre (Singapore, Singapore) http://t.co/VOI5argR'), (2760, 1033, 'Johore, Malaysia', '@TVPatrol Hoy Gising!'), (2761, 932, 'Johor Bahru, Johore', '@elvisow got 31st march?or just 1st April.'), (2762, 515, 'Johor Bahru, Johore', 'Blm lah, masi kecik :D RT @nugiienugraha: @ddiittaayeye amiin, kire ezzy ikot gak. Haha http://t.co/sBljJtNS'), (2763, 72, 'Johor Bahru, Johore', 'Talking about being guailan. That stupid matthias ytd was super gl and irritating -.- omg. Stupid matthias.'), (2764, 759, 'Singapore', '@jamzxz Party girl to Party animal. haha'), (2765, 411, 'Johor Bahru, Johore', 'Stop Chanting, it''s annoying. -______-'), (2766, 1034, 'Johore, Malaysia', 'Pagooooda. Malayo layong lakaran fr orchard then bugis. (@ Jalan Singa) http://t.co/8Rn8Tm6B'), (2767, 593, 'Johor Bahru, Johore', '@AngelusChan yeah buy alrdy cannot be angry le ok?'), (2768, 12, 'Johore, Malaysia', '@IHEARTSUZY Staring at my comp to see who mention me.'), (2769, 545, 'Johore, Malaysia', '@IntanSolehaa DUUUUUUH.'), (2770, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa baru ni kluar rumah . What you doing?:)'), (2771, 1035, 'Plentong, Johor Bahru', 'I''m at Restoran Hong Kong Boy (Johor Bahru, Johor) http://t.co/mn0ZGXlF'), (2772, 1036, 'Johore, Malaysia', 'I''m at Holland Village (Singapore, Singapore) w/ 2 others http://t.co/YzJujb09'), (2773, 700, 'Johor Bahru, Johore', 'Hahahaha mum sang peacock song, she was like your peacock your peacock HAHA'), (2774, 1037, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 29 others http://t.co/xefTkfsJ'), (2775, 10, 'Singapore', 'Feel like a white crayon.'), (2776, 939, 'Johor Bahru, Johore', 'Walao eh DingMan just had to call me when I was sleeping. SIALA hear her voice I jump up zzz.'), (2777, 528, 'Johor Bahru, Johore', 'Yes! I can watch new episode for vampire diaries tomorrow. ❤'), (2778, 241, 'Johor Bahru, Johore', '“@NOTSAPAO: @Jahjahboomz the chen sheng”'), (2779, 1038, 'Johor Bahru, Johore', 'Test'), (2780, 1039, 'Johor Bahru, Johore', 'Otw for nitez wrkz! (@ Dalam MRT) http://t.co/Yo2pjdcE'), (2781, 1040, 'Kota Tinggi, Johore', 'Dear LOL , thankyou for being there when I have nothing to say &lt;: HAHAH . Sincerely , me :D'), (2782, 593, 'Johor Bahru, Johore', '@Jae_Jerome should I get key or taemin?'), (2783, 18, 'Johor Bahru, Johore', 'Shattered by broken dreams - #np'), (2784, 733, 'Johore, Malaysia', '@petrinaheartxcz They think they damn smart =_='), (2785, 1041, 'Johore, Malaysia', 'I''m at Chong Qing Steamboat @ Suntec City (Singapore) http://t.co/wNwWBGjb'), (2786, 1042, 'Johore, Malaysia', '#授業 へ行っています!でも、眠いです!'), (2787, 1043, 'Johore, Malaysia', 'I''m at Mitsubishi Motors http://t.co/1NYZzBdp'), (2788, 1044, 'Johor Bahru, Johore', '@RahmanRamzyy shut the fuck up.. Hahahaha'), (2789, 117, 'Johore, Malaysia', '@DEATHIFICATE huh ... ok then'), (2790, 89, 'Johor Bahru, Johore', '@Estrella_sL Cheyyyyy lol! U say 1 then say 3 I quite confused haha!'), (2791, 68, 'Riau, Indonesia', 'lagii online,kamu bulekuu? RT @Belbielowday: lagi apa kakakku? ;;) RT @IlfaAzlyani wkwk haiii adek bule kecekuu :*'), (2792, 193, 'Johor Bahru, Johore', 'noisy kids wah (@ Void Deck @ 412A) http://t.co/bkthtxA9'), (2793, 33, 'Plentong, Johor Bahru', '@deeyahmad okay aku pun taknak fikir sebenarnye tp makin nak lupa makin bnyak pulak kebenaran yg dtg bwt aku lg sakit . papepun thnks .'), (2794, 1045, 'Johor Bahru, Johore', 'I''m at Terminal 3 (Singapore, Singapore) w/ 18 others http://t.co/3BsSHNtj'), (2795, 309, 'Johore, Malaysia', '@JoltzSchiffer ur hair tells me a diff story:)'), (2796, 1046, 'Johor Bahru, Johore', 'I''m at Terminal 3 w/ @veronicalok http://t.co/EJvmjTbN'), (2797, 740, 'Johore, Malaysia', '@ulfaDHAH33 kau egt dr td aku ckp bahasa apa ? bahasa haiwan ? ngekk &gt;&lt; lerr.. nty dah packing inform :D'), (2798, 241, 'Johor Bahru, Johore', '@NOTSAPAO I saw yesterday at his top of the arm there one small one'), (2799, 1047, 'Johore, Malaysia', '@meiwin can you try DM me?'), (2800, 313, 'Plentong, Johor Bahru', 'lps maghrib kang, aku nk zzzzzzz tros...jamak smalam nye x tido...hoh0yyyyy ^0^'), (2801, 68, 'Riau, Indonesia', 'hehe,siapa? RT @triskamendlev: ohaha, maaf. beluuumm :DRT @IlfaAzlyani: kenalan RT @triskamendlev: intro'), (2802, 12, 'Johore, Malaysia', '@DiniRoszi Lol. Welcome ;) What their fanclub colour uh?'), (2803, 487, 'Johore, Malaysia', 'I haven''t eat the little India restaurant yet :/'), (2804, 1048, 'Johor Bahru, Johore', 'I''m at Cedele @ Changi Airport Terminal 2 Transit (Singapore) http://t.co/tCQsibty'), (2805, 1031, 'Singapore', '@Chrisunglayhoe ok now'), (2806, 1036, 'Johore, Malaysia', 'I''m at Subway (Singapore) http://t.co/i0mTh6Qv'), (2807, 1050, 'Johor Bahru, Johore', 'Just reach home ~'), (2808, 740, 'Johore, Malaysia', '@ulfaDHAH33 O.o.O.o'), (2809, 1051, 'Johor Bahru, Johore', 'Riverside Dinner (@ The Waterway (Punggol)) [pic]: http://t.co/BW9rZ5Bt'), (2810, 515, 'Johor Bahru, Johore', 'Tak can lah, idong e runcing aa tak lepel la RT @muftimuftia: perkembangan saat ini belom tau la hun hhe. emg ngp kalo bule semue? wkwk RT:'), (2811, 1038, 'Johor Bahru, Johore', 'Something wrong with location from the Twitter ...'), (2812, 971, 'Singapore', '@CharlotteNFT LOL. simo cheer up sia . since when i sad sia :P i hack care her de la. she ccb de :D'), (2813, 954, 'Johor Bahru, Johore', 'I wan to think no more. fml k.'), (2814, 229, 'Johor Bahru, Johore', 'I''m at Blk 315B Ang Mo Kio Street 31 (Singapore, SG) http://t.co/CIR5blJd'), (2815, 1030, 'Johor Bahru, Johore', 'besok kalau kat concord ader katak cammana sia nak main ?'), (2816, 93, 'Johore, Malaysia', '@chaaaaos text me'), (2817, 1040, 'Kota Tinggi, Johore', '2,580 (:'), (2818, 1052, 'Johore, Malaysia', 'I''m at Blk 8, Holland Ave http://t.co/SqwVoGNL'), (2819, 476, 'Johore, Malaysia', 'Naissss @ Esplanade - Theatres on the Bay http://t.co/uA0Ha8rt'), (2820, 1053, 'Johore, Malaysia', 'Michelle''s art exhibition opening! (@ Blue Lotus Fine Art) [pic]: http://t.co/EpUnEeVH'), (2821, 885, 'Johor Bahru, Johore', 'I''m at Blk 899 Tampines Street 81 (Tampines, Singapore) http://t.co/aNKNk5aT'), (2822, 486, 'Johor Bahru, Johore', '@rynnafenske pasar malam lot one masih ada belum tutup . Kt sana ada jual .'), (2823, 1054, 'Plentong, Johor Bahru', 'Seriously, FML!'), (2824, 1055, 'Johore, Malaysia', 'I''m at Kbox Karaoke @ Safra Mount Faber (Singapore) http://t.co/9aNvWiVJ'), (2825, 487, 'Johore, Malaysia', 'I mean haven''t went there and eat, not eat the whole place..'), (2826, 1056, 'Johore, Malaysia', 'AH FINALLY FOOD. (at Cahaya Muslim Restaurant) — http://t.co/vUr0MXUt'), (2827, 99, 'Johor Bahru, Johore', 'stulang or senibong or gazebo?'), (2828, 954, 'Johor Bahru, Johore', 'U make me smile in the same time u made me sad.'), (2829, 1057, 'Johore, Malaysia', 'I''m at Window On The Park (Orchard City Centre, Singapore) http://t.co/iabeAolJ'), (2830, 1058, 'Johor Bahru, Johore', '@shawtypearl Miss u more my lady. ((:'), (2831, 41, 'Plentong, Johor Bahru', '@writerBEKU mati kau sebelum balek BP xD'), (2832, 89, 'Johor Bahru, Johore', '@cindyh_xy Happy can le ;)'), (2833, 422, 'Johor Bahru, Johore', '@al_Mahbubaah Insya''allah. Kalau tidak sengaja dia akan redha. Tapi kalau dia tak, Allah swt akan. :)'), (2834, 234, 'Johore, Malaysia', 'DUAL''s networking drinkies! (@ OverEasy) http://t.co/PS7NKWec'), (2835, 764, 'Johor Bahru, Johore', '@WolfbassDNivra NONSENSE! I wanted to watch it earlier already! boohoo! :p'), (2836, 939, 'Johor Bahru, Johore', '@b2utyinspiritkm I want treat my best friend cannot meh -_- plus ice cream you pay yourself lol.'), (2837, 551, 'Johor Bahru, Johore', '@Shermainezxc @kohkohcrunchhh i know lah, i said oreofighter wat'), (2838, 684, 'Johor Bahru, Johore', 'Gonna collapse anytime.'), (2839, 241, 'Johor Bahru, Johore', '@Jahjahboomz @notsapao his arm on top but wear uniform can''t see man. '), (2840, 1059, 'Riau, Indonesia', 'GG to tranformers in a bit. Excited! #uss'), (2841, 1060, 'Johore, Malaysia', '@nizammansor you are evolvin'' into a mutant! a beast!'), (2842, 1061, 'Johore, Malaysia', 'I''m at Blk 52 New Upper Changi Road (Singapore) http://t.co/OmTLIJ3j'), (2843, 3, 'Johor Bahru, Johore', '@JYSQstars ;p I call Aloy Loy de leh &gt;&lt;'), (2844, 1062, 'Johor Bahru, Johore', 'I''m at Punggol MRT/LRT Station (NE17/PTC) (Singapore, Singapore) w/ 2 others http://t.co/SDsCTm40'), (2845, 193, 'Johor Bahru, Johore', 'quick shower (@ 412A Fernvale Link) http://t.co/AwMl0v7z'), (2846, 601, 'Johore, Malaysia', 'Please enjoy the fact that I am at a Thai-German brewery in Singapore. Prosit! (@ Tawandang Microbrewery) [pic]: http://t.co/GqvrUBM4'), (2847, 1063, 'Johore, Malaysia', 'I''m at Kampong Chicken Eating House (Singapore, Singapore) http://t.co/XPwsAg8B'), (2848, 1064, 'Johore, Malaysia', 'I''m at Esplanade Outdoor Theatre w/ @myrraamin http://t.co/E16XEl38'), (2849, 1031, 'Singapore', '@Chrisunglayhoe yes'), (2850, 89, 'Johor Bahru, Johore', 'What do I do when I can''t study and broken my laptop? Play WII (Y)'), (2851, 1065, 'Johore, Malaysia', '“You invite things to happen. You open the door. You inhale. And if you inhale t @ Yio Chu Kang MRT Station http://t.co/JJt8o3DT'), (2852, 486, 'Johor Bahru, Johore', '@Didystussy aku ckp baiikk uh smue dh buat twitter .. hahah kelakar lah kau ..'), (2853, 12, 'Johore, Malaysia', '@DiniRoszi Nevermind. :) Maybe they haven''t set one. Like F(x). No fanclub and colour. Pity them.'), (2854, 593, 'Johor Bahru, Johore', '@AngelusChan yep yep. So don''t angry alrdy ok?'), (2855, 1066, 'Johore, Malaysia', 'Finally project worked. Alhamdulillah. I can stop worrying and go on with my life. #Ameen'), (2856, 33, 'Plentong, Johor Bahru', 'RT @deeyahmad @raihanaonly keep stronger as the real you are :'')'), (2857, 551, 'Johor Bahru, Johore', '@onlydop3 i like the way ur working me out'), (2858, 708, 'Johor Bahru, Johore', 'HAHAHAHA !! Daffy is just a pure retard as always !! XD'), (2859, 1067, 'Plentong, Johor Bahru', 'I''m at Iskandar Regional Development Authority (IRDA) (Johor Bahru, Johor) http://t.co/3LoVsVQ4'), (2860, 30, 'Johor Bahru, Johore', '@janjanlocson potch hahaha'), (2861, 365, 'Kota Tinggi, Johore', 'After so long im finally having burger ramly,kopok lekor n cheesecake yumyum'), (2862, 984, 'Johor Bahru, Johore', 'Subahanallah.  #sunset #cloudporn @ Bukit Timah Expressway (BKE) http://t.co/qvgyrh23'), (2863, 593, 'Johor Bahru, Johore', '@AngelusChan can go home but cannot drink!'), (2864, 302, 'Singapore', '@franfizzle frances so smart'), (2865, 72, 'Johor Bahru, Johore', '“@AwwweTanz: Awesome feeling singing in there &lt;3 `Medley from Final Fantasy X: http://t.co/etMNtwae via @youtube” BEST EVER! Suteki Da ne &lt;3'), (2866, 1068, 'Johor Bahru, Johore', '@DanishRamlan @_Loges_ congratsss:)'), (2867, 1069, 'Johore, Malaysia', 'At Esplanade OutDoor Theatre — http://t.co/so5SOJAs'), (2868, 1070, 'Johore, Malaysia', 'I''m at Sarpino''s@Circular Road (Singapore) http://t.co/B6syHnF3'), (2869, 1071, 'Plentong, Johor Bahru', 'So now we know http://t.co/ZCpbi6i4 via @churp2'), (2870, 762, 'Johore, Malaysia', '@dinowoo_ you don''t like him!! But you love him (;'), (2871, 335, 'Riau, Indonesia', 'sore menjelang mlm Semua @SyahriniFC @dickymprasetyo @Daniel safwan @mey_cin @mawarrezkyM @ieamsaguband @bagusbasukii @shofayunne'), (2872, 1072, 'Riau, Indonesia', 'I''m at Universal Studios Singapore (Sentosa Island, Singapore) w/ 2 others http://t.co/resaa5wB'), (2873, 593, 'Johor Bahru, Johore', '@Jae_Jerome idk that''s why asking you mah! Ahahha'), (2874, 256, 'Johore, Malaysia', '@unbitemylips da makan nak tido.malas nak keje'), (2875, 782, 'Plentong, Johor Bahru', 'habzz lahhhh,,popyeye sudahhh keluarrr,,,emmm'), (2876, 487, 'Johore, Malaysia', 'Oh ya Im suppose to do my work. i overslept and was stoning at the books. Sigh'), (2877, 762, 'Johore, Malaysia', '@ImmaSimple_Girl awesome (;'), (2878, 1073, 'Johore, Malaysia', 'Oh,I just notice that I haven''t done my Chinese paper 1! #sillyme'), (2879, 185, 'Johor Bahru, Johore', '@nurulm haha good good! Bring me out leh, with nab. Yup, I''m coming! :D I''m in the April intake batch! Hahaha :)'), (2880, 1074, 'Johor Bahru, Johore', '@Fabulousviva good'), (2881, 486, 'Johor Bahru, Johore', '@zhxrxxf @budakchik kau diam lah . Die bby aku .'), (2882, 1075, 'Kota Tinggi, Johore', 'Swimming :D'), (2883, 12, 'Johore, Malaysia', 'Zelo is near my age! Omg! can &lt;3'), (2884, 733, 'Johore, Malaysia', '@petrinaheartxcz they look down but still a poly student is teaching them which is ironic in a sense'), (2885, 1076, 'Johor Bahru, Johore', '@MuhdSyr 重力の外え'), (2886, 256, 'Johore, Malaysia', '@jetblckheart_ kental'), (2887, 1060, 'Johore, Malaysia', 'Thanks for nothing babe'), (2888, 1072, 'Riau, Indonesia', 'I''m at TRANSFORMERS The Ride: The Ultimate 3D Battle (Sentosa Island, Singapore) w/ 7 others http://t.co/Peq044QS'), (2889, 1077, 'Johore, Malaysia', 'Tour briefing -___- (@ CTC Holidays) http://t.co/DSk5w9k9'), (2890, 971, 'Singapore', '@CharlotteNFT LOL. orh (:'), (2891, 760, 'Johor Bahru, Johore', '@princessqie belom mandi2 lagi!!!!'), (2892, 3, 'Johor Bahru, Johore', 'Bro go compass help me buy cup walker;D'), (2893, 1078, 'Johor Bahru, Johore', 'I''m at Admiralty MRT Station (NS10) (Singapore, Singapore) w/ 3 others http://t.co/0Vcp2eK0'), (2894, 313, 'Plentong, Johor Bahru', '@Missyaya93 ea ehh mne bleh bia2..suke ati je..haha'), (2895, 189, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 30 others http://t.co/KgSgxqOR'), (2896, 1079, 'Singapore', 'Another S''pore Mgt Uni Constitutional &amp; Administrative Law Wikipedia Project article is now a Good Article! http://t.co/3rVjBPMa #sgconlaw'), (2897, 771, 'Johore, Malaysia', '@mdsaifullah whahaha ! Then we laugh like hell all cause you said ah kau dier da terpranjat ! Lol'), (2898, 593, 'Johor Bahru, Johore', '@AngelusChan see at least got me chit chat with you here^^ you are not alone~'), (2899, 1031, 'Singapore', '@Chrisunglayhoe lame damn lame'), (2900, 771, 'Johore, Malaysia', '@AchikMok 10 pm :)'), (2901, 1073, 'Johore, Malaysia', 'Got tuition later~~~~'), (2902, 1080, 'Johore, Malaysia', 'I''m at Long John Silver''s (HarbourFront, Singapore) http://t.co/7uGdWYFv'), (2903, 1040, 'Kota Tinggi, Johore', 'The moment when your crush says "Iloveyou" to you (:'), (2904, 1007, 'Johor Bahru, Johore', '@JonPeh it''s starting in half an hour and I''m still on my bed! Haha. Don''t want lah I told ray I didn''t want to go. :P'), (2905, 684, 'Johor Bahru, Johore', 'Finally in 109. Thank you. I''ll be safe soon.'), (2906, 313, 'Plentong, Johor Bahru', '@Missyaya93 haha isya pkol 3 pg karang..keh3 c(:'), (2907, 388, 'Johore, Malaysia', '@Jingkailim $35. Ex sia:(.'), (2908, 1031, 'Singapore', '@Chrisunglayhoe say want go, then say got dinner. u play punk ah'), (2909, 1081, 'Johore, Malaysia', '@JH_Wesley tell them basketball.'), (2910, 1082, 'Johore, Malaysia', '@KamenPek hahaha okay thanks :) , anw when u come back?'), (2911, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh chill for???'), (2912, 1083, 'Johor Bahru, Johore', 'I''m at Blk 168 Petir Road http://t.co/2ERzgzTg'), (2913, 12, 'Johore, Malaysia', '@DiniRoszi Lol. Haha. A lot of people say SM created F(x) to beat 2NE1. Hmm. Dk is that true or not.'), (2914, 263, 'Johor Bahru, Johore', 'Speed up~ one chance~ on my dad car o.o'), (2915, 1073, 'Johore, Malaysia', 'Damn tomorrow I got extra SS class!for me only!'), (2916, 700, 'Johor Bahru, Johore', '#twitterfollowersiwanttolepakwith @NinaBrhn'), (2917, 1084, 'Johore, Malaysia', '疲れたな~ I want to go home NOW!!!!?'), (2918, 1085, 'Johore, Malaysia', '@bellaatong gt essay?!'), (2919, 981, 'Riau, Indonesia', 'Kangen kauand2 :''('), (2920, 486, 'Johor Bahru, Johore', 'YEAAHH AUNTY AJAK ME OVERNIGHT AT LAGUNA TONIGHT !! WOOTS ^^'), (2921, 740, 'Johore, Malaysia', 'nty malam gy shopping ! xD *rawwrr :D shopping ! shopping ! O yeahh !'), (2922, 310, 'Kota Tinggi, Johore', '@j_t_gumban @eleapot @iamryan2316 ako nsa jp na knina pa.. Walk walk lang ako.. Heheeh..'), (2923, 1086, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 37 others http://t.co/Kn9mWfUj'), (2924, 99, 'Johor Bahru, Johore', 'Casanova '), (2925, 3, 'Johor Bahru, Johore', '@JYSQstars Chey, ;p'), (2926, 1076, 'Johor Bahru, Johore', 'Space elevator\n1/6\nOut of the gravity\nSatellite\nMoon\nSun'), (2927, 684, 'Johor Bahru, Johore', '@acidlacedkisses weak and fever+long journey home= death. Shit. Should''ve taken a cab. But thought abt the money. Whoops.'), (2928, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa hahha aku ingat kasanova :3'), (2929, 72, 'Johor Bahru, Johore', '@sheneedstrength woah. U eat dinner real early *-* good for u ^^ next time u can perfect it and cook for family le *-*'), (2930, 1060, 'Johore, Malaysia', 'Roti Bakar #enampuluhan'), (2931, 486, 'Johor Bahru, Johore', '"@rynnafenske: Pasar malam depan rumah je, first time aku jejak ni pasar malam. Haha."'), (2932, 593, 'Johor Bahru, Johore', '@AngelusChan hmm ok. Anythig text me after you buy prepaid ok?'), (2933, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. So cute!'), (2934, 486, 'Johor Bahru, Johore', '@ShanmuStrikes @CharltonSingleC aiseyyy'), (2935, 43, 'Johore, Malaysia', '@ouhnoor knp? cerita la ?'), (2936, 1088, 'Johor Bahru, Johore', '@Firdanarcher i dont know. We now at my home. Siap2 want to go ahboy.'), (2937, 1079, 'Singapore', 'S''pore High Ct to decide on 3 Apr if Misuse of Drugs Act, by requiring mandatory minimum sentence, violates separation of powers. #sgconlaw'), (2938, 628, 'Johor Bahru, Johore', 'I''m at Chomp Chomp Food Centre (Singapore, Singapore) w/ 6 others http://t.co/pbMUnXPI'), (2939, 207, 'Johore, Malaysia', 'I''m at The Merlion (Singapore) w/ 2 others http://t.co/xTPuPHkI'), (2940, 771, 'Johore, Malaysia', 'Why people like me then don''t like me ! My face doesn''t suit my attitude ke ? Sad lah . Nak nanges :( . Jk . I never care bout people . Haha'), (2941, 1044, 'Johor Bahru, Johore', '@RahmanRamzyy @fadhilcdm ahhahahah'), (2942, 1089, 'Johor Bahru, Johore', '@ciciliafebriana ntik kabarin yaa...kl da di pswt...:)'), (2943, 684, 'Johor Bahru, Johore', 'I need a really hot bath and a good rest. Dk if I''ll be able to make it for work tmr. What a waste if I can''t.'), (2944, 383, 'Johor Bahru, Johore', 'Resting (@ Precious Jiejie''s Room) http://t.co/c81PL0lY'), (2945, 1090, 'Johor Bahru, Johore', 'Gonna start postin on my YouTube channel:) singin but which song first?!'), (2946, 1075, 'Kota Tinggi, Johore', 'Try again'), (2947, 545, 'Johore, Malaysia', 'How come girls can create nicknames so easily?! I also want nickname! Maybe Nizar Cute?! HAHAHAHAHA K NO.'), (2948, 64, 'Johore, Malaysia', 'yay dad bought sushi from kuriya for dinnerrrr.'), (2949, 398, 'Johor Bahru, Johore', 'Kau irritating.. zaaaaappp!'), (2950, 762, 'Johore, Malaysia', '@dinowoo_ oh,okay (; it thought you talk about that guy (:'), (2951, 12, 'Johore, Malaysia', 'Zelo you so tall! OMG,'), (2952, 1054, 'Plentong, Johor Bahru', 'I''m not in a good mood.'), (2953, 1091, 'Johor Bahru, Johore', 'Here at nex with @dearfiyah'), (2954, 771, 'Johore, Malaysia', 'Sunday morning shift ! Whee !'), (2955, 762, 'Johore, Malaysia', '@ImmaSimple_Girl the song awesome lah-.-'), (2956, 1092, 'Johor Bahru, Johore', 'Wak Pangs heere i come!'), (2957, 782, 'Plentong, Johor Bahru', 'heyyyy,,thnxx 4 follow @zavaxegocexyt'), (2958, 313, 'Plentong, Johor Bahru', '@Missyaya93 ape y x baek nye..hahhh'), (2959, 1093, 'Johor Bahru, Johore', 'STAGE 3.0 tomorrow! HIGH VOLTAGE'), (2960, 1031, 'Singapore', '@Chrisunglayhoe sua :(((((('), (2961, 486, 'Johor Bahru, Johore', '#IfYouKnowMeYouKnow #WheniMissYou #SometimesYouHaveTo #Imagine #ThingsIUSEDtoDo .'), (2962, 1094, 'Johor Bahru, Johore', 'Dad, so means im a kid i must do the house chores?!'), (2963, 1095, 'Johore, Malaysia', 'During my Ns, I was a 9 minute runner &amp; they always call me a machine.. But now my stamina has been dropping. Sigh'), (2964, 1096, 'Johore, Malaysia', 'I''m at Golden Mile Thien Kee Steamboat Restaurant (Singapore, Singapore) http://t.co/6zH6HvW7'), (2965, 88, 'Plentong, Johor Bahru', '@douspeak xmo la merajuk syg'), (2966, 1097, 'Johore, Malaysia', 'Squashed in the middle of ppl with my blazer~~~&gt;\\\\\\&lt; (@ bus 55~^^) http://t.co/NZWE1frZ'), (2967, 762, 'Johore, Malaysia', 'FUCK MY LIFE_|_'), (2968, 1098, 'Johor Bahru, Johore', 'Can anyone accompany me now....i standing alone at one corner like a stupid person...'), (2969, 1099, 'Johor Bahru, Johore', '@jenn_ys hahaha icic'), (2970, 1100, 'Johor Bahru, Johore', 'What can Gloria salvage here. (@ Pasir Ris Sports &amp; Recreation Centre w/ 3 others) http://t.co/ORxOiKcd'), (2971, 1101, 'Johore, Malaysia', 'Mlam ni nk mkan ape ek ? Time Mom n Dad tk de .. Nk msak ape ? =,= Erhh ..'), (2972, 1102, 'Plentong, Johor Bahru', 'Check in sini lak..owsem! (@ T Hotel) http://t.co/tceRbmxA'), (2973, 1030, 'Johor Bahru, Johore', '@HAHAHAHALIS arh yer lah tu geli aku nak main pki boot pasar Arh main'), (2974, 1040, 'Kota Tinggi, Johore', 'I''m proud of my heart . It been played , cheated , stabbed , broken and burned . But somehow , it still works (:'), (2975, 1103, 'Johore, Malaysia', '@VELVETSKINNED today i go home do my passport lor. Den see when can collect.'), (2976, 684, 'Johor Bahru, Johore', 'Please love me when I resting ok. I like lots of love when I sick. Hehe. Please.'), (2977, 536, 'Johore, Malaysia', '@ChangHong_Hoo lol good good :P'), (2978, 1104, 'Johor Bahru, Johore', 'Haven''t eat med yet. Mum gonna nag I think.'), (2979, 1105, 'Johor Bahru, Johore', 'Homey'), (2980, 1106, 'Johor Bahru, Johore', ''), (2981, 1081, 'Johore, Malaysia', 'Day 9 ended .. Very tired.. Finally tomorrow will be double digit DAY 10'), (2982, 1073, 'Johore, Malaysia', 'Sometimes I wish there''s a time machine in reality:)'), (2983, 115, 'Johor Bahru, Johore', 'PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC. PANIC.'), (2984, 1066, 'Johore, Malaysia', 'Going to pray alone again tomorrow but it''s alright, cause it doesn''t matter. I pray alone or not, I still pray to the same god. :)'), (2985, 334, 'Johor Bahru, Johore', 'I''m at Caryn''s Lalaland™ (Singapore) http://t.co/0XjDSxRn'), (2986, 764, 'Johor Bahru, Johore', 'While the baby goes out to play, the parents... amek gambar. http://t.co/NuPtSKLR'), (2987, 1107, 'Johor Bahru, Johore', 'I''m at Preshaan''s Home http://t.co/7A2Vsfyj'), (2988, 718, 'Johor Bahru, Johore', 'Tired and hungry ZZZZ'), (2989, 411, 'Johor Bahru, Johore', 'Do i need a reason to talk with you?'), (2990, 722, 'Johor Bahru, Johore', 'Me: That class? Okaylah but no friend not best.. ''It'': you want got friend or get good result for pmr? Me: k k good result.. I will :3'), (2991, 62, 'Johor Bahru, Johore', 'Mentel ehk haha! RT@tweetlipxz: @ForeverChronic Hehehehe happy la ;)”'), (2992, 1108, 'Johore, Malaysia', 'GunZ so fun. &gt;:D'), (2993, 388, 'Johore, Malaysia', '@Jingkailim rubber de. Metal de $100+ siol :O'), (2994, 1109, 'Johore, Malaysia', 'I''m at iLight Marina Bay 2012 (singapore, singapore) http://t.co/IrJ920Vr'), (2995, 762, 'Johore, Malaysia', 'Seriously, i really hate my life; about how i mix with those no life friends-.- seriously :(( i regret everything !!!'), (2996, 983, 'Singapore', 'Jon, Stop wasting time and move on......'), (2997, 33, 'Plentong, Johor Bahru', '@NabilahDanish thanks 4 your concern sis , thankyou very much :'')'), (2998, 771, 'Johore, Malaysia', 'I eat you can ! So mmmdap :3'), (2999, 815, 'Johore, Malaysia', 'I''m at Cinema 9 @ Level 4 Cineleisure (Singapore) http://t.co/aVUxuvCq'), (3000, 388, 'Johore, Malaysia', 'I''m at Bedok Temporary Bus Interchange (Singapore, Singapore) w/ 3 others http://t.co/9hApyXwZ'), (3001, 1108, 'Johore, Malaysia', 'Two piles of clothes to be folded. #maidgirl'), (3002, 1110, 'Riau, Indonesia', 'save the best for last :p (@ TRANSFORMERS The Ride: The Ultimate 3D Battle w/ 8 others) http://t.co/gQhU4CHf'), (3003, 1111, 'Johore, Malaysia', 'I''m at Roxy Square II (Singapore, Singapore) http://t.co/nNOVWvg7'), (3004, 722, 'Johor Bahru, Johore', 'k k dont get mad laaah -__-'), (3005, 185, 'Johor Bahru, Johore', '@nurulm ONZ! I WANNA WATCH TOO :)'), (3006, 671, 'Johore, Malaysia', 'I''m at NS1 Jurong East Interchange (Singapore) http://t.co/CwzGb4Rz'), (3007, 1040, 'Kota Tinggi, Johore', 'A single text from you can change my mood at any moment (:'), (3008, 593, 'Johor Bahru, Johore', '@AngelusChan rmb you are not alone^^ miss me tell me ok? Hehej'), (3009, 1112, 'Plentong, Johor Bahru', 'Sambil bekeje..sambil menjwb lukisan2 mengarot by #drawsomething and sambil melukis dgn burokny... (at Kamal''s Haven) — http://t.co/alr7vQa2'), (3010, 486, 'Johor Bahru, Johore', 'Better miss me guys cause im going to malaysia tonight !! Whooops ^^'), (3011, 413, 'Johore, Malaysia', 'Never someone priority.'), (3012, 302, 'Singapore', '@franfizzle i wouldn''t know that...nerd'), (3013, 7, 'Johore, Malaysia', 'Amaths stuck again!'), (3014, 1113, 'Johore, Malaysia', 'I''m at Raffles City Shopping Centre (Singapore) w/ 6 others http://t.co/1ymQZNCq'), (3015, 861, 'Johor Bahru, Johore', 'I''m at Bishan MRT Interchange (NS17/CC15) (Singapore, Singapore) w/ 6 others http://t.co/qa1T95NS'), (3016, 618, 'Johore, Malaysia', 'To me it OK to lose you as a friend cause I don''t see the worth anymore lol sorry it just the fact'), (3017, 593, 'Johor Bahru, Johore', 'Omg I''m super bhb. Opps.'), (3018, 1040, 'Kota Tinggi, Johore', 'When I miss you , I stare at your picture and smile (;'), (3019, 1095, 'Johore, Malaysia', 'Need to plan some interval training already and I don''t care already, I just wanna be fit.'), (3020, 1114, 'Johore, Malaysia', 'Transformer is Cool... (@ Universal Studios Sentosa) http://t.co/42TZdOgk'), (3021, 700, 'Johor Bahru, Johore', 'RT @ayuprincessxx: you me together forever? :)'), (3022, 1054, 'Plentong, Johor Bahru', 'Semua orang nak buat aku marah ni apehal? Ingat aku suka? Sial'), (3023, 1115, 'Johor Bahru, Johore', '@CTmoomooboy homeeee!'), (3024, 43, 'Johore, Malaysia', 'Wuu sejuk :/'), (3025, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa hahaha yelaaah wan xD'), (3026, 779, 'Johor Bahru, Johore', '@_hafawati exactly!'), (3027, 1116, 'Johore, Malaysia', 'I rather have school then doing hw in a hoilday.'), (3028, 1117, 'Johor Bahru, Johore', 'Any online game to intro?'), (3029, 1085, 'Johore, Malaysia', '@bellaatong ong have?!'), (3030, 684, 'Johor Bahru, Johore', '@acidlacedkisses ok. Must Sayang me ok. Then only I will get better.'), (3031, 835, 'Johor Bahru, Johore', 'Sota talk........ boring (@ Zhenghua School Hall ) http://t.co/8BaIsWiI'), (3032, 939, 'Johor Bahru, Johore', 'Random JunSeob moment I took during beautiful show &lt;3 http://t.co/MRButN9L'), (3033, 486, 'Johor Bahru, Johore', '@rynnafenske YES . Sama mcm nino punye tk slh aku ..'), (3034, 1118, 'Johore, Malaysia', '@alistairkoh SIAN can''t go over already. Can only go over on the 27th. Can''t see you guys anymore :('), (3035, 722, 'Johor Bahru, Johore', '@hanizahid Brbbb :3 I know :p Lalalaaa'), (3036, 1119, 'Pulai, Johor Bahru', 'I''m at Ah Pai''s Dungeon http://t.co/gDknBYfc'), (3037, 1120, 'Johore, Malaysia', '@nasdfghjkrul tmrw you overnight ?'), (3038, 316, 'Johore, Malaysia', 'On the largest ferris wheel in the world, so it is claimed (@ Singapore Flyer Sky deck) [pic]: http://t.co/GFwCJOsd'), (3039, 1121, 'Johor Bahru, Johore', 'Family dinner! (@ Mr Teh Tarik Eating House w/ 2 others) http://t.co/Wvr2H1BE'), (3040, 1122, 'Riau, Indonesia', 'Capek \nBising'), (3041, 302, 'Singapore', '@franfizzle e-nerd. i dont take econs lol'), (3042, 1123, 'Johore, Malaysia', 'Are times getting bad? @ Middle Road http://t.co/5hmHwl67'), (3043, 411, 'Johor Bahru, Johore', 'Me- You = ?'), (3044, 578, 'Plentong, Johor Bahru', 'With my galll ! (@ Banafee Village Restaurant w/ 2 others) http://t.co/mTNKjOsG'), (3045, 1124, 'Johor Bahru, Johore', 'I''m at Regent Heights (Tower A) (Singapore) http://t.co/Vs1CWR1M'), (3046, 267, 'Johore, Malaysia', '@jeremy_sg @croucherbrewing @goodbeersg lucky you'), (3047, 750, 'Johore, Malaysia', 'hi (@ MDIS UniCampus w/ 5 others) http://t.co/DjyB2yDB'), (3048, 1108, 'Johore, Malaysia', '@xxLastAngelxx I downloading. It looks fun. :D'), (3049, 618, 'Johor Bahru, Johore', 'And realise only you find me as a target to somehow say me when you are drunk lol really thanks for that'), (3050, 486, 'Johor Bahru, Johore', '@CharltonSingleC nooooooooo !'), (3051, 56, 'Johore, Malaysia', '@Laineesays hee, aww, thanks love (: Here love = http://t.co/V6PVKKsG xx'), (3052, 1125, 'Johor Bahru, Johore', 'I''m at Century Square (Singapore, Singapore) w/ 2 others http://t.co/lxS0Mvt1'), (3053, 1126, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 10 others http://t.co/Y0Rllrm6'), (3054, 1040, 'Kota Tinggi, Johore', 'With love and patience , nothing is impossible (:'), (3055, 256, 'Johore, Malaysia', '@kaori_emiko have fun and take care broo'), (3056, 771, 'Johore, Malaysia', '#twitterfollowersiwanttolepakwith @mdsaifullah @DeeDeeNikey @tookitaway @MsMVFA !'), (3057, 1127, 'Johor Bahru, Johore', 'I''m at Heaven  http://t.co/iTLhoPZI'), (3058, 1128, 'Johor Bahru, Johore', 'The sun is so freaking BRIGHT ! ☀☀☀☀☀☀! Ouch , my eye ! http://t.co/ejosIEf5'), (3059, 115, 'Johor Bahru, Johore', 'Idk what to do O_O\nLit first. Then chem. then ummm... F&amp;N notes (?) and my own vocab expansion. I won''t even bother for Maths and Physics...'), (3060, 1129, 'Johor Bahru, Johore', 'I''m at Bangkit LRT Station (BP9) (Singapore, Singapore) http://t.co/2r8HRLx6'), (3061, 1030, 'Johor Bahru, Johore', '@HAHAHAHALIS kalau dier grow macam mana ?'), (3062, 190, 'Johor Bahru, Johore', '“@JessicaBunnyLiu: @chloeliting baby you are just a random a me. Thats y i love u n chloe n jen much much.'), (3063, 302, 'Singapore', '@franfizzle @illicitflesh do you haz tumblr'), (3064, 1130, 'Plentong, Johor Bahru', 'Mandi jap ! (@ Peaqa''s super awesome rooms) http://t.co/AWTOXaLS'), (3065, 1103, 'Johore, Malaysia', '@VELVETSKINNED whuttt tmr? I sure cant then'), (3066, 280, 'Kota Tinggi, Johore', 'I''m at New York New York (Singapore, Singapore) http://t.co/gMvEXxLy'), (3067, 779, 'Johor Bahru, Johore', 'I''m good bruv... I''ll check on it“@MaxwellMystique: @Olliedes sup bro. Check out my new vid on my wage with stars. Has u in it :)”'), (3068, 545, 'Johore, Malaysia', 'Guys change girls like changing underwear while girls change guys like changing bras. HAHAHAHAHA K.'), (3069, 1131, 'Johor Bahru, Johore', 'I''m at Home (: (Singapore) http://t.co/P9XnMJyn'), (3070, 1084, 'Johore, Malaysia', '私わ家に行きたい。。。'), (3071, 411, 'Johor Bahru, Johore', 'Why keep got mails? Zzz.'), (3072, 1133, 'Pulai, Johor Bahru', 'I''m at Taman Pulai Utama (Skudai,, Johor.) http://t.co/g8vC7JLT'), (3073, 782, 'Plentong, Johor Bahru', 'terharu seyyyyy dengoww ayt @AizatAbd ,,:)'), (3074, 1021, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall w/ @ignatius_ @p_ringabell @nat_abitsiao http://t.co/PCegvBd3'), (3075, 771, 'Johore, Malaysia', 'Eh sial ! Have to get back to work !'), (3076, 700, 'Johor Bahru, Johore', 'Hehehe, okey dokey! ^^ RT @NinaBrhn: @afiqahyamin you can meet me yknw, just a tweet away!!! \\355\\270\\230'), (3077, 147, 'Johore, Malaysia', '@FeeyonceS lawan pantun perh?'), (3078, 1134, 'Plentong, Johor Bahru', 'Ni ke tadika korang? :O (@ Sri Kamariah Kindergarten) http://t.co/dYTZAAnG'), (3079, 762, 'Johore, Malaysia', 'I HATE YOU !!'), (3080, 413, 'Johore, Malaysia', 'Gotta stop deceiving myself'), (3081, 1135, 'Johor Bahru, Johore', 'I''m at Mt''S hOuSe  http://t.co/WiDQ0yqc'), (3082, 1108, 'Johore, Malaysia', 'Brothersoft the game.'), (3083, 1136, 'Malaysia', '@Oat_Weare สวัสดีค่ะ ^^พี่โอ๊ตต'), (3084, 337, 'Johore, Malaysia', '@godfreycua @inahbdeguzman haha! WINNER!'), (3085, 1137, 'Johore, Malaysia', 'Me love tea breaks!! &lt;3 (at Maison Kayser) [pic] — http://t.co/CgnGZ2OB'), (3086, 1138, 'Johor Bahru, Johore', 'Dinner~ (@ Compass Point Shopping Centre w/ 15 others) http://t.co/EqCOv5Id'), (3087, 117, 'Johore, Malaysia', '@paperdrizzle hhahaha you just did!!'), (3088, 1139, 'Johore, Malaysia', 'I''m at CTC Holidays (Singapore) http://t.co/WO0OL9wT'), (3089, 1140, 'Johor Bahru, Johore', 'My shoes can never be white -__-'), (3090, 1141, 'Johor Bahru, Johore', 'I''m at NTU Canteen B (Singapore, Singapore) http://t.co/YkfKJdeC'), (3091, 722, 'Johor Bahru, Johore', 'ALMOST MAGHRIB.. WHERE ARE YOU MOM, BROTHAAA? :x'), (3092, 593, 'Johor Bahru, Johore', '@AngelusChan aww hahahah do sweet I guess I don''t needa get a bf alrdy hahaha'), (3093, 1142, 'Johore, Malaysia', 'Busy day ahead tmr !'), (3094, 144, 'Johor Bahru, Johore', 'What The Hell'), (3095, 627, 'Johore, Malaysia', '@schreiSASA lololololol which line?'), (3096, 700, 'Johor Bahru, Johore', '@katydara Why you so low self-esteem huh!?!? I dont think you should lah, ok alreadyyyy but up to you lah :)'), (3097, 1143, 'Plentong, Johor Bahru', 'I''m at Changi Airport http://t.co/m2NvDTON'), (3098, 1040, 'Kota Tinggi, Johore', 'They say you only fall in love once . But everytime I look at you , I fall in love all over again &lt;3'), (3099, 285, 'Singapore', 'I miss the old you'), (3100, 1144, 'Johor Bahru, Johore', 'I just realize that right side of my hair look like shit,stupid auntie anyhow slope,I feel like taking a scissors and cut by my self ;('), (3101, 1145, 'Johore, Malaysia', ':-) (@ 121 Meyer Road, The Makena) http://t.co/lohDlpyG'), (3102, 310, 'Kota Tinggi, Johore', 'Accessoriesssssss... (@ Diva @ Jurong Point) http://t.co/BgrYn93g'), (3103, 144, 'Johor Bahru, Johore', 'Freaking Jealous'), (3104, 1146, 'Johore, Malaysia', 'At vivo now . First time we are having dinner XD'), (3105, 889, 'Johore, Malaysia', 'All set, hoping for a good one! http://t.co/m3hwEAL6'), (3106, 1147, 'Johor Bahru, Johore', 'I''m easily mindfucked.'), (3107, 486, 'Johor Bahru, Johore', '@rynnafenske haha kau biar betool ???'), (3108, 497, 'Plentong, Johor Bahru', '@beehaziz kak uyul rainbow colorful dia sedapps!!! Xsama dgn yg kek purple tu'), (3109, 1148, 'Johor Bahru, Johore', 'Having BJ with @Joon_Yoong @awesomeeINC @Judehollers @Stage_95 @ShinHaosh and jy''s bro http://t.co/e8reQg30'), (3110, 1021, 'Johor Bahru, Johore', 'I''m at Frolick http://t.co/6TZbmowv'), (3111, 1150, 'Johor Bahru, Johore', 'I''m at The Coffee Bean &amp; Tea Leaf (Singapore) http://t.co/Etsi8A17'), (3112, 38, 'Johore, Malaysia', '@SupYoEee i do larh (:'), (3113, 627, 'Johore, Malaysia', '@Nas_Lurv i miss you also sia..... Uh. Aiya idk what to call you trolololol'), (3114, 1151, 'Johor Bahru, Johore', '@loserGC avi?'), (3115, 486, 'Johor Bahru, Johore', '@ShanmuStrikes aiseyyy (:'), (3116, 722, 'Johor Bahru, Johore', '@noorul_syaffiqa hahaha siot je kaau xD'), (3117, 1147, 'Johor Bahru, Johore', '@sweetdolor who sia!?'), (3118, 782, 'Plentong, Johor Bahru', 'nenek nk ubat nyamuk boleyyyy,,,hihihihiih'), (3119, 1079, 'Singapore', 'S''pore High Ct to be asked on 30 Mar to decide if PM compelled to call by-elections within certain timeframe. http://t.co/g5YtGZvP #sgconlaw'), (3120, 684, 'Johor Bahru, Johore', '@acidlacedkisses @tanjken dw to pass my sickness to people.'), (3121, 1152, 'Johore, Malaysia', 'Big bang - Lies .'), (3122, 1030, 'Johor Bahru, Johore', '@HAHAHAHALIS ohk'), (3123, 1153, 'Johor Bahru, Johore', '@honcheng @echoz how much was it though?'), (3124, 1154, 'Johore, Malaysia', 'I hope it''s nice! Our early 19 months anniversary (: (@ Tony Roma''s) http://t.co/oQhypdJL'), (3125, 486, 'Johor Bahru, Johore', '@Reginezxoxo @WholeLottaBRYAN @rafash_ash lepak my blok tonight .'), (3126, 1155, 'Singapore', 'back at home'), (3127, 1156, 'Riau, Indonesia', 'Having headache now. Wanna go home. :('), (3128, 679, 'Johor Bahru, Johore', '@Hongyeahh :)'), (3129, 782, 'Plentong, Johor Bahru', 'oooo,,,wc :) @AizatAbd'), (3130, 528, 'Johor Bahru, Johore', '@Limqiing Hais. Everyone bian tai de okay? :P'), (3131, 771, 'Johore, Malaysia', '#NowPlaying : Get back by Demi Lovato :)'), (3132, 975, 'Johor Bahru, Johore', '@Nuraidilah really??nanti raya dtg lah rumah aku buatkan kau special!!hehe'), (3133, 411, 'Johor Bahru, Johore', 'Got 1k of mails haven''t open. Imfao'), (3134, 106, 'Johor Bahru, Johore', 'Almost two hours of balling with pinoys. Damn shag . At least can play properly cause they know the plays . Play with other people fun sia'), (3135, 1126, 'Johore, Malaysia', 'I''m at Golden Village (Singapore, Singapore) w/ 5 others http://t.co/ApsRpnT9'), (3136, 627, 'Johore, Malaysia', 'Cb ah monday last two periods with Rosnani sia.'), (3137, 388, 'Johore, Malaysia', '@Jingkailim nübox. I last sunday forgot go IT Fair after work to buy sia. If not can save 1 meal $.'), (3138, 1151, 'Johor Bahru, Johore', 'Finally done wif home econs'), (3139, 38, 'Johore, Malaysia', 'Just because i broke the spoon by ACCIDENT and i got a MEGA HUGE scolding. How nice. )'':'), (3140, 1157, 'Kota Tinggi, Johore', 'I''m at Jurong East St 21 (Singapore, Singapore) http://t.co/XiiRXBYZ'), (3141, 506, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 35 others http://t.co/avfwe9Cl'), (3142, 1158, 'Johore, Malaysia', 'I''m at Starbucks (Singapore, Singapore) http://t.co/UU6YARYz'), (3143, 1147, 'Johor Bahru, Johore', '@NighyWalk yea I trying to adapt in it:('), (3144, 1159, 'Johore, Malaysia', 'GOD saved my life.. Didn''t know my tyres are so badly damaged already.. cannot imagine what will... (at Caltex) [pic] — http://t.co/4oC1rKYx'), (3145, 1007, 'Johor Bahru, Johore', '@JonPeh hehe yup! :)'), (3146, 1160, 'Johor Bahru, Johore', 'Four hours nap (Y)'), (3147, 764, 'Johor Bahru, Johore', '@WolfbassDNivra because you do not wanna invite me!'), (3148, 1161, 'Johor Bahru, Johore', 'Loves it when random coos youth just appear in my dreams'), (3149, 1125, 'Johor Bahru, Johore', 'I''m at MANGO @ Tampines Mall http://t.co/toZwHdxe'), (3150, 1162, 'Johor Bahru, Johore', 'I''m at Clinton''s Crib:) (Singapore, Singapore) http://t.co/URaLd5PC'), (3151, 174, 'Johore, Malaysia', 'I''m at Bugis Street (Singapore) w/ 14 others http://t.co/WiUQTDEy'), (3152, 142, 'Johore, Malaysia', 'If you can lie to others,why can''t you lie to me too? Vice-versa.'), (3153, 1147, 'Johor Bahru, Johore', '@angkasacass I ask you for dinner but you said you not free!'), (3154, 782, 'Plentong, Johor Bahru', 'x baik buruk sangka kat orng :)'), (3155, 310, 'Kota Tinggi, Johore', '@eleapot hahahaa oo nsan knb??'), (3156, 1163, 'Johore, Malaysia', 'Dinnertime:) (at Darren''s Palace) [pic] — http://t.co/Mh8Xhcp9'), (3157, 1040, 'Kota Tinggi, Johore', 'Young , wild , free (:'), (3158, 771, 'Johore, Malaysia', 'Nak carik mataer matlap uh :)'), (3159, 1123, 'Johore, Malaysia', 'Only 7 minutes to get my bubble tea. There must be a downturn. @ KOI Café http://t.co/jZppXFF0'), (3160, 684, 'Johor Bahru, Johore', '@tanjken @acidlacedkisses when I''m better ok. Hehe.'), (3161, 1164, 'Johore, Malaysia', 'Bluezzz http://t.co/bwF9wnWb'), (3162, 1165, 'Johor Bahru, Johore', '@rachteh free from my office! :)'), (3163, 1166, 'Johore, Malaysia', 'So old still eat kids meal @ Pastamania http://t.co/lWq3HXsr'), (3164, 1167, 'Johor Bahru, Johore', 'I''m at Xy''s House http://t.co/J8ZXOzph'), (3165, 566, 'Johore, Malaysia', 'I''m at Marina Square (Singapore, Singapore) w/ 5 others http://t.co/l0B5pWS0'), (3166, 273, 'Johor Bahru, Johore', 'Simplicity is beauty! ;) @ Bus Stop 54261 Ang Mo Kio Stn http://t.co/YVdoKlZ4'), (3167, 1168, 'Johore, Malaysia', 'Buffet is 肥 (@ Parkroyal on Beach Road) http://t.co/PgitqNva'), (3168, 666, 'Johore, Malaysia', '@weitheling ai seh nice pic'), (3169, 1169, 'Johore, Malaysia', 'john butler trio tonight. .. :)'), (3170, 1170, 'Johore, Malaysia', 'FISH|DUCK|BRINJAL @ Crystal Jade @ Parkway Parade http://t.co/4DH53yJ8'), (3171, 733, 'Johor Bahru, Johore', '@petrinaheartxcz ya lor, they damn fail sia'), (3172, 1171, 'Johore, Malaysia', 'California pizza kitchen! @ The Coffee Bean &amp; Tea Leaf http://t.co/Z4Zt2M1X'), (3173, 1172, 'Johor Bahru, Johore', 'Otw to visit Aunty and e new life who was brought into this weird world. ;D (@ Inside e cab) http://t.co/rVrX8Tv5'), (3174, 1172, 'Johor Bahru, Johore', 'I just ousted Nurul as the mayor of Inside e cab on @foursquare! http://t.co/VTvCe90z'), (3175, 1173, 'Plentong, Johor Bahru', '#KenanganTadika Siapkan kerja cepat-cepat then siapa dh siap boleh balik dulu. sebelum balik kne baca doa!! :)'), (3176, 422, 'Johor Bahru, Johore', 'Nothing in life is hard. It''s just the person itself making it hard.'), (3177, 305, 'Johore, Malaysia', 'Celebrating @janeanggg''s bday w @ot6loved @khunnie0729 @popthebottles @krystellizinc_ @Tigger_Promises http://t.co/35q9taeb'), (3178, 1174, 'Johore, Malaysia', 'View from the merlion''s head @ Merlion http://t.co/ytizJxq5'), (3179, 56, 'Johore, Malaysia', 'I think The Civil Wars make beautiful music. I find serenity from their songs.'), (3180, 106, 'Johor Bahru, Johore', 'And I ran like mad . Last time played like this was in primary school tournament. Imagine the droughts I been through for 5 years.'), (3181, 1175, 'Johor Bahru, Johore', 'I''m at my awesome home - hougang ave 8 http://t.co/sbcn8q0F'), (3182, 593, 'Johor Bahru, Johore', '@AngelusChan oh ya you my bf alrdy ahahha Shannen gonna kill me!'), (3183, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa hahaha diary eh? Okay sayang :) .'), (3184, 684, 'Johor Bahru, Johore', '@acidlacedkisses @tanjken your immune.'), (3185, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh nope im happy'), (3186, 1176, 'Johore, Malaysia', 'I''m at Euro RSCG Singapore (Singapore, Singapore) w/ 2 others http://t.co/h18qiXPK'), (3187, 1177, 'Johore, Malaysia', 'Famished! @ Kampong Glam Cafe http://t.co/Xn1UJial'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (3188, 1178, 'Kota Tinggi, Johore', 'Party time! :D @be_happyhoney @j_t_gumban @iamryan2316 (@ KFC) http://t.co/H0b48PmF'), (3189, 815, 'Plentong, Johor Bahru', 'I''m at iShop Mobile Accessories KSL City (Johor Bahru, Johor) http://t.co/iev2fbO2'), (3190, 975, 'Johor Bahru, Johore', 'Had a great massage session today @ Cik Rus''s plc.Hopefully baby grows big &amp; healthy.'), (3191, 1068, 'Johor Bahru, Johore', 'Why am i like that?:('), (3192, 679, 'Johor Bahru, Johore', '#peopleiwanttomeet LEE MINHO LEE MINHO LEE MINHO'), (3193, 302, 'Singapore', '@franfizzle @illicitflesh WHY NO ONE TELL ME'), (3194, 557, 'Plentong, Johor Bahru', '@YDiyanaa ==bank kamu xada duit?'), (3195, 147, 'Johore, Malaysia', 'Mak ai bago nyerh dini, mana boleh jadi ni!'), (3196, 771, 'Johore, Malaysia', 'People always say my musics too loud .'), (3197, 1160, 'Johor Bahru, Johore', '@zheng_weilun @jiahong97 @debtornickson97 where your playing ?'), (3198, 1153, 'Johor Bahru, Johore', '@echoz @honcheng wow! Hmmmmp. Guess I won''t be getting it.'), (3199, 1179, 'Riau, Indonesia', '@JonasShopIndo sis baju jonas yang hitam masih ada ? sama jamnya 1D ?'), (3200, 771, 'Johore, Malaysia', 'Sorry for party rocking !'), (3201, 679, 'Johor Bahru, Johore', 'Chey who want to miss you :b'), (3202, 313, 'Plentong, Johor Bahru', '@Missyaya93 wawwww masok ayor....x pernah rase lg..ok ape skali skale an an an..hahaha'), (3203, 877, 'Johor Bahru, Johore', 'i don''t blame anyone for what happened between us, i blame you for breaking my heart. &lt;/3'), (3204, 1054, 'Plentong, Johor Bahru', 'Aku tengah lapar+pening. Nak cari pasal tolong lah nanti k. Please'), (3205, 106, 'Johor Bahru, Johore', 'Shuang sia . Keep bunny hop LOL and jumpshot. Fade away cmi . :('), (3206, 1180, 'Johor Bahru, Johore', 'Ides of March'), (3207, 643, 'Johor Bahru, Johore', '@Blue_blu_sky I also dk i am bored.'), (3208, 496, 'Singapore', 'Dont feel like collecting the movie tickets ...'), (3209, 1181, 'Johore, Malaysia', 'I hate it when people breathe into the phone. It''s super disgusting.'), (3210, 829, 'Johore, Malaysia', '@jinkoi_ @sherilyn_tan haha lol. Next time bring u guys'), (3211, 536, 'Johore, Malaysia', '@ChangHong_Hoo LOL yupppppp so funny :P'), (3212, 1182, 'Johore, Malaysia', 'Riding time @ East Coast Park http://t.co/j1i9FtGC'), (3213, 938, 'Johore, Malaysia', '@ScarlettKaylene me :D'), (3214, 1183, 'Johore, Malaysia', 'I''m at Advance Apartment http://t.co/KJ0wrDEG'), (3215, 1184, 'Johore, Malaysia', 'Woohoo. jail broken my ipad 2 !'), (3216, 1185, 'Johor Bahru, Johore', '@semirarakid @_jeremyroy there''s also a bikshop in Chinatown, italian mayari, nice guy. May isa naman sa River Valley, puro Giant bikes.'), (3217, 1186, 'Johore, Malaysia', 'Before you start blaming everyone else, take a good long look at yourself. I''m no saint, neither are you.'), (3218, 1187, 'Johor Bahru, Johore', '#SomePeopleNeedTo stop being so shameless and take a look at the mirror.'), (3219, 38, 'Johore, Malaysia', 'The fucking medicine is making my stomach hurt.'), (3220, 782, 'Plentong, Johor Bahru', 'romintik nyeww kak @EiraSyaziraS ngn hubby dia,,,,semogaaaa berkekalan hingga ke akhir hayattttt,,,,,,aminnnnnnn :))))'), (3221, 1185, 'Johor Bahru, Johore', '@semirarakid @_jeremyroy bili ka na bike!! Sa sunday, brick training na!'), (3222, 513, 'Johor Bahru, Johore', 'Sometimes it last in love but sometimes it hurts instead ,'), (3223, 144, 'Johor Bahru, Johore', 'Why?'), (3224, 618, 'Johor Bahru, Johore', '@karinelinn Eh can come what app me need talk to you something'), (3225, 627, 'Johore, Malaysia', 'Eh boy, your username so gay sia hahahahahahahaahahahahhahah'), (3226, 1188, 'Malaysia', 'มาหา กุ้ง หอย ปู ปลา (at ตลาดหาดใหญ่ใน) — http://t.co/hmF3UShc'), (3227, 938, 'Johore, Malaysia', 'Finally done with my podcast.'), (3228, 643, 'Johor Bahru, Johore', 'Zhuang Ming is 2/4''s leader. He has gain the most respect. Following up is Permas.'), (3229, 764, 'Johor Bahru, Johore', '&lt;3 http://t.co/EgxCUJlU'), (3230, 144, 'Johor Bahru, Johore', 'Sad Life :('), (3231, 41, 'Plentong, Johor Bahru', 'tego la aku, tego la :D'), (3232, 1189, 'Johore, Malaysia', 'the taste brings back a childhood memory @ Pullman Bakery http://t.co/AdI0ayBW'), (3233, 302, 'Singapore', '@illicitflesh @franfizzle YES IT DOES YES IT DOES :D ok time to tell and follow'), (3234, 121, 'Johore, Malaysia', 'The bus is taking an eternity...the driver sux...'), (3235, 1190, 'Johor Bahru, Johore', 'No one likes You'), (3236, 551, 'Johor Bahru, Johore', '@Shermainezxc @kohkohcrunchhh shawn always funny ah like his face'), (3237, 1191, 'Plentong, Johor Bahru', '@IlyanaLoliey Thankss :)'), (3238, 411, 'Johor Bahru, Johore', 'My phone keep having mails every 2 mins. Which guy spamming sia.'), (3239, 545, 'Johore, Malaysia', '@Fazlyn_ Heeeeey. (;'), (3240, 700, 'Johor Bahru, Johore', 'I feel miserable without you'), (3241, 846, 'Johore, Malaysia', 'penat.'), (3242, 1192, 'Johor Bahru, Johore', '@shanealv bro why cant i get through u??'), (3243, 762, 'Johore, Malaysia', '@ImmaSimple_Girl anyway, tomorrow not going out with you already'), (3244, 1185, 'Johor Bahru, Johore', '@iamonboycott you''re flying to Oslo?! How cool is that?!!?'), (3245, 1193, 'Johor Bahru, Johore', '#sunset @ Blk 513 Choa Chu Kang St 51 http://t.co/KBfz35id'), (3246, 1194, 'Malaysia', '@Ry_Patchanit คอนพี่เรืองหมดหวังตั้งนานแล้ว ไปไม่ได้แล้ว ^^'), (3247, 939, 'Johor Bahru, Johore', '@b2utyinspiritkm what -____-'), (3248, 782, 'Plentong, Johor Bahru', 'lolllllll ayt dia menyentuhhhhhhh'), (3249, 1195, 'Johor Bahru, Johore', 'I''m at Lorong Chuan MRT Station (CC14) (Singapore, Singapore) http://t.co/tbqyYiJC'), (3250, 552, 'Johore, Malaysia', 'alaaaa...xde sambal belacan.. :('), (3251, 1196, 'Kota Tinggi, Johore', 'Cintaku lebih besar dari cinta''y.. Mesti''y kau sadari itu.. Bukan dia, bukan dia.. Tapiiiii akuuuuuuuu... #nyenyonk http://t.co/q9P8ZOoW'), (3252, 486, 'Johor Bahru, Johore', '#PeopleIWantToMeet is those people who wants to meet people that like people who like those kind of people like me .'), (3253, 1197, 'Johore, Malaysia', '@IVIicroseiei who?'), (3254, 1066, 'Johore, Malaysia', 'No matter how open the person says he/she is, there will always a time that they wanted to be alone.'), (3255, 206, 'Singapore', 'crap tomorrow cca 1 pm -.- to 5,30 woah #fml'), (3256, 56, 'Johore, Malaysia', '@Laineesays hee, no biggie xx'), (3257, 762, 'Johore, Malaysia', '@_Jesusbeloved other than you lah(; seriously fuck my whole life maaan!!!'), (3258, 1165, 'Johor Bahru, Johore', '@rachteh u think buffet ah! Hahha! My colleague give then I take only.'), (3259, 847, 'Johore, Malaysia', 'I''m at Rajah Inn Restaurant (Singapore, Singapore) http://t.co/DG0fcuU2'), (3260, 772, 'Johor Bahru, Johore', 'DEVDAS on Zee Cinema now! Dah lama tk tgk! Gonna concentrate! Great cast- Shah Rukh Khai, Aishwayra Rai &amp; Mahdhuri Dixit!'), (3261, 627, 'Johore, Malaysia', 'Lol all the stress is coming back to me. I want to stay in malaysia.'), (3262, 72, 'Johor Bahru, Johore', '@doubleyouuem LOL. I tot u gonna say dream on or something liddat. (Y) woo~'), (3263, 147, 'Johore, Malaysia', 'Malam ni amat sejuk, bilekah saya akan membuat tajuk?'), (3264, 1198, 'Johor Bahru, Johore', 'I''m at Presbyterian High School (Singapore) http://t.co/PLauAFT8'), (3265, 551, 'Johor Bahru, Johore', 'maybe nt goin tmr'), (3266, 1199, 'Malaysia', '@Mocca_cf คิดถึงยิ่งกว่า เเบร่ๆ'), (3267, 533, 'Johore, Malaysia', 'I''m at Block 106 Aljunied Crescent (Geylang, Singapore) http://t.co/64oqn9sD'), (3268, 1200, 'Johore, Malaysia', 'I''m at Fukumaru Fish Market [pic]: http://t.co/ldCuD3Jk'), (3269, 1201, 'Singapore', '@iamtachie wahahaha POKER FACE!!! LOL &gt;:D ang adik tlgah wahahahahaha =___= hahaha tawa ako ng tawa ngaun xDD LOL'), (3270, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN nope. Tmr not supposed to have trng'), (3271, 545, 'Johore, Malaysia', 'I hate when people private their profile. You can follow me but I can''t follow back. The hell.'), (3272, 38, 'Johore, Malaysia', 'It wasn''t on purpose to break the spoon okay. You think i want it to break? No.'), (3273, 771, 'Johore, Malaysia', 'Later I play draw something at work lah . Now I cold :S'), (3274, 771, 'Johore, Malaysia', 'Kenyang plak aku .'), (3275, 206, 'Singapore', '@msimpletontvk SL/prefect? :D'), (3276, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa ohhhh . You still haven''t bathe uh ? Hahah'), (3277, 1144, 'Johor Bahru, Johore', 'Going to pray after eating my BBQ chicken patties with rice and macdonald''s curry sauce ;('), (3278, 228, 'Johor Bahru, Johore', 'Don''t be a Kid'), (3279, 938, 'Johore, Malaysia', '@Kesterkjw MeiMei come tmr leh ^^?'), (3280, 206, 'Singapore', '@msimpletontvk grats! ;3'), (3281, 1202, 'Johor Bahru, Johore', 'Having dinner;)'), (3282, 1173, 'Plentong, Johor Bahru', 'nikmatnyaaa tdo petangggg Arh selamat petang semua :D *dah gelap dah :('), (3283, 1203, 'Johor Bahru, Johore', 'I''m at 682B Woodlands Drive 62 http://t.co/4P051vnq'), (3284, 324, 'Johor Bahru, Johore', '@realadiesman217 suruh your kekasih gelap tu dance with u! ^^'), (3285, 337, 'Johore, Malaysia', '@godfreycua @inahbdeguzman nevermind! Mstress lang tyo s knya hehe!'), (3286, 411, 'Johor Bahru, Johore', 'Maybe i am wrong. Choose you is my Mistake.'), (3287, 144, 'Johor Bahru, Johore', 'Bye. Wanna eat... AGAIN.'), (3288, 1204, 'Johor Bahru, Johore', 'I''m at Woodlands Blk 540 Playground http://t.co/eaUfi8LV'), (3289, 413, 'Johore, Malaysia', '@Jikunnnnn you wanna die arh?'), (3290, 1205, 'Johor Bahru, Johore', 'D&amp;D ! (@ Singapore Island Country Club) http://t.co/XUrirZDW'), (3291, 1197, 'Johore, Malaysia', '“@LICIA_sxy: Played Audi with @YunJaennie @Jonielogy @GuokanggYang and @VALENCIAAAA_ :DD” you know how play meh? O_O'), (3292, 302, 'Singapore', '@franfizzle @illicitflesh funneh eh ok'), (3293, 206, 'Singapore', 'wth....the sec 1 grps -_- #fail'), (3294, 593, 'Johor Bahru, Johore', '@Jae_Jerome no la I do nice where will blame you?'), (3295, 1206, 'Johor Bahru, Johore', 'Looking winter time shop (@ Tampines Mall w/ @ndrewthebeauty) http://t.co/pGQq74m6'), (3296, 552, 'Johore, Malaysia', 'mesti makcik tu lupe..sos pon xde..xpe2...x baek complaint2..kne bersyukur dengan apa yang ade :)'), (3297, 1207, 'Johore, Malaysia', 'Lesson learned - no more astons during stomach flu. :(('), (3298, 627, 'Johore, Malaysia', '@Nas_Lurv hahahahaha okay sure!!!! CHICKEN NUT BREADDDD'), (3299, 144, 'Johor Bahru, Johore', 'K can...'), (3300, 413, 'Johore, Malaysia', '@Jikunnnnn then I must be a fucking good friend always scold you'), (3301, 1208, 'Kota Tinggi, Johore', '“@iamxtelmae: Ako na napagalitan :| BV!” ---why nene?'), (3302, 1209, 'Malaysia', 'I''m at my room Tacki (''-'') (Samnak Taeo, Songkhla) http://t.co/apdM98Pe'), (3303, 1204, 'Johor Bahru, Johore', 'I''m at Blk 539, Woodlands Drive 16 http://t.co/n3NSKiiK'), (3304, 547, 'Johor Bahru, Johore', '@shanjingg @zhirennn hahaha you still can laugh! He told me abt it alr. That noob! Steal all the money from him!!'), (3305, 485, 'Johor Bahru, Johore', 'I''m at Bishan Community Library (Singapore) w/ 2 others http://t.co/JWi4rxTx'), (3306, 1210, 'Johore, Malaysia', 'I''m at O''Divino Gelato http://t.co/r5IeDJyg'), (3307, 1211, 'Johore, Malaysia', 'I''m at Khai''s Crib (Singapore) http://t.co/5nxgpV00'), (3308, 206, 'Singapore', 'so despo one some of them. find real lvoe can or not , there also not dating website.'), (3309, 411, 'Johor Bahru, Johore', 'You can''t admit it.'), (3310, 832, 'Johor Bahru, Johore', '@nehnehpoopoo woodland:)'), (3311, 1212, 'Johor Bahru, Johore', 'No matter what they say, don’t ever change who you are.'), (3312, 206, 'Singapore', '@msimpletontvk JIAYOU!'), (3313, 247, 'Johore, Malaysia', 'If only things now could be exactly the same as the day we met.'), (3314, 782, 'Plentong, Johor Bahru', 'aq cukew tengok kwn-kwn aq happyyy,,,boley aq tumpang cikitttt,,walauponnn dlm kple aq ada problm bsrrrrr,,,:""""")'), (3315, 627, 'Johore, Malaysia', '@Nas_Lurv whoooooo. Hahahaha text me the name!!!'), (3316, 1108, 'Johore, Malaysia', '@xxLastAngelxx You got play? D:'), (3317, 1213, 'Malaysia', 'jam segini masih dikantor ...'), (3318, 1214, 'Kota Tinggi, Johore', 'Finally I''m reaching home!! Yes ar!'), (3319, 1215, 'Johor Bahru, Johore', 'I''m at Q&amp;M Dental Group http://t.co/YbBFWev6'), (3320, 1095, 'Johor Bahru, Johore', 'Breathing technique, mindset, proper training, open out your legs.'), (3321, 1216, 'Johor Bahru, Johore', '[delayed] (@ My Warm Lovely Home) http://t.co/XF7H32Zn'), (3322, 486, 'Johor Bahru, Johore', '@Reginezxoxo @rafash_ash lepak blok aku tgk aku main takraw lps tu tgk aku naik krete pegi malaysia lps tu tgk lah mane korg nk pegi plk .'), (3323, 1217, 'Johor Bahru, Johore', 'Dinner with @FangReHan, @chesterthen and @ArjunKareti (@ Pastamania) http://t.co/9PIhQyjR'), (3324, 1218, 'Johor Bahru, Johore', '@JustinnnnO tmr you got school ?'), (3325, 771, 'Johore, Malaysia', 'Look at the star , Look how they shine for you .'), (3326, 147, 'Johore, Malaysia', 'Syafiqah takde panton kerh, atau layankan saka.. haha.. no offence..'), (3327, 1219, 'Johor Bahru, Johore', 'Talent night!!!! ☺♥♥♥ (@ Zhenghua Primary School) http://t.co/zcTETQA2'), (3328, 684, 'Johor Bahru, Johore', '@tanjken @acidlacedkisses ken no need to measure. I know. You know. Ken Liao. Hehe'), (3329, 732, 'Kota Tinggi, Johore', 'You know what I''m capable of , is just the matter of time.'), (3330, 1220, 'Johore, Malaysia', '@OnlyNoah Go eat go eat :P'), (3331, 1221, 'Plentong, Johor Bahru', '@ai_manz apxb'), (3332, 498, 'Johor Bahru, Johore', 'I told myself not to cry , but I can''t help it ...'), (3333, 411, 'Johor Bahru, Johore', 'Thanks for your verything, Maybe i don''t deserve it.'), (3334, 1222, 'Johor Bahru, Johore', '13 years ago.. Today..much has changed..'), (3335, 1208, 'Johor Bahru, Johore', '“@iamxtelmae: i miss papa.badly :|” ---sino ba hindi? pray for him always...'), (3336, 1153, 'Johor Bahru, Johore', '@mugunthkumar I think GUI is fine and they are getting better at illustrating in git context. I saw myself going back to CLI these days.'), (3337, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh @shermainezxc hah tell him change to tootface'), (3338, 740, 'Johore, Malaysia', 'Woot ! yeayy ! yeayy ! packing packing ! ready for KL :D o yeayy ! excited nak jumpa #SMASH :D heheww ;p'), (3339, 121, 'Johore, Malaysia', 'Weirdly good day. I get accepted somewhere, i get to talk to em, i get to watch a movie. Guess i made the right call.'), (3340, 530, 'Malaysia', 'I''m at B2S (บีทูเอส) (Hat Yai, Songkhla) http://t.co/xXbRzX5u'), (3341, 144, 'Johor Bahru, Johore', 'Feeling like don''t want to do the homework.'), (3342, 455, 'Johore, Malaysia', 'Sex (@ 1벅2일 (1Night 2Day) Korean BBQ w/ 2 others) http://t.co/PMwVnWDG'), (3343, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ haha if u all willing to come all the way to the east then ya it''s fine by me'), (3344, 938, 'Johore, Malaysia', 'Fking evil sia . RT @Kesterkjw @ScarlettKaylene Then you jog lor. Play catching with them. See you faster or their bike faster. LOL.'), (3345, 1223, 'Johore, Malaysia', 'I''m at Bedok ClubFITT Gym (Singapore, Singapore) http://t.co/DzsSRdDo'), (3346, 990, 'Johor Bahru, Johore', '@huiyichua thank you! :)'), (3347, 206, 'Singapore', '@msimpletontvk awesome ! :DD'), (3348, 1224, 'Johor Bahru, Johore', 'I''m at Forever Young''s Paradise ♥ http://t.co/OKb29BVD'), (3349, 433, 'Johore, Malaysia', '@alexgozum hahaha! ganyan nga sila... hahahah!'), (3350, 1225, 'Johor Bahru, Johore', 'I''m at Blk 101 Yishun Avenue 5 (Yishun, Singapore) http://t.co/SdHG2gwA'), (3351, 433, 'Johore, Malaysia', '@JrKomikero so ano ang hatol? hehehe!'), (3352, 1197, 'Johore, Malaysia', '@LICIA_sxy I only can play until around 110bpm LOL. Im not a keyboard warrior LOL.'), (3353, 1226, 'Johor Bahru, Johore', 'At Nakhon Kitchen — http://t.co/5MpjGr13'), (3354, 412, 'Johor Bahru, Johore', '@CalebCarrot I need towel ah'), (3355, 1227, 'Johor Bahru, Johore', ':) @ Othman''s http://t.co/2svZpkmg'), (3356, 1152, 'Johore, Malaysia', '@xXiao_Pangx YEAH MAN ! ^_^ i think alot of people forgot about this song le . :('), (3357, 1173, 'Plentong, Johor Bahru', 'wanginyaaaaa bau saya *muntah*'), (3358, 1228, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang MRT/LRT Station (NS4/BP1) (Singapore, Singapore) w/ 4 others http://t.co/1MJ2jE9x'), (3359, 206, 'Singapore', 'shoots forgot to take pic with u&gt;:('), (3360, 890, 'Malaysia', '@Panitsupa_nw ^____________^'), (3361, 782, 'Plentong, Johor Bahru', 'aq cukewww tengok orang dlmmm twitter niew happyyyyy,,,'), (3362, 486, 'Johor Bahru, Johore', '@rynnafenske haha aku pn tatau . K pape meet kt basketball court sane . Byr . (:'), (3363, 829, 'Johore, Malaysia', '@jinkoi_ @sherilyn_tan haha lol fail directions by me XD'), (3364, 1212, 'Johor Bahru, Johore', 'I don’t like it when people talk like they know me so well.'), (3365, 1204, 'Johor Bahru, Johore', 'I''m at 538 Woodlands Drive 16 http://t.co/yC9bOUv9'), (3366, 1229, 'Johor Bahru, Johore', 'Suddenly craving for Wendy''s ;) @ Wendy''s @ GV Yishun http://t.co/ewFex1GM'), (3367, 1230, 'Johore, Malaysia', 'Uitzicht vanaf de kamer (@ Hotel Miramar 15th Floor Singapore) [pic]: http://t.co/HPH91RYE'), (3368, 98, 'Johor Bahru, Johore', 'Do not understand potato or potatoes'), (3369, 206, 'Singapore', '@msimpletontvk :DD SPAZZ. XD the world must love kpop ;3 &lt;3'), (3370, 1231, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 24 others http://t.co/yyIuATiu'), (3371, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN dunno if he wan to play or not'), (3372, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh triple confirm'), (3373, 1232, 'Malaysia', 'I''m at my crib (berakas kem :3) http://t.co/7gMVWCt9'), (3374, 1066, 'Johore, Malaysia', 'Sometimes being alone makes me think clearly and create solution for problems easily.'), (3375, 1233, 'Malaysia', 'I''m at Oishi Ramen (โออิชิ ราเมน) (Hat Yai, Songkhla) http://t.co/PqBk2KyC'), (3376, 1190, 'Johor Bahru, Johore', 'Maths is just too ''amazing'''), (3377, 782, 'Plentong, Johor Bahru', '#np kakak aq dh balikkk'), (3378, 138, 'Johore, Malaysia', 'RT @Vantsoul: After physical bonding :D movie ! XD'), (3379, 59, 'Johore, Malaysia', 'Craving for macs!'), (3380, 1234, 'Johore, Malaysia', 'Free or paid? RT @g33kwannabe: ooh just discovered HelloFax to sign and send documents online. nice! https://t.co/kuNpruaD'), (3381, 1235, 'Johor Bahru, Johore', 'Watching "the lorax" with my family!!:D (@ NEX Shaw Theatres) http://t.co/9Ble80op'), (3382, 62, 'Johor Bahru, Johore', 'ku sedar siapa diriku ini .. RT“@tweetlipxz: @ForeverChronic You annoying prick -_- hahaha k fake”'), (3383, 1153, 'Johor Bahru, Johore', '@echoz @honcheng can''t justify the cost at 80 90. More than aperture. And it have quite little use case as for now.'), (3384, 1236, 'Pulai, Johor Bahru', '@junesap, i need ur help'), (3385, 533, 'Johore, Malaysia', 'I''m at Grandma House Blk 106 http://t.co/LcNkAUuh'), (3386, 1237, 'Johor Bahru, Johore', 'I''m at Singapore Sports School (Singapore, Singapore) w/ 5 others http://t.co/dcKvh8VN'), (3387, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh angry for what????good what'), (3388, 1238, 'Johore, Malaysia', 'I''m at Todai (Singapore) http://t.co/SZMilTxo'), (3389, 1239, 'Riau, Indonesia', 'I''m at Tanjong Beach Club (Sentosa Island, Singapore) w/ 2 others http://t.co/EOq66pku'), (3390, 771, 'Johore, Malaysia', '@19fadilah95 Okay nanty I''ll play :)'), (3391, 1233, 'Malaysia', 'I''m at Shabushi (ชาบูชิ) (Hat Yai, Songkhla) http://t.co/KizyWYyU'), (3392, 1108, 'Johore, Malaysia', 'GunZ violent?'), (3393, 1054, 'Plentong, Johor Bahru', 'So just now we got the chance to touch the condom. Flavour: strawberry @ShafinazIzhar http://t.co/ZL10oVot'), (3394, 513, 'Johor Bahru, Johore', '“@turqu0iseee: I want a time machine &amp; make time goes back to the day when we met.”'), (3395, 1240, 'Johore, Malaysia', 'dinner with Ken. I''m dangerously tired. (@ Bushra Cafe) http://t.co/5DjRN56v'), (3396, 1241, 'Johore, Malaysia', '報告書作成中。背中がカユイのだが、手が届かない。イライラ... (@ The Coffee Bean &amp; Tea Leaf) http://t.co/q6n7Yo4B'), (3397, 47, 'Johore, Malaysia', 'Sunset!^^ (with @Cursedetragedy at Suntec Tower) [pic] — http://t.co/2Db6fbIu'), (3398, 524, 'Johore, Malaysia', 'I''m at Bus Stop 05013 (People''s Park Complex) (Singapore) http://t.co/iT7YUFLs'), (3399, 551, 'Johor Bahru, Johore', '@MansoorAdabi bapak aku Rahimi'), (3400, 411, 'Johor Bahru, Johore', 'You look pretty today.'), (3401, 1216, 'Johor Bahru, Johore', 'Finish bathing (@ kitchen bathroom) http://t.co/H2KJYcaA'), (3402, 1242, 'Johore, Malaysia', 'Steamboaaaaaaat! (@ 天天火锅 w/ @emo_songs_94) http://t.co/3Ijul6V9'), (3403, 1015, 'Malaysia', '@Newziimnz อิอิ จ้าาา / แม่เด้กดี ;D'), (3404, 1227, 'Johor Bahru, Johore', '@nurulida adek dpt perfume :) @ Othman''s http://t.co/26Jj0CxJ'), (3405, 422, 'Johor Bahru, Johore', '@al_Mahbubaah sentiasa ada! :D'), (3406, 859, 'Johor Bahru, Johore', '#Noweating my dinner. (:'), (3407, 1243, 'Johore, Malaysia', 'Haha (@ SMRT Buses: Bus 67) http://t.co/QOElwKYS'), (3408, 1040, 'Kota Tinggi, Johore', 'Tweet all day long (:'), (3409, 829, 'Johore, Malaysia', '#nowplaying Start of Something Good - DAUGHTRY'), (3410, 771, 'Johore, Malaysia', 'Hair longer and thicker . :3'), (3411, 557, 'Plentong, Johor Bahru', '@YDiyanaa ==kamu bayar dulu lar'), (3412, 1244, 'Johor Bahru, Johore', 'I''m at Carpark A11 Blk 224/225 http://t.co/v6s1gLjr'), (3413, 486, 'Johor Bahru, Johore', '@rafash_ash @Reginezxoxo k jumpe kau kt pasar malam ... kt malaysia ...'), (3414, 1245, 'Johor Bahru, Johore', '@GLuozhixiangSY IDK got SJ featured inside though! You bought???'), (3415, 411, 'Johor Bahru, Johore', 'Maybe that the last time i talking abt you.'), (3416, 1246, 'Johore, Malaysia', 'Stress till max!'), (3417, 1247, 'Johore, Malaysia', '@JoshuaJaySimon woah! After ages you finally tweeted!'), (3418, 1248, 'Johore, Malaysia', '@CatherineSpears hehe thxx http://t.co/uHXbHL85'), (3419, 1249, 'Pulai, Johor Bahru', 'I''m at Haz Towers (Johor Bahru, Johor) http://t.co/NvXcHGyX'), (3420, 809, 'Johor Bahru, Johore', '@Boi_Elastico tapi aku pakai cheats so takde lah??'), (3421, 1186, 'Johore, Malaysia', 'Whatever happened to "no matter what.."'), (3422, 1250, 'Singapore', '@Louis_Tomlinson &lt;3 U...#1DCOMETOSPORE'), (3423, 551, 'Johor Bahru, Johore', '@MansoorAdabi lu gila ka lu sewel???'), (3424, 1251, 'Johor Bahru, Johore', 'Meeting up with the dudes for dinner!'), (3425, 771, 'Johore, Malaysia', 'Bye bye .'), (3426, 1228, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall w/ @nat_abitsiao http://t.co/sUabIX66'), (3427, 412, 'Johor Bahru, Johore', '@CalebCarrot next time'), (3428, 1060, 'Johore, Malaysia', '@nizammansor ok buat ustaz boleh. Zzzzz'), (3429, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN u tell him la'), (3430, 338, 'Johore, Malaysia', 'I''m at Nanyang Academy Of Fine Arts Campus 3 http://t.co/yDfWOanq'), (3431, 762, 'Johore, Malaysia', '@_Jesusbeloved fucking angry lah-.- but nehmind, i love you an already (: damn angry with 3 people now!!!'), (3432, 782, 'Plentong, Johor Bahru', '#KenanganTadika semua gigi kwn-kwn aq #RONGAK termasuk aq,,,ihihihihihiihih *maluuu*'), (3433, 762, 'Johore, Malaysia', '@ImmaSimple_Girl k.'), (3434, 1252, 'Johore, Malaysia', 'I''m at Boys'' Brigade Campus (HQ) (Singapore, SG) http://t.co/0QXf2RkF'), (3435, 972, 'Johor Bahru, Johore', 'Zai Ming is one hell of a dribbler.'), (3436, 536, 'Johore, Malaysia', '@ChangHong_Hoo Dunno :PPPPP'), (3437, 1253, 'Johore, Malaysia', 'Welcome Junior Jasoria !! (@ Kandang Kerbau (KK) Women''s &amp; Children''s Hospital w/ @ashishsidapara) http://t.co/tKP6hbI4'), (3438, 1254, 'Johore, Malaysia', 'Naguiguilty ako nabastos ko ata isa customer namn dahil sa sobrang stress. Hayzt!!! Sana naiintindihan nya kung bakit ko cya nasigawan. :(('), (3439, 1255, 'Singapore', '@JINYOUNGSWIFEY nathhhh ;D'), (3440, 1248, 'Johore, Malaysia', 'Wkwkwk gk ampe gelandangan juga penn hehe thxxRT @feniciaa: Have fun bro @joshuajece @ryan_aristo (cont) http://t.co/iuva8f5m'), (3441, 118, 'Johor Bahru, Johore', '@rohanitarohin water taxi? Ferry yo'), (3442, 1186, 'Johore, Malaysia', '@JerryT9 dafuq jerjer.'), (3443, 762, 'Johore, Malaysia', 'Tomorrow gonna be damn awesome @cheryippy'), (3444, 41, 'Plentong, Johor Bahru', '@edlinayn haha, anjat boboi xD'), (3445, 1204, 'Johor Bahru, Johore', 'I''m at Living Room http://t.co/33ERbvoa'), (3446, 938, 'Johore, Malaysia', '@ScarlettKaylene @kesterkjw where we meet? 0-0'), (3447, 1250, 'Singapore', '@Louis_Tomlinson &lt;3 U #1DCOMETOSPORE'), (3448, 1256, 'Johore, Malaysia', '@Dcal - you are the first. =x =)'), (3449, 28, 'Johore, Malaysia', 'Gosh. You''re so annoying -_-'), (3450, 1197, 'Johore, Malaysia', '@LICIA_sxy hahah set ah! I go home install Audi again ~ &lt;:'), (3451, 1208, 'Johor Bahru, Johore', '“@iamxtelmae: @quesarrasera secret :)”---talk to you'), (3452, 1257, 'Johore, Malaysia', '@_LeeYana ouhh , okayy! ;)'), (3453, 1248, 'Johore, Malaysia', '@nikkenonee thxx nikee http://t.co/CcCrrUTu'), (3454, 1258, 'Singapore', 'just finished cooking pork steak for dinner!! yum yum!!'), (3455, 63, 'Johore, Malaysia', '@SASHAASUHAILAH u going tak class bbq tmrrw'), (3456, 1259, 'Johor Bahru, Johore', 'No!!!! Doom''s day is Tmr :(( but, no need go foot drill :D'), (3457, 411, 'Johor Bahru, Johore', 'No use. That''s the last time i talk to you.'), (3458, 554, 'Johore, Malaysia', '@kellylilin Wai so sad. Waaaiiiiiiii?'), (3459, 1194, 'Malaysia', 'เพลีย - -'), (3460, 49, 'Johor Bahru, Johore', 'Tmr last day shok ! 3 wks of holiday do wad!? Slp at home and do project =.='), (3461, 782, 'Plentong, Johor Bahru', 'hati-hati yewwwww @abilsuhaimi :)'), (3462, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ im smart'), (3463, 1260, 'Johor Bahru, Johore', 'woosh mission complete!!!!!!!!!'), (3464, 403, 'Kota Tinggi, Johore', 'Lunch, dinner! (@ Pizza Hut) http://t.co/NWaWmA6C'), (3465, 313, 'Plentong, Johor Bahru', '@Missyaya93 hehe da nk maghrib da ni..gi la mandi ye...pas 2 gi solat...'), (3466, 1030, 'Johor Bahru, Johore', 'bus 187 bnyk orang'), (3467, 1261, 'Johore, Malaysia', 'I''m at United Square (Singapore, Singapore) w/ 4 others http://t.co/GmofpSFq'), (3468, 1066, 'Johore, Malaysia', 'I may know a person only for 5 minutes but the stories that we shared are like years we''ve met.'), (3469, 795, 'Johore, Malaysia', 'Berry mint #beer #sgig @ TCC @ Seah Street http://t.co/Kh3lnROy'), (3470, 1040, 'Kota Tinggi, Johore', 'That awkward moment when you are waiting for a text but when actually you''re the one that didn''t reply ._.'), (3471, 1262, 'Johore, Malaysia', 'Just posted a photo @ East Coast Park http://t.co/IZDYhqh7'), (3472, 513, 'Johor Bahru, Johore', 'Dinner ,'), (3473, 1263, 'Plentong, Johor Bahru', 'Dinner was satisfying~'), (3474, 800, 'Johore, Malaysia', '@BiteMyLeftFoot my result like shit! Yours?'), (3475, 1264, 'Johor Bahru, Johore', 'After dinner snack @ Bakerzin @ northpoint http://t.co/sfdSquA8'), (3476, 346, 'Singapore', 'Zzz wrong choice. Should have gone to library or something.'), (3477, 1265, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/RnuX4Xqx'), (3478, 1266, 'Johore, Malaysia', 'I''m at Tanglin Mall (Singapore, Singapore) w/ 2 others http://t.co/AhjicBQO'), (3479, 413, 'Johore, Malaysia', 'Being the middle man sucks'), (3480, 1267, 'Johor Bahru, Johore', '..3 of my 4 girls making their Mini CupCakes.. http://t.co/yOU9mWgQ'), (3481, 206, 'Singapore', '#nowplaying I''ll be there. &lt;3'), (3482, 1268, 'Johor Bahru, Johore', 'Nights out! (@ Lot One Shoppers'' Mall w/ 22 others) http://t.co/jezwo7YS'), (3483, 335, 'Riau, Indonesia', 'saatNya plg kekos2an'), (3484, 355, 'Johore, Malaysia', 'I''m at Robinsons (Singapore, Singapore) http://t.co/DBQHFZup'), (3485, 411, 'Johor Bahru, Johore', 'Am i even too selfish?'), (3486, 1269, 'Johore, Malaysia', 'I''m at Silver Cross (Singapore, Singapore) http://t.co/tfrDu7kC'), (3487, 782, 'Plentong, Johor Bahru', 'oken dh nk magribbbbb #np go to showerrrr byeeee,,,,,seee nigt niewww yeeee :)'), (3488, 1270, 'Johor Bahru, Johore', '@adalilin 蘇姐姐是不是很有錢?她在新加坡看的房產至少要5000萬台幣!'), (3489, 1231, 'Johore, Malaysia', 'I''m at Far East Plaza (Singapore) w/ 19 others http://t.co/9c3a3Alk'), (3490, 493, 'Johor Bahru, Johore', 'Gonna go running!'), (3491, 413, 'Johore, Malaysia', '@Jikunnnnn Lai lor amk kpool 1-1'), (3492, 787, 'Johor Bahru, Johore', 'Enamour 2012 (@ Lee Kong Chian Lecture Theatre) http://t.co/Zoxm7U0F'), (3493, 551, 'Johor Bahru, Johore', '@MansoorAdabi meme ah'), (3494, 720, 'Plentong, Johor Bahru', '#nw AtasNamaCinta @ShahIskandar_M &lt; kesian tgk dia .hehe. @TashaShilla &lt; padan muka dia .haha. @Shahzjaszle . :)'), (3495, 1271, 'Malaysia', 'Flanmingo@TML Bowling Session(y) (@ Ampang Superbowl) [pic]: http://t.co/gsWSZVZA'), (3496, 322, 'Johore, Malaysia', 'bus 518 is taking a looooong time. (@ Bus Stop 03509 (Marina Bay Sands Hotel)) http://t.co/gLRcR2eZ'), (3497, 144, 'Johor Bahru, Johore', 'I hate Holidays'), (3498, 206, 'Singapore', 'crap I have seungri''s down pressure stuck on my mind xDD'), (3499, 1025, 'Malaysia', 'วันนี้มีความสุขและความทุกข์ แม่งงงงงงงงงงงYY'), (3500, 1234, 'Johore, Malaysia', 'Now watching ''The Lady'' at GV Grand. - fundraiser for #Aidha #empowering women thru education #fb'), (3501, 1272, 'Johor Bahru, Johore', 'I just ousted @weili_95 as the mayor of Blk 213 Petir Road on @foursquare! http://t.co/cXfhENDk'), (3502, 1272, 'Johor Bahru, Johore', 'I''m at Blk 213 Petir Road http://t.co/0WEEnwTG'), (3503, 593, 'Johor Bahru, Johore', '@Jae_Jerome hahaha don''t want la.. Either key ir taemin.'), (3504, 1273, 'Malaysia', 'โทรไปจีน 3บาท/นาทีไม่เครียด แต่เหี้ยส่งข้อความไปบอกกูว่า3บาท คิดกู34บาท มึงนับตัวอักษรกูรึไง ฟั้ค'), (3505, 1274, 'Plentong, Johor Bahru', 'I''m at Kapten Mohd Amin http://t.co/dp5zMUw6'), (3506, 1197, 'Johore, Malaysia', '@LICIA_sxy but if my score &lt;100k don''t laugh ah! &gt;&lt;'), (3507, 81, 'Johore, Malaysia', 'Sunset... http://t.co/FnANHkeg'), (3508, 72, 'Johor Bahru, Johore', '@doubleyouuem u might never know worh~ u might be a extremely bad person! :D'), (3509, 1275, 'Johore, Malaysia', 'I''m at The Anchorage condominium (Singapore) http://t.co/h0a44BBO'), (3510, 1212, 'Johor Bahru, Johore', '“People will hate you, rate you, shake you, and break you. But how strong you stand is what makes you.” —Khloe Kardashian'), (3511, 170, 'Johore, Malaysia', 'Sunset! @ Toa Payoh Central http://t.co/ci5MRuMs'), (3512, 1276, 'Johore, Malaysia', 'At *SCAPE Atrium [pic] — http://t.co/SZadZZCq'), (3513, 411, 'Johor Bahru, Johore', 'I can don''t want anything. I just want youn'), (3514, 720, 'Plentong, Johor Bahru', '@TS_TEAM betul ! hahahahhahaa'), (3515, 1191, 'Plentong, Johor Bahru', 'Belajar berjimat, Save save sikit banyak benda nak buat'), (3516, 106, 'Johor Bahru, Johore', 'And with that, im guaranteed a good night sleep tonight :D'), (3517, 3, 'Johor Bahru, Johore', '@uggene and hehe ;p'), (3518, 1277, 'Johore, Malaysia', 'I''m at Starbucks (Singapore, Singapore) http://t.co/NieKLmre'), (3519, 1278, 'Johore, Malaysia', 'I''m at 333 Bak Kut Teh w/ @kuzcoengki http://t.co/Q3tmxXgk'), (3520, 486, 'Johor Bahru, Johore', 'Hi girl , awak comel . Mintak nombor boleh ? - mat malaysia .'), (3521, 583, 'Malaysia', 'I''m at คิวรถตู้หาดใหญ่-สตูล Hatyai - Satun Van Terminal (Hatyai, Songkhla) http://t.co/yz2Zgqp7'), (3522, 1274, 'Plentong, Johor Bahru', 'I just ousted leong bunny as the mayor of Kedai Runcit Hj Abdullah on @foursquare! http://t.co/r5wlbPIn'), (3523, 1274, 'Plentong, Johor Bahru', 'I''m at Kedai Runcit Hj Abdullah http://t.co/0qObgcwC'), (3524, 413, 'Johore, Malaysia', '@Hengshengggg oi cb call me now .. Knn big problem'), (3525, 330, 'Johore, Malaysia', 'MY DEFYING GRAVITY IS STARTINGGG!'), (3526, 411, 'Johor Bahru, Johore', 'I like your singing.'), (3527, 1117, 'Johor Bahru, Johore', 'Bored day for today.'), (3528, 1279, 'Johor Bahru, Johore', 'BCSS (@ SCAL Academy @ Jurong) http://t.co/48rFiZ24'), (3529, 1280, 'Johor Bahru, Johore', 'I''m at Bukit Panjang Plaza (Singapore, Singapore) w/ 7 others http://t.co/FGKlWYsu'), (3530, 1275, 'Johore, Malaysia', 'I''m at The Anchorage Condominium (Singapore) http://t.co/WMNnNS6m'), (3531, 1281, 'Malaysia', 'ไปเที่ยววววววววววววววว!'), (3532, 1194, 'Malaysia', 'ลูกรักแจกบัตรฟรี ลูกเมียน้อยบัตรไม่พอ :('), (3533, 1282, 'Johore, Malaysia', 'jln2 (@ sea of west coast) http://t.co/cswt85co'), (3534, 63, 'Johore, Malaysia', 'Nak cakap pasal orang cakap depan depan lah wait till i hear it beb'), (3535, 1283, 'Plentong, Johor Bahru', 'Nasi goreng seafood &amp; pari bakar... (@ Nasi Goreng Seafood Stulang Laut) http://t.co/B9ml2gio'), (3536, 98, 'Johor Bahru, Johore', '@ficobutternuts AKU DAH CAKAP. KAU INSIST OF CROSSWORD PUZZLE JUGAK KAN'), (3537, 1284, 'Plentong, Johor Bahru', '@XuShanQing hahaha go buy next time jus in case u cnnt sleep :D'), (3538, 1285, 'Johore, Malaysia', 'Instead of muay thai, decided to go for a cocktail. muni-muni n clear my head for tomorrow. kuya jess, ikaw na bahala http://t.co/y6v2ZQGq'), (3539, 1286, 'Johore, Malaysia', 'I''m at Funan DigitaLife Mall (Singapore) http://t.co/pby6sW8W'), (3540, 1287, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 13 others http://t.co/EaUDMlgF'), (3541, 1288, 'Johore, Malaysia', 'I''m at East Coast Lagoon Food Village (Singapore) w/ 6 others http://t.co/cadzQQbl'), (3542, 1289, 'Kota Tinggi, Johore', 'W/ @terryjoel (@ Carl''s Jr) http://t.co/N71SZVIw'), (3543, 1290, 'Johor Bahru, Johore', '1 119 words...alamak overshoot plak...xpew la... hehehe'), (3544, 713, 'Johore, Malaysia', 'I''m at Taxi Stand F43 http://t.co/BELektiQ'), (3545, 3, 'Johor Bahru, Johore', 'I''m going to watch timeless love for the second time tomorrow xD @uggene though I just watched it ytd ^^'), (3546, 1274, 'Plentong, Johor Bahru', 'I''m at Cigar port http://t.co/augPVzK1'), (3547, 1274, 'Plentong, Johor Bahru', 'I just ousted @hairieldaniel as the mayor of Cigar port on @foursquare! http://t.co/S59eidK4'), (3548, 1263, 'Plentong, Johor Bahru', 'Cuz this mornin'' woke up damn early to go renew my passport'), (3549, 971, 'Singapore', 'WHATTHEFREAK ?!'), (3550, 1291, 'Johor Bahru, Johore', '@MohammedZR this pic is so weird in so many ways'), (3551, 809, 'Johor Bahru, Johore', '@NashrulhaqD bsk kol brape kat mane meet??'), (3552, 1125, 'Johor Bahru, Johore', 'Sale! Sale! Sale! Hurry up mommies.. (◦ˆ⌣ˆ◦) (@ Kiddy Palace Century Square) http://t.co/Z8tqh5AA'), (3553, 1251, 'Johor Bahru, Johore', '#nowplaying A Day to remember - If it means alot to you'), (3554, 1292, 'Johore, Malaysia', 'Tried puking but nothing came out... Feel so fucking uncomfortable nw...'), (3555, 1262, 'Johore, Malaysia', 'Just posted a photo @ East Coast Park http://t.co/RA4v6d8E'), (3556, 513, 'Johor Bahru, Johore', 'Holidays is ending :('), (3557, 106, 'Johor Bahru, Johore', 'But my Nike Air kenna step on =='), (3558, 1293, 'Johor Bahru, Johore', '@rachel_ma pain in the ass indeed'), (3559, 1194, 'Malaysia', 'เหอะเหอะ -_______-'), (3560, 1274, 'Plentong, Johor Bahru', 'I''m at Norris (Johor Bahru, Johor) http://t.co/Z6yADnIS'), (3561, 1294, 'Johor Bahru, Johore', 'I''m at Hai Bin Prawning @ Tebing Lane w/ @tanjunkai http://t.co/Xm4Sae6y'), (3562, 412, 'Johor Bahru, Johore', 'People say that I''m rude cuz even when I see them from a distance I dun greet with a wave.'), (3563, 1295, 'Johore, Malaysia', 'Makan time with Aisyah n munirah n mikail.. (@ Cathay Cineleisure Orchard w/ 32 others) http://t.co/j4SpGlAg'), (3564, 972, 'Johor Bahru, Johore', '''This Means War'' is seriously #Hilarious'), (3565, 1296, 'Johore, Malaysia', 'Love this @ All Good Things http://t.co/M5ENlrOT'), (3566, 585, 'Johore, Malaysia', 'but i think what she said makes sense as well'), (3567, 1297, 'Johor Bahru, Johore', '@sherlynssj simi country lol'), (3568, 1298, 'Johor Bahru, Johore', 'Walking back from buying stuff, when I overheard this:\nFather:Nak otak-otak\nDaughter: Ape tu otak?\nI LOLed XD HAHAHA cute sia!'), (3569, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa eeee bussuuukk . Hahah okay &lt;3'), (3570, 117, 'Johore, Malaysia', '@paperdrizzle hahha sureeee just tweet me up heehee'), (3571, 1206, 'Johor Bahru, Johore', 'Buy Long John for wifey (@ Winter Time @ Tampines Mall) http://t.co/BrzJ1juz'), (3572, 1280, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore) http://t.co/5WFkZUEG'), (3573, 41, 'Plentong, Johor Bahru', '@edlinayn tergoda, awwwww &lt;3'), (3574, 1299, 'Johor Bahru, Johore', '“@lantaumama: 呱呱ribbit http://t.co/hxnqvLJ1” miss piggy is not far always betcha'), (3575, 173, 'Johor Bahru, Johore', '@myraaong it''s a song Myra. A song :)'), (3576, 110, 'Johore, Malaysia', '“@Retwittings: #N: You often go to great lengths to be available at all costs to a loved one.”@NicholasAngKai'), (3577, 1300, 'Johore, Malaysia', '@lostlittlelam o.O I bet grace died too xP'), (3578, 1301, 'Johore, Malaysia', 'I''m at His.tori BBQ and Casual Dining (Singapore) http://t.co/DWznnlmn'), (3579, 1108, 'Johore, Malaysia', '@xxLastAngelxx Ohhh. I should try it out first. :D'), (3580, 1302, 'Johor Bahru, Johore', '@NurulSyaqilaA but you most cutest :P'), (3581, 1303, 'Malaysia', 'I''m at สนามโรงพิธีช้างเผือก (ยะลา) http://t.co/Jw0tVRny'), (3582, 346, 'Singapore', '@Xiaxue OMG it''s even nicer than pink wtf how is that possible!!! You''re super pretty now!!'), (3583, 557, 'Plentong, Johor Bahru', '@YDiyanaa okkk'), (3584, 861, 'Johor Bahru, Johore', '@LackadaisicalFa my 2.4km yesterday was 16mins. Sooo slow!'), (3585, 1304, 'Johore, Malaysia', 'I''m at Outram Park MRT Interchange (EW16/NE3) (Singapore, Singapore) http://t.co/NOWnIGjR'), (3586, 313, 'Plentong, Johor Bahru', '@Missyaya93 okie dokie ^____^'), (3587, 486, 'Johor Bahru, Johore', '"@budakchik: #PeopleIWantToMeet Bruno Mars" ni dh ada bruno mars &gt;&gt;&gt;&gt;&gt; @hzqhmd'), (3588, 247, 'Johore, Malaysia', 'For once just make me feel That I''m important to you Please?'), (3589, 1306, 'Kota Tinggi, Johore', 'I''m at Blk 328 Tah Ching Road (Tah Ching Road, Singapore) http://t.co/XkqK5jCe'), (3590, 530, 'Malaysia', 'I''m at Tops Market (ท็อปส์ มาร์เก็ต) (Hat Yai, Songkhla) http://t.co/2TQBa5pP'), (3591, 708, 'Johor Bahru, Johore', 'Sucking on the candy barber pole :3 \nI liek cherries'), (3592, 41, 'Plentong, Johor Bahru', '@writerBEKU naik bas bole, haha'), (3593, 1307, 'Johore, Malaysia', 'I''m at Swensen''s (Singapore) w/ 5 others [pic]: http://t.co/zrCm0vfl'), (3594, 513, 'Johor Bahru, Johore', '“@turqu0iseee: RT @AhKai_ :Time passed too quickly. Simply not enough time...”'), (3595, 3, 'Johor Bahru, Johore', '@uggene had your dinner?:)'), (3596, 117, 'Johore, Malaysia', '@crispylipslock hahhaha ms wang?'), (3597, 1308, 'Johore, Malaysia', 'Bheema vikram! @Im_grs http://t.co/PfjWN0yf'), (3598, 1309, 'Johor Bahru, Johore', 'Nowadays work getting harder....'), (3599, 1310, 'Kota Tinggi, Johore', 'I''m at Blk 226 Toa Payoh Lor 8 http://t.co/7QtJpOgQ'), (3600, 520, 'Johore, Malaysia', 'I''m at J.Co Donuts &amp; Coffee (Singapore) w/ 2 others http://t.co/XFgTo2bQ'), (3601, 384, 'Indonesia', 'ito.... maridi jo ho, bau gedek2 hu anggo ho, #BauAccok'), (3602, 206, 'Singapore', '"Big Bang’s popularity seems to be declining as well."'), (3603, 411, 'Johor Bahru, Johore', 'I need 1 thing, and that''s you.'), (3604, 1311, 'Johore, Malaysia', 'I''ve just seen Melons from Japan in Meidi-ya supermarket for $119 each. Really? For a piece of fruit? That''s a lot of beer.'), (3605, 412, 'Johor Bahru, Johore', 'One simple reason: I''m short sighted. Faces from 150m away and further I can''t see'), (3606, 1310, 'Kota Tinggi, Johore', 'I''m at Kitchen http://t.co/Mu6dxV8T'), (3607, 1312, 'Plentong, Johor Bahru', 'I''m at Maybank Larkin Perdana http://t.co/53bo8vfb'), (3608, 411, 'Johor Bahru, Johore', 'Sad ending.'), (3609, 21, 'Johor Bahru, Johore', '"@merrjtan: get well soon (‾ʃƪ‾)"'), (3610, 754, 'Johore, Malaysia', 'Motherfucking bastards. -___-;; But I still love them nonetheless. @DeeFckTheWorld @RebelliousAmiR http://t.co/xp7vmGHZ'), (3611, 720, 'Plentong, Johor Bahru', 'amboi usyarif . kemain lagi dia skang eh . entah ingat aku lagi ke tak tu .'), (3612, 170, 'Johore, Malaysia', 'Blotchy Skies @ Toa Payoh Central http://t.co/1zXUqV5w'), (3613, 1313, 'Johore, Malaysia', 'I''m at SMRT Buses: Bus 966 (Singapore, Singapore) w/ 2 others http://t.co/rW8pvS7T'), (3614, 267, 'Johore, Malaysia', 'Let''s hope Vettel''s car is Awful Abbey #Lewis #jenson'), (3615, 1310, 'Kota Tinggi, Johore', 'I''m at Living Room http://t.co/dfdlekXa'), (3616, 1216, 'Johor Bahru, Johore', '[delayed] (@ 452 Carpark) http://t.co/eqEPoWTK'), (3617, 62, 'Johor Bahru, Johore', 'tak merajok.. Hampa jek RT“@tweetlipxz: @ForeverChronic hais dia pun nak merajuk jugak......”'), (3618, 1300, 'Johore, Malaysia', '@lostlittlelam wait who leaked out the photo sm or other ppl?'), (3619, 889, 'Johore, Malaysia', 'Simply epic! (This crappy phone doesn''t do it justice) http://t.co/7aZ98oE8'), (3620, 1144, 'Johor Bahru, Johore', 'Just pass by a cat at my block http://t.co/X2x8LRj8'), (3621, 809, 'Johor Bahru, Johore', '@NashrulhaqD ok maybe aku meet faj kat rumah dia dulu'), (3622, 370, 'Johor Bahru, Johore', 'tak semestinya menilai seseorang dengan mata ....sepatutnya menilai seseorang dengan hati ....'), (3623, 206, 'Singapore', 'who cares? i love big bang and I m proud to be a vip even if they;re not popular as b4. &lt;3 #VIPFORLIFE'), (3624, 142, 'Johore, Malaysia', 'I can never lie. I can never hide these feelings I''m having now. It seriously hurts so badly. =''('), (3625, 411, 'Johor Bahru, Johore', 'I think it''s time for me to clear my mails. 1 k plus. imfao.'), (3626, 1247, 'Johore, Malaysia', '; seriously ? Inconsiderate . http://t.co/fwr32Zm7'), (3627, 1314, 'Johore, Malaysia', 'I''m at *SCAPE (Singapore, Singapore) w/ 7 others http://t.co/7XmwArQb'), (3628, 1263, 'Plentong, Johor Bahru', 'Lol n my dad was effin piss lol'), (3629, 552, 'Johore, Malaysia', 'my favourite: ikan bilis.. :)\ntadi sempat rembat ikan bilis pintal makcik library fakulti sains..hehe terima kasih makcik :P'), (3630, 1315, 'Johore, Malaysia', 'I''m at One Raffles Place (Singapore, Singapore) http://t.co/zKkZ1LBy'), (3631, 1316, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 7 others http://t.co/ZrNy4gQN'), (3632, 1191, 'Plentong, Johor Bahru', '@FyyTasha Betol'), (3633, 615, 'Johore, Malaysia', 'Waaaaa.. why now? Forgot my headset at office.. ~_~'), (3634, 1317, 'Kota Tinggi, Johore', 'I''m at Sri Arulmigu Murugan Temple (Jurong East, Singapore) http://t.co/0tpNCmTf'), (3635, 1318, 'Johor Bahru, Johore', 'House of my amma... appa.. (@ 264 Jur East St 24) http://t.co/DB663QjH'), (3636, 1319, 'Malaysia', 'I''m at คลินิกหมอช้ชวาล ฝากครรภ์ ทำคลอด (หาดใหญ่, สงขลา) http://t.co/JNxgXh3n'), (3637, 1320, 'Johor Bahru, Johore', 'Still at home all day today.. (@ Jerahmeel Zacky''s) http://t.co/xaHTbQS4'), (3638, 798, 'Johore, Malaysia', '@wolfieboi Oh then you book out tomorrow or just book out later? Which station you fail?'), (3639, 938, 'Johore, Malaysia', '@Kesterkjw @ScarlettKaylene I know how to ride :D Too bad for czaryna xD'), (3640, 1321, 'Johore, Malaysia', 'I''m at My Room♦♣♥♠ http://t.co/arbQbA5n'), (3641, 701, 'Johor Bahru, Johore', 'I''m at Woodlands Regional Bus Interchange (Singapore, Singapore) w/ 7 others http://t.co/fPf4ZhPo'), (3642, 411, 'Johor Bahru, Johore', 'I meant serious. With you.'), (3643, 1322, 'Plentong, Johor Bahru', '@Fiquetograph @kophooligan wakakakaakak... Makan asap la lu orang'), (3644, 877, 'Johor Bahru, Johore', 'if i can have anything in the world, i''ll have you. ♡ #loveyou'), (3645, 1323, 'Johore, Malaysia', '@mthrh kisah. Mane tak kisah. Kalau tak kisah da pisah. Hahaha da la hang pi tdo sano.'), (3646, 1197, 'Johore, Malaysia', '@LICIA_sxy sure mahh? Later you ownn me flat LOL.'), (3647, 557, 'Plentong, Johor Bahru', '@YDiyanaa Isnin kasi'), (3648, 1324, 'Johore, Malaysia', 'I''m at Claypot Rice Ayer Rajah Food Center (Singapore, Singapore) http://t.co/BTWMnIiV'), (3649, 1325, 'Indonesia', 'best remedy for insect bites "@Jamiep8: @drpaulolding Try rubbing a dry bar of soap on the bites"'), (3650, 1326, 'Johore, Malaysia', 'I''m at CrazyWorld Cafe (Singapore, Singapore) http://t.co/ywgRAV2E'), (3651, 1327, 'Johor Bahru, Johore', 'I''m at TMC Academy (Singapore, Singapore) http://t.co/tLFHD2uW'), (3652, 917, 'Kota Tinggi, Johore', '/raises hand/ RT @deeronrryym: RT @fxtg88k People who are forever late for outings. -points'), (3653, 795, 'Johore, Malaysia', 'Berry mint #beer #sgig @ TCC @ Seah Street http://t.co/aGKwYUUG'), (3654, 1120, 'Johore, Malaysia', '@ImNabilFitri must think twice :s'), (3655, 1165, 'Johor Bahru, Johore', '@rachteh hahahahah!! I got eye cream and liquid foundation also. Hopefully next time got perfume!'), (3656, 486, 'Johor Bahru, Johore', '@budakchik haah &amp;gt&amp;gt&amp;gt apa benda sia ?? Aku tk phm ..'), (3657, 720, 'Plentong, Johor Bahru', 'amboiii . banyakk nya orang twit pasal #KalauCrushAku .'), (3658, 1263, 'Plentong, Johor Bahru', 'Cu de immigrant officers made us ran around de building to get documents n sort,n made me requeue de same queue TRICE!'), (3659, 513, 'Johor Bahru, Johore', '“@Reichi_Lim: Y holiday no 1 month!?”'), (3660, 1066, 'Johore, Malaysia', 'Even though I''m here for half an hour, it seems that no one notices it. #macambaik'), (3661, 1073, 'Johore, Malaysia', 'If @dee_kosh became the DJ of 987fm.i will listen to it every day haha!:)'), (3662, 618, 'Johor Bahru, Johore', 'Why is hyukjae being bash again like seriously'), (3663, 206, 'Singapore', 'don''t worry bb,vip will be there to support u &lt;3'), (3664, 1328, 'Kota Tinggi, Johore', 'takraw with @AyieeLS at nanyang !!!'), (3665, 1329, 'Johore, Malaysia', 'I''m at Singapore Institute of Management (SIM) (Singapore, Singapore) w/ 8 others http://t.co/1kEgCPMV'), (3666, 1330, 'Johor Bahru, Johore', '@Anteledaisy @PsycheChild cannot see.. o_O'), (3667, 411, 'Johor Bahru, Johore', 'Something are not meant to be. No point to chase abt it.'), (3668, 1331, 'Johor Bahru, Johore', 'Just watched SUPER SIZE ME. I am never gonna look at McDonalds the same way. Everyone should watch this movie/documentary.'), (3669, 3, 'Johor Bahru, Johore', '@uggene UriUriUri !;p My grandpa is fine Liao ^^'), (3670, 1332, 'Johore, Malaysia', 'Food hunting.... (@ Bugis Junction w/ 23 others) http://t.co/OWY2dEW2'), (3671, 1333, 'Plentong, Johor Bahru', 'Uncle yg amik oder ni.. Kalau x sakat aku x sah. Ade ke ckp aku pelakon.. Wakaka! Uncle,sy ''berdrama'' kt twitter sh... http://t.co/heyxEfPj'), (3672, 1334, 'Johore, Malaysia', 'Sometimes you gotta spoil yourself &lt;3 http://t.co/FQ41lCmO'), (3673, 740, 'Johore, Malaysia', 'Ngeee ✿'), (3674, 371, 'Pulai, Johor Bahru', 'Carik lauk...laut kucar kan..hahahha (@ Kipmart) http://t.co/kAYZg97d'), (3675, 528, 'Johor Bahru, Johore', '@Limqiing okay! I tackle yiu'), (3676, 492, 'Johor Bahru, Johore', 'I''m at Bro''s room!! http://t.co/Df1hV2rm'), (3677, 1031, 'Singapore', 'You don''t say?'), (3678, 349, 'Johore, Malaysia', 'With @hash_aaaa and @itsNORJAHAN (@ Mustafa Centre w/ 4 others) http://t.co/W89Ms7V4'), (3679, 701, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 13 others http://t.co/ei2FHguq'), (3680, 809, 'Johor Bahru, Johore', '@Boi_Elastico best pe, kereta aku semua dah max aku pakai for money and respect, aku main game to on the hardest level'), (3681, 3, 'Johor Bahru, Johore', '@uggene OKAYYY!!=D Enjoy, what u having?'), (3682, 1335, 'Riau, Indonesia', 'Body ache.'), (3683, 41, 'Plentong, Johor Bahru', '@edlinayn haha, jeles la ngan u. muka cute :('), (3684, 346, 'Singapore', 'RT @taleeey Blogged [...] http://t.co/3uUx1Abj'), (3685, 1336, 'Johore, Malaysia', 'the KOXX... (@ Esplanade - Theatres on the Bay w/ 7 others) [pic]: http://t.co/HN3Wdw6v'), (3686, 1257, 'Johore, Malaysia', '#PeopleIWantToMeet @beastdw @Joker891219 @BeeeestDJ @helloimys @B2stGK @doublev89 :)'), (3687, 1247, 'Johore, Malaysia', '@nfjml idk how to put hahah, wait I try.'), (3688, 1337, 'Johore, Malaysia', '@Cheezepotatoz i know that feel sis'), (3689, 1338, 'Johore, Malaysia', 'I''m at Jurong East MRT w/ 2 others http://t.co/Cu2tXah3'), (3690, 762, 'Johore, Malaysia', 'No happy than say lah-.-'), (3691, 1148, 'Johor Bahru, Johore', '@IzedTee LOL. It sounds wrong, but the food''s actually pretty good :D'), (3692, 138, 'Johore, Malaysia', 'Watching American Haunting with 2L at #2Lclassouting ! Everyone so scared hahahaha gonna be damn cool http://t.co/TyzKJ7ym'), (3693, 440, 'Johore, Malaysia', 'My leader is my G-kids leader omg'), (3694, 3, 'Johor Bahru, Johore', '@uggene Thankieww uhh^^'), (3695, 1108, 'Johore, Malaysia', 'Downloading GunZ. #slowdie'), (3696, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ pls it''s not my ass that''s smart. It''s the brain'), (3697, 72, 'Johor Bahru, Johore', '@TheEntertainerX u know I listen to the MTDC concert, I feel like singing those songs Tgt again sia *-* the tenors and basses so godly *-*'), (3698, 637, 'Singapore', 'Lazy thuuursday'), (3699, 480, 'Johor Bahru, Johore', '@CherieCjl die :p'), (3700, 34, 'Johor Bahru, Johore', '5pm pass alr!! @clarahohohoho @_chodingpanda @purplefuckyeah'), (3701, 1108, 'Johore, Malaysia', '@xxLastAngelxx Hehe, alright. &gt;:D I still downloading. Slow like heaven.'), (3702, 72, 'Johor Bahru, Johore', '@doubleyouuem sure? :o seems like a lie~'), (3703, 1263, 'Plentong, Johor Bahru', 'All de malay mix mandarin mix hokkien words all came out lol XD'), (3704, 1339, 'Johor Bahru, Johore', 'I''m at Haüs Of KaiWen http://t.co/i9oTaD3X'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (3705, 1073, 'Johore, Malaysia', '@dee_kosh The result will be out tomorrow,so yeah!All The Best!!! #ahahsiol!:)'), (3706, 825, 'Johore, Malaysia', '@Imah_2712 tu ah ...banyak baek lah eh...why don''t you say how does it feels to them when u do the same thing ?'), (3707, 421, 'Johore, Malaysia', 'With @sumin91 @SayAmelia! (@ Cathay Cineleisure Orchard w/ 33 others) http://t.co/UnJqMDgV'), (3708, 1340, 'Malaysia', 'So c-cmon, you got it wrong :) love that part! @zaynmalik'), (3709, 1341, 'Johor Bahru, Johore', 'I''m at Phee''s Home ^~^ http://t.co/NeGGHNbS'), (3710, 434, 'Johore, Malaysia', 'I''m at The Singapore Flyer (Singapore, Singapore) w/ 3 others http://t.co/xdi8J8hW'), (3711, 486, 'Johor Bahru, Johore', 'You , me , watch the world end ? Possible ? I think so . Wanna try ? Perhaps not .. (:'), (3712, 1342, 'Johor Bahru, Johore', '@SammiLerman SAFE SEX NOT SEX SAFE WTF HAHAHAHAHAHAHAHA'), (3713, 1343, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 12 others http://t.co/so0gR1E0'), (3714, 599, 'Johore, Malaysia', '#nowwathing - Blue by Big Bang (LIVE)'), (3715, 399, 'Johor Bahru, Johore', '@NatPigkachu go go go natty!!!'), (3716, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc Chills~'), (3717, 829, 'Johore, Malaysia', '@jinkoi_ too distracted already arh!'), (3718, 1120, 'Johore, Malaysia', 'I wish my cabinet can go through Narnia (:'), (3719, 400, 'Johor Bahru, Johore', 'someone wanna treat us to watching night movie tonite !'), (3720, 762, 'Johore, Malaysia', 'Not happy that''s your problem;'), (3721, 1344, 'Malaysia', 'พุ่งนี้กลับHDYแระ แม่จะบ่นมั๊ยเนี่ย'), (3722, 269, 'Johore, Malaysia', 'i wont know if i''ll c u again after today'), (3723, 720, 'Plentong, Johor Bahru', 'kat timeline penuh dengan "retweeted by SYADA AMZAH" . hahaha'), (3724, 1255, 'Singapore', '@JINYOUNGSWIFEY haha nothing jux wondering who is jinyoung o.o'), (3725, 1191, 'Plentong, Johor Bahru', '@FyyTasha Baik sangat pon nnti kene tikam jugak dr blkng kann :)'), (3726, 1148, 'Johor Bahru, Johore', '@SAMeatFudge lol is it those white dots thingies?0.0'), (3727, 720, 'Plentong, Johor Bahru', 'kat timeline penuh dengan "retweeted by SYADA AMZAH" . hahaha [Like it? http://t.co/2pUldkbN ]'), (3728, 480, 'Johor Bahru, Johore', '@CherieCjl no haha &gt;&lt;'), (3729, 1337, 'Johore, Malaysia', '@thisisrauf i see what u did there'), (3730, 1345, 'Johor Bahru, Johore', 'I miss Bintan trip! :('), (3731, 599, 'Johore, Malaysia', 'I''m singing my bluessssssss ~~~~'), (3732, 206, 'Singapore', 'lot 1 has the taeyang ver ;o'), (3733, 1197, 'Johore, Malaysia', '@LICIA_sxy last time I get owned by @GreyDiamonds likeaboss.'), (3734, 1346, 'Plentong, Johor Bahru', '..OMG..!!i''m fasting..!!haha..can''t wait to eat..hee~'), (3735, 41, 'Plentong, Johor Bahru', '@writerBEKU haha, aku tak balek ye takde 150 xD'), (3736, 980, 'Johor Bahru, Johore', 'I''m at Tampines MRT Station (EW2/DT32) (Singapore, Singapore) w/ 4 others http://t.co/Qt9py58C'), (3737, 736, 'Johore, Malaysia', 'I realised my brain rusted omg .... now i thank God recaping !::)))))'), (3738, 1347, 'Johor Bahru, Johore', 'Currently, #saintsrowthethird level 22'), (3739, 1348, 'Johor Bahru, Johore', 'Dinner... (@ Air Pasang Nasi Campur &amp; Halal Seafood) http://t.co/bvcISHGh'), (3740, 1349, 'Johore, Malaysia', 'which way to go? lakat mode! hidlaw ko sa inyo ah! @KarlaDeModa @sheslley @rinabanana @xing_shing @lkmariquit http://t.co/QwCkIZ1D'), (3741, 1345, 'Johor Bahru, Johore', 'Haha! Brought this at Bintan! Still got more.. :&gt; Kay.. http://t.co/w81aBwCM'), (3742, 981, 'Riau, Indonesia', 'sm devi? RT @Leatitra di quantum ismud ranRT @ira_noevieta: Dmn le? RT @Leatitra iya ra , kenapa ? RT @ira_noevieta: @Leatitra Le kw bimbel?'), (3743, 1350, 'Riau, Indonesia', 'udh tuh RT @purnomo_arudam @rulirara follback ya kak'), (3744, 1351, 'Johore, Malaysia', '@PimPreposterous haha'), (3745, 267, 'Johore, Malaysia', '@DeeSeeBeaucoup Vettel fan?'), (3746, 480, 'Johor Bahru, Johore', 'Headache ~ wah best .. -.-'), (3747, 716, 'Johor Bahru, Johore', '"@hazizihanafi: @MSXIUHUI hahahahahahha! http://t.co/xqzCcnly" AHH. SO UNGLAAM. &gt;:'), (3748, 3, 'Johor Bahru, Johore', '@uggene I ate it ytd before watching timeless love xD Enjoy uhh ;D'), (3749, 486, 'Johor Bahru, Johore', '@rafash_ash @Reginezxoxo if she rides ... probably it will take 1 hour .. ((:'), (3750, 723, 'Plentong, Johor Bahru', 'I''m at Living Hall (Pasir Gudang, Johor) http://t.co/n68aKS6o'), (3751, 1352, 'Johor Bahru, Johore', 'I''m at Tampines St 21 - Home sweet Home  (Singapore) http://t.co/0k2cewbv'), (3752, 375, 'Riau, Indonesia', 'mau nanya link nya rio yang lagu butiran debu ada ngga ? @RISE_WORLD'), (3753, 1328, 'Kota Tinggi, Johore', 'tgah jln pgy nanyang ! with @AyieeLS'), (3754, 1353, 'Plentong, Johor Bahru', '@SorayaJAdam u pegi FMFA?'), (3755, 1287, 'Johor Bahru, Johore', 'I''m at Woodlands Regional Bus Interchange (Singapore, Singapore) w/ 9 others http://t.co/g1cctIqi'), (3756, 720, 'Plentong, Johor Bahru', 'kesian aku tengok Ghaz / Saiful ni .. cc @ShahIskandar_M ;]'), (3757, 1306, 'Kota Tinggi, Johore', 'I''m at ZETTYARDILA''S HOME http://t.co/uvZzrR6b'), (3758, 491, 'Johore, Malaysia', 'MO session 4 (@ Kaplan City Campus (Starhub Centre) w/ 5 others) http://t.co/6oks1ZX0'), (3759, 1354, 'Plentong, Johor Bahru', '@RamziThunder07 thanks follow follow back.... &gt;_&lt;'), (3760, 206, 'Singapore', '@msimpletontvk ikr -.- stupid kbs.'), (3761, 496, 'Singapore', '"Inside" stories are always interesting :)'), (3762, 1355, 'Johor Bahru, Johore', 'Unwind after 4 tough days (@ The Coastal Settlement w/ 3 others) [pic]: http://t.co/eOLhI0c5'), (3763, 1322, 'Plentong, Johor Bahru', '@Fiquetograph @kophooligan muka mcmni nak makan ayam. Wakkaakakakkaka. Luprkan yang lain http://t.co/pFEHtgMe'), (3764, 1356, 'Johor Bahru, Johore', 'I forgot how it feels to speak in short form.'), (3765, 1244, 'Johor Bahru, Johore', 'I''m at AMK Hub (Singapore) w/ 20 others http://t.co/OCNCyvJK'), (3766, 991, 'Johor Bahru, Johore', '@journeytoernxz I love you Ernie.'), (3767, 1194, 'Malaysia', '@Ritz_TS6 สู้ๆนะพี่ริท สู้ๆ :)'), (3768, 49, 'Johor Bahru, Johore', 'Mood less day study nth ! Totally nth today =.='), (3769, 260, 'Kota Tinggi, Johore', 'Going to buy cig for tommorow'), (3770, 832, 'Johor Bahru, Johore', '@nehnehpoopoo really!!haha:)'), (3771, 1350, 'Riau, Indonesia', 'halo mbak dona, eh kmrin udh jadi belum ngirim tulisan ke email gsj ttg cara aplikatif mnjaga lingkungan? RT @DonaRahayu @rulirara asrull'), (3772, 486, 'Johor Bahru, Johore', '@Reginezxoxo @rafash_ash lelong barang lah apa lagi ? #bodohnakmampos'), (3773, 185, 'Johor Bahru, Johore', '@nurulm ok ok alright!'), (3774, 1179, 'Riau, Indonesia', 'hello @Real_Liam_Payne and @Harry_Styles , i love you . say helllo?'), (3775, 1357, 'Johor Bahru, Johore', 'People call, text, so many fucking times, Dk how to reply?'), (3776, 1256, 'Johore, Malaysia', '@mangy_mongrel @Dcal - -lol- you thought really highly of me. You expect me to carry a cr2025 button battery as a matter of course huh?'), (3777, 1358, 'Johor Bahru, Johore', 'I''m at AhBoi''s Crib http://t.co/Zh1cagfL'), (3778, 1359, 'Johore, Malaysia', 'MAYONAISE + ONION RINGS MADE MY DAY BAYBEH ❤ http://t.co/YmUpNPz6'), (3779, 723, 'Plentong, Johor Bahru', 'I''m at Al Ikhsan Taman Bukit Dahlia http://t.co/heHUzCoK'), (3780, 701, 'Johor Bahru, Johore', 'I''m at taxi stand @ causeway point http://t.co/LPFeU4yE'), (3781, 1360, 'Johor Bahru, Johore', 'Going westmall..'), (3782, 1361, 'Johore, Malaysia', 'Hello @subtleassphinx! I am watching Toe. (@ Esplanade - Theatres on the Bay w/ 8 others) http://t.co/l6DZ6PUV'), (3783, 3, 'Johor Bahru, Johore', '@uggene Don''t eat too much, unhealthy eh?:) ;p'), (3784, 1362, 'Johore, Malaysia', 'So not in the right frame of mind for taxing statistics class after a long day of facing financial stuff and excel sheets :('), (3785, 1337, 'Johore, Malaysia', '@thisisrauf what u did at le bus'), (3786, 716, 'Johor Bahru, Johore', '#nowwatching Se7en-When I Can''t Sing'), (3787, 1194, 'Malaysia', '@fahsrit ได้ค่ะ เดี๋ยวบอก :DD'), (3788, 606, 'Johor Bahru, Johore', 'Finally done with maths homework but imma still stress up cause I wanna do geog also no notes with me.'), (3789, 1363, 'Johor Bahru, Johore', 'On my way homeeee ~ (at in 168 towards Wdl Interchange) — http://t.co/LQtrEty7'), (3790, 1364, 'Johore, Malaysia', 'Here with @Yvonne! :D (@ Little India, Singapore) http://t.co/qv77DzFQ'), (3791, 1365, 'Johor Bahru, Johore', 'HEAVEN (@ Blk 407 Fajar Road) [pic]: http://t.co/3Pp71IZn'), (3792, 1073, 'Johore, Malaysia', '@dee_kosh I supposed?tomorrow last day marh haha!!you''re unbeatable!!you gonna get that place!:)'), (3793, 1366, 'Riau, Indonesia', 'tiap x gw brsha tersenyum,biar lo gk tau gw sdng m''nutupi ksdihan gw :''('), (3794, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH u playing what etude?'), (3795, 1367, 'Johor Bahru, Johore', 'Fk of pls!!'), (3796, 1368, 'Johor Bahru, Johore', '@norainihashim As salam.. Sama lah kita Kak! Heheh, pe kabar? :))'), (3797, 375, 'Riau, Indonesia', 'ava mu bagus mbak ;") :@'), (3798, 1369, 'Johore, Malaysia', 'Adoi juz killed 1 kitchen fire... Sampai tingkat tujuh, asap tebal...umah sudah full of smoke.. Welldone rota 3 adoii .. Mandi time'), (3799, 1370, 'Johor Bahru, Johore', 'I''m craving for McGrill :)'), (3800, 1371, 'Johor Bahru, Johore', 'I''m at Bus Stop 43541 (Singapore) http://t.co/VCssWNK8'), (3801, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc me Anger u? '), (3802, 606, 'Johor Bahru, Johore', 'Zap it oh zap it why you print so slow.'), (3803, 1359, 'Johore, Malaysia', 'Stucked at Esplanade Burger King. Mane nak gyyyyy ?!'), (3804, 1372, 'Johore, Malaysia', 'I''m at PSB Academy (Henderson Campus) (Singapore) http://t.co/WOmOd2I6'), (3805, 1373, 'Johor Bahru, Johore', '"A for elephant" hahaha hassan -____-'), (3806, 723, 'Plentong, Johor Bahru', 'I just ousted Tanpa N. as the mayor of Rojak Asma on @foursquare! http://t.co/BsOMaPVV'), (3807, 723, 'Plentong, Johor Bahru', 'I''m at Rojak Asma (Pasir Gudang, Johor) http://t.co/7kIjBu4O'), (3808, 1357, 'Johor Bahru, Johore', 'Everybody throw their phone away ah today?'), (3809, 375, 'Riau, Indonesia', 'wirid :D'), (3810, 1374, 'Johore, Malaysia', 'Right here, right now. #combattime but all I''m looking forward to is wings and booze @ahli_online @gwen_ng http://t.co/foLksDvU'), (3811, 269, 'Johore, Malaysia', 'Ya Allah, tabahkanlah hatiku.. jadikanlah aku redha dgn ketentuanMu'), (3812, 1375, 'Johore, Malaysia', 'Lost and found. Love this street. Nice house and cars!!! Every drives fancy machine ... (at Bistro Petit Salut) [pic] — http://t.co/kv5hC76O'), (3813, 351, 'Johor Bahru, Johore', 'YESSAA MY FISHEYE LENS FOR IPHONE HAS ARRIVED!!'), (3814, 421, 'Johore, Malaysia', 'I''m at PastaMania (Singapore, Singapore) http://t.co/NfxHc4IT'), (3815, 1255, 'Singapore', '@BRIANA_iloveyou why you sound so emo!'), (3816, 762, 'Johore, Malaysia', '@_Jesusbeloved like i don''t want-.- seriously, been writing in my notes bad about those i hate -.-'), (3817, 98, 'Johor Bahru, Johore', 'Anyway. Tml still on? Or you lazy? :P @HAIFUS'), (3818, 260, 'Kota Tinggi, Johore', 'PALL mall or winston uh???...want to smoke something different'), (3819, 1194, 'Malaysia', '@Palink_Pink วันนี้เห็นพิงค์แถวจุติ :) 5555'), (3820, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah I got that on DVD from the library too. Gonna watch it later :) http://t.co/7sdtuGKI'), (3821, 1376, 'Johore, Malaysia', '@PangKawai i''m getting maths tuition!!!! siigh, i''m the only person in class that you''re on par with i think we''ll be maths budz til ib ends'), (3822, 1377, 'Johor Bahru, Johore', '#يوم_المراة_العالمي zzz, lol'), (3823, 1378, 'Johore, Malaysia', 'I''m at NTUC Fairprice (Singapore, Singapore) http://t.co/zIB7wRTJ'), (3824, 956, 'Johor Bahru, Johore', 'I shouldn''t be thinking of you.'), (3825, 1379, 'Johor Bahru, Johore', 'Cca tmrw'), (3826, 486, 'Johor Bahru, Johore', 'Azan sayang . Tlg senyap .'), (3827, 1263, 'Plentong, Johor Bahru', 'N I finished my first novel tat I bought this tues!'), (3828, 21, 'Johor Bahru, Johore', '@lefthanie what''s wrong!?'), (3829, 769, 'Singapore', '@iirhamakbar5 : hahaha.. debee ni pasti. enggak kok bkan aku aja tpi ada yg lain.'), (3830, 1380, 'Johore, Malaysia', 'I''m at Blk 710 Bedok Reservoir Rd http://t.co/r78P6oL1'), (3831, 147, 'Johore, Malaysia', 'RT @budakchik #PeopleIWantToMeet Bruno Mars'), (3832, 1381, 'Johore, Malaysia', 'I''m at NUS Central Library (Singapore) w/ 2 others http://t.co/as1XuMQK'), (3833, 1382, 'Johore, Malaysia', '@reluctanther0 lol batayan ba tlga un ng masipag? So kapag umuuwi on time d na masipag?'), (3834, 1367, 'Johor Bahru, Johore', '@ohsocutecute haha, yeah! But I still suck at twitter xD teach me hor!! :D'), (3835, 206, 'Singapore', '@msimpletontvk so cute right xD'), (3836, 1263, 'Plentong, Johor Bahru', 'So yea,moving to de second'), (3837, 1194, 'Malaysia', '@Ry_Patchanit เค้าจะไปหาริทให้ได้ T^T'), (3838, 1066, 'Johore, Malaysia', 'Day by day I''m getting pissed without any reason or about little things. Maybe I''m just being emotional for nothing. :|'), (3839, 497, 'Plentong, Johor Bahru', '@B4EM kat jb dah ada jual dah baem. Dah up to date dh jb. Haha'), (3840, 1383, 'Johor Bahru, Johore', '@theoneseven Lol , so have more tweets marh &lt;:'), (3841, 1256, 'Johore, Malaysia', '@mangy_mongrel @Dcal - to be honest I was kinda horrified to see it. I though I was so lucky it did not get shorted out in my pocket.'), (3842, 206, 'Singapore', 'KBS SO MEAN D:&lt; @msimpletontvk'), (3843, 1384, 'Johore, Malaysia', 'I''m at Isetan@supermarket (Singapore) http://t.co/rvs4rihU'), (3844, 207, 'Johor Bahru, Johore', 'Let''s go BANGKOK (@ Changi International Airport (SIN) w/ 13 others) http://t.co/B1EOIcqq'), (3845, 1385, 'Plentong, Johor Bahru', 'Last day of staying (@ Hotel Selesa Pasir Gudang) http://t.co/buV9uxBZ'), (3846, 451, 'Riau, Indonesia', 'I''m at Malaysian Food Street w/ 2 others http://t.co/ynqku5qg'), (3847, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc k, *phewphew* chill ah'), (3848, 1386, 'Johore, Malaysia', 'I''m at Raffles City Shopping Centre (Singapore) w/ 12 others http://t.co/Xk0eob22'), (3849, 411, 'Johor Bahru, Johore', 'Wow that''s funny. :D'), (3850, 1387, 'Johor Bahru, Johore', 'Finally going home. (@ Choa Chu Kang Bus Interchange w/ 2 others) http://t.co/2BOVh9wl'), (3851, 1384, 'Johore, Malaysia', 'I''m at Ikoma Language School (Singapore, Singapore) http://t.co/0UNdX2we'), (3852, 1383, 'Johor Bahru, Johore', '@theoneseven anyhow one larh (: so you got more tweets .'), (3853, 1366, 'Riau, Indonesia', 'Sabar ajah.lh ngadepin lo mah,mgkn kl gw dah gk ada baru lo tau sbrpa bsar rasa ini :")'), (3854, 375, 'Riau, Indonesia', 'bener bgt :) @sabiil_'), (3855, 61, 'Johor Bahru, Johore', 'Someone who sees the good and bad in me.'), (3856, 1388, 'Johor Bahru, Johore', '@tayoori009 lol u future airport u be based in'), (3857, 1004, 'Johore, Malaysia', 'I''m at HMV (Singapore, Singapore) http://t.co/yl7bB38r'), (3858, 1389, 'Johore, Malaysia', 'I''m at Anna''s Palace http://t.co/nmydq9tg'), (3859, 176, 'Johor Bahru, Johore', 'I see a shooting star :):):):) if only you were here.'), (3860, 1194, 'Malaysia', 'เพลียว่ะะะะะะ ใช่สิ ไม่ใช่ลูกรัก !'), (3861, 1390, 'Johore, Malaysia', 'Tori Teriyaki meal :) @ Umisushi Paya Lebar Mrt http://t.co/YKtbXS6d'), (3862, 319, 'Johor Bahru, Johore', 'I''m at Madeira Condominium (Singapore) http://t.co/UxTzbI29'), (3863, 1120, 'Johore, Malaysia', 'Let be friends ? #Dafuq?'), (3864, 63, 'Johore, Malaysia', '@SASHAASUHAILAH oh ok :('), (3865, 206, 'Singapore', '28K WOAH O_O in another week i guess 30k rofl;3 just enjoy tweeting ;3'), (3866, 1391, 'Johor Bahru, Johore', 'RT @_amalynaaa: RT @samxbkr Happy Anniversary to the +Js! Though the +J namesake was only conceived about a month later. '), (3867, 1360, 'Johor Bahru, Johore', '@Telesaurtise oh I did...not finish them haha'), (3868, 1331, 'Johor Bahru, Johore', '@EstherNYX please. They have way more unhealthy stuff. I''m gonna cut down on McDonalds. And I''ll stop upsizing probably'), (3869, 664, 'Johor Bahru, Johore', '@MuhdAlfiyan @DinSharif mane nk ajak'), (3870, 428, 'Johor Bahru, Johore', 'I''m at Tampines 140 (Singapore, Singapore) http://t.co/t7ulA7eH'), (3871, 1348, 'Johor Bahru, Johore', 'I''m at Habib Family Restaurant (Singapore, Singapore) http://t.co/FkFgv2NN'), (3872, 1392, 'Johore, Malaysia', 'I''m at Palm Beach Seafood Restaurant (Singapore, Singapore) http://t.co/2DlG1t55'), (3873, 41, 'Plentong, Johor Bahru', '@edlinayn haha, tak dapat upah ke i bodek ni? xD'), (3874, 375, 'Riau, Indonesia', 'okeedehh sip sipp :) @RISE_WORLD'), (3875, 1393, 'Johore, Malaysia', 'Here we go (at The Grand Theater) [pic] — http://t.co/efcSiLPj'), (3876, 1394, 'Johore, Malaysia', 'I''m at Astons Specialities (Singapore, Singapore) http://t.co/Jt70oMNs'), (3877, 720, 'Plentong, Johor Bahru', 'ayah saje je tukar channel . kejap tv3 kejap tv2 kejap tv9'), (3878, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ eat finish already la. even reach home already'), (3879, 1383, 'Johor Bahru, Johore', '@JesslynJL @falalala_ @inlovee_ LOL !'), (3880, 720, 'Plentong, Johor Bahru', 'ayah saje je tukar channel . kejap tv3 kejap tv2 kejap tv9 [Like it? http://t.co/I6ikWauB ]'), (3881, 206, 'Singapore', '"Haters gonna hate" ♥ Heh. ;3 @msimpletontvk'), (3882, 319, 'Johor Bahru, Johore', 'I''m at ©Kevin''s ™ http://t.co/HpEfXoKz'), (3883, 31, 'Johore, Malaysia', 'thank you luvies for the gifts! @ jimmie''s crib http://t.co/vLjynJio'), (3884, 209, 'Johore, Malaysia', 'Hate it :( when my hair dryer almost exploded. I''ve been air drying my hair since Sunday.'), (3885, 1395, 'Johore, Malaysia', 'I''m at Bus Stop 11521 (Anchorpoint) (Singapore, Singapore) http://t.co/hSNdTlyr'), (3886, 687, 'Johore, Malaysia', '@NabilahRugan @greenie_leena everything ? Literally everything ? Hehee'), (3887, 1396, 'Plentong, Johor Bahru', '@AfeezVanilla cantil..???haha..'), (3888, 1194, 'Malaysia', 'สงสารพี่ชิน สู้ๆๆ *สะบัดพู่* 55'), (3889, 1366, 'Riau, Indonesia', 'hingga tiba saat.y kau akan menyadari# smga blm terlambat eaaaak'), (3890, 1397, 'Johore, Malaysia', 'at the moschino show for 15 mins. rush hour begins now. (@ The Paragon w/ @wearegoldennn) http://t.co/DRHaqeg3'), (3891, 1101, 'Johore, Malaysia', '@ameerasawit Daa f0llow da .. Ucu da f0llow ke bel0m kkk punyee twitter..'), (3892, 1398, 'Johor Bahru, Johore', 'I''m at Somewhere I Belong http://t.co/CfboCID2'), (3893, 1353, 'Plentong, Johor Bahru', '@SorayaJAdam same la.. cm mls nk pg..tiket pon i dh jual blek.. yg u nape tak g?..'), (3894, 494, 'Johor Bahru, Johore', 'Going down now...Im seriously Takut'), (3895, 3, 'Johor Bahru, Johore', '@uggene Enjoy bah, later hand oily oily touch keyboard/phone not good, finish then talk to me:)'), (3896, 1284, 'Plentong, Johor Bahru', '@XuShanQing idk leh, becos i heard from sp group in facebook no more slot liao.. :( so i use tht as excuse lor haha :) u 24/3?'), (3897, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH haha (: etude 2 easier(:'), (3898, 1243, 'Johor Bahru, Johore', 'I''m at Beauty World Centre (Singapore, Singapore) http://t.co/99gkCy4z'), (3899, 720, 'Plentong, Johor Bahru', '@TheLazyofAes @syadasyadot haha betul tu aes . hahahaha'), (3900, 98, 'Johor Bahru, Johore', '@HAIFUS okay babe! :) you want me to wait for you? ^^'), (3901, 31, 'Johore, Malaysia', 'relate?? @jo86swag heheh @ jimmie''s crib http://t.co/AFMLJR9N'), (3902, 486, 'Johor Bahru, Johore', '"@NrlIzt: asal ramai org geram ngan aku ni.... :("'), (3903, 1399, 'Johor Bahru, Johore', 'Tmr class outing! Yahoo! Can''t wait!'), (3904, 1360, 'Johor Bahru, Johore', '@feefhvrx_ oh really haha good!! Then can I ask if the military shop is still open or not?haha would be a great help'), (3905, 1216, 'Johor Bahru, Johore', 'Just finish eating now watching show.. (@ living room) http://t.co/tZUenVmU'), (3906, 206, 'Singapore', '@msimpletontvk not like they purposely did them . all were accidents &gt;&lt; peeeeeesh kbs . -.-'), (3907, 630, 'Johore, Malaysia', 'Dinner first hehe (@ Spize River Valley) http://t.co/htc6vjpx'), (3908, 1386, 'Johore, Malaysia', 'I''m at J.Co Donuts &amp; Coffee (Singapore) http://t.co/v1QDB2Ib'), (3909, 1400, 'Johor Bahru, Johore', 'MUHAHA. Mr Edward''s homework = optional work'), (3910, 1401, 'Kota Tinggi, Johore', '@Magggdalene Awww Jaafar and ariel &lt;3'), (3911, 209, 'Johore, Malaysia', 'So nice to see everyone again :( wish I could have stayed @Nataliehoqm @gladysakl @maggietmq @ericplaysfire'), (3912, 1402, 'Johor Bahru, Johore', 'I''m at Mufiz Food Corner (Singapore) http://t.co/MH68n806'), (3913, 720, 'Plentong, Johor Bahru', '@zaskiasyah15 wahh cantik bgt sis :]'), (3914, 664, 'Johor Bahru, Johore', '@DinSharif @MuhdAlfiyan ade ape?'), (3915, 1367, 'Johor Bahru, Johore', '@WEITINGG_G Hello :D'), (3916, 1403, 'Kota Tinggi, Johore', 'Faded away (at Overhead Bridge @ Tai Seng) [pic] — http://t.co/iUMp6TQJ'), (3917, 1404, 'Johore, Malaysia', 'most of us got educated out of our creativity.'), (3918, 1406, 'Johore, Malaysia', '@Fahms_ will do bro! :)'), (3919, 147, 'Johore, Malaysia', 'Saya mahu ke bilik ye sayang, kerana ku mahu sembahyang..'), (3920, 754, 'Johore, Malaysia', 'Awesome, you said you want it in advance but told me you want it at 7.15. Isn''t that now? I don''t know if you''re stupid or just stupid.'), (3921, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah i think I will too. I have Bern cutting down on fast food lately. Gonna keep it that way'), (3922, 63, 'Johore, Malaysia', '@SASHAASUHAILAH ok cos most of them not going seh'), (3923, 1114, 'Johore, Malaysia', 'Lion symbol (@ The Merlion w/ 2 others) http://t.co/QVZmrTqH'), (3924, 1350, 'Riau, Indonesia', '@RevaEva tgl 15 april yah, oke insya allah aku ikut kesana deh besok, gimanaaa trembesinya udh dpt?'), (3925, 206, 'Singapore', 'At least Big Bang produces many awesome music. ♥ ORIGINAL.'), (3926, 1097, 'Johor Bahru, Johore', 'Gonna bathe now^^ (@ my Awesome house((:) http://t.co/TGP4D3df'), (3927, 1120, 'Johore, Malaysia', 'Pocong + Pontianak = Toyol . #DaFuq?'), (3928, 411, 'Johor Bahru, Johore', 'Annoying sia. Mails keep pooped up.'), (3929, 1407, 'Plentong, Johor Bahru', '@miz_maleya kwn slmt hari lahir ye...'), (3930, 1408, 'Malaysia', 'I''m at Sweet&amp;Nice Wedding Studio http://t.co/6XoamjUy'), (3931, 1409, 'Johor Bahru, Johore', 'Eating macs now after a tiring npap!'), (3932, 1366, 'Riau, Indonesia', 'Secara berlahan ato scara to de point tetep aja intinya meninggal.kn#nyesek'), (3933, 1066, 'Johore, Malaysia', 'I may smile at others but being alone, I might just cry. Who knows?'), (3934, 1410, 'Johor Bahru, Johore', '“@JoyceMeyer: God wants to speak to you on a one-to-one basis every day. He wants to lead you to the good things He has in store for you.”'), (3935, 1411, 'Johore, Malaysia', 'Tsk tsk, rozelle so excited siol . RT : @ZelleZiao : I have a feeling @Ljoeftw is eating. Thats why she aint replying ne.'), (3936, 1412, 'Johore, Malaysia', 'I''m at Queenstown MRT Station (EW19) (Singapore, Singapore) w/ 4 others http://t.co/964VYYj0'), (3937, 64, 'Johore, Malaysia', 'takaki yuya is cool'), (3938, 716, 'Johor Bahru, Johore', 'Had a goood taalk with Syamimi jusst now in the bus. (:'), (3939, 1413, 'Johore, Malaysia', '@SuMayGan @hooiJinn me three!! So miss the everything in Korea.'), (3940, 1414, 'Johor Bahru, Johore', '(=.=)'''''' (at IKEA) — http://t.co/1eVhNHaM'), (3941, 1359, 'Johore, Malaysia', '" Who do you think you are running round leaving scars. Collecting your jjar of hearts and tearing love apart. "'), (3942, 1140, 'Johor Bahru, Johore', 'Tmr dad ''s leaving to overseas. I don''t feel as happy as I expected. #wtf'), (3943, 1415, 'Johore, Malaysia', 'thanks serene and Polly..enjoying lao ban in class.. ❤ @ Kaplan City Campus (Wilkie Edge) http://t.co/cisiTFqb'), (3944, 1416, 'Johor Bahru, Johore', 'It''s just about time that I started thinking about myself.'), (3945, 733, 'Johor Bahru, Johore', '@petrinaheartxcz lol yeah , they think too highly of themselves already'), (3946, 1417, 'Kota Tinggi, Johore', 'I''m at Ichiban Sushi (Singapore, Singapore) w/ 2 others http://t.co/vsef81kn'), (3947, 1418, 'Johor Bahru, Johore', 'I''m at Boon Tong Kee 文东记 (Singapore, Singapore) http://t.co/4lCzIMss'), (3948, 1388, 'Johor Bahru, Johore', '@tayoori009 okay but that''s damn cool no shit :) is there a cool terminal'), (3949, 62, 'Johor Bahru, Johore', 'ada uh bdak pendek\nNi.Da uh bbl psal dier leh sot! RT“@tweetlipxz:@ForeverChronic alala siape buat kau hampa ni?meh bilang kakak siape haha”'), (3950, 1419, 'Johore, Malaysia', '@thyellowbrick hiayo.. is ur admission number la.. :/'), (3951, 815, 'Johore, Malaysia', 'I''m at EpiCentre (Apple Store) (Singapore, Singapore) http://t.co/wKYIHYu2'), (3952, 670, 'Pulai, Johor Bahru', 'I''m at Tutti Frutti Perling Mall http://t.co/rckrgvHw'), (3953, 1331, 'Johor Bahru, Johore', 'I would have never thought McDonalds salad is one if the most unhealthy item on the menu...'), (3954, 1420, 'Johore, Malaysia', 'Toeeeee (@ MOSAIC Music Festival w/ @miltonsau) http://t.co/sNIXI0Zq'), (3955, 1411, 'Johore, Malaysia', 'downloading song , lazy do HBL .'), (3956, 1345, 'Johor Bahru, Johore', '@fcukitbitchful :X ask ur sister chill.. :B'), (3957, 445, 'Malaysia', 'จะเหนื่อยอะไร มากมายเพียงนี้?!?'), (3958, 1366, 'Riau, Indonesia', 'Pelajaran hidup di mulai dari rasa sakit# trying'), (3959, 1421, 'Johor Bahru, Johore', 'I''m at Home  (Singapore) http://t.co/kJnYrup9'), (3960, 1105, 'Johor Bahru, Johore', 'Time to ball http://t.co/YDeujeRj'), (3961, 716, 'Johor Bahru, Johore', '"@AfiqMetallic: Im just waiting for you."'), (3962, 372, 'Johore, Malaysia', '@cha_lacap hindi naman toxic.. Ayaw ko lang hehe..'), (3963, 566, 'Johore, Malaysia', 'I''m at Marina Square Golden Village http://t.co/tjaYL7ms'), (3964, 1179, 'Riau, Indonesia', '@BeforeYouExit mind to followme back , dude ? &lt;3'), (3965, 1368, 'Johor Bahru, Johore', '@SarahAqilahJ As salam..Sis, tahniah! Semoga semuanya berjalan lancar. Salam ceria dr kami di Woodlands. ",)'), (3966, 1388, 'Johor Bahru, Johore', '“@Shaozyy: HOLY XIAO HAN RT @Spencercurrylim: i m just prayin not to fail and module. pls god”'), (3967, 530, 'Malaysia', 'I''m at ธนาคารไทยพาณิชย์ (Siam Commercial Bank) (Hat Yai, Songkhla) http://t.co/HaXhyOh8'), (3968, 445, 'Malaysia', 'สลบ-[]-'''), (3969, 1353, 'Plentong, Johor Bahru', 'dh msk maghrib.. bangon2!!..'), (3970, 670, 'Pulai, Johor Bahru', '@reginachin chill chill'), (3971, 1422, 'Johor Bahru, Johore', 'Training can be anywhere..am now in woodlands'), (3972, 720, 'Plentong, Johor Bahru', 'ohyeah ! balkis kena tangkap .alah kak polis yang kerek , tangkap je balkis tu . haha jahat sangatt.'), (3973, 1423, 'Johore, Malaysia', 'open my eyes to Your wonders Lord.'), (3974, 1424, 'Johore, Malaysia', 'I don''t know whether to be happy or sad.'), (3975, 1359, 'Johore, Malaysia', '@ArizDCruz yeah ;b'), (3976, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH nope he left at 4 today /:'), (3977, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ lol yeah but now fast food prices can compete with hawker centre food prices already.'), (3978, 754, 'Johore, Malaysia', 'Got to DL 2AM and B1A4 new songs.'), (3979, 21, 'Johor Bahru, Johore', '@M_shad0ws rabs tkde pe? Ahha aku ade! Kau tau kdai comics ape bnde enta. De ade jual. Lgpn klu yg amek olvl de ban dari jual. ;P'), (3980, 1311, 'Johore, Malaysia', '@whiteheadrunner my 1 year old tefal toaster shit itself this week. 1 month after end of warrenty. Remember when stuff used to last?'), (3981, 670, 'Pulai, Johor Bahru', 'Never get sick of tutti frutti:D'), (3982, 1396, 'Plentong, Johor Bahru', '@AfeezVanilla hahaha..sje je..hehe..'), (3983, 43, 'Johore, Malaysia', '@JoharIman K greatt.'), (3984, 1186, 'Johore, Malaysia', '@JerryT9 bought ur laptop?'), (3985, 1425, 'Johore, Malaysia', 'Headache!! Argh!'), (3986, 1426, 'Johore, Malaysia', 'I''m at PSB Academy (Delta Campus) w/ @adrian_kosim http://t.co/LnPIGj85'), (3987, 1404, 'Johor Bahru, Johore', 'if u want to succeed are u also prepared to pay it''s price?'), (3988, 670, 'Pulai, Johor Bahru', 'I love him.'), (3989, 1395, 'Johore, Malaysia', 'I''m at Bus 33 http://t.co/vQobQnQf'), (3990, 1427, 'Johor Bahru, Johore', 'Eating at the newly opened Ayza''s Restaurant. @ Ayza''s Restaurant http://t.co/n5wEGaE1'), (3991, 21, 'Johor Bahru, Johore', 'Cloud nine.'), (3992, 486, 'Johor Bahru, Johore', 'Prayers time . &lt;3'), (3993, 861, 'Johor Bahru, Johore', '@LackadaisicalFa didn''t know trainer for run needs WSQ cert. haha. Can can! Lol'), (3994, 1108, 'Johore, Malaysia', 'I cannot start my GunZ. Fuck.'), (3995, 591, 'Johore, Malaysia', '@najeeela auntie respond to my SMS please'), (3996, 1428, 'Plentong, Johor Bahru', 'My muscle growing up !'), (3997, 1429, 'Johore, Malaysia', 'S.League: Tampines vs Tanjong Pagar (@ Clementi Stadium) http://t.co/w4oQM2mg'), (3998, 1430, 'Johor Bahru, Johore', 'My brother sketched me while im playing guitar.. The tears are what he feels while im playing a particular song.. http://t.co/w0raPNlS'), (3999, 1431, 'Singapore', 'This means Ain''t No Fun MV soon!'), (4000, 110, 'Johore, Malaysia', 'Otw home!'), (4001, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE yyea syg..hehe..:)'), (4002, 954, 'Johor Bahru, Johore', 'Tell me what u really really wan.'), (4003, 1432, 'Johor Bahru, Johore', '@aytell @chekvillegas @annepangan @jinkyoliveros OT ang drama ko today :((((('), (4004, 1366, 'Riau, Indonesia', '@ardiyanti_suci apa.y yg gk WAW hehehe manyun gt iaa'), (4005, 1186, 'Johore, Malaysia', '@charshawnam namnamnam'), (4006, 1108, 'Johore, Malaysia', '@Pig_roasted Uhhuuh?'), (4007, 1401, 'Kota Tinggi, Johore', '@Magggdalene Yeah haha!! Want go not? Weekday I can leh'), (4008, 61, 'Johor Bahru, Johore', '@PeiYi2706 aren''t you thick skinned'), (4009, 486, 'Johor Bahru, Johore', '@Buqairy oi solat magrib dulu ..'), (4010, 1433, 'Johore, Malaysia', 'Tired ::'), (4011, 1231, 'Johore, Malaysia', 'I''m at Toa Payoh HDB Hub (Singapore, Singapore) w/ 2 others http://t.co/zavwEgaC'), (4012, 493, 'Johor Bahru, Johore', '“@TheseDamnQuote: True love has a habit of coming back.”'), (4013, 1173, 'Plentong, Johor Bahru', 'maghrib! tunaikan kewajipan semuaa :'')'), (4014, 41, 'Plentong, Johor Bahru', 'kasut Macbeth memang pujaan ahati aku tapi sayang, mahal la =='''), (4015, 670, 'Pulai, Johor Bahru', 'Parents and sista coming back later!! Whee. Time to choose souvenirs!'), (4016, 486, 'Johor Bahru, Johore', '@budakchik solat dulu nnt dh tk ..'), (4017, 1434, 'Johore, Malaysia', 'Dinner (@ Han''s Cafe) http://t.co/BTsVGRpG'), (4018, 637, 'Singapore', 'The first thing i was supposed to do this morning was to watch #TVD and i have yet to watch it haha! Not so Bebu'), (4019, 1192, 'Johor Bahru, Johore', 'Sayunya hatiku..'), (4020, 1435, 'Johor Bahru, Johore', 'Baby went back at 6 plus ! Miss him so much ):'), (4021, 1436, 'Johore, Malaysia', 'I''m at Wesley Methodist Church (Singapore, Singapore) http://t.co/sSWCvXlO'), (4022, 1437, 'Johore, Malaysia', 'dihina hina aja wib motor nya.. ntar pasti panas deh tuh dia..RT @Wibi1987: markipul *panasin motor* *pake kompor*'), (4023, 1438, 'Johore, Malaysia', 'http://t.co/8mIvksvp'), (4024, 530, 'Malaysia', 'I''m at ธนาคารกสิกรไทย (Hatyai, Songkhla) http://t.co/F5l2RwoV'), (4025, 591, 'Johore, Malaysia', '@vhwy95 haha recently only lah:)) some cute pic of Donghae:)'), (4026, 1439, 'Johore, Malaysia', '@Hadi_Ahdee your ex! Lalalala!'), (4027, 508, 'Johore, Malaysia', 'I''m at Toa Payoh Swimming Complex (Toa Payoh, Singapore) http://t.co/vFRQI1ax'), (4028, 1440, 'Johor Bahru, Johore', 'IMY a lot.... :''('), (4029, 98, 'Johor Bahru, Johore', '@HAIFUS okay you tml confirm w me again! :)'), (4030, 1441, 'Pulai, Johor Bahru', 'Sorila principal,x memasal j kne kelentong dgn ak..'), (4031, 809, 'Johor Bahru, Johore', 'http://t.co/gTwO41LQ @Boi_Elastico ni kau ckp gay??'), (4032, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE wah background..mnarik..haha..'), (4033, 1442, 'Johor Bahru, Johore', 'I''m at 成喜素食 http://t.co/UvTaVSiY'), (4034, 310, 'Kota Tinggi, Johore', 'Fats again!!! Ahahaha... (@ KFC w/ @eleapot) [pic]: http://t.co/GxQrJBkx'), (4035, 1007, 'Johor Bahru, Johore', '@JasonLobster let''s meet on the 30th!!!!! Hehehehehe.'), (4036, 430, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall (Singapore, Singapore) w/ 22 others http://t.co/WKVY5tSw'), (4037, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH idk leh...'), (4038, 1443, 'Johore, Malaysia', 'I''m at Masjid sultan http://t.co/UttCEpxL'), (4039, 769, 'Singapore', '@iirhamakbar5 : iya.. =P'), (4040, 1427, 'Johor Bahru, Johore', 'I''m at Ayza''s Restaurant http://t.co/72qMpa5U'), (4041, 1120, 'Johore, Malaysia', 'If you don''t have an asshole friend , probably you are the asshole #9gag'), (4042, 670, 'Pulai, Johor Bahru', '@reginachin ohhhh. HAHAHAHA. Gonna eat tutti frutti now. Bye~~~Hehehehehe'), (4043, 1444, 'Johor Bahru, Johore', 'I''m at Salted Caramel Artisan Ice Cream (Singapore) http://t.co/NOMXkjSN'), (4044, 1191, 'Plentong, Johor Bahru', '@FyyTasha :)'), (4045, 1108, 'Johore, Malaysia', '@Pig_roasted Really...?'), (4046, 1186, 'Johore, Malaysia', '@JerryT9 which?! Spec?'), (4047, 1446, 'Johor Bahru, Johore', 'I''m at ITE College West (Chua Chu Kang) http://t.co/wB7OZT3P'), (4048, 1447, 'Johor Bahru, Johore', 'I''m at Bukit Panjang Plaza (Singapore, Singapore) w/ 7 others http://t.co/wsvDLxwS'), (4049, 1419, 'Johore, Malaysia', '@thyellowbrick hahahah.. you really kinda a bit blur.. hahahah.. anyway what sch u frm again?'), (4050, 1031, 'Singapore', '|'), (4051, 1448, 'Johore, Malaysia', '淫荡的一天结束鸟 (@ National Library Building w/ 6 others) http://t.co/SNJpUFiD'), (4052, 1449, 'Johore, Malaysia', '짜장면!!! @sh3r_yl @penguinreborn @theshikshin1 (at Food Village) [pic] — http://t.co/dfiTgxae'), (4053, 1251, 'Johor Bahru, Johore', 'It''s late in the evening. She''s wondering what clothes to wear. She puts on her make up and brushes her long blonde hair;'), (4054, 1450, 'Johore, Malaysia', 'I envy couples that their relationship last so long.'), (4055, 1451, 'Johor Bahru, Johore', '@DreamsCreams babe so wat Zhi Zheng say?'), (4056, 620, 'Johor Bahru, Johore', 'Some Fresh+Crunchy Snackin'' while waiting for dinner to be hot &amp; ready.. @ Hougang Ave 4 http://t.co/8HX07mjd'), (4057, 118, 'Johor Bahru, Johore', '@rohanitarohin 40cents!!!!'), (4058, 1007, 'Johor Bahru, Johore', 'Oh look! Zero dollar in my wallet. And chicken rice for me! Oh well.'), (4059, 1452, 'Johor Bahru, Johore', 'I''m at Zuriel''s House Magic Tree (Simei, Pasir Ris) http://t.co/VDGbYJsF'), (4060, 1453, 'Johore, Malaysia', 'This means war (at The Cathay Cineplex) — http://t.co/Wxb00A5B'), (4061, 1454, 'Johore, Malaysia', 'On time this time! (@ The Sands Theater) http://t.co/oKgPKMFV'), (4062, 1455, 'Johore, Malaysia', '@sammmydee u know how to speak their language?'), (4063, 1456, 'Johor Bahru, Johore', 'Dumping lots of stuffs. (@ Cynthia''s Study Room ) http://t.co/PxzdLmRQ'), (4064, 769, 'Singapore', '={ &lt;--- mustache'), (4065, 629, 'Johore, Malaysia', 'I''m at Seoul Garden (Singapore, Singapore) http://t.co/4oA1j5kB'), (4066, 1457, 'Johore, Malaysia', 'I''m at Joe''s Kitchen Thai Cuisine@Alexandra http://t.co/Kj32TMqo'), (4067, 375, 'Riau, Indonesia', 'Rise ini lagu untuk kalian :) @RISE_WORLD'), (4068, 1350, 'Riau, Indonesia', 'jgn malas nak ~_~ RT @zuhri_oktariza mau kuliah, tapi ngantuk, baa koo'), (4069, 1458, 'Johore, Malaysia', 'Why cant i have a normal life ? I just want to be slim and beautiful for just once in my life .No critisism . Please God .'), (4070, 21, 'Johor Bahru, Johore', '@ZynneBanks kn dah malam. Orang itam malam tkle nampak. Hiok'), (4071, 1459, 'Johor Bahru, Johore', 'I''m at Shuang Jin Eating House (Singapore) http://t.co/x3sNtuqD'), (4072, 1460, 'Johor Bahru, Johore', 'I''m at Swensen''s (Singapore) w/ 3 others http://t.co/wh8edb0l'), (4073, 790, 'Johor Bahru, Johore', '@KatieMooMooBear hahahahaa yeap, malaysia! :)'), (4074, 151, 'Johor Bahru, Johore', 'Heehhhhh... Travelling 2 hari rasanya kayak sebulan..... Capekkkk bangettt.... http://t.co/2a32hxPR'), (4075, 206, 'Singapore', 'Popularity isn''t all for one to prove they gain success right?:D the music charts. the 60,000 over fans that support big bang. (Y)♥'), (4076, 1461, 'Johore, Malaysia', 'On way to networking do (@ Tiong Bahru MRT Station (EW17)) http://t.co/Iq3AdhkH'), (4077, 1462, 'Johore, Malaysia', 'Eating herbal egg :D the time taken to peel off the skin like longer than eating the egg :/'), (4078, 1463, 'Johor Bahru, Johore', 'Saw @hai_ry_az_man . Tadi aku fikir abg handsome mane :P'), (4079, 1464, 'Johore, Malaysia', '@JAYYYSIAAH u saw tat on th bus?'), (4080, 1359, 'Johore, Malaysia', 'Oklah.'), (4081, 93, 'Johore, Malaysia', 'Relieved'), (4082, 977, 'Johore, Malaysia', 'Time for class! ^^ (@ DanzPeople, Pomo) http://t.co/rJ5qS5M2'), (4083, 1465, 'Johore, Malaysia', 'Just realized commonwealth have another bike shop. Woots'), (4084, 1466, 'Johore, Malaysia', '4S is getting common and boring !!'), (4085, 1467, 'Johore, Malaysia', 'I''m at Tan Tock Seng Hospital (TTSH) (Singapore, Singapore) w/ 2 others http://t.co/vkuqPEf1'), (4086, 1468, 'Johor Bahru, Johore', 'Mmmm nice weather to swim ! Shall go swimming now !'), (4087, 1254, 'Johore, Malaysia', 'First time ko sumakay sa motor dito sa SG. Knina nung naglunch kme sa IMM. http://t.co/aqCHr7Oa'), (4088, 720, 'Plentong, Johor Bahru', 'apa eh nama polis lelaki bertopi ni ? muka dia macam remy ishak , ibu cakap .. #AtasNamaCinta'), (4089, 1469, 'Johor Bahru, Johore', 'Another batch of lasallians...:)'), (4090, 1470, 'Malaysia', 'แวะซื้อของงง (@ Robinson Had Yai (โรบินสัน หาดใหญ่) w/ 2 others) http://t.co/KqA6vf2W'), (4091, 1073, 'Johore, Malaysia', 'Aiyo!tuition teacher haven come seh!'), (4092, 954, 'Johor Bahru, Johore', 'A little thing , our f/s sink. fml.'), (4093, 486, 'Johor Bahru, Johore', 'Cant you see im trying to pray here ..? So pleasse .. can ? Thank you ..'), (4094, 1331, 'Johor Bahru, Johore', '@EstherNYX woah I didn''t know that. I would eat fries but I won''t be eating McDonalds all the time. Their chicken nuggets sound gross though'), (4095, 1471, 'Kota Tinggi, Johore', '@janny_manny lol really'), (4096, 1194, 'Malaysia', '@Cotton__Wool อารมณ์ตอนนี้มันแบบ เพลีย5555 ถึงไม่ได้แต่เข้าใจฟค. เข้าใจศิลปิน แต่ไม่เข้าใจต้นสังกัด -___________-'), (4097, 1360, 'Johor Bahru, Johore', '@feefhvrx_ hmm..shall check it out!!thanks haha'), (4098, 1179, 'Riau, Indonesia', 'cuma ko jiff kayaknya :'') {}{}{}{}{}{}'), (4099, 1454, 'Johore, Malaysia', 'I''m at WICKED: The Broadway Musical (Singapore) w/ 3 others [pic]: http://t.co/69M6eO1R'), (4100, 1472, 'Johor Bahru, Johore', 'I''m at Blk 314 Hougang Ave 5 (Singapore) http://t.co/BCReLf0m'), (4101, 1439, 'Johore, Malaysia', 'Ice skating with collleague!'), (4102, 954, 'Johor Bahru, Johore', 'Stop flirting and start working.'), (4103, 1172, 'Johore, Malaysia', 'Just visited mie Aunty, uncle and their new born angel (; (@ Kkh Women''s Tower, Ward 34) http://t.co/mfQWk4Yz'), (4104, 486, 'Johor Bahru, Johore', '@budakchik dabis report kt aku ..'), (4105, 1136, 'Malaysia', '@Plukko สวัสดีค่ะพี่ปลั๊ก'), (4106, 3, 'Johor Bahru, Johore', '@uggene why wrong?:O ?!?!?! http://t.co/jlTJh6y3'), (4107, 790, 'Johor Bahru, Johore', 'I wna eat... Calbee.. Seaweed flavour chips..'), (4108, 1411, 'Johore, Malaysia', '@ZelleZiao Hahas , go chat with him luh !'), (4109, 1473, 'Johore, Malaysia', 'Smoochiezz (@ ADL Building) http://t.co/YQj5w4bw'), (4110, 720, 'Plentong, Johor Bahru', '@iHeran gile bangang . hahahhaha'), (4111, 206, 'Singapore', '@bunnybaby1315 YEP &lt;3'), (4112, 1474, 'Johor Bahru, Johore', 'I''m at Cheah Heng Eating House (Singapore, Singapore) http://t.co/H9NWDdqA'), (4113, 1437, 'Johore, Malaysia', 'ooohh i love adam sandler''s movie so much..'), (4114, 1106, 'Johor Bahru, Johore', 'got feel for ice cream'), (4115, 1475, 'Johor Bahru, Johore', 'Makan dinner with Christina! :) (@ Ichiban Sushi) http://t.co/AKysD2V9'), (4116, 63, 'Johore, Malaysia', 'Bagus lah tu nak school holiday aru nak sakit'), (4117, 1359, 'Johore, Malaysia', 'Let''s go to Marina Squaaaaare ❤❤'), (4118, 1476, 'Johor Bahru, Johore', 'I''m at Ivann''s Home :) (Singapore, Tampines) http://t.co/WTBAWlOk'), (4119, 633, 'Johore, Malaysia', 'I''m at VivoCity w/ @alrykalanor http://t.co/yUCTXzXk'), (4120, 1477, 'Johor Bahru, Johore', '@BuffyB_bears @chermaine_w @aehhrica @syaafiqah @jundelovestf2 peiyi me more xtra'), (4121, 1478, 'Johor Bahru, Johore', 'I''m at Cold Storage (Singapore) http://t.co/jATha4Lw'), (4122, 684, 'Johor Bahru, Johore', 'I need u here:( @acidlacedkisses'), (4123, 3, 'Johor Bahru, Johore', '@Hayleystitch :)'), (4124, 62, 'Johor Bahru, Johore', 'mane ada marah, tngah senyum ni -.-!“@tweetlipxz: @ForeverChronic HAHAHAHAHA MARAH NAMPAK”'), (4125, 762, 'Johore, Malaysia', '@_Jesusbeloved haha:p no lah, god give us a life so we must appreciate it although i really hate my life, some lame thing ruin my whole life'), (4126, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah. But now hawker centre prices going up. Now ffried rice cost almost $5 for a packet'), (4127, 1479, 'Johore, Malaysia', 'Mine also! RT @Sillyb0y28: My throat really died!'), (4128, 717, 'Johor Bahru, Johore', '@looooofy who ah ?'), (4129, 1368, 'Johor Bahru, Johore', '@norainihashim Ya betul Kak! 10 markah..Hehehe! Ngah makan eh..Selamat menjamu selera ya.. :))'), (4130, 138, 'Johore, Malaysia', 'So far the movie is boring like shit'), (4131, 1480, 'Johore, Malaysia', 'I''m at Our Korner (Singapore) http://t.co/zmnzE1zc'), (4132, 1383, 'Johor Bahru, Johore', '@tanzhengnan you got 12 followers liao . Actually you got 6 only . I help you add another 6 xD'), (4133, 1207, 'Johore, Malaysia', '@kokksusan your boyfriend? Lol'), (4134, 713, 'Johore, Malaysia', 'I''m at Vet Practice http://t.co/OaRtumHp'), (4135, 1481, 'Johor Bahru, Johore', '@inkaddictjosiah finished work at 530. Yl today learn car Eh. You with who today?'), (4136, 1482, 'Johore, Malaysia', 'Black pig shabu shabu @ Tampopo http://t.co/b1UcFAcN'), (4137, 1359, 'Johore, Malaysia', 'JOM. http://t.co/vhl7z9bn'), (4138, 818, 'Johore, Malaysia', 'IRIS so damn interesting'), (4139, 1108, 'Johore, Malaysia', '@Pig_roasted Omg.'), (4140, 1413, 'Johor Bahru, Johore', 'The size just nice. I should get another one! Damn it!'), (4141, 1465, 'Johore, Malaysia', '@aliciamutheardy no! Dee kosh better!'), (4142, 1194, 'Malasia', 'ก็ใช่สิ ฉันมันไม่ใช่ลูกรัก ไม่ค่อยน่าแคร์เท่าไหร่ ♪ ♫ #บ่นไปเรื่อย เหอะเหอะ'), (4143, 1484, 'Johor Bahru, Johore', '@zataz c''est le firewall c''est ca?'), (4144, 1485, 'Johor Bahru, Johore', 'I''m at Vertech Gaming LAN Shop http://t.co/tZJghDXB'), (4145, 1485, 'Johor Bahru, Johore', 'I just ousted @kawaiitinz as the mayor of Vertech Gaming LAN Shop on @foursquare! http://t.co/3EoyadJj'), (4146, 1195, 'Johore, Malaysia', 'I''m at Clarke Quay MRT Station (NE5) (Singapore, Singapore) http://t.co/xXfOFnQY'), (4147, 593, 'Johor Bahru, Johore', '@Jae_Jerome FINE! MUST YOU CAPS ALL THE WAY?!? HAHAHA'), (4148, 1486, 'Johor Bahru, Johore', 'I''m at Cotton On @ Downtown East http://t.co/BgzSMnkp'), (4149, 1423, 'Johore, Malaysia', 'open my eyes to Your wonders tonight. #ki2012'), (4150, 1359, 'Johore, Malaysia', '@ArizDCruz yelah sombong :('), (4151, 142, 'Johore, Malaysia', 'i''m just asking for a simple thing. If it''s hard for you to do it,then I don''t know what to say already. And please be sincere.'), (4152, 453, 'Johor Bahru, Johore', 'I''m at Watsons (Singapore) http://t.co/gyyHo8Pr'), (4153, 1108, 'Johore, Malaysia', 'Dafug. :('), (4154, 1379, 'Johor Bahru, Johore', '8 people in group. Only 3 of us came. Still had a great time. Productive 7 hours.'), (4155, 1487, 'Riau, Indonesia', 'I''m at Universal Studios Singapore (Sentosa Island, Singapore) w/ 3 others http://t.co/BfETOKT8'), (4156, 62, 'Johor Bahru, Johore', 'sakit kuat hahaha! RT“@123whore5: Mcm steam jer tweet pakai ipad”'), (4157, 1488, 'Johore, Malaysia', 'all time favorite yang chow fried rice. Second to none. :) (@ The Palms @ Singapore Swimming Club) http://t.co/uNStWv6F'), (4158, 829, 'Johore, Malaysia', '@AlphonseAng haha lol that was just jinkoi being stupid'), (4159, 1485, 'Johor Bahru, Johore', 'I''m at Marcus''s House (: http://t.co/iYfuvgHR'), (4160, 1489, 'Plentong, Johor Bahru', 'Makan dinner #themanhattanfishmarket tak kan malam jumaat duk umah @kuda_kepang @ The Manhattan FISH MARKET http://t.co/MHWoJhpD'), (4161, 1490, 'Johore, Malaysia', 'Just ended a 7 hour meeting. My brain is so fried now. Break faster come :( can die leh everyday also like that..'), (4162, 671, 'Johore, Malaysia', 'I''m at IMM Building (Singapore, Singapore) w/ 9 others http://t.co/MwOzuNzH'), (4163, 1491, 'Johore, Malaysia', '@AngelusChan mine ar tml. Lolol that''s why so easy to rmb yrs'), (4164, 1492, 'Johor Bahru, Johore', '@RyanMatthewLow @benjaminyio u two damn gay!!'), (4165, 1108, 'Johore, Malaysia', '@xxLastAngelxx Hehe, its okay. I try first. Idw, can just click, UNINSTALL!'), (4166, 720, 'Plentong, Johor Bahru', '@TheLazyofAes yeayyyyy!! anis izzatyy RT twit kita ahhh . sukaanyaa . macam nak printscreen tunjuk kat semorang. #tetibe . HAHAHA'), (4167, 1194, 'Malaysia', 'ก็ใช่สิ ฉันมันไม่ใช่ลูกรัก ไม่ค่อยน่าแคร์เท่าไหร่ ♪ ♫ #บ่นไปเรื่อย'), (4168, 21, 'Johor Bahru, Johore', '@M_shad0ws ahhh btol situ pn ade! Tp 33 ah tk silap aku. Kau serious tk serious de check i.c b''day 1996 de bolayan abg2 o. Heheheh.'), (4169, 1331, 'Johor Bahru, Johore', '@EstherNYX oh yeah it is that guy'), (4170, 206, 'Singapore', 'I got uuuuu under mah skin xD'), (4171, 791, 'Kota Tinggi, Johore', 'On the way to meet @jonlimjon'), (4172, 1493, 'Johor Bahru, Johore', 'I''m very tempted to get iMac. Damn'), (4173, 1136, 'Malaysia', '@TengNeung1987 พี่เต็งยังไม่ตอบหนูเลยว่า วะซั่นบ่หมายถึงอะไรอ่ะ ใจร้ายยT^T'), (4174, 1186, 'Johore, Malaysia', '@charshawnam when u coming visit. Nia ma. Bring ur gf also.'), (4175, 1494, 'Plentong, Johor Bahru', 'KayYyy..salam maghrib.saye dah bangunnnn..mamai skit je..lapar tu banyak..'), (4176, 1492, 'Johor Bahru, Johore', '@RyanMatthewLow how many hours do I left??'), (4177, 829, 'Johore, Malaysia', '@AlphonseAng @yihannn_ @yaphengkai @jinkoi_ @mighty_shxuanz @retardaryl you don''t say?!'), (4178, 1360, 'Johor Bahru, Johore', 'The last time I step into west mall was like...when I was in sec 4 haha'), (4179, 1495, 'Singapore', '@etdplt US principals and teachers receive bonuses if they do well on standardized tests?. http://t.co/p3j5XPrl'), (4180, 207, 'Johor Bahru, Johore', 'I''m at Terminal 2 (Singapore, Singapore) w/ 7 others http://t.co/yrWU6Q1G'), (4181, 1194, 'Malaysia', 'บ่นไปเรื่อยค่ะ ไม่ได้เจาะจงจะว่าใคร เหอะเหอะ'), (4182, 1496, 'Indonesia', '@nona_maniezz di situ toh.. masih pura2 le..'), (4183, 1497, 'Johor Bahru, Johore', 'Strawberries! \\(^-^)/'), (4184, 701, 'Johor Bahru, Johore', 'I''m at Blk 645 Woodlands Ring Road http://t.co/MBkdI79h'), (4185, 1383, 'Johor Bahru, Johore', '@tanzhengnan NVM . (:'), (4186, 720, 'Plentong, Johor Bahru', '@iHeran hahahhaa. taklah dik . sukaa sangat . cehhhh . haha'), (4187, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH idk leh._.'), (4188, 1073, 'Johore, Malaysia', 'Cheh!$8 lerh'), (4189, 1498, 'Johore, Malaysia', 'Damn tired. Just wish I can go home now.. But today is still a awesome day ;-)'), (4190, 1492, 'Johor Bahru, Johore', '@RyanMatthewLow how many hours u left?'), (4191, 1499, 'Johore, Malaysia', '@HUI_ENNNN wait , no link ! I come late , you also won''t get to take photo with him what !'), (4192, 1411, 'Johore, Malaysia', 'What an awesome day with @emotodecure @awesomeziling @ZelleZiao ^-^'), (4193, 1500, 'Johor Bahru, Johore', 'I''m at Snowcup Bubble Tea Shop http://t.co/bzEzIh6o'), (4194, 266, 'Johor Bahru, Johore', 'Immortal (@ Blk 681A Woodlands Drive 62) http://t.co/R5KrvqeI'), (4195, 1484, 'Johor Bahru, Johore', '@zataz reference a je ne sais plus quelle politique qui prenait open office pour un firewall'), (4196, 1501, 'Johor Bahru, Johore', '@de4dhe4d maen takraw mcm pro sia ^_^'), (4197, 1502, 'Johore, Malaysia', 'At The Bank Bar + Bistro — http://t.co/YdxGAj94'), (4198, 63, 'Johore, Malaysia', 'Lessons as per normal tmrrw without S&amp;W'), (4199, 1194, 'Malaysia', '@fahsrit เหมือนกันเลย คงหมดหวัง TwT'), (4200, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ cos I''m a ninja'), (4201, 206, 'Singapore', '@bunnybaby1315 LOVE THEM TTM ♥'), (4202, 1503, 'Johor Bahru, Johore', '@JuetaVAIN Then jadi lelaki lor... Tukar gender dgn theron'), (4203, 616, 'Johore, Malaysia', '@Ferrisher then whats the emulator you are using?'), (4204, 591, 'Johore, Malaysia', '@najeeela aiyooo haha are u coming for training tmrw?'), (4205, 1322, 'Plentong, Johor Bahru', '@HazriMahat bintanggggg...kau pergilahhhh...'), (4206, 1504, 'Johore, Malaysia', 'hougang united fc vs home united fc (@ Jalan Besar Stadium w/ 3 others) http://t.co/kiZ3Ogu0'), (4207, 1368, 'Johor Bahru, Johore', '@SarahAqilahJ Sama2 kasih juga.. Wink*'), (4208, 1503, 'Johor Bahru, Johore', '@JuetaVAIN lol'), (4209, 1273, 'Malaysia', 'ห่ะ!!!! นี่กูติดสถานะหรือเนี่ย เกือบโดนรีทายย เครียดซิบ'), (4210, 1496, 'Indonesia', '@JandReeYandRee nah itu dia.. 4 bulan lalu sy d t4 praktek nah..'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (4211, 1505, 'Johore, Malaysia', 'fail to jog, but walking back home is good enough for the lazy. think of it, it has been like 2 years since i last played football'), (4212, 41, 'Plentong, Johor Bahru', '@edlinayn takpe la kalau gitu'), (4213, 1348, 'Johor Bahru, Johore', 'Beef Kway Teaw xtra vege.. @ Air Pasang http://t.co/oZbryh46'), (4214, 1506, 'Johore, Malaysia', 'John Butler Trio! (@ Esplanade - Theatres on the Bay w/ 9 others) http://t.co/qxKDVyKj'), (4215, 1507, 'Johor Bahru, Johore', '@RickWarren thanks for the word. I will keep on pressing on to what God has called me to do. :) God bless you more.'), (4216, 1371, 'Johor Bahru, Johore', 'I''m at SMRT Feeder Bus 945 http://t.co/ctzBGN3A'), (4217, 387, 'Johor Bahru, Johore', 'Dinner with my nieces yanyi (pic)n yansi (@ iSteaks Grillhouse) [pic]: http://t.co/ufsN6eXL'), (4218, 1231, 'Kota Tinggi, Johore', 'I''m at 大芭窑修德善堂 (Toa Payoh, Singapore) http://t.co/uXLbCfdG'), (4219, 232, 'Johore, Malaysia', 'I''m at Jalan Berseh Food Centre (Singapore, Singapore) http://t.co/55cd8Yoe'), (4220, 1401, 'Kota Tinggi, Johore', '@Magggdalene Yes ~ Hope kyu, siwon and minho got go LOL!!'), (4221, 1411, 'Johore, Malaysia', '@emotodecure what is that twitter name ?'), (4222, 1383, 'Johor Bahru, Johore', 'Does february march ? \nNo , but april may .'), (4223, 954, 'Johor Bahru, Johore', 'I still dun understand why'), (4224, 1366, 'Riau, Indonesia', '@ardiyanti_suci haha nah gitu.lh bagus :)'), (4225, 1508, 'Malaysia', 'I''m at ตลาดกิมหยง (Gimyong Market) (Hat Yai, Songkhla) http://t.co/huvLN8ua'), (4226, 593, 'Johor Bahru, Johore', '@Jae_Jerome THEN I PLAY WITH YOU OK?CAPS ALL THE WAY'), (4227, 798, 'Johore, Malaysia', 'All this booking in and out really wastes a hell lot of time. Not like I should complain but still..'), (4228, 1266, 'Johore, Malaysia', '@assortedbacon TOUCH ALREADY YOU GIMME 5$?'), (4229, 409, 'Johor Bahru, Johore', '@MeiZhen_BLAH HAHA'), (4230, 1449, 'Johore, Malaysia', '짜장면!!! @sh3r_yl @penguinreborn @theshikshin1 (at Food Village) [pic] — http://t.co/daEYlch1'), (4231, 1509, 'Johore, Malaysia', 'Okey sentap dalam teramat :''\\ . Aku kesal dengan sikap kauu'), (4232, 1510, 'Johore, Malaysia', 'I''m at Jalan Bukit Merah Blk 105 (Singapore, Singapore) http://t.co/6umLG7qY'), (4233, 1511, 'Johore, Malaysia', 'How do you kill 20 mins waiting time ... Have a Handburger!  (@ The Handburger) http://t.co/lbEyqPYY'), (4234, 1512, 'Johore, Malaysia', 'Dinner (@ Lau Pa Sat Festival Market w/ 2 others) http://t.co/9R9wdwiw'), (4235, 591, 'Johore, Malaysia', '@rachelyellowbee gwsss!!!!!!!!!!!!!!!!!!@¡!¡!¡!¡!¡!!¡!¡!¡!¡!¡'), (4236, 1513, 'Johor Bahru, Johore', 'I''m at Home http://t.co/8dZiTBOm'), (4237, 1073, 'Johore, Malaysia', 'Tuition teacher always late seh!walao!'), (4238, 720, 'Plentong, Johor Bahru', '@TheLazyofAes hahahaha . sajeee jee ;)'), (4239, 1514, 'Johor Bahru, Johore', '@DellMerieve Everything is good adik. Heard u going Poly? Which one?'), (4240, 1515, 'Johore, Malaysia', 'Guess where I am http://t.co/IvzxbAGu'), (4241, 300, 'Johore, Malaysia', '@RFQAZR my shit'), (4242, 593, 'Kota Tinggi, Johore', 'Headache..'), (4243, 1186, 'Johore, Malaysia', '@charshawnam simi ahlian! Sg la. I not so mean.. Ask u go all the way to aust Lolol.'), (4244, 1073, 'Johore, Malaysia', 'Wah later what time end tuition sia!'), (4245, 1031, 'Singapore', 't-araaaaaa'), (4246, 1007, 'Johor Bahru, Johore', '@JasonLobster yup fri!'), (4247, 1516, 'Malaysia', 'I''m at My sweetie home &lt;3 (Hat Yai, Songkhla) http://t.co/xqR5dZXI'), (4248, 1073, 'Johore, Malaysia', '9++pm seh!walao!'), (4249, 1517, 'Johor Bahru, Johore', 'I dunno who is 刘力扬'), (4250, 475, 'Johore, Malaysia', 'Sis done with her screen protector.. Now gonna have best fries forever!'), (4251, 1518, 'Pulai, Johor Bahru', 'I''m at Apartment Pulau Bantal Lautan Selimut http://t.co/4Hh0zzju'), (4252, 1519, 'Johore, Malaysia', '@ehbuibui what happened?'), (4253, 591, 'Johore, Malaysia', '@vhwy95 omggggggg so cuteeeeeeeeeeeeeeeeeeeeee'), (4254, 420, 'Johor Bahru, Johore', 'what happened? You miss your unpura pura friends in pura pura land @titbiz ? What u need is TLC which you shall receive @pickyin @taeyong'), (4255, 1520, 'Johore, Malaysia', '@ansbro_o praise Him for His blessing to you and unwavering faithfulness!'), (4256, 1521, 'Malaysia', 'ออกกำลังกาย(คนเดว) (@ สนามกีฬาจิระนครหาดใหญ่) http://t.co/FSiTybm8'), (4257, 1522, 'Plentong, Johor Bahru', 'I''m at Le Derp House (Pasir Gudang, Johor) http://t.co/SvNcrVzt'), (4258, 1524, 'Johor Bahru, Johore', '@katakmanalo haha kumpleto na nga yan may pizza pa yun drawing!'), (4259, 1379, 'Johor Bahru, Johore', '\\n|n/'), (4260, 1525, 'Sekupang, Kota Batam', '@chenyongwen is that so? How come I don&amp;#39;t know'), (4261, 1526, 'Malaysia', '@dekMinhyuk ไม่เปนไรคร้าา ทำไรอยู่จ๊ะ'), (4262, 457, 'Riau, Indonesia', 'I''m at Hershey''s (Sentosa Island, Singapore) http://t.co/ZFjwIpuO'), (4263, 1379, 'Johor Bahru, Johore', '@tseyilingxp \\n|n/'), (4264, 635, 'Johor Bahru, Johore', 'I''m at Costa Sands Resort Blk G http://t.co/PmIkdJe1'), (4265, 1527, 'Johore, Malaysia', '@velicedie dahil!!! Hahaha hoooy ang laki nanaman ng ulo mo sa pict na yan!!! Peace! Hahaha'), (4266, 1434, 'Johore, Malaysia', 'I''m at Novena Square 2 (Singapore, Singapore) w/ 4 others http://t.co/eTbyJ6A8'), (4267, 1518, 'Pulai, Johor Bahru', 'cmpai sdah... (@ Apartment Pulau Bantal Lautan Selimut) http://t.co/2ANUj5Pw'), (4268, 1528, 'Singapore', '@ILJING @theflyingkimchi: evian one good meh?'), (4269, 1529, 'Johore, Malaysia', 'The kids of UWC east shaving their heads for cancer #StBaldrick''s reaching USD105,000 mark! http://t.co/SBkaT7pK'), (4270, 1366, 'Riau, Indonesia', 'Kita smua hidup di bawah langit yg sama, namun tdk smua memiliki cakrawala yg sama.'), (4271, 1197, 'Johore, Malaysia', '@GreyDiamonds @LICIA_sxy Audi uh. Your best game LOL.'), (4272, 1514, 'Johor Bahru, Johore', '@louisclk thought must wait till Aug? :('), (4273, 815, 'Johore, Malaysia', 'I''m at The Coffee Bean &amp; Tea Leaf (Singapore, Singapore) http://t.co/7WO4U6Hj'), (4274, 1530, 'Kota Tinggi, Johore', 'My mom nvr nag today at all ~ LOL'), (4275, 206, 'Singapore', '@bunnybaby1315 I love topbom:3 the ''''aliens'''' xD'), (4276, 1194, 'Malaysia', 'อารมณ์ตอนนี้ แบบ ''เหอะเหอะ'''), (4277, 915, 'Johore, Malaysia', '@cheshiresmileD no no, I was checking the website :D'), (4278, 729, 'Johore, Malaysia', 'Otw to parkway...'), (4279, 1531, 'Johor Bahru, Johore', '@NeedSomeBeats I''m good! How''s US treating you? :) hehehe US right? Lolololol'), (4280, 1532, 'Johore, Malaysia', 'Wicked! :) (@ Marina Bay Sands Grand Theater) http://t.co/b8f8KXQD'), (4281, 1533, 'Johore, Malaysia', 'seriously cant imagine how those producers can produce a 3-6min song or mix. 1min is alr testing my creativity.'), (4282, 954, 'Johor Bahru, Johore', 'One is relationship. one is frenship. one is family. one is personal. one is school. one is life. God stop pressuring me.'), (4283, 1534, 'Plentong, Johor Bahru', '@nor_farahin ak pau untk kbaikan kelas jgk dol..'), (4284, 593, 'Johore, Malaysia', '@Jae_Jerome I CAPS UNTIL HEADACHE LIAO!'), (4285, 924, 'Johor Bahru, Johore', '@xyzaspeaks meeeeeee....hehehe'), (4286, 1499, 'Johore, Malaysia', '@HUI_ENNNN MY PHONE COVER !'), (4287, 1535, 'Johor Bahru, Johore', 'Checking out the stuff. (@ Junction 8 Shopping Centre w/ 5 others) http://t.co/z6tzSfHt'), (4288, 1185, 'Johor Bahru, Johore', '@iamonboycott fun! Take me with you! Haha'), (4289, 1536, 'Singapore', 'is bound for my home in paradise aka #Maldives !!'), (4290, 1526, 'Malaysia', '@NrielZandramari อยากทราบว่าม.3วิชาคณิตมีอะไรที่เรียนบ้าง'), (4291, 659, 'Plentong, Johor Bahru', 'Sini kalau teropong , teka apa yg nampak ? (@ Poolside, Thistle Hotel) [pic]: http://t.co/HyAaUj1y'), (4292, 1509, 'Johore, Malaysia', 'Nak berkata kata . Jaga sikit perasaan orang lain , toksah nak kasi aku sentap amat amat . Cbay :''/'), (4293, 1207, 'Johore, Malaysia', '@kokksusan goes without saying? Not your other half meh? Lol'), (4294, 991, 'Johor Bahru, Johore', '@journeytoernxz I will love you untill my dying day.(:'), (4295, 209, 'Johore, Malaysia', '@Aarella @lauwsh tell me about it.'), (4296, 1108, 'Johore, Malaysia', '@Pig_roasted Friend jio.'), (4297, 1537, 'Johore, Malaysia', 'I''m at Bugis Junction (Singapore, Singapore) w/ 26 others http://t.co/puLuP9xR'), (4298, 1066, 'Johore, Malaysia', 'I may randomly be alone but don''t misunderstand. I''m not being emo but I just want to be by myself. #dontworrymuch'), (4299, 737, 'Johore, Malaysia', 'I''m at Capsule @ suntec city http://t.co/FGLqXMX5'), (4300, 791, 'Johore, Malaysia', 'I want iPad 3 :( releasing tonight!'), (4301, 1218, 'Johor Bahru, Johore', '@JustinnnnO haha so sad'), (4302, 1191, 'Plentong, Johor Bahru', '@AAqylaa Get a rest :)'), (4303, 1538, 'Johore, Malaysia', 'I''m at The Shoppes at Marina Bay Sands (Singapore, Singapore) w/ 8 others http://t.co/Mj17JQjU'), (4304, 1411, 'Johore, Malaysia', 'EVERYBODY PLEASE RT AND FOLLOW @zone2neverland ! SUPPORT THEM ^-^'), (4305, 1539, 'Johore, Malaysia', '@xoxonas Haha! Catch a movie at tamp? Hahaha I don''t mind! Lol!'), (4306, 1540, 'Malaysia', 'I''m at โกอ้วน (Ko Ouan) (Hat Yai, Songkhla) http://t.co/b35Nt12D'), (4307, 1526, 'Malaysia', '@NeayWR_Boice พี่อยากย้ายไปอยู่ขั้วโลกเหนือเลย'), (4308, 1541, 'Johore, Malaysia', '#PeopleIWantToMeet kobe bryant. @blakegriffin . @DwightHoward . Derrick rose.'), (4309, 1534, 'Plentong, Johor Bahru', '@danihamz kw oke x nie?? Gletek kaki kw.. Haha'), (4310, 1542, 'Johore, Malaysia', 'Fuck till now I had not even finish half of my homèwòrk -__-'), (4311, 1494, 'Plentong, Johor Bahru', '@Heyejan hahahah ye,ye baik cikgu..saye akan ikut cakap cikgu'), (4312, 942, 'Johore, Malaysia', 'Hai. Yay, just finished gong cha. (@ WICKED: The Broadway Musical w/ 4 others) http://t.co/3wwj0EoC'), (4313, 1543, 'Johor Bahru, Johore', 'At Kahwin Kahwin The Wedding Regalia — http://t.co/bZBWQrcI'), (4314, 829, 'Johore, Malaysia', '@jinkoi_ @alphonseang ok fine lol'), (4315, 228, 'Johor Bahru, Johore', 'Nvr gonna fall for that move twices'), (4316, 41, 'Plentong, Johor Bahru', '@edlinayn haha, takde upah pong. acano nak bodek? :P'), (4317, 1544, 'Johore, Malaysia', 'Eating Korean food.. (@ City Square Mall w/ 6 others) [pic]: http://t.co/eMdwAwpt'), (4318, 1545, 'Johore, Malaysia', 'LOL “@ImLeslieChow: God made every person different... I guess he got tired by the time he got to China.”'), (4319, 718, 'Johor Bahru, Johore', 'After u ate ur dinner u wil always feel like sleeping :p'), (4320, 1244, 'Johor Bahru, Johore', 'I''m at Amkhub Foodcout http://t.co/pefAjCa3'), (4321, 917, 'Johor Bahru, Johore', 'I''m at Giant Hypermarket @ Pioneer Mall (Singapore, Jurong West) http://t.co/gL6cqfFA'), (4322, 1546, 'Malaysia', 'มาบ่อยจิงๆ (@ Lee Gardens Plaza (ลีการ์เด้นพลาซ่า)) http://t.co/hdTmMLvR'), (4323, 34, 'Johor Bahru, Johore', 'I''m at jax''s room :&gt; http://t.co/m9N9LgOX'), (4324, 591, 'Johore, Malaysia', '@najeeela yup:) and tmrw night hehe'), (4325, 420, 'Johor Bahru, Johore', '@VoodooWanker all that boiling steam pent up and no stripper money?? Must be hard...'), (4326, 1547, 'Malaysia', 'กลับบ้านต่อเด่วไปหาดใหญ่พรุ่งนี้ (@ อำเภอสายบุรี) http://t.co/9oJryShd'), (4327, 1548, 'Malaysia', 'ทำไมถึงง่วงแบบนี้นะ #'), (4328, 55, 'Johore, Malaysia', 'Why can''t I understand a single shitttttttt fuck'), (4329, 718, 'Johor Bahru, Johore', 'Wah so good .'), (4330, 188, 'Johor Bahru, Johore', 'Its damn true :&lt; haiss. Forever liddat. http://t.co/gNnCvGzg'), (4331, 1411, 'Johore, Malaysia', '@ZelleZiao He dk ur number wait i give him .'), (4332, 1549, 'Johore, Malaysia', 'Dinner with my idare people^^ (@ Astons Specialties) http://t.co/NVAvqoAE'), (4333, 524, 'Johore, Malaysia', 'Finally aft a long walk (@ 鲜得来Xian De Lai) http://t.co/7z7gamWW'), (4334, 1550, 'Johor Bahru, Johore', 'Fucking shit la.'), (4335, 1551, 'Johore, Malaysia', 'Sigh. I wanna be pampered. I wanna be spoiled. I wanna be treated like a princess, a queen, a goddess. I want a manicure!'), (4336, 757, 'Johor Bahru, Johore', 'Finally my new phone cover came ! OMG FUCKING CHIO !'), (4337, 591, 'Johore, Malaysia', 'I have been in the toilet playin with my phone for 1/2 an hour oh great'), (4338, 1552, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 5 others http://t.co/Q56hGx9y'), (4339, 1553, 'Johor Bahru, Johore', 'I''m at Rivervale Plaza (Singapore, Singapore) http://t.co/9fmhLOSU'), (4340, 209, 'Johore, Malaysia', '@hannahwse :p I got a yellow bandaid. It reminds me of you. http://t.co/nGTwE8af'), (4341, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ wow at the rate we''re using this, we could probably trend it if it''s a hashtag'), (4342, 436, 'Johore, Malaysia', 'I want my apartment to look like this, teddy bear, red couch and all http://t.co/nBtIet4P'), (4343, 34, 'Johor Bahru, Johore', 'I''m at 我家的马桶! http://t.co/A40c4Np6'), (4344, 1554, 'Johore, Malaysia', 'I''m at City Square Mall (Singapore) w/ 6 others http://t.co/G93lFltw'), (4345, 1555, 'Johore, Malaysia', 'Dinner with @iamdayah! nomnom... (: (@ Tong Seng Coffeeshop w/ 2 others) http://t.co/OaHQqZrS'), (4346, 1556, 'Johore, Malaysia', 'RT“@TheGirlsLikeYou: I hate it when you''re trying not to cry in front of someone, but as soon as they ask you "Are you okay?", you lose it.”'), (4347, 62, 'Johor Bahru, Johore', 'biar cute macam kambing, jgn cute macam awak, macam snail RT“@tweetlipxz:@ForeverChronic alalaa cute nye muke you bila senyum macam kambing”'), (4348, 1379, 'Johor Bahru, Johore', '@Lorisa98 totally understand how you feel -_-'), (4349, 720, 'Plentong, Johor Bahru', '@iHeran hahahhahaha amboii . kenapa awak suka bila kakak suka? hahaha'), (4350, 1557, 'Johor Bahru, Johore', 'I''m at Fuchun Secondary School (Singapore) http://t.co/qFDXWwVL'), (4351, 1225, 'Johor Bahru, Johore', 'I''m at SMRT Buses: Bus 969 (Singapore, Singapore) http://t.co/cXoXJplY'), (4352, 1360, 'Johor Bahru, Johore', 'West mall got anything nice to eat?'), (4353, 718, 'Johor Bahru, Johore', 'Ltr rko u Thn u know ah !'), (4354, 1558, 'Johor Bahru, Johore', '@y1hui LOL I at downtown east now leh:O subway?;)'), (4355, 1559, 'Johor Bahru, Johore', 'No trust , no love .'), (4356, 1424, 'Johore, Malaysia', '@melvintweet hahaha not bad la, wish you guys were around though!'), (4357, 41, 'Plentong, Johor Bahru', '@writerBEKU haha, bukan kedekut tapi mengugut xD'), (4358, 1560, 'Johore, Malaysia', 'DINNERRRR (@ Simpang Bedok w/ 2 others) http://t.co/FWLZA2RV'), (4359, 292, 'Johor Bahru, Johore', '下班咯! @yannc2021'), (4360, 954, 'Johor Bahru, Johore', 'i just wanna feel located.'), (4361, 1331, 'Johor Bahru, Johore', '@EstherNYX I knew about it. Its not I didn''t believe you. Just that I can''t completely avoid it'), (4362, 1561, 'Johore, Malaysia', 'Dinner Time!!! (@ Ichiban Boshi) http://t.co/ngyIYF2O'), (4363, 1366, 'Riau, Indonesia', 'Exit&gt;&gt;&gt;&gt; sholat eaaaa'), (4364, 1509, 'Johore, Malaysia', 'tak minta simpati dengan kau la . Aku tak batak pun , please aku nak kau jaga perasaan aku cukup . settle kan T_T'), (4365, 1562, 'Johore, Malaysia', 'The akward moment when the train from jurong east towards amk feels like a train heading to bombay ! Get it? Lol http://t.co/trq0QIee'), (4366, 795, 'Johore, Malaysia', 'Penne mama Mia @ TCC @ Seah Street http://t.co/VIVJ0Ad4'), (4367, 1563, 'Johor Bahru, Johore', 'Fml la -.- pek chek my right wrist is still hurting when I shoot the ball'), (4368, 209, 'Johore, Malaysia', 'Pastor''s birthday^^ we''re going to eat eggs and berries.'), (4369, 710, 'Johor Bahru, Johore', 'I''m at Blk 233 Tampines St 21 http://t.co/6USGPmwd'), (4370, 1558, 'Johor Bahru, Johore', 'At BBQ chicken at downtown east^^'), (4371, 1539, 'Johore, Malaysia', '@xoxonas Haha! Are you sure? I don''t mind you know, hahaha my treat? :)'), (4372, 21, 'Johor Bahru, Johore', '@ZynneBanks @deesaysroar @NureenBoo padahal orang tu mengaku diri dia aprika. sigh. Mtk maaf terkasar bahase. 3:'), (4373, 1195, 'Johore, Malaysia', 'I''m at Liang Court (Singapore, Singapore) w/ 4 others http://t.co/02dg4MlL'), (4374, 62, 'Johor Bahru, Johore', 'No use talking to people who wont listen -.-!'), (4375, 1564, 'Johore, Malaysia', '@LT1611 you think I will go see lzx thing meh. LOL . Is at teentop de fan thing .'), (4376, 707, 'Johore, Malaysia', 'Nasi goereng &lt;3'), (4377, 1565, 'Johor Bahru, Johore', 'SHE-安静了'), (4378, 460, 'Johore, Malaysia', '“@SayingsForGirls: I hate it when you''re trying not to cry in front of someone, but as soon as they ask you "Are you okay?", you lose it..,”'), (4379, 1566, 'Johore, Malaysia', 'I''m at Gleneagles Hospital (Singapore, Singapore) http://t.co/4tEAhQXc'), (4380, 1567, 'Johor Bahru, Johore', 'Tomorrow I''m gonna have to wake up early so wont be late for test'), (4381, 822, 'Pulai, Johor Bahru', 'I''m at Traffic Light Pulai Indah (Pekan Nenas, Johor) http://t.co/fHpDZht6'), (4382, 1024, 'Johor Bahru, Johore', '@KittennyScars but sometimes he got think for us also what?'), (4383, 1568, 'Johor Bahru, Johore', 'I''m at Terminal 2 w/ @nrlfthh http://t.co/0YBcdUBA'), (4384, 1569, 'Johor Bahru, Johore', '@SundayDiah Oic. Mkn again later n hv a hot shower plus shampoo. Best if sum1 shampoo n msg the scalp. It''s help abit.'), (4385, 1570, 'Johore, Malaysia', 'In dire need to calm my nerves! (@ Raffles Town Club) http://t.co/yP1P5rCO'), (4386, 791, 'Johore, Malaysia', '@jonlimjon are you reaching?'), (4387, 1571, 'Johor Bahru, Johore', '@BoringgPig Ltr bang ?'), (4388, 917, 'Kota Tinggi, Johore', '@kissiaojoy ah...... i eat finish my fav burger liao leh. Crispy burger new one? I initially wanted to try macbites......'), (4389, 1108, 'Johore, Malaysia', '@Pig_roasted Arbo?'), (4390, 1572, 'Johor Bahru, Johore', '@nikiakila BODOH pe Kau?!'), (4391, 206, 'Singapore', '@bunnybaby1315 yeah XDD'), (4392, 710, 'Johor Bahru, Johore', 'I''m at Infront My Computer http://t.co/6aMfb5wy'), (4393, 1568, 'Johor Bahru, Johore', 'I''m at Changi International Airport (SIN) (Singapore, Singapore) w/ 10 others http://t.co/LQLbRA0u'), (4394, 472, 'Johor Bahru, Johore', 'i have problem with my feqh.'), (4395, 1573, 'Johore, Malaysia', 'I''m at Teochew Building http://t.co/V0khFulq'), (4396, 34, 'Johor Bahru, Johore', 'I''m at Drinking water http://t.co/nKvbBlnR'), (4397, 1574, 'Johore, Malaysia', 'New Flowers @ The Sultan Hotel http://t.co/MYhdQ6wy'), (4398, 141, 'Johor Bahru, Johore', '@tinzliang busy ka.. Busy busy...l'), (4399, 165, 'Johor Bahru, Johore', 'I''m at 782A Carpark http://t.co/4NFBAhhC'), (4400, 1526, 'Malaysia', '@dekMinhyuk ครบคร้าาาา'), (4401, 1575, 'Johor Bahru, Johore', '@RScoleyx yeah'), (4402, 720, 'Plentong, Johor Bahru', 'kemainn lagi semua yang dok twit pasal #KalauCrushAku .. haha . twittwit diorg semua aku suka . hahhaa'), (4403, 460, 'Johore, Malaysia', 'So many things I want to change/redo it if I can...'), (4404, 593, 'Johor Bahru, Johore', '@Jae_Jerome you siao ah?? I not outside gng for dinner'), (4405, 1186, 'Johore, Malaysia', '@charshawnam bo xim la knn. I come back then u go. Funny ar!'), (4406, 1496, 'Indonesia', '@JandReeYandRee dasarrrr.. kalo sempat blh liat foto2nya e.. tapi bukan yang narsiz snde jlz..'), (4407, 1576, 'Johor Bahru, Johore', 'I''m at CityCab Pte Ltd (Singapore) http://t.co/IHTzBnyW'), (4408, 1078, 'Johore, Malaysia', 'I''m at Somerset MRT Station (NS23) (Singapore, Singapore) w/ 5 others http://t.co/WAY9hBC2'), (4409, 1577, 'Plentong, Johor Bahru', 'chill2 jp!! @ Mr combi cafe and kopitiam http://t.co/mP40SGLT'), (4410, 1578, 'Johore, Malaysia', 'Enjoying this now with @bellebrat @Jaslynkitty @Nahburlee http://t.co/Ra79NcqD'), (4411, 1579, 'Johore, Malaysia', 'Blaguuu mentang2 alumnii!!!RT @chandrahasibuan: Jadwal petroliga 05 kok samaaan sm alumni maen''y'), (4412, 1322, 'Plentong, Johor Bahru', '@Fiquetograph @HazriMahat boooooooo'), (4413, 1580, 'Johor Bahru, Johore', 'I''m at Treelodge @ Blk 306B (Singapore) http://t.co/ccjPyyi4'), (4414, 62, 'Johor Bahru, Johore', 'macam muke brother lurb dier jugak @big“@tweetlipxz: Azhar kate muke aku bachen :'')”'), (4415, 445, 'Malaysia', 'ละหมาด:)'), (4416, 402, 'Johore, Malaysia', 'I''m at 313@Somerset (Singapore, Singapore) w/ 14 others http://t.co/qm5VPeRC'), (4417, 1581, 'Johore, Malaysia', 'Sushi time :D'), (4418, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah. I went to woodlands mart to buy. Cost me 5 bucks. 50 cent for an extra piece of egg.'), (4419, 1582, 'Johor Bahru, Johore', 'I''m at Bowling (Singapore) http://t.co/u0tDyokA'), (4420, 298, 'Johor Bahru, Johore', '@ANAKSIDEKYO hi (:'), (4421, 41, 'Plentong, Johor Bahru', '@edlinayn ikhlas takya cakap, i tak cakap pon. bhaha'), (4422, 791, 'Johore, Malaysia', '他在等你,你在等他,我在等谁?'), (4423, 1568, 'Johor Bahru, Johore', 'I''m at Sakae Sushi (Singapore, Singapore) http://t.co/z80QrAIR'), (4424, 1151, 'Johor Bahru, Johore', 'Where is the damn freaking thumbdrive ?!'), (4425, 917, 'Kota Tinggi, Johore', 'Can never kick the habit of biting straws'), (4426, 1583, 'Johor Bahru, Johore', '@pranswa4 bok sa panaginip lng aq nanga2hoy..hihi'), (4427, 1584, 'Johore, Malaysia', 'chilling ! (@ School Of The Arts (SOTA)) http://t.co/LTDt3lNO'), (4428, 141, 'Johor Bahru, Johore', '@tinzliang haha ikaw n napagalitan ng gwapong doktor :-)'), (4429, 1585, 'Johor Bahru, Johore', 'damn ! its hurt !!!!! :''/'), (4430, 1489, 'Plentong, Johor Bahru', 'Kite bakor je #themanhattanfishmarket @ The Manhattan FISH MARKET http://t.co/MdnPNXWw'), (4431, 1337, 'Johore, Malaysia', '@LouisJoel_ i mean wasup'), (4432, 1073, 'Johore, Malaysia', 'Wah seriously!my tuition teacher cancel today''s tuition!okay seriously.'), (4433, 1586, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 15 others http://t.co/nGs5VkM7'), (4434, 420, 'Johor Bahru, Johore', 'Oh so disappointing... I guess that''s as good as lost...'), (4435, 472, 'Johor Bahru, Johore', 'blom solat. gonna sleep early today. since bsk pgy ade bola. haha'), (4436, 1411, 'Johore, Malaysia', '@ZelleZiao idk ? heheh ^^'), (4437, 1194, 'Malaysia', 'โอ้ย เซ็ง - -'), (4438, 914, 'Plentong, Johor Bahru', 'howesweethome (@ Taman Mawar) http://t.co/4G9YwacK'), (4439, 545, 'Johore, Malaysia', '@IntanSolehaa The guys thingy.'), (4440, 141, 'Johor Bahru, Johore', 'Watching american idol... Yay...'), (4441, 1151, 'Johor Bahru, Johore', '@loserGC eiko'), (4442, 1092, 'Johor Bahru, Johore', '@AmirulArsyadZ @RusyaidiSuperA @ZainalZS lepaking with my brothers!'), (4443, 1587, 'Johor Bahru, Johore', '@FHNFuad making brownies and me making fruit crumble..... Not baked yet brownies in the oven http://t.co/tp5Zn8Th'), (4444, 762, 'Johore, Malaysia', '@GiveMe_Lollipop you are not loney, you still have friends like us (; cheer up k(;'), (4445, 1588, 'Plentong, Johor Bahru', '@kamaladli assalammualaikum..hye kamal'), (4446, 1590, 'Johore, Malaysia', 'I''m at Coronation Shopping Plaza (Singapore, Singapore) http://t.co/oOovbAOs'), (4447, 1591, 'Johore, Malaysia', 'Fuck man.. No mood for NPAP'), (4448, 1581, 'Johore, Malaysia', 'Buffet ~~~'), (4449, 859, 'Johor Bahru, Johore', 'Eaten dinner le. ^^ #Nowwatching 粉爱粉爱你 wif @x_leeee. :)'), (4450, 547, 'Johor Bahru, Johore', '@sharmaine_t Ikr! I cldnt get in :/ oh well, at least I can wake up at 7 for school now^^ shldnt you feel home w more kps ppl there? :O heh'), (4451, 62, 'Johor Bahru, Johore', 'mcm muke brother lurb dier jugak RT“@tweetlipxz: Azhar kate muke aku bachen :'')” @helloimbxgbxy'), (4452, 1092, 'Johor Bahru, Johore', 'Omar punye lembatt!!'), (4453, 209, 'Johore, Malaysia', '@Nitsujnahc I''m okay, I had practice from the previous time, put pressure.'), (4454, 1592, 'Johor Bahru, Johore', 'I''m at Tampines Regional Library (Singapore, Singapore) http://t.co/KCY4tswD'), (4455, 1593, 'Plentong, Johor Bahru', '@aziqenator citer ape yg ditunggu tunggu tu?'), (4456, 1594, 'Johore, Malaysia', 'I''m at Subway (Singapore, Singapore) w/ 2 others http://t.co/TeXlY1yw'), (4457, 1411, 'Johore, Malaysia', '@SyafiqahNutella @ZelleZiao Ask rozelle , he is damn cute ^^ HAHA ~'), (4458, 1595, 'Johore, Malaysia', 'today - not a good day for Julius Caesar or the old Czechoslovakia - think I''ll go to bed early!'), (4459, 1194, 'Malaysia', '@Palink_Pink ใส่ชุดพละใช่มั้ย เค้านั่งรถผ่าน ว่าจะทักแต่ไม่ทัน555'), (4460, 591, 'Johore, Malaysia', '@najeeela haha okok:) beware if not I will be damn pissed with u. Eh what time is it?'), (4461, 1596, 'Johor Bahru, Johore', 'Botanic Gardens &lt;3 (:'), (4462, 1151, 'Johor Bahru, Johore', 'Cant u just ans me?'), (4463, 22, 'Johor Bahru, Johore', 'OMGYES“@JINGYILovesPOOH: The reason why I buy bubble tea is because of the PEARLS. ;D”'), (4464, 1597, 'Johore, Malaysia', 'SP conference (@ Boys'' Brigade Campus (HQ)) http://t.co/vm3w4Ifo'), (4465, 1109, 'Johore, Malaysia', 'Picnic With Philips! @ iLight @ marina bay http://t.co/oRDMFSlo'), (4466, 1572, 'Johor Bahru, Johore', 'Sial ah Kau @saapdydi aku buat Ngan budak pagi sia'), (4467, 1532, 'Johore, Malaysia', 'I''m at Marina Bay Sands Grand Theater w/ @goregine http://t.co/izw2nYcT'), (4468, 1591, 'Johore, Malaysia', 'Sir Pajiao put me in reserve GND'), (4469, 1586, 'Johore, Malaysia', 'I''m at The Manhattan Fish Market (Singapore) http://t.co/5Vqyb5JY'), (4470, 1598, 'Plentong, Johor Bahru', 'I''m at Larkin Sentral Bus Station (Terminal Bas) (Johor Bahru, Johor) w/ 5 others http://t.co/2WElQgrT'), (4471, 1073, 'Johore, Malaysia', 'If you can''t make it,the least you can do is to inform me,inform earlier!okay!seriously!'), (4472, 1108, 'Johore, Malaysia', '@Pig_roasted Holdon.'), (4473, 1179, 'Riau, Indonesia', '@tonyanthony95 loh kok aku? langsung dong bilang ke orangnya . tapi rasaku...... sakit nya udah terlalu banget deh -,-'), (4474, 1599, 'Johore, Malaysia', 'I''m at New Block @ACS International http://t.co/onNpz70j'), (4475, 1462, 'Johore, Malaysia', 'Kara step my motivational song :D'), (4476, 62, 'Johor Bahru, Johore', 'kau tu pakai work kuning! RT“@123whore5: @ForeverChronic kau tu otak kuning!”'), (4477, 847, 'Johore, Malaysia', 'I''m at Outram Park MRT Interchange (EW16/NE3) (Singapore, Singapore) w/ 3 others http://t.co/XWJjMgM4'), (4478, 435, 'Johor Bahru, Johore', '@Stainedroses come inside my heart! Hahahaa! Ok jk. -.-'), (4479, 711, 'Johore, Malaysia', '@appleliciouseye rilek sua.. bukannye murah..mintak la your husband-to-be..'), (4480, 1600, 'Johor Bahru, Johore', 'Till we meet again, Spammers'' Day. Same date each month. Miss yah x Lol. Eww. Too mushy liao. Talking to myself. Help me, I''m gg crazy.'), (4481, 1396, 'Plentong, Johor Bahru', '@AfeezVanilla haha..tu la..cpt sgt mnaip smpai trslah eje da..hehe..'), (4482, 1263, 'Plentong, Johor Bahru', 'Not attending this Sunday''s church sermon,cuz attending Metta Walkaton CIP wif schoolmates'), (4483, 1526, 'Malaysia', 'ยงอัพทวิตแล้ว!!!! น่ารักจริงๆๆพ่อคุณ^_^ http://t.co/OTMG1kqM'), (4484, 1601, 'Johore, Malaysia', 'I''m at Bedok MRT Station (EW5) (Singapore, Singapore) http://t.co/FVylLsN0'), (4485, 1602, 'Malaysia', '@Nusreen_JB what''s up (:'), (4486, 1263, 'Plentong, Johor Bahru', 'De church youths going visit orphanage,I also wanna tag along~ &gt;.&lt;'), (4487, 472, 'Johor Bahru, Johore', 'i wish u.esah aja feqh. hahaha. confirm sng. but u.saodah pon ok la.cume bahasa yg de bbl. fuuuuuh -.-'), (4488, 1596, 'Johor Bahru, Johore', 'Snap couple of photos. Turned out amazing ! Cheh.'), (4489, 1073, 'Johore, Malaysia', 'Damn!okay,carry on studying. #tweetlater #ahahsiol'), (4490, 1603, 'Johor Bahru, Johore', 'I just ousted WaiKeat N. as the mayor of KFC @ Downtown East on @foursquare! http://t.co/N0AWyUDT'), (4491, 1603, 'Johor Bahru, Johore', 'I''m at KFC @ Downtown East http://t.co/qM2ZQdr1'), (4492, 593, 'Johor Bahru, Johore', '@Jae_Jerome hard to read uh. Make my headache worse'), (4493, 1604, 'Johore, Malaysia', '@LeeWLun then how your mum know? Lol'), (4494, 762, 'Johore, Malaysia', '@GiveMe_Lollipop lonely* typo'), (4495, 448, 'Plentong, Johor Bahru', 'I''m at 100 Plus Futsal Court, Plentong Jb http://t.co/975ebhgP'), (4496, 1605, 'Johor Bahru, Johore', '@Sugarified @romanticisland @jszeee xiiaofelfelzxcx33! Like a kid!'), (4497, 1519, 'Johore, Malaysia', 'I got tired of my not straight nor curl hair I went to reborn it! Back to lazy days! http://t.co/OwhHiXCW'), (4498, 1606, 'Johor Bahru, Johore', 'Next door deli!!! Nt bad nt bad'), (4499, 789, 'Johor Bahru, Johore', 'I''m at Denise''s H o m i e (Singapore, Singapore) http://t.co/MxExgHS8'), (4500, 1151, 'Johor Bahru, Johore', '@yanyeelalaloo yea'), (4501, 1607, 'Kota Tinggi, Johore', 'Goin beach rd...'), (4502, 952, 'Johore, Malaysia', 'Otw to town to have genki sushi. (@ Stadium MRT Station (CC6)) http://t.co/XLk8cUSO'), (4503, 80, 'Johor Bahru, Johore', 'Ya Allah sabar je la aq dgn adik aq ni... nak sngt tolong masak then bila suruh ambik sayur kat fridge smpai 10 min x jmpa2'), (4504, 1608, 'Johore, Malaysia', '@Charmyknows later sg no alive tour'), (4505, 1016, 'Johor Bahru, Johore', 'mandi mandi solat maghrib (@ kubur lama Kampung Pasir Puteh) http://t.co/7HBbpXvz'), (4506, 1609, 'Johor Bahru, Johore', 'Off to MBS...'), (4507, 1602, 'Malaysia', 'i &lt;3 you ! #fb'), (4508, 1186, 'Johore, Malaysia', '@JerryT9 tell machiam nvr tell. Processor? Graphic card?'), (4509, 1610, 'Johore, Malaysia', 'SIGNED &amp; SEALED!!! for now just wait for the dayyyyy &lt;3'), (4510, 791, 'Johore, Malaysia', '世界纷纷扰扰喧喧闹闹什么是真实?'), (4511, 22, 'Johor Bahru, Johore', '@sammmydee wah so vulgar.your dad so cool !'), (4512, 1558, 'Johor Bahru, Johore', '@NyaFix wif my family la deh:P LOL next time I jio u:D'), (4513, 1611, 'Malaysia', 'Birthday gift for N''mini (with @Monkey_Osaru at Chotiwat Manufacturing Co.,Ltd.) [pic] — http://t.co/5sdt5O8C'), (4514, 1612, 'Johore, Malaysia', '4 days in a row here. Prob won''t be able to make it 5. Oh well. (with Kurt and Chris at @alchemysg) — http://t.co/RA1Bl5bw'), (4515, 165, 'Johor Bahru, Johore', 'I''m at Dad''s blue Car http://t.co/taIVilsh'), (4516, 1572, 'Johor Bahru, Johore', '@nikiakila bluek!'), (4517, 711, 'Johor Bahru, Johore', '@appleliciouseye tak tau la..ni google \nmap problem la..'), (4518, 1613, 'Johor Bahru, Johore', '@RoystonLim_ same ppl and we need more bike'), (4519, 1092, 'Johor Bahru, Johore', 'Zainal muke triangle'), (4520, 247, 'Johore, Malaysia', 'It''s Friday tomorrow?! Dafug. So fast...'), (4521, 1614, 'Johore, Malaysia', 'I''m at The Centrepoint (Singapore) w/ 5 others http://t.co/SG1f79gq'), (4522, 451, 'Riau, Indonesia', 'RT “@TODAYonline: 3-year-old US boy shoots himself in the head with gun found in his father''s car http://t.co/2cP2FaNp”'), (4523, 1440, 'Johor Bahru, Johore', 'You''re so sweet that you melt my heart whenever you smile &lt;3'), (4524, 1615, 'Johor Bahru, Johore', 'weeee super excited:) (@ Terminal 3 w/ 16 others) http://t.co/FyBeOeXj'), (4525, 1600, 'Johor Bahru, Johore', '@JuneTohCJ No you are not. That baby just don''t what the word: fun means and how to have fun :D'), (4526, 1596, 'Johor Bahru, Johore', 'Plans that we made , love that we shared.'), (4527, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE haha..cheetah gitu..tp cheetah nie betine laa..pink colour..haha..'), (4528, 720, 'Plentong, Johor Bahru', '#KalauCrushAku gedik dengan girl lain , aku terus bermusuhan dengan girl tu .'), (4529, 1379, 'Johor Bahru, Johore', 'Commonwealth essay. History reflection and English wss. Priority'), (4530, 1616, 'Malaysia', 'ถึงหาดใหญ่แล้วโว้ย 5555'), (4531, 496, 'Singapore', '@Jon_tyty Tom = @Jon_tyty :p'), (4532, 1617, 'Johore, Malaysia', 'Z.a workshop with @superladyee (@ Shiseido Beauty Studio) http://t.co/jqTS8i0z'), (4533, 448, 'Plentong, Johor Bahru', 'I''m at Pusat Bermain Badminton Dan Gym http://t.co/5ll9WMzH'), (4534, 1550, 'Johor Bahru, Johore', 'You say I''m irresponsible? Seriously? I wanna laugh.'), (4535, 1424, 'Johore, Malaysia', '@melvintweet hahaha yes can''t wait!'), (4536, 1618, 'Johor Bahru, Johore', 'I''m at Jack''s Place @ Bukit Panjang Plaza (Bukit Panjang, Singapore) http://t.co/YIbdk6N2'), (4537, 99, 'Johor Bahru, Johore', 'Nak ikot ?'), (4538, 1558, 'Johor Bahru, Johore', '@y1hui steady'), (4539, 1619, 'Johore, Malaysia', '@Nichellexz haha if I''m rich, I dun mind la. Lol. Nw is nid save save save also..... Bt ofcos being attached best la :)'), (4540, 41, 'Plentong, Johor Bahru', '@edlinayn taknak menang pun, nak u je menang :)'), (4541, 1620, 'Johor Bahru, Johore', 'Having tuition at Mavis Tutorial Centre at Rivervale Plaza'), (4542, 1589, 'Johor Bahru, Johore', 'Upon arrival, breakfast n shower. \nSleep.\nWake in e noon for work out at Gym.\nHigh Tea in e evening.\nRest of e evening, relax in e rm.'), (4543, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE hehe..rindu kt diya jgak..xsbr nk naek skola mnggu dpn..'), (4544, 726, 'Johore, Malaysia', 'Surprise visit by @Yeeninglovesred @bjornsim at City Link Starbucks ! Thanks you two for popping by ! =)'), (4545, 720, 'Plentong, Johor Bahru', 'Eh aku twit pasal #KalauCrushAku tu memain je tauu . ;]'), (4546, 1411, 'Johor Bahru, Johore', '@ZelleZiao Eeee . :b'), (4547, 1621, 'Malaysia', 'Mathematics class 8-9pm. (@ Maths Clinic II, Taman Setiawangsa) http://t.co/OdL6UXIQ'), (4548, 1622, 'Johor Bahru, Johore', '@daryltsr good morning :) we''re having a eclipse now, that''s why it seems dark :D'), (4549, 1092, 'Johor Bahru, Johore', 'Kony is a cruel black nigga! SAID BY @AmirulArsyadZ'), (4550, 1591, 'Johore, Malaysia', 'Gonna quit NPAP if this continues'), (4551, 732, 'Kota Tinggi, Johore', '1 percent ! Great !'), (4552, 1623, 'Johor Bahru, Johore', 'I''m at 681B Woodlands Drive 62 http://t.co/xc3fttFN'), (4553, 1395, 'Johore, Malaysia', 'I''m at Tiong Bahru Plaza w/ @aaronella23 http://t.co/q25TllqE'), (4554, 1624, 'Riau, Indonesia', 'I''m at Songs of the Sea (Sentosa Island, Singapore) w/ 6 others http://t.co/5AREilAo'), (4555, 160, 'Johor Bahru, Johore', 'I''m at Danyz B.M.X Garage [pic]: http://t.co/MJUCB00z'), (4556, 1619, 'Johore, Malaysia', '@Huiwenz I also wanna meet u!!! It''s been more than 3 weeks since we meet eachother I think!'), (4557, 1625, 'Johore, Malaysia', 'Having salad dinner with Atiqah. (@ BURGER KING®) http://t.co/xFsrKyu5'), (4558, 22, 'Johor Bahru, Johore', '@JINGYILovesPOOH Why no wiggle wiggle part !!haha'), (4559, 1626, 'Johore, Malaysia', 'Start of a new term! Media Mgt. I like the media but not the mgt part. LOL.'), (4560, 873, 'Johore, Malaysia', 'YELLED AT MY COWORKER TO SIGN THE TWITITION'), (4561, 1627, 'Plentong, Johor Bahru', '#PerempuanComelBila pakai tudung labuhh :))))))'), (4562, 1451, 'Johore, Malaysia', '@JoshuaLimmm u all the while chinese wat..just tht u didn''t realise :))'), (4563, 1628, 'Johore, Malaysia', 'Dinner. (@ fork and spoon toa payoh central) http://t.co/AsbXcyfe'), (4564, 1623, 'Johor Bahru, Johore', 'I''m at Blk 681B (Singapore) http://t.co/xwJZyFPN'), (4565, 1108, 'Johore, Malaysia', 'Butterfly. D;'), (4566, 1616, 'Malaysia', '@pae_icelatte :)'), (4567, 1600, 'Johor Bahru, Johore', '@AcousticCandy thx x :D'), (4568, 1629, 'Johor Bahru, Johore', 'I''m at Hougang Street 92 http://t.co/ts2Ph9VE'), (4569, 1596, 'Johor Bahru, Johore', 'The perception of mine is different , the reason why ~'), (4570, 1060, 'Plentong, Johor Bahru', 'Okay aku rasa annoying dengan tweet tweet ko'), (4571, 1630, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre (Singapore) w/ 16 others http://t.co/KtxtoUtF'), (4572, 1337, 'Johore, Malaysia', 'Eating my food'), (4573, 593, 'Johor Bahru, Johore', 'I shall sleep earlier today..'), (4574, 1631, 'Johore, Malaysia', 'With everyone for ice cream! (at Tom''s Palette) — http://t.co/jvMX2li3'), (4575, 591, 'Johore, Malaysia', '@najeeela Gan ma la'), (4576, 1440, 'Johor Bahru, Johore', 'I really enjoyed being with you just now! You lighten my world! =D'), (4577, 117, 'Johore, Malaysia', '#PEOPLE IWANNAMEET KELLY CLARKSON'), (4578, 1596, 'Johor Bahru, Johore', 'The time will come soon enough , as you wished.'), (4579, 1602, 'Malaysia', '@Nusreen_JB โหหหหหหหหหห เพิ่งสอบวันเเรก แม่เจ้ายากมากกกกกกกกกก แต่ก้อมีความสุขกะเรื่องบางเรื่อง &gt;"&lt;'), (4580, 1632, 'Plentong, Johor Bahru', 'I''m at The Store Tmn Sentosa (Johor Bahru, Johor, Malaysia) http://t.co/mNSipntt'), (4581, 72, 'Johor Bahru, Johore', '@doubleyouuem okok. Ur a EXTREMELY good person, can? :D'), (4582, 1633, 'Indonesia', 'kerasa bgt capenya plng ngampus sore..\n#mulai drop ni bdn ;@'), (4583, 1634, 'Johor Bahru, Johore', 'I''m at (@ Yio Chu Kang Sports hall) http://t.co/s6zYc1Lc'), (4584, 38, 'Johor Bahru, Johore', '@Marezl_CrazyMe okay.'), (4585, 475, 'Johore, Malaysia', 'All these young gals at cine behaving like a #bimbo..'), (4586, 593, 'Johor Bahru, Johore', '@Jae_Jerome Ikr :('), (4587, 1635, 'Malaysia', '@Faiiz_Mikie เพิ่งกินไอติมผัดค่ะ'), (4588, 1636, 'Johore, Malaysia', '@giorgiowei @jadeporpayas @tjlleno @dexterrama @ http://t.co/0UCmvjNf'), (4589, 411, 'Johor Bahru, Johore', 'Hope tht yu will talk to me.'), (4590, 141, 'Johor Bahru, Johore', 'I am the youngers here in our unit.. Aww youngest!! U know that??it feel so good to be in a circle of professionals.. I feel so professional'), (4591, 1462, 'Johore, Malaysia', 'Mum always mix apple and orange juice tgt , tsk !!!'), (4592, 1637, 'Johor Bahru, Johore', 'U made me realize tat the world is more beautiful on the other side :D'), (4593, 1638, 'Johore, Malaysia', 'I''m at McDonald''s / McCafé (Singapore, Singapore) http://t.co/QWRgC5UP'), (4594, 1639, 'Johore, Malaysia', 'Shes sucha #stupidhoe.'), (4595, 1539, 'Johore, Malaysia', '@xoxonas Haha! Yes, why not right? I''m in town now anyways :) See you later?'), (4596, 1060, 'Plentong, Johor Bahru', 'What up guys ; so is there any plan tonight?'), (4597, 1640, 'Johore, Malaysia', 'I''m at The Cathay Cineplex (Singapore) w/ 7 others http://t.co/6UMgbX49'), (4598, 1635, 'Malasia', '@mixkloelabellzs จ้าๆ เช่นกันจ้ะ'), (4599, 1604, 'Johore, Malaysia', '@LeeWLun she ask me I got tell you isit.'), (4600, 1191, 'Plentong, Johor Bahru', '#PeopleIWantToMeet @selenagomez :)'), (4601, 49, 'Johor Bahru, Johore', '@JunkangJK ya every 2months study 3 wks holiday'), (4602, 527, 'Johor Bahru, Johore', 'That''s what I call a leech.'), (4603, 1641, 'Johore, Malaysia', 'I''m at Fortune Seafood Restaurant (B.K. Forture Seafood) (Singapore) http://t.co/UdT7pk13'), (4604, 1401, 'Kota Tinggi, Johore', 'Class chalet ~ So looking forward (:'), (4605, 1411, 'Johor Bahru, Johore', 'Shall bathe .'), (4606, 1642, 'Johore, Malaysia', 'First time i saw carolina herrera this morning thru cnn...Definition of elegance and thats her! U can nver go wrong with white collared top!'), (4607, 267, 'Johore, Malaysia', 'Bloody hell Oliver, one prog u say constantly stir ur risotto, another leave for a minute then stir, leave, stir #confusing #iamamug'), (4608, 1643, 'Johore, Malaysia', 'Pimp my ride! #dreamcar @ Singapore http://t.co/diW1WLRF'), (4609, 1619, 'Johore, Malaysia', 'Baby wan me to 靠 him! LOL. So cute!'), (4610, 1644, 'Plentong, Johor Bahru', 'I''m at Homee http://t.co/XYsFZr7p'), (4611, 41, 'Plentong, Johor Bahru', 'lepak i-socks la sabtu ni'), (4612, 1060, 'Plentong, Johor Bahru', 'Selamat menunaikan #solatfardumagrib'), (4613, 1645, 'Johore, Malaysia', 'Fibre stall&lt;3'), (4614, 762, 'Johore, Malaysia', '@_Jesusbeloved tomorrow you and him one month?'), (4615, 117, 'Johore, Malaysia', '@paperdrizzle HAHHAHA im serioussssssss lol'), (4616, 591, 'Johore, Malaysia', '@najeeela haha no need so many times lah I not blind:)'), (4617, 720, 'Plentong, Johor Bahru', 'Hahhh . Ghaz dah tak kenal orang . k lupa ingatan keeee ? alaaa ;[ . eh nasib baik dia igt ayah dia . @ShahIskandar_M .'), (4618, 1245, 'Johor Bahru, Johore', '@GLuozhixiangSY lol for me if they feature SJ a little bit I also buy HAHAHA'), (4619, 1596, 'Johor Bahru, Johore', '15th , a day to remember (;'), (4620, 1646, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 11 others http://t.co/SpZp0APk'), (4621, 1647, 'Plentong, Johor Bahru', '@firenana Nop. I going back segamat'), (4622, 388, 'Johore, Malaysia', 'I''m at Simpang Bedok (Changi, Singapore) w/ 3 others http://t.co/7yrObZHc'), (4623, 1648, 'Johore, Malaysia', 'With @Sharon0805, the dinner''s awesome! (@ Todamgol) http://t.co/ZYOLfY9I'), (4624, 1572, 'Johor Bahru, Johore', '@nikiakila I nk duit, u nk bagi? :D'), (4625, 411, 'Johor Bahru, Johore', 'I am nothing to say.'), (4626, 38, 'Johor Bahru, Johore', 'I''m not the only one that hadn''t finish homework okay. Some people haven''t even fucking touch their homework okay'), (4627, 1539, 'Johore, Malaysia', 'Hahaha! Diam sia boy dkny! Lol! RT @flyedaus: @SuperKidJunior @xoxonas Gentleman sehhhh :)'), (4628, 1649, 'Johore, Malaysia', '@astrosg I Spotted it when. Just looking at the sky!!and there is a cloud between them...it''s like separate twins!'), (4629, 296, 'Johor Bahru, Johore', 'Boarding time が一時間前ってどういう事? 時間にルーズでわがままな人達が多いからなのかな?'), (4630, 1635, 'Malaysia', '@PeangAweez เพิ่งกินใอติม 55'), (4631, 1645, 'Johore, Malaysia', 'Back from riding and it felt so awesome;)'), (4632, 1591, 'Johore, Malaysia', '@Lim_Wai_Siong might as well quit cos we sit there whole day doing NOTHING'), (4633, 1650, 'Johor Bahru, Johore', 'Chilling (@ S11 Hougang Ave 1) http://t.co/YlxIW1F5'), (4634, 1371, 'Johor Bahru, Johore', 'I''m at Piano Teacher''s House http://t.co/f8XbzANM'), (4635, 1651, 'Pulai, Johor Bahru', 'Nahhhhh @erichafitrih . http://t.co/6HczsM9b'), (4636, 1619, 'Johore, Malaysia', '@Nichellexz hahah yeap!!! :) u too ma that''s why so happy lol'), (4637, 1332, 'Johore, Malaysia', 'I''m at Books Kinokuniya (Singapore) http://t.co/LJ4rmqPL'), (4638, 975, 'Johor Bahru, Johore', '@animaraini thanks kak'), (4639, 1613, 'Johor Bahru, Johore', 'Yesterday ride bike de friends , who is still tired now'), (4640, 1060, 'Plentong, Johor Bahru', 'will you be there for me again? #FM'), (4641, 593, 'Johor Bahru, Johore', '@Jae_Jerome Tmr you tweet me ok? I caps all the way'), (4642, 1652, 'Johore, Malaysia', 'I''m at Sauce (Singapore, #01-10/12) w/ 3 others http://t.co/IXWA10mJ'), (4643, 1653, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/DboZiWQ5'), (4644, 975, 'Johor Bahru, Johore', '@N_aniKhalil thanks :)'), (4645, 1140, 'Johor Bahru, Johore', 'Cause you''re so amazing.'), (4646, 1569, 'Johor Bahru, Johore', '@SundayDiah ;)'), (4647, 1647, 'Plentong, Johor Bahru', '@iamrommie I know right!! She like barbie doll sial. Her eyes super big!'), (4648, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah. It tastes like normal fried rice to me. Don''t know why they charge so much'), (4649, 1254, 'Johore, Malaysia', '@gnalaSenaiD @deflosa lau pasat. Papunta. Meet cla miong. Tpoz baka maya din meet c daryll. Bday nya ngayon.'), (4650, 1505, 'Johore, Malaysia', 'listening to Fun. ! its not a full stop, its in the band name for real! Lol #otwhome'), (4651, 1654, 'Johore, Malaysia', 'Dinner~! XD (@ Paradise Inn (Bedok Point) w/ 2 others) http://t.co/H1NiPbo2'), (4652, 1655, 'Johore, Malaysia', 'Friday =)'), (4653, 1656, 'Kota Tinggi, Johore', 'Gosh what''s with all the colourful geeky specs lahh!! Haiya! Everywhere!!'), (4654, 803, 'Johor Bahru, Johore', 'Here I am waiting alone again .'), (4655, 1596, 'Johor Bahru, Johore', 'Kerna kurniakan dengan dirimu sayang .'), (4656, 1579, 'Johore, Malaysia', 'Blaguu mentang2 lg off!!!RT @chandrahasibuan: @tyasratu biarin wee,udh kerja dlu sana!!wkakakak'), (4657, 941, 'Johore, Malaysia', '@xoxo_Nanaa Haha ! I knew it was you . But Takkot Salah orang . :3'), (4658, 267, 'Johore, Malaysia', 'Malaysia is truly Asia'), (4659, 1657, 'Malaysia', ':P (@ สวนลุงเจิม) http://t.co/CQPnFmQV'), (4660, 1635, 'Malaysia', '@Faiiz_Mikie อร่อยค่ะ .'), (4661, 1658, 'Johore, Malaysia', '@iamcrissymarie off course!'), (4662, 1441, 'Pulai, Johor Bahru', '@shazeahapiz kakwan gmba al ni? Hahahagile komplikated'), (4663, 1616, 'Malaysia', '@iamKCW อย่างนี้ต้องรอดู'), (4664, 1619, 'Johore, Malaysia', '@Huiwenz yea ): bt dun worry, I won''t forget hw u look like, hw u smell like, and hw you taste like. LOL!'), (4665, 206, 'Singapore', 'draw sth acc PLEASEE.:('), (4666, 141, 'Johor Bahru, Johore', 'Power of love :-)'), (4667, 290, 'Johor Bahru, Johore', 'Next one will be me. For sure. I just don''t know when to make my exit...'), (4668, 1596, 'Johor Bahru, Johore', 'Terima kasih cinta.'), (4669, 509, 'Johor Bahru, Johore', 'LEGGO CRAZYBEEFS !! (@ Night Safari w/ 3 others) http://t.co/pI1OhR4D'), (4670, 1659, 'Johor Bahru, Johore', 'Waaahhh hilo nako!!!!'), (4671, 472, 'Johor Bahru, Johore', 'quran masih ade lagy 2pagea. Ya Allah.. hahaha'), (4672, 206, 'Singapore', 'vipforlife -&gt; draw sth :D'), (4673, 1060, 'Plentong, Johor Bahru', '@nizammansor good anak soleh ; lets turn up into a new life man. 21 years old this year it''s mean a lot you know'), (4674, 1660, 'Johore, Malaysia', 'I''m at SMU School of Accountancy &amp; Law (Singapore, Singapore) w/ 2 others http://t.co/ZyOknTM4'), (4675, 388, 'Johore, Malaysia', 'Here the indian rojak nothing nice. So little variety and potato soooo small. (@ Syed Restaurant Pte Ltd) http://t.co/oe4aqW1w'), (4676, 1661, 'Johor Bahru, Johore', 'It''s hard to not love a beautiful thing.'), (4677, 1591, 'Johore, Malaysia', '@JCheng_Sim fazili T_T'), (4678, 729, 'Johore, Malaysia', 'Parkway looks dead'), (4679, 260, 'Kota Tinggi, Johore', 'I was a jedi...then I turn to dark side'), (4680, 1662, 'Johor Bahru, Johore', 'I''m at Long John Sliver @ Lot1 http://t.co/Ipr50hhx'), (4681, 527, 'Johor Bahru, Johore', '@yihanta later haha'), (4682, 1658, 'Johore, Malaysia', '“@iamcrissymarie: @jonitarose frend may instagram ka din palaa” 0ff course friend!'), (4683, 791, 'Johore, Malaysia', '明天过后是解答或解脱。'), (4684, 1663, 'Johore, Malaysia', 'I''m at Shikke Korean Grill BBQ w/ @milkyyyc @ngmin http://t.co/fQY1Moec'), (4685, 246, 'Johor Bahru, Johore', 'I''m at Amk Virtual Land http://t.co/FDVjyuYv'), (4686, 1664, 'Johore, Malaysia', 'I''m at Raffles City Shopping Centre (Singapore) w/ 8 others http://t.co/zPUTnNkZ'), (4687, 1665, 'Johor Bahru, Johore', 'Knocked out! (with Yati at Ma Crib!) [pic] — http://t.co/rbJbaE9v'), (4688, 1411, 'Johor Bahru, Johore', '@awesomeziling is forever retarded :b\nAlways acting cute and young :x hahas!'), (4689, 206, 'Singapore', 'freak ALLKPOP U POST WRONG INFO LAH'), (4690, 1596, 'Johor Bahru, Johore', 'I don''t care about them , let them say.'), (4691, 1666, 'Johore, Malaysia', 'I''m at Singapore General Hospital, Block 7, Ward 73 http://t.co/gy7i6xtZ'), (4692, 1667, 'Sungai Tiram, Johor Bahru', 'Werkwerk~ (@ EEW Sdn Bhd) http://t.co/xCLTEBth'), (4693, 1668, 'Johore, Malaysia', '@ShazySaniap make me teringat of syaa beylo ehk?? aha ..'), (4694, 1337, 'Johore, Malaysia', 'Pls dont call me funny,it reminds me ofmy mistakes'), (4695, 1669, 'Johor Bahru, Johore', 'New house new view. @ Outside my window. http://t.co/1dj2zLNX'), (4696, 130, 'Plentong, Johor Bahru', 'Nyatakan ~&gt; RT @dukefreaks: @Heyy_Summer em tlong aku download 1 lagu bole x?-__-"'), (4697, 1670, 'Johore, Malaysia', 'Bro... @ShahColdWorld Kau ingat Farid n Rika tak??'), (4698, 1647, 'Plentong, Johor Bahru', '@FranciscoOveree was really awesome sial. But very funny coz of the boy called his mom coz he scared!!!! HAHAHAHHAH'), (4699, 1477, 'Johor Bahru, Johore', 'Lols i see my cousin @caxrina doing her hwk mayb i should get off my lazyass and start work nw!'), (4700, 803, 'Johor Bahru, Johore', 'Can we move on , together ?'), (4701, 206, 'Singapore', 'http://t.co/945zIDDH CORRECT ONE IDIOT GET UR FACTS RIGHT DUMB ALLKPOP. -.-'), (4702, 1671, 'Johore, Malaysia', 'eating fresh.'), (4703, 1672, 'Riau, Indonesia', 'I''m at Candylicious (Sentosa Island, Singapore) http://t.co/7qM2LcEl'), (4704, 1673, 'Malaysia', 'I''m at Ped ward Bangkok Hatyai Hospital http://t.co/YUZUlC7V'), (4705, 600, 'Plentong, Johor Bahru', 'I''m at Bandar Baru Permas Jaya (Johor Bahru, Johor) http://t.co/ihT4bvIU'), (4706, 1526, 'Malaysia', '@dekMinhyuk ฟังเพลง ทวิต แล้วเฟส แค่นี้แหละที่ทำ^^'), (4707, 1674, 'Johore, Malaysia', 'I''m at MOS Burger (Jurong East, Singapore) http://t.co/fG6lhc6x'), (4708, 1675, 'Johore, Malaysia', 'Hey!Young homie what you tripping on?'), (4709, 1353, 'Plentong, Johor Bahru', 'atas nama cinta'), (4710, 411, 'Johor Bahru, Johore', 'Eating apple. Hmmm Yummy! :D'), (4711, 1665, 'Johor Bahru, Johore', 'Knocked out too! (with Yati at Ma Crib!) [pic] — http://t.co/Lk3qLV0T'), (4712, 1108, 'Johore, Malaysia', '@HongyuRedFish Downloading. :D'), (4713, 1676, 'Johore, Malaysia', '3.2km run.. Was interesting.. Haha. -.-'), (4714, 241, 'Johor Bahru, Johore', 'When I''m friendly, I''m flirting, when I''m quiet, I''m antisocial.. So what you guys want me to do...? '), (4715, 41, 'Plentong, Johor Bahru', '@edlinayn kenapa u merajuk ni? sorry k :('), (4716, 1677, 'Johore, Malaysia', '@tingalism our mother cooking cooking cookinnnnz @ Jervois Road  http://t.co/gPILe4Xe'), (4717, 130, 'Plentong, Johor Bahru', '@ahmadsyauqiPO opkos la kandakan kat temasek. Acane nak gegatal kaan :B'), (4718, 1633, 'Indonesia', 'iya teh jgn d buangin air matanya :D RT@asriachi26 hu''um..:D RT @VanJrs: bner chi jngan sia-siakan air mata mu u/ hal yg ga pnting'), (4719, 1678, 'Johor Bahru, Johore', 'Mendak!! Fb boring tweeter pun boring apedah! -_-"'), (4720, 1591, 'Johore, Malaysia', '@Lim_Wai_Siong ya la'), (4721, 165, 'Johor Bahru, Johore', 'I''m at Blk 626 Lvl6 http://t.co/VrTikYhj'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (4722, 1679, 'Johor Bahru, Johore', 'I miss eating Prosperity Burger &amp;&amp; Twister Fries! Only @SG!! :D @ Mc Donalds White Sands http://t.co/BQ3Udjd6'), (4723, 1197, 'Johore, Malaysia', '@GreyDiamonds what is fam channel? LOLOL. Nah I haven''t install yet. I just reformatted my laptop yesterday.'), (4724, 1406, 'Johore, Malaysia', 'I''m having norul ni my bunk tonight! Hahahhaha'), (4725, 1649, 'Johore, Malaysia', 'Nice Picture tooken! The lighter one is Jupiter and the brighter is Venus http://t.co/h708fKac'), (4726, 1596, 'Johor Bahru, Johore', 'Cos I''m glad to be with you , even though we can''t foresee what''s for us.'), (4727, 803, 'Johor Bahru, Johore', 'Noah yap &amp; Steven lim is my idol (:'), (4728, 141, 'Johor Bahru, Johore', '@tinzliang sarry n b... Mwshh mwshh... Bka ipagpalit moq s new friends mo ahh'), (4729, 1659, 'Johor Bahru, Johore', 'I need panadol!!!'), (4730, 593, 'Johor Bahru, Johore', '@Jae_Jerome thanks^^ needa eat dinner first.'), (4731, 130, 'Plentong, Johor Bahru', '@FarafyfaMazlan halaaaa!! Halaaa!! T T'), (4732, 1571, 'Johor Bahru, Johore', '@BoringgPig Tmrw gt np , what time ? 9 - 12 ?'), (4733, 1680, 'Johor Bahru, Johore', '@peilinglow oh darling, I know it''s my fault. Let''s meet up when u are back (get the joke)'), (4734, 1642, 'Johore, Malaysia', 'Ang galing ko tlgang pumwesto sa mrt! Always nakaupo!:) demographics analysis lng ang secret haha!'), (4735, 1681, 'Singapore', '@HeyA13X you wan the harden thing anot ?!?!?!? it cost like $17 ++ the cheapest'), (4736, 1682, 'Johore, Malaysia', 'Volunteer not to build your resume but so you can build yourself!'), (4737, 1683, 'Johor Bahru, Johore', 'On the way to tuition.'), (4738, 41, 'Plentong, Johor Bahru', 'jangan terlalu berharap :)'), (4739, 1496, 'Indonesia', '@JandReeYandRee adohhh.. salah org nih..'), (4740, 1684, 'Johor Bahru, Johore', 'Night has come ... @ Singapore Boys'' Home http://t.co/5Qokx8TT'), (4741, 762, 'Johore, Malaysia', 'I rather hanging out with them than you!! SERIOUSLY_|_'), (4742, 1685, 'Johor Bahru, Johore', 'I''m at Home Sweet Home ^^ http://t.co/PCcwBN1b'), (4743, 1240, 'Johore, Malaysia', 'sex on the beach (@ Blu Jaz Cafe) http://t.co/tNMNzUr1'), (4744, 1554, 'Johore, Malaysia', 'I''m at Popular Bookstore (Singapore, Singapore) http://t.co/LGaorS99'), (4745, 665, 'Johore, Malaysia', '@ebestdamnthing haha. Maybe fruits liaox.'), (4746, 971, 'Singapore', '@jjong199 HANNAH ~ so the Glogster thingy how ?'), (4747, 1140, 'Johor Bahru, Johore', 'Found new friends then leave old friends just like that. Great one #STUPIDHOE'), (4748, 1686, 'Johore, Malaysia', 'left with only wheels and im done :)'), (4749, 130, 'Plentong, Johor Bahru', '@Aerza_Amir game for iPhone I android baby :D'), (4750, 1687, 'Johor Bahru, Johore', 'I''m at mud''s krib (Singapore) http://t.co/vlTU4pgn'), (4751, 859, 'Johor Bahru, Johore', 'Y gt cat keep meow meow meow sia? Its injured or wat uh?'), (4752, 1060, 'Plentong, Johor Bahru', 'Life is about appreciation ; Appreciate that you have been given a chance to live'), (4753, 757, 'Johor Bahru, Johore', 'Woohoo today is a real lucky day for me ! Get $750 cash from ite and new phone cover and my pay come ! ^^'), (4754, 1688, 'Johor Bahru, Johore', '^_____^ (@ Bukit Panjang Plaza w/ 8 others) http://t.co/7Alqj7YS'), (4755, 941, 'Johore, Malaysia', 'Following a girl shopping is a hell of exercise . :3'), (4756, 1668, 'Johore, Malaysia', 'Hello to my 5 new followers , cheers :)'), (4757, 446, 'Singapore', 'Completed Pokemon Emerald. #childhood'), (4758, 1689, 'Johor Bahru, Johore', 'Let a 80 pips profit run away. Doh!! #forex'), (4759, 803, 'Johor Bahru, Johore', 'I need your hug , simple request , hard ah ? Just Fml lo .'), (4760, 118, 'Johor Bahru, Johore', '@rohanitarohin yeah. Their environment really quite beautify...'), (4761, 4, 'Johor Bahru, Johore', '“@Notebook: The only person I''m better than is the person I was yesterday.”'), (4762, 1191, 'Plentong, Johor Bahru', '#BestThingAboutBeingSingle can do anything without the shackle :)'), (4763, 241, 'Johor Bahru, Johore', 'Oh I know, friendly with guys only than people will say I''m gay'), (4764, 1690, 'Johor Bahru, Johore', 'Sch is going 2 reopen in 3 more days'' time.happy or sad?'), (4765, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ fudge you, I''m jealous. I''M COMING OVER. lol jk heheh'), (4766, 605, 'Johor Bahru, Johore', 'The feeling when you have no idea why are you so hungry!!! Can''t stop eating like seriously?!'), (4767, 1691, 'Johore, Malaysia', 'Playing sparkling :) (@ West Coast Park w/ 3 others) [pic]: http://t.co/iYify8Fy'), (4768, 1686, 'Johore, Malaysia', 'oh yeah. and a new handlebar. zzzz'), (4769, 130, 'Plentong, Johor Bahru', 'Jap ade keje ~&gt; RT @dukefreaks: @Heyy_Summer noi sia-earthquake..ni abang @hadi_hamid soh aku dgr.bole ea yunk?:)'), (4770, 1406, 'Johore, Malaysia', '@asmadiah_asman macam champion??? Macam paham aderlah'), (4771, 787, 'Johor Bahru, Johore', 'lu uda pintar kok :) “@rudlycorwin: Bagaimana ya caranya jd org pintar ?”'), (4772, 1692, 'Johor Bahru, Johore', 'I''m at Joanne''s and joeys house!!!  http://t.co/quTN3bJa'), (4773, 1693, 'Johore, Malaysia', 'Just finished tuition! Came to my grandmother''s to eat! (@ Grandma''s House!! ) http://t.co/7UcNjotp'), (4774, 106, 'Johor Bahru, Johore', '@AhXon their so called ultrabook is not quite worth it :/ I would rather U get the Lenovo ultrabook since got ssd'), (4775, 1683, 'Johor Bahru, Johore', 'Wow hot girl. Too bad,she''s taken. :('), (4776, 1694, 'Johore, Malaysia', 'I''m at Cold Storage (Singapore, Singapore) http://t.co/2FbOtRN9'), (4777, 1526, 'Malaysia', '@NeayWR_Boice ประชดเฉยๆๆ ถ้าไปจริงๆๆคงตายแช่แข็งแน่5555+'), (4778, 1411, 'Johor Bahru, Johore', '@awesomeziling @ZelleZiao @SyafiqahNutella @superjolene @weareomnivores Ziling tryna act like primary school kids. http://t.co/EBbE3mrk'), (4779, 1690, 'Johor Bahru, Johore', 'Yr sexy and I know it!'), (4780, 1695, 'Johor Bahru, Johore', 'I''m at The Coffee Bean &amp; Tea Leaf (Singapore) http://t.co/wabLi8dP'), (4781, 1337, 'Johore, Malaysia', '@Eminem is awesome'), (4782, 803, 'Johor Bahru, Johore', '@Pinkkystarszxc Steven lim is so cute . LOL joking , I make one idol for the best and one for the worst . You don''t get it meh ? Haha'), (4783, 729, 'Johore, Malaysia', '@davidlee_ggxx you going there to eat uh?'), (4784, 1668, 'Johore, Malaysia', 'i feel like i know who isit :3'), (4785, 241, 'Johor Bahru, Johore', '@mr_niceguy95 you forever flirting pls enlighten me'), (4786, 188, 'Johor Bahru, Johore', 'I realised this year my presents has risen up the price :3 from bag to shoe to bbj to phone &amp; even cash hahaha~ yay. Me lub my birthday bt'), (4787, 1696, 'Johore, Malaysia', 'I''m at Big Eater Restaurant http://t.co/d0TCIvIl'), (4788, 971, 'Singapore', '@jjong199 next week sia. not that easy to do i think need time sia. so how ? you doing with hu ?'), (4789, 1697, 'Johor Bahru, Johore', '@Bitetherose :)'), (4790, 1698, 'Johore, Malaysia', 'So weak. Shit lah. :( how to go drama like this?'), (4791, 64, 'Johore, Malaysia', 'sayonara memories'), (4792, 938, 'Johore, Malaysia', '@_KristineNicole why never follow back? zz'), (4793, 1689, 'Johor Bahru, Johore', '@yixianglahsia u know what else explode?'), (4794, 1060, 'Plentong, Johor Bahru', '@nizammansor livin young and wild and free is over pal, time to carries some responsibilities.'), (4795, 1194, 'Malaysia', '@fahsrit พี่ฟ้า บัตร 800 พี่ฟ้ายังมีอยู่มั้ยอ่ะคะ #ถามเฉยๆ555555'), (4796, 972, 'Johor Bahru, Johore', 'Haiyooo... Jason , u cannot get her lah. She''s mine ! Lol jkjkjk'), (4797, 435, 'Johor Bahru, Johore', '@fallfellfallen is this is a must? :O'), (4798, 1578, 'Johore, Malaysia', '@LaLaSalsarina @bellebrat @Jaslynkitty @Nahburlee haha'), (4799, 3, 'Johor Bahru, Johore', '@Hayleystitch All the best k? I support you, *pats shoulder *:)'), (4800, 1699, 'Johore, Malaysia', 'I''m at Honeymoon Dessert 满记甜品 (Singapore, Singapore) http://t.co/vVies6yh'), (4801, 1647, 'Plentong, Johor Bahru', '@iamrommie. She moved to butterworth dy la. wait one day we go Penang together k! I promised her I''ll go visit her one day. We fly from kl'), (4802, 188, 'Johor Bahru, Johore', 'My wish hasnt been granted yet :&lt; haiss,and i know it never will be.'), (4803, 1700, 'Johore, Malaysia', 'Steamboat dinner (@ Joaqium @ Suntec City) http://t.co/lPhD4yQI'), (4804, 803, 'Johor Bahru, Johore', '@_Pocketz playing a song ? On the radio ?'), (4805, 1078, 'Johore, Malaysia', 'I''m at Club V http://t.co/KWzuacw9'), (4806, 735, 'Johore, Malaysia', 'I''m at Eunos MRT Station (EW7) (Singapore) w/ 2 others http://t.co/ZvYdNSxU'), (4807, 1004, 'Johore, Malaysia', 'I''m at Al Madjnah Restaurant (Singapore, Singapore) http://t.co/Zcb6cWvd'), (4808, 3, 'Johor Bahru, Johore', '@Hayleystitch Where and what time?~'), (4809, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove wool! Precisely that''s why this happen!!'), (4810, 1701, 'Plentong, Johor Bahru', 'haishh,alhadulillah akhirnya ada jugak electric rumah saya,kalau tak mandi dalam gelap lah jawabnya.#apipenyuluhkegelapan'), (4811, 1702, 'Johore, Malaysia', '싱가폴 철인 출전하러왔어요\n응원해주세요 http://t.co/pUjEnMmq'), (4812, 1092, 'Johor Bahru, Johore', 'Today is Condom Day at America!HAHHA'), (4813, 1108, 'Johore, Malaysia', '@HongyuRedFish Learning. :D'), (4814, 938, 'Johore, Malaysia', '@ohmybeloved_ Can follow me back? Thank you :)'), (4815, 1558, 'Johor Bahru, Johore', '@genn_ganz @y1hui hi gen:D'), (4816, 1698, 'Johore, Malaysia', 'When I grow up I need to marry a doctor. I don''t have to waste money on consultation fees.'), (4817, 720, 'Plentong, Johor Bahru', '#SegalanyaCinta ka @AdlyFayruz ;]'), (4818, 775, 'Johore, Malaysia', '@Dariuslua yeah bro..and also hams'), (4819, 1676, 'Johore, Malaysia', '@atiqaa hahaha. No lah. Can run. Just interesting that''s all.. :)'), (4820, 1060, 'Plentong, Johor Bahru', '#21 - learn how to be a responsible person'), (4821, 873, 'Johore, Malaysia', '@MCheok WOOOHOOO'), (4822, 1703, 'Johore, Malaysia', 'French food! (@ Black Gold) http://t.co/rsVVZcpS'), (4823, 1704, 'Tebrau, Johor Bahru', '@_imaSnorlax hoho wasted ur hack'), (4824, 1451, 'Johore, Malaysia', '@JoshuaLimmm ya la u nvr sunat so ur a chinese wat :P'), (4825, 1705, 'Plentong, Johor Bahru', '@AyuBusri @rikadiana_busri @hunny_be Ckp la cam 2.. :-)'), (4826, 64, 'Johore, Malaysia', 'oh yeah. I was planning to play harvest moon all day long but I ended up here. again.'), (4827, 1065, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 13 others http://t.co/rZiIzvYf'), (4828, 793, 'Johore, Malaysia', 'At * Mrt Train Toward Pasir Ris * — http://t.co/JgAEehzL'), (4829, 1706, 'Johore, Malaysia', 'Having dinner (@ Tian Fu Huo Guo Xiao Chu) http://t.co/x7rYMKJU'), (4830, 241, 'Johor Bahru, Johore', '@imJeffzxc @mr_niceguy95 same applies to you jeff nah jk! '), (4831, 1707, 'Johor Bahru, Johore', 'Otw to gombak station at Citibella for my soak off nails~'), (4832, 1707, 'Johor Bahru, Johore', 'Watsapp back to normal !'), (4833, 1708, 'Johore, Malaysia', 'I''m at Jalan Berseh Food Centre (Singapore, Singapore) http://t.co/dxVk1uN4'), (4834, 402, 'Johore, Malaysia', 'Dinner!! :) (@ [F.I.S.H.] by Fish &amp; Co.) http://t.co/sn5M77r2'), (4835, 1709, 'Johor Bahru, Johore', 'Sambal stingray. @ Chomp Chomp Food Centre http://t.co/vCnk7EYW'), (4836, 1596, 'Johor Bahru, Johore', 'I love you .'), (4837, 293, 'Johor Bahru, Johore', '@_Triciaaa_ nice song!'), (4838, 1710, 'Johore, Malaysia', 'I''m at 333 Bak Kut Teh w/ @royceisprince http://t.co/BsHhJ6Dq'), (4839, 1711, 'Johor Bahru, Johore', 'Vfxhtdvjgdbhc'), (4840, 62, 'Johor Bahru, Johore', 'I will hold your words RT @tweetlipxz: @ForeverChronic i hate you”'), (4841, 1713, 'Johore, Malaysia', 'My goodnes. Just finished a 4 hr long studio w my students! Feel so spent and so hungry I inhale a cow!'), (4842, 593, 'Johor Bahru, Johore', '@Jae_Jerome where got eat good food?? Claypot rice only la haha'), (4843, 1011, 'Johor Bahru, Johore', 'Playing diamond dash'), (4844, 1670, 'Johore, Malaysia', 'Wahhh so good.. Dari pr 6 (12tahun) sampai sekarang (21 tahun) korg bersama at last hari ni korg tunang sooo jealous..bila aku nya turn T__T'), (4845, 1526, 'Malaysia', '@dekMinhyuk กำลังจะไปกินคร้าา'), (4846, 1714, 'Kota Tinggi, Johore', 'The moment when you realise you don''t have many friends and army''s the cause :('), (4847, 1705, 'Plentong, Johor Bahru', 'Hi JB !!'), (4848, 803, 'Johor Bahru, Johore', '45mins alr .'), (4849, 1715, 'Plentong, Johor Bahru', '@REALFAFAU @faizal_hotfm ade siaran ape ek??'), (4850, 1060, 'Plentong, Johor Bahru', '#21 - Appreciate an opportunity'), (4851, 1406, 'Johore, Malaysia', '@asmadiah_asman merajok ah! Abih mahal siol'), (4852, 186, 'Johore, Malaysia', '@NaomiNeo_ Hi I love you Naomi! &lt;3 Staystrong and you make alot of sense in your recent post. 加油加油! :)'), (4853, 1717, 'Johore, Malaysia', '@___YOs___ YES SMLJ'), (4854, 1108, 'Johore, Malaysia', '@HongyuRedFish You got play?! :D'), (4855, 1718, 'Johore, Malaysia', 'I''m at Tan Tock Seng Hospital (TTSH) (Singapore, Singapore) w/ 4 others http://t.co/iz28ON6k'), (4856, 840, 'Johore, Malaysia', 'lepak awhile then work. who''s coming!? ^^ (@ liquid empire) http://t.co/qPq4BiCU'), (4857, 1591, 'Johore, Malaysia', '@JCheng_Sim @Lim_Wai_Siong but then they treat us as extras they say go to take a seat then observe and later got training in the end sit'), (4858, 498, 'Johor Bahru, Johore', '@love_parachute THANKS ^^'), (4859, 859, 'Johor Bahru, Johore', 'De only thing $$ can''t buy''s love!'), (4860, 1719, 'Johor Bahru, Johore', '@Jiaaaaabao haha don''t jealous wor !!! Go find LOOK ! &gt;&lt;'), (4861, 1572, 'Johor Bahru, Johore', '@nikiakila btw Kau free besok? Ikot aku gi telok blangah get some skateboard stuffs and apparels.'), (4862, 1720, 'Kota Tinggi, Johore', '@bentclyff @AminShafieSaad hi? whats going on????? :o'), (4863, 1411, 'Johor Bahru, Johore', '@ZelleZiao cause I thought u very thick skin one . Thick skin people won''t hai xui de . :b jkjk'), (4864, 1721, 'Johore, Malaysia', '@hotdEsHi @thejjl ehem ehem! ❤ ikaw talaga LAR.... Este Labs pala, haha. Dalaw dalaw din para hindi mamiss hohiho. ✌'), (4865, 978, 'Johor Bahru, Johore', 'Damn the anime Shakugan no shana was so damn cool !'), (4866, 1040, 'Kota Tinggi, Johore', 'Yay . My abang buat kan ice milo for me (:'), (4867, 1705, 'Johor Bahru, Johore', '@Stella_700 Apa yg what happened ??'), (4868, 3, 'Johor Bahru, Johore', '@Edwininja no matter how serious it is, I would laugh my lungs out xD'), (4869, 1643, 'Johore, Malaysia', 'Pimp my ride! #dreamcar @ Singapore http://t.co/DN1DAbwX'), (4870, 1722, 'Johor Bahru, Johore', '@yangiehee @5daysoftorture @meredith_lim @emobabyx @_iqahsam_ u dun think too much..think postive'), (4871, 68, 'Riau, Indonesia', 'ohehe aku libuuur RT @mumutcimamay: Gaaktaau aku sayaang, kamuu? RT @IlfaAzlyani: oke sayaang,eh'), (4872, 1713, 'Johore, Malaysia', '@BlueberryJan girl. You are 4 yrs too late in asking this question!'), (4873, 1040, 'Kota Tinggi, Johore', 'My mama masak burger (-'), (4874, 951, 'Johore, Malaysia', 'Waiting for some cb (@ Shelter) http://t.co/WVRDS4X8'), (4875, 241, 'Johor Bahru, Johore', '“@mr_niceguy95: @ItsyBitsySp1der lol. I''m being friendly. :)” OVERFRIENDLY'), (4876, 1040, 'Kota Tinggi, Johore', '(:*'), (4877, 1065, 'Johore, Malaysia', 'kaching-kaching... keeping an eye on the goal. (@ Brunphil Express) http://t.co/kxAjXnjl'), (4878, 1723, 'Johore, Malaysia', 'Nomz (@ Hangari Galbi @ 112 Katong) http://t.co/Tl8R5jJi'), (4879, 805, 'Johor Bahru, Johore', 'I''m at Blk 733 Jurong West St 73 http://t.co/gKfrPLHn'), (4880, 68, 'Riau, Indonesia', 'udh dunn, kakakcantik? RT @tessaaMRD: udah mandi adek imut?RT @IlfaAzlyani: ahaha nonton cartoon kakcantik R'), (4881, 1060, 'Plentong, Johor Bahru', '#21 - Be wise man.'), (4882, 1724, 'Malaysia', 'ไม่เคยขอให้ใครมารัก มาสนใจ'), (4883, 1591, 'Johore, Malaysia', '@JCheng_Sim @Lim_Wai_Siong sit there do nothing for the whole day...'), (4884, 241, 'Johor Bahru, Johore', '@imJeffzxc sure bro standby phone!'), (4885, 1725, 'Johor Bahru, Johore', '@Weitinqsim again say your dog'), (4886, 1558, 'Johor Bahru, Johore', '@genn_ganz @y1hui D: trust me, i,be totally switched to Singtel:D fast Internet connection^^'), (4887, 459, 'Tebrau, Johor Bahru', '@ukhuwahfillaah. Khotak! Haha!'), (4888, 1526, 'Malaysia', '@biimqboice 555+เตรียมตัวไว้ก่อน'), (4889, 803, 'Johor Bahru, Johore', 'It''s okay , i feel more special then others because others is used to having people to talk with them while I''m used to being alone waiting'), (4890, 1011, 'Johor Bahru, Johore', 'Learning how to dance'), (4891, 1726, 'Johore, Malaysia', '一口气买了两条dresses!'), (4892, 628, 'Johor Bahru, Johore', '@Mir_minnji FOLLOWED, follow back please LOL.'), (4893, 68, 'Riau, Indonesia', 'hehe iyaa, RT @dwiaynash: salam kenal yaaaa RT @IlfaAzlyani: iyaaaa #mbb RT dwiaynash'), (4894, 1539, 'Johore, Malaysia', 'Lol! And handsome too! Hahaha! RT @spellxsolar: @KhaziUlliel Nice to know you too Tall guy. Haha!'), (4895, 1727, 'Johore, Malaysia', 'Jordannnn...everything u want to buy (˘_˘) (@ Mustafa Centre w/ 4 others) http://t.co/Tx1Ge3P0'), (4896, 130, 'Plentong, Johor Bahru', 'Okkay yayangs ~&gt; RT @dukefreaks: @Heyy_Summer okayy take ur time..I''m here till 11.30 dear..hehehe!;p'), (4897, 1728, 'Johor Bahru, Johore', 'Just posted a photo @ Bishan Park 1 &amp; 2 http://t.co/BnyGDoQ3'), (4898, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove haha thx for advice'), (4899, 862, 'Johor Bahru, Johore', 'I''m at Courts Megastore (Singapore, Singapore) http://t.co/W4daFAut'), (4900, 803, 'Johor Bahru, Johore', 'You''re enjoying , while I''m suffering&amp;tolerating .'), (4901, 1353, 'Plentong, Johor Bahru', 'ngantok plak mate ni.. haisss'), (4902, 68, 'Riau, Indonesia', 'aku ilfa,sklh?grd? RT @triskamendlev: triska :) kamu ?RT @IlfaAzlyani: hehe,siapa? RT @triskamendlev: ohaha,'), (4903, 1526, 'Malaysia', '@biimqboice สวัสดีจ้าพี่สาวววว'), (4904, 972, 'Johor Bahru, Johore', 'Italian Mode ! #LOL'), (4905, 1729, 'Johor Bahru, Johore', 'Fun badminton session!.'), (4906, 1191, 'Plentong, Johor Bahru', '@lalingg Awesome! :)'), (4907, 241, 'Johor Bahru, Johore', '@mr_niceguy95 @imjeffzxc wing man!!!'), (4908, 1730, 'Johor Bahru, Johore', '@EmeldaLum someone enjoy their zoo trip too isn''t it?! Haha!'), (4909, 971, 'Singapore', 'OMG. why i suddenly start listening to EPOP ? LOL. quite nice lehh :P can improve my engrish :P'), (4910, 543, 'Johore, Malaysia', 'I''m at Clementi Heights http://t.co/n8vJlFNu'), (4911, 492, 'Johor Bahru, Johore', 'Just bathed finish~~✨ (@ bel''s bed!) http://t.co/7wCWyobX'), (4912, 3, 'Johor Bahru, Johore', '@Hayleystitch why so late?:('), (4913, 68, 'Riau, Indonesia', 'ohehehe&lt;3 RT @Belbielowday: dengarlagu aja nih cantikku ;;) RT @IlfaAzlyani lagii online,k'), (4914, 991, 'Johor Bahru, Johore', '@journeytoernxz @elurophobia *WAVES FRANTICALLY*\nMEEEEEEEEEEEEE!!!!!!!!!'), (4915, 1731, 'Johore, Malaysia', 'Geylang ...-.- heaven on earth...;D :P'), (4916, 1732, 'Indonesia', '@authiies @Ichamuya @echisianturi @aisxiarifi @MutiaSetyawati follow&amp;kelola http://t.co/tHM5114t http://t.co/N7dRtEOy http://t.co/yc5JsETt'), (4917, 1591, 'Johore, Malaysia', '@Lim_Wai_Siong @xavierskyace @jcheng_sim ya la that''s why I so sad'), (4918, 474, 'Johor Bahru, Johore', 'I''m at Anchorvale 303 Food Court (Sengkang, Singapore) http://t.co/Z5ZQPFWu'), (4919, 1683, 'Johor Bahru, Johore', 'Promises are meant to be kept. Not broken so easily.'), (4920, 21, 'Johor Bahru, Johore', '@B4DuMCreeKCreeK tk bilang pn NS skg da bole pakai phone ade camera. Kau bru hbes 25km pe?'), (4921, 720, 'Plentong, Johor Bahru', 'waduhh .liat avatar nya kak @AdlyFayruz . kerennnn bgtt !! tapii gak ada kepalanya . hahahaha . mulut saja ada . haha'), (4922, 775, 'Johore, Malaysia', '"It is one of the blessings of old friends that you can afford to be stupid with them".Happy Birthday to you buddy :-) http://t.co/sr6omGrp'), (4923, 1406, 'Johore, Malaysia', '@asmadiah_asman sebab camp ni kat dekat ngan tuas'), (4924, 1733, 'Malaysia', 'Nap time (@ Cathay guesthouse hatyai) http://t.co/aRgbqIjG'), (4925, 971, 'Singapore', 'wahh. like that lah. don''t reply me :/'), (4926, 435, 'Johor Bahru, Johore', 'I just remembered last year my geog CT... Haha! I forgotten what''s the Q. But I answered "Its the wonders of nature." and I was damned. Ha!'), (4927, 1734, 'Riau, Indonesia', 'I''m at Hardrock Cafe (Resort World Sentosa, Singapore) http://t.co/P36wNwFj'), (4928, 1735, 'Johore, Malaysia', '@chrisyyyyyy Chill friend. No point getting angry, wasting ur youth only. Smile more. :)'), (4929, 459, 'Tebrau, Johor Bahru', '@FadheRose @lightof_jannah ape nie I have nth to do w this..'), (4930, 1567, 'Johor Bahru, Johore', 'When I''m with you,all my problems are like nothin'), (4931, 711, 'Johor Bahru, Johore', '@appleliciouseye siao! sape marah..haha.. kau tu kene byk pegi course on how to see human''s behaviour...hahahaha'), (4932, 1736, 'Johore, Malaysia', 'Where is my @priddycunt.... (@ ION Orchard w/ 28 others) http://t.co/qGm3X7On'), (4933, 593, 'Johor Bahru, Johore', '@Jae_Jerome yeah.. Getting worse..'), (4934, 1060, 'Plentong, Johor Bahru', '#21 - Learn to control your temper'), (4935, 1477, 'Johor Bahru, Johore', 'Jz finihed my first qn for my holiday hwk, many more to go...'), (4936, 1737, 'Johore, Malaysia', 'Dinner w @melphin and his family (: (@ Bishamon Bedok Point) http://t.co/7m8cNe8d'), (4937, 1738, 'Johor Bahru, Johore', '@asmanissa mane ade,main teruk tadi,btw k9 hebat :)'), (4938, 41, 'Plentong, Johor Bahru', 'kini beza jarak kita cuma 300km :)'), (4939, 1108, 'Johore, Malaysia', '@HongyuRedFish Fun?'), (4940, 1704, 'Tebrau, Johor Bahru', '@_imaSnorlax @stevectl rehack la'), (4941, 1739, 'Johor Bahru, Johore', '@shan_kaichen darling~'), (4942, 168, 'Johore, Malaysia', 'I''m at Jalan Haji Salam http://t.co/JBNRDApa'), (4943, 1337, 'Johore, Malaysia', '@twitter is the new @facebook'), (4944, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove yep thanks Jeremy Lin wife'), (4945, 285, 'Singapore', 'I don''t wake up to impress you'), (4946, 1554, 'Johore, Malaysia', '#wannaread A Dangerous Method by John Kerr'), (4947, 850, 'Johor Bahru, Johore', '还要一起冲'), (4948, 1698, 'Johore, Malaysia', 'In a year I think I fall sick like once every 2 months laaaaah. Arghh. Fml'), (4949, 1735, 'Johore, Malaysia', 'The heaviest eye bag ever. I''m dying. Help!!!'), (4950, 1239, 'Riau, Indonesia', 'Champagne before dinner @ Tanjong Beach Club http://t.co/JUzg5vkM'), (4951, 873, 'Johore, Malaysia', '@shabnaaa @fernerichardson @hellojoyce @mayahaha @cocoskies ILL BE THERE IN SPIRIT'), (4952, 435, 'Johor Bahru, Johore', '@fallfellfallen ok. That''s a relief! Haha! So Sunday you gg out with us?'), (4953, 544, 'Johor Bahru, Johore', 'At sunshine now with @Evolruoyemllet_ and @Jerwaynehtw.'), (4954, 1108, 'Johore, Malaysia', 'Tamade, why is there so many clothes to be folded. @:'), (4955, 1701, 'Plentong, Johor Bahru', '@iNajihahh ada fb ? nanti i bagi link dia.'), (4956, 1111, 'Johore, Malaysia', 'I''m at Tian Fu Huo Guo Xiao Chu w/ @corissawong http://t.co/8RVpkSBv'), (4957, 1632, 'Plentong, Johor Bahru', 'I''m at Lush Nails (Johor Bahru, Johor) http://t.co/X2Iek8oy'), (4958, 1526, 'Malaysia', '@dekMinhyuk ok จะเพื่อให้ท้องแขม่วเลย5555+'), (4959, 1206, 'Johor Bahru, Johore', 'Shalat Maghrib (@ Darul Ghufran Mosque) http://t.co/1yvE5rI2'), (4960, 1740, 'Johore, Malaysia', 'Act Of Valor! (@ Golden Village) http://t.co/1z5yDGb1'), (4961, 1406, 'Johore, Malaysia', '@_zacharyshaff hahahaha'), (4962, 68, 'Riau, Indonesia', 'ga pntg jg,tp'), (4963, 878, 'Plentong, Johor Bahru', 'Usai Solat Maghrib (@ Masjid Sultan Abu Bakar w/ 2 others) [pic]: http://t.co/Alnq1Url'), (4964, 1060, 'Plentong, Johor Bahru', '#21 - Be in a right path'), (4965, 787, 'Johor Bahru, Johore', '@rudlycorwin haiyaaa... Kok ane pastah e.. Emang makin berkrg kok mrk trima e :( penabur aja dikit :('), (4966, 22, 'Johor Bahru, Johore', '@JINGYILovesPOOH eeyer he like that.yeah!then we do the actions ,confirm full marks for dance !haha'), (4967, 1741, 'Johor Bahru, Johore', '@r4cha3l yum yum time...... Dinner'), (4968, 1194, 'Malaysia', '@fahsrit อ๋อค่ะ ^^'), (4969, 1572, 'Johor Bahru, Johore', '@nikiakila ask Syafiq pollio'), (4970, 411, 'Johor Bahru, Johore', 'Hungry Hungry!'), (4971, 68, 'Riau, Indonesia', 'ga pntg jg,tp [Like it? http://t.co/e6QvkjXF ]'), (4972, 1742, 'Johor Bahru, Johore', '@atyyqahlalala hahaha asal dear?'), (4973, 1526, 'Malaysia', '@NeayWR_Boice คงไม่ไหวที่จะทำ55'), (4974, 1002, 'Johore, Malaysia', 'Slings and monkey nuts for dinner (@ Long Bar) [pic]: http://t.co/Qqx6WhXZ'), (4975, 1743, 'Johore, Malaysia', 'I just ousted Michal Z. as the mayor of Ichiban Boshi on @foursquare! http://t.co/qiU13tYQ'), (4976, 1231, 'Johor Bahru, Johore', 'I''m at nex w/ @garytwitjoke http://t.co/oCiq1Aeu'), (4977, 22, 'Johor Bahru, Johore', '@xiaowang123 I did it only in sec1):'), (4978, 1744, 'Plentong, Johor Bahru', 'miss you laa capital A :''('), (4979, 459, 'Tebrau, Johor Bahru', '@AfiqahMS it was a sudden thought.. O.o'), (4980, 720, 'Plentong, Johor Bahru', '@ChichiPuteri okkk kakk . tp episod malam ni adee akak kee ? eh siang tadi tgk nora elena . hehehe . rinduu dila dlm tuu ;]'), (4981, 435, 'Johor Bahru, Johore', '@Stainedroses ehhh. Idk leh. Where can we go? Watch movie again arh?'), (4982, 1396, 'Plentong, Johor Bahru', '@AfeezVanilla haha..atas moto pon sempat brtweet ea..???haha..'), (4983, 1745, 'Johor Bahru, Johore', 'Dinner. (@ PastaMania w/ 2 others) http://t.co/z4GgYIQI'), (4984, 1406, 'Johore, Malaysia', '@Notebook this is true! :)'), (4985, 68, 'Riau, Indonesia', 'pakai kipas angiiiiiiiin kakauuu RT @auautiss: Panaaass aa ya tuhaaann'), (4986, 1060, 'Plentong, Johor Bahru', '#21 - Time to make decision'), (4987, 267, 'Johore, Malaysia', 'Still can''t be arsed to eat #wifeneglected'), (4988, 1717, 'Johore, Malaysia', '49 DAYS TIME ^^'), (4989, 1746, 'Johor Bahru, Johore', 'I''m at Mad Jack Café (Singapore, Singapore) http://t.co/M3D1QDhF'), (4990, 1747, 'Johore, Malaysia', 'I''m at Long Beach Seafood (Singapore, Singapore) http://t.co/4ZfkARkX'), (4991, 1724, 'Malaysia', '@Pw_npbb อ่ออออออจ้า'), (4992, 1748, 'Johore, Malaysia', 'I''m at Parkway Parade (Singapore) w/ 3 others http://t.co/OcpKscxA'), (4993, 1749, 'Johor Bahru, Johore', 'Mmmmm (@ McDonald''s) http://t.co/Em76ns2Z'), (4994, 138, 'Johore, Malaysia', 'Stupid movie so sian.'), (4995, 1694, 'Johore, Malaysia', 'I''m at Watson''s (Singapore, Singapore) http://t.co/6ptfhDz7'), (4996, 1108, 'Johore, Malaysia', 'Patience. ;wild'), (4997, 68, 'Riau, Indonesia', 'pakai kipas angiiiiiiiin kakauuu RT @auautiss: Panaaass aa ya tuhaaann [Like it? http://t.co/3t6PAsiM ]'), (4998, 850, 'Johor Bahru, Johore', '@chungxuan ni hao, :)'), (4999, 664, 'Johor Bahru, Johore', '@hamdeemuhdd @DinSharif hamdi kau tinggal 3 minggu je'), (5000, 10, 'Singapore', '@__venice Nice.'), (5001, 1526, 'Malaysia', '@wararat_amp พี่แอมอยู่เปล่าจ๊ะ'), (5002, 1750, 'Johore, Malaysia', 'I''m at Parkway Parade w/ @triciazxc http://t.co/zRHD0JKX'), (5003, 1751, 'Johor Bahru, Johore', 'I''m at Terminal 3 (Singapore, Singapore) w/ 18 others http://t.co/QqP6UkAz'), (5004, 1567, 'Johor Bahru, Johore', 'You have the most beautiful and sweet smile'), (5005, 1752, 'Johore, Malaysia', 'I''m at CDAC http://t.co/FRdO77Dj'), (5006, 1753, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 27 others http://t.co/nwu7rXy0'), (5007, 340, 'Johor Bahru, Johore', 'I want webcam dgn die! Boring uh and RINDU! Tomorrow then webcam with hyme larh.. =DD'), (5008, 435, 'Johor Bahru, Johore', '@dangledaffodilz cookies?!'), (5009, 1558, 'Johor Bahru, Johore', '@genn_ganz @y1hui D: I''m too cool to be lame^^'), (5010, 1717, 'Johore, Malaysia', 'Finished the very hated compre. YAY shall complete amath &amp; physics tmr.'), (5011, 3, 'Johor Bahru, Johore', 'Dad: give me your remaining cup walker\nMe: dw, I want drink\nDad: you still have your nice douhua\nMe: I will watch 注定'), (5012, 1108, 'Johore, Malaysia', '@HongyuRedFish LOL. &gt; &lt; This is... kcool.'), (5013, 1754, 'Johor Bahru, Johore', 'Want to train with buakaw!'), (5014, 1379, 'Johor Bahru, Johore', 'Right back at you.'), (5015, 68, 'Riau, Indonesia', 'malam begini begini aja,ga ada yg spesial'), (5016, 1730, 'Johor Bahru, Johore', '@EmeldaLum it will be hot in the night safari!!! :p don''t disturb disturb an dar.'), (5017, 1755, 'Johore, Malaysia', 'Homed. (@ Blk 10, Jalan Bukit Ho Swee) http://t.co/8IdxvD7b'), (5018, 472, 'Johor Bahru, Johore', 'blom solat lagy'), (5019, 1756, 'Singapore', 'I wanna make some changes in my life. If you don''t hear from me, then you''re probably one of them.'), (5020, 1230, 'Johore, Malaysia', 'happie doen. (@ Hard Rock Cafe Singapore w/ 3 others) [pic]: http://t.co/x8LTn7w9'), (5021, 1496, 'Indonesia', 'syukurlah ''adik gue'' mendapat pasangan yg bisa mengimbanginya.. jjs tadi gak sia2..\n\npoked @Cutebeeb'), (5022, 1757, 'Johor Bahru, Johore', 'I''m at "Ang Keong" Blk 826 Coffeeshop (Singapore) http://t.co/EzPilbFo'), (5023, 1477, 'Johor Bahru, Johore', '@caxrina at 2nd qn alr,'), (5024, 80, 'Johor Bahru, Johore', '@amyline95 amyyyyyy!!!!! td cikgu mastura text aq dia ckp kol 9 kena ade kat library utk kerja pemprosesan buku!!!! DATANG DGN AMELINA'), (5025, 140, 'Plentong, Johor Bahru', '@yenyin33 hahaha yeps. I got no space left in my room to paste the posters /.\\'), (5026, 1758, 'Johor Bahru, Johore', 'I''m at ian''s lair! http://t.co/9tuoXb9u'), (5027, 3, 'Johor Bahru, Johore', '@soramayx 哈哈!'), (5028, 972, 'Johor Bahru, Johore', 'Esther scored just now ??!! #UgandaBeKiddingMe'), (5029, 1759, 'Johor Bahru, Johore', 'smelliess... ahakz!.. #bodyshop #jasmin @ Boy Next Door ... :) http://t.co/Gh8RBkur'), (5030, 1760, 'Riau, Indonesia', 'makasih y @ola_dlmnd @danudanoi @nirvyana @kyukuya kereeen lah!!!'), (5031, 1761, 'Johor Bahru, Johore', 'nakauwi din ng maaga!'), (5032, 1379, 'Johor Bahru, Johore', '#BestThingAboutBeingSingle don''t have to worry about impressing him/her'), (5033, 1094, 'Johor Bahru, Johore', 'Yay! Tmr class outing at Sentosa!'), (5034, 1280, 'Johor Bahru, Johore', 'I''m at Kopitiam (Singapore, Singapore) http://t.co/yj434IiQ'), (5035, 963, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 27 others http://t.co/LbSVvMX9'), (5036, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE wah..bestnyerr..shaz x pegi mne2 pon..shaz just brjln pegi hosptal je..coz nnek shaz msok wad..haha..'), (5037, 1060, 'Plentong, Johor Bahru', 'If you want me, wait till the time comes,\nI’m saving myself for you; love is more than just sex'), (5038, 599, 'Johore, Malaysia', 'Feeling sicccckkk :( Flu is definitely killing me -.-" So i wanna rest and don''t disturb me.'), (5039, 1762, 'Johore, Malaysia', 'Cheers!:) @ Astons Specialties @ Mapletree http://t.co/OrhJa2Xo'), (5040, 1379, 'Johor Bahru, Johore', '@tseyilingxp OMG. m|m HAHA'), (5041, 1539, 'Johore, Malaysia', '@spellxsolar @khaziulliel Haha! Nah, why should I be jealous Spellxsolar? His my friend, he got the looks from me. Hahahaha no lh kidding :)'), (5042, 1194, 'Malaysia', 'บัตรนั้นอย่าหมดก่อนเลยแล้วกัน เผื่อแม่จะให้ไปนคร - -'), (5043, 1191, 'Plentong, Johor Bahru', '@lalingg Ayatt mat wempitsss ehh. Hahaha'), (5044, 130, 'Plentong, Johor Bahru', '#myfavemalayword YUKK! Means Jom!/let''s!/let''s go! :D'), (5045, 1567, 'Johor Bahru, Johore', 'Holiday is starting :)'), (5046, 1239, 'Riau, Indonesia', 'Dawn of the day @ Tanjong Beach Club http://t.co/zdUUvTUK'), (5047, 952, 'Johore, Malaysia', 'Shopping (@ Forever 21 w/ 5 others) http://t.co/YlV97rhg'), (5048, 80, 'Johor Bahru, Johore', 'dinner !!!'), (5049, 1060, 'Plentong, Johor Bahru', 'Well I do want you, and I’ll wait till the time comes\nI’m saving myself for you; I heart you so much'), (5050, 1526, 'Malaysia', '@dekMinhyuk ^_^555+'), (5051, 1732, 'Indonesia', 'follow &amp; kelola @authiies @Ichamuya @echisianturi @aisxiarifi @MutiaSetyawati http://t.co/tHM5114t http://t.co/N7dRtEOy http://t.co/yc5JsETt'), (5052, 1763, 'Johor Bahru, Johore', 'Gosh. Im feeling so awkward standing alone in the west area.'), (5053, 1092, 'Johor Bahru, Johore', 'Omar midgetman!'), (5054, 1764, 'Johore, Malaysia', '@YKChua you going?'), (5055, 1108, 'Johore, Malaysia', '@HongyuRedFish LOL. Like very boylish. &gt; &lt;'), (5056, 1765, 'Plentong, Johor Bahru', '@Riniesofia pelik2 la kau.. Haha'), (5057, 140, 'Plentong, Johor Bahru', '@sarachuizijiun i thought hers is pink? -.-'), (5058, 1711, 'Johor Bahru, Johore', 'Ugbh hf hf. Htggtvgcggchgchg. Yfgffhgf'), (5059, 593, 'Johor Bahru, Johore', '@Jae_Jerome hahaha ya. Now running on negative battery.'), (5060, 1766, 'Johore, Malaysia', 'I''m at ION Orchard w/ @glitt3rcandy http://t.co/xQef6KBd'), (5061, 1767, 'Malaysia', 'ถ้ากลัวเหนื่อยก้อบอกลา ถ้ากลัวเสียเวลาก็ตัดใจ'), (5062, 1768, 'Johore, Malaysia', 'That impressive choreography make me feel lighter... :)'), (5063, 1769, 'Plentong, Johor Bahru', 'sepandai pandai tupai melompat akhirnya jatuh ke tanah jua .'), (5064, 1770, 'Singapore', 'YAY I have an early casting tomorrow in Chinatown! I can explore afterwards!! :)'), (5065, 1771, 'Johore, Malaysia', '@RuiyangStoner someday we race leh haha'), (5066, 1772, 'Kota Tinggi, Johore', '@bjornmanila partner?hmmm what shall i get. Ill order now.. Hmmm still torn, should i get a DSLR, INTERCHANGEABLE CAM or what? :('), (5067, 340, 'Johor Bahru, Johore', 'Can''t wait for tomorrows webcam-ing!'), (5068, 1773, 'Johor Bahru, Johore', '@fayefeii xiexie'), (5069, 1774, 'Malaysia', 'I''m at Yoshinoya Pasar Festival (Jakarta) http://t.co/6Ags2W1J'), (5070, 1775, 'Johore, Malaysia', 'I''m at Shun Li Industrial Complex (Geylang, Singapore) http://t.co/BG8aLrZx'), (5071, 1776, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre (Singapore) w/ 17 others http://t.co/7uieIIxW'), (5072, 1777, 'Johor Bahru, Johore', '@thousandcrosses familiar LOL'), (5073, 1191, 'Plentong, Johor Bahru', '@Zulhelmy_adzli Hai dahh lama lahh bos cuma tak aktive jee :)'), (5074, 1440, 'Johor Bahru, Johore', 'I feel so so sleepy now.... But still, I feel so glad that I finally started working on my SS Essay :-)'), (5075, 1284, 'Plentong, Johor Bahru', '@XuShanQing but need book !! Err can give me the link?? :)'), (5076, 1698, 'Johore, Malaysia', '@vajoojoo hahahah, thanks :) I hope I''m feeling better by tmrw to come :('), (5077, 1778, 'Plentong, Johor Bahru', 'hai , avatar baru nampak hensem ! tq KBbai'), (5078, 1730, 'Johor Bahru, Johore', '@EmeldaLum what is that suppose to mean?! Hahaha.'), (5079, 117, 'Johore, Malaysia', '@paperdrizzle HAHAHHAAH IM SERIOUS 3 *troll face*'), (5080, 267, 'Johore, Malaysia', '@myexpatadvisory shame its been done'), (5081, 1779, 'Johor Bahru, Johore', 'Family falling apart , time to go all out .'), (5082, 1780, 'Johore, Malaysia', 'I''m at Bus Stop 19089 (United World College) (Singapore, Singapore) http://t.co/SF4XLZlf'), (5083, 1781, 'Johor Bahru, Johore', 'I''m at Junction 10 (Singapore) w/ 2 others http://t.co/4xBtUCW5'), (5084, 1778, 'Plentong, Johor Bahru', 'hihihihihi'), (5085, 140, 'Plentong, Johor Bahru', '@sarachuizijiun wtf'), (5086, 664, 'Johor Bahru, Johore', '@hamdeemuhdd @DinSharif KALAU je hahahahaha. Hmmmm ade la hadiah nyeh'), (5087, 1769, 'Plentong, Johor Bahru', '@azieraziezie okay letuwww . hihi XD aah aah nealofaa berlakon tade kaku kan ?'), (5088, 1782, 'Johore, Malaysia', 'I''m at 626 Bedok Reservoir Road (Singapore, Singapore) http://t.co/67zpoCQm'), (5089, 1007, 'Johor Bahru, Johore', 'Waiting for my time, wondering how long that will be.'), (5090, 1278, 'Johore, Malaysia', 'I''m at Fitness Force http://t.co/pT8nGAHk'), (5091, 1783, 'Johore, Malaysia', 'I''m at Fitness First (Singapore, Singapore) http://t.co/s7SXF7XM'), (5092, 1451, 'Johore, Malaysia', '@JoshuaLimmm maybe nt sat uh cos of speech day...friaday will pop by after school'), (5093, 1784, 'Johor Bahru, Johore', 'My twitter super lagg and slow ._.'), (5094, 1785, 'Johore, Malaysia', 'I''m at The Ritz-Carlton, Millenia Singapore (Singapore) http://t.co/bMD2s3mS'), (5095, 68, 'Riau, Indonesia', 'RT @NadellaChristin: #openfollow bantu RT dong tepatin #jfb yaa :) 6'), (5096, 1763, 'Johor Bahru, Johore', 'Why is BF taking so long to reach......'), (5097, 22, 'Johor Bahru, Johore', '@xiaowang123 new one ?'), (5098, 1304, 'Johor Bahru, Johore', 'I''m at Pasir Ris MRT Station (EW1) (Singapore, Singapore) w/ 2 others http://t.co/uESVQ0e4'), (5099, 1786, 'Johore, Malaysia', '@Celinewang_ hows the chalet?!'), (5100, 972, 'Johor Bahru, Johore', '''Dude , boys don''t harass woman'' ''He''s a woman ??!!!'' \n#UgandaBeKiddingMe'), (5101, 1787, 'Johor Bahru, Johore', 'My Favorite Fried Hokkien Prawn Noodle!!! @ Singapore http://t.co/Cp96zDud'), (5102, 1788, 'Johore, Malaysia', '@tzeyi789 @m0velike_jagger (@ River South (Hoe Nam) Prawn Noodles) http://t.co/EcskgQQC'), (5103, 664, 'Johor Bahru, Johore', 'I wanna hug you for the last time'), (5104, 68, 'Riau, Indonesia', 'RT @Belbielowday: Mention'), (5105, 1197, 'Johore, Malaysia', 'Naise red wine. Connoisseur LOL. I''ll grow up to drink nice red wines (:'), (5106, 593, 'Johor Bahru, Johore', '@Jae_Jerome can can run in negative one. Haha'), (5107, 1789, 'Tebrau, Johor Bahru', '@faryanni eh...seram sey!!!'), (5108, 1790, 'Johore, Malaysia', 'shitting (@ Pasir Laba Camp) http://t.co/xSZ4IC1S'), (5109, 1791, 'Johor Bahru, Johore', ''' Okok making sense '' @Merdise_xD @soshi_buns Hahahaha &gt;&lt; .'), (5110, 1778, 'Plentong, Johor Bahru', '@sadiqasyraf ASAL TAK CAPS LOCK DER ? hahha'), (5111, 1784, 'Johor Bahru, Johore', '“@sxeznl: I can die of diabetes thanks to how sweet you are. :)”'), (5112, 62, 'Johor Bahru, Johore', 'Yeah right :/ RT“@tweetlipxz: @ForeverChronic Just kidding la.....”'), (5113, 1094, 'Johor Bahru, Johore', 'Okay..i wanna lip pierce already.. And then maybe tongue piercing? Abd then tattoo. Thank u.'), (5114, 1779, 'Johor Bahru, Johore', 'They say the "i" personality likes to hold grudges in , that''s what I''m doing , that''s what I''m throwing at you now .'), (5115, 1773, 'Johor Bahru, Johore', 'Noob movie, waste of time -.-'), (5116, 1792, 'Johore, Malaysia', 'cousin''s wedding which I never talk to. AWKWARD. (@ Marina Mandrain Hotel) http://t.co/TQw2JOez'), (5117, 971, 'Singapore', '@jjong199 LOL.idk la. ask your DEAR lorh :P'), (5118, 539, 'Johor Bahru, Johore', 'I''m at Old Woodlands Makan Place http://t.co/PutLytxT'), (5119, 1572, 'Johor Bahru, Johore', '@nikiakila pass me his number.'), (5120, 1781, 'Johor Bahru, Johore', 'Dinner (@ NTUC Foodfare) http://t.co/oK10UqBx'), (5121, 1793, 'Johor Bahru, Johore', 'Syiok @ home (@ On My Sofa Baby) http://t.co/59n4KUIy'), (5122, 1794, 'Malaysia', '@PRUAKKY ส่งวันที่สิบห้าล้ะ :)'), (5123, 68, 'Riau, Indonesia', 'RT @nrl_fadhillas: Mencion yg kece 8)'), (5124, 1795, 'Johor Bahru, Johore', 'I''m at Fantasy (Singapore) http://t.co/cUfpbbQ9'), (5125, 1060, 'Plentong, Johor Bahru', 'it''s killin'' me inside!'), (5126, 1701, 'Plentong, Johor Bahru', 'MU games tonight brotha#powerfulyes'), (5127, 593, 'Johor Bahru, Johore', '@Jae_Jerome hahahaha tweet me so high'), (5128, 1769, 'Plentong, Johor Bahru', '@FyyTasha mesti boleh punyaaaaaa :)'), (5129, 1796, 'Johore, Malaysia', 'I''m at Orchard MRT Station (NS22) (Singapore, Singapore) w/ 2 others http://t.co/wLfG4Az6'), (5130, 1797, 'Johore, Malaysia', '@ijafaezah Hahaha honeymoon ah you habis habis! I masa f4 honeymoon keluar sampai tak balik rumah nak jdi ape hahaha'), (5131, 21, 'Johor Bahru, Johore', '@B4DuMCreeKCreeK @muhaimin_teng walls dahi kau ade ala2 tande sujud... Heh.'), (5132, 1562, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 14 others http://t.co/QRTcFaZp'), (5133, 64, 'Johore, Malaysia', 'tomorrow''s training better end early like Wednesday''s  and no circuit plsplspls more sidesteps :]'), (5134, 68, 'Riau, Indonesia', 'kok ga ada kak? HAHA canda saja nii RT @auautiss: Gaak adaa uhuhu"@IlfaAzlyani: pakai kipas angiiiiiiiin kakauuu RT @auautiss: Panaaass aa y'), (5135, 525, 'Johore, Malaysia', 'I should srsly bring more money out next time :P'), (5136, 1798, 'Johor Bahru, Johore', 'I am bored I am bored!!!!!!! Seriously!):'), (5137, 1477, 'Johor Bahru, Johore', '@caxrina lols i stuck at qn 2 alr zz'), (5138, 1799, 'Johore, Malaysia', 'I''m at Boon Tong Kee 文东记 (Singapore, Singapore) http://t.co/4SUxMQnH'), (5139, 1800, 'Johor Bahru, Johore', 'Xylophone @ Rifle Range @ Regent Secondary School http://t.co/PUPqHXaR'), (5140, 1801, 'Johor Bahru, Johore', 'Urgh my dad doesn''t allow me to stay in the car. So now I''m at the airport in FBT''s and sandals. Inappropriate much. http://t.co/n2hNazfe'), (5141, 1554, 'Johore, Malaysia', 'I''m at Guardian Pharmacy (Singapore, Singapore) http://t.co/SPxOBAju'), (5142, 130, 'Plentong, Johor Bahru', '#myfavemalayword LAH! Its means sure sure surely confirm yes definitely absolutely correct!'), (5143, 554, 'Johore, Malaysia', '@Liminny is she alright? It always starts with a fall, then she will learn how to ride a bike .. @Okuno_Mike right?'), (5144, 720, 'Plentong, Johor Bahru', 'wahhhhhhhhhhhhhhhhhhhhhhh . macam tak percaya kak adly retweet twit aku . haha . makasii kakk ;]'), (5145, 829, 'Johore, Malaysia', '@Lu_Jing_Guang you don''t say?!'), (5146, 1791, 'Johor Bahru, Johore', '@MEluvTIFFANY The friend request ^^'), (5147, 1802, 'Johore, Malaysia', 'I''m at The Central w/ @supremesebas @ozkkkkkk http://t.co/wdiJJdNH'), (5148, 1796, 'Johore, Malaysia', 'I''m at TANGS Orchard (Singapore, Singapore) w/ 9 others http://t.co/Hhj4n2Kj'), (5149, 1673, 'Malaysia', 'มาเฝ้าอาม่าที่โรงพยาบาล'), (5150, 8, 'Johor Bahru, Johore', 'Fish head curry ~~~~ (@ S-11 (AMK 530) Food House Pte Ltd) http://t.co/XKl9NmIA'), (5151, 296, 'Johor Bahru, Johore', 'エコノミーの機内食\n\n この後の搭乗でも提供されるのだろうか?既にお腹空いてるし。 http://t.co/2rrS0PWX'), (5152, 1778, 'Plentong, Johor Bahru', '@AdlieMusa aku hensem je ! hihi'), (5153, 1803, 'Malaysia', 'RT @Khunnie0624 I want one!!! Enjoy your meal people~ =] http://t.co/S0lOdopx'), (5154, 1804, 'Plentong, Johor Bahru', 'Brunchner:) (@ Warung Bawah Pokok Flat Larkin) http://t.co/GA9rd96t'), (5155, 63, 'Johore, Malaysia', '@NoninieyyDrew haha siape lagi kalau bukan your mr pilot haha starts at 9'), (5156, 1805, 'Johor Bahru, Johore', '@sheenashiqi 加油姐姐 !:)'), (5157, 1791, 'Johor Bahru, Johore', '@Fion_99 Yeahh okok .'), (5158, 1806, 'Johore, Malaysia', 'Fuck off bitch. Im gonna be a ruthless badass now! You''ll change me if you still want me.'), (5159, 290, 'Johor Bahru, Johore', 'No one will be informed of when.'), (5160, 1807, 'Johore, Malaysia', 'Done closing!'), (5161, 1519, 'Johore, Malaysia', '@exwhyy :p thanks babe.'), (5162, 1808, 'Johore, Malaysia', '成功在最后一秒抢到票,上车咯!^_^在看艺树人的《车站》。 (@ Goodman Arts Centre Black Box) http://t.co/U5RSkf0Y'), (5163, 68, 'Riau, Indonesia', 'RT @sintapalen: jangan marah marah :) gak ada gunanya coba'), (5164, 1770, 'Singapore', 'WHY MUST SO MANY PEOPLE HERE SMELL SO SPICY #baaarfff'), (5165, 1778, 'Plentong, Johor Bahru', '@deylaJett mengada ! makan je ahh ! ahha'), (5166, 60, 'Singapore', '@InsyiraahGemok @iAttachedToKpop @popsywhoopsy wa . so early ah. okok.... HAHA. Can later a little bit?'), (5167, 829, 'Johore, Malaysia', '@sHeRiLyN_TaN @jinkoi_ no jin koi started it. I merely carried on'), (5168, 978, 'Johor Bahru, Johore', '@TheGoogleFact it''s "the the"'), (5169, 1750, 'Johore, Malaysia', 'I''m at Treats Food Court http://t.co/d8ybJxoB'), (5170, 1809, 'Johor Bahru, Johore', 'Dinner (@ Alif Restaurant w/ 2 others) http://t.co/L6dw19S7'), (5171, 1173, 'Plentong, Johor Bahru', '#HappyNationalCondomDay? whathefuck takda trending lain ke? unnecessary ~ takmasuk akal ~ this is PG18 We havent reach it yet -.-'), (5172, 1803, 'Malaysia', 'RT @dlwnsghek 사랑하는 우리 헤어팀과의상팀^^!! 알라뷰 http://t.co/97SiuUFa'), (5173, 593, 'Johor Bahru, Johore', '@Jae_Jerome I waiting for food now cannot sleep mah'), (5174, 1810, 'Johore, Malaysia', 'I''m at Kallang Area (Singapore) http://t.co/hEVdr0nO'), (5175, 1528, 'Singapore', '- called the police because of the vandalism and then had to take my statement. waste of my time.'), (5176, 1194, 'Malaysia', '@Ritz_TS6 รักพี่ริทนะ'), (5177, 453, 'Johor Bahru, Johore', 'I''m at Pet-mart @ Serangoon North Ave 2 http://t.co/Wpj7m3iV'), (5178, 1060, 'Plentong, Johor Bahru', 'Be fair on anything you do. Inside and Outside'), (5179, 1803, 'Malaysia', 'RT @dlwnsghek ありがとうごじゃいます みなさん^^ もともと がんばります! ^^~ つぎの single も たのしみにしてください(^○^) http://t.co/ai6nPs8e'), (5180, 62, 'Johor Bahru, Johore', 'Pasal blok tido.. Nak tido ni .. Bye RT“@tweetlipxz: @ForeverChronic haha why you so emo ni?”'), (5181, 1773, 'Johor Bahru, Johore', 'Holidays ending soon #FML'), (5182, 618, 'Johor Bahru, Johore', '@ahhhmui their chart always not accurate plus m countdown is like counted for votes lol'), (5183, 1811, 'Johor Bahru, Johore', 'I''m at Yen''s Tuition Centre w/ @vanntan http://t.co/J4K7n5O5'), (5184, 972, 'Johor Bahru, Johore', 'Kony-Wan Kenobi ? \n#UgandaBeKiddingMe'), (5185, 293, 'Johor Bahru, Johore', '@sheepass dance dance dance!'), (5186, 1812, 'Johor Bahru, Johore', 'It''s time fr u guz to learn give and take...Aiyo cibeicialak...Until when u wan to hav a win win situation until when???'), (5187, 1366, 'Riau, Indonesia', 'past is experience. present is experiment &amp; future is expectation #motivasi gw'), (5188, 1780, 'Johore, Malaysia', 'I''m at Bus Stop 19059 http://t.co/Gck5gf2F'), (5189, 1108, 'Johore, Malaysia', '@HongyuRedFish Teeheehee. &gt;:D I cannot download. Like got problem like that sial. :('), (5190, 1813, 'Malaysia', 'I''m at dot (ดอท) (Hat Yai, Songkhla) [pic]: http://t.co/pWPbAAA7'), (5191, 971, 'Singapore', '@jjong199 CANNOT !'), (5192, 1681, 'Singapore', '@HeyA13X i split with you lah remember? so its like 9 ++'), (5193, 102, 'Singapore', 'Toniiiiiiggghhhtttt We Are Yooouuunnnggg~'), (5194, 1528, 'Singapore', '- he should''ve just passed me the paper and i fill up. it would''ve been much faster.'), (5195, 1742, 'Johor Bahru, Johore', 'Drink teh-o mmmmmddaaaaap'), (5196, 1814, 'Johore, Malaysia', 'jangan lupa saweran''nya ;-p “@RezkiErlita: Mahadewi - lagu d busway”'), (5197, 411, 'Johor Bahru, Johore', 'I am determeted.'), (5198, 13, 'Singapore', '@wonderxuqin i''m not a non-kpop fan haha i''m a music fan; i generally like SNSD in kpop but rly idc abt the artist; it''s the songs! :P'), (5199, 729, 'Johore, Malaysia', '@davidlee_ggxx same! I go find you'), (5200, 838, 'Singapore', 'yonghwaaaaaaaaaaaaaaaa :D'), (5201, 1773, 'Johor Bahru, Johore', '@fayefeii KIDDING ONI LA LOL'), (5202, 593, 'Johor Bahru, Johore', '@Jae_Jerome hahaha so caps make u high?? Hahaha what abt teentop''sCAP?? On I''m lame'), (5203, 1183, 'Johore, Malaysia', 'I''m at Lavender Food Square (Singapore, Singapore) http://t.co/Y7mQlGxo'), (5204, 138, 'Johore, Malaysia', 'Im getting dizzy TT'), (5205, 1773, 'Johor Bahru, Johore', '@fayefeii UR HUSBAND WAT'), (5206, 838, 'Singapore', 'CN. BLUE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'), (5207, 183, 'Riau, Indonesia', 'udah ahh'), (5208, 618, 'Johor Bahru, Johore', '@PandaTofuLove lol same as my mum lol'), (5209, 186, 'Johore, Malaysia', '@NuffnangSG @cineleisure Nuffnang says by tmr! @CyberHarpieLady @xHopingStars #itsgonnagetsensational'), (5210, 1815, 'Johor Bahru, Johore', '@PARABABA @pinkissmexy Alex song'), (5211, 708, 'Johor Bahru, Johore', 'I hate you .. I fucking hate you ..'), (5212, 422, 'Johor Bahru, Johore', 'Doa ibu ialah ibarat setajam pisau. Ia akan dimakbulkan straight away. :)'), (5213, 21, 'Johor Bahru, Johore', '"@ahlain22 منْ اسّتغفر للمُؤمنِينْ و المُؤمنْات گتبّ لہُ بگل مُؤمنْ و مُؤمنْہ حَسنْہ اللهم آغفر للمؤمين وآلمؤمنآت آلآحيآء منهم وآلاآموآت"'), (5214, 1686, 'Johore, Malaysia', 'if i have the money. haisss. http://t.co/3ZlLi9xU'), (5215, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing shhh expose wo zuo mo :('), (5216, 64, 'Johore, Malaysia', '@LoyalSin @__duckey @jasonyong26_ who''s going earlier? :o'), (5217, 1805, 'Johor Bahru, Johore', '@sylviachy cheer up :)'), (5218, 1816, 'Johore, Malaysia', 'All PP with mom using Starbucks wifi eating at new york new York ;) #badass'), (5219, 139, 'Singapore', '@Zophia98 Hmm In wwss or in your sch? :/'), (5220, 1060, 'Plentong, Johor Bahru', 'Appreciate the green! Go Green everybody'), (5221, 419, 'Johor Bahru, Johore', 'Dinner! ^^ (@ Al-Azhar @ Tampines w/ 2 others) http://t.co/6nQPugWn'), (5222, 425, 'Johor Bahru, Johore', 'I''m at PastaMania (Singapore) w/ 3 others http://t.co/DkyT7COP'), (5223, 1528, 'Singapore', '- and the police told me that NO ONE in the entire block called but me. COWARDSSSS'), (5224, 1791, 'Johor Bahru, Johore', 'Yay . So fresh fresh after my nappy (:'), (5225, 1817, 'Johore, Malaysia', 'With mike, jun ming, pei ying jie, ah bao, shirley and pamela:) (@ Tian Tian Steamboat BBQ) http://t.co/9aqp7Ef0'), (5226, 3, 'Johor Bahru, Johore', '@soramayx 最好的朋友啊,嗯,或者方少啊?Share the joy:)'), (5227, 1818, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 27 others http://t.co/hrtUMXng'), (5228, 1819, 'Johore, Malaysia', 'I''m at Mustafa Centre (Singapore) w/ 6 others http://t.co/uGRmLJgY'), (5229, 1725, 'Johor Bahru, Johore', '@Weitinqsim up to you,'), (5230, 1806, 'Johore, Malaysia', 'Or just let me be....'), (5231, 1528, 'Singapore', '@chanyongxiang: band auditions siah! jia you! =]'), (5232, 1284, 'Plentong, Johor Bahru', '@XuShanQing u going at 9 right?'), (5233, 1820, 'Johore, Malaysia', 'Doesn''t my Bieber look good? LOL @NaniArina http://t.co/Pm2kChVy'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (5234, 435, 'Johor Bahru, Johore', '@fallfellfallen ehyyy~~~~~ don''t probably laaaa~~~ :('), (5235, 1539, 'Johore, Malaysia', '@spellxsolar Haha! I said I was kidding kan spellxsolar, haish. Haha! :)'), (5236, 62, 'Johor Bahru, Johore', 'Expressing a feeling can be quite a complicated thing to do or say'), (5237, 1092, 'Johor Bahru, Johore', 'Mustaqim monster dick'), (5238, 1701, 'Plentong, Johor Bahru', '@MohdHakem weh malam bawak cam boleh :)'), (5239, 1822, 'Johor Bahru, Johore', 'I''m at Borshch Steakhouse (Singapore) http://t.co/rXZa1f1X'), (5240, 68, 'Riau, Indonesia', 'haii bulekuuuuuuu {} RT @Belbielowday: @IlfaAzlyani cantikku ({})'), (5241, 1092, 'Johor Bahru, Johore', 'Omar small dick boy'), (5242, 62, 'Johor Bahru, Johore', 'Its not easy for me to love a person that instant, it takes time'), (5243, 1505, 'Johore, Malaysia', 'yes! Im a #skywalker now! @Streamzoo #awesome'), (5244, 593, 'Johor Bahru, Johore', '@Jae_Jerome I like ljoe more hehe'), (5245, 1803, 'Malaysia', 'RT @taeccool 여러분~ 해피메리화이트데이~~~ 사랑하는 사람(있다면~)과 함께 행복하게보내세요~ 계절은 지났지만 사진은 선물이에용~ㅋㅋㅋ http://t.co/Yc6HL8fc'), (5246, 62, 'Johor Bahru, Johore', 'night :) RT“@tweetlipxz: @ForeverChronic Oh okay then goodnight :&gt;”'), (5247, 1614, 'Johore, Malaysia', 'I''m at OG Orchard Point (Singapore, Singapore) http://t.co/Ts9qY1lY'), (5248, 1823, 'Johore, Malaysia', 'What''s this?? @gerraldiine http://t.co/Vt4dckO9'), (5249, 1824, 'Plentong, Johor Bahru', 'I''m at Ammar''s Freakin'' Residence http://t.co/1bgtd7Pt'), (5250, 475, 'Johore, Malaysia', 'Omg!! We are bored..'), (5251, 1825, 'Johore, Malaysia', '@Hayleystitch jiayou !'), (5252, 585, 'Johore, Malaysia', 'my room internet connection lousy as hell'), (5253, 1539, 'Johore, Malaysia', 'Not at all! Hehehe :) RT @spellxsolar: @SuperKidJunior @KhaziUlliel Haikal I know you jealous!'), (5254, 1826, 'Plentong, Johor Bahru', '@muhammadhazren ofkos la..'), (5255, 3, 'Johor Bahru, Johore', '@ValerieLuvszxc @zhenjingkimchi_ orhhk'), (5256, 1366, 'Riau, Indonesia', 'Be wish aja lah # eaaaak'), (5257, 1827, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 28 others http://t.co/rwhmKSFA'), (5258, 1673, 'Malaysia', '@_GDRAGONBOTTH เช้อะๆ จะเอาๆ :3'), (5259, 400, 'Johor Bahru, Johore', 'susah la sume bende nk kecik ati. bkannye aku tak PENAH dtg. bkannye tak PENAH ade time susah. juz plis jgn emo evrytime sumting hppned ar'), (5260, 1791, 'Johor Bahru, Johore', 'SO WTF IS YOUR PROBLEM . MUST TALK UNTIL LIKE THAT ISIT .'), (5261, 1780, 'Johore, Malaysia', 'I''m at SPGG (Singapore, Singapore) http://t.co/VOllswq3'), (5262, 720, 'Plentong, Johor Bahru', '#KalauCrushKita tegur kita kat im , mesti suka gila kan . sampai dok baca ulang2 je chat yang dia hantar tu.'), (5263, 1828, 'Johor Bahru, Johore', 'I''m at Bus Stop 98011 @ Pasir Ris (Singapore) http://t.co/h89XVUdh'), (5264, 64, 'Johore, Malaysia', '“@eternalbimbo_: AHAHAHAHA PREGNANT WOMAN FALLING FOWN THE STAIRSSS” sadist'), (5265, 1829, 'Johor Bahru, Johore', 'I''m at Bishan Community Club (Singapore) http://t.co/TeKqW7By'), (5266, 507, 'Johor Bahru, Johore', 'I''m at Botak''s Favourites (Singapore) http://t.co/Va2Qbm0E'), (5267, 61, 'Johor Bahru, Johore', '@PeiYi2706 let you have a bit of private conversation with yourself'), (5268, 228, 'Johor Bahru, Johore', '@amirarx Hahah, What? Come la punch, my face positoning for you to punch haha'), (5269, 236, 'Johor Bahru, Johore', '@PinkLeprechauns oh goshhh. Daniel too? :O'), (5270, 81, 'Johore, Malaysia', '@popsywhoopsy NOOO! You should see this one Gennie! This is awesome!!! http://t.co/xlmS5qcp'), (5271, 1830, 'Plentong, Johor Bahru', 'Assalamualaikum :'') #SELAMATmalam'), (5272, 1060, 'Plentong, Johor Bahru', 'The art of Depression.'), (5273, 1526, 'Malaysia', '@NeayWR_Boice คงจะเป็นประติมากรรมที่สวยที่สุดด้วยละมั้ง55555+(ประชด)'), (5274, 1461, 'Johore, Malaysia', 'I''m at TAB (Singapore) w/ 3 others [pic]: http://t.co/L5ITbuqF'), (5275, 829, 'Johore, Malaysia', '@Lu_Jing_Guang as in it''s obvious that the person dao you right? So you don''t say'), (5276, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove LOL! Who!?'), (5277, 1831, 'Johore, Malaysia', '@JonyClyde @tweettiergrace'), (5278, 1832, 'Johor Bahru, Johore', '@SitiHafidzah hmm, i guess so. Not sure about that. Hehe.'), (5279, 1833, 'Johore, Malaysia', '望向每双率真眼睛,似看到最动人风景,没有躁音只得笑声,散播到最远的山岭;愿这世界如童话 抱着想像实现它\n就凭摘星的手臂 为地球每夜放烟花\n就算世界无童话 放下包袱完成它\n就来学攀山者有心不会怕~就算世界无童话'), (5280, 1834, 'Johor Bahru, Johore', 'I''m at Taste of Thailand (Singapore) http://t.co/n0DyEMGZ'), (5281, 93, 'Johore, Malaysia', 'Ini Ayam aku'), (5282, 1810, 'Johore, Malaysia', 'I''m at KPE http://t.co/4eAB0uqL'), (5283, 296, 'Johor Bahru, Johore', '訪問ランクNo.1の団体を懸念していたけど、今のところ見あたらず。殆どが少人数'), (5284, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing qu zuo ni gongke la !'), (5285, 1835, 'Johor Bahru, Johore', 'How i wish i''m the one leaving.'), (5286, 1526, 'Malaysia', '@dekMinhyuk okค่ะ'), (5287, 544, 'Johore, Malaysia', 'LaughMyAssOut seriously. Saying about our past. Damn funny can.'), (5288, 1836, 'Malaysia', 'Hamberger (@ Mukim setoi) [pic]: http://t.co/CPEzYrWa'), (5289, 708, 'Johor Bahru, Johore', '@blurblurkat ... ._." you so happy..'), (5290, 1837, 'Singapore', '@MyungieYeollie Done ^^'), (5291, 1366, 'Riau, Indonesia', 'Be wise aja.lh #eaa x'), (5292, 1762, 'Johore, Malaysia', 'Prime ribeye,tasty rice n pasta salad. @ Astons Specialties @ Mapletree http://t.co/UuKGAuSZ'), (5293, 1838, 'Johore, Malaysia', 'I''m at H&amp;M (Singapore) w/ 7 others http://t.co/v16LS3HM'), (5294, 400, 'Johor Bahru, Johore', 'up to u laa. frends are always forever. just it.'), (5295, 1708, 'Johore, Malaysia', 'I''m at Tong Chiang Claypot Restaurant (Singapore, Singapore) http://t.co/DpzVvS2h'), (5296, 1839, 'Riau, Indonesia', 'demais!!!! (@ Universal Studios Singapore w/ 5 others) http://t.co/mzbTavP8'), (5297, 852, 'Johor Bahru, Johore', 'Tomorrow cheerleading at 10! Gonna have breakfast with parents!! &lt;3'), (5298, 1840, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang MRT/LRT Station (NS4/BP1) (Singapore, Singapore) w/ 4 others http://t.co/ksRyHTME'), (5299, 618, 'Johor Bahru, Johore', '@PandaTofuLove lol I know right but my mum got own account so even worst lol wanna block also cannot'), (5300, 1841, 'Kota Tinggi, Johore', '@jmerryldc di nman si mrs quek pmunta. yung mataas lang kay patrick eh. keri lang!'), (5301, 1767, 'Malaysia', 'สิ่งที่เหนื่อยที่สุด คือ การที่ทำอะไรอย่างเต็มที่ แล้วมันไม่มีความหมายเลย'), (5302, 1686, 'Johore, Malaysia', '@shazwanibms go rest lah okay? eat panadol or something. :)'), (5303, 241, 'Johor Bahru, Johore', '@mr_niceguy95 @imjeffzxc nth to do here jet pack!'), (5304, 1842, 'Johore, Malaysia', '@Pinkymei @adelboon go for it ladies!!! It''s free! Lol. But Sheree u coming to join us back or Wat?'), (5305, 1841, 'Kota Tinggi, Johore', '@detective_KENan ay sayang ku, hahahaha'), (5306, 1843, 'Singapore', '@Soonjx @sherrendezvous trololol girls trip lah'), (5307, 1844, 'Johore, Malaysia', '@JanwinDaydream @_JenniferHolics @blurlikesotong @juzsomeguy_ LOL HAHAHA ENCHENG GOT TOUCH YOU NOT?'), (5308, 186, 'Johore, Malaysia', 'Repercussions.'), (5309, 1819, 'Johore, Malaysia', 'I''m at Anjappar Authentic Chettinaad Restaurant http://t.co/Ag07YsI7'), (5310, 1773, 'Johor Bahru, Johore', 'So awkward just now -.-'), (5311, 1845, 'Johore, Malaysia', 'I''m at Amber road http://t.co/KL3xuSq0'), (5312, 708, 'Johor Bahru, Johore', 'Certainly wish to get drunk now'), (5313, 937, 'Johore, Malaysia', 'I''m at National Library Building (Singapore, Singapore) w/ 5 others http://t.co/QwtpalRm'), (5314, 487, 'Johore, Malaysia', 'LOL RT @IaMHONGSAN: why do girls ALWAYS smell good?!'), (5315, 413, 'Johore, Malaysia', 'Smoke machine now'), (5316, 292, 'Johor Bahru, Johore', 'And the lights suddenly went out. http://t.co/xBhyVgtJ'), (5317, 1846, 'Johore, Malaysia', 'palo palo @ Aston Mansion Tennis court http://t.co/5fyEyINn'), (5318, 1634, 'Johor Bahru, Johore', 'I''m at (@ Sun Plaza) http://t.co/mzm8OJFN'), (5319, 1023, 'Johor Bahru, Johore', '@darrylpingg me also cui lol'), (5320, 3, 'Johor Bahru, Johore', '@shermainelun So long no see you Liao:('), (5321, 64, 'Johore, Malaysia', '@JasonYong26_ @loyalsin @__duckey ohh okay. I''ll take my time to go there then haha'), (5322, 716, 'Johor Bahru, Johore', 'HUNGRYY. BUT LAAZY. /:'), (5323, 301, 'Johore, Malaysia', 'I''m at marina baysands waterfront http://t.co/cGzZL92K'), (5324, 137, 'Johor Bahru, Johore', 'The day you lose those rings is the day I finally truly have you. ❤'), (5325, 1847, 'Plentong, Johor Bahru', '@KhairilAnwarr campak gaung laa~ *tukar la battery original~'), (5326, 884, 'Johor Bahru, Johore', 'I''m at Block 423 Canberra Road (Sembawang, Singapore) http://t.co/a51JKuHR'), (5327, 1848, 'Johor Bahru, Johore', '吹冷风 (@ Lot One Shoppers'' Mall w/ @nyanalicenyan) http://t.co/AZx1Ja1Q'), (5328, 1077, 'Johore, Malaysia', 'Peking duck here I come!!! (@ Chuan Garden Restaurant) http://t.co/jgHeibhS'), (5329, 1830, 'Plentong, Johor Bahru', 'beronak berliku jalan ku lalui , selagi berupaya ku teruskan ~'), (5330, 1849, 'Johor Bahru, Johore', 'On bus :)'), (5331, 1850, 'Johore, Malaysia', 'I''m at Ikoma Language School (Singapore, Singapore) w/ 2 others http://t.co/DjOTyWBH'), (5332, 1851, 'Johore, Malaysia', 'Tuition (@ I12 Katong w/ 6 others) http://t.co/RODgssGS'), (5333, 1847, 'Plentong, Johor Bahru', '@intanska haha dah agak~~'), (5334, 1852, 'Malaysia', 'ทีวี @ บ้านฉัน http://t.co/mGzCbXFt'), (5335, 106, 'Johor Bahru, Johore', '@OHitsDaCrazyCat ok fellow crazycat !'), (5336, 1854, 'Johor Bahru, Johore', 'I''m at Woodlands Checkpoint (Causeway) (Singapore, Singapore) w/ 5 others http://t.co/DmLQFulU'), (5337, 1855, 'Johore, Malaysia', 'Happy birthday yadana! :D (@ Timbré w/ 2 others) http://t.co/Iq7gW4Jf'), (5338, 487, 'Johore, Malaysia', '@euxuanlin sad ah sad so much hmwk'), (5339, 64, 'Johore, Malaysia', '@eternalbimbo_ uhh ok. did the baby die?'), (5340, 68, 'Riau, Indonesia', 'haha adek RT @vfradenarieff: @IlfaAzlyani Meeentiion'), (5341, 1856, 'Johore, Malaysia', '@beastdwlove_ hi, i havent get any email from your aunt... :/'), (5342, 1857, 'Johore, Malaysia', 'Dinner at Crystal jade ♡ (@ Takashimaya) http://t.co/PQQThrv3'), (5343, 1749, 'Johor Bahru, Johore', 'Mmmmdap (@ Alif Restaurant w/ @nizambeyond) http://t.co/4rwRGA6s'), (5344, 1830, 'Plentong, Johor Bahru', 'sememangnya INDAH bila saat ditinggalkan !'), (5345, 22, 'Johor Bahru, Johore', '@xiaowang123 OHMYGOD I want )''d'), (5346, 1519, 'Johore, Malaysia', '@exwhyy eh the beauty tea hor can be found in hk airport! My aunt bought back! Not sure spore airport have anot.'), (5347, 1858, 'Johor Bahru, Johore', 'I''m at Nan Seng Clinic Pte Ltd http://t.co/l1DpCS58'), (5348, 13, 'Singapore', '@batmanlovesmanu LOL YOU ARE ON TWITTER this is damn epic!'), (5349, 1859, 'Johore, Malaysia', 'I''m at Boon Keng MRT Station (NE9) (Singapore, Singapore) http://t.co/dhO9eT6k'), (5350, 922, 'Johore, Malaysia', 'I''m at H&amp;M (Singapore) w/ 8 others http://t.co/yMLrEjd8'), (5351, 1860, 'Johore, Malaysia', 'Food food food!! @ Newton Circus Food Centre http://t.co/GhQ3U2AQ'), (5352, 142, 'Johore, Malaysia', 'I miss my boyfriend @sleepyysam veryveryvery much. =''('), (5353, 708, 'Johor Bahru, Johore', 'Shall just play alone ... Maybe gonna LoL ..'), (5354, 1861, 'Johor Bahru, Johore', 'need catch up on my sleep only 12hrs more~~~'), (5355, 364, 'Johor Bahru, Johore', 'I''m at Club July @ Stagmont http://t.co/iNjLOuaE'), (5356, 426, 'Johor Bahru, Johore', 'Hmm.. So many ppl asking me out during weekends.. Even nxt sat gt ppl booked me alr...'), (5357, 1862, 'Johor Bahru, Johore', 'Watching F.R.I.E.N.D.S... Such an emotional episode. Ross and Rachel fought and he knelt down and begged for her forgiveness. Haizz.. So sad'), (5358, 1791, 'Johor Bahru, Johore', 'MUST YOU SPEAK TILL SO SACARSTIC URGH .'), (5359, 1214, 'Kota Tinggi, Johore', 'My very own cup corn is Awesome!! :)'), (5360, 1863, 'Johore, Malaysia', 'Eating Pepperoni Thin Pizza for dinner. Very light. Will be hungry again in about 5 minutes. #PerangaiBudakGemuk'), (5361, 1847, 'Plentong, Johor Bahru', '@ShafinazIzhar cool~'), (5362, 585, 'Johore, Malaysia', 'sudden craving for milo. eh milo drop from the sky eh can bo?'), (5363, 1864, 'Johore, Malaysia', 'Me too :[ "@Sherilynnnnn: Bruises on my knees and thigh. Grr."'), (5364, 1865, 'Indonesia', '@ichelNRG okey komandan (y)'), (5365, 64, 'Johore, Malaysia', '@eternalbimbo_ EH reply your message leh xd'), (5366, 514, 'Johor Bahru, Johore', 'Finally home, overnight again. Sleepover at nenek house. (@ Blk 129 Rivervale Street) http://t.co/IFdQ89Kt'), (5367, 1866, 'Johore, Malaysia', '@WhyteConfession lol'), (5368, 1559, 'Johor Bahru, Johore', 'Why mummy no allow me stay '), (5369, 140, 'Plentong, Johor Bahru', 'Super junior was on 8tv just now! I saw eunhyuk omg T.T i miss like monkey like whatttt'), (5370, 1867, 'Malaysia', 'tusyen!! (@ Math''s Clinic) http://t.co/ErqgO3m8'), (5371, 1396, 'Plentong, Johor Bahru', '@AfeezVanilla haha..ap la..kt ats moto pon bosan..hehe..'), (5372, 847, 'Johore, Malaysia', 'I''m at VivoCity w/ @claracyz http://t.co/y78CrqrF'), (5373, 147, 'Johore, Malaysia', 'Downloaded a few videos..'), (5374, 1791, 'Johor Bahru, Johore', 'WTF NOW YOU JUST MAKE THINGS AWKWARD FOR EVERYONE -.- .'), (5375, 663, 'Plentong, Johor Bahru', 'sakit nya mulut luka...nak makan pedas pun terasa sakit..sumpah nak ngis je rasa nya..#sakitsangat'), (5376, 1539, 'Johore, Malaysia', '@flyedaus Are you in town bro? I''m at town. Haha! Finish work already or not?'), (5377, 1868, 'Johore, Malaysia', '@knottyZac the malay boys in my class are quite hunky. A firefighter sits besides me. :)'), (5378, 1066, 'Johore, Malaysia', 'I wish that I have a talent that I can showcase to others and I can be proud of it.'), (5379, 784, 'Johor Bahru, Johore', 'I''m at home sweet home! &lt;3 (Tampines, Singapore) http://t.co/QBjae29H'), (5380, 138, 'Johore, Malaysia', 'The girl is so damn dumb omg. #2Lclassouting'), (5381, 140, 'Plentong, Johor Bahru', '@yenyin33 hahaha you can do that too. Mine got shinee also ma. Haha'), (5382, 1869, 'Johore, Malaysia', 'I''m at Far East Plaza (Singapore) w/ 15 others http://t.co/m71Rth49'), (5383, 1705, 'Plentong, Johor Bahru', 'Slow moving traffic at Tebrau H''way heading JB right after Kg Ubi junction. Should be right till Tmn Sentosa if u''re lucky. #jbtu'), (5384, 1435, 'Johor Bahru, Johore', 'Can''t take the facts I''m leaving him tomorrow . ):'), (5385, 1870, 'Johor Bahru, Johore', 'Here got cage like area (check my location). http://t.co/EmcOEeOp'), (5386, 64, 'Johore, Malaysia', '@JasonYong26_ dunno. depends on what time Marie wants :)'), (5387, 147, 'Johore, Malaysia', 'tommorow iqbal will see me see video 24/7'), (5388, 1803, 'Malaysia', '@icemilkkk *HBD จร้าาาาาาาาาาาาา ^^'), (5389, 76, 'Johor Bahru, Johore', 'Will wake up at 9pm #offline'), (5390, 1865, 'Indonesia', '@renatafrisca gak didoleki se , tak bujuki ae :p\ngak mirip taecyeon ndek villa skrg ..'), (5391, 1871, 'Johor Bahru, Johore', 'Pukul 5.30pm keluar dari zouk now only sampai woodlands. Baik pa!'), (5392, 1762, 'Johore, Malaysia', 'Dinner w/ friends.. Prime ribeye, tasty rice n mashed potato.:) @ Astons Specialties @ Mapletree http://t.co/RfYKQ69i'), (5393, 720, 'Plentong, Johor Bahru', '@NazimOthman ehh bolehh jeee . sentiasa free . hehe . ok bang !'), (5394, 1847, 'Plentong, Johor Bahru', '@ShafinazIzhar did ur tuition bring the female condom??'), (5395, 1872, 'Johore, Malaysia', 'I''m at Durian Stall @ Bugis Street http://t.co/dLn7kbMA'), (5396, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa ur welcome..'), (5397, 1856, 'Singapore', '@beastdwlove_ i checked but theres none.. :/'), (5398, 1874, 'Johor Bahru, Johore', 'I''m at Yishun Bus Interchange (Singapore) w/ 5 others http://t.co/hwyCdRlB'), (5399, 64, 'Johore, Malaysia', '@kityinggg_ @yongqichongy inner thighs and rift arm :((('), (5400, 1875, 'Johor Bahru, Johore', '@derppp_ Didn''t play much today :S Already got 4 badges on crystal!'), (5401, 1876, 'Johore, Malaysia', '@awesomelyJW we should off our girl magnet'), (5402, 753, 'Johor Bahru, Johore', 'Night hike shiok ttm'), (5403, 1877, 'Johore, Malaysia', 'RT @ChineseLQuotes: 爱情这种东西,便宜起来很便宜,贵起来是很贵的。有时候两个人分着吃一碗拉面都可以感受到爱情,有时候你拿着命去换,拿全世界去换,都换不到。'), (5404, 1634, 'Johor Bahru, Johore', 'I''m at (@ McDonald''s) http://t.co/zKZrRuul'), (5405, 1847, 'Plentong, Johor Bahru', 'okay aq pelik~ dahhh aq nak keluar bye!'), (5406, 1878, 'Malaysia', '@note_kittisuk หวัดดีจ้า เย็นแล้วทานข้าวด้วยน่ะจ้ะ : )'), (5407, 1879, 'Johore, Malaysia', 'I''m at Javier''s Rotisserie &amp; Salad Bar (Singapore, Singapore) w/ 2 others http://t.co/CrpyAwpY'), (5408, 890, 'Malaysia', '@Nnamfhhh 55555555555. ไม่ใช่อยากเห็นที == โดนบังคับไป เพราะไม่ให้ซอยผมก่อน'), (5409, 1880, 'Plentong, Johor Bahru', 'Eunning nama bru kau RT @mgmcmshrm: *Running nose la Eunning apa sia'), (5410, 993, 'Johore, Malaysia', 'I''m at Chirag''s Crib  http://t.co/FHDr3YtU'), (5411, 1881, 'Pulai, Johor Bahru', '@zafinahz nampak aku meroyan bt x tau je ekkk... Hahahhaaa nie le tempat merentan aku'), (5412, 634, 'Johor Bahru, Johore', 'I am damn tired and yet My sister wake me up. Shag Max.'), (5413, 1805, 'Johor Bahru, Johore', 'I slept for 3hr :) but i still feel tried :( later going to sleep again :) zzzzz.....'), (5414, 1882, 'Johore, Malaysia', '@Joweyyyyy oh she can''t le. Nothing nothing..'), (5415, 1847, 'Plentong, Johor Bahru', '@fyeahitsmeisan lol'), (5416, 1883, 'Johore, Malaysia', 'I do everything with a reason;)'), (5417, 1875, 'Johor Bahru, Johore', '@belindadrs Iya. Kayaknya sih masih hidup.'), (5418, 1884, 'Johor Bahru, Johore', 'I''m at Blk 248 Pasir Ris St 21 (Singapore) http://t.co/N1wwJhiI'), (5419, 1705, 'Plentong, Johor Bahru', 'Normally this kind of traffic should be from JB town. Hurmmm !! #jbtu'), (5420, 844, 'Johor Bahru, Johore', 'I''m at Blk 217@Serangoon Ave 4 http://t.co/oGfbj6kF'), (5421, 713, 'Johore, Malaysia', 'I''m at Holland V Hawker Centre (Singapore) http://t.co/3VmTQQvH'), (5422, 1885, 'Johor Bahru, Johore', 'I''m at Icez Pool @ Kovan http://t.co/tZ8zZDK9'), (5423, 1571, 'Johor Bahru, Johore', '@BoringgPig Saturday free ?'), (5424, 1886, 'Johore, Malaysia', 'Finally... (@ Botak Jones w/ @yanjiaisawesome) http://t.co/eUm4q5Cw'), (5425, 1812, 'Johor Bahru, Johore', 'Tmr watch movie wooooooohooooooo w my friends....'), (5426, 1240, 'Johore, Malaysia', 'Finally realized it was Ken who hacked into my twitter weeks ago. Hahahha bitch.'), (5427, 829, 'Johor Bahru, Johore', '@Lu_Jing_Guang huh? Dont get it. Nvm'), (5428, 63, 'Johore, Malaysia', '@NoninieyyDrew ok ok'), (5429, 1060, 'Plentong, Johor Bahru', 'Some said "smoke kills" but the truth is "smoke is a sign of live appreciation" so happy smoking guys'), (5430, 1871, 'Johor Bahru, Johore', 'Penatnya kaki ini :( b, urutkan kaki i @AliffTheWise'), (5431, 68, 'Riau, Indonesia', 'lagi liat wtw dia tuu huhu kamu bulekuu? RT @Belbielowday: Lagi apa cantik? RT @IlfaAzlyani haii bulek'), (5432, 1870, 'Johor Bahru, Johore', '4 courts. Looks damn new.'), (5433, 596, 'Johor Bahru, Johore', '@MeDenise ☺'), (5434, 1656, 'Kota Tinggi, Johore', 'Kid, I''m nt yr age! Stop looking at me like that!'), (5435, 1887, 'Malaysia', 'Hatyai''s today http://t.co/0OSFzs7P'), (5436, 1803, 'Malaysia', '@janenniz @tarchanistar @parn_999 @icemilkkk คิดถึงจังเลยยยยยยยยย &gt;&lt;//'), (5437, 1888, 'Johor Bahru, Johore', 'With @Angelynn_ @Rhino_Q @Im_Marcuz @Simweikiat (@ Bukit Panjang Plaza w/ 9 others) http://t.co/2PRHsu3R'), (5438, 720, 'Plentong, Johor Bahru', '@ChichiPuteri hehee betull tuu ! hehe . eh kak , ada kak izara jgk kan ?'), (5439, 1007, 'Johor Bahru, Johore', '@gohwanyuelton Elton!!!!'), (5440, 400, 'Johor Bahru, Johore', '@AHanesss err. mane de. haha'), (5441, 1889, 'Johore, Malaysia', '@SyairahShwln @MEOWVIN8 LOL!'), (5442, 1435, 'Johor Bahru, Johore', 'School is starting . Lesser time with him....'), (5443, 68, 'Riau, Indonesia', 'RT @aufafebrisa: New ava'), (5444, 1066, 'Johore, Malaysia', 'It seems that my voice doesn''t reach to others especially when I''m asking questions.'), (5445, 1890, 'Johore, Malaysia', 'Arts camp finale performance by the Arts &amp; Cultural Clubs!! :D (@ Indoor Sports Hall) http://t.co/yH5pG4ZB'), (5446, 64, 'Johore, Malaysia', '@kityinggg_ @yongqichongy oops *right xD'), (5447, 365, 'Johor Bahru, Johore', 'Havent even start packing.'), (5448, 420, 'Johor Bahru, Johore', 'I merajuk... @titbiz @pickyin @taeyong'), (5449, 1891, 'Johore, Malaysia', 'I''m at PSB Academy (Henderson Campus) (Singapore) http://t.co/iytAoSj2'), (5450, 1140, 'Johor Bahru, Johore', 'You''ve changed a lot and not in a good way. ~'), (5451, 68, 'Riau, Indonesia', '@vfradenarieff gak ada dek hehe'), (5452, 1519, 'Johore, Malaysia', 'MBS skating ring! http://t.co/nq5K7FT4'), (5453, 1411, 'Johore, Malaysia', '@ZelleZiao Wtf? Hahah ! i told him u interested in him , tmr show u .'), (5454, 1805, 'Johor Bahru, Johore', '我很闷 :( going to listen music !:)'), (5455, 1830, 'Plentong, Johor Bahru', 'Maaf aku curi-2 lihat wajah kau ! :/'), (5456, 972, 'Johor Bahru, Johore', '5 injuries ?! \n#UgandaBeKiddingMe'), (5457, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar emmm cpatnya kau nak balik dah bob :-( tkdpt jumpa kau sehhhh cuti kalini!!! hmmmm'), (5458, 400, 'Johor Bahru, Johore', '@AHanesss wey kau takde lesen moto ke ? tak reti merempit lah nih ? meh nek blakang aku. haha'), (5459, 987, 'Johor Bahru, Johore', 'I''m at 29 thomson green http://t.co/lAJIOc8m'), (5460, 141, 'Johor Bahru, Johore', '@tinzliang not me... No no no no way!!'), (5461, 64, 'Johore, Malaysia', '@eternalbimbo_ WTF? haha are you sure she''s pregnant or is she just fat'), (5462, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove lebron James. Almost a triple double every night!'), (5463, 1255, 'Singapore', '@JINYOUNGSWIFEY really really ? :D'), (5464, 267, 'Johore, Malaysia', 'Nigella Lawson, so irritating, btw, it''s traditional to have cucumber in gin&amp;tonic, not lemon'), (5465, 720, 'Plentong, Johor Bahru', '@iHeran samasama dik ;] . haha'), (5466, 99, 'Johor Bahru, Johore', 'Macam s...'), (5467, 1892, 'Johor Bahru, Johore', 'GAH. NO IDEA WHAT TE HELL MY MATH HOMEWORK IS..HOW DO I DO IT?!-..-'), (5468, 1571, 'Johor Bahru, Johore', '@BoringgPig Go Same place again and koi :)'), (5469, 1780, 'Johore, Malaysia', 'The Restaurant. (@ The Restaurant @ Singapore Polytechnic Graduates'' Guild) http://t.co/RBObrWIF'), (5470, 1255, 'Singapore', '@BRIANA_iloveyou in love issit? post so much emo stuff always'), (5471, 1877, 'Johore, Malaysia', 'RT @funnyorfact: Nobody''s Perfect, I''m nobody, so I''m perfect.'), (5472, 1873, 'Kota Tinggi, Johore', 'Fck!!'), (5473, 1893, 'Johore, Malaysia', 'Over @ Ku Dé Ta :) http://t.co/MevJIDUz'), (5474, 1894, 'Johore, Malaysia', 'I''m at Wu Yue Dance Studio http://t.co/hAkBXVh4'), (5475, 1779, 'Johor Bahru, Johore', 'From today onwards , everything shall not be hold in .'), (5476, 1895, 'Riau, Indonesia', 'It''s Voyage de la Vie! @mrfriendly135'), (5477, 68, 'Riau, Indonesia', 'pikir posotif aja,'), (5478, 1871, 'Johor Bahru, Johore', 'My hair is now like a flat chest. Flat flat flat.'), (5479, 1896, 'Johore, Malaysia', 'Less than 24 hrs away from our iPad Two-es becoming second grade products #sadbuttrue'), (5480, 1889, 'Johore, Malaysia', '@philbert_tys tmr morning 4am Ass vs Newcastle'), (5481, 1062, 'Johor Bahru, Johore', 'I''m at  Blk 289D Punggol Arcadia  (Singapore) http://t.co/WevJh0W1'), (5482, 1897, 'Malaysia', 'alhamdulillah done!!'), (5483, 1898, 'Johore, Malaysia', 'I''m at IndoChine (Singapore, Singapore) http://t.co/VNuc3J13'), (5484, 1411, 'Johore, Malaysia', '@ZelleZiao wtf , he so straight forward :/ tmr show u .'), (5485, 1899, 'Johor Bahru, Johore', 'I''m at Serangoon Bus Interchange (Singapore, Singapore) http://t.co/jyHsp2Gg'), (5486, 1724, 'Malaysia', 'อยากไปคอน korea music wave อ้าาาา ติดที่ว่าพึ่งไปดูคอนเกิลเจนมา แงแง'), (5487, 1856, 'Singapore', '@beastdwlove_ also dont have... :/ or she might send wrong email ??'), (5488, 1900, 'Johore, Malaysia', 'Waiting. Howie''s BDay. @moonduzt @nuninop @ Piedra Negra http://t.co/vtM8O64n'), (5489, 1686, 'Johore, Malaysia', '@shazwanibms hmmm. kalau by besok belum pergi doctorrr kayyyy? sekarang rehat je. you''ll feel better soon. :)'), (5490, 1901, 'Johor Bahru, Johore', 'With Yk, Leon and WeiJie. (@ Atlantis Park) http://t.co/a8n3UHG1'), (5491, 186, 'Johore, Malaysia', 'Dinner with daddy and @xClarenceee. ^^ (@ Tanjong Pagar Market and Food Centre w/ 2 others) http://t.co/APdtcNE1'), (5492, 1902, 'Johor Bahru, Johore', 'I''m at Tampines Central Community Club (Singapore, Tampines) http://t.co/GPaENINu'), (5493, 68, 'Riau, Indonesia', '@vfradenarieff hehe lg online,kamu dek?'), (5494, 618, 'Johor Bahru, Johore', '@ahhhmui Lol Oh. Oops. Lol thought you are talking about the chart haha'), (5495, 1903, 'Kota Tinggi, Johore', 'My boy resting on my hand, aww ! So sweet'), (5496, 893, 'Johor Bahru, Johore', '@forever_hahaha hahahaha'), (5497, 1681, 'Singapore', '@HeyA13X i can you wan not ? i got money next time you return me the money'), (5498, 1106, 'Johor Bahru, Johore', 'got no mood to eat dinner. !'), (5499, 117, 'Johore, Malaysia', 'THISSSSS RT @Rollyskully2 "When can go out, no where to go. When cannot, so many places can go hais"'), (5500, 99, 'Johor Bahru, Johore', '3days .... '), (5501, 487, 'Johore, Malaysia', '@peanuttoes LOL TRUE'), (5502, 1904, 'Plentong, Johor Bahru', 'Aman hidup dapat 100 msg percuma'), (5503, 1905, 'Johore, Malaysia', '@Ponderrr km doank yg senenk pond wkwkk traktir kek sdh menang mlulu haha'), (5504, 720, 'Plentong, Johor Bahru', '#KalauCrushKita dah ada gf , mesti patah seribu hati masing masing kan . patah beriburibu pun boleh ;]'), (5505, 228, 'Johor Bahru, Johore', '@foxxloxxy_ hahah, relax ar haha'), (5506, 138, 'Johore, Malaysia', '@trevina_pewpew Yesh'), (5507, 1906, 'Johore, Malaysia', '"Stuck...... "'), (5508, 1255, 'Singapore', 'LOL i jux followed @Fake_CSS for the fun of it &gt;w&lt;'), (5509, 1871, 'Johor Bahru, Johore', '@glamourbeetch haha can say also la. But common girls play w/ their hair.'), (5510, 1830, 'Plentong, Johor Bahru', 'terima kasih , kau telah meringanken bebanan rindu aku padanya.. :")'), (5511, 1907, 'Johor Bahru, Johore', '@HazeeraBob esok camne? Nadia can''t make it and I have a fcuking sore eyes. How???'), (5512, 1873, 'Kota Tinggi, Johore', 'Satu iphone 3 org share..'), (5513, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE ha la pegi hosptal..knpe..??nnek sakit asthma..'), (5514, 1908, 'Johore, Malaysia', 'Dinnerr! :) (at Singapore Zam Zam (Restaurant Pte Ltd)) — http://t.co/GZeEgaha'), (5515, 1717, 'Johore, Malaysia', 'OMG they were once so sweet!!! why must the guy die bloody hell D:'), (5516, 1909, 'Johore, Malaysia', '@vivekisms just penned something on city. Can I send it or is it too late?'), (5517, 1816, 'Johore, Malaysia', '@Whitewallls omg seriously?? D: Mann wanted to get that Dx'), (5518, 1910, 'Malaysia', 'I''m at Maths Clinic II, Taman Setiawangsa http://t.co/gkdoFM2l'), (5519, 1458, 'Johore, Malaysia', 'O'), (5520, 1492, 'Johor Bahru, Johore', '@RyanMatthewLow I still have 23 hrs leh..'), (5521, 1889, 'Johore, Malaysia', '@philbert_tys di Matteo got Chinese bloodline - he doesn''t really look italian or ang mo'), (5522, 1911, 'Johore, Malaysia', 'I''m at Nando''s (Bugis, Singapore) http://t.co/HC8ZHD8i'), (5523, 22, 'Johor Bahru, Johore', 'Bro said my mum hates my attitude in front of her.ohkaycan.'), (5524, 1912, 'Johore, Malaysia', 'Housewarming (@ Eunos Blk 824) http://t.co/t5vATTgH'), (5525, 1066, 'Johore, Malaysia', 'No matter how hard I''m there for them, they didn''t appreciate it nor acknowledge it. #howsad'), (5526, 1913, 'Johor Bahru, Johore', 'I''m at Blk 357 Tampines Street 33 http://t.co/74kHYjtp'), (5527, 1880, 'Plentong, Johor Bahru', 'Of cos la cuz its pumping blood duh RT @mgmcmshrm: beating hearts will never die'), (5528, 1552, 'Johor Bahru, Johore', 'I''m at Sin Ming F&amp;B @ Sin Ming Rd (Thomson, Singapore) http://t.co/g6j674TF'), (5529, 1571, 'Johor Bahru, Johore', '@BoringgPig Tell me tmrw'), (5530, 1217, 'Johor Bahru, Johore', 'Trespass with @sugarrushingyou, @FangReHan, @emilychenlx, @chesterthen and @ArjunKareti (@ Cathay Cineplex) http://t.co/MG4onJQI'), (5531, 1914, 'Malaysia', 'หมูทอดอีกแล้วว ฮ่าๆ (@ ป้าปุ๊ - สูตรต้นตำหรับหมูทอด..อร่อย) http://t.co/9F9WZJwE'), (5532, 138, 'Johore, Malaysia', 'I thinking of life and death again. Heart damn pain , feel like crying. Feeling damn scared help'), (5533, 1915, 'Johore, Malaysia', 'I''m at The Cathay Level 1 Box Office http://t.co/5n8dHjRL'), (5534, 1060, 'Plentong, Johor Bahru', 'i''m not done yet'), (5535, 322, 'Johor Bahru, Johore', 'I''m at Tampines Mall (Singapore, Singapore) w/ 17 others http://t.co/OlYdV4gs'), (5536, 720, 'Plentong, Johor Bahru', '#KalauCrushKita lalu depan kelas kita , mesti kita tengok je dia lalu kan . sampai kepala kepala senget dok perhatikan dia .'), (5537, 1916, 'Johor Bahru, Johore', '@Ameliarity If someone breaks your heart, just punch them in the face. Seriously, just punch them in the face and go get some ice cream.'), (5538, 1880, 'Plentong, Johor Bahru', 'RT @TaufikBatisah: Time to skate #Skateboarding4Life http://t.co/ZV8eUk2y'), (5539, 951, 'Johore, Malaysia', '@JonathanYiQiang wah cb.'), (5540, 1917, 'Johor Bahru, Johore', 'EFC test tomorrow... Good luck to my classmate!!!'), (5541, 257, 'Johore, Malaysia', 'Buffet!!! (@ Kiseki Japanese Buffet Restaurant) http://t.co/ZQIpEDfO'), (5542, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar alaaaahh!!! :-( hm ylaaaylaa *pasrah*'), (5543, 1918, 'Johore, Malaysia', 'I''m at Jumbo At Clarke Quay http://t.co/ovYOR6FL'), (5544, 762, 'Johore, Malaysia', '@_Jesusbeloved last longer'), (5545, 1458, 'Johore, Malaysia', 'E'), (5546, 130, 'Plentong, Johor Bahru', '#myfavemalayword MAKWE/PAKWE it was very popular word in 90''s era... (GIRLFRIEND / BOYFRIEND)'), (5547, 769, 'Singapore', 'belum belajar besok TO X_X'), (5548, 487, 'Johore, Malaysia', '@peanuttoes are you still gmarket-ing ?'), (5549, 1862, 'Johor Bahru, Johore', 'Gotta pack for tmr. Confirmation Camp her I come. CAYC is such an awesome place.'), (5550, 1835, 'Johor Bahru, Johore', 'Bon Voyage @ZaraForMen'), (5551, 1919, 'Johor Bahru, Johore', 'I''m at Blk 981C Buangkok Crescent (Singapore, Singapore) http://t.co/6mrOz7mY'), (5552, 1920, 'Johor Bahru, Johore', '@Fiezah92 pape nnt kol hp aku.. aku nak kuar carik brg... tc... takyah reply...'), (5553, 196, 'Johore, Malaysia', '@fairoz97 @ruotinqqqq YES IT IS!'), (5554, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing zuo wan gong ke cai shi angel ! Xian zai ni shi poo LOL'), (5555, 98, 'Johor Bahru, Johore', '"@FunisLifeisFun: Should i like... text you? I wanna talk about something. Nah. Maybe in the next millenia years."'), (5556, 1892, 'Johor Bahru, Johore', '@Nggyglitz @superyeow @_konnieee Why ms poon not replying edmodo one-..- u didn''t get the block test paper too?'), (5557, 1856, 'Singapore', '@beastdwlove_ baby_angeliina@hotmail.com (note: got two ii in angelina)'), (5558, 64, 'Johore, Malaysia', '@eternalbimbo_ oh! OHHH. ceh. ok anyway pls come fetch me from clementi mall tomorrow at 12.30 :) I forgot the way to ur house! x('), (5559, 1921, 'Johore, Malaysia', 'At some Indian restaurant'), (5560, 1916, 'Johor Bahru, Johore', 'I need someone that understands having a good relationship consist of sacrifices, commitment and hard work.'), (5561, 1922, 'Johor Bahru, Johore', 'I''m at Mr Prata Family Restaurant 24Hrs (Singapore) http://t.co/LE17BTNr'), (5562, 762, 'Johore, Malaysia', '@GiveMe_Lollipop welcome (; anything can text and share your problem with me'), (5563, 1905, 'Johore, Malaysia', 'bubarkan fpi“@detikcom: Sempat Bersitegang, FPI dan Warga Pontianak Didamaikan Polisi http://t.co/45lbD2t9”'), (5564, 1622, 'Johor Bahru, Johore', '@daryltsr you took so long to reply. its already night... :('), (5565, 1923, 'Johore, Malaysia', 'with 宝贝 in Orchard! hdb doggie turning taizi, taking his daily stroll in orchard.. how cool is that?'), (5566, 1286, 'Johore, Malaysia', 'I''m at Studio 33 http://t.co/animRn48'), (5567, 1630, 'Johor Bahru, Johore', 'I''m at My Palace :) http://t.co/lyOUjK6Y'), (5568, 1924, 'Johor Bahru, Johore', 'Please go download ebuddy xms. TEXT ME. seriously bored sia..........'), (5569, 720, 'Plentong, Johor Bahru', '@Syafiqahhafiz hai adik ! hahahahha . me jellyyyyy dgn awk punya twitcon ! okbai . jgn cite psl twitcon agi . hahaa'), (5570, 1925, 'Johore, Malaysia', 'Wasting time away. @ ION Orchard http://t.co/9d9TPBhq'), (5571, 890, 'Malaysia', '@Nnamfhhh 5555555555555555 ไม่เอาไม่อยากผมยาวแบบนั้น = =หน้าแก่'), (5572, 1926, 'Johore, Malaysia', 'O_O yeah life goes on'), (5573, 1927, 'Johore, Malaysia', '@yingtongloves i agree hahaa'), (5574, 69, 'Johore, Malaysia', 'I''m at Kent Ridge MRT Station (CC24) (Singapore, Singapore) http://t.co/KapZNl8j'), (5575, 460, 'Johore, Malaysia', '“@RachelBimbotic: Wtfffff so freaking boring!”'), (5576, 68, 'Riau, Indonesia', 'iya hehe gatau katanya istirahat RT @mumutcimamay: Enaknyaa u,u kok gtuu? RT @IlfaAzlyani: ohehe aku libuuur RT @mumutcimamay: Gaakta'), (5577, 1875, 'Johor Bahru, Johore', '@derppp_ Watching the first season of pokemon now. Heheh'), (5578, 1567, 'Johor Bahru, Johore', 'Why cant we be like last time??'), (5579, 1928, 'Johore, Malaysia', 'sizzing hot! @thedextroyer @ BigBank Cafe http://t.co/nc1Puyva'), (5580, 1433, 'Johore, Malaysia', 'Nk mandi den tido! Body aching'), (5581, 1255, 'Singapore', '#TumblrStyle You unfollow me, I unfollow you.'), (5582, 1769, 'Plentong, Johor Bahru', '@azieraziezie tak ponn . saje cakap die macam tuu . tapi betul laaa tak nampak kaku .'), (5583, 769, 'Singapore', 'Jam 8 osfred ol .. hum..'), (5584, 435, 'Johor Bahru, Johore', '@heartwinkle Whutt?! Mine is just 31!'), (5585, 1873, 'Kota Tinggi, Johore', '@catmeowzxc @ChikaaFeqaa One iphone three acc.. :)\nThanz for trust me =D'), (5586, 1929, 'Indonesia', 'Yiyiee ,, :D ƗƗɐƗƗɐƗƗɐƗƗɐƗƗɐƗƗɐ RT @Tharie_yiyie'), (5587, 1185, 'Johor Bahru, Johore', 'Hunger Games next week! So excited!'), (5588, 73, 'Singapore', ':-)'), (5589, 1916, 'Johor Bahru, Johore', 'I love you mummy.. U are so sweet now..'), (5590, 324, 'Johor Bahru, Johore', '#nowwatching point of entry ^^'), (5591, 1786, 'Johore, Malaysia', '@Celinewang_ wa, like that lo is what sia. nvm haha'), (5592, 1004, 'Johore, Malaysia', 'I''m at Concorde Hotel Singapore (Singapore) http://t.co/kZ5D4aLK'), (5593, 1930, 'Johor Bahru, Johore', 'Look up North, Jupiter is fucking around Venus! (at NaLa''s Loft) [pic] — http://t.co/5kHsr3XD'), (5594, 68, 'Riau, Indonesia', 'menghibur?emg knpa km buleeku? RT @Belbielowday: menghibur diri aja huhu RT @IlfaAzlyani lagi liat wtw dia tuu huhu kamu bu'), (5595, 818, 'Johore, Malaysia', 'The north korea agents lika ass'), (5596, 1435, 'Johor Bahru, Johore', 'Only get to meet him at 5 on Monday........'), (5597, 260, 'Johore, Malaysia', '@WayneIlu some idiot who cannot watch thier tackle'), (5598, 218, 'Johore, Malaysia', 'I''m at IMM Building (Singapore, Singapore) w/ 15 others http://t.co/2JX9dddg'), (5599, 1904, 'Plentong, Johor Bahru', '@syaminebellina Okay! Semua sekali okay ^.^'), (5600, 1830, 'Plentong, Johor Bahru', 'Harap iew akan berkekalan ... :)))'), (5601, 1173, 'Plentong, Johor Bahru', 'knapa aku kuat emo skrngni? netballers pun dah perasan aku tkseceria dulu walaupun ada masa aku happy. badan pun dah trlebih kurus hmmm :-('), (5602, 1567, 'Johor Bahru, Johore', 'I miss you'), (5603, 769, 'Singapore', '@SmileIts1D : Follow back ?'), (5604, 1060, 'Plentong, Johor Bahru', 'Better late then never ; Better never then late'), (5605, 1931, 'Johor Bahru, Johore', 'a7x concert at Malaysia ? \\(^_^)/'), (5606, 1769, 'Plentong, Johor Bahru', '@FyyTasha hahahaha . no hal laaaaa . nanti kita jerittt . awak dengar kan ?'), (5607, 1932, 'Plentong, Johor Bahru', 'Looksee looksee (@ Bazaar Karaat JB) http://t.co/J6MmZ9W7'), (5608, 1805, 'Johor Bahru, Johore', 'who say u grow up already cannot watch cartoon !! &gt;:( still can watch ok! how old also can watch'), (5609, 1571, 'Johor Bahru, Johore', '@BoringgPig Kays'), (5610, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove yea that Chicago bull guy!'), (5611, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan hello kudut :-/'), (5612, 138, 'Johore, Malaysia', '@trevina_pewpew We watching horror movie you guys ley?'), (5613, 1933, 'Johore, Malaysia', 'I''m at NAFA Campus 3 w/ @adamlok12 http://t.co/UI7iD4xN'), (5614, 739, 'Johore, Malaysia', 'Wtf is this nasi lemak?! $5 for this plate! (@ Holland Village w/ 3 others) [pic]: http://t.co/o7v9ZonF'), (5615, 1773, 'Johor Bahru, Johore', '@KarisseKJW YOU JELLY?!'), (5616, 1889, 'Johore, Malaysia', '@ChewHuiJunior the famous newton char kway teow is there. Taman Serasi famous Roti John is there. Try the choc fugde cake'), (5617, 720, 'Plentong, Johor Bahru', '#KalauCrushKita panggil nama kita , mak ai an . punyalah suka macam dapat RMsejuta .'), (5618, 1475, 'Johor Bahru, Johore', 'See Christina so serious buying her clothes from her favourite Ohvola! @ Ichiban Sushi http://t.co/dkWSgJop'), (5619, 995, 'Malaysia', 'เตะบอล (@ คอหงส์ อารีน่า) [pic]: http://t.co/hNL1YFRJ'), (5620, 1786, 'Johore, Malaysia', 'Path irritating sia.'), (5621, 413, 'Johore, Malaysia', 'Wanna fight don''t go club please'), (5622, 1934, 'Johor Bahru, Johore', 'Dinner while watching #KrisTV @itsmekrisaquino http://t.co/8S1hPRWP'), (5623, 1562, 'Johor Bahru, Johore', 'Dinner ! (@ Kfc @ Causeway Point) http://t.co/MOhLfkX7'), (5624, 138, 'Johore, Malaysia', 'HEART VERY PAIN'), (5625, 1935, 'Malaysia', '@zaihuddy งั่นก็หมายถึงง เทออ !!!!'), (5626, 68, 'Riau, Indonesia', '@vfradenarieff dirumah dek, TL siapa?hmmm'), (5627, 1936, 'Malaysia', '@Fizieeee @adammustaqim dikencinggggggg'), (5628, 1937, 'Johore, Malaysia', 'Udon factory のぶっかけ肉うどんなう。おいしー @ Lau Pa Sat http://t.co/DcbOusCU'), (5629, 1066, 'Johore, Malaysia', 'I wish I could be the center of attention everytime. I would be happy and smile even how bad would my day be.'), (5630, 1938, 'Johore, Malaysia', 'OMFG It''s really Shu An in Dream School.'), (5631, 1550, 'Johor Bahru, Johore', '@flyinpotatoes ;) mah pimpin spreads overseas I see ;) hahahahah she''s cute &gt;_&lt;'), (5632, 186, 'Johore, Malaysia', 'This is getting boring.'), (5633, 1779, 'Johor Bahru, Johore', 'So obvious you like her just by the actions you do . &gt;.&gt;'), (5634, 300, 'Johor Bahru, Johore', 'At swensens terminal 2 with cousins :D'), (5635, 117, 'Johore, Malaysia', 'Today feels like a Saturday to me!'), (5636, 657, 'Johore, Malaysia', '@ShakillaKhoriri welcome..cepat2 sihat k..:D'), (5637, 1763, 'Johor Bahru, Johore', 'I hate to wait lahh!!! Just where he is sia.'), (5638, 1940, 'Pulai, Johor Bahru', 'mission : complete all add math hw T__T (@ A-Y''s Room) http://t.co/VEVEIUq2'), (5639, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing bu Yao lian hor... REN NAI SHI YOU XIAN DU DE HORH'), (5640, 354, 'Johore, Malaysia', 'Are we good?'), (5641, 1941, 'Johor Bahru, Johore', 'So.. what are you up to this evening? :-\\'), (5642, 1108, 'Johore, Malaysia', 'I am happy. Ttm.'), (5643, 1942, 'Kota Tinggi, Johore', 'Training was awesome. Fuckin shagged.'), (5644, 249, 'Johore, Malaysia', 'I''m at HomeSweetHomee.  https://t.co/o29BT6JB'), (5645, 1943, 'Johor Bahru, Johore', 'I''m at Liquids Cafe (Singapore, Singapore) http://t.co/mWMr0AVF'), (5646, 260, 'Johore, Malaysia', '@WayneIlu what is RC?'), (5647, 1944, 'Johore, Malaysia', 'I''m at Chinatown MRT Station (NE4/DT19) (Singapore, Singapore) w/ 2 others http://t.co/Hu5NqOtg'), (5648, 1939, 'Johore, Malaysia', '@tangyingting relax lah.. Chill chill'), (5649, 891, 'Johore, Malaysia', 'Dinner... (@ Brussels Sprouts) http://t.co/uJXqmUpr'), (5650, 324, 'Johor Bahru, Johore', 'Yami so cute !'), (5651, 1875, 'Johor Bahru, Johore', '@derppp_ Same heh. Go eat lor~'), (5652, 1945, 'Johor Bahru, Johore', '@ericarobles May pumeg lang na australiano at european. Wit naman ang ganap. Haha! Pero cute si Aussie. Hahaha'), (5653, 117, 'Johore, Malaysia', '@paperdrizzle HAHAHAHA DAFUGGG *inserts my face* AHHAHAHAHAHHA'), (5654, 64, 'Johore, Malaysia', '@YongQiChong @kityinggg_ ok thanks :]] jy on your shots tomorrow ^^'), (5655, 1938, 'Johore, Malaysia', '@brendafizzy Band picture LOL AWESOME XD'), (5656, 300, 'Johor Bahru, Johore', 'Same lor, I think cos I didn''t eat RT @iDitating: feel nausea..haishh'), (5657, 806, 'Johore, Malaysia', 'But really, its a good lesson to Look where i''m headed to next. :D'), (5658, 324, 'Johor Bahru, Johore', 'Yami do sleeppy ~ hahah!'), (5659, 848, 'Johore, Malaysia', 'Breaktime. (@ TMIS ( MOCHA DELIGHT )) http://t.co/XOoPIQNb'), (5660, 1946, 'Johore, Malaysia', 'I''m at ThaiExpress (Singapore, Singapore) http://t.co/wf6mYjjJ'), (5661, 1173, 'Plentong, Johor Bahru', 'what is actually wrong with me? ada masa kena langgar biar lupa ingatan lg bagus Biar aku lupa sgala masalah :3 lupa ingatan j, bukan mati'), (5662, 1705, 'Plentong, Johor Bahru', 'Lapar..'), (5663, 141, 'Johor Bahru, Johore', '@tinzliang ganun tlg.. Role ng health prof un.. U should know that!!'), (5664, 515, 'Johor Bahru, Johore', 'Airlangga dek, km masi d padang? RT @gindoDudin: No problemo kak :) kuliah dmana skrg kk? RT @ddiittaayeye: Lg dibengkel dy dek, tggu dh bto'), (5665, 716, 'Johor Bahru, Johore', 'Mentions tooo silent todaay.'), (5666, 1862, 'Johor Bahru, Johore', 'Every year I become the victim of matress top up. @sarah_chompsyou and geraldine will top the matress and jump on it. Such vicious people.'), (5667, 1947, 'Johor Bahru, Johore', 'I''m at porn''s @ junction 10 http://t.co/6KQlvExU'), (5668, 720, 'Plentong, Johor Bahru', '#KalauCrushKita terjatuh kat sekolah , orang lain ketawe kan . kalau kita mesti rasa kesian . tau sgt crush kita tu mest tgh bengang an'), (5669, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa ktne?'), (5670, 422, 'Johor Bahru, Johore', 'Ps3 is back. Let''s do it! Fifa street! :)'), (5671, 1948, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 26 others http://t.co/YqN9jFZc'), (5672, 708, 'Johor Bahru, Johore', 'I broke the candy :X ..'), (5673, 1435, 'Johor Bahru, Johore', 'Your lms can log in ?..... @Bikinidale @Kellyleeeeee @Prod1gyIzMe @Sshiminee @xPentagon'), (5674, 1840, 'Johor Bahru, Johore', 'I''m at SMRT Buses: Svc 67 http://t.co/HrCzwhyh'), (5675, 1941, 'Johor Bahru, Johore', '@traazil The hell haha'), (5676, 117, 'Johore, Malaysia', 'Ever Felt Insecure ? well i did.'), (5677, 1949, 'Plentong, Johor Bahru', 'I''m at Nijyumaru Japanese Restaurant w/ 2 others http://t.co/ULXOIiRG'), (5678, 1950, 'Johore, Malaysia', '@WeiTeckCitaro But total 4 message leh same same one'), (5679, 1786, 'Johore, Malaysia', 'I ain''t bulletproof.'), (5680, 1951, 'Johore, Malaysia', 'Dinner time ! @ Bedok Food Centre (Bedok Corner) http://t.co/pImMswzs'), (5681, 1952, 'Johor Bahru, Johore', '@OOHAITHERE miss who ar lol'), (5682, 1953, 'Johor Bahru, Johore', 'Stupid flight attendant just said welcome to Bali when we landed :( I don''t wanna be home in stinking singapore urgh #unappreciativebrat'), (5683, 1954, 'Johor Bahru, Johore', 'Screw my family seriously and fuck my birthday.'), (5684, 1889, 'Johore, Malaysia', '@Mushroomish take-away one teriyaki chicken burger for me tks'), (5685, 117, 'Johore, Malaysia', '@zomgitsnawar WHAT TIME YA'' GOING'), (5686, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar ohokay tgok ah macamana. rnduu kau bob!! tsktsk'), (5687, 859, 'Johor Bahru, Johore', '@Aahling Hey baby! ;) It''s okay! :D &lt;3 Oic. Me gt one sis n lil bro.'), (5688, 308, 'Kota Tinggi, Johore', '@louisthenew i am smart.'), (5689, 38, 'Johor Bahru, Johore', 'Thank you twin for helping me with Chinese. ;D @supyoeee'), (5690, 1955, 'Johore, Malaysia', 'I''m at Jurong Regional Library (Singapore) http://t.co/9c94bMpF'), (5691, 1786, 'Johore, Malaysia', '@Celinewang_ a few only ma~'), (5692, 117, 'Johore, Malaysia', '@DionisQuek Screen shot?'), (5693, 1952, 'Johor Bahru, Johore', 'Hate hackers'), (5694, 72, 'Johor Bahru, Johore', '“@Laurentiakky: That awkward moment when your parents are being horny and you''re like ._.” epic! (Y)'), (5695, 708, 'Johor Bahru, Johore', '@JoeyDorayaki stop headbanging luh !! :X only i can :3'), (5696, 138, 'Johore, Malaysia', 'MY HEART IS HURTING. MAKE IT STOP. URGH'), (5697, 716, 'Johor Bahru, Johore', 'I''m tiredd. x.x Ohhshit, still haveee homeworkk. But tomorrow going out, howhow. x.x'), (5698, 1014, 'Johore, Malaysia', 'Ang sakit ng batok ko! At hindi siya ngawit sakit. Tumatanda-na-ako-hypertension-ba-to more like sakit.'), (5699, 1526, 'Malaysia', '@wararat_amp เล่นเฟส ทวิต ฟังเพลง แล้วก็พึ่งกินข้าวเสด กินข้าวยังจ๊ะพี่สาว'), (5700, 1938, 'Johore, Malaysia', '@brendafizzy so long! CROSS FINGER'), (5701, 1014, 'Johore, Malaysia', 'Ang sakit ng batok ko! At hindi siya ngawit sakit. Tumatanda-na-ako-hypertension-ba-to more like sakit. #conyo'), (5702, 308, 'Kota Tinggi, Johore', 'but i am the exception. “@louisthenew: You all are idiots”'), (5703, 1956, 'Plentong, Johor Bahru', 'Cepat lah flat wahai S2.. :-)'), (5704, 241, 'Johor Bahru, Johore', '@MuglerOfHisLove yea we can''t even jump over a chair! Joking! haha jet pack *nothing to do here!*'), (5705, 1027, 'Johor Bahru, Johore', 'I''m at Ban Heng Seafood Paradise @ Aranda (Singapore, Singapore) w/ 2 others http://t.co/rS3wH0Lv'), (5706, 1957, 'Kota Tinggi, Johore', 'I''m at WCEGA Tower (Singapore) http://t.co/6PomlVVv'), (5707, 1958, 'Johore, Malaysia', '@fadyzoid never drag lo! Carried! Haha'), (5708, 267, 'Johore, Malaysia', '@empireofthekop or watching a football match?'), (5709, 1959, 'Johor Bahru, Johore', '@WawaGilerh you just do the worksheet first on mechanics'), (5710, 1567, 'Johor Bahru, Johore', 'Why today like no mood only??'), (5711, 1960, 'Johor Bahru, Johore', 'Lepaking with bby. She doing art. Lucky dont need help her. Hahahas.'), (5712, 1952, 'Johor Bahru, Johore', '@chan_mei_ying don wan c me in chatlet:('), (5713, 1961, 'Plentong, Johor Bahru', '@dayarazif ishh.bkn kaw la.prasan jek'), (5714, 1962, 'Johor Bahru, Johore', 'I''m at Sushi Tei (Singapore, Singapore) [pic]: http://t.co/N8L4Z2GO'), (5715, 1963, 'Johor Bahru, Johore', 'Was out running 5.06 km with #Endomondo. See it here: http://t.co/bTp6JWyY'), (5716, 1964, 'Johore, Malaysia', 'Omigod, just got back. Exhausted. My feet is killing me. Hahahahaahah'), (5717, 1526, 'Malaysia', '@NeayWR_Boice เริ่ดๆๆๆๆๆตลอดๆๆๆ55555+'), (5718, 515, 'Johor Bahru, Johore', 'Enaknya -,- eh km ngpain TA? Hayoo RT @animegawati: @ddiittaayeye @mafelmo @ivondewis @najwanajzwa ayoooo, yg gratis aku yaa, wkwkwk'), (5719, 1451, 'Johore, Malaysia', 'I dun give a fuck if ur angmoh or wat...as long u step on s''pore soil...u better respect us..gt old ppl also want take seat knn :@'), (5720, 1965, 'Johor Bahru, Johore', 'I at oversea Temporarily Won''t reply SMS/call. Pls use watapp or fb to chat. Thx kbye'), (5721, 1966, 'Johore, Malaysia', 'I''m at The Banana Leaf Apolo (Singapore, Singapore) http://t.co/qNNhsVL4'), (5722, 1435, 'Johor Bahru, Johore', 'Baby''s working now . Hope he''s doing fine .. (:'), (5723, 1060, 'Plentong, Johor Bahru', 'Girls are too details and artistic ; However they didn''t see the whole picture because they too busy with the details. Fusshhh'), (5724, 1967, 'Johor Bahru, Johore', '@_PaperStrings then he stare for whaaaat. Dun low self-esteem lah'), (5725, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan dia je tahu marah dahtu orgni kena panggil buncit tkpkir pulak sakit hati??!!!!!!!!!! *hentak kaki*'), (5726, 1968, 'Johore, Malaysia', 'Watching @irzaahsan and the BTPS Brass Band rehearsal performance. (@ Singapore Conference Hall) http://t.co/4E54lL4M'), (5727, 952, 'Johore, Malaysia', 'Queueing up to have dinner.! Sushi.!!! (@ Genki Sushi @ Orchard Central w/ @maarsiee) http://t.co/GhGHHVnJ'), (5728, 193, 'Johor Bahru, Johore', 'I''m at Fernvale Point (Singapore) http://t.co/Il62Ohi7'), (5729, 1066, 'Johore, Malaysia', 'It''s hard to make a good impression towards others especially that person is important to you.'), (5730, 1875, 'Johor Bahru, Johore', '#PeopleIWantToMeet @AntonioCesaro @facdaniels @HEELZiggler @ShinsukeN @IAmJericho.'), (5731, 1202, 'Johor Bahru, Johore', 'So dam fullllll!!'), (5732, 1682, 'Johore, Malaysia', '@hannahquerubin oo nga! Freaking damn shit. Haha. Follow me :)'), (5733, 1969, 'Kota Tinggi, Johore', 'Jammin in jurong coffeeshop back to basic'), (5734, 1970, 'Johore, Malaysia', '@IamAlwi wow!!! Like!! Next few days twitter and fb will be filled with SMRT blablabla! :)'), (5735, 1146, 'Johore, Malaysia', '@Darren_hasalife Ipoh lah -_-'), (5736, 487, 'Johore, Malaysia', '@peanuttoes Ohhh :( can you go again help me buy screen protector! PLEASEEE. :D Samsung galaxy W! The no finger print de. I forgot the name.'), (5737, 296, 'Johor Bahru, Johore', '機体は新しいみたい。日本からの便よりきれいA330-300 http://t.co/TyAkseH2'), (5738, 1830, 'Plentong, Johor Bahru', 'Tadi masuk kg dye . Then terserempak dngan sorang budak pempuan yng ingin ke ruma boyfie dye. hahahah.'), (5739, 25, 'Singapore', '@Moonectic SIAO AH!'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (5740, 1832, 'Johor Bahru, Johore', '@SitiHafidzah yuuuup! The small girl very tabah and redha after her siblings and mum died. I learnt a lesson from that movie. :)'), (5741, 1971, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 12 others http://t.co/24CECbiS'), (5742, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar hehe next holiday jgn lupa blikan hadiah aku tau!!! :D peace!!'), (5743, 1972, 'Plentong, Johor Bahru', 'I''m at adurra cosmetic (Johor Bahru, Johor) http://t.co/0KkMLGxR'), (5744, 1770, 'Singapore', 'So there is such a thing as a women''s urinal, apparently. http://t.co/PmEqfbPF'), (5745, 1973, 'Johore, Malaysia', '@Celine_Sim23 so good sia. I no tutor leh :/'), (5746, 1412, 'Johore, Malaysia', 'I''m at Bugis Junction (Singapore, Singapore) w/ 18 others http://t.co/OLKTOdvT'), (5747, 1031, 'Singapore', '@jesuslovessnsd good la, but idk why i miss avb, aww :('), (5748, 1060, 'Plentong, Johor Bahru', 'Ok you were playboy'), (5749, 1243, 'Kota Tinggi, Johore', 'I''m at Bukit Timah Market &amp; Food Centre (Singapore) http://t.co/tV296bta'), (5750, 618, 'Johor Bahru, Johore', '2am comeback performance bring goose bumb seriously they are awe some and also the reason why they are my favourite ballad group'), (5751, 1379, 'Johor Bahru, Johore', '@tseyilingxp it''s not omg. It''s just the middle finger! Hahaha. mn|n are dirty minded.'), (5752, 351, 'Kota Tinggi, Johore', '@Noufelle sure np..'), (5753, 25, 'Singapore', '@GNA__frenzy jiayou! Teach him how to shoot!'), (5754, 1974, 'Johor Bahru, Johore', 'It sucks to be dick.'), (5755, 22, 'Johor Bahru, Johore', '@xiaowang123 it''s permanently there ?our school one is gone already right?):'), (5756, 1975, 'Johor Bahru, Johore', 'Gonna run with@mbasyar @orangerainbowdr'), (5757, 1942, 'Johor Bahru, Johore', '@dianarifff i thot you go in poly????'), (5758, 1976, 'Johore, Malaysia', 'I''m at Water Fountain @ Takashimaya / Civic Plaza w/ @cherylicious_ http://t.co/AyslJdhR'), (5759, 324, 'Johor Bahru, Johore', 'Yemi so strong'), (5760, 487, 'Johore, Malaysia', 'OMFG RT @STcom: US boy, 3, dies after shooting self in the head with gun he found in car as his family stopped for petrol'), (5761, 1952, 'Johor Bahru, Johore', '@OOHAITHERE Chet my sis say tmr U all m coming my house lol'), (5762, 435, 'Johor Bahru, Johore', '@dangledaffodilz do I have a share? :O'), (5763, 1977, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) w/ 2 others http://t.co/d3xBcRud'), (5764, 1978, 'Johore, Malaysia', 'Can''t find my book...I haven''t even finish reading it. Geeeezzzz!!!! =('), (5765, 1916, 'Johor Bahru, Johore', 'I promise if i get 4k i will give you 1k okay... I will work my ass off in the month of april.. But sadly i have to sacrifice my time with u'), (5766, 806, 'Johore, Malaysia', 'Thursday: Happy "What the hell?!" Day.'), (5767, 324, 'Johor Bahru, Johore', 'Yemi you gonna dia'), (5768, 1225, 'Johor Bahru, Johore', 'I''m at Tampines Bus Interchange (Singapore) w/ 2 others http://t.co/JcdlD213'), (5769, 206, 'Singapore', 'well having a gf/bf at this age , can, just manage it well lo. but srly despo finding them no use lah later heartbreak only -.-'), (5770, 1938, 'Johore, Malaysia', 'Okay, I''m definitely watching the Spongebob Squarepants movie tomorrow.'), (5771, 1979, 'Johor Bahru, Johore', 'I want to go play.. but I think I need to do work.. hmm.. later la hor..'), (5772, 1875, 'Johor Bahru, Johore', '@derppp_ I''m also hungry now eh, shit. Go out and buy somethinggggg'), (5773, 1411, 'Johore, Malaysia', '@ZelleZiao Okay .'), (5774, 1980, 'Singapore', 'Korean bibimbap for dinner :-)'), (5775, 1440, 'Johor Bahru, Johore', 'I &lt;3 my mom''s tiramisu! Its not like what they sell outside... So hard and frozen.... My mom''s (cont) http://t.co/SzdT9HJ1'), (5776, 1960, 'Johor Bahru, Johore', 'Kwn aku main motor dkat bwh block. Dier ingatkan ni cerita adnan sempit 2 per? Heh.'), (5777, 1379, 'Johor Bahru, Johore', '@sotongmehh PIX PLEASE HAHA. the today take all de! ^.^'), (5778, 1786, 'Johore, Malaysia', '@Celinewang_ true uh, btw, u gg the bbq? the 2b onee.'), (5779, 1956, 'Plentong, Johor Bahru', 'Baru ckp kan S2 dah flat. Yeay !!'), (5780, 1830, 'Plentong, Johor Bahru', 'Kena marah pon tak kesah ? Ape kejadah nya beb....'), (5781, 692, 'Johor Bahru, Johore', 'Enjoying ourselves ! \nShiok ! http://t.co/2XRLHY7e'), (5782, 1622, 'Johor Bahru, Johore', '@daryltsr I don''t mind being in your DP xD'), (5783, 138, 'Johore, Malaysia', 'So dizzy'), (5784, 1981, 'Johor Bahru, Johore', '@dacrazyweirdone I can see that.'), (5785, 13, 'Singapore', 'RT @STcom US boy, 3, dies after shooting self in the head with gun he found in car as his family stopped for petrol http://t.co/UdOR5tkD'), (5786, 1982, 'Johore, Malaysia', 'Sono già le 20.00 e nessuno m''ha regalato nulla, dunque scendo al bar a scroccare un paio di drink al mio barista. #Singapore'), (5787, 1983, 'Johore, Malaysia', 'At Bugis MRT Interchange (EW12/DT14) — http://t.co/rrT21HmQ'), (5788, 1967, 'Johor Bahru, Johore', '@_PaperStrings Creeeeeeeepy'), (5789, 1984, 'Johor Bahru, Johore', 'Titleist demo (@ Orchid Country Club Driving Range) http://t.co/FdoXkeEI'), (5790, 793, 'Johore, Malaysia', 'At In Bus 222 Otw To Bedok Mrt — http://t.co/8t3CDLdH'), (5791, 1794, 'Malaysia', 'อุอิๆ'), (5792, 48, 'Johor Bahru, Johore', '@itsfated09 Okok. If got come down then text me lor.'), (5793, 1985, 'Johore, Malaysia', 'I''m at K1 Salon Toa Payoh Central http://t.co/doKRCYk7'), (5794, 1960, 'Johor Bahru, Johore', 'Aku bored. Hahahas.'), (5795, 1360, 'Johor Bahru, Johore', '@feefhvrx_ :D amcm..nak jumpa pa haha'), (5796, 6, 'Johore, Malaysia', 'RT bangedd o(TヘTo) @MisteriusQuotes: "Kamu cepet sembuh ya dari cuekmu..."'), (5797, 1725, 'Johor Bahru, Johore', '@Weitinqsim LOL. Cannot la if can go I also Mai go. I go v4 hehe'), (5798, 1786, 'Johore, Malaysia', 'I wanna go bbq soon lehhhhhhh. WALAOOOOOOOOO'), (5799, 1031, 'Singapore', 'going to cage now with brother chew and his friends :D'), (5800, 1810, 'Johor Bahru, Johore', 'I''m at m@mbo''s home http://t.co/AY5NnXpW'), (5801, 38, 'Johor Bahru, Johore', '@MavisWong_ sial la, so fast then never tell me answer? ):'), (5802, 1435, 'Johor Bahru, Johore', 'I know it''s boring. But can earn money... Baby. Jiayou. (:'), (5803, 1986, 'Johore, Malaysia', 'woaaaaaaaaah. bitch please?'), (5804, 1360, 'Johor Bahru, Johore', '@Telesaurtise ahehe..'), (5805, 1066, 'Johore, Malaysia', 'Laugher can make people bond together but sometimes it can make you cry especially when you''re alone.'), (5806, 1942, 'Johor Bahru, Johore', '@dianarifff ohhh apa courseee'), (5807, 1987, 'Malaysia', '@loveleesor น้องแป้ง !!^^//ค๊าบบป๋ม!!'), (5808, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing WO YE SHI YOU LINE , WO DE SHI BLUE LINE'), (5809, 1988, 'Johor Bahru, Johore', '@thlovecarousel that''s late !!!! Y LIDDIS. HAHAHAHA. OK WE PLAY LATERR'), (5810, 1978, 'Johore, Malaysia', 'Can''t find my book...I haven''t even finish reading it. Geeeezzzz!!!! This is not good =('), (5811, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan kalau aida tkdenye snyuman Sumpah seranah smua klua.'), (5812, 1956, 'Plentong, Johor Bahru', 'Balik umah baru charge. Syg batt.'), (5813, 1989, 'Plentong, Johor Bahru', 'bahasa “@FaudiaShahron: i''m alone... FUCK”'), (5814, 38, 'Johor Bahru, Johore', 'Memory lost larh you.'), (5815, 1769, 'Plentong, Johor Bahru', '@azieraziezie ouhouh . bagi aku cter die biase-2 jewp kodd . part mane hah ? daa lupa laaa tengok movie mase tuuuu . pon tak ramai orang .'), (5816, 1786, 'Johore, Malaysia', '@Celinewang_ just go luh~ T.T'), (5817, 1990, 'Johore, Malaysia', 'Dinner. ;) (@ Pizza Hut) http://t.co/FFIMd488'), (5818, 1991, 'Johore, Malaysia', '@Trinisha_Kaur @crazziefreak @DurgiB @Innocentfreakk im innocent'), (5819, 1992, 'Johore, Malaysia', 'I''m at Marina Bay Sands (Hotel) (Singapore, Singapore) w/ 8 others http://t.co/UqcYJKnz'), (5820, 1733, 'Malaysia', 'Try try:) (@ B''s Sweet (บีส์สวีท)) http://t.co/PVHwCdeo'), (5821, 48, 'Johor Bahru, Johore', '@OlsenAwesome something happen again meh?!'), (5822, 1993, 'Kota Tinggi, Johore', '#nowplaying 2Ne1'), (5823, 4, 'Johor Bahru, Johore', 'Meeting my bro now and drive valene n me out to 2nd bro house~~'), (5824, 206, 'Singapore', '#nowplaying we fell in love &lt;3'), (5825, 1690, 'Johor Bahru, Johore', 'Going 2 eat my dinner.'), (5826, 1994, 'Singapore', 'Six seven eight triple nine eight two one two,kiss me thru the phone'), (5827, 1349, 'Johore, Malaysia', '@KarlaDeModa @lkmariquit @rinabanana @sheslley @xing_shing hidlaw nako mag kadlaw tudo tudo :('), (5828, 1995, 'Johore, Malaysia', 'I''m at Home! :)) http://t.co/7dG8SZyp'), (5829, 1383, 'Johor Bahru, Johore', '@Aloysius_Ho YESH ^^'), (5830, 108, 'Johore, Malaysia', 'Fuck those arts campers who can''t stfu and appreciate music'), (5831, 1996, 'Johore, Malaysia', 'Malek is back! (at @SingaporePolice) [pic] — http://t.co/tEHMD612'), (5832, 926, 'Johor Bahru, Johore', 'I''m at Punggol Golf Range http://t.co/nzxRYy39'), (5833, 1263, 'Plentong, Johor Bahru', 'Twitter so inactive,all my fav users not on ZZZZZ'), (5834, 1060, 'Plentong, Johor Bahru', 'when nothing goes right, you just simply take left. ;D'), (5835, 1938, 'Johore, Malaysia', 'I should have gotten the grilled salmon set instead of toast box. Waste my money and it''s so tiny the noodles.'), (5836, 1554, 'Johore, Malaysia', 'I''m at Mugiya Bakery (Singapore) http://t.co/2dIPHH6R'), (5837, 1997, 'Johor Bahru, Johore', 'I''m at McDonald''s w/ @chuaweijuncwj http://t.co/dhG8tc0Z'), (5838, 1988, 'Johore, Malaysia', 'You''ve got me losing my mind.'), (5839, 1786, 'Johore, Malaysia', 'Can I have you now?'), (5840, 1998, 'Johore, Malaysia', 'WAGYU BEEF TONIGHT WEEEEE http://t.co/hKlbCCaA'), (5841, 1435, 'Johor Bahru, Johore', '@Estthherr drink water ! '), (5842, 38, 'Johor Bahru, Johore', 'No wind can blow us apart. ;D'), (5843, 218, 'Johore, Malaysia', 'I''m at Ajisen Ramen (Singapore, Singapore) http://t.co/XoMq6xn2'), (5844, 1690, 'Johor Bahru, Johore', 'Word mistake....'), (5845, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE hmm a''ah semput..alhmdulilah..shaz sehat..diah plak..??'), (5846, 102, 'Singapore', 'eh! My bestfriend''s voice so cute! ^^ @afyzahh'), (5847, 1999, 'Johore, Malaysia', 'I''m at The Nail Status @ Far East Plaza http://t.co/2qUNXsJh'), (5848, 1916, 'Johor Bahru, Johore', 'But it paid off okay.. I spent time with you n buy watever u ask for mummy\nI promise i will make you happy!'), (5849, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar alaaaaa skit sngat!! hahaha belikanlah teddybear yg besar mcm kau ke Cnfirm aku gembira!! *dancing*'), (5850, 658, 'Pulai, Johor Bahru', 'I''m at Jalan Pulai Perdana 8/3 [pic]: http://t.co/IrBmlSXj'), (5851, 25, 'Singapore', '@MelMel_Teehee Must go ah!!'), (5852, 2000, 'Kota Tinggi, Johore', 'zeedennischasemarcus'), (5853, 1379, 'Johor Bahru, Johore', 'Ping pong piang'), (5854, 1786, 'Johore, Malaysia', 'Super sad song making me cry. fuck i feel so gay.'), (5855, 2001, 'Johore, Malaysia', 'I''m at Tanjong Pagar MRT Station (EW15) (Singapore, Singapore) http://t.co/CGYBXFUN'), (5856, 2002, 'Johore, Malaysia', 'Swimming with my lady princess. I loveeeeeeee her ;)'), (5857, 2003, 'Plentong, Johor Bahru', '“@TheLoveAid: Good-bye''s make you think. They make you realize what you''ve had and what you''ve lost, and what you''ve taken for granted.”'), (5858, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa tnya je.. Kt boon lay.. Alek kul rape?'), (5859, 2004, 'Kota Tinggi, Johore', 'Finally home! (@ Sepetijan 813 Jurong West St 81) http://t.co/2MnMYPpg'), (5860, 769, 'Singapore', '@_Styles_Army_ : Follow back?'), (5861, 2005, 'Johore, Malaysia', 'I''m at Song Fa Bak Kut Teh 松發肉骨茶 (Singapore) http://t.co/9oKkvV61'), (5862, 2006, 'Johore, Malaysia', '@immagummybearr hehe thank you for being me :) there'), (5863, 1773, 'Johor Bahru, Johore', 'Your body was too close untill I couldn''t play Jubeat properly :x'), (5864, 1942, 'Johor Bahru, Johore', '@dianarifff yupppp when i go back sch i year two. Wanna graduate fastfast. Waste time ah ite'), (5865, 1881, 'Pulai, Johor Bahru', '@Qaseh_Purple Tq! Tq! Im lovin it... http://t.co/mcTtKvDO'), (5866, 38, 'Johor Bahru, Johore', 'Dead or alive, we''ll be together. &lt;3'), (5867, 618, 'Johor Bahru, Johore', 'Hungry sleepy sigh'), (5868, 852, 'Johor Bahru, Johore', 'Working radius? Teacher gort say before? :0'), (5869, 2007, 'Singapore', 'duh cantiknya km'), (5870, 2008, 'Johor Bahru, Johore', 'I''m at Inside Daddy''s Car  (Singapore) http://t.co/6pPlQDiB'), (5871, 1938, 'Johore, Malaysia', 'Watching Dream School just to support Shu An. The show sucks, season 1 was so much better.'), (5872, 520, 'Johor Bahru, Johore', 'I''m at S11 (51@AMK) (Singapore) http://t.co/qxsX3HFz'), (5873, 1435, 'Johor Bahru, Johore', '. Baby must be having a hard time.'), (5874, 1959, 'Johor Bahru, Johore', '@WawaGilerh erm, do idealisation la'), (5875, 1440, 'Johor Bahru, Johore', 'Hush hush~'), (5876, 1283, 'Plentong, Johor Bahru', 'I''m at Banafee Village Restaurant (Johor Bahru, Johor) w/ 2 others http://t.co/SjTG7npQ'), (5877, 2009, 'Plentong, Johor Bahru', 'Relax (@ Saudagar Shisha Segget w/ 3 others) http://t.co/ozidJoQL'), (5878, 765, 'Kota Tinggi, Johore', '#np give me all your lovin'), (5879, 38, 'Johor Bahru, Johore', 'What kind of love is pure?'), (5880, 2010, 'Johore, Malaysia', 'At Kallang Bahru now cutting hair.'), (5881, 1786, 'Johore, Malaysia', '@Celinewang_ eh me. HAHAHAHAHAH 24th to 25 march. overnight uh.'), (5882, 515, 'Johor Bahru, Johore', 'Ada morgannya *eh RT @animegawati: Udah makan kok masih laper ya (‾⌣‾") perutnya ada naganya nih (⌣́_⌣̀) http://t.co/bmlNwdSp'), (5883, 2011, 'Johor Bahru, Johore', 'Still waiting for bus :/ (@ Bus Stop 67381, Sengkang) http://t.co/qcDbnRrb'), (5884, 658, 'Pulai, Johor Bahru', 'I''m at Taman Pulai Perdana (Johor Bahru, Johor) http://t.co/tpFR369v'), (5885, 2012, 'Johore, Malaysia', 'You''re so tweety today. - hmmmnnnnn'), (5886, 1066, 'Johore, Malaysia', 'No one can make you smile better than the person that you love.'), (5887, 1379, 'Johor Bahru, Johore', '@tseyilingxp EEE I''m a female pls! Haha. You think too much!!!!! Omg'), (5888, 1936, 'Malaysia', '@bevfever fuck haven''t done homework'), (5889, 2000, 'Kota Tinggi, Johore', 'I know SHINee world cant wait for their comeback.Am i right? hey annywong admin @zeeOnKyuTeukie'), (5890, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing WO NE.. ZUI TONG HEN NE.. REN JIA ANYHOW JIANG WO NO LINK !! WO YOU LINE HORH'), (5891, 2013, 'Johor Bahru, Johore', '@nanallove hello:)!'), (5892, 117, 'Johore, Malaysia', '@paperdrizzle who :o?'), (5893, 2014, 'Riau, Indonesia', 'salam kenal ..@LathifaAnshori'), (5894, 1467, 'Johore, Malaysia', 'I''m at Whampoa Makan Place http://t.co/N3UmkYY5'), (5895, 1173, 'Plentong, Johor Bahru', '@afifah321 takpunn. kepenatan ada netball tadi ~.~'), (5896, 1161, 'Johor Bahru, Johore', '@clay_jug haha may you dream about your LYNC youth'), (5897, 102, 'Singapore', '@afyzahh dh dh.. tak payah nk kembang...'), (5898, 117, 'Johore, Malaysia', '@zomgitsnawar yeahh hhaha'), (5899, 2015, 'Johor Bahru, Johore', 'I''m at Changi International Airport (SIN) (Singapore, Singapore) w/ 12 others http://t.co/zcVgeZzU'), (5900, 1765, 'Plentong, Johor Bahru', '@faisalhamidd bgun awal je cal..'), (5901, 544, 'Johor Bahru, Johore', 'More gathering like this would be good.'), (5902, 1337, 'Johore, Malaysia', 'EDITOR!'), (5903, 1196, 'Kota Tinggi, Johore', 'Apa mamiiiiii, papiii lg nyunghil negh.. :D RT @IntAn_ImUtsExy: tweeps :( ada yg tau @dennybahari ♥ @Kingnugraha ???????? Pd kmana ya'), (5904, 1712, 'Johore, Malaysia', '@PeppyChipper so you''ve gotten you Kinder Surprise? HAH! Enjoy!'), (5905, 1880, 'Plentong, Johor Bahru', 'I''ve got a good news to share......'), (5906, 206, 'Singapore', 'lol he changed a lot sia o_O bwehe. idrc ahahaha xD'), (5907, 2007, 'Singapore', 'dimana sih alamatnya RT @abdi_rizky kya nya cheezy beef sandwich ny @DistroSandwich enak nih!'), (5908, 1494, 'Plentong, Johor Bahru', 'Got a lot work todo..kyla hwatinggg'), (5909, 22, 'Johor Bahru, Johore', '@xiaowang123 wah .can we go there w friends ?MYGOD!!'), (5910, 94, 'Johore, Malaysia', '@Juper_Sunior OOOOKAY:D \nSo much homework not done&gt;.&lt;'), (5911, 2016, 'Plentong, Johor Bahru', '#terase ini RT @syffl: Tahukah anda budak Johor Bahru terkenal dengan apa. Dengan KEKEPOHAN. Kbai'), (5912, 1183, 'Johore, Malaysia', 'I''m at Advance Apartment http://t.co/rJ5PeJAX'), (5913, 434, 'Johore, Malaysia', 'I''m at Clementi (Singapore, Singapore) http://t.co/47rRVkGp'), (5914, 1379, 'Johor Bahru, Johore', 'Bored? Go and bake.'), (5915, 2017, 'Johor Bahru, Johore', 'Cooked fried rice for family :)'), (5916, 102, 'Singapore', 'ehhhhh! where @dxbbie ? I''ve waited the whole day!'), (5917, 1880, 'Plentong, Johor Bahru', 'Well wait for it.............'), (5918, 1567, 'Johor Bahru, Johore', '@nocopyrights nk tron nie'), (5919, 1786, 'Johore, Malaysia', '@Celinewang_ okay...........................................................................................................................'), (5920, 206, 'Singapore', '@msimpletontvk *hugs* xDD haha wear jacket?:3'), (5921, 2018, 'Johor Bahru, Johore', 'Eee fuck you fat boy!! I know you jog to lose weight. But got have to swing your sweat flying at me cb!'), (5922, 1828, 'Johor Bahru, Johore', 'I''m at Open Area @ Downtown East http://t.co/0bLopiCz'), (5923, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar alaaaaa nak juga¡ nak juga¡ *pegang pisau*'), (5924, 1528, 'Singapore', '- i hate impatient drivers!'), (5925, 459, 'Tebrau, Johor Bahru', 'It felt like the right choice! :-)'), (5926, 1880, 'Plentong, Johor Bahru', 'A lil bit more...............'), (5927, 2019, 'Johor Bahru, Johore', 'MARINA SQUARE ROBOT BALLOON!! http://t.co/8q9nfWmu'), (5928, 2020, 'Plentong, Johor Bahru', 'Masa bershisha..... Jom kwn2 rilek di bazar karat...saudagar shisha.'), (5929, 1479, 'Johore, Malaysia', 'Nooooooo Ikea meatballs are ruined!! Why did they change the supplier D:'), (5930, 1961, 'Plentong, Johor Bahru', '@dayarazif tweet tu utk org lain la.huhu'), (5931, 1974, 'Johor Bahru, Johore', '@Teenage19 @moggylicious haha! Thanks Birdy.'), (5932, 94, 'Johore, Malaysia', 'Wearing high cuts to wedding dinner and people say I''m sporty=.='), (5933, 2021, 'Johore, Malaysia', 'I''m at Tanglin Club (Singapore) http://t.co/Y9vqaevS'), (5934, 13, 'Singapore', 'most people are so artificial on the internet it''s genuinely disgusting'), (5935, 1875, 'Johor Bahru, Johore', '@derppp_ Go to a foodcourt and buy somethin?.. I think you should, yeah.'), (5936, 2022, 'Johore, Malaysia', '@tohjinxiong we going back from bugis now. http://t.co/HUbHMb9s'), (5937, 2021, 'Johore, Malaysia', 'I''m at Gym @ Tanglin Club (Singapore, Singapore) http://t.co/Isq5qC77'), (5938, 1880, 'Plentong, Johor Bahru', '10..... 9...... 8......... 7.......... 6...... 5.......'), (5939, 459, 'Tebrau, Johor Bahru', 'Danced like crazy but it was worth it :-D'), (5940, 1865, 'Indonesia', '@ichelNRG wes mulai ta ? sek asik webcam an ee :p'), (5941, 19, 'Johor Bahru, Johore', '@joaaanjoan hungry than go n eat la....'), (5942, 193, 'Johor Bahru, Johore', 'cream cheese bun (@ Bread Junction@Fernvale Point) http://t.co/WlxJelO7'), (5943, 663, 'Plentong, Johor Bahru', '@FarhanSpain19 :)'), (5944, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan comel eh? heheheeehhehe *senyum lebar* nmpak buruk skit? panggggggg *pelempang sampai*'), (5945, 1880, 'Plentong, Johor Bahru', '4321..........'), (5946, 2023, 'Johor Bahru, Johore', 'I''m at Anderson''s Ice Cream @ NEX http://t.co/D9tDXm4q'), (5947, 449, 'Johor Bahru, Johore', '@thiveebeanie sore losers? No babe we lose with style.. Haha..'), (5948, 2024, 'Johor Bahru, Johore', 'pizzas w/ cell (@ The Salvation Army Territorial HQ w/ @quacko_quack) http://t.co/G06EDREN'), (5949, 2017, 'Johor Bahru, Johore', 'Go hougang !'), (5950, 1881, 'Pulai, Johor Bahru', '@zafinahz aku x nampak.. X nampak...'), (5951, 2026, 'Johor Bahru, Johore', 'I''m at Longhouse Food Centre (Singapore) http://t.co/UW1eln3P'), (5952, 1880, 'Plentong, Johor Bahru', 'Here it goes..........'), (5953, 1379, 'Johor Bahru, Johore', '@tseyilingxp YOU ARE SO LAME ******* omg cannot tahan liao. Can u please tell yourself ''I should shut up!'' HAHA'), (5954, 2027, 'Malaysia', 'I''m at Hat Yai International Airport (HDY) ท่าอากาศยานนานาชาติหาดใหญ่ (Hat Yai, Songkhla) w/ 5 others http://t.co/iXYE0eHd'), (5955, 25, 'Singapore', '@MelMel_Teehee hahahha as long can go can liao! will pray fr you sista! (:'), (5956, 106, 'Johor Bahru, Johore', 'I''m at WAC''s kingdom (Singapore, SIingapore) http://t.co/X1eXsL4K'), (5957, 1140, 'Johor Bahru, Johore', 'Happiness please find me. Lol'), (5958, 2028, 'Johore, Malaysia', 'Oh shoot! Gotta go back camp for duty. How sad :( nds... Checked. Itouch... Checked. Okay ready !'), (5959, 1873, 'Kota Tinggi, Johore', 'Brani ckp tk brani bikin ape cite..'), (5960, 2013, 'Johor Bahru, Johore', '@nanallove happen to see you today when I was on my way home from training I was In the bus:).'), (5961, 193, 'Johor Bahru, Johore', 'off to work (@ Fernvale LRT Station (SW5)) http://t.co/5qNY62HU'), (5962, 2029, 'Johor Bahru, Johore', 'Great talk.'), (5963, 3, 'Johor Bahru, Johore', '@Shanicelovees_ farrerpark, LOL'), (5964, 1494, 'Plentong, Johor Bahru', 'Dah mule dah aksi menyirap dan menyampah.xpelah grab popcorn..ini hiburann *watcng filem romance sampai kua muntah hijau..'), (5965, 1880, 'Plentong, Johor Bahru', 'MY THREE WEEKS HOLIDAY HAS BEGUN!!!!!!'), (5966, 1287, 'Johor Bahru, Johore', 'I''m at Sheng Siong Woodlands Industrial Park w/ 2 others http://t.co/0icdsF4V'), (5967, 2030, 'Johor Bahru, Johore', '"Some people search for their entire lives for what we have and never find it. I won''t give up. I''ll fight for you. Forever if I have to."'), (5968, 2031, 'Johor Bahru, Johore', '执行任务 @ Blk 964 Hougang Ave 9 http://t.co/iSA94DgQ'), (5969, 2032, 'Johor Bahru, Johore', 'With my own two hands'), (5970, 1354, 'Plentong, Johor Bahru', '@fedeli_omar1 thanks follow...'), (5971, 2033, 'Johor Bahru, Johore', 'Ngak enak bngt ni badan gara kurang tidur'), (5972, 206, 'Singapore', '@msimpletontvk me too -.-'), (5973, 1981, 'Johor Bahru, Johore', '@dacrazyweirdon idk jiarong''s one.'), (5974, 1880, 'Plentong, Johor Bahru', 'HAHAHAH k fooled ya'), (5975, 769, 'Singapore', 'BIGRT @G_Greysonator : I Love Greyson Michael Chance ! RT if you too (:'), (5976, 1379, 'Johor Bahru, Johore', 'Ya sometimes I talk too much/ say stupid things so I will ask myself to shut up. Yup.'), (5977, 1861, 'Johor Bahru, Johore', '@faiz_mraz dah pat rumah skarang'), (5978, 1880, 'Plentong, Johor Bahru', 'Tu je nk blg'), (5979, 2006, 'Johore, Malaysia', '@'), (5980, 1837, 'Singapore', '@BABYITSZELO Wah think of me worhhhhhh'), (5981, 1550, 'Johor Bahru, Johore', '@j_neenerz @flyinpotatoes oh hey there sexy....'), (5982, 467, 'Plentong, Johor Bahru', '@__kHAIRULaZRIE Hahahahahaha hai budak poyo :)'), (5983, 708, 'Johor Bahru, Johore', '@JoeyDorayaki no such thing :3 .. Don''t bang ur head lah ! \nI bang can liao . Nuff said :3'), (5984, 2034, 'Johore, Malaysia', '左耳はこよりのおかげで回復しました。'), (5985, 1173, 'Plentong, Johor Bahru', '@Ejadddd awak ni mmang suka melegakan hati saya hahaha Panda!!!!! kenapa aku whatsapp tkrep? kuangajoo....'), (5986, 1769, 'Plentong, Johor Bahru', '@azieraziezie hahaha lagi laaa . og daud jadi mak nealofa kan . hihi XD azura duluuuu . daa daa petang tadi . kau daa tengok ?'), (5987, 2006, 'Sekupang, Kota Batam', 'This area smells of shit !'), (5988, 1411, 'Johore, Malaysia', 'Help to promote @zone2neverland by retweeting and following !~'), (5989, 589, 'Johore, Malaysia', 'I''m at Marina Bay Sands sky park http://t.co/vXePcSpv'), (5990, 2035, 'Johor Bahru, Johore', 'I''m at Tampines St11 Blk 124 http://t.co/boQBU4wu'), (5991, 2036, 'Malaysia', '@ipinkeros ยังเลย โคดหิวเลยเนี่ยะ -0-'), (5992, 2037, 'Johor Bahru, Johore', '@_drownthecity no.... Lol!!! Haha: was it wushu also!'), (5993, 1558, 'Johor Bahru, Johore', '@y1hui ok sure'), (5994, 1950, 'Johore, Malaysia', '@WeiTeckCitaro ALL about the same thing one ...'), (5995, 1060, 'Plentong, Johor Bahru', 'If pokemon does exist in this world, what pokemon you like to have'), (5996, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa ade.. Tap kt sini byk org akai iphone.. Da mkn?'), (5997, 3, 'Johor Bahru, Johore', 'Ear infection. Ear bleeding. Stupid earstick, wear u 10 min lidat=='), (5998, 2036, 'Malaysia', '@nongmildky เพิ่งตื่นค้าบบบบบ 5555'), (5999, 1141, 'Johor Bahru, Johore', 'Watching Red Cross Charity Concert (@ Lee Kong Chian Lecture Theatre w/ 2 others) http://t.co/eaj0gSba'), (6000, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing Wo bu Shi Bian tai ! But seriously , her body so close , my arm cannot go behind'), (6001, 545, 'Johore, Malaysia', 'Pool time! Gonna own some bitches! (;'), (6002, 1063, 'Johore, Malaysia', 'I''m at Blk 123 Bedok Reservoir Road http://t.co/YISSaKy9'), (6003, 1451, 'Kota Tinggi, Johore', '@JoshuaLimmm alrite then see ya! :) n just be a chinese :)) hahaha!!'), (6004, 1824, 'Plentong, Johor Bahru', 'I''m at Pak Meon restaurant http://t.co/8w4fXsvh'), (6005, 2029, 'Johor Bahru, Johore', 'Somehow, I hate the distance between us.'), (6006, 1983, 'Johore, Malaysia', 'ラーメンチャンピオン (at iluma) [pic] — http://t.co/nipQAiN5'), (6007, 1884, 'Johor Bahru, Johore', 'I''m at MATTHEW''S AWESOME ROOM  (Singapore, Singapore) http://t.co/2vrdswRW'), (6008, 2038, 'Johor Bahru, Johore', 'Off to Laos I go!(: http://t.co/BTbctbXs'), (6009, 2039, 'Singapore', 'T-Shirts The Bois will be arrived soon :)'), (6010, 25, 'Singapore', '@MelMel_Teehee haha george will do! dont need the jungle!'), (6011, 1435, 'Johor Bahru, Johore', 'My geekspecs is with him. T_T'), (6012, 2040, 'Plentong, Johor Bahru', 'Dinner time.. (@ Singgah Selalu Arab fresh pastry) http://t.co/i0hLpbRE'), (6013, 1004, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 15 others http://t.co/kox1eatl'), (6014, 1349, 'Johore, Malaysia', '@KarlaDeModa @lkmariquit @rinabanana @sheslley @xing_shing ill catch up gd ah! been uber busy with my effin'' sched. i hate working :('), (6015, 99, 'Johor Bahru, Johore', 'Buat pakai aku pe?'), (6016, 68, 'Riau, Indonesia', '@vfradenarieff ara yaa dek?'), (6017, 1967, 'Johor Bahru, Johore', '@_PaperStrings at least you know you have nice legs xD\nOr maybe he''s just a pedophile'), (6018, 1936, 'Malaysia', 'Oh my godd I forgot about oral'), (6019, 2041, 'Pulai, Johor Bahru', '@izamrain tq ;-)'), (6020, 2042, 'Johore, Malaysia', 'ASHES'), (6021, 68, 'Riau, Indonesia', 'duuh glws knpa bulee? RT @Belbielowday: gaalauuuuuuuasss RT @IlfaAzlyani menghibur?emg knpa km buleeku'), (6022, 21, 'Johor Bahru, Johore', 'When a poor man begs for your help, his pride is hurt, then you don''t deal another blow to his pride by letting him down.- Imam Husayn (as)'), (6023, 2043, 'Malaysia', 'I''m at CCP Health Club (Hat Yai, Songkhla) http://t.co/wT27UUaf'), (6024, 1170, 'Johore, Malaysia', 'absolutely yums henghwa food. @deborahng you MUST come here @ Ming Chung Restaurant 民众菜馆 http://t.co/Ol9Yjck5'), (6025, 671, 'Johore, Malaysia', 'I''m at NS1 Jurong East Interchange (Singapore) http://t.co/4oWoJy8u'), (6026, 2044, 'Johore, Malaysia', 'I''m at Jurong East Temporary Bus Interchange (Singapore, Singapore) w/ 2 others http://t.co/2bsWRgQX'), (6027, 141, 'Johor Bahru, Johore', 'I love jessica''s song.. She''s like Beyonce''hope she can dance well too..#diva'), (6028, 99, 'Johor Bahru, Johore', '_I_'), (6029, 188, 'Johor Bahru, Johore', 'Wonder what my 2 bestfriends actually planned for me on monday. Hmmm. What job only they all doing -.-'), (6030, 2045, 'Johor Bahru, Johore', '@tabacheeks ako din nitatamad. kinain ko siomai and oj hehehe'), (6031, 267, 'Johore, Malaysia', 'England should quit international football immediately #wasteoftime #corruptFIFA #kingBlatter'), (6032, 206, 'Singapore', '@msimpletontvk hahahahah:D Owh :o take care dont fall sick D:,HOTWATER.;D sound like a mum. heeheexD'), (6033, 2046, 'Johore, Malaysia', 'I just ousted Vanan T. as the mayor of Torte on @foursquare! http://t.co/0cbliHUd'), (6034, 2046, 'Johore, Malaysia', 'Just had new creation at Torte - Beef goulash with rice... burp! (@ Torte) http://t.co/vRWDvMKg'), (6035, 117, 'Johore, Malaysia', 'my maple crash then now cannot open dafuq'), (6036, 1108, 'Johore, Malaysia', '@HongyuRedFish thanks.: D'), (6037, 1771, 'Johore, Malaysia', '@helloimawesome_ always remember people can''t teach u mental toughness only u can teach urself'), (6038, 2047, 'Singapore', 'Early night for a long day tomorrow~'), (6039, 1865, 'Indonesia', 'new ava old background . wdyt ?'), (6040, 762, 'Johore, Malaysia', '@dolphinekpop what thing one ?'), (6041, 2007, 'Singapore', '-.-'''' #ngook , doain flu lg haha @espanolasz'), (6042, 708, 'Johor Bahru, Johore', 'I almost sweet chin music the window :X lucky i didn''t break it'), (6043, 2048, 'Johore, Malaysia', 'I''m at The Foundry [pic]: http://t.co/seeOX2pH'), (6044, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing ni reply xian'), (6045, 2049, 'Johore, Malaysia', '@thirteenpapers @astr0trek18 shiok max! Kung fu fighters!'), (6046, 1001, 'Johore, Malaysia', 'I''m at Blk 121 Yuan Ching Road (Yuan Ching Road, Singapore) http://t.co/vtjlhAKN'), (6047, 513, 'Johor Bahru, Johore', 'HUNGRY !'), (6048, 1929, 'Indonesia', 'Nd apaaa nyeruu mhaaa ,, :D RT @Tharie_yiyie'), (6049, 1988, 'Johore, Malaysia', 'I hate it when you talk to her.'), (6050, 2050, 'Malaysia', 'ถึงบ้านแล้วฮัฟฟฟ (@ YOYO&amp;TOTO''s home) http://t.co/0D19UFRc'), (6051, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan laaaaa baby mana pulakniiiii? :O'), (6052, 136, 'Johore, Malaysia', '@KindnessAndPity tomorrow Blackshot?'), (6053, 420, 'Johor Bahru, Johore', 'For those on the road, @LTAsg has good updates on accidents on major highways with info on lanes to avoid, exits congested etc... #Singapore'), (6054, 1873, 'Kota Tinggi, Johore', 'Freddy + pipit = muke mcm ba**!!'), (6055, 1993, 'Kota Tinggi, Johore', 'RT @KiSSeop91: 난 이미 들었는데^^하하하하하\n노래 좋다&gt;_&lt;우아아앙굳\n RT @ukissSH: #SooHyun1stSolo^^ RT @kissmeSH: @ukissSH #SooHyun1stSolo ♥'), (6056, 2051, 'Johore, Malaysia', 'shall go and start studying'), (6057, 593, 'Johor Bahru, Johore', '@Jae_Jerome yeah! Ricky an ljoe! Ricky grew taller hahah'), (6058, 1060, 'Plentong, Johor Bahru', 'You won''t understand other shoes until you''re in the other shoes - macam ni ke @aDi_yusran'), (6059, 708, 'Johor Bahru, Johore', 'WAHAHAHAA .... Wait .. Why am i celebrating when i almost choke and broke a window'), (6060, 1698, 'Johore, Malaysia', '@vajoojoo really? But I keep coughing every minute :( but it''s audition? You sure??'), (6061, 2037, 'Johor Bahru, Johore', '@_drownthecity lol serious? Maybe it''s meow meow they all lor. Cause for me is tmr and sat.'), (6062, 2047, 'Singapore', 'Did nothing today....'), (6063, 2052, 'Johor Bahru, Johore', 'I''m at goodview street soccer court (singapore, singapore) http://t.co/0a5G3FMW'), (6064, 1786, 'Johore, Malaysia', '@WongEugene RT @StereoR_: Tml must buy either april77 or nudie jeans.'), (6065, 2053, 'Johor Bahru, Johore', 'Dinner ! (@ 928 Ampang Yong Tau Fu) http://t.co/gtlH0DXa'), (6066, 1108, 'Johore, Malaysia', 'I feel queasy. :('), (6067, 48, 'Johor Bahru, Johore', '@OlsenAwesome it''s damn pain when something insert to your urinal part. Yesterday he keep sigh sigh sigh. But today feel better abit.'), (6068, 2054, 'Johore, Malaysia', '@schaalyahya bot a ring n a hair clip frm @schahopolic ...way frm spore!'), (6069, 1936, 'Malaysia', '#sekolahakuada perempuan pakai skirt'), (6070, 1712, 'Johore, Malaysia', ': They''re counting the profit they earn today! Seems like a good sum of money here in the saloon $$$'), (6071, 2055, 'Johore, Malaysia', 'I love how my day ended. #yaaaaaay!'), (6072, 2056, 'Johor Bahru, Johore', 'San francisco (Rock massive remix) ph electro !!'), (6073, 1363, 'Johor Bahru, Johore', 'At Feeder Bus 913 — http://t.co/G7uVdKQg'), (6074, 1550, 'Johor Bahru, Johore', '@flyinpotatoes @j_neenerz raja darling I was talking to you :p'), (6075, 2051, 'Johore, Malaysia', 'sometimes i just wanna be alone &lt;/3'), (6076, 2057, 'Johor Bahru, Johore', '@Syahmeeeee really? Which paper?'), (6077, 1060, 'Plentong, Johor Bahru', 'Yes I do ; Love you more'), (6078, 206, 'Singapore', 'http://t.co/iKWgimKV TAETOP! &lt;3 TOP : TEACH ME HOW TO DOUGIE ;3 @msimpletontvk'), (6079, 124, 'Johor Bahru, Johore', '@muhd_farhan2 kalah la..hahaha'), (6080, 708, 'Johor Bahru, Johore', '@blurblurkat awww soo sweet :3 JYJY!! :3'), (6081, 1379, 'Johor Bahru, Johore', '@tseyilingxp okay we both are lame!!! AIYO.'), (6082, 1969, 'Kota Tinggi, Johore', '@EkinDiffident try using rtm'), (6083, 2058, 'Johore, Malaysia', '"Jangan buat wanita tuhh jatuh cinta kalaw anda tak cintakan dia"\n\n#sejakbilaakumacamni aku pown tak tau =='''), (6084, 3, 'Johor Bahru, Johore', '@channel_u what it means by ''what I actually do'' then with one character? What''s meme?'), (6085, 2059, 'Johor Bahru, Johore', '@10th_xinyi no lah'), (6086, 1950, 'Johore, Malaysia', '@WeiTeckCitaro All about the event right ? :D 7am right ? :D'), (6087, 2060, 'Indonesia', 'Laju gila bapak aku bwk kreta :(('), (6088, 1250, 'Singapore', '@Real_Liam_Payne Hello:) *bad start* anyways,umm hrs a question wat is the one thing that u will cling onto until the last day of ur life?'), (6089, 2061, 'Johore, Malaysia', 'Dinner at la nonna. Delicious pasta. Alfresco. Loud music blastin'' at joint beside. Feels like I am in party zone.'), (6090, 2062, 'Johore, Malaysia', 'is brought to you by the letter M and the number 3 (@ McDonald''s) http://t.co/9cLpJvl1'), (6091, 2063, 'Plentong, Johor Bahru', 'Badan lemah tahap gaban...nk dmm ke ni?:('), (6092, 1773, 'Johor Bahru, Johore', 'You surprised me :x'), (6093, 1379, 'Johor Bahru, Johore', 'My parents super #kiasu lol. June holidays the trip already booked.'), (6094, 1936, 'Malaysia', '#sekolahakuada filthy rich kids :/'), (6095, 2064, 'Johor Bahru, Johore', '@VANNNNNNS I nvr go!!'), (6096, 2020, 'Plentong, Johor Bahru', '@MohdZahriSafri baik bang bk.. Saya sampaikan utk abg k.. Hehehehe'), (6097, 2065, 'Pulai, Johor Bahru', 'Nite..nite.. Aduih la hai, malam ni jugak la ada ''jiran'' aku dok bergendang dalam umah. Masa siang2 taknak bergenda... http://t.co/CkPrXDtp'), (6098, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Boooo shaz! :P'), (6099, 606, 'Johor Bahru, Johore', '@Charmiann not I decide de uh. Kns. Your daddy diamond card member is it?'), (6100, 2066, 'Plentong, Johor Bahru', '@a_dli mana datang nya controller. maleh den nak boli.'), (6101, 1950, 'Johore, Malaysia', '@WeiTeckCitaro Only 3write will you be free 1 write report :D'), (6102, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar @muhdtaufiqsahir tknak!! nnt die beli teddybear hitam macam dia :''( aku nak teddybear slain colour kulit dia!!! *joget joget *'), (6103, 2067, 'Johor Bahru, Johore', 'Working!! -.-" bored'), (6104, 2068, 'Johor Bahru, Johore', 'I''m at Springdale Condominium (Singapore) http://t.co/YXFp5qLl'), (6105, 797, 'Johore, Malaysia', 'I''m at Marina Bay Sands Casino (Singapore, Singapore) http://t.co/cA3V30S3'), (6106, 1060, 'Plentong, Johor Bahru', 'Where is my #asampedas!'), (6107, 21, 'Johor Bahru, Johore', 'Ikan kuning masak celok (kelar-kelar). Favourite. Lazzzzat'), (6108, 138, 'Johore, Malaysia', 'Need to sleep. My mind going crazy again. Psychological problem TT'), (6109, 2069, 'Johore, Malaysia', '@starrychuckie @imranmisnawi Wt you invent that antidote la ! Doctor what! Hahaha!'), (6110, 1773, 'Johor Bahru, Johore', '@lourdestanzx YOU SAW RIGHT?!'), (6111, 2070, 'Riau, Indonesia', 'wtf? "National Condom Day"'), (6112, 2042, 'Johore, Malaysia', '@Mell108_tw ..Umm ya she''s part of them..'), (6113, 2060, 'Indonesia', '@AimanHakeemA seriuos bro. .'), (6114, 2071, 'Johore, Malaysia', 'Four baskets of fruits/flowers after 7 hours of being warded. Dad is so blessed! Al @ Kent Ridge Wing @ NUH http://t.co/zIVeeItV'), (6115, 1993, 'Kota Tinggi, Johore', '#nowplaying Bigbang BLUE~~~~~ IM SINGING MY BLUES~~~'), (6116, 585, 'Johore, Malaysia', 'was suppose to be studying and i ended up slacking online'), (6117, 836, 'Johore, Malaysia', '@deeeeelim oooo looks good! I want^^'), (6118, 1401, 'Johor Bahru, Johore', 'Pasar malam food nice only ~'), (6119, 878, 'Plentong, Johor Bahru', 'Dinner time kikiki (@ Teraju Tomyam, Stulang Laut) [pic]: http://t.co/UaWFXb3O'), (6120, 1654, 'Johore, Malaysia', 'Just posted a photo @ Bedok Point Mall http://t.co/6DIOdGNI'), (6121, 1957, 'Johore, Malaysia', 'This place damn chill. (@ Peperoni Pizzeria w/ @damnshiokplease) http://t.co/GD9pb2t4'), (6122, 2072, 'Kota Tinggi, Johore', 'Hate sunburns ...'), (6123, 2073, 'Johor Bahru, Johore', 'SLEPT FOR 4HOURS(: WHEE:D'), (6124, 525, 'Johore, Malaysia', '@dandenial whats up? :0'), (6125, 1244, 'Johor Bahru, Johore', 'I''m at Sports Link @ Ang Mo Kio http://t.co/DgkC92nX'), (6126, 141, 'Johor Bahru, Johore', 'I love HEE JUN HA so animated.. #bubbly'), (6127, 1915, 'Johore, Malaysia', 'I''m at The Cathay Cineplex (Singapore) w/ 4 others http://t.co/hEkszFzi'), (6128, 1245, 'Johor Bahru, Johore', '@GLuozhixiangSY who cares about the rest of kpop man I only focus on one LOLL.'), (6129, 2020, 'Plentong, Johor Bahru', '@MohdZahriSafri ok.. Jgn lupa bawak baju terus.. Kira ikut saya bermalam ngan chow terus'), (6130, 1651, 'Pulai, Johor Bahru', '@HananiZolzali aku guna ipad kak syazreena. Kau tak logout kau punya twitter ~'), (6131, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing Wo yi Jing send le Ma , see how u reply LOL'), (6132, 2007, 'Singapore', 'biasa lg banyak duit jd trbang ksana ksini hahaha :D mo ikut? RT @espanolasz Jangan ath ...( ˘͡-˘͡) .. Knapa km jalan2 mulu sih'), (6133, 1744, 'Plentong, Johor Bahru', '@IrmaAfifahAtika arrisya ?? HAHAHAHAHA bukan dia sorry :)'), (6134, 2074, 'Johore, Malaysia', 'the @buymeadrinkapp girls stopped by @porn''s really? We are still trying to figur @ Porn''s - Sexy.Thai.Food http://t.co/K65JEQhG'), (6135, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY shisha time dik..'), (6136, 186, 'Johore, Malaysia', '@CyberHarpieLady Funshot! :D'), (6137, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan mana boleee!! awak baby tkcomel Dia baby comel!!!'), (6138, 2075, 'Johore, Malaysia', 'Miss my BBQ food ! (@ Newton Circus Food Centre w/ 9 others) http://t.co/JnkN0acd'), (6139, 2073, 'Johor Bahru, Johore', '@Debbie_Koh Debbie. Seriously'), (6140, 1881, 'Pulai, Johor Bahru', '@zafinahz x pe aku buat2 x tau n x paham...'), (6141, 117, 'Johore, Malaysia', 'Oh how we tried..'), (6142, 2076, 'Johor Bahru, Johore', 'Studying efc now. Tmr efc ca exam le zzz. Hope can get better result:)'), (6143, 476, 'Johore, Malaysia', '@RusydiRosli haa kat mana'), (6144, 68, 'Riau, Indonesia', '@vfradenarieff sabar yaa dek,cnta emg gt huhu'), (6145, 1701, 'Plentong, Johor Bahru', '@MohdHakem saja nak snap2,HAHA'), (6146, 2060, 'Indonesia', 'Wakaka. . 125z nk cucuk kreta aq tk dpt :D'), (6147, 1285, 'Johore, Malaysia', 'Hahaha talaga?! Saan? How? Why? :) the world is too small! Haha RT @kaycekayce finally met sonny last night! Hehe :)'), (6148, 433, 'Johore, Malaysia', 'Final rehearsal for Saturday... (@ SLO @ Stamford Arts Centre) http://t.co/s1XoLlsH'), (6149, 433, 'Johore, Malaysia', 'I just ousted Qingfa B. as the mayor of SLO @ Stamford Arts Centre on @foursquare! http://t.co/AdWIjwHz'), (6150, 2047, 'Singapore', '@captfabrejas Hmm kenneth never say whether he going leh..... But i think got the girls~'), (6151, 1354, 'Plentong, Johor Bahru', '@fedeli_omar1 ur welcome...hehe...'), (6152, 186, 'Johore, Malaysia', '@CyberHarpieLady YES I IS SO NERVOUS!!!'), (6153, 762, 'Johore, Malaysia', '@dinowoo_ no wonder never upload the pics that we take (;'), (6154, 206, 'Singapore', '♥ Gain &amp; Jokwon ♥ Hyung Joong &amp; Hwang Bo ♥ Yonghwa &amp; Seohyun ♥ Nichkhun &amp; Victoria ♥'), (6155, 606, 'Johor Bahru, Johore', 'Who wanna go food fair @ suntec tomorrow?!'), (6156, 117, 'Johore, Malaysia', '@MahdiFatty dafugggg? LOL'), (6157, 1245, 'Johor Bahru, Johore', '@J_uxtapose hi!'), (6158, 2077, 'Johore, Malaysia', '@chechebureche16 @jajareynoso @teresaermita @melsckie nay ja saan ka??'), (6159, 1769, 'Plentong, Johor Bahru', 'Raya kedua 2011 . i like blue :) http://t.co/rhyTOZYM'), (6160, 1173, 'Plentong, Johor Bahru', 'agak-agak kalau aku masuk hospital ada tak orang lawat aku? *nangis*'), (6161, 2078, 'Johor Bahru, Johore', 'I''m at Blk 278 Tampines Street 22 (Singapore) http://t.co/KD3coOrI'), (6162, 2079, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 8 others http://t.co/DNhCK11l'), (6163, 476, 'Johore, Malaysia', '@Munizmaz yang!aku dh balk megu lepasla'), (6164, 2080, 'Johor Bahru, Johore', 'Done dinner. Had pastamania. (@ Chloe''s Dining Room) http://t.co/zhjkE5xo'), (6165, 683, 'Johor Bahru, Johore', 'the girl keeps staring at me at the hair salon.da Fuck? I''m to awesome is it'), (6166, 1060, 'Plentong, Johor Bahru', '@dakshaff right! twitter is a place for people to express the impression, emotion, and feelings.'), (6167, 2081, 'Johor Bahru, Johore', 'moves like Twilightlicious. “@tarastrong: Hi. I just sent a voice message using VocalTwit! http://t.co/a0aR3Kxs”'), (6168, 1771, 'Johore, Malaysia', '@helloimawesome_ u mind just gotta sync with the body'), (6169, 1725, 'Johor Bahru, Johore', '@Weitinqsim HAHA. Tmr come out sg la you'), (6170, 28, 'Johore, Malaysia', 'Loon coming home tonight, hope he bought me gifts! :)'), (6171, 2082, 'Singapore', 'In 2500 days time, I will be in NYC and the world over living out my dreams. Here''s to dreaming big. (: #2500thTweet'), (6172, 2083, 'Johor Bahru, Johore', 'I''m at 769 Food Hub http://t.co/s1B6omW8'), (6173, 10, 'Singapore', 'You''re different from the rest.'), (6174, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE owh..laa yeke..sianyerr diah..shaz xtau la diahh..sue pon x bgtau shaz..so shaz x tau la yg diah dmam..'), (6175, 1936, 'Malaysia', '#PeopleIWantToMeet myself from the past to stop myself from doing all the mistakes that I''ve done.'), (6176, 1526, 'Malaysia', '@biimqboice 555+'), (6177, 1494, 'Plentong, Johor Bahru', '@SashaLittleMiss gomawooooo :) ajaaaaaa ajaaa hwatinggg..haha'), (6178, 2084, 'Johor Bahru, Johore', '@eSCcee pwede din dito... Dito kana mag work!'), (6179, 1773, 'Johor Bahru, Johore', '@lourdestanzx DAM UNCOMFORTABLE LA , LIONEL WAS LIKE 0.0'), (6180, 2029, 'Johor Bahru, Johore', 'I like it when things get confusing, cause it''s time to crack your brains! Teehee.'), (6181, 48, 'Johor Bahru, Johore', '@OlsenAwesome He will! Definitely will. I didn''t sleep well this few weeks. So much things happen. One shot everything came to me.'), (6182, 2085, 'Plentong, Johor Bahru', 'I''m at Kedai ''Rumah Merah'' (Johor Bahru, Johor) [pic]: http://t.co/orwMVvYG'), (6183, 1786, 'Johore, Malaysia', '@StereoR_ @WongEugene eugene lose liao. rx tmr level 30 eugene level 19. HAHAHAHAH. dont buy same design as me hor! hahaha'), (6184, 76, 'Johor Bahru, Johore', '@KinjiTaisuke oh my god.. Pls dun say that dear .. U can talk to Alee and discuss first. =('), (6185, 206, 'Singapore', 'everytime i wanna type nichkhun and victoria, i always end up typing together khuntoria ♥♥♥'), (6186, 2086, 'Johor Bahru, Johore', 'Doing homework~~ I''m sooo hardworking!! http://t.co/ryTHcpmk'), (6187, 891, 'Johore, Malaysia', 'Veal cheek @ Brussels Sprouts http://t.co/aV3t51eI'), (6188, 2080, 'Johor Bahru, Johore', 'Done bathing (@ Chloe''s Kitchen Bathroom) http://t.co/AiS88Rwt'), (6189, 601, 'Johor Bahru, Johore', 'I''m actually at Night Safari but 4sq is being kinda douchey. (@ Singapore Zoo w/ 2 others) http://t.co/HvcOZKnz'), (6190, 1853, 'Johore, Malaysia', '@DUMBASS_ZIYING who ah?:P haha'), (6191, 1936, 'Malaysia', '@bevfever no bitch like you'), (6192, 1194, 'Malaysia', 'คนที่สั่ง DVD ต่อจากชื่อเรา นามสกุล อินใจเอื้อ ! 5555'), (6193, 232, 'Johore, Malaysia', 'Why are you stealin my mayor which I created for my own dreamland? :( (@  Carebear''s Dreamland ) http://t.co/D0IeL3Gn'), (6194, 484, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall (Singapore, Singapore) w/ 22 others http://t.co/UXgPED9t'), (6195, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa da juga.. Nga watpe?'), (6196, 2087, 'Johore, Malaysia', 'I''m at The Clarence Ville http://t.co/F8wO6B7S'), (6197, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar @muhdtaufiqsahir taknak!!!!!! aku nak yg perut dia besar :-( *hahahahahahaa*'), (6198, 2088, 'Johore, Malaysia', 'I''m at Marina Mandarin Singapore (Singapore, Singapore) w/ 2 others http://t.co/skYB2oGW'), (6199, 195, 'Johore, Malaysia', 'I''m at Redhill Market &amp; Food Centre (Singapore, Singapore) http://t.co/DlmZ46qf'), (6200, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ it in us now. Its on it''s way. I think in 3 days time :)'), (6201, 2089, 'Pulai, Johor Bahru', 'Dine!! (@ 曾记餐馆) http://t.co/3Xh7tlft'), (6202, 1781, 'Johor Bahru, Johore', 'I''m at Giant Hypermarket (Singapore) http://t.co/kpEaWdR3'), (6203, 1964, 'Johore, Malaysia', 'Omg these macaroons are heavenlyyyyyy'), (6204, 324, 'Johor Bahru, Johore', 'They gonna be couple ^^^^^^'), (6205, 1526, 'Malaysia', '@NeayWR_Boice ใช่ เรามีความคิดที่เยี่ยมสุดๆๆๆๆ'), (6206, 324, 'Johor Bahru, Johore', 'Ilikeeee!'), (6207, 1880, 'Plentong, Johor Bahru', 'You, me, ice cream? Okla minus you. Just me me me.'), (6208, 1060, 'Plentong, Johor Bahru', 'I never had a chance to speak up to you. Too bad =('), (6209, 1853, 'Johore, Malaysia', 'Wah tired Liao:( bleh'), (6210, 1936, 'Malaysia', '@AmiraLorr biasa ah zihni'), (6211, 938, 'Johore, Malaysia', '@ScarlettKaylene @Kesterkjw kester now cant reply you , he playing game right now :D'), (6212, 2090, 'Pulai, Johor Bahru', 'Kuey tiau telur! (@ Restoran Heng Hock) http://t.co/0b7zw3Ge'), (6213, 2080, 'Johor Bahru, Johore', 'Done folding the clothes (@ Chloe''s Parents Room) http://t.co/BzL3aa4f'), (6214, 2051, 'Johore, Malaysia', 'separation may b a btr solution . because in times being single is btr than attached'), (6215, 1936, 'Malaysia', '@aaliyamokhtar like me'), (6216, 1173, 'Plentong, Johor Bahru', '@SyafuanMazwan tacing? *geletek*'), (6217, 1781, 'Johor Bahru, Johore', 'Donuts :) (@ J.CO @ Junction 10) http://t.co/8BsY19oP'), (6218, 2091, 'Johore, Malaysia', '@mawienichols LOL awww! dont worry - ill donate to the cause!'), (6219, 2092, 'Johor Bahru, Johore', 'Watching John carter . (@ Golden Village w/ 7 others) http://t.co/aixkCySn'), (6220, 1572, 'Johor Bahru, Johore', 'I haven''t 18 but I probably think that I have a bike already'), (6221, 2073, 'Johor Bahru, Johore', '@Debbie_Koh OKAY. HAPPY LA. DO DANCE. WHEE'), (6222, 467, 'Plentong, Johor Bahru', '@hasan_dean aku nak TANYA kau something ni!!!!!'), (6223, 2093, 'Singapore', '@benedictawesome hahaha yeh, as in, except for Real, Barca and Bayern.'), (6224, 1964, 'Johore, Malaysia', 'Trying out gazillion clothes in Topshop but never buying them. #life http://t.co/ckf3FiB7'), (6225, 2094, 'Johore, Malaysia', '"Would the virus of our history be kept at bay by a cocktail of dollar-denominated humanism?" Shteyngart''s Absurdistan. Brilliant'), (6226, 1196, 'Kota Tinggi, Johore', 'Iya mii, di BM mh lg males bkin PM..RT @IntAn_ImUtsExy: -___- ko bs y "@Kingnugraha: Ada (cont) http://t.co/CaH2oWxy'), (6227, 1880, 'Plentong, Johor Bahru', 'RT @FeeKeeD: Everyone''s lookin fo mom, apparently.. A parent ly.'), (6228, 2080, 'Johor Bahru, Johore', 'In the room. Using lappy. (@ Chloe''s Bedroom ♥) http://t.co/KT9vaANM'), (6229, 2029, 'Johor Bahru, Johore', 'Jealousy doesn''t help anything.'), (6230, 2095, 'Riau, Indonesia', 'Pensinya asik..'), (6231, 1173, 'Plentong, Johor Bahru', '@PuteriSyaheraa tkde papelaaaa :'') missyatwin!'), (6232, 1526, 'Malaysia', '@wararat_amp เหนื่อยมากละสิถึงกลับแล้วหลับ'), (6233, 919, 'Johore, Malaysia', 'Just posted a photo @ The Daily Scoop http://t.co/Fg6YQC5S'), (6234, 2096, 'Johore, Malaysia', 'I''m at EwF by Everything with Fries (Singapore) http://t.co/Rux7HThY'), (6235, 2097, 'Johor Bahru, Johore', 'Homed (@ Edelwiess @Jurong) http://t.co/dRnUQxxp'), (6236, 1849, 'Johor Bahru, Johore', 'Very stuffy in here :('), (6237, 99, 'Johor Bahru, Johore', 'Dear pakcik wru ?? Saya dah lapar nie'), (6238, 2098, 'Johor Bahru, Johore', '@_Tks__ okay :)'), (6239, 2099, 'Johore, Malaysia', 'bumped into @MariamSaat at NUH in her green suit! hehehe.. so cute!'), (6240, 158, 'Malaysia', 'Happy Holiday!!  gonna wake up early tmrw. Picking Nadia to school for a camp.'), (6241, 1396, 'Plentong, Johor Bahru', '@DiyaaLEE hehe..agknye la kowt..hehe..shaz tgh on9 smbil dgr lgu je..diah..??'), (6242, 60, 'Singapore', '@iAttachedToKpop @InsyiraahGemok @popsywhoopsy ok !!!'), (6243, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar @muhdtaufiqsahir hahaaahahahahahaah ketawa sampai lebam'), (6244, 2058, 'Johore, Malaysia', '@hadyy27 takde nye. lain lah klau korang ade buat salah kat farah..'), (6245, 1186, 'Johore, Malaysia', '@JerryT9 chio. How muchiee?'), (6246, 2100, 'Johore, Malaysia', '@FriendSize afraid for tomorrow''s etude challenge ?'), (6247, 503, 'Johor Bahru, Johore', '@MichAnthoney so far so good. At least you know how to reply. What'), (6248, 2101, 'Plentong, Johor Bahru', '@eeewenn do tell!'), (6249, 68, 'Riau, Indonesia', '@vfradenarieff yaa kakak juga gatau critanya dk,kmrn dia gadtg skolah huaa sbr:))'), (6250, 2102, 'Johor Bahru, Johore', '@byulie dun give up .. Have faith .. This are the challenges from the almighty ..'), (6251, 2103, 'Johor Bahru, Johore', '@chokimonste nie lagi lawa pade aku . But kalau kau nk beli mcm tadi nye pon okay arh http://t.co/edAf0e8H'), (6252, 2104, 'Pulai, Johor Bahru', 'I''m at Jalan Layang 2, Taman Perling (Johor Bahru, Johor) http://t.co/52P8CWrH'), (6253, 186, 'Johore, Malaysia', '1/3 of hor fun + 1/2 can of wintermelon tea + 1/2 can of ice lemon tea = I''m full.'), (6254, 1060, 'Plentong, Johor Bahru', 'Save the last dance for me'), (6255, 919, 'Johore, Malaysia', 'I''m at The Daily Scoop (Singapore, Singapore) http://t.co/SzAVoIwe'), (6256, 2007, 'Singapore', 'hakhakhak hayu ah, rabu ntar si ak k riau,trus malay, trus k medan trus k jkt, trus k bandung lg, sok ikut ga? :D HAHA @espanolasz'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (6257, 593, 'Johor Bahru, Johore', 'Told my sis I kinda miss camp. She say she miss me going to camp. Cause she can conquer my room!'), (6258, 1832, 'Johor Bahru, Johore', '@SitiHafidzah hehe. :)) most welcomeeeee! :)) &lt;3&lt;3&lt;3'), (6259, 1936, 'Malaysia', '@bevfever I''m only above average, unlike you Ching chongs'), (6260, 2029, 'Johor Bahru, Johore', 'The more I think of it, the more i''m hating it.'), (6261, 2079, 'Johore, Malaysia', 'I''m at JurongEast (EW24/NS1) http://t.co/ptGnvJUC'), (6262, 708, 'Johor Bahru, Johore', '@JoeyDorayaki where got nonsence'), (6263, 21, 'Johor Bahru, Johore', '@Amiribena ni. Pena mkn? Hahai http://t.co/JGTGpf7q'), (6264, 1773, 'Johor Bahru, Johore', '@lourdestanzx What''s that'), (6265, 1964, 'Johore, Malaysia', '@Anysnysnys I''m going to bugis tomorrow. I can get 2 crop tops for you with rm50. Boleh? :)'), (6266, 158, 'Malaysia', '@syaimaaaa u online Kik kah? Me kan chat wah '), (6267, 3, 'Johor Bahru, Johore', 'Yay, going to made meme^^'), (6268, 2105, 'Johore, Malaysia', 'Best kept secret (@ First Stop Cafe, Holland V) http://t.co/zj7ggdHV'), (6269, 1936, 'Malaysia', '@aaliyamokhtar shorttt skirtt'), (6270, 167, 'Plentong, Johor Bahru', 'Heaven! (@ Tip-top Ikan Bakar) http://t.co/HjSTMf0Z'), (6271, 1873, 'Kota Tinggi, Johore', 'How do 5 gays walk? .... In One Direction.'), (6272, 1408, 'Malaysia', 'I''m at สิทธิ์เจริญราดหน้าเนื้อเด้ง (Hatyai, Songkhla) http://t.co/pSeXTuMF'), (6273, 1935, 'Malaysia', '@zaihuddyแล้วว มึง อา ?'), (6274, 954, 'Johor Bahru, Johore', 'After one hour of crying and thinking.. i thought that u gave me ur trust by showing me things u shouldnt. forgive me.'), (6275, 1748, 'Johore, Malaysia', 'I''m at Share Tea 歇脚亭 (Singapore) http://t.co/yCQIcLDo'), (6276, 2106, 'Johor Bahru, Johore', 'I''m at Bus Stop [63249] (Singapore) http://t.co/oYLUUdby'), (6277, 1060, 'Plentong, Johor Bahru', '#np tunggu sekejap by #noh'), (6278, 1526, 'Malaysia', '@NeayWR_Boice *จับมือตอบ*'), (6279, 1943, 'Johor Bahru, Johore', '#cabonara @ Liquids Cafe http://t.co/bpG24JgH'), (6280, 2107, 'Malaysia', 'คนเดียวชิลๆ @ ร้านกุ๊กปุ๊ย (อาหารตามสั่ง) http://t.co/Eef5VdSF'), (6281, 1875, 'Johor Bahru, Johore', '@derppp_ (Y)! Didn''t give him a nickname? Eating some chocolate cake thingy now.'), (6282, 68, 'Riau, Indonesia', 'kangolangma RT @karinaninuuneno: p o l a ciek lu'), (6283, 544, 'Johore, Malaysia', 'Awesome outing with @Evolruoyemllet_ &amp; @Jerwaynehtw! Have so much laughter and talked about the past, fun day. ^^'), (6284, 2093, 'Singapore', '@blackheartesJ what if some weird stalker texts you. OOOOOOOOOOOOHHHHHHHHHHHHHHHHHHHHHHHH'), (6285, 141, 'Johor Bahru, Johore', 'HEEJUN is so animated.. Haha so cute :-)'), (6286, 2073, 'Johor Bahru, Johore', '@Debbie_Koh *dont know what the hell that is but acting crazy* YES DEBBIE BOOM SHAKALAKA'), (6287, 1902, 'Johor Bahru, Johore', 'I''m at Tampines Block 717 (Singapore) http://t.co/Blx49mp8'), (6288, 2077, 'Johore, Malaysia', '@melsckie @chechebureche16 @jajareynoso @teresaermita ma post bga sa fb.... Kaya lg d ako makatag... Shoits..'), (6289, 2108, 'Johor Bahru, Johore', 'Here with Aiman while Hubby go NUH visit his mom &amp; obek. (@ KNK Klan Abode) http://t.co/OTkqK9Ou'), (6290, 1873, 'Johor Bahru, Johore', '@ChikaaFeqaa ouh.. Akai lappy ke hp?'), (6291, 2109, 'Johor Bahru, Johore', '有街市! (at Serangon MRT Station) [pic] — http://t.co/byNr8OfS'), (6292, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ yeah. Its a long story hehe. I have been tracking it everyday. Today is its last day in us. So excited hehe'), (6293, 1333, 'Pulai, Johor Bahru', 'I''m at Sri Jaya Village (Johor Bahru, Johor) http://t.co/4pBKxebM'), (6294, 206, 'Singapore', 'U made me feel secure today ♥ But I m still scared yeah torlolol.'), (6295, 1902, 'Johor Bahru, Johore', 'I''m at Michelle Crib. ❤ http://t.co/uKKDEpxM'), (6296, 2110, 'Johore, Malaysia', '@sharon_cuneta12 @iamCullen17 tama po yan,kasi kayo Mega never nagsalita against them,u kept your silence on the issue.'), (6297, 1936, 'Malaysia', '#sekolahakuada kerusi dan table.'), (6298, 117, 'Johore, Malaysia', '@ohmysofiaa waaaaaaaaaaaaah'), (6299, 1866, 'Johore, Malaysia', '@WhyteConfession no la I at kl'), (6300, 1690, 'Johor Bahru, Johore', 'I love soya bean drink!'), (6301, 1672, 'Johore, Malaysia', 'I''m at Japanese Gourmet Town @ Vivocity http://t.co/WERqVCyK'), (6302, 1786, 'Johore, Malaysia', '@StereoR_ @wongeugene the design like mine?'), (6303, 331, 'Johor Bahru, Johore', 'going to do homework tmr!!!'), (6304, 1060, 'Plentong, Johor Bahru', 'Welcome to #lalaland everybody'), (6305, 1304, 'Johor Bahru, Johore', 'I''m at LuvLiLady''s Crib.. http://t.co/XoUc0YAL'), (6306, 56, 'Johore, Malaysia', 'I''ve just realized that me and @TheRealGrimmie were born on March 12. Well, Happy belated birthday Christina #muchlove xx'), (6307, 2111, 'Johor Bahru, Johore', 'I''m at Kovan Heartland Mall (Singapore, Singapore) http://t.co/QDxsIm1V'), (6308, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboi . hye jugek adek omel omel omel omel &lt;3'), (6309, 2018, 'Johor Bahru, Johore', '@yuanjie_89 eh you into k pop uh shorty??'), (6310, 1196, 'Kota Tinggi, Johore', 'Uuuuu baby, baby to wild world.. http://t.co/0s5sdZKG'), (6311, 2112, 'Riau, Indonesia', '("╯_╰)╭ makin cuek kamu yah !! so oke fine ┒(⌣˛⌣)┎'), (6312, 2113, 'Johor Bahru, Johore', 'I''m at Baby''s crib! :) http://t.co/oL3LCfyI'), (6313, 411, 'Johor Bahru, Johore', 'I can be With you.'), (6314, 322, 'Johor Bahru, Johore', 'I''m at Century Square (Singapore, Singapore) w/ 2 others http://t.co/42vWVWa3'), (6315, 22, 'Johor Bahru, Johore', '@xiaowang123 ))):kkay'), (6316, 1772, 'Johor Bahru, Johore', 'If you were to buy a CAMERA now, what brand and model? I need SERIOUS HELP 0:)'), (6317, 2073, 'Johor Bahru, Johore', 'I LOVE MY BLOG. BUT NEVER UPDATE'), (6318, 2114, 'Johore, Malaysia', 'Prelim papers finally over~ On my way home for Unriddle 2.'), (6319, 2115, 'Plentong, Johor Bahru', 'Night session.. (@ Clark Hatch Excite w/ 2 others) http://t.co/zG9vtGjw'), (6320, 1929, 'Indonesia', 'Brnk mhaaa nee smbil ngtwitt ,, !!! :P\nWq pang ap d''plh ?? RT @Tharie_yiyie'), (6321, 686, 'Johor Bahru, Johore', 'I''m at Brick Side, Lake Front, Punggol Park http://t.co/6O2fVBy1'), (6322, 206, 'Singapore', '@bunnybaby1315 ikr cant be separated ♥ LOVETHEM AND MISSTHEM ♥'), (6323, 1246, 'Johore, Malaysia', '@nyonyakinah yup. Acca'), (6324, 1354, 'Plentong, Johor Bahru', '따끈따끈 &gt;ㅂ&lt; http://t.co/pGUnRHSH http://t.co/gSuUDsdy http://t.co/eKc0DvU0 -- fitrah_zaini (@fitrah_zaini)'), (6325, 1140, 'Johor Bahru, Johore', 'Okay seriously need to do my homework now grrrr'), (6326, 2057, 'Johor Bahru, Johore', '@Syahmeeeee Damn it lh'), (6327, 2007, 'Singapore', 'buset, bilangin om asep siah -.- serem amat :p RT @espanolasz Pngn sambil nonjok km gni baca ni twit "'), (6328, 1196, 'Kota Tinggi, Johore', 'I''m at Rocky hill field http://t.co/1h6XtSxk'), (6329, 849, 'Johore, Malaysia', 'Dessert time! @ KuiShin-Bo @ Suntec City Mall http://t.co/ral3miSC'), (6330, 682, 'Johore, Malaysia', 'I''m at 336, Ubi Avenue 1 http://t.co/waVLkNyr'), (6331, 331, 'Johor Bahru, Johore', 'i miss watching step up 3 with xhe band already. we had so much fun, didn''t we?'), (6332, 2116, 'Johor Bahru, Johore', 'With fhir now :)(: (@ Pondok 8 @ Tampines Ave 5) http://t.co/KxV8AQwi'), (6333, 99, 'Johor Bahru, Johore', 'Alamak grandpa...how to celebrate and eat many2 on sunday when you have no teeth ?'), (6334, 2117, 'Plentong, Johor Bahru', 'Celebrate kejayaan pusing dunia! (@ Food Court Kg Melayu) http://t.co/zHtSBMFu'), (6335, 81, 'Johore, Malaysia', 'yeah i can''t afford.'), (6336, 762, 'Johore, Malaysia', '@dolphinekpop Chey!!!'), (6337, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @lkmariquit @rinabanana @sheslley level up gd ang kakapoy! hows life dra?'), (6338, 2018, 'Johor Bahru, Johore', '@AminAyub @izzoth @ahmadmurtadha Weee~ eh I miss you guys la!!! &lt;3'), (6339, 1936, 'Malaysia', '#BestThingAboutBeingSingle IM RICHER THAN MY FRIENDS WHO ARE IN A RELATIONSHIP'), (6340, 68, 'Riau, Indonesia', '@vfradenarieff masa gatau sih dek?tau pasti.masa sparah itu dia ndk tau ndk mungkin!!'), (6341, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing LOL BEEN VERY LONG SINCE THAT HAPPENED LOLOL'), (6342, 1463, 'Johor Bahru, Johore', 'I want to watch devil inside me . Pls oh pls .'), (6343, 21, 'Johor Bahru, Johore', 'Time to roll you pimples like a meat. Dayyum http://t.co/SUoL8QcI'), (6344, 2118, 'Singapore', 'Too many people playing Draw something with me.'), (6345, 2073, 'Johor Bahru, Johore', '@Candykqx WAH. SCARY. SCARY'), (6346, 2098, 'Johor Bahru, Johore', '@_Tks__ really ??'), (6347, 2119, 'Johore, Malaysia', 'All-day long @ Kompong Phluk - Floating Village http://t.co/ESThf74V'), (6348, 1862, 'Johor Bahru, Johore', '#nowplaying- Warwick Avenue'), (6349, 2120, 'Plentong, Johor Bahru', '在我以为你是我在这个是世界上所遇到的真心朋友,但到现在我才知道并不是,你一直在利用我,或许我应该重新审核我和你真正的关系。。。'), (6350, 2121, 'Kota Tinggi, Johore', 'I''m at Blk 664C, Jurong West St 64, Singapore 643664 http://t.co/loTt05X8'), (6351, 1956, 'Plentong, Johor Bahru', 'Just checked in at Giant. Shopping part 1 4 my Nepalese + Flores. Either 1 round at 1 go @ twice shopping 2nite.\n\nHurmmm !!'), (6352, 889, 'Johore, Malaysia', '@HannahCouzens haha sorry! ;-) I will soon be boarding a 14 flight, so I doubt you''re jealous of that.'), (6353, 544, 'Johor Bahru, Johore', 'Shall plan another outing at sentosa!'), (6354, 1936, 'Malaysia', '@aaliyamokhtar mana Ada lagi short Dari Sri garden'), (6355, 117, 'Johore, Malaysia', 'Proving someone you love that you can find someone better thinking that you can make them jealous but only pushes them further.'), (6356, 2118, 'Singapore', 'I just focus on people who have more than 10 turns with me'), (6357, 1936, 'Malaysia', '@bevfever no u'), (6358, 2122, 'Johore, Malaysia', 'I''m at My Piggeh Room  (Singapore) http://t.co/w01HsAVd'), (6359, 331, 'Johor Bahru, Johore', 'i hate periods!'), (6360, 1881, 'Pulai, Johor Bahru', 'Pelaburan harini RM25... sigh! diketuai oleh my big bird http://t.co/cjaSk8vT'), (6361, 2123, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre w/ @yellowpampers http://t.co/1SF42NCW'), (6362, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa ouh..'), (6363, 2000, 'Kota Tinggi, Johore', 'SHAWOLELF ONLINE? RT me'), (6364, 1865, 'Indonesia', 'aishh bb cap nggomek ancen -,-"'), (6365, 682, 'Johore, Malaysia', 'Eating guilingao :) (@ Andreaa''s Cave!) http://t.co/XA2nu6Am'), (6366, 2124, 'Singapore', '@syaifaaaaa Bolehhh :))'), (6367, 1470, 'Malaysia', 'พาหม่อมแม่กับเสด็จพอมาเลี้ยงงง (@ ครัวต้นตาล) http://t.co/0BRwN2AT'), (6368, 301, 'Johore, Malaysia', 'I''m at The Shoppes at Marina Bay Sands (Singapore, Singapore) w/ 9 others http://t.co/MmKZ0B3U'), (6369, 3, 'Johor Bahru, Johore', '@channel_u the meme thing we need to do base on show Hand? Pictures based on show hand info based on show hand?'), (6370, 1875, 'Johor Bahru, Johore', '@derppp_ Bad.Ass. http://t.co/2oCDNqpX'), (6371, 48, 'Johor Bahru, Johore', '“@CosyMossie: Treasure moments”'), (6372, 836, 'Johore, Malaysia', '@YunCaiKEN blah( hmp =3='), (6373, 21, 'Johor Bahru, Johore', '@Amiribena ni name boyan ah aku rase. Same tk gmbr de ?'), (6374, 2125, 'Johor Bahru, Johore', '@uehara_chi why watch movie alone? So emo?'), (6375, 1903, 'Kota Tinggi, Johore', '@adrenaaa you scare of him leh :) hahaad'), (6376, 1539, 'Johore, Malaysia', 'RT @AudiFashionFest: Audi Fashion Festival newly revamped website, have a look: http://t.co/w0X4FtXS'), (6377, 1245, 'Johor Bahru, Johore', '@Vpxnluvz why never come today!'), (6378, 2126, 'Kota Tinggi, Johore', 'Dinner ^^ (@ Jurong Point w/ 24 others) http://t.co/HbpHOij3'), (6379, 331, 'Johor Bahru, Johore', '@ArvinthPs No probs! C:'), (6380, 1773, 'Johor Bahru, Johore', '@heyhihoe u play Jubeat?'), (6381, 1865, 'Indonesia', 'cuss nonton PAA'), (6382, 1950, 'Johore, Malaysia', '@WeiTeckCitaro Okay la :P still same event no different :D'), (6383, 1936, 'Malaysia', '“@AmiraLorr: #sekolahakuada aku” LOL'), (6384, 1981, 'Johor Bahru, Johore', 'Shouldn''t have left netball.'), (6385, 48, 'Johor Bahru, Johore', '@OlsenAwesome until everything is totally settle down then I can rest more.'), (6386, 2127, 'Johor Bahru, Johore', 'I''m at home sweet home !  (Singapore) http://t.co/KzTiAjB0'), (6387, 2128, 'Pulai, Johor Bahru', 'Buying food for the unexpected guests. (@ Restoran Zunita Rabu) http://t.co/j7fZI6P3'), (6388, 2129, 'Johor Bahru, Johore', 'I''m at Ci Yuan CC (Singapore) http://t.co/mDyOWy5H'), (6389, 387, 'Johor Bahru, Johore', 'Drinks anyone? (@ Goldenhill Park Condo) [pic]: http://t.co/cquBsztc'), (6390, 331, 'Johor Bahru, Johore', 'we are young. glee. #np'), (6391, 2130, 'Johore, Malaysia', 'Trying Bakso Mee (@ You &amp; Mee Noodle Place) http://t.co/zQFswX1T'), (6392, 1865, 'Indonesia', 'someone not perfect'), (6393, 2131, 'Johore, Malaysia', '@slopeysloperidz @ryanhatescyan @rumbleroar95 @simple_panda @kearneyyl AGAIN (@ Eighteen Chefs) http://t.co/AJFksSTk'), (6394, 2132, 'Johore, Malaysia', '@Cik_SriMas amboiii...protect siap..mung tweettttyy ngn sape nie'), (6395, 484, 'Johor Bahru, Johore', 'Beverages pls (@ Gong Cha 贡茶) http://t.co/seR32Gui'), (6396, 1881, 'Pulai, Johor Bahru', 'Kalau study tekun mcm ni best ek http://t.co/pD6meHtE'), (6397, 72, 'Johor Bahru, Johore', 'Hmmm...'), (6398, 1786, 'Johore, Malaysia', '@CELENENG @Celinewang_ shoot back, say" i top scholar how can u shoot me! u top scholar anot?!" hahahaha'), (6399, 2133, 'Johore, Malaysia', 'めっちゃ食ったー!ノルウェー産サーモン刺身を9皿食べちゃったw http://t.co/VlSYZEQC'), (6400, 193, 'Johor Bahru, Johore', 'transfer # 1 (@ Sengkang MRT/LRT Station (NE16/STC) w/ 4 others) http://t.co/ceYZfOwU'), (6401, 1936, 'Malaysia', '@aaliyamokhtar uhm duhh that''s why'), (6402, 1773, 'Johor Bahru, Johore', '@lourdestanzx POKE ME NOT ENOUGH?!'), (6403, 206, 'Singapore', '@bunnybaby1315 true soon i will -.- it;s like 13k people siol :OO'), (6404, 68, 'Riau, Indonesia', 'tukangpolaangma RT@karinaninuuneno: a cek ang ko? RT @IlfaAzlyani kangolangma RT @karinaninuuneno: p o l a ciek lu'), (6405, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY turun jb kita shisha k'), (6406, 2134, 'Johor Bahru, Johore', 'With @Jywj (@ Jerry''s BBQ &amp; Grill) http://t.co/FIVqzoUb'), (6407, 2135, 'Johore, Malaysia', 'jeans &amp; jacket :) (@ UNIQLO) http://t.co/b0Pg7o8x'), (6408, 2132, 'Johore, Malaysia', 'mau jadi isteri setenang malam...ameen.'), (6409, 2136, 'Johor Bahru, Johore', 'Dinner (@ K-Kampung Muslim Seafood) http://t.co/E1SzzXpH'), (6410, 2125, 'Johor Bahru, Johore', 'Waited 1 hour plus for my haircut! :('), (6411, 859, 'Johor Bahru, Johore', '@P_UPPYLOXE Miotv or wat?'), (6412, 1060, 'Plentong, Johor Bahru', 'Kini masuklah waktu fardu solat insya bagi kawasan singapura,johor bahru dan kawasan kawasan yang sewaktu dengannya'), (6413, 1956, 'Plentong, Johor Bahru', 'Wanna safe time, try 2 do it at 1 go &amp; squeeze everything in this medium trolley.\n Let''s try bebeh..'), (6414, 1969, 'Kota Tinggi, Johore', '@ethanjonathan shut up!!!'), (6415, 206, 'Singapore', '@bunnybaby1315 IKR 100+ I DONT MIND WATCHING♥'), (6416, 1534, 'Plentong, Johor Bahru', 'Yeeahhh gomol homework!!!!'), (6417, 1881, 'Pulai, Johor Bahru', 'http://t.co/ex9JvhNR'), (6418, 1173, 'Plentong, Johor Bahru', '@NazihahAhda alaaaa commelnyaaa :'') hehe thankyou sayang :*'), (6419, 2137, 'Johor Bahru, Johore', 'Dinner (@ Sri Bistari Changi Village) http://t.co/mQ3GW7HZ'), (6420, 2138, 'Johor Bahru, Johore', 'Back to the U.K....fun times in asia.'), (6421, 605, 'Johor Bahru, Johore', 'Had a hard time deciding what to wear #girlsproblem'), (6422, 2118, 'Singapore', '@ahdonnng really draw super detail!'), (6423, 2139, 'Johor Bahru, Johore', '@Laiweichang tmr de game how? Gt enough players??'), (6424, 1786, 'Johore, Malaysia', 'I wanna go shopping. But i gave my money to my mom. Y OH Y I SO SMART.'), (6425, 1337, 'Johore, Malaysia', 'Bitch,come at me bro'), (6426, 1875, 'Johor Bahru, Johore', '@derppp_ Badass = Nido. Scrochass= Growlithe. Useless = Paras. Rapist = Hypno'), (6427, 2140, 'Malaysia', 'I''m at N'' Ploy'' S Home http://t.co/Rmft0Lee'), (6428, 2141, 'Johore, Malaysia', 'Stupid bitch!!! Tsk me?? Tsk your hai la. #fb'), (6429, 331, 'Johor Bahru, Johore', 'nothing comes that easy unless you make zhe effort to keep on trying &amp; believe in yourself.'), (6430, 2142, 'Johor Bahru, Johore', 'Im at'), (6431, 1881, 'Pulai, Johor Bahru', 'http://t.co/CI2qD3RP'), (6432, 2011, 'Johor Bahru, Johore', 'Finally~ (@ Bus 109) http://t.co/PZ0Dc20r'), (6433, 2007, 'Singapore', '-.- enknya yg udah nikah, sunnahnya dpt pahala RT @espanolasz Om asep mu sunnah dlu'), (6434, 2036, 'Malaysia', '@nongmildky นอนกลางวันนนน หลับตั้งแต่ บ่ายสามได้ 555555'), (6435, 411, 'Johor Bahru, Johore', '@witheringdreams lol? !'), (6436, 2143, 'Singapore', 'OHMAIGOD #SooHyun1stSolo GO U KISSSSSSSSSS HWAITING! Whoopdeeeeedooo! :)'), (6437, 2144, 'Johore, Malaysia', 'Warwick Avenue by @iamduffymusic, from #SoundHound with LiveLyrics™ http://t.co/5487XrgJ'), (6438, 19, 'Johor Bahru, Johore', '╭∩╮( ̄▽ ̄)╭∩╮\nTis is fr those ppl who don''t knw how to reply ur damn freaking Hp!'), (6439, 117, 'Johore, Malaysia', 'Only you can change yourself , people around can only influence you.'), (6440, 2145, 'Singapore', '@alisyahamran hello babe!&lt;3'), (6441, 10, 'Singapore', 'Imagine. Braces. Rainbow on top. Black/white below.'), (6442, 2147, 'Johor Bahru, Johore', 'I''m at Blk 213 Petir Road http://t.co/dUrZDP0z'), (6443, 1916, 'Johor Bahru, Johore', 'Love ameliarity mwaah mwaah'), (6444, 1812, 'Johor Bahru, Johore', 'In A Relationship Its Not About Not Making Mistakes Its About Making Mistakes and Being Able To Overcome Them...'), (6445, 1903, 'Kota Tinggi, Johore', '@adrenaaa lol Hahahas come luhs my fat hands'), (6446, 1939, 'Kota Tinggi, Johore', '@pamela_merc @yutinggal @cressilda @miumiuna got lah u walk so fast'), (6447, 2007, 'Singapore', 'hahaha tau saja :D @flawlessvai'), (6448, 640, 'Johore, Malaysia', 'I''m at Blk 23 St George''s road http://t.co/xeGIcR8K'), (6449, 836, 'Johore, Malaysia', '@YunCaiKEN :((((( smack u ! Ate le ma!'), (6450, 1382, 'Johor Bahru, Johore', 'Ugh, boring...'), (6451, 1936, 'Malaysia', '#sekolahakuada principle matsaleh'), (6452, 68, 'Riau, Indonesia', '@vfradenarieff ndeh sabar yaa dek,kakak tau kok km cocok sm ara:))'), (6453, 1360, 'Johor Bahru, Johore', 'Knn the shop closed down alr..'), (6454, 1435, 'Johor Bahru, Johore', 'You don''t know how much I hate her when she tried to flirt you.'), (6455, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa nga ddk2 je.. Tktau nk watpe?'), (6456, 2149, 'Johor Bahru, Johore', 'Tell the world I''m coming home ♥ http://t.co/N80ymHSV'), (6457, 1173, 'Plentong, Johor Bahru', '@PuteriSyaheraa haah aku ada netball :''/ balik ptang mesti dh penat Tnggu naik sch jlaaa Kau tu lah! sombong sngat dgn aku --'''), (6458, 206, 'Singapore', 'http://t.co/YUKo19Z2 &lt;3'), (6459, 1360, 'Johor Bahru, Johore', 'Waste my time man..'), (6460, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing ALL IN THE PAST~'), (6461, 640, 'Johore, Malaysia', 'I''m at Bendemeer Secondary School http://t.co/jAoCZqvQ'), (6462, 266, 'Johor Bahru, Johore', 'kenduri arwah!! (@ Block 924) http://t.co/wGqw1xvr'), (6463, 2073, 'Johor Bahru, Johore', '@Candykqx BELL. PUSSY IN THE WELL'), (6464, 708, 'Johor Bahru, Johore', '@blurblurkat o.o ._." my bad ;X'), (6465, 285, 'Singapore', 'Live life today. Tomorrow isnt promised.'), (6466, 2150, 'Johore, Malaysia', 'Rainbow roll @ Sushi Tei http://t.co/B3ehQaoI'), (6467, 2151, 'Johore, Malaysia', 'Watching point of entry now!'), (6468, 1550, 'Johor Bahru, Johore', '@j_neenerz @flyinpotatoes my dear janeen. I''ve not known you well enough to call you pet names. So how about we get round to changing that?'), (6469, 158, 'Malaysia', '“@OhBertieG: #PeopleIWantToMeet @Bertwg97”'), (6470, 206, 'Singapore', '@bunnybaby1315 YEAH. those that got fb lah :x'), (6471, 1360, 'Johor Bahru, Johore', 'Now at west mall walk2'), (6472, 1058, 'Johor Bahru, Johore', 'She certainly enjoy today. When shes happy, im happy too. ((:'), (6473, 1416, 'Johor Bahru, Johore', 'I''m at Blk 858 Woodlands St 83 http://t.co/mTy22Td1'), (6474, 1196, 'Kota Tinggi, Johore', 'Emg couple di BM nampak orng philiphine y mii ???RT @IntAn_ImUtsExy: Cieee pst dSuruh dHps ama s (cont) http://t.co/glNzH07z'), (6475, 2118, 'Singapore', '@AbhishekDGAFD main dgn kamu...sound wrong...lol'), (6476, 2152, 'Johore, Malaysia', 'I''m at KOI Café (Singapore) http://t.co/3xJzStQ1'), (6477, 2153, 'Johore, Malaysia', 'I''m at Artichoke Café + Bar (Singapore, Singapore) http://t.co/RdshSeqg'), (6478, 640, 'Johore, Malaysia', 'I''m at St Wilfrid sports complex http://t.co/9chI2CiS'), (6479, 2154, 'Johor Bahru, Johore', 'I''m at Rumbia LRT Station (SE2) (Singapore, Singapore) http://t.co/m38p8746'), (6480, 138, 'Johore, Malaysia', 'Movie ended already #2Lclassouting , mind going crazy'), (6481, 1206, 'Johore, Malaysia', 'To changi airport (@ Tanah Merah MRT Interchange (EW4) w/ @ndrewthebeauty) http://t.co/zdjI6ytN'), (6482, 2155, 'Malaysia', 'กับพี่นนท์~ (@ ศูนย์อาหารศรีตรัง) http://t.co/nWoRzcDX'), (6483, 2123, 'Johor Bahru, Johore', 'I''m at Subway (Singapore, Singapore) http://t.co/vGJJb0po'), (6484, 1773, 'Johor Bahru, Johore', '@lourdestanzx I know la ! Kidding only~'), (6485, 1881, 'Pulai, Johor Bahru', 'Semangat!!! http://t.co/dazhGRhk'), (6486, 2100, 'Johore, Malaysia', 'Bored...'), (6487, 2156, 'Johor Bahru, Johore', 'And Jesus answered them, saying, The hour is come, that the Son of man should be glorified.'), (6488, 117, 'Johore, Malaysia', 'Duration about a Relationship isn''t important ,It''s about the Love keeps both parties together.'), (6489, 68, 'Riau, Indonesia', 'wkwk hayuum dong :$ RT @tessaaMRD: udah juga mut hehe RT @IlfaAzlyani: udh dunn, kakakcantik? RT @tessaaMRD: udah'), (6490, 2157, 'Johor Bahru, Johore', 'Kak @DyVaNata how a U??? I miss u*peyuk'), (6491, 411, 'Johor Bahru, Johore', 'Time pass so much. When we together.'), (6492, 13, 'Singapore', '@pinkfrost5 T_T'), (6493, 2106, 'Johor Bahru, Johore', 'I''m at Hougang Ave3 Blk18 http://t.co/QXqZT01H'), (6494, 2086, 'Johor Bahru, Johore', '@ZhouJin_ 为什么阿!'), (6495, 1936, 'Malaysia', '@bevfever okay bevillionaire.'), (6496, 193, 'Johor Bahru, Johore', '@ramie2003 awwwww. Treat? LOL'), (6497, 1464, 'Johore, Malaysia', '@JAYYYSIAAH i saw it more than once alr lolllll'), (6498, 2135, 'Johore, Malaysia', 'no toms, this''ll do :) (@ Vans) http://t.co/6OaMSXE2'), (6499, 331, 'Johor Bahru, Johore', '"@raynaaael @hxjeje @NurulSyafiqa11 HAHAHAHA sharing one jacket because it was too cold with @hxjeje and @nurulsyafiqa11 xD"'), (6500, 2158, 'Johore, Malaysia', 'I''m at Hai Tien Lo 海天楼 (Singapore, Singapore) http://t.co/EUFyywoH'), (6501, 81, 'Johore, Malaysia', 'i''ll wait. even if it takes a life time.'), (6502, 2106, 'Johor Bahru, Johore', 'I''m at Adeline''s computer table http://t.co/uMJgpwuv'), (6503, 1769, 'Plentong, Johor Bahru', '@azieraziezie hahahaha . adnan speaking macam tak berterabur lagi kan . haha :D'), (6504, 413, 'Johore, Malaysia', 'Hate it when the cigarette smell stay on the shirts'), (6505, 2159, 'Plentong, Johor Bahru', 'Bismillah. Dinner with friends @borneocafe. :)'), (6506, 714, 'Johore, Malaysia', '为什么人在拥有的时候不好好珍惜等到失去了才来后悔。'), (6507, 2160, 'Singapore', 'Watched LORAX ! so cute !'), (6508, 298, 'Johor Bahru, Johore', 'Grandmother always gives me money &gt;&lt; http://t.co/she5NBOp'), (6509, 413, 'Johore, Malaysia', '@NJingxian fuck you lah'), (6510, 889, 'Johore, Malaysia', '@HannahCouzens work again. Same old :-('), (6511, 2161, 'Plentong, Johor Bahru', 'Shopping! (@ Jusco Bukit Indah Johor Bahru) http://t.co/aXBgmGA7'), (6512, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar blanja aku coolblog!! hntr dpan rumah :D'), (6513, 1812, 'Johor Bahru, Johore', '@WanFlizzow Winston pe hot atau Menthol???'), (6514, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha baru adil . hihi XD ngah tweet ajeee . adek ?'), (6515, 2118, 'Singapore', 'Dear all, please draw something less offensive. Some draw spoon like a sperm'), (6516, 2058, 'Johore, Malaysia', 'out. makan. sembahyang :)'), (6517, 72, 'Johor Bahru, Johore', 'OMG. I hate homework.'), (6518, 81, 'Johore, Malaysia', '@AmirulParker try your best please. hopefully. thanks.'), (6519, 762, 'Johore, Malaysia', '@_Jesusbeloved (; yeahhhh'), (6520, 2162, 'Johor Bahru, Johore', 'I''m at Bus Stop 77281 (Blk 740) (Pasir Ris, Singapore) http://t.co/iDX0wJTw'), (6521, 72, 'Johor Bahru, Johore', 'No mood sia'), (6522, 1786, 'Johore, Malaysia', 'Thanks. RT @Rachelbites: Well done RT @NOTSAPAO: I wanna go shopping. But i gave my money to my mom. Y OH Y I SO SMART.'), (6523, 2163, 'Johore, Malaysia', 'I''m at Banquet w/ @nabilazlkrnain http://t.co/fACuXKno'), (6524, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Apa kau shaz??? Hahhaha'), (6525, 2156, 'Johor Bahru, Johore', 'And I, if I be lifted up from the earth, will draw all men unto me. (John 12:32)'), (6526, 2164, 'Johor Bahru, Johore', 'Sian! Hope my dad reach before me!'), (6527, 1936, 'Malaysia', '@danielzak6 tengok yang barunya haha'), (6528, 1173, 'Plentong, Johor Bahru', '@Ejadddd pegilah check --'''), (6529, 331, 'Johor Bahru, Johore', '"@Mcflurry03 In class now, using @hxjeje phone to tweet since she''s not using... ^^"'), (6530, 1773, 'Johor Bahru, Johore', '@heyhihoe u play Jubeat at century?'), (6531, 2165, 'Johore, Malaysia', 'I''m at Buona Vista MRT Interchange (EW21/CC22) (Singapore, Singapore) w/ 2 others http://t.co/4OVmD3b5'), (6532, 77, 'Johore, Malaysia', 'I''m at Jayz''s habitation http://t.co/MO7yucp1'), (6533, 1875, 'Johor Bahru, Johore', '@derppp_ It was a bitch to catch cuz every one I encountered used roar -.-'), (6534, 2166, 'Johore, Malaysia', 'Blasting music inside the room seriously makes me feel better ...'), (6535, 1528, 'Singapore', '- @shashacandy @goldenjayden @KINGYAAANN @kucing02: there''s band tomorrow at 7pm-9pm. see you guys. SPREAD please.'), (6536, 158, 'Malaysia', '#PeopleIWantToMeet Dominic Herman &amp; Cody Simpson &amp; Bertie Gilbert &amp; Mateen.'), (6537, 762, 'Johore, Malaysia', '@sexayeandiknwit pretty (;'), (6538, 529, 'Pengerang, Kota Tinggi', '@JlngYi Haha i love u ah! Whr will bully u :)'), (6539, 438, 'Johor Bahru, Johore', 'Fucking shuey -.- Go Kofu there play bball also will see ''em . ._.'), (6540, 117, 'Johore, Malaysia', 'Waiting for a Crush that doesn''t like you is like Hoping for something that will never happen.'), (6541, 1673, 'Malaysia', '@_GDRAGONBOTTH โกธรปะเนี่ย -3-?'), (6542, 1856, 'Singapore', '@beastdwlove_ already email eh? :/'), (6543, 2042, 'Johore, Malaysia', '@Mell108_tw N of cos some other people from meh class last year n before.'), (6544, 2079, 'Kota Tinggi, Johore', 'I''m at Boon Lay Bus Interchange (Singapore, Singapore) w/ 4 others http://t.co/ugY7G5JJ'), (6545, 716, 'Johor Bahru, Johore', 'Opened the mailbox, mom opened my bill, asking me why this month is 29.90.. /:'), (6546, 2013, 'Johor Bahru, Johore', '@nanallove haha alright only if there happens to be a next time:). How''s everything:)?'), (6547, 2167, 'Malaysia', 'เย็นตาโฟที่อร่อยที่สุด&lt;3 #คหสต (@ เล่าอึ้งเย็นตาโฟ) http://t.co/fRZ0qgS7'), (6548, 1988, 'Johore, Malaysia', 'Dad playing guitar in my room. \nMe : ( talked in a damn slang tone ) Excuse me if you don''t mind , I needa take a shit. \nDad : -.-'), (6549, 982, 'Johor Bahru, Johore', 'Forgot to bring Hse key'), (6550, 206, 'Singapore', '@bunnybaby1315 IKR THAT PERSON MSUT BE MADSOME. ._. another grp also sec 1 unite, 19k !'), (6551, 2168, 'Johore, Malaysia', 'Now the bio tuition abit.... So fast! I normal leh! Not express! Thanks arh that boy!-.-'), (6552, 99, 'Johor Bahru, Johore', '@LittleMousyy hii :)'), (6553, 2169, 'Johor Bahru, Johore', 'Yay! Outside my condo there got Pasar Malam! #UhUhSiol'), (6554, 1058, 'Johor Bahru, Johore', '@shawtypearl Future talk?'), (6555, 1433, 'Johore, Malaysia', 'Gonna bath n sleep!!!'), (6556, 438, 'Johor Bahru, Johore', 'At 188 playing Basketball just now :D'), (6557, 2170, 'Johor Bahru, Johore', 'I have no idea what to do now....'), (6558, 2135, 'Johore, Malaysia', 'Dinnneerrr! (@ KFC) http://t.co/EJvk199H'), (6559, 1928, 'Johore, Malaysia', 'shop @ 313@Somerset http://t.co/gnAmfMCE'), (6560, 2171, 'Johore, Malaysia', '@JasrianJ june holiday nk ride'), (6561, 1786, 'Johore, Malaysia', '@tingquan @WongEugene @StereoR_ rx, dont buy my design black one. cause that one is tq one.'), (6562, 2172, 'Johor Bahru, Johore', 'Boom Shakalaka! #nowplaying'), (6563, 1936, 'Malaysia', 'I''m at PREP(Setiawangsa) Learning Centre (Kuala Lumpur, Malaysia) http://t.co/QKQJg9pr'), (6564, 453, 'Johor Bahru, Johore', 'I''m at Chi Yuan Coffee | 祭源咖啡 (Serangoon North, Singapore) http://t.co/P6fVuKdh'), (6565, 714, 'Johore, Malaysia', 'When I saw him make me think of YOU. I miss you....'), (6566, 2173, 'Johor Bahru, Johore', '@Sheryllim_ eh pai seh I c wrong.haas.'), (6567, 1223, 'Johore, Malaysia', 'Just 30 mins lets go... (@ Bedok Swimming Complex w/ 2 others) http://t.co/ZxKxYS1R'), (6568, 2042, 'Johore, Malaysia', 'Don''t know to miss or to Forget.'), (6569, 2144, 'Johore, Malaysia', 'Rolling in the Deep (Live from iTunes Festival: London 2011) by @linkinpark, from #SoundHound http://t.co/WB3ekeht'), (6570, 1494, 'Plentong, Johor Bahru', 'Tolong jangan pakse spend money banyak sngt ini hari.kewangan yg kukuh dah runtuh lepas habis bli brg asgmnt..'), (6571, 81, 'Johore, Malaysia', '@InsyiraahGemok but, not addictive.'), (6572, 487, 'Johore, Malaysia', 'Laughing at @IsaacChuwy''s horrible.attempts at drawing spinach HAHAHA'), (6573, 667, 'Johore, Malaysia', 'Wednesday, I''m going to miss school on Wednesday. :('), (6574, 204, 'Johore, Malaysia', '@iamMrsGonzy hahaha gusto ko ipatry sa kanya pork tapa :)))'), (6575, 606, 'Johor Bahru, Johore', 'Want go food fair tomo At suntec? @sherlynwsm @aijoueunice @helloiamxinhui @ANGZHIYONG @PeiYeeThePiglet @Kiandalyn @Ohzhizhong @NicholasYap3'), (6576, 1786, 'Johore, Malaysia', 'that denim shirt so nice.......'), (6577, 2013, 'Johor Bahru, Johore', 'Soccer twice a day I must be mad:)'), (6578, 2145, 'Singapore', '@alisyahamran Idm babeh!'), (6579, 2174, 'Malaysia', 'I''m at เล่าอึ้งเย็นตาโฟ w/ @o0icezzzaa0o http://t.co/2IN5kPoK'), (6580, 2175, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall (Singapore, Singapore) w/ 21 others http://t.co/FQ7YtfpC'), (6581, 1528, 'Singapore', '- woo hoo! i got easter chocolate from Hotel Chocolat. =]'), (6582, 2118, 'Singapore', 'I have so many things to do but I just have no mood.'), (6583, 206, 'Singapore', '@DioneKoh @bunnybaby1315 omg ikr. so despo sia....'), (6584, 1929, 'Indonesia', 'RT @PEPATAHKU Hubungan yang benar itu... Mencintai tanpa syarat... Memberi tanpa alasan... Mempedulikan tanpa berharap...(*^▽^*)'), (6585, 68, 'Riau, Indonesia', 'tu yoo tu (y) sia ang ola? RT @karinaninuuneno: bialah dang dr pdo kanai pola ancak mamola RT @IlfaAzlyani tukangpolaangm'), (6586, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing which guy? LOL'), (6587, 1862, 'Johor Bahru, Johore', 'My hearts skips a beat every time I see you. My heart beats a million times faster every time you stand next to me.'), (6588, 438, 'Johor Bahru, Johore', 'Now waiting for bus go home ^^ Tomorrow Tongue Piercing , needa rest more ^~^'), (6589, 1500, 'Johor Bahru, Johore', 'I''m at Tampines BLK 433 http://t.co/WSbRGP8K'), (6590, 141, 'Johor Bahru, Johore', 'KPOP STAR hunt.. Owww i wanna join.. And go to korea.. Is it?'), (6591, 1528, 'Singapore', '@o____0____o: so fast?!'), (6592, 2176, 'Riau, Indonesia', 'apa tu....'), (6593, 2177, 'Johore, Malaysia', '@nixxxy aawww namiss ko st.jude!!!:('), (6594, 2178, 'Malaysia', 'selamat malam semua yang mana buka program ini'), (6595, 1500, 'Johor Bahru, Johore', 'I''m at Living Room  http://t.co/o0wPFXh4'), (6596, 606, 'Johor Bahru, Johore', '@sherlynwsm @aijoueunice why not!!!! ): if no people go I ask my parents go. LOL'), (6597, 331, 'Johor Bahru, Johore', '@raynaaael @NurulSyafiqa11 yeah. heh. And sleeping by zhe benches last night. Awesome. &lt;: &lt;3"'), (6598, 670, 'Pulai, Johor Bahru', 'I''m at Mc Donald''s @ Perling Mall (Johor Bahru, Johor) http://t.co/Rwsbp8Le'), (6599, 158, 'Malaysia', 'No nice movies kah tonight? American Idol is boring since Simon Cowell was leaving.'), (6600, 529, 'Pengerang, Kota Tinggi', 'Awww! So sad! Its getting louder and louder :x'), (6601, 81, 'Johore, Malaysia', 'how long will i live on this earth, i keep pondering over it.'), (6602, 244, 'Johor Bahru, Johore', 'Home n mee pok time! Office at 930 tml den gym all e way b4 home to pack stuff! &lt;3'), (6603, 1936, 'Malaysia', '@bevfever I''m good at giving others nickname but not myself'), (6604, 2179, 'Johor Bahru, Johore', 'Juliana''s thoughts on path is making me miss the times at sch and the hangout with the clique!'), (6605, 2159, 'Plentong, Johor Bahru', '@Damia_Karim wah...statement...letuuup... ;) #like'), (6606, 2181, 'Plentong, Johor Bahru', 'I bought something that my siblings will be happy for.. :) im happy too =) #THEBESTSIATE'), (6607, 388, 'Johore, Malaysia', 'It''s been a looong time since I had Indian meal. And my favourite Indian Rojak (Y) http://t.co/EG1xuaJI'), (6608, 1812, 'Johor Bahru, Johore', 'Hmmm Woman in Black sounds interesting movie...Should I watch it tmr w my friends???'), (6609, 2182, 'Johore, Malaysia', '@YingYingSmiling lol!! U werking full shift?...serious meh ?'), (6610, 981, 'Riau, Indonesia', '@fennyameliia Fen. MM 1-20n udh siap? foto abis tu tag ke fb aku la. coz punyaku sam si uthe :('), (6611, 2183, 'Johore, Malaysia', 'Dinner, white radish soup @ Five Star Hainanese Chicken Rice http://t.co/5OkRHxun'), (6612, 1875, 'Johor Bahru, Johore', '@derppp_ I had to use rapist to hypnotize it. And then caught it with a regular pokeball~'), (6613, 1786, 'Johore, Malaysia', '@tingquan @wongeugene @stereor_ he said he want buy the april shirt la.'), (6614, 2184, 'Johore, Malaysia', 'I''m at Dhoby Ghaut MRT Interchange (CC1/NE6/NS24) (Singapore, Singapore) w/ 5 others http://t.co/OxczK4mn'), (6615, 2185, 'Johore, Malaysia', 'TSKTSKTSK... http://t.co/rK0fxljC'), (6616, 679, 'Johor Bahru, Johore', 'Dinner~'), (6617, 1742, 'Johor Bahru, Johore', '@atyyqahlalala hahaha but its okay honey muahh muahh haha i dont mind:)'), (6618, 2186, 'Johor Bahru, Johore', 'I''m at Bus Interchange Berth 168 (Singapore) http://t.co/KZYK8iH2'), (6619, 445, 'Malaysia', '@TUAN_TH จะไปไหน--?'), (6620, 411, 'Johor Bahru, Johore', 'Annoying sia, My phone keep got sounds abt got mails. Siann.'), (6621, 2187, 'Plentong, Johor Bahru', 'I hate people who talk about their night life online. What''s the point ? Who you trying to attract? It just makes you look immature.'), (6622, 1691, 'Johore, Malaysia', 'Blue light stick ! &lt;3 (@ Blk 351 Clementi Ave 2) [pic]: http://t.co/0iZYbvWZ'), (6623, 1936, 'Malaysia', '@LeTroublemaker Nabil naidu? LOL'), (6624, 56, 'Johore, Malaysia', 'She will fall again. And again.'), (6625, 430, 'Johor Bahru, Johore', 'I''m at Newcourt :) http://t.co/kWMuw14U'), (6626, 2188, 'Kota Tinggi, Johore', 'Fellowshipping with CG.. :) (@ Nihon Mura @ Jurong West Sport Complex) [pic]: http://t.co/ncYcBWYu'), (6627, 158, 'Malaysia', 'I wish  “@TheseDamnQuote: You text him, he doesn''t text back. He was obviously so excited that you texted him that he fainted.”'), (6628, 1350, 'Riau, Indonesia', '? RT @fadh_diabolic tidak ada respon. paling malas kerja, klo org y gk bisa di ajak co-operative gini.. #NoResponse'), (6629, 2007, 'Singapore', 'udah gede gini -.- @espanolasz'), (6630, 422, 'Johor Bahru, Johore', 'Fifa street so far best. :)'), (6631, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing POOO POOO'), (6632, 1981, 'Johor Bahru, Johore', '@dacrazyweirdone check school website.'), (6633, 716, 'Johor Bahru, Johore', '@tripodmonster my phone bill~'), (6634, 1865, 'Indonesia', 'jangan samasamain aku sama dia , kita berbeda kita tak sama kita tak searah ._.'), (6635, 913, 'Johor Bahru, Johore', 'I''m at R E N E E '' S H O M E http://t.co/djngUU3M'), (6636, 1383, 'Johor Bahru, Johore', 'Finally ,\nI done all my homework .\nHURRRRRRAY :D !'), (6637, 679, 'Johor Bahru, Johore', '@ReinaTaeminnie OIIII'), (6638, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE ntah diahilang ke mana entah...hahaha'), (6639, 2172, 'Johor Bahru, Johore', '@zlkhspmc My alarm ringtone is fantastic baby! ^~^'), (6640, 606, 'Johor Bahru, Johore', '@helloiamxinhui @aijoueunice let''s go!!!'), (6641, 982, 'Johor Bahru, Johore', '@fernnny chill chill!'), (6642, 1258, 'Singapore', '@jascurtissmith , what time airing ng nandito ako dyan sa philippines?'), (6643, 1435, 'Johor Bahru, Johore', '#PeopleIWantToMeet @OnlyNoah @NaomiNeo_ @speishi !'), (6644, 790, 'Johor Bahru, Johore', 'Sigh... Idk, seems like im wasting my time away..'), (6645, 1875, 'Johor Bahru, Johore', '@belindadrs Jadul gila.. Belum, besok. Gak banyak to?'), (6646, 2189, 'Johor Bahru, Johore', '@shaweewor Gee thanks!'), (6647, 2190, 'Johore, Malaysia', 'シンガポールの人道支援団体マーシーリリーフがどんな風に日本を支援したか説明中。 http://t.co/56Yq7b9F'), (6648, 1936, 'Malaysia', '@madihahnikfuad ponteng lagi la tu'), (6649, 2191, 'Johore, Malaysia', 'Kau kutok aku macam aku takde perasaan gitu .'), (6650, 484, 'Johor Bahru, Johore', 'Almost there (@ South View LRT Station (BP2)) http://t.co/VWSFrtzR'), (6651, 1837, 'Singapore', '@BABYITSZELO Break my heart :('), (6652, 413, 'Johore, Malaysia', '@NJingxian know what?'), (6653, 2192, 'Johor Bahru, Johore', '@Lil_Whack woah thanks yo homiie'), (6654, 1753, 'Johore, Malaysia', 'Dinner with mates (@ PastaMania w/ 2 others) http://t.co/vx9lJCD2'), (6655, 963, 'Johore, Malaysia', 'I''m at Carl''s Jr. (Singapore, Singapore) http://t.co/XJtXnMkG'), (6656, 206, 'Singapore', '@bunnybaby1315 @DioneKoh woah means i cant have eh? xDD they damn despo, take the grp as dating site HAHAHA.'), (6657, 2190, 'Johore, Malaysia', '仕事とはいえ、ちょっと酔っ払っての参加は申し訳ない。'), (6658, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing u like that tweet , shud be guy de ma LOL'), (6659, 652, 'Riau, Indonesia', '@helensafitrigc alhamdulillah baik helen;;)'), (6660, 244, 'Johor Bahru, Johore', 'Poor bb sick in hk. Miss him so much! Can''t wait to see him tml! @cliftonseah'), (6661, 1769, 'Plentong, Johor Bahru', '@azieraziezie hahahaha . macam tak 8 juta lagi kan kutipan movie tuuu .'), (6662, 1368, 'Johor Bahru, Johore', '@norainihashim hee.. Lum Kak..Nanti lps kelas ni..tqs for ur concern too..Wink*'), (6663, 636, 'Johore, Malaysia', '@dhanyaraam Tats some nice &amp; good guidelines Raam !! Something new. Haha .. :))'), (6664, 1173, 'Plentong, Johor Bahru', 'dinner!! sotong masak hitamm yeayyyyeayyy!!! :D *joget zapin*'), (6665, 68, 'Riau, Indonesia', '@vfradenarieff aip hrs bisa yakin klo ara psti kmbali sama aip.jgn pts asa ya dek.'), (6666, 56, 'Johore, Malaysia', 'Dare to believe that God is in control.'), (6667, 1260, 'Johor Bahru, Johore', '@2NE1GLOBAL tired and lazy'), (6668, 206, 'Singapore', '@bunnybaby1315 yeahhhhh ._.'), (6669, 1173, 'Plentong, Johor Bahru', '@RazaliIzzuddin staying up all night is a good time to release tension hahaha lol'), (6670, 2193, 'Johor Bahru, Johore', '@richardperolina @airni28 @jasonhalago @jeddaumento @garybeyds kulang s sampal mo Tsip...'), (6671, 2187, 'Plentong, Johor Bahru', 'Saya cinta many.'), (6672, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboii . penad ? baru balik dari hang eaa ?'), (6673, 2194, 'Kota Tinggi, Johore', 'Anong dekada na ba? Mas lalo akong nagkakasakit na sa tagal ng pila. [pic]: http://t.co/dfp2a27d'), (6674, 2192, 'Johor Bahru, Johore', '@xoxorange people already so angry/sad already, it''ll be so cruel..'), (6675, 1862, 'Johor Bahru, Johore', 'You will never know how much I love you coz'' I may never pluck up enough courage to confess.'), (6676, 1172, 'Johore, Malaysia', 'Having (@ McDonald''s) http://t.co/cnFe2MK7'), (6677, 68, 'Riau, Indonesia', 'ehehe kujuga haruuuum :$ RT @tessaaMRD: Iyaaadoong wkwka :$$RT @IlfaAzlyani: wkwk hayuum dong :$ RT @tessaaMRD: uda'), (6678, 2081, 'Johor Bahru, Johore', 'Went to TP coursemates meetup. Not bad except camwhoring females.'), (6679, 2195, 'Johor Bahru, Johore', 'Love a home cool meal (@ Blk 121 Rivervale Drive) http://t.co/jT5YVJTh'), (6680, 1856, 'Singapore', '@beastdwlove_ oh really?? weird... how about sms me?'), (6681, 1633, 'Indonesia', 'jika ingin dihargai..\nhargailah orang lain. ☺'), (6682, 1936, 'Malaysia', '@bevfever Dandan is the best I could think of that''s not lame'), (6683, 158, 'Malaysia', 'Let''s play game '), (6684, 2196, 'Johor Bahru, Johore', '#nowplaying Yoü And I'), (6685, 1769, 'Plentong, Johor Bahru', 'oh joharaaaaaaaaaaaaaa !'), (6686, 1496, 'Indonesia', 'some1 said: U are first person brave leaving me..\n\nsaya bilang, baguslah, biar kau tdk bangga dgn reputasi ''buruk''mu..'), (6687, 2197, 'Johore, Malaysia', 'Dinner with my team ❤ (@ Gourmet Paradise w/ 2 others) http://t.co/4CzusIeK'), (6688, 1260, 'Johor Bahru, Johore', '@_BIGBANGisVIP @BBSGVIP @bigbangupdates @GDragonSG @iBigBang http://t.co/JKJtRWLM'), (6689, 49, 'Johor Bahru, Johore', '@Sixthsensex Zzzz u bake for me la'), (6690, 2166, 'Johore, Malaysia', 'Hate being the eldest.'), (6691, 2192, 'Johor Bahru, Johore', '@VYXT Act innocent only haha hi limbu'), (6692, 2198, 'Plentong, Johor Bahru', '@NurSyakila94 hahaha .. bole... ana bg free jew..'), (6693, 331, 'Johor Bahru, Johore', 'hai. sedar diri sikit tu ye? sebelum nak marah &amp; buang angin pat org lain. pikir 2 kali.'), (6694, 1936, 'Malaysia', '@FernandoClemmyy jelly'), (6695, 2199, 'Riau, Indonesia', '@meydikhagassani yakin??'), (6696, 753, 'Johor Bahru, Johore', 'Saw Shamini'), (6697, 2200, 'Pulai, Johor Bahru', 'Persediaan untuk Marathon (@ San Gym) http://t.co/3b1edpRe'), (6698, 1865, 'Indonesia', 'lapoan se ben ketemu mliriki aku ae -,- kajange nyokot ta ?'), (6699, 21, 'Johor Bahru, Johore', '@DearUlayyis lauk peberet atok ngeson. Otai boyan http://t.co/krPgi0O0'), (6700, 331, 'Johor Bahru, Johore', 'pakai otak sikit lah.'), (6701, 2079, 'Kota Tinggi, Johore', 'I''m at Jurong Point (Singapore, Singapore) w/ 22 others http://t.co/6heOBGb0'), (6702, 1875, 'Johor Bahru, Johore', '@derppp_ Don''t think I''m gonna play tomorrow.. gotta do homework :('), (6703, 2192, 'Johor Bahru, Johore', '@gwennyteoky don''t call me idiotic leh :('), (6704, 1786, 'Johore, Malaysia', 'I threw a wish in a well, dont ask me i wont tell.'), (6705, 2073, 'Johor Bahru, Johore', '@Debbie_Koh DONT KNOW WHAT YOU MEAN BY CUTE SO OKAY(: #gdragon'), (6706, 38, 'Johor Bahru, Johore', 'Niushan? Ahaha, okayokay. Cow Mountain. XD'), (6707, 789, 'Johor Bahru, Johore', 'I''m at Macdonalds @ rp http://t.co/2MwfJI73'), (6708, 2201, 'Johor Bahru, Johore', 'Wake up everyday stronger than yesterday, face your fears and wipe your tears.'), (6709, 2202, 'Johore, Malaysia', 'Gong gong shell fish @ Sin Huat Eating House http://t.co/eoLaasch'), (6710, 679, 'Johor Bahru, Johore', 'Hweeenehneh是白痴,她华文很烂'), (6711, 2141, 'Johore, Malaysia', '@ailengmiao u mean u had another proton that caught fire too? Omg. Hope my car dun catch fire haha. Choi choi. U safe then ok la.'), (6712, 1701, 'Plentong, Johor Bahru', '#santapanmalamini rendang daging bonda tersyang,kenyang gilaa,alhamdulillah,thanks mum,now keluar then waiting for MU games tonight :)'), (6713, 1435, 'Johor Bahru, Johore', 'I shan''t disturb him since he''s working . Gonna annoy other people.'), (6714, 2204, 'Plentong, Johor Bahru', 'Bleh lawan kueh udang alor gajah ke ni...hehe (@ Kuih udang Alor Gajah(Restoran Osman)) http://t.co/U8tLnYMo'), (6715, 2191, 'Johore, Malaysia', 'Tak boleh stop nanges sia . :''('), (6716, 2205, 'Tebrau, Johor Bahru', 'And please stop thinking that we''re forfeiting old times.'), (6717, 2187, 'Plentong, Johor Bahru', 'Sushi taste so gooddddd! (Y)'), (6718, 476, 'Johore, Malaysia', 'Singapura @ Esplanade On The Waterfront http://t.co/PfFbRVHl'), (6719, 2206, 'Johore, Malaysia', 'hi.imissyou.'), (6720, 1172, 'Johore, Malaysia', 'Having mie dinner with siblings (: (@ McDonald''s w/ 2 others) http://t.co/yLnaLKCM'), (6721, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @lkmariquit @rinabanana @sheslley dri ya dw pinas ang clema! po ga inulan ya sbng abe ko gne summer na! haha'), (6722, 2207, 'Johore, Malaysia', '@gorgeousaimee you mean http://t.co/wv5KtHYY don''t you?'), (6723, 2145, 'Singapore', '@alisyahamran oioioi! follow me lehh!'), (6724, 1786, 'Johore, Malaysia', 'Hey i just met u, but this is crazy. Here''s my number so call me maybe.'), (6725, 1526, 'Malaysia', '@wararat_amp ต้องเหนื่อยอยู่แหละ ทัวร์คอนแบบไม่ยั้งเลย'), (6726, 49, 'Johor Bahru, Johore', '@JunkangJK I study till sept nia thn work 3months'), (6727, 21, 'Johor Bahru, Johore', 'Jangan sampai start bobal boyan balik. Hah nnt aku tnye2 mak aku psl word ni word tu...'), (6728, 2178, 'Malaysia', '@cutazlina malam buat apatu...boleh kenalan'), (6729, 2060, 'Indonesia', '@AimanHakeemA projek ? Lai sri lalang :D'), (6730, 72, 'Johor Bahru, Johore', '@TheEntertainerX compared to them D: omg. Yeah luh, one year more *-* must get backGWH'), (6731, 1173, 'Plentong, Johor Bahru', '@PuteriSyaheraa hm yelaaaa -.-'), (6732, 206, 'Singapore', '@DioneKoh @bunnybaby1315 yeah micoooo :&gt; heh. xDD'), (6733, 1862, 'Johor Bahru, Johore', 'I know something you don''t.. i love you with allmy heart and I can safely say I have never felt this way about anyone. You are my everything'), (6734, 2208, 'Pulai, Johor Bahru', 'I''m at Perdana Terrace (Skudai, Johor) http://t.co/62ev7HlG'), (6735, 2209, 'Johor Bahru, Johore', 'The talk finally ended!! Finally!!! Can''t stand those monkeys inside!!!!'), (6736, 1173, 'Plentong, Johor Bahru', '@NazihahAhda mmang tngah putus harapan punn :''('), (6737, 2205, 'Tebrau, Johor Bahru', 'You know you can''t go far'), (6738, 2210, 'Pulai, Johor Bahru', 'Tq baby syah love u!!!'), (6739, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz nerds! They don''t!'), (6740, 2211, 'Johor Bahru, Johore', 'Serangoon kitty is friendly! (at Block 529 Serangoon North Avenue 4) [vid] — http://t.co/QtuxPZ4v'), (6741, 2039, 'Singapore', 'menanti hari esok.'), (6742, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing THAT GUY WHO CALLED U?'), (6743, 487, 'Johore, Malaysia', '@euxuanlin LOL YOU CAN COME MY HOUSE :)'), (6744, 1284, 'Plentong, Johor Bahru', '@XuShanQing umm who u going with?'), (6745, 68, 'Riau, Indonesia', '#BestThingAboutBeingSingle bersama orangtua'), (6746, 1496, 'Indonesia', 'emangnya kalo cewek tdk aneh? RT @_Risdamaris Aneh lihat cowok pelukan di motor.. ckckc'), (6747, 1435, 'Johor Bahru, Johore', '#SometimesYouHaveTo stop judging..'), (6748, 2212, 'Johor Bahru, Johore', 'Need to focus. Focus. Focus. Hocus. Pocus. Poof'), (6749, 2213, 'Johor Bahru, Johore', '@ELGINLIM KARMA'), (6750, 1014, 'Johore, Malaysia', '@carlasolis Ok! Slow ko. =))'), (6751, 2214, 'Plentong, Johor Bahru', '@DinulNaim yeke ? hee puhless laa dinul :)'), (6752, 1260, 'Johor Bahru, Johore', 'hmm lazy agn......-_-zar!!!!!!!!!ohcholago!!!!?!!'), (6753, 467, 'Plentong, Johor Bahru', '@__kHAIRULaZRIE @Shazleenatasha Sumpah ayie mcm hot. Hahahaha'), (6754, 56, 'Johore, Malaysia', 'And then you will feel so low till you can''t feel anything.'), (6755, 206, 'Singapore', '@bunnybaby1315 @DioneKoh HAHAHA:D yeahhh. xD ROFL HABBO. STOOPID GAME SIA.XD'), (6756, 1526, 'Malaysia', '@NeayWR_Boice เล่นเฟส ทวิต ฟังเพลงและเกม'), (6757, 1173, 'Plentong, Johor Bahru', '@Ejadddd ke gila? mcm tuan dia lol'), (6758, 2073, 'Johor Bahru, Johore', '@Candykqx @whattalkingme @llinyi CRAZY. WHERE GOT 20 ONE. THEN LATER HOW TO CARRY THE FOETUS AROUND? USE TROLLEY ARH? LATER HER BACK BREAK'), (6759, 2177, 'Johore, Malaysia', '@izyoboyDjP just keep on chasing P!haha nagkita kami ni jo dito sa sg.hehe'), (6760, 1862, 'Johor Bahru, Johore', '#nowplaying-poker face(acoustic)'), (6761, 1556, 'Johore, Malaysia', '@3dimensionL haha your classmates give fake news . U should pretend ghost go scared min. Ahaha ;0'), (6762, 1212, 'Johor Bahru, Johore', '“@BloodyOvaries: Sorry he''s mine. Go away woman.”'), (6763, 2215, 'Johore, Malaysia', 'How long does it take to make popiah? It''s been 30 minutes. Some old @ Rojak @ Bedok Interchange Foodcourt http://t.co/LplTlypo'), (6764, 1196, 'Kota Tinggi, Johore', 'Liat dlu gh di BM.. DP''y sma orng mna..RT @IntAn_ImUtsExy: Sering gnti2 gt sih, apa org kamerun gt? (cont) http://t.co/lbgJu1MW'), (6765, 1865, 'Indonesia', 'ya mangkane ngomongo aku salah opo X_X nek meneng ae mosok roh yoan aku!'), (6766, 331, 'Johor Bahru, Johore', '@raynaaael @NurulSyafiqa11 i thought she didn''t order?? Ö Hahaha, cute sey. Waitwait. Then... Zzzzzzzz. xD"'), (6767, 1451, 'Johor Bahru, Johore', 'True that!! ;D“@SyafiqMattthew: jaymee ong why u so hot? your accent so damn sexy”'), (6768, 117, 'Johore, Malaysia', '"You are like the shining stars in the night whenever you''re around , surrounds me with such warm embrace."'), (6769, 1325, 'Indonesia', 'One for the @BBC_Wonders family album http://t.co/QzFru7BN'), (6770, 2216, 'Plentong, Johor Bahru', 'Tirin dy. Bilala mse nk abeh.hee. @myrashakira beb em phne silent em org st hegeh sket ske drag mse (cont) http://t.co/veId0Swr'), (6771, 2217, 'Johor Bahru, Johore', 'Lepak with Aisyah , Fatin , Hucen (@ Woodlands Civic Centre) http://t.co/tWxiyKpF'), (6772, 206, 'Singapore', '@bunnybaby1315 IKR AND THE TOPICS ON THE GRP -.- SONES, SNSD, JB, GFBF WOAHCTI XD'), (6773, 435, 'Johor Bahru, Johore', 'Can''t believe I was a shooting spree with those pinoys just now. :O'), (6774, 1690, 'Johor Bahru, Johore', '@linsonlze OK linson de white.'), (6775, 1981, 'Johor Bahru, Johore', '@steph_songsari @dacrazyweirdone @idreamfantasy do on twitter very difficult leh.'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (6776, 2178, 'Malaysia', '@matleetour89 sekarang di mana'), (6777, 2192, 'Johor Bahru, Johore', '@xoxorange but I really want to see someone do it...'), (6778, 2218, 'Johore, Malaysia', 'Guides camp :D (@ Raffles Girls'' School (Secondary)) http://t.co/sTtpnwDU'), (6779, 117, 'Johore, Malaysia', '@sara_B2ST :))) hehe'), (6780, 1152, 'Johore, Malaysia', '@KohKohCruNchhh Omg , so bad ! ;x'), (6781, 2073, 'Johor Bahru, Johore', '@KizraTZJ no. My birthday happens once every year. What you mean?'), (6782, 1865, 'Indonesia', 'haha aneh" ae'), (6783, 2219, 'Singapore', '@kaaaaaixin Aw man :/'), (6784, 241, 'Johor Bahru, Johore', '@EeyenLim practice enough?'), (6785, 1786, 'Johore, Malaysia', '@StereoR_ @tingquan @wongeugene yep. idk if is tq or who, but i rmb someone have.'), (6786, 1988, 'Johore, Malaysia', 'Constipation wtf.'), (6787, 766, 'Plentong, Johor Bahru', 'I''m at Malaysia-JB Custom (Johor Bahru, Johor) http://t.co/Vf3rLW8D'), (6788, 1846, 'Johore, Malaysia', '“@AnilGujaraTi: Dear shirt, I fell in love with... I hate you. Sincerely, just saw the price tag.” @Gastambide69 hahaha'), (6789, 2206, 'Johore, Malaysia', '"@GirlsNotebook: I hide all my problems behind my smile. Behind my smile is a world of pain. You think you know me, but you have no idea."'), (6790, 2124, 'Singapore', '@syaifaaaaa @SyarifahElla 10 tepat or 10 lebih ?'), (6791, 1698, 'Johore, Malaysia', 'Let''s hope for the better tmrw.'), (6792, 2220, 'Johor Bahru, Johore', '@akosipuppydan papi, message mo flight details sakin ni karen. Time, arrival terminal &amp; number siguro nya. Baka di kami magkita e, hhehe'), (6793, 2221, 'Johor Bahru, Johore', '“@STcom: US boy, 3, dies after shooting self in the head with gun he found in car http://t.co/2prW3681” tragically stupid.'), (6794, 2109, 'Johor Bahru, Johore', 'Oh wow. Thanks for the support. (at 89 Zion Rd 双喜煮炒 Siang Hee Seafood) [pic] — http://t.co/rFk0NU5A'), (6795, 1099, 'Johor Bahru, Johore', '@pjabcd hahahaha why so sad Sia sis'), (6796, 1673, 'Malaysia', 'ที่บอกว่าเด็กไทยอ่านหนังสือปีนึงไม่เกินหกบรรทัดเนี่ยบ้าป่าว ยังไงก่อนสอบก็อ่านมากกว่าหกบรรทัดละว้าาา'), (6797, 2222, 'Johor Bahru, Johore', '@PewpOnYour____ apahal kena maki?'), (6798, 285, 'Singapore', 'I love school but I hate learning &gt;&lt;'), (6799, 1936, 'Malaysia', '@bevfever your god sounds goooood'), (6800, 1815, 'Johore, Malaysia', '@iquoteswagger97 @irealjordan fk u'), (6801, 68, 'Riau, Indonesia', '@vfradenarieff iyaa aip, tu iyaa tuu (y) hehe'), (6802, 1615, 'Johor Bahru, Johore', '15more mins!! (@ Terminal 1 w/ 23 others) http://t.co/NivpEg5U'), (6803, 1773, 'Johor Bahru, Johore', '@heyhihoe ok can pro.'), (6804, 1280, 'Johor Bahru, Johore', 'I''m at Shermin''s House  (Singapore) http://t.co/VUm3vX7G'), (6805, 1769, 'Plentong, Johor Bahru', '@azieraziezie aah aah david teo kan juri rajalawak 6 die cakap sampai 8 juta baru berapa hari . gylooo laaaa . dua-2 best laa senang citer .'), (6806, 1451, 'Johor Bahru, Johore', '@kohlem take care ah! Just nw u were looking abit pale...'), (6807, 2073, 'Johor Bahru, Johore', '@Debbie_Koh SIAO AR. ONE WOMAN ONE WOMB'), (6808, 606, 'Johor Bahru, Johore', '@sherlynwsm @helloiamxinhui @aijoueunice why you go USS tomo! You go another day! Hahahaha!'), (6809, 2223, 'Johor Bahru, Johore', 'I''m at Northpoint Shopping Centre (Singapore, Singapore) w/ 6 others http://t.co/2vwJPH5T'), (6810, 1873, 'Johor Bahru, Johore', '@ChikaaFeqaa da topup hp?'), (6811, 451, 'Johore, Malaysia', 'I''m at National Geographic Singapore Store (HarbourFront, Singapore) http://t.co/n6245ZAy'), (6812, 1152, 'Johore, Malaysia', 'Thoughts read unspoken, forever in doubt , pieces of memories fall to the ground'), (6813, 1936, 'Malaysia', '@LeTroublemaker dah kahwin wtfffff'), (6814, 331, 'Johor Bahru, Johore', 'camne nak hormat kau kalau diri sendiri pun tak hormat orang lain? oh please...'), (6815, 2224, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 15 others http://t.co/P7LrzPs7'), (6816, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims wahhhh best tak ?'), (6817, 1837, 'Singapore', '@BABYITSZELO Oh ya btw you that time buy two shoes at Bugis for how much ?'), (6818, 2225, 'Johore, Malaysia', 'Class BBQ (@ Parc Emily Condo w/ @waikiong) http://t.co/zfiF8Da4'), (6819, 68, 'Riau, Indonesia', 'RT @sasyarhesya: Hei'), (6820, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing WHY GOT POKPOKKEH?!'), (6821, 1651, 'Pulai, Johor Bahru', '@HananiZolzali dekat instagram tuhh. Aku nk logout kann. Tak reti ~'), (6822, 2199, 'Riau, Indonesia', '@pujien_DENIRO hahahhha.............. :P'), (6823, 138, 'Johore, Malaysia', 'TT so damn scared'), (6824, 413, 'Johore, Malaysia', '@KforKellyyo bro you gotta maintain know!'), (6825, 2226, 'Malaysia', '..ชักจะมากมาย~ไม่ไหวว่ะ\nวันหลัง คงแค่ไหนแค่นั้นน...T^T'), (6826, 1853, 'Johore, Malaysia', '@DUMBASS_ZIYING don''t think wrong :P haha sot sot'), (6827, 206, 'Singapore', 'shall read;3'), (6828, 252, 'Johor Bahru, Johore', 'I''m at Century Square (Singapore, Singapore) w/ 2 others http://t.co/3PrMfYgv'), (6829, 68, 'Riau, Indonesia', 'RT @ChicakACP: Mention?'), (6830, 2214, 'Plentong, Johor Bahru', '@hasmizieazmi rindu en. sam yg comel tu :)'), (6831, 1459, 'Johor Bahru, Johore', 'I''m at Beancurd City (Singapore, Singapore) http://t.co/YObfbomm'), (6832, 1212, 'Johor Bahru, Johore', '@RyannnnnW Meanie beanie Ryan, but I’ll cry if they say that I can’t have tattoos because of scoliosis!'), (6833, 1673, 'Malaysia', '@_GDRAGONBOTTH เราพิมพ์คําว่า โกรธ ผิดแหละ! 55555 5'), (6834, 679, 'Johor Bahru, Johore', '@ReinaTaeminnie shut up la! :b'), (6835, 1186, 'Johore, Malaysia', '@JerryT9 wah kao.. So ex &gt;_&gt;'), (6836, 996, 'Johor Bahru, Johore', '@hilarygio in JB? how bout come here to Lazio at Danga Bay? Very nice ambience here.. '), (6837, 2227, 'Johore, Malaysia', 'I''m at Acid Bar (Singapore, Singapore) http://t.co/9DLpGRIy'), (6838, 285, 'Singapore', '#TheWorldToday is full of liars'), (6839, 2228, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore) http://t.co/ltgD8Egj'), (6840, 21, 'Johor Bahru, Johore', '@DearUlayyis kalau anta bace second last para kn, itu ana, dorg interview ana dlm bhs boyan. Tkle lwn ana ;P'), (6841, 68, 'Riau, Indonesia', 'heheew,lagi nonton niii kakcantik? RT @tessaaMRD: Ihaaa :$$ lagiapaa mut? RT @IlfaAzlyani: ehehe kujuga haruuuum :$'), (6842, 2013, 'Johor Bahru, Johore', '@nanallove glad to hear that:). I''m fine I guess busy playing soccer haha too lazy to find a job. Yeah sure anytime!'), (6843, 2229, 'Johor Bahru, Johore', 'Dinner! (@ Huang Restaurant @ 848 Yishun St 81) http://t.co/jnSD25S8'), (6844, 981, 'Riau, Indonesia', '@rrGinM nampak barunya :P'), (6845, 117, 'Johore, Malaysia', 'IF :( RT @AanPapan :"if i can make u mine, won''t it be wonderful?? haiss ):"'), (6846, 1856, 'Singapore', '@beastdwlove_ email? nope~ :/'), (6847, 1379, 'Johor Bahru, Johore', 'You only care about your own stuff.'), (6848, 99, 'Johor Bahru, Johore', 'Bro bro....'), (6849, 2230, 'Johor Bahru, Johore', 'I''m at BLK 586 Ang Mo Kio Ave 3 (Singapore, Singapore) http://t.co/3weFudse'), (6850, 2177, 'Johore, Malaysia', 'i miss st. jude,calamares,mcdo,strip,mendiola plus all the kalokohan and kamalditahan!!! @vin_centQ @karinacanlas @dukesapercie @mkrizzy'), (6851, 1856, 'Singapore', 'really whats wrong with my hotmail?! Cant get any email !'), (6852, 2073, 'Johor Bahru, Johore', '@KizraTZJ DON''T UNDERSTAND. BUT HAVE FUN'), (6853, 2209, 'Johor Bahru, Johore', '@SelrahcEel no!! Just some kiddo acting like monkey'), (6854, 2222, 'Johor Bahru, Johore', '@MidziHarun merepek sia midzi'), (6855, 2231, 'Johore, Malaysia', '"@dee_kosh: @HeartsPumpin_g GATHER THE TROOPS - and the goats lol" hahah funny dude :)'), (6856, 68, 'Riau, Indonesia', '#BestThingAboutBeingSingle bersama sahabatkuuuuuuuu&lt;3:*'), (6857, 285, 'Singapore', '@nisamuzamirshah a legal obligation? Social interaction? A sense of responsibility?'), (6858, 1875, 'Johor Bahru, Johore', '@derppp_ I''ve got a STACK of shit to do sia tsk.'), (6859, 68, 'Riau, Indonesia', '#BestThingAboutBeingSingle bersama sahabatkuuuuuuuu&amp;lt;3:* [Like it? http://t.co/k3QhGVGY ]'), (6860, 1526, 'Malaysia', '@wararat_amp สู้ๆๆๆ///พี่แอมเตรียมตัวยังในเวลา 4 ทุ่ม'), (6861, 486, 'Johor Bahru, Johore', '@intanladyana intan !!! (((((:'), (6862, 762, 'Johore, Malaysia', '@sexayeandiknwit welcome (; do talk more alright in Facebook or Twitter (;'), (6863, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Hahahaha Okay tak nak kacau korang :P'), (6864, 241, 'Johor Bahru, Johore', '@EeyenLim midnight see how'), (6865, 2013, 'Johor Bahru, Johore', '@nanallove as least it makes you laugh:).'), (6866, 494, 'Johor Bahru, Johore', 'Home'), (6867, 2232, 'Johore, Malaysia', 'I''m at Ten Dollar Club Family KTV Karaoke http://t.co/p3IBE6CO'), (6868, 1815, 'Johore, Malaysia', '@assortedbacon @parababa ask for sex?'), (6869, 2039, 'Singapore', 'thanks. eee CBGB'), (6870, 2212, 'Johor Bahru, Johore', '3 year old boy in the US shoots himself in the head when he found a gun in his parents'' car. What. The. Fu.....'), (6871, 2199, 'Riau, Indonesia', '@Ranum_ii bargad...., kan kmu bnget tuch....'), (6872, 890, 'Malaysia', '@Nnamfhhh 5555555555 จะต่ออ่อ?'), (6873, 1837, 'Singapore', '@BABYITSZELO Walao I buy $29 sia -_-'), (6874, 2177, 'Johore, Malaysia', '@nixxxy kakamiss!!!lage ako dun e :s'), (6875, 1853, 'Johore, Malaysia', '@DUMBASS_ZIYING Wah Sian sia I think cfm reserve le:('), (6876, 486, 'Johor Bahru, Johore', '@budakchik dh .. dh lame dh .. haha'), (6877, 2205, 'Tebrau, Johor Bahru', 'At the playground with abang2'), (6878, 206, 'Singapore', '@bunnybaby1315 @DioneKoh ikr need use the card -.-'), (6879, 2233, 'Johore, Malaysia', 'I''m at Kampong Glam Cafe w/ @faizfzly http://t.co/C0VRx72d'), (6880, 1786, 'Johore, Malaysia', 'fcuk shirt come sg plox. tolong.'), (6881, 890, 'Malaysia', '@TangMoaloha = = ป่าวววว รู้สึกคุยแบบหดหู่พิลึก'), (6882, 2234, 'Johor Bahru, Johore', '@WhinnyWinny laziness lvl 999 O.O'), (6883, 1395, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 5 others http://t.co/jFHPaeFY'), (6884, 487, 'Johore, Malaysia', '@euxuanlin next time you no one at home just gimme a call, i''ll ask my mom open door big big let you in. I also dunno how do ask le no use:)'), (6885, 56, 'Johore, Malaysia', 'I swear whenever I blast on any Hot Chelle Rae songs, I''ll be automatically happy.'), (6886, 1366, 'Riau, Indonesia', 'WIIHH M alem jum''at horor tau #hahahahay'), (6887, 2235, 'Plentong, Johor Bahru', 'Dinner (@ Tangshifu 汤师傅) http://t.co/og4oGegq'), (6888, 435, 'Johor Bahru, Johore', '@GaryAhNeo haha! My 徒弟!'), (6889, 2236, 'Singapore', 'Jst reached home . finally [:'), (6890, 445, 'Malaysia', '@TUAN_Tเมื่อไหร่??^^'), (6891, 206, 'Singapore', '@bunnybaby1315 xDD'), (6892, 117, 'Johore, Malaysia', '"Perservering even when you don''t have the strength to do so , holding on as tight as you can."'), (6893, 68, 'Riau, Indonesia', '@vfradenarieff blm dek, km?'), (6894, 735, 'Johore, Malaysia', 'I''m at Glamour Ville http://t.co/BOQt1Psq'), (6895, 1837, 'Singapore', '@BABYITSZELO OF COURSE ASDFGHJKLASDFGHJKL DAEHYUNNIE !!!!!!!!!!'), (6896, 1928, 'Johore, Malaysia', 'sizzling hot!!! @thedextroyer @ BigBank Cafe http://t.co/lFojEdpD'), (6897, 1936, 'Malaysia', '#sekolahakuada perigi, DOES YOUR SCHOOL HAVE ONE?'), (6898, 1812, 'Johor Bahru, Johore', '@WanFlizzow haha...Kalau aku dapat beli pun bukan aku nk kasi kau...Aku ingt kau betul-betul nk order Wingston Hot dari aku...Aku pun shot a'), (6899, 206, 'Singapore', '@bunnybaby1315 @DioneKoh HAHAHAH. i take snapshot can? I leaving alr -.- DAMN SPAM.'), (6900, 2209, 'Johor Bahru, Johore', '@SelrahcEel lame'), (6901, 1435, 'Johor Bahru, Johore', '13 more days '), (6902, 487, 'Johore, Malaysia', '@IsaacChuwy HAHAHA nvrm . Just nearly choke on my food'), (6903, 2220, 'Johor Bahru, Johore', '@akosipuppydan okey sige. What username mo skype?'), (6904, 2237, 'Johore, Malaysia', 'teo Heng karaoke tomorrow anyone'), (6905, 1196, 'Kota Tinggi, Johore', '@IntAn_ImUtsExy eta mii, nu ngipiskeun dompet th.. Skali jlan 200$ liauw.. http://t.co/soSNWtQ4'), (6906, 445, 'Malaysia', '@shineiz แต๊งมากน้ะก๊ะ:))'), (6907, 1856, 'Singapore', '@beastdwlove_ yeah, i has been refresh it many times and no new email.. :/'), (6908, 2238, 'Malaysia', 'Think mummy''s lost. HAHAHAHA! Went to buy food but still not back!'), (6909, 331, 'Johor Bahru, Johore', 'overprotected. #np'), (6910, 539, 'Johor Bahru, Johore', 'I''m at Woodlands Waterfront (Singapore, Singapore) http://t.co/Qb941qrw'), (6911, 973, 'Plentong, Johor Bahru', 'Bicarawara (@ Kedai ''Rumah Merah'') http://t.co/s68joSxL'), (6912, 2239, 'Johore, Malaysia', 'Kittiessss!!! Cleaning their area nowww!!! @ Baby kitty cat room!!! http://t.co/OV8ss9dO'), (6913, 102, 'Singapore', '@afyzahh awww... nvm.. I''ll take care of you, But I''ll love @dxbbie more...'), (6914, 716, 'Johor Bahru, Johore', '@tripodmonster NO, IS CHEAAP. Mine unlimited text. :p'), (6915, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Mana boleh ada org ketiga. Bahaya :)'), (6916, 2211, 'Johor Bahru, Johore', 'I''m getting a table dance while waiting for June. (at Block 529 Serangoon North Avenue 4) [pic] — http://t.co/AA07Hakf'), (6917, 2240, 'Johor Bahru, Johore', 'Ice-cream. :) (@ Udders) http://t.co/9dLOMotn'), (6918, 102, 'Singapore', 'I treat @afyzahh like my own sister sia..'), (6919, 2241, 'Johore, Malaysia', 'I''m at Progenius Tuition Centre http://t.co/8hK0cv37'), (6920, 693, 'Pulai, Johor Bahru', 'I''m at Ewan Corner Seafood http://t.co/n6jV1wbk'), (6921, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo asl'), (6922, 1786, 'Johore, Malaysia', '@tingquan @wongeugene @stereor_ dont action, cause he didnt know. if not he sure buy white. like mine. AHAHHAHAHA'), (6923, 1212, 'Johor Bahru, Johore', '@RyannnnnW WHAT RUBBISH, RYAN.'), (6924, 2242, 'Johore, Malaysia', '@pioneerkyy (@ Plaza Singapura w/ 13 others) http://t.co/eg2ADDbg'), (6925, 65, 'Singapore', 'Just realised I hv finished my homework-_-'), (6926, 1382, 'Johor Bahru, Johore', '@paolobroma what''s da bao?'), (6927, 487, 'Johore, Malaysia', 'WTF IS THIS. Show more!!! RT @STcom: Uganda youth group to stop screening popular Kony video after angry locals start throwing stones'), (6928, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims ea ea ? wahh tak sabar nak pegi sabtu nie . hihi XD berapa ringgit ticket dek ?'), (6929, 716, 'Johor Bahru, Johore', '@yongjiannn Cheaaap. ''Cause mine forever is 30-40plus, hahah.'), (6930, 2243, 'Johore, Malaysia', 'Dinner time! ☺ (@ McDonald''s) http://t.co/jp7nuW4l'), (6931, 766, 'Johor Bahru, Johore', 'I''m at Singapore Checkpoint w/ 2 others http://t.co/dRnO3BaS'), (6932, 1247, 'Johore, Malaysia', '@S3R1zawa it''s gonna hurt ):'), (6933, 1110, 'Riau, Indonesia', 'I''m at Hard Rock Hotel (Singapore) http://t.co/04rO5HM2'), (6934, 2007, 'Singapore', 'gedean siapa &gt;&gt; http://t.co/AdwsGBeo'), (6935, 927, 'Johore, Malaysia', 'I just ousted @yyennyy as the mayor of Imperial Treasure Bakery on @foursquare! http://t.co/IpGghE6k'), (6936, 2206, 'Johore, Malaysia', 'you cute uh.'), (6937, 1212, 'Johor Bahru, Johore', '@RyannnnnW I had scoliosis even before I had my tattoos!'), (6938, 2244, 'Johore, Malaysia', 'I''m at UOB Alexandra Building (Singapore, Singapore) http://t.co/O4CZVuyw'), (6939, 989, 'Johor Bahru, Johore', 'Hahaha'), (6940, 68, 'Riau, Indonesia', 'cieeh sehati:** nonton yusra yumna,kakcan? RT @tessaaMRD: Sama nih,nonton apa mut?RT @IlfaAzlyani: heheew,lagi nonton niii kakcan'), (6941, 1773, 'Johor Bahru, Johore', '@heyhihoe no , saw u play , u more pro'), (6942, 263, 'Johore, Malaysia', '@YiLOnG_ how u change iPhone de ah?'), (6943, 1554, 'Johore, Malaysia', 'I''m at Blk 10 Gloucester road #13-51 http://t.co/N4ms5ifD'), (6944, 413, 'Johore, Malaysia', '@assceeee serious I am a change man'), (6945, 2039, 'Singapore', 'mana siaa Mun Coleman hilang, haizzz The Oppressed dah nak dkt tau'), (6946, 1651, 'Pulai, Johor Bahru', 'Ericha tadikan aku baca text kauuuu. Lepas tuhh kann aku tahu rahsia kauu.... Aiyokkkk!'), (6947, 1769, 'Plentong, Johor Bahru', '@azieraziezie hihi XD cuti kau tak pegi mane-2 keee ?'), (6948, 919, 'Johore, Malaysia', 'I''m at Cold Storage (Singapore, Singapore) http://t.co/aV2cTvnX'), (6949, 2245, 'Johor Bahru, Johore', '@wearehapppy at burghley drive !!'), (6950, 486, 'Johor Bahru, Johore', '@PhoonYongYing haha so long alrdy ..'), (6951, 1802, 'Johore, Malaysia', 'I''m at Shiraz @ Clarke Quay w/ @ozkkkkkk http://t.co/QzDIQZLO'), (6952, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @lkmariquit @rinabanana @sheslley ayus lng na! puli ka summer next year preparahan mo gd bongga! haha'), (6953, 2246, 'Kota Tinggi, Johore', 'HELLO BABIES! Anyone is online right now :)? If do please tweet your favourite new KPOP songs ^^'), (6954, 762, 'Johore, Malaysia', '@_Jesusbeloved don''t miss school first -.- must miss me first :p'), (6955, 331, 'Johor Bahru, Johore', 'I have a feeling that alot of people have let you down, but I''m not going to add my name to that list.'), (6956, 141, 'Johor Bahru, Johore', 'Who says you''re not perfect?" Miley: "Nobody''s Perfect!" P!nk: "You''re F**king Perfect".. I''m confused, am I perfect or not?" Jesie j'), (6957, 206, 'Singapore', '@DioneKoh @bunnybaby1315 hahaha ok xD aiya add both lah rofl'), (6958, 2037, 'Johor Bahru, Johore', 'Pissed off with tuition teacher for her unreasonable mocking throughout the whole lesson that i just stomped out f class when it ended :)'), (6959, 2247, 'Johore, Malaysia', '#BestThingAboutBeingSingle takdek sape nk jealous jumpe dengan sape.. otp dgn sape. berbual dgn sape.. hahah'), (6960, 2124, 'Singapore', '@SyarifahElla @syaifaaaaa Thanksss :))'), (6961, 1140, 'Johor Bahru, Johore', '@Jonathan5oh English ! Mr.poon one. I dont know what''s the homework either hahah'), (6962, 2198, 'Plentong, Johor Bahru', 'sayang awk amri +)'), (6963, 2248, 'Johor Bahru, Johore', 'It''s an amazing feeling to realize how someone who was once just a stranger suddenly meant the world to you. 很奇妙的一种感觉,曾经的陌生人,突然之间成为了你的整个世界'), (6964, 206, 'Singapore', '@bunnybaby1315 @DioneKoh YEAH'), (6965, 2205, 'Tebrau, Johor Bahru', 'Stop being a ego maniac bitch'), (6966, 716, 'Johor Bahru, Johore', 'Whoaa. 8 Feb to 7 Maarch, text only like 647 Messages, laast time more thaan 1000, but who caares, is unlimited.'), (6967, 413, 'Johore, Malaysia', '@xtinehearts haiz stress lah... How are you coping over there?!!!'), (6968, 1673, 'Malaysia', '@_GDRAGONBOTTH คิดไม่ออกเนี่ยเลยถามมังกร :3'), (6969, 1383, 'Johor Bahru, Johore', '@Aloysius_Ho SURE ^^'), (6970, 117, 'Johore, Malaysia', '"I want to cherish all those moments deep in my heart , like the stars that shines forever , i''ll treasure my love for you."'), (6971, 1247, 'Johore, Malaysia', 'The smell of mee meehoon champo so strong at tekka market -.-'), (6972, 1206, 'Johor Bahru, Johore', 'Jemput mertuo &lt;3 (@ Changi International Airport (SIN) w/ 13 others) http://t.co/I6bCly77'), (6973, 2249, 'Johor Bahru, Johore', 'I''m at Taste Of Thailand (Singapore, Singapore) http://t.co/3Lhmw6y9'), (6974, 1812, 'Johor Bahru, Johore', 'I love your smile...Keep smiling that''s the only way to make me happy and cheerful...'), (6975, 118, 'Johor Bahru, Johore', '“@STcom: US boy, 3, dies after shooting self in the head with gun he found in car as his family stopped for petrol http://t.co/NZ0EL5qK”'), (6976, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Macam mana ayie nak tgk aku sehh ? :P'), (6977, 2250, 'Kota Tinggi, Johore', 'Camping (: ⛺ (@ First Toa Payoh Primary School) http://t.co/kxmEutcu'), (6978, 2245, 'Johor Bahru, Johore', '@ElliottDanker good stuff bro!! Welcome back to radio!'), (6979, 2251, 'Malaysia', 'โรงพยาบาลนราธิวาสราชนครินทร์'), (6980, 141, 'Johor Bahru, Johore', 'RT @ilovekoreanbbq: i have a confession.....TODAY IS MY REAL BIRTHDAY!!!! (march 15th) &gt;:D WHUUT? hahaha trololol I AM 19 TODAY'), (6981, 38, 'Johor Bahru, Johore', 'Almost done with my homework. If there isn''t stupid Chinese Composition, my homeworks would be damn done.'), (6982, 2252, 'Johor Bahru, Johore', 'errr !!'), (6983, 136, 'Johore, Malaysia', '@LaNcE_GoH @MenInCharCoal @Dream_Boards make it 11.30 ?'), (6984, 2253, 'Pulai, Johor Bahru', 'Tutti frutti http://t.co/GwphyGNy'), (6985, 2139, 'Johor Bahru, Johore', '@Laiweichang ok den! Thks anyway :))'), (6986, 206, 'Singapore', '@DioneKoh @bunnybaby1315 done added :D I m leaving HAHA'), (6987, 2254, 'Johore, Malaysia', 'At Ma Maison Restaurant — http://t.co/zVxIrE0w'), (6988, 2206, 'Johore, Malaysia', 'SAyANG KAU :&gt;'), (6989, 2255, 'Johore, Malaysia', 'I''m at Bugis Street (Singapore) w/ 9 others http://t.co/xQYgfPOq'), (6990, 486, 'Johor Bahru, Johore', 'Boring uhh main takraw sikit org jer .. aku gi malaysia skrg pn cantik ...'), (6991, 2250, 'Kota Tinggi, Johore', 'Sleeping at school hall. (: (@ FTPPS Hall) http://t.co/HojUD0GP'), (6992, 1685, 'Johor Bahru, Johore', 'I''m at block 444 @ chua chu Kang ave 4 http://t.co/bb2UBv4O'), (6993, 1936, 'Malaysia', '@amirWazZa lamaanya nak reply essaaaay'), (6994, 2256, 'Johore, Malaysia', '@StarsandDusts_ haha ending liao!'), (6995, 117, 'Johore, Malaysia', '@sara_B2ST I''m fine how about you :)'), (6996, 138, 'Johore, Malaysia', 'TT'), (6997, 1206, 'Johor Bahru, Johore', 'Skytrain bring me to T1 (@ Terminal 2 w/ 9 others) http://t.co/C6wsqH9F'), (6998, 1773, 'Johor Bahru, Johore', '@heyhihoe I nub one , u play more cfm very good one.'), (6999, 1786, 'Johore, Malaysia', '@tingquan @wongeugene @stereor_ true.'), (7000, 2257, 'Johor Bahru, Johore', '@AzryWinston woit !!! Takmo sedeh!! Aku ada.'), (7001, 494, 'Johor Bahru, Johore', 'U action ehk with me..tk nk msg I agi @ArifMartn'), (7002, 2205, 'Tebrau, Johor Bahru', '9999 tweets ✌'), (7003, 2039, 'Singapore', 'Forum Bootboys. The Mighty Adelphi Crew,'), (7004, 1856, 'Singapore', '@beastdwlove_ really? how about twitlonger? or facebook?'), (7005, 6, 'Johore, Malaysia', 'Eluh bli apa" ga pernah bagi g, knpa g msti bagi eluh???'), (7006, 1786, 'Johore, Malaysia', 'siao liao.'), (7007, 193, 'Johor Bahru, Johore', 'transfer # 2 (@ Serangoon MRT Interchange (NE12/CC13)) http://t.co/CnNgiQVD'), (7008, 68, 'Riau, Indonesia', '@vfradenarieff kakak pingin mkn sate hehe,'), (7009, 2247, 'Johore, Malaysia', 'i miss you @TasyaaRazif'), (7010, 1398, 'Johore, Malaysia', 'Makan with kakak (@ Spize Bedok w/ 4 others) http://t.co/V7Ln0rLV'), (7011, 2258, 'Johore, Malaysia', '@gneheniale @AbsoluteVic @Yuancong9 @shaunysj i anything'), (7012, 2259, 'Pulai, Johor Bahru', '@MeiZhen_BLAH HAHAHHAHA mine come back ABIT le'), (7013, 2260, 'Riau, Indonesia', 'mulai dah tatik kumat kek dangdutny yg buek gerahhh kosan!!'), (7014, 2261, 'Malaysia', 'I''m at Central Hatyai (เซ็นทรัล หาดใหญ่) w/ @iiam1987 http://t.co/fIkdEx77'), (7015, 679, 'Johor Bahru, Johore', '@nabilah_razalie ya can ^^'), (7016, 206, 'Singapore', '@bunnybaby1315 ikr not like they goddess.'), (7017, 2262, 'Malaysia', 'กลับบ้านนนนนน (@ สถานีขนส่งผู้โดยสารหาดใหญ่) http://t.co/sCmURb7p'), (7018, 2263, 'Johor Bahru, Johore', 'The Bus is taking Fovever!~ (@ Bus Stop 75131 (Bet Blks 701/702)) http://t.co/AmcPvL2t'), (7019, 2264, 'Johor Bahru, Johore', '@withloveSabrina Nah it''s okay. Starbucks session soon! :)'), (7020, 1651, 'Pulai, Johor Bahru', '@erichafitrih hahahahaha. Konon aa? Ape ayat ''eh fadh tahu ehh?'' Haktuihhh -oo-'), (7021, 2265, 'Johore, Malaysia', '@SayKai @fzz87 yeah parent company of everything is temasek holdings, aka singapore govt.'), (7022, 130, 'Plentong, Johor Bahru', '@Aerza_Amir ando? Baby.. Protect tweet ya?'), (7023, 49, 'Johor Bahru, Johore', '@f_cukyou tragus is whr ? De ear top?'), (7024, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa mne ??x lepak ni lak ??'), (7025, 2266, 'Pulai, Johor Bahru', 'I''m at Z Family Restaurant, Taman Perling, Johor Bahru. (Johor Bahru, Johor) http://t.co/tClHnYZD'), (7026, 2259, 'Pulai, Johor Bahru', '@therantingcurse babe, really sorry! :('), (7027, 2267, 'Plentong, Johor Bahru', 'Heeee (@ Plaza Angsana w/ 4 others) http://t.co/1dvlrOsA'), (7028, 267, 'Johore, Malaysia', '@real_ash_23 many happy returns'), (7029, 309, 'Johor Bahru, Johore', '@those_memories doing things for u leh:p'), (7030, 467, 'Plentong, Johor Bahru', '@__kHAIRULaZRIE @Shazleenatasha Hahaha cis ingat aku tak betul eh ? :o'), (7031, 1875, 'Johor Bahru, Johore', '@derppp_ I''ve got English, SS, Malay, Chem and E. Maths..'), (7032, 2268, 'Johor Bahru, Johore', 'Wedding (@ Pin Shi @ Safra Yishun) http://t.co/q1v8E1lW'), (7033, 250, 'Johore, Malaysia', 'sakit gile ankle nie. Jalan pun cam org tempang dah. #fb'), (7034, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo bawa je arh abeh nnti park kat skolah lps tu blh gi sembayang perh'), (7035, 2039, 'Singapore', 'tolongggg lahhh keluar.. I dah lapar dah ni you.. I nak makan.. kang ni makan dia..'), (7036, 776, 'Johor Bahru, Johore', 'Working hard isn''t my style .. Working for money is . But now ?'), (7037, 2269, 'Johore, Malaysia', 'Psychedelic Merlion. Now, where''s me pill? @ Merlion http://t.co/Avqpng4u'), (7038, 2270, 'Johor Bahru, Johore', 'Can''t wait for batam trip next wednesday!! 6 days yawww yay!!'), (7039, 1473, 'Johore, Malaysia', 'I feel alive again (@ IMM Building w/ 17 others) http://t.co/q2Nic9qs'), (7040, 1812, 'Johor Bahru, Johore', '@WanFlizzow Otk lu aku bebual kelin...Kau kan underage macam mane nk beli???'), (7041, 776, 'Johor Bahru, Johore', 'Thanks baby @venomboiz'), (7042, 1936, 'Malaysia', '@amirWazZa my homework is your homework dickface'), (7043, 309, 'Johor Bahru, Johore', '@those_memories don''t need thank me so many time luh~'), (7044, 21, 'Johor Bahru, Johore', '@HilmiRaais @IIZZIIEE antum mane nk ajk kn... :p'), (7045, 1773, 'Johor Bahru, Johore', '@heyhihoe Ty.'), (7046, 2192, 'Johor Bahru, Johore', '@gwennyteoky UHHH WTH LOL r u kidding ?!? Anyway, pls tell me something I don''t already know.'), (7047, 716, 'Johor Bahru, Johore', 'Caan see that how quiet is my phonee is. Jyeaaphs. It''s so different now. Big freaking difference. Whoa.'), (7048, 68, 'Riau, Indonesia', 'RT @mumutcimamay: Mention'), (7049, 141, 'Johor Bahru, Johore', '@ilovekoreanbbq hyung..its ur birthday is it???saeng-il chukkhamnida... Dont ge sad.. Its not the year that matters.. U look so young tho...'), (7050, 413, 'Johore, Malaysia', '@xtinehearts busy with work and some other things... When comin back? Found a gf?'), (7051, 1496, 'Indonesia', '@_Risdamaris maaf, saya lagi belajar melihat bahwa cowok n cewek itu bisa melakukan hal yg sama.. #efekstudygender'), (7052, 1786, 'Johore, Malaysia', '@yizhonghere but provided the other stocks got people buy then they send.... T.T YYYYYYYYYYYY'), (7053, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs tak datang sini pun kannn :p'), (7054, 1936, 'Malaysia', '@Fizieeee mati syahid'), (7055, 206, 'Singapore', '@bunnybaby1315 @DioneKoh nawh got some p5 also i think xDD'), (7056, 2271, 'Malaysia', 'นั่งเล่น ๆ (@ มออ...นมสด-mooo...milk) http://t.co/XUBTnGQL'), (7057, 1554, 'Johore, Malaysia', 'Told mom about black pig, white pig, multicoloured pig+curly duck.'), (7058, 2272, 'Johore, Malaysia', 'Doing a MYE math paper.'), (7059, 1581, 'Kota Tinggi, Johore', 'Aaahhhh I can''t finish :('), (7060, 2273, 'Johore, Malaysia', 'I''m at Hotel 81 Rochor (Singapore) http://t.co/LUtthhFT'), (7061, 331, 'Johor Bahru, Johore', 'Smile like you''ve never cried, fight like you''ve never lost, love like you''ve never been hurt, and live like you''ll die tomorrow. &lt;:'), (7062, 2270, 'Johor Bahru, Johore', 'I feel like munching on snacks oh gawdddddd'), (7063, 1541, 'Johore, Malaysia', 'Dunno anything abt math'), (7064, 81, 'Johore, Malaysia', 'Miss all my OE people. why do they have to travel and study somewhere else. just stay put!'), (7065, 388, 'Johore, Malaysia', 'I''m at People''s Choice Snowflakes Ice Dessert http://t.co/5Mqd6e5R'), (7066, 2274, 'Johor Bahru, Johore', 'Maybe i shld have a chinese name since ppl always speak to me in mandarin...'), (7067, 2275, 'Johore, Malaysia', 'Mexican n beer! ;) (@ Muchos Mexican Bar And Restaurant) http://t.co/cjYGEARE'), (7068, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa brrr'), (7069, 762, 'Johore, Malaysia', '@_Jesusbeloved hahaha!! Sorry to be BHB haha (; miss you too!! I don''t even miss school, hate seeing them in school'), (7070, 1404, 'Johor Bahru, Johore', 'love is a serious mental illness.'), (7071, 2276, 'Johor Bahru, Johore', 'Dinner with lil bro (@ Swensen''s) http://t.co/iYnHpiQJ'), (7072, 2244, 'Johore, Malaysia', 'I''m at SBS TRANSIT Service 97 http://t.co/z8RiL0De'), (7073, 1371, 'Johor Bahru, Johore', 'I''m at 7-11 @ Bukit Gombak Mrt http://t.co/9NYTNMDt'), (7074, 206, 'Singapore', 'left the grp(:'), (7075, 1786, 'Johore, Malaysia', '@StereoR_ @tingquan @wongeugene ooooo. okayokay, i thought u have the polo alr?'), (7076, 1673, 'Malaysia', '@_GDRAGONBOTTH ต้มยํากุ้งดีป้ะ?'), (7077, 2124, 'Singapore', '@kamaliahusna wehhh. aku baru teringat nama taki , aiman hakim kann ?'), (7078, 309, 'Johor Bahru, Johore', '@those_memories yes boss~ i promise u:) I promise to nt to make empty promises~'), (7079, 2145, 'Singapore', '@alisyahamran Hhahahah! Wahh babe! you having a war with which bitch sia!?'), (7080, 708, 'Johor Bahru, Johore', 'God .. Feels like someone just hammered my stomach. Pain as hell.. Gah..'), (7081, 1554, 'Johore, Malaysia', '#wannaread 1984 by George Orwell'), (7082, 2277, 'Johor Bahru, Johore', '@pcsyndrome @willllzzz or wan eat at rockery tomorrow ?'), (7083, 657, 'Johore, Malaysia', '@hahazaahir ko cakap nak buat akaun kat situ nanti dia isikan borang online semua..bayar rm50 nanti ko boleh kuarkn balik rm30,kena tgl rm20'), (7084, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims ouh jusco . ingadkan adek pegi cs tadi . akak pon sabtu nie pegi jusco jewpp . huhh ! adek pegi ngan ainna ke ?'), (7085, 2278, 'Johore, Malaysia', 'Cream overdose......... I''m so full.... I can barely squeeze tru the door now.. T.T'), (7086, 331, 'Johor Bahru, Johore', '5B1G . &lt;3'), (7087, 1101, 'Johore, Malaysia', '@Afifjefri http://t.co/CYzd6gKP'), (7088, 435, 'Johor Bahru, Johore', 'RT "@eugenechanyc The rare moments I feel fat... HAHAHHA"'), (7089, 206, 'Singapore', '@bunnybaby1315 IKR BIG BANG MORE LIKE DAMNIMPORTANTPEOPLE. 2NE1 LIKE QUEENS. &lt;3'), (7090, 1936, 'Malaysia', '@bevfever nou'), (7091, 2279, 'Johore, Malaysia', 'I''m at Blu Jaz Cafe (Singapore, Singapore) http://t.co/wAM4EwyB'), (7092, 2039, 'Singapore', 'siakk. suruh gua nyanyi SHARP Skins kat telinga dia. baru dia nak bangun.. pelempang nanti.'), (7093, 1736, 'Johore, Malaysia', 'I''m at Bini Beauty Salon w/ @priddycunt http://t.co/EIuWkfA3'), (7094, 1736, 'Johore, Malaysia', 'I just ousted @meowzxz as the mayor of Bini Beauty Salon on @foursquare! http://t.co/wecr41ki'), (7095, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa hahaha .smlm alep amek kw kol bpe ?lambat pe ??'), (7096, 2280, 'Riau, Indonesia', 'sabar itu jalan terbaik menunggu hasil yang baik pula'), (7097, 1674, 'Johore, Malaysia', 'I''m at Sim Siang Choon Hardware (Singapore, Singapore) http://t.co/Wq49N5vF'), (7098, 2281, 'Johor Bahru, Johore', 'I just wish that I can make it right, this time.'), (7099, 1856, 'Singapore', '@beastdwlove_ haha okay~'), (7100, 1526, 'Malaysia', '@wararat_amp คงไม่ได้ดูเหมือนกัน เล่นถึง 4ทุ่มคงไม่ไหว อั้ยเราก็นึกว่าพี่แอมจะดูแต่ไม่เป็นไร ค่อยดูตอนเช้า^_^'), (7101, 2177, 'Kota Tinggi, Johore', '@nixxxy korek!!gusto ko tuloy umuwi :('), (7102, 2282, 'Plentong, Johor Bahru', 'I''m at Kapten steamboat &amp; grill (Johor Bahru, Johor) http://t.co/XMF3VuTd'), (7103, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa bile nk topup?'), (7104, 193, 'Johor Bahru, Johore', '@ramie2003 I was thinking Tim Hortons. Or maybe even just a shawarma. *sigh* #imissdubai'), (7105, 606, 'Johor Bahru, Johore', '@sherlynwsm @aijoueunice @helloiamxinhui )'': I forget I Sat wanna do what already! If nothing on I saturday go also kay! Just to meet u2❤'), (7106, 2283, 'Johore, Malaysia', '@Unstoppabelle haha u know I used to have what! Basket! Lol now no time to train it back hahahaha'), (7107, 1101, 'Johore, Malaysia', '@azwan_yaacob Haha ,'), (7108, 49, 'Johor Bahru, Johore', 'Hais .. I have no rites to do it . Ya I noe I''m\nNot gonna care anymore don tell me I don wanna listen about that agn'), (7109, 2284, 'Johore, Malaysia', '@rynrlee07 yeah. With @BennyFany4u @darylchow @llebrahC losing for first half. 0 - 1'), (7110, 1786, 'Johore, Malaysia', '@StereoR_ @tingquan @wongeugene sell me la. the polo. HAHAHAHHA'), (7111, 1435, 'Johor Bahru, Johore', '@Miraclesillyy haha. Yahor! Happy advance ! '), (7112, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Hahhahahaha tahu takpe. Mana mana? Kata nak bagi ^__^'), (7113, 1651, 'Pulai, Johor Bahru', '@erichafitrih kau cerita full baru aku diammm ~'), (7114, 2199, 'Riau, Indonesia', '''''pacah kpalo lai ko'''), (7115, 206, 'Singapore', '@bunnybaby1315 @DioneKoh yeah just saw a post xDD'), (7116, 1837, 'Singapore', '@BABYITSZELO I thought you Zelo bias de !'), (7117, 2263, 'Johor Bahru, Johore', '@khairulezzad woi! Message you no response.. -.-'), (7118, 2247, 'Johore, Malaysia', '#PeopleIWantToMeet iszz!!!! IBU!'), (7119, 1151, 'Johor Bahru, Johore', '@Sammmtann clever :)'), (7120, 2039, 'Singapore', 'Atylia dan Nyssa LEE. tgh tgok wyg. patut lahh gua call tkmo agkt --"'), (7121, 1526, 'Malaysia', '@NeayWR_Boice แล้วทำไรอยู่จ๊ะน้องสาว'), (7122, 1837, 'Singapore', '@BABYITSZELO Pui la'), (7123, 2007, 'Singapore', 'oh ia,situ kurus ya @hendrikpurnama'), (7124, 2231, 'Johore, Malaysia', 'Argh!!! Que me pasa :/ esta mui duro .. No puedo :''('), (7125, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY hahahaha sabar la.. Nanti kita lepak sama2 k'), (7126, 68, 'Riau, Indonesia', 'asiiiiiiik sehatisehati :**&lt;3 RT @tessaaMRD: Waah sama laagii ciee :**RT @IlfaAzlyani: cieeh sehati:** nonton yus'), (7127, 1651, 'Pulai, Johor Bahru', 'Tulahhh ericha nak rahsia dengan aku lagii!!! Kan dah kantoiii. Wuwuwuwuwuwuw ^^v'), (7128, 331, 'Johor Bahru, Johore', 'i love yesterday''s bomb game and quest.'), (7129, 1185, 'Johor Bahru, Johore', '@onomatojuju haha! Good on ya! My arms were flailing all over the place in swim class... Last Monday and over a decade ago. Haha'), (7130, 2220, 'Johor Bahru, Johore', '@akosipuppydan okey sige'), (7131, 1348, 'Johore, Malaysia', 'I''m at The Chevrons (Singapore, Singapore) http://t.co/dxhVdacu'), (7132, 2285, 'Johore, Malaysia', 'I''m at Clarke Quay (Singapore, Singapore) w/ 2 others http://t.co/RzxfpKRi'), (7133, 136, 'Johore, Malaysia', 'Just shut the fuck up will you.'), (7134, 1840, 'Johor Bahru, Johore', 'I''m at 27, Hume Park 2 (싱가포르) http://t.co/0w3I6FZz'), (7135, 1773, 'Johor Bahru, Johore', '@heyhihoe nothing :)'), (7136, 130, 'Plentong, Johor Bahru', 'RT @SantapanMinda: Apabila cacian dan makian sudah menjadi amalan harian, hati akan bertambah keras untuk menerima teguran'), (7137, 850, 'Johor Bahru, Johore', 'Wow this wallpaper dl from mnet website. So clear !! http://t.co/UcLEspMo'), (7138, 762, 'Johore, Malaysia', '@_Jesusbeloved yes you may(; can i help you?'), (7139, 2286, 'Johor Bahru, Johore', 'I''m at Tampines Interchange (Singapore) http://t.co/rDxIb6ZA'), (7140, 2287, 'Pulai, Johor Bahru', '@nurhidayahisa awak bila lg?final year student gak kn?keh3'), (7141, 223, 'Pulai, Johor Bahru', 'I''m at Kinsahi@Bukit Indah http://t.co/jKORYR5w'), (7142, 2288, 'Malaysia', 'Rockin'' dance (@ สนามกีฬาจิระนครหาดใหญ่ w/ @greenkub) http://t.co/IQToUJxV'), (7143, 711, 'Johor Bahru, Johore', 'Happy being fat!!!'), (7144, 2289, 'Johor Bahru, Johore', 'Today also got problem . Fuck la .'), (7145, 1196, 'Kota Tinggi, Johore', 'Spain teu alus speaking englishna..RT @IntAn_ImUtsExy: BuLe paLsu ah, ga romantis (cont) http://t.co/ApGXzQ6G'), (7146, 670, 'Pulai, Johor Bahru', 'I''m at Homeyyy (Johor Bahru, Johor) http://t.co/e030aarF'), (7147, 412, 'Johore, Malaysia', 'The world is weird. When you wanna go slow, everything around you quickens. When you wanna speed up, everything around you is slacking.'), (7148, 2290, 'Riau, Indonesia', 'Goin'' home... (@ Universal Studios Singapore w/ 6 others) [pic]: http://t.co/F5f1Qolh'), (7149, 1936, 'Malaysia', '“@bevfever: How to finish so many homework in like 4 days when I procrastinate so much??” welcome to me and @deborahleee ''s club'), (7150, 223, 'Pulai, Johor Bahru', 'I''m at Daiso (Johor, Johor) http://t.co/ylfXjfMd'), (7151, 1497, 'Johor Bahru, Johore', '@dannychoo how to fake a Jap iTunes account..... ._.'), (7152, 2291, 'Johore, Malaysia', 'Band tmr ~'), (7153, 2166, 'Johore, Malaysia', 'Someone help me do my hw, i give you commission XD HAHAHA'), (7154, 2231, 'Johore, Malaysia', 'Oh fuck .. This is really hard :/'), (7155, 2292, 'Johore, Malaysia', 'hello! no more homework today. waking up slightly earlier to do hw. hehe hopefully'), (7156, 2247, 'Johore, Malaysia', '@TasyaaRazif kiter??? hahahah study lah.. :)'), (7157, 141, 'Johor Bahru, Johore', 'Like so many friends will come along the way...'), (7158, 487, 'Johore, Malaysia', '@nareerat_27 dunno die where no one talk to me :( I''m bored.'), (7159, 1954, 'Johor Bahru, Johore', 'Not going to be the same person any more. Think it''s time to just live for myself.'), (7160, 1651, 'Pulai, Johor Bahru', '@erichafitrih who cares ~'), (7161, 2293, 'Johore, Malaysia', 'I''m at Astons Express w/ @xuetingxueting http://t.co/CRnE9cfR'), (7162, 494, 'Johor Bahru, Johore', 'Ehk, Sufian yg act citer siapa terror tu kat bwh blk aku uat ape sia o_O?'), (7163, 2294, 'Johor Bahru, Johore', 'I''m at AMK Hub (Singapore) w/ 18 others http://t.co/wYRBD2Fs'), (7164, 2295, 'Johore, Malaysia', '@dhaneshthiru haha dhane put on your player face'), (7165, 2296, 'Johor Bahru, Johore', 'I''m at Pusara Aman Mosque (Lim Chu Kang, Singapore) http://t.co/hmzd9Y2S'), (7166, 1936, 'Malaysia', '@madihahnikfuad I.S'), (7167, 445, 'Malaysia', '@shineiz ยอๆ ขอบคุณมากน้าาา^[]^'''), (7168, 223, 'Pulai, Johor Bahru', 'I''m at Starbucks Malaysia (Official) (Johor Bahru, Johor Darul Ta''zim) http://t.co/GuJ4lkjG'), (7169, 2285, 'Johore, Malaysia', 'I''m at Shiraz @ Clarke Quay w/ @bryanhihi @ozkkkkkk http://t.co/IeoAmsJu'), (7170, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan dia kan cakap kan suke kite kan tapi kan dia kan ade kan makwe lah kaaaannn.....'), (7171, 285, 'Singapore', '@7amakhChawi @hazimnadzrin @Orukazaki aurat. astargfirullah :p'), (7172, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs okayyy nanti esok jangan tak datang pulakk :p'), (7173, 2297, 'Riau, Indonesia', 'I''m at Malaysian Food Street w/ 3 others http://t.co/CM8s2p79'), (7174, 1021, 'Johor Bahru, Johore', 'I''m at Blk 308 Choa Chu Kang Ave 4 http://t.co/qCwCjHeN'), (7175, 10, 'Singapore', '@BaftaNotch Have you ever once felt that programming is a chore?'), (7176, 1516, 'Malaysia', 'I''m at ตลาดใหม่ (หาดใหญ่, ประเทศไทย) http://t.co/qPcJxeeu'), (7177, 2298, 'Johore, Malaysia', 'nyum nyum nyum......'), (7178, 637, 'Singapore', 'H.W&gt;B.M'), (7179, 2039, 'Singapore', 'yg kaya semakin kaya. yg miskin semakin miskin. *lupa lahh tajuk lagu ni'), (7180, 1021, 'Johor Bahru, Johore', 'I''m at Eugene''s Crib :) http://t.co/ANPF4pHc'), (7181, 2277, 'Johor Bahru, Johore', '@WILLLLZZZ @pcsyndrome peem boss ! Eu wan marhh ?'), (7182, 2299, 'Johore, Malaysia', '@icydurian lol was just thinking about that. Same thing happens with my brain too. Always on maintenance until 10 pm'), (7183, 1515, 'Johore, Malaysia', 'My doo doo ice cream. :) less than 3'), (7184, 1936, 'Malaysia', '@Fizieeee fizi kat rumah fizi. Ok'), (7185, 68, 'Riau, Indonesia', 'RT @aldokurniawaan: SINGLE'), (7186, 562, 'Plentong, Johor Bahru', 'Shisha-ing! Sama Bullart! ;) (@ Restoran Singgah Selalu w/ 2 others) http://t.co/FsyceaPd'), (7187, 716, 'Johor Bahru, Johore', 'Seriously damn tiredd. /:'), (7188, 2300, 'Johore, Malaysia', 'Dinner with love @highrule_ @ Kampong Glam Cafe http://t.co/XTKFY3LF'), (7189, 445, 'Malaysia', '@TUAN_TH ซื้อลูกชิ้นอยู่!5555'), (7190, 2301, 'Johore, Malaysia', 'Forty thousand calories at forty hands! @ Forty Hands http://t.co/Nm71nDyh'), (7191, 2302, 'Kota Tinggi, Johore', 'I love my friends:)'), (7192, 1812, 'Johor Bahru, Johore', '@WanFlizzow Macam paham...Silap-silap rokok basi dia jual kt kau...Hahaha baru tau...'), (7193, 188, 'Johor Bahru, Johore', 'Hving a crush do come and go dont they? :/'), (7194, 1980, 'Singapore', '@jinnielaine ^-^'), (7195, 1196, 'Kota Tinggi, Johore', 'I''m at Rocky hill field http://t.co/OLsoZSPW'), (7196, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa haha .kesian kw .asl x tdo je uma eype'), (7197, 2303, 'Johor Bahru, Johore', 'Dinner at Punggol Kopitiam'), (7198, 68, 'Riau, Indonesia', '@vfradenarieff belum dek,hmm jam9 datengnya huaa'), (7199, 657, 'Johore, Malaysia', '@ZamerZahran ceh..dari dulu ko sengal..hahaha'), (7200, 193, 'Johore, Malaysia', '@chuaenlai nice! Garibaldi''s always amazing.'), (7201, 206, 'Singapore', '@DioneKoh @bunnybaby1315 thank goodness i left xD'), (7202, 467, 'Plentong, Johor Bahru', '@__kHAIRULaZRIE @Shazleenatasha Iye iye je dekat maktab'), (7203, 65, 'Singapore', '@Yinting_Lee chiobu'), (7204, 102, 'Singapore', '@afyzahh tk ah! ^^'), (7205, 762, 'Johore, Malaysia', '@_Jesusbeloved you know what!! IDGAF to anything related about school, i know that i love the teachers and school only, the rest i hate them'), (7206, 117, 'Johore, Malaysia', '@sara_B2ST thank you hahahha :) im sweet as well HAHAH just kidding'), (7207, 2304, 'Johore, Malaysia', '@SamHerbieOng then climb la.'), (7208, 1140, 'Johor Bahru, Johore', 'I thought we were good friend ? No I''m wrong. .'), (7209, 1944, 'Johor Bahru, Johore', 'I''m at Compass Point Shopping Centre (Singapore) w/ 12 others http://t.co/t1uoGaeK'), (7210, 117, 'Johore, Malaysia', '@zomgitsnawar alone HAHHA'), (7211, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha . biase laaa ramai budak hotsentap . hihi XD cari laaaaaaa :)'), (7212, 244, 'Johor Bahru, Johore', '@xmissjacy juz a clue. It''s polka dots!'), (7213, 845, 'Malaysia', 'I''m at 7-11 ศรีภูวนารถ http://t.co/CaArCQfF'), (7214, 1994, 'Singapore', 'http://t.co/bS1DCUbK still ma fav!'), (7215, 1195, 'Johore, Malaysia', 'I''m at Forbidden City Pub.. http://t.co/r6eTFQht'), (7216, 1874, 'Johor Bahru, Johore', 'Forget to check in. Hehe ^^ (@ Home @ Blk 175 Yishun Ave 7) http://t.co/pWHzMC1X'), (7217, 2305, 'Johor Bahru, Johore', '@Jackvicgoh YES?!'), (7218, 1786, 'Johore, Malaysia', 'WTF. this guy got white and black agnes b shirt. shiok or shiok?!'), (7219, 1184, 'Johore, Malaysia', 'Huat ah Eurasia !'), (7220, 528, 'Johor Bahru, Johore', '@Limqiing okay. Anytime welcome you.'), (7221, 1185, 'Johor Bahru, Johore', '@_jeremyroy metroid hindi meteoroid! Hmph! #drawsomething'), (7222, 1586, 'Johore, Malaysia', 'I''m at Fruit Paradise Dining (Singapore, Singapore) http://t.co/uxFdsXuz'), (7223, 331, 'Johor Bahru, Johore', '#SomePeopleNeedTo stop being a busybody.'), (7224, 671, 'Johor Bahru, Johore', 'I''m at Sun Plaza (Singapore, Singapore) http://t.co/DHv1cEVW'), (7225, 593, 'Johor Bahru, Johore', 'When went to buy mask again~ http://t.co/X2HcQZRj'), (7226, 2231, 'Johore, Malaysia', 'I hate it when.this happens'), (7227, 1786, 'Johore, Malaysia', '@StereoR_ @tingquan @wongeugene HAHHA ok'), (7228, 1651, 'Pulai, Johor Bahru', 'Hehe. Cepat bagitahuuu ~ konon.......... ''Ehh kepohnya fadh -____-'' ahhh nyampahhh -oo-'), (7229, 762, 'Johore, Malaysia', 'OI can you just shut the fuck up_|_'), (7230, 1651, 'Pulai, Johor Bahru', '@erichafitrih ahhh confirm kau tk ceritaa ~'), (7231, 2277, 'Johor Bahru, Johore', '@WILLLLZZZ @pcsyndrome what ? LOL'), (7232, 2306, 'Pulai, Johor Bahru', 'I''m at Restoran Pinang Taman U (Ayam Penyek) http://t.co/HxZZfcQW'), (7233, 142, 'Johore, Malaysia', 'Why hold on when you know you''re hurting deep down? I tried my best to help you but you push me away cos of him. I can''t help anymore.'), (7234, 1402, 'Johor Bahru, Johore', 'I''m at Queen''s Desserts (Singapore) http://t.co/GGWvw0Q1'), (7235, 2307, 'Johore, Malaysia', 'Dinner celebration!!! (@ Cafe de Hong Kong) http://t.co/VQfHQd0L'), (7236, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan dia kan cakap kan nak datang kedai ajak makan kan tapi kan haraaaamnm tau....'), (7237, 2039, 'Singapore', 'garang RT @adek3000 Tak suka sembang banyak. Kalau tak puas hati tahap pepek sini kita bertumbuk. Kalau nak berbahas gua rasa tak layak kot.'), (7238, 244, 'Johor Bahru, Johore', '@xmissjacy hey I miss u la. Meet tml?'), (7239, 1769, 'Plentong, Johor Bahru', '@azieraziezie banyak duit rezeki allah . sabtu nie hang laaa nak tengok 7 petala cinta :)'), (7240, 2007, 'Singapore', 'oh ia, frontal tp benar RT @hendrikpurnama @buddisetiawan -,-" #frontalnya minta di sodok'), (7241, 670, 'Pulai, Johor Bahru', '时间越久,感觉越强烈'), (7242, 2277, 'Johor Bahru, Johore', '@pcsyndrome @willllzzz willys , any objection ? ;p'), (7243, 2272, 'Johore, Malaysia', 'Why look down on yourself when others look up to you?'), (7244, 2308, 'Johore, Malaysia', '@teoquanfu sorry boss!'), (7245, 2124, 'Singapore', 'Same with me :) RT @syaifaaaaa I''m excited to go to school this Wednesday , I wanna show my mum the boy I used to have a crush on. lol'), (7246, 1769, 'Plentong, Johor Bahru', '@FyyTasha hihi kan kan . good :)'), (7247, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyPaan hahaha ,kntoi ,td ptg bru aq nmpk dye jln2 .'), (7248, 196, 'Johore, Malaysia', '@PoChopper fuckinsame'), (7249, 1435, 'Johor Bahru, Johore', 'Yay! He replied! ^^'), (7250, 2309, 'Johor Bahru, Johore', ':$'), (7251, 2310, 'Johore, Malaysia', 'Anniversary with my mini me''s... http://t.co/PjCxChVl'), (7252, 2311, 'Johore, Malaysia', 'Hbd nerie! (@ Gerry''s Grill @ Starhub Centre) http://t.co/efhf197c'), (7253, 142, 'Johore, Malaysia', 'I''m sorry but I tried saving you thousand of times but you still chose to do it. Don''t look for me now. Go do what is best for yourself.'), (7254, 343, 'Johor Bahru, Johore', 'I''m at Teck Ghee Vista @ AMK http://t.co/zd2imxWg'), (7255, 2247, 'Johore, Malaysia', '@TasyaaRazif J???? this is crazy!!!! hahaah that crazy frog?? hahaha'), (7256, 1726, 'Johore, Malaysia', '@cloverella yay ☺☺☺'), (7257, 628, 'Johor Bahru, Johore', 'I''m at myVillage at Serangoon Garden (Singapore, Singapore) w/ 3 others http://t.co/tgrJ4eWM'), (7258, 331, 'Johor Bahru, Johore', '#SomePeopleNeedTo stfu. heh. :&gt;'), (7259, 38, 'Johor Bahru, Johore', 'Retarded advertisement.'), (7260, 343, 'Johor Bahru, Johore', 'I''m at 308a Ang Mo Kio Teck Ghee Vista (http://t.co/oqCMG5k4) http://t.co/pF3FA5Fq'), (7261, 1837, 'Singapore', '@BABYITSZELO Okay fine you win :P'), (7262, 1043, 'Johor Bahru, Johore', 'I just ousted Jackie T. as the mayor of Financial Hub @ Blk 603 on @foursquare! http://t.co/GUDMeook'), (7263, 1043, 'Johor Bahru, Johore', 'I''m at Financial Hub @ Blk 603 http://t.co/E9Covg58'), (7264, 2292, 'Johore, Malaysia', 'i think i really miss you a lot .'), (7265, 716, 'Johor Bahru, Johore', 'Shall go home early tmrw just to do homework after running and eating with @ReaperSora @Jo_anna_Banana @ShirahLoves1D &amp; @NammyImmaELF .'), (7266, 2039, 'Singapore', 'akhirnya.. bangun jugak beliau..'), (7267, 1981, 'Johor Bahru, Johore', '@iDreamFantasy @dacrazyweirdone @steph_songsari haiyo it''s not gonna work like that :&lt;'), (7268, 2110, 'Johore, Malaysia', '@sharon_cuneta12 we will never be good enough for everybody but we are the best for someone who really appreciates us!'), (7269, 2312, 'Johore, Malaysia', 'I''m at H&amp;M (Singapore) w/ 5 others http://t.co/KC5Z8n2x'), (7270, 1007, 'Johor Bahru, Johore', 'I''ve an array of ice cream shops in front of me and I have no money. T_T'), (7271, 2132, 'Johore, Malaysia', '@salehasauki innalillah...'), (7272, 657, 'Johore, Malaysia', '@hahazaahir xtau la kalau xd org jge..tapi yg tu la murah pki rm50 je..kalau x mahal'), (7273, 1043, 'Johore, Malaysia', 'I''m at Mitsubishi Motors http://t.co/iur1c0l0'), (7274, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa haha .tp kw dpt gak rse balik lmbat .haa'), (7275, 1526, 'Malaysia', '@wararat_amp 55555+ ดูย้อนหลังเหมือนกัน (มีเพื่อนหละ นึกว่าจะไม่ดูอยู่คนเดียว)'), (7276, 762, 'Johore, Malaysia', '@_Jesusbeloved haha(;'), (7277, 2313, 'Johor Bahru, Johore', 'Waiting for someone &lt;3 (@ Terminal 1 Arrival Hall w/ @xpeiqix) http://t.co/Z9Il7c9B'), (7278, 206, 'Singapore', '@MyPhenomeniall hahaha maybe o.o'), (7279, 2289, 'Johor Bahru, Johore', 'If this problems effect my recording for tmrw . I''ll get fucking piss .'), (7280, 1981, 'Johor Bahru, Johore', '@steph_songsari @iDreamFantasy @dacrazyweirdone do a little bit of work yourself and we''ll mash it together k? K I lub you guys, bye :-)'), (7281, 1154, 'Johore, Malaysia', 'Korean Walnut Cakeeeeeeee! (@ Carrefour) http://t.co/uwvYvJFj'), (7282, 413, 'Johore, Malaysia', '@xtinehearts Wah which means 1 more month!!! Yeah have someone in mind already hahha'), (7283, 1206, 'Johor Bahru, Johore', 'Jemput mama wifey (@ Terminal 1 w/ 21 others) http://t.co/En1uhjPR'), (7284, 138, 'Johore, Malaysia', 'Okay i not scared already LOL'), (7285, 513, 'Johor Bahru, Johore', 'Sian la'), (7286, 2206, 'Johore, Malaysia', 'http://t.co/3FqCbDsy'), (7287, 716, 'Johor Bahru, Johore', '@tripodmonster hahah, yours not line and not unlimited texts ahh?!'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (7288, 1196, 'Kota Tinggi, Johore', 'Mnehna nyatu, nginum, ark ka hotel mh kburu beak duitna.. Jadah..RT @IntAn_ImUtsExy: Nanaonan wae (cont) http://t.co/wTYSV83M'), (7289, 2314, 'Johore, Malaysia', '@zeemelodia hahaha..tkleh ar der..btw bsk plz zee..uss :''( :''( *nanges*'), (7290, 1043, 'Johore, Malaysia', 'I''m at Jewel Cable Car Ride http://t.co/xL4p0iW9'), (7291, 206, 'Singapore', '@DioneKoh @bunnybaby1315 IKRIKR THEY DESCRIBING THEMSELVES o,o'), (7292, 762, 'Johore, Malaysia', '@_Jesusbeloved not you lah (; aiyo!! (; hahaha!! SHHHHH &gt;.&lt;'), (7293, 193, 'Johore, Malaysia', 'So the trains did break down. Lucky me! I''m on night shift today and was not hassled by this. #SBS #NEL #purpleline #hellosg'), (7294, 487, 'Johore, Malaysia', 'Oh ya @nareerat_27 went to Bangkok. Sawadi-kup, buy present for me kup. if not chan will kliat khun mak mak kup.'), (7295, 2315, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 28 others http://t.co/YofKS6lg'), (7296, 606, 'Johor Bahru, Johore', '@sherlynwsm @aijoueunice @helloiamxinhui okay sure darlings!!'), (7297, 1720, 'Johor Bahru, Johore', '@bentclyff @AminShafieSaad @AdaAbd @Din_impaler wow last long.farris :'')'), (7298, 548, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 32 others http://t.co/WD4xeqJ6'), (7299, 2316, 'Johore, Malaysia', 'I''m at J.Co Donuts &amp; Coffee (Singapore) w/ 2 others http://t.co/BjqYH6gG'), (7300, 551, 'Johor Bahru, Johore', '@WordsLikeBullet @kohkohcrunchhh bryan tmr u come rite'), (7301, 2317, 'Johor Bahru, Johore', 'Ordinary @ Sheng Siong Supermarket http://t.co/Rp0QVlx7'), (7302, 1651, 'Pulai, Johor Bahru', '@erichafitrih kalauuuuu takkkkkkkkk!!!'), (7303, 72, 'Johor Bahru, Johore', '@TheEntertainerX ._. I don''t understand a single thing ur talking. LOL'), (7304, 2247, 'Johore, Malaysia', 'mlam ni berjubah purple.. hahaha..'), (7305, 2206, 'Johore, Malaysia', '"I am young, I spend most of my time online, I have private things on my phone, I go to bed late and I''m crazy about one person."'), (7306, 1375, 'Johore, Malaysia', 'Finally a #Uniqlo near my hood. @ Parkway Parade http://t.co/VSvOlbNx'), (7307, 1009, 'Johor Bahru, Johore', 'I''m at Hongzhen''s Study Room ! http://t.co/4hYxz2gg'), (7308, 2072, 'Kota Tinggi, Johore', '@chanel_branded pain anot? because of the dog &amp; bone , that time super sunny.'), (7309, 72, 'Johor Bahru, Johore', '@awesomelady98 arbo ._,'), (7310, 1812, 'Johor Bahru, Johore', '@WanFlizzow hahaha...Lagi satu punye rokok foc kau nk???'), (7311, 206, 'Singapore', '"drink water" ♥♥♥'), (7312, 467, 'Plentong, Johor Bahru', '@__kHAIRULaZRIE @Shazleenatasha Amboi, tak ada ckp la tak ada :)'), (7313, 2308, 'Johore, Malaysia', '@Peizhao_ I where will ultimate loser please !'), (7314, 2007, 'Singapore', 'pasti org rumbai --&gt; @reskaprima'), (7315, 1304, 'Johor Bahru, Johore', '~I need a doctor.. I need a doctor.. Doctor.. Doctor.. (@ Chia &amp; Lee Medical &amp; Dental Clinic) http://t.co/h8i9oFrU'), (7316, 2319, 'Johor Bahru, Johore', 'I''m at 一四九 (Sg) http://t.co/54JnVPqD'), (7317, 1196, 'Kota Tinggi, Johore', 'Saeutik2 mh nyambung cacahana.. :D RT @IntAn_ImUtsExy: Wuiiih :o bhsa isyarat kah? (cont) http://t.co/juylBAWh'), (7318, 2308, 'Johore, Malaysia', '@BoonLikeNobody but pretty! HAHA'), (7319, 2320, 'Johor Bahru, Johore', '@YijieMEOW so now U confirm the only guitarist for china MT ah?:)'), (7320, 551, 'Johor Bahru, Johore', '@MansoorAdabi girl?'), (7321, 775, 'Johore, Malaysia', 'Techno Gym...'), (7322, 193, 'Johore, Malaysia', 'transfer # 3 (@ Paya Lebar MRT Interchange (EW8/CC9) w/ 3 others) http://t.co/jYhdn6kJ'), (7323, 2321, 'Johore, Malaysia', 'le dinner here. (@ Bugis Junction w/ 21 others) http://t.co/f0QF9hGv'), (7324, 72, 'Johor Bahru, Johore', '@awesomelady98 awwwwh :D *bites u*'), (7325, 2252, 'Johor Bahru, Johore', 'lapar siak !!!'), (7326, 2164, 'Johor Bahru, Johore', 'Sian!! Whr my dad??'), (7327, 2319, 'Johor Bahru, Johore', 'I''m at simei 145 http://t.co/qBbvToQX'), (7328, 2007, 'Singapore', 'sjak kapan gw g mau iktan jalan? haha siap @hendrikpurnama @buddisetiawan gw agustus nunggu undangan om judi, mau ke UJUNG KULON naek SEPEDA'), (7329, 637, 'Singapore', '@Jaaagiii noooo, not even similar!!!!'), (7330, 2323, 'Riau, Indonesia', '@KabarUtamaOne BLT bikin masyarakat lupa togel, 3 hari sdh habis . buat beli gas 3 KG, pulsa 10.000 , beli beras 20 KG ... lalu kelaparan'), (7331, 1988, 'Johore, Malaysia', 'You treated me like an option so I left you like a choice.'), (7332, 1244, 'Johor Bahru, Johore', 'I''m at Carpark A11 Blk 224/225 http://t.co/u1unDKk7'), (7333, 1371, 'Johor Bahru, Johore', 'I''m at Bus Stop 43579 (Singapore) http://t.co/KQFaYpSk'), (7334, 1812, 'Johor Bahru, Johore', '@TasnimKun Why???'), (7335, 2319, 'Johor Bahru, Johore', 'I''m at esplande xchange food avenue http://t.co/BexalKVN'), (7336, 551, 'Johor Bahru, Johore', '@MansoorAdabi yayaya last time sell prata wif me'), (7337, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @lkmariquit @rinabanana @sheslley ay defotah!! kakapoy! letche lapit nlng ah konting tiis!'), (7338, 72, 'Johor Bahru, Johore', '@awesomelady98 see! Now your mouth lying to u too'), (7339, 2192, 'Johor Bahru, Johore', '@gwennyteoky lol ok bye'), (7340, 65, 'Singapore', '@Yinting_Lee Noooo. it''s AWESOME!!!!!!!!!!!'), (7341, 2324, 'Riau, Indonesia', 'pendiem - pendiem sabar sabar emosi mati smua'), (7342, 1698, 'Johore, Malaysia', 'I''m scareddddd. Imagine I start coughing allllot in the middle of my audition :( sigh, I hate being sick.'), (7343, 1769, 'Plentong, Johor Bahru', '@azieraziezie ngan bf jelaaa . hihi -,-'), (7344, 228, 'Johor Bahru, Johore', '@amirarx hahaha !, *Face position* alrdy come lai ! Hahah, Punch'), (7345, 68, 'Riau, Indonesia', 'hai chak ;) RT @ChicakACP: Hai fa :)"@IlfaAzlyani: RT @ChicakACP: Mention?"'), (7346, 2023, 'Johor Bahru, Johore', 'I''m at Home! (Singapore) http://t.co/5WU9AQLl'), (7347, 1390, 'Johore, Malaysia', 'I''m at Bugis Junction (Singapore, Singapore) w/ 22 others http://t.co/PXh52Tbe'), (7348, 2325, 'Johore, Malaysia', 'Someone''s reading Sherlock Holmes. Apparently a character just died. (at Marina Square) [pic] — http://t.co/ix4nXqV7'), (7349, 2326, 'Riau, Indonesia', '@KetutAyuMira @SwittinS aq jga http://t.co/v9iSwLGP'), (7350, 1244, 'Johor Bahru, Johore', 'I''m at Edmund''s hse http://t.co/nCYVvcTQ'), (7351, 1521, 'Malaysia', 'ชิวอ่ะ (@ ตลาดกรีนเวย์ ((Green Way Market : HDY || w/ 3 others) http://t.co/ZBIZNQal'), (7352, 2327, 'Malaysia', '@nutnunoil ยังหาใม่เจออีก อี๊'), (7353, 1247, 'Johore, Malaysia', '@S3R1zawa hahah! Now I''m scared !'), (7354, 130, 'Plentong, Johor Bahru', '@SemsTria #AdaOrangTu kan sombong ah~'), (7355, 791, 'Johore, Malaysia', 'At Marhaba Arabic Cuisine — http://t.co/3DA1W4Mr'), (7356, 2328, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 25 others http://t.co/ohn7rnSH'), (7357, 1496, 'Indonesia', 'wollen nicht, Sie zu enttäuschen\n\nDedicated 2 dia yang berhasil stealing mine..'), (7358, 10, 'Singapore', 'omg ace learning &gt;.&gt; how to solve'), (7359, 2319, 'Johor Bahru, Johore', 'I''m at Xxfaizalxx ''s Crib http://t.co/14Ga6KG7'), (7360, 1244, 'Johor Bahru, Johore', 'I''m at my sweet gaming room http://t.co/ze75fyvd'), (7361, 38, 'Johor Bahru, Johore', 'No new connect ):'), (7362, 68, 'Riau, Indonesia', 'missyoutoocantik:''''&lt;3 RT @tessaaMRD: Loveyouu muut haha :*RT @IlfaAzlyani: asiiiiiiik sehatisehati :**&lt;3 R'), (7363, 2039, 'Singapore', 'harini kawan kawan aku semua jd garang. emm.. takut nak tegur.. :('), (7364, 1040, 'Kota Tinggi, Johore', '2,600 (:'), (7365, 2319, 'Johor Bahru, Johore', 'I''m at XxFaiZaLPaRaDiSexX''s Comfy Bed ;D (Singapore, Singapore) http://t.co/lJSrNEUo'), (7366, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims kenapa kena pandang badi ? tuu laaa ainna dengan adek comel memang laa kena pandang badi . hihi XD tak baik cakap macm tuuu'), (7367, 2201, 'Johor Bahru, Johore', '@Smittenkiss what did you draw? What foever alone?ahahaha'), (7368, 206, 'Singapore', '#nowplaying screammm &lt;3'), (7369, 142, 'Johore, Malaysia', '@sleepyysam Forgive &amp; Forget baby. Remember all pinkyswears gyeah? I love you superdupertruper much. Jom moviedates and jjbb. =)'), (7370, 49, 'Johor Bahru, Johore', '@f_cukyou oh !! De ear dere rite ? Eeee nice meh haha !!'), (7371, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs okay fine :p haha'), (7372, 2234, 'Johor Bahru, Johore', '@Ddayang sure I wil record with my eyes and narrate the show for you ok?'), (7373, 2329, 'Johor Bahru, Johore', '#FB ahahaha http://t.co/mJkY6lTF'), (7374, 2330, 'Tebrau, Johor Bahru', 'Leg! Why the freak did you fracture at this timing? Cb'), (7375, 2331, 'Johore, Malaysia', 'Hillman なう! http://t.co/SWLeHCfb'), (7376, 412, 'Johore, Malaysia', '@stefenus @jchichibu haha!! My friends are always like "eh I waved at you, you looked behind you and walked away" LOL!'), (7377, 2332, 'Plentong, Johor Bahru', 'Meeting twins. Grab dinner sekali. (@ Sri Krung Theep Restaurant) http://t.co/3C5qNHUF'), (7378, 2333, 'Johore, Malaysia', '@FattyWoo they ask me go interview , think work now after army work again !'), (7379, 68, 'Riau, Indonesia', 'amiiin kak RT @sintapalen: mudah mudahan dapet berkah dari allah nerima hasil uas o:) amin'), (7380, 2079, 'Kota Tinggi, Johore', 'I''m at Boon Lay Bus Interchange (Singapore, Singapore) w/ 4 others http://t.co/w6t0Z9e6'), (7381, 10, 'Singapore', 'NVM I SUB IN THE ANSWERS ONE BY ONE'), (7382, 21, 'Johor Bahru, Johore', '@lady_jay94 besok kene jumpe pkl brp? Haha!'), (7383, 1993, 'Kota Tinggi, Johore', 'The day a guy break a girl heart it means goodbye'), (7384, 2334, 'Johor Bahru, Johore', '@wtfclorencesiah see ya tmrrrr'), (7385, 193, 'Johore, Malaysia', '@ramie2003 not really haha. Still missing a lot from Dubai. Food, fun, malls, and most importantly... friends! #imissdubai'), (7386, 657, 'Pulai, Johor Bahru', '@hahazaahir yela kot,tapi yang ni untuk pinjaman,ko jgn wat pinjaman kat sane plak..tinggi bunga nye..haha.kalau kat JB aku tau la ada katne'), (7387, 2281, 'Johor Bahru, Johore', '@ButterJingers you''re getting the award as well?'), (7388, 2329, 'Johor Bahru, Johore', '@varicklee dun sad! /giveuimaginaryhug/'), (7389, 2247, 'Johore, Malaysia', '@TasyaaRazif hahahaha... kann.... dh lah dh pakai lens.. mcm ikan bawal muke dia. hahaha'), (7390, 487, 'Johore, Malaysia', '@nareerat_27 find some na-luck mak mak dek pui chang for me see k! i have no idea what i have just said. its all you teach me de.'), (7391, 1526, 'Malaysia', '@wararat_amp เป็นเหมือนกัน5555+ สัปดาห์หน้านาคงไม่อยู่ทั้งสัปดาห์คิดถึง\nพี่แอมน่าดู'), (7392, 49, 'Johor Bahru, Johore', 'I don wan care le u and him\nUp to u I watch with popcorn and hotdog bun'), (7393, 2333, 'Johore, Malaysia', '@KhSalvatore @HelloJasonT_ @jennifertehjw ok hor i book liao ! what session you all want ? 2 nd ?'), (7394, 656, 'Johor Bahru, Johore', 'My new pair of kiddy sandals! Booliboop. http://t.co/gTb7aH8s'), (7395, 1856, 'Singapore', 'OMMGGG, got heart attack while watching NU''EST ''s mv - FACE !'), (7396, 94, 'Johore, Malaysia', 'DAMN FREAKING HUNGRY&gt;.&lt; Wedding dinner food can''t fill the tummy derh...'), (7397, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan dia kan block kite kat fb with no reason tauu... Ape salah kite ntah /_\\'), (7398, 68, 'Riau, Indonesia', '@vfradenarieff huahua iyaa dek,always kok menunggu sate wkwk'), (7399, 494, 'Johor Bahru, Johore', 'Tetapi pada hakikatnya aku Da lupakan kau.Perasaan cuma sebagai teman biasa ;)'), (7400, 285, 'Singapore', '@7amakhChawi @hazimnadzrin @Orukazaki hahhahaha like that actually works &gt;&lt;'), (7401, 72, 'Johor Bahru, Johore', '@doubleyouuem 打是疼嘛是爱 . :D ok laaa, I dont be mean~ I such a nice person~'), (7402, 2335, 'Johore, Malaysia', '130 FOLLOWERS WOOTS'), (7403, 2336, 'Johor Bahru, Johore', 'I''m at Yishun ClubFITT Gym w/ @aldricsia http://t.co/qSGdSfE9'), (7404, 1981, 'Johor Bahru, Johore', 'Dafuq why is everyone so judgmental? Do I look that fucking mean?'), (7405, 2219, 'Singapore', 'I was hoping that I could finally see you tomorrow :/'), (7406, 1812, 'Johor Bahru, Johore', '@WanFlizzow Betul, tk menyesal eh???Rokok ni lain daripade lain tau....'), (7407, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh yah how u know see my eyes n my lips'), (7408, 136, 'Johore, Malaysia', '@LaNcE_GoH @Dream_Boards @MenInCharCoal can earlier? :)'), (7409, 1815, 'Johor Bahru, Johore', '@assortedbacon chicken rice ?'), (7410, 2337, 'Johor Bahru, Johore', 'Camping in my grandmother''s house !!'), (7411, 2007, 'Singapore', 'seruan mana, pke sepeda apa ga ksana? RT @hendrikpurnama liat foto di fbnya om judi, ada pintu utama UJUNG KULON.. pasti lu NGILER :P'), (7412, 2234, 'Johor Bahru, Johore', '@WhinnyWinny you just have to fall asleep while attempting to walk to the kitchen :)'), (7413, 2329, 'Johor Bahru, Johore', '#FB ahaha http://t.co/LG5idJuJ'), (7414, 1440, 'Johor Bahru, Johore', 'Gotta continue doing my SS Essay! Need to find similarities and differences :-)'), (7415, 2192, 'Johor Bahru, Johore', '@gwennyteoky no, kidding, hi.'), (7416, 1856, 'Singapore', 'how can REN look totally girl when REN IS ACTUALLY BOY BOY!'), (7417, 982, 'Johor Bahru, Johore', '@fernnny I read wrongly!thought u are saying mad angry instead of hungry!'), (7418, 138, 'Johore, Malaysia', 'Stupid classmates scaring me again'), (7419, 689, 'Johor Bahru, Johore', '@turqu0iseee followed . ☺'), (7420, 94, 'Johore, Malaysia', '@Juper_Sunior Somewhere near I guess? Wedding dinner at hotel near scape.'), (7421, 1837, 'Singapore', '@BABYITSZELO :P'), (7422, 2039, 'Singapore', 'asal semua dah beli tix The Oppressed ahh. errrmm'), (7423, 585, 'Johore, Malaysia', 'phone isnt vibrating'), (7424, 118, 'Johor Bahru, Johore', '-.-" cityville having Dubai theme buildings -.-"'), (7425, 1815, 'Johor Bahru, Johore', '@assortedbacon dun look like you Sia ur dp'), (7426, 689, 'Johor Bahru, Johore', '@jonalonso followed . ☺'), (7427, 206, 'Singapore', 'ROFL the fake reading in library jsut now ♥♥♥♥'), (7428, 1140, 'Johor Bahru, Johore', '“@WhyS_o_Serious: Last week''s tonight''s now, we sec3 hillgrovians, are having camp fire. I miss it, I really do. &lt;3”'), (7429, 551, 'Johor Bahru, Johore', '@MansoorAdabi so is liverpool n arsenal but he nt leavon diz summer'), (7430, 72, 'Johor Bahru, Johore', '“@piggyoinkoinkz: @ChocoBlitzzz really weird la ! my mom say i look retarted wtf ):” LOL! Funny die'), (7431, 206, 'Singapore', '@DioneKoh @bunnybaby1315 I know... &gt;&lt;'), (7432, 2334, 'Johor Bahru, Johore', '@wtfclorencesiah bu hui lah!'), (7433, 1812, 'Johor Bahru, Johore', 'DIAM AH BOI...'), (7434, 685, 'Singapore', '@mggykills its you''re time to shine :)) parang ganon lang :p'), (7435, 1688, 'Johor Bahru, Johore', 'I''m at Junction 10 (Singapore) w/ 2 others http://t.co/iPUb1pir'), (7436, 435, 'Johor Bahru, Johore', 'I must be a snowflake, because I''ve fallen for you.'), (7437, 1435, 'Johor Bahru, Johore', 'Gonna find some chocolates !'), (7438, 2201, 'Johor Bahru, Johore', '@Smittenkiss chey! Say la!ahahah i thought racial harmony day or something'), (7439, 3, 'Johor Bahru, Johore', '@shermainelun why?:('), (7440, 2329, 'Johor Bahru, Johore', '#FB http://t.co/EUh7v7Ez'), (7441, 61, 'Johor Bahru, Johore', '@PeiYi2706 your question no link lol'), (7442, 2338, 'Johor Bahru, Johore', 'Stout and chocolate is torture.'), (7443, 1651, 'Pulai, Johor Bahru', '@erichafitrih hahaha tahuuuu tkuttttttttt.'), (7444, 1362, 'Johore, Malaysia', '@nerdytooty :( I wanna go home and do @myntshop stuff :('), (7445, 2007, 'Singapore', 'ujung kulon keren juga, sipp next trip agustus kesana :D'), (7446, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan gadoh makwe pakwe libatkan kite tauu... Pastu kan tak masal kite yang kene block dengan dedua eko tu.. Ape dose kite ntahnya'), (7447, 1786, 'Johore, Malaysia', '@yizhonghere idk... T.T somemore if the stocks come only m. FML. i only can wear xs. reuben m also too big.'), (7448, 762, 'Johore, Malaysia', '@_Jesusbeloved no lah; you forever Rachel noisy in laughing not in talking or whatever; cheyyy haha'), (7449, 2339, 'Malaysia', 'letihnya baru sampai di Penang esok ada kelas'), (7450, 2340, 'Johor Bahru, Johore', '@Faiz_SlowItDown @theradicalgel @prawnnfishcake @isaac_yzx @jedrick_nwj @priestlah u go srly useless. If u cant understand in class, y go.'), (7451, 1651, 'Pulai, Johor Bahru', '@HaneyBarney ape hani?'), (7452, 2341, 'Johore, Malaysia', 'I just ousted @jaehojang76 as the mayor of Food junction @Harbour Front on @foursquare! http://t.co/fcyiScKl'), (7453, 2342, 'Plentong, Johor Bahru', 'Shisha nasik lemak flavour.huhu. (@ Mr combi cafe and kopitiam w/ @syahbudakbaik) http://t.co/a74NXX4M'), (7454, 2281, 'Johor Bahru, Johore', '@ButterJingers steady, skip only! Haha! Then can go tgt!'), (7455, 72, 'Johor Bahru, Johore', 'Hmmmmm. Should I cut hair? Or just get caught den cut hair? Coz I cut le hair also get caught for long hair. EVERYTHING TO THEM ALSO LONG'), (7456, 99, 'Johor Bahru, Johore', '@HaziqDarls @nazzyfxckjack @acunVeilside Woits :)'), (7457, 2039, 'Singapore', '24 APRIL - ARCH ENEMY LIVE IN MALAYSIA'), (7458, 38, 'Johor Bahru, Johore', 'Please do not disturb my heart.'), (7459, 435, 'Johor Bahru, Johore', 'You remind me of a magnet, because you are attracting me.'), (7460, 2034, 'Johore, Malaysia', 'Wondershake時間だといままだ夕方ぐらいらしい。'), (7461, 2270, 'Johor Bahru, Johore', '@CeweBispakInc Jijik bangat deh liat muka kamu di timeline aku!'), (7462, 2343, 'Johor Bahru, Johore', '@iiHamster yay !! :D see if I can get money from my mum first bah , if I can then no need ^^'), (7463, 2219, 'Singapore', 'Gonna sleep real early tonight :)'), (7464, 1651, 'Pulai, Johor Bahru', 'Takutnyaaaa hani marahhh :p backup eric lettew. Ehh????? Kkkkkkk.'), (7465, 2344, 'Johore, Malaysia', 'I''m at Din Tai Fung 鼎泰丰 (Singapore) http://t.co/sbowVpsg'), (7466, 637, 'Singapore', '@dee_kosh degradation of singlish i guess'), (7467, 1395, 'Johor Bahru, Johore', '2 more stops. (@ Kranji MRT Station (NS7)) http://t.co/IRDUbF4x'), (7468, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY hehehehe.. Nie buat asgmt ke?'), (7469, 2039, 'Singapore', '24 MARCH - THE OPPRESSED LIVE IN MALAYSIA'), (7470, 2305, 'Johor Bahru, Johore', '@Jackvicgoh same! ⛄'), (7471, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa hahaha .asl lak ??laen kali r .tngu duet msok bru samok .'), (7472, 467, 'Plentong, Johor Bahru', 'Tengah buat Fizik dengan jayanya, Fuhhh'), (7473, 2345, 'Johor Bahru, Johore', '@jaaaaanice to release anger? Its bad to hold in your anger! Hahahaha.'), (7474, 2329, 'Johor Bahru, Johore', '@varicklee STOP EMO-ING u r making me sad.'), (7475, 1526, 'Malaysia', '@wararat_amp ไปภูเก็ต ยังไม่เิปิดเทอมเร็วไป555+'), (7476, 1875, 'Johor Bahru, Johore', '@belindadrs 2 tahun eh. Jd, 1a-d 2a-d. Hmmmmm'), (7477, 2346, 'Plentong, Johor Bahru', '@faizal9897 ape yang mambang ? haha'), (7478, 420, 'Johor Bahru, Johore', 'RT“@brainpicker: 1925 imagines travel in 1950 http://t.co/iKefKfTd (ᔥ @GuardianUS)”'), (7479, 2347, 'Johore, Malaysia', 'I''m at St. James Power Station (Singapore) http://t.co/6vpP98Rj'), (7480, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan poser siot'), (7481, 1435, 'Johor Bahru, Johore', 'Oh. Zayn... '), (7482, 2348, 'Tanjong Kupang, Johor Bahru', '@FarhanaJohari @noorfaraaida suruh @fiza_ahmad beli bahan2 pastu dtg mantin buat,pastu makan sesama.Tp tggu den balik nanti la :)'), (7483, 689, 'Johor Bahru, Johore', 'Boring girl. ):'), (7484, 331, 'Johor Bahru, Johore', '@nurulPaco gws.'), (7485, 2039, 'Singapore', '30-31 MARCH - ROCK &amp; ROOTS (THE SPECIALS) LIVE IN SINGAPORE'), (7486, 1903, 'Kota Tinggi, Johore', '@adrenaaa go where ?'), (7487, 142, 'Johore, Malaysia', 'I don''t know the whole story &amp; I can''t listen to one party only. It''s unfair. I wish I could help solve this shits you''re facing.'), (7488, 1734, 'Riau, Indonesia', 'Hang out without panda... :-( (@ Resorts World Sentosa Casino) http://t.co/ug49eC6c'), (7489, 1465, 'Johore, Malaysia', 'I hate my sis.'), (7490, 1815, 'Johor Bahru, Johore', '@assortedbacon get those nerd type of spec'), (7491, 2018, 'Johor Bahru, Johore', 'Early supper!! :D @ Beancurd City @ Jalan Lengkok Sembawang http://t.co/phLOsyxA'), (7492, 2331, 'Johore, Malaysia', 'フカヒレ玉子も来たなう! レタスに包んでガブっ! http://t.co/EocJVi5u'), (7493, 2349, 'Johore, Malaysia', 'You light up my world, Baby~&lt;3'), (7494, 716, 'Johor Bahru, Johore', '@tripodmonster Goood whaat! A lot of people text youu. (Y) :) x'), (7495, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims eleyhh semuanyaa comel . mesti laaa ade nak punyaaa . cume cepad or lambad :D'), (7496, 2350, 'Tanjong Kupang, Johor Bahru', 'I''m at Pintu B Port Tanjung Pelepas (Gelang Patah, Johor) http://t.co/HvJUvqf4'), (7497, 2338, 'Johor Bahru, Johore', '@PinkFridayNuts hahahah. Omg gabriel.'), (7498, 553, 'Johor Bahru, Johore', 'Omg what has become of you... T_T @sybilcereal "@royceisprince: Yay do chest today I think I''m a firm a cup now woo"'), (7499, 2310, 'Johore, Malaysia', 'Macam paham... http://t.co/PnydLn4P'), (7500, 2351, 'Johor Bahru, Johore', 'I''m at Bukit Batok Driving Centre (BBDC) (Singapore, Singapore) w/ 6 others http://t.co/XMzi0uOd'), (7501, 68, 'Riau, Indonesia', '@vfradenarieff yaaa kalo ndk datang terpaksa makan nasiiiiiii'), (7502, 2352, 'Kota Tinggi, Johore', '@bernardongg lol where is your LV wallet leh??'), (7503, 170, 'Johore, Malaysia', 'Planets Aligned! (Jupiter left, Venus right) @ Toa Payoh Central http://t.co/Aaibtn9v'), (7504, 2171, 'Johore, Malaysia', '@ammarliomilo @zhxrxxf tah jack'), (7505, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan loser nerd tak hensem giler tapi makwe hot kemain'), (7506, 2353, 'Tebrau, Johor Bahru', 'Seven in ten men will most likely be wearing glasses. Well, that seems reasonable nowadays.'), (7507, 2206, 'Johore, Malaysia', 'Patut ke aku bilang kau yang aku sayang kau?'), (7508, 1786, 'Johore, Malaysia', '@yizhonghere ya sia. SIAN max'), (7509, 2196, 'Johor Bahru, Johore', 'Time to play Draw Something'), (7510, 402, 'Johore, Malaysia', 'I''m at Spinelli Coffee Company (Singapore, Singapore) http://t.co/HownRiVu'), (7511, 206, 'Singapore', '@bunnybaby1315 @DioneKoh xDD'), (7512, 2354, 'Johore, Malaysia', 'Dinner with @sysquare! (@ Xin Wang Hong Kong Cafe w/ 2 others) http://t.co/XK4V5YCx'), (7513, 2355, 'Johor Bahru, Johore', '#'), (7514, 2356, 'Malaysia', 'เหนื่อยๆๆๆ...!'), (7515, 2357, 'Johore, Malaysia', 'Having Oysters n macallan (@ NUSS Suntec City Guild House) http://t.co/TwPsZOBX'), (7516, 206, 'Singapore', '@bunnybaby1315 @DioneKoh ikr the 181cm WTF.'), (7517, 762, 'Johore, Malaysia', '@_Jesusbeloved welcome (; hahaha!! What you doing?'), (7518, 72, 'Johor Bahru, Johore', '@doubleyouuem wa! U good! If u angel, Everyone on earth also angels alr :p'), (7519, 2358, 'Johore, Malaysia', 'Heading to geylang (@ Blk 637, Eunos Link Busstop) http://t.co/A5lOtrqb'), (7520, 736, 'Johore, Malaysia', '@Ndrewgoh95 did u just say wtf?'), (7521, 435, 'Johor Bahru, Johore', 'Do you have a band aid? I just scrapped my knee falling for you.'), (7522, 2359, 'Johor Bahru, Johore', 'I''m at Yi Do An Chinese Temple (Choa Chu Kang, Singapore) http://t.co/xi9LqFOX'), (7523, 413, 'Johore, Malaysia', '@fidzackaray same'), (7524, 2360, 'Johor Bahru, Johore', 'Chocolate Lava Cake in a cup :) @ Chocolate Origin http://t.co/FXQ2vFDC'), (7525, 206, 'Singapore', '@DioneKoh @bunnybaby1315 yeah ._.'), (7526, 38, 'Johor Bahru, Johore', 'My mum exposed me to the doctor. How nice. /:'), (7527, 2339, 'Malaysia', 'nnti smpai nk berehat laaa.... ♥♥♥♥♥♥♥'), (7528, 142, 'Johore, Malaysia', 'I hate seeing my own bestfriend being sad over a guy. It''s not worth it. He hurt you too much. he left you for another girl.'), (7529, 859, 'Johor Bahru, Johore', '@UmmiNurHaida_1D Same! :D Babies eyes which r big''s cute! U done any hw alr?'), (7530, 1110, 'Riau, Indonesia', 'dinner \\(´▽`)/ (@ Malaysian Food Street w/ 4 others) http://t.co/Uemx3pBH'), (7531, 1769, 'Plentong, Johor Bahru', '@azieraziezie sweet laa sangadd . hihi XD eyh ajarkan aku pakai tudung .'), (7532, 2206, 'Johore, Malaysia', 'Kau pikir la sendiri eh.'), (7533, 1873, 'Kota Tinggi, Johore', 'Azli pnya otw pn blh tahan.......'), (7534, 49, 'Johor Bahru, Johore', '@f_cukyou whr got !! Face nicer hahaha !! Nose eyes mouth'), (7535, 689, 'Johor Bahru, Johore', 'Add me on path . ☺ http://t.co/QMi6fxJ5'), (7536, 2057, 'Johor Bahru, Johore', 'Tommrow goibg or medicak check up.'), (7537, 68, 'Riau, Indonesia', 'haiii say RT @mumutcimamay: Heeei;)) RT @IlfaAzlyani: RT @mumutcimamay: Mention'), (7538, 2039, 'Singapore', '24 APRIL - ARCH ENEMY LIVE IN MALAYSIA'), (7539, 2361, 'Johor Bahru, Johore', 'I''m at Yi Do An Chinese Temple w/ @lexelledextjluv http://t.co/ZLtDbeq0'), (7540, 2362, 'Malaysia', 'I''m at ร้านขายอาหารตามสั่ง "ตี๋ใหญ่4" (Hat Yai, Songkhla) http://t.co/nxZU0jZT'), (7541, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz going away! :x just can''t help laughing, the way u say it so cute. Retarted. LOL. I tmr must see!'), (7542, 2039, 'Singapore', '29 APRIL - AVENGED SEVENFOLD LIVE IN MALAYSIA / AGNOSTIC FRONT LIVE IN SINGAPORE'), (7543, 2206, 'Johore, Malaysia', 'Drama besok. Haishais'), (7544, 2363, 'Johore, Malaysia', 'If you''ve missed the news lately, there''s now an Apple Store in Toa Payoh http://t.co/QCGyu9zS'), (7545, 1773, 'Johor Bahru, Johore', '@VivianNgJiaLing LOOK LIKE HUANGJIALING'), (7546, 736, 'Johore, Malaysia', '@Ndrewgoh95 lol sia u said WTF TWICE OMG U NOW ACTING BAD AH ?'), (7547, 539, 'Johor Bahru, Johore', 'I''m at Woodlands Waterfront Carpark (Singapore) http://t.co/EcOsZzmE'), (7548, 267, 'Johore, Malaysia', 'Will that Mclaren be as fast as it looks good #findouttomorrow'), (7549, 422, 'Johor Bahru, Johore', '@khaicleverley23 you seriously forgot ur password?? :O'), (7550, 790, 'Johor Bahru, Johore', 'I wna go to town...'), (7551, 1974, 'Johor Bahru, Johore', 'So tell me why I''m jealous? It''s because I like and care for you. -.-'), (7552, 2353, 'Tebrau, Johor Bahru', 'Four in seventeen men will become lawyers. That''s not really that low, is it?'), (7553, 2364, 'Johore, Malaysia', 'If you''ve missed the news lately, there''s now an Apple Store in Toa Payoh http://t.co/08f7sXr7'), (7554, 142, 'Johore, Malaysia', 'And now his pleading to be back with you again? Please you ain''t a ragdoll that he can take and throw anytime he want. Typical jerks!'), (7555, 2320, 'Johor Bahru, Johore', '@drron01 Hey Dr Ron follow me on twitter @Bassmarko !!:D Btw this is Mark Ong ler Chen,ur prayer warrior for yep!'), (7556, 665, 'Johor Bahru, Johore', '@tweety_thoughts imagine I dine everyday at MBS. Just the food court kills. Haha'), (7557, 1496, 'Indonesia', 'yaaa..... layu sebelum berkembang, mati sebelum tumbuh.. tapi apa salahnya mengagumi ciptaan Tuhan..'), (7558, 2323, 'Riau, Indonesia', '@KabarUtamaOne BBM ga perlu naik, karena tahun ini saja PBB sdh naik 35 % tanpa pemberitahuan terlebih dahulu. Apakah PBB anda sdh terima ?'), (7559, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz eh! I only say funny right? :b I so nice *-*'), (7560, 721, 'Johor Bahru, Johore', 'I''m at Ice Pub http://t.co/DSv7aTM1'), (7561, 2365, 'Indonesia', '@pjy1234 Please #7AraStayTogether'), (7562, 686, 'Johor Bahru, Johore', 'I''m at Bliss Restaurant http://t.co/DzNX76QG'), (7563, 1230, 'Johore, Malaysia', 'I''m at The Football Pub (Singapore) http://t.co/54KlHHmG'), (7564, 1786, 'Johore, Malaysia', 'I wanna go cathay..'), (7565, 637, 'Singapore', '@dee_kosh yeah, why asking huh?'), (7566, 899, 'Johor Bahru, Johore', 'Waiting for my pizza and dessert (@ Pizza Hut w/ 3 others) http://t.co/nXAFSOOS'), (7567, 285, 'Singapore', '@7amakhChawi @hazimnadzrin @Orukazaki aku hot? kau mabuk ke? hahahahaha'), (7568, 49, 'Johor Bahru, Johore', '@Fira00hFira o0 #youmadbro ? Hahaha wad thing so funny !?'), (7569, 606, 'Johor Bahru, Johore', '@helloiamxinhui @sherlynwsm @aijoueunice I Sunday Kenna book le )'':'), (7570, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa ye la kw .spe je g lg ?'), (7571, 172, 'Johore, Malaysia', 'I''m at Bugis Junction Shopping Mall http://t.co/U69T1NMH'), (7572, 1194, 'Malaysia', 'ฉันว่าง ฉันเซ็ง ฉันจะเกรียนถถถถถถถ'), (7573, 2039, 'Singapore', 'hmmmm kalau tak g. haizzzz entah'), (7574, 2366, 'Johor Bahru, Johore', 'I''m at Woodlands Drive 16 (Singapore, Singapore) http://t.co/eUgptQrP'), (7575, 1985, 'Johore, Malaysia', 'I''m at Toa Payoh HDB Hub (Singapore, Singapore) w/ 2 others http://t.co/eyfFlF0h'), (7576, 1886, 'Johore, Malaysia', 'Tastiness level 9500 @ Ren Ci Multi Purpose Hall http://t.co/MXc5YKUs'), (7577, 1856, 'Singapore', 'O_O i think Pledis Ent is really awesome! cause they hardsubbed NU''EST MV !!! english subtitle and korean subtitle !!!!'), (7578, 2291, 'Johore, Malaysia', '@ShafinahIeenaaa You went to somerset right ? :D'), (7579, 2367, 'Johor Bahru, Johore', 'Heading home now yawnz tired :)'), (7580, 605, 'Johor Bahru, Johore', 'About to say "don''t ever come back"'), (7581, 267, 'Johore, Malaysia', 'All other #f1 cars look ugly #mclaren'), (7582, 412, 'Johore, Malaysia', 'I seriously think if there''s no social media, most people of our era would be diagnosed with depression. #nojoke #firstworldpains'), (7583, 831, 'Johore, Malaysia', 'I''m at Clark Quay River Side http://t.co/EXM86Yeq'), (7584, 411, 'Johor Bahru, Johore', 'What''s the max tweet for 1 day lah?'), (7585, 2247, 'Johore, Malaysia', '@TasyaaRazif haha... sumph kelakar'), (7586, 2368, 'Malaysia', 'Funsion pulak ikan kembung goreng ni'), (7587, 2369, 'Johor Bahru, Johore', 'I''m at Candy Empire http://t.co/De8O11sd'), (7588, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz spare me D: I die alsowont cut botak. Worst thing ever. WHO WOULD CUT BOTAK SIA.'), (7589, 173, 'Johore, Malaysia', 'Bryan getting is hair cut by Indians. Ho Ho'), (7590, 2370, 'Johore, Malaysia', 'This is killing me !!'), (7591, 435, 'Johor Bahru, Johore', '(hold out hand) would you hold this for me while I go for a walk?'), (7592, 49, 'Johor Bahru, Johore', 'Tweet tweet tweet hehehe!! Tweet is my new chat buddy fb sry ~ u are only for pictures'), (7593, 2371, 'Johor Bahru, Johore', 'I''m at 天外天朝洲鱼头炉 http://t.co/2ejITLuJ'), (7594, 2372, 'Johor Bahru, Johore', 'i feel like slapping noi''s face sia. sibei.'), (7595, 2373, 'Johore, Malaysia', 'I''m at KOI Café (Singapore) http://t.co/8Ay8giLy'), (7596, 1357, 'Johor Bahru, Johore', 'I only have this much patience.'), (7597, 2143, 'Singapore', '1D getting a TV show on Nickelodeon. Am i suppose to just look @ my screen with a straight face or just burst with tears of laughter?'), (7598, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan dah lah lelaki pastu kan tweet kite suh PAYONG TOPUP sikit! Kejadah betul. Murahan bukan?'), (7599, 2374, 'Riau, Indonesia', 'kenapa harus teringat selalu, lupa sedikitpun gak bisa'), (7600, 771, 'Johore, Malaysia', 'Hello everybody . I''ve been thinking of using my piercings again :)'), (7601, 228, 'Johor Bahru, Johore', 'Girls keeping such wonderful boys at the friend zone, and Wanting a jerk/asshole breaking their heart again and Again repeatly'), (7602, 411, 'Johor Bahru, Johore', 'Are you that pretty?'), (7603, 2007, 'Singapore', 'rezeki tiap org itu ada klo udah usaha,jd why u all so seriously, just relax, enjoy your life'), (7604, 2375, 'Singapore', '@mkxherinegp why?'), (7605, 1886, 'Kota Tinggi, Johore', '@sheilaaa iPad drawgasm. @ Showmakers (S) Pte Ltd http://t.co/k3Xy01MQ'), (7606, 117, 'Johore, Malaysia', '@paperdrizzle OMG SERIOUS :( HAHAHAHHA'), (7607, 753, 'Johor Bahru, Johore', 'Setting off now...good bye wifi...hello to my NPCC self again...sorry juniors'), (7608, 2206, 'Johore, Malaysia', 'Irritating ah. Logic ah sia." Dah takde p.e, abeh nak pakai ape? " eh ngok uniform ade buat ape eh?!'), (7609, 1961, 'Plentong, Johor Bahru', '@dayarazif ohh yg tu.HAHA'), (7610, 1815, 'Johor Bahru, Johore', '@assortedbacon follow Andrew'), (7611, 539, 'Johor Bahru, Johore', 'I''m at Woodlands Waterfront Jetty (Singapore) http://t.co/asoHX4iy'), (7612, 941, 'Johor Bahru, Johore', '@xoxo_Nanaa HAHA ! Idk . Never seen you out of uniform before . (:'), (7613, 1382, 'Johor Bahru, Johore', '@reluctanther0 d ba pwdeng magaling lang sa time management?'), (7614, 117, 'Johore, Malaysia', '@AanPapan Chinnn up farhan :)'), (7615, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh aiya nvmd lah'), (7616, 1786, 'Johore, Malaysia', '@yizhonghere serious?! heng we nvr waste our time go down!!!! hahaha. but expected uh, they sell so cheap confirm is those cannot sell out'), (7617, 117, 'Johore, Malaysia', '@zomgitsnawar i fa what :('), (7618, 1526, 'Malaysia', '@wararat_amp คร้าา^_^'), (7619, 2376, 'Johore, Malaysia', 'The sunglasses are way too awesome! I wanna buy them all :D #sunglasses #shades #work @ DH sunglasses http://t.co/cRm1NHfL'), (7620, 657, 'Johore, Malaysia', '@hahazaahir cakap buka akaun je..debit card tu aku xtahu la kan..debit card cam kredit card kan?bahaya2..'), (7621, 72, 'Johor Bahru, Johore', '@doubleyouuem your walao so unique one. *-* devils are cute and cool :D got horns one *-*'), (7622, 771, 'Johore, Malaysia', 'Not soon . Next month ?'), (7623, 2206, 'Johore, Malaysia', 'Bingit sia jadi pengarah. -.-'), (7624, 411, 'Johor Bahru, Johore', 'My house damn noisy. Blasting Music.'), (7625, 2377, 'Johor Bahru, Johore', 'I don''t have beige! My god! I''m do dead.'), (7626, 435, 'Johor Bahru, Johore', 'You are so sweet, you put Hershey''s out of business.'), (7627, 2365, 'Indonesia', '@b89530 Onnie please #7AraStayTogether'), (7628, 539, 'Johor Bahru, Johore', 'I''m at SHELTER near Woodlands Waterfront playground http://t.co/Fnb908dz'), (7629, 1115, 'Johor Bahru, Johore', 'Regret not buying a iphoneee!!! Sigh android phone always give euu what error one ._.'), (7630, 2333, 'Johore, Malaysia', '@jennifertehjw which tweet ?!'), (7631, 206, 'Singapore', '@bunnybaby1315 @DioneKoh hahaha nehmind sued to it! xD'), (7632, 1853, 'Johore, Malaysia', '@DUMBASS_ZIYING cheer up la:) hahaha work hard lor :P'), (7633, 551, 'Johor Bahru, Johore', '@idontgiveashetz agreed'), (7634, 2320, 'Johor Bahru, Johore', '@TheeHafiz where are you now sio? Where got free concert ah?:)'), (7635, 1497, 'Johor Bahru, Johore', 'Licking the chocolate off the pocky... Dinner + boredom'), (7636, 736, 'Johore, Malaysia', '@Ndrewgoh95 really? Or freak ? Dont act la wtf is wtf no wtfish one hahah . Faced it we are all the same :)'), (7637, 2378, 'Johore, Malaysia', 'Accompanying @bobohitam to cut his hair! (@ Venus Salon) http://t.co/DY1TKrLi'), (7638, 1526, 'Malaysia', '@wararat_amp ไปด้วยเปล่า *ชักชวน*'), (7639, 1875, 'Johor Bahru, Johore', '@derppp_ I know right.. No more time to fuck about :\\'), (7640, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @lkmariquit @rinabanana @sheslley ay bongga! level up na nga pangitaay work!'), (7641, 285, 'Singapore', 'There are 31556000 seconds a year, make each one count..'), (7642, 2379, 'Johor Bahru, Johore', 'Unriddle 2 ;) (@ Admiralty Drive, Blk 359A) http://t.co/8sjgJ6Ad'), (7643, 411, 'Johor Bahru, Johore', 'So plain?'), (7644, 2352, 'Kota Tinggi, Johore', '@bernardongg oh. When is your trip?'), (7645, 2039, 'Singapore', 'Atoi Watkins, statement mcm gampang ehh lu sia. parents curi lu punya parsport? apa sial lah kau punya ayt. tak cool perr :D'), (7646, 1534, 'Plentong, Johor Bahru', '@danihamz haha pegidahh..'), (7647, 2380, 'Johor Bahru, Johore', '@AdrianGohJW now u know XD'), (7648, 2365, 'Indonesia', '@sohotmelody Please #7AraStayTogether'), (7649, 2007, 'Singapore', 'kasihan RT @hendrikpurnama saya hidup dengan sepeda, tidurpun dengan sepeda ^0^)//'), (7650, 1698, 'Johore, Malaysia', '@L1PZL1K3SUG4R Awwww :) thankssss :)'), (7651, 2381, 'Johor Bahru, Johore', 'I''m at Bishan Bus Interchange (Singapore, Singapore) http://t.co/KkQy7F0h'), (7652, 1651, 'Pulai, Johor Bahru', '@erichafitrih melampau apekah??? -,-'), (7653, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz let''s all see tmr *-* won''t be so jialat one la, unless the hairdresser anyhow :b'), (7654, 736, 'Johore, Malaysia', '@Ndrewgoh95 never thought u will upgrade urself to ny level'), (7655, 1815, 'Johor Bahru, Johore', '@assortedbacon ok can'), (7656, 716, 'Johor Bahru, Johore', '@JaylonJiAn @yongjiannn siaoo ahh, so expensiveee! :p'), (7657, 2382, 'Johore, Malaysia', 'Just posted a photo @ Offside Futsal Park http://t.co/4pjYpFjz'), (7658, 1371, 'Johor Bahru, Johore', 'I''m at SMRT Feeder Bus 945 http://t.co/udxoaUE5'), (7659, 2383, 'Johor Bahru, Johore', 'I''m at Terminal 2 (Singapore, Singapore) w/ 8 others http://t.co/yM8Ni7sw'), (7660, 1651, 'Pulai, Johor Bahru', '@HaneyBarney nak blahh aa nihh..... Bye'), (7661, 2384, 'Johore, Malaysia', 'Last night! (@ SGH Ward 54) http://t.co/wJdgVROl'), (7662, 1961, 'Plentong, Johor Bahru', 'kne pakai bju brkolar ke tyme amik rsult?kte kn bkn lg plajar -,-'), (7663, 859, 'Johor Bahru, Johore', '@Thathegirl Alright. Wbwb. (:'), (7664, 1604, 'Johore, Malaysia', '@LeeWLun tmr working?'), (7665, 2086, 'Johor Bahru, Johore', '@ZhouJin_ 嗯嗯~那你后天去不去conred阿'), (7666, 2385, 'Kota Tinggi, Johore', 'Back! (@ Ethel''s House w/ @eatmyhair) http://t.co/YrKr6oNq'), (7667, 2386, 'Tebrau, Johor Bahru', 'Forever alone hahah RT "@HyQyle: All alone at 4SIR doing duty. Heh"'), (7668, 1875, 'Johor Bahru, Johore', '@belindadrs iya. And harus belajar buat test. Lesson pertama langsung test eh.'), (7669, 1856, 'Singapore', '@SuHisTokkiOri yeah.. i cant believe he is guy ... :/'), (7670, 2143, 'Singapore', '#PeopleIWantToMeet @WGsohee , every idols there are in Korea? Oh and of course my dad, @liltunechi . WEEZYYYY DA BOMB'), (7671, 1961, 'Plentong, Johor Bahru', '@dayarazif pelik'), (7672, 2387, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall w/ @cassandrabloopy http://t.co/DyuDb0eE'), (7673, 2388, 'Johore, Malaysia', '@TektonikStereos hey! kik kik'), (7674, 2389, 'Johor Bahru, Johore', '@Nunacumel ustaz google'), (7675, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh who oreofighter uh???'), (7676, 40, 'Johor Bahru, Johore', '@Jyeoj hm. There is the matinee and evening show, circle and stall seats! Stall is apparently better so it''s more ex~ evening is sold out'), (7677, 551, 'Johor Bahru, Johore', '@MansoorAdabi @pinkissmexy oh yes'), (7678, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz i also not monk *-* not suited for me :D too awesome to be monk alr'), (7679, 196, 'Johore, Malaysia', '@PoChopper haha! Impossible..'), (7680, 1651, 'Pulai, Johor Bahru', 'Maksud deq? RT @Adeqmohamad: Lah kau curi lukisan cikgu cakap tulisan kau?hahahahaahaahaahahhaahaha!'), (7681, 2390, 'Johor Bahru, Johore', '''John Carter'' (@ Cathay Cineplex w/ 3 others) http://t.co/W8CPb6Ha'), (7682, 40, 'Johor Bahru, Johore', '@Jyeoj though! I think hahah.'), (7683, 2391, 'Johore, Malaysia', 'HOME IN TIME FOR UNRIDDLE!!!!!!! (@ Cally''s CRIB ) http://t.co/2Y9x3ZcU'), (7684, 422, 'Johor Bahru, Johore', '@al_Mahbubaah eh. Tu ada bnyk assignments ye? Moga Allah be watchful over you and help you. Ameen.'), (7685, 762, 'Johore, Malaysia', '@_Jesusbeloved wow!!! Good girl'), (7686, 244, 'Johor Bahru, Johore', '@xmissjacy ok of activate for flight is wat time?'), (7687, 1492, 'Johor Bahru, Johore', 'Fudge.. I haven''t been playing GunZ for 3 months and my skills deteriorate. . Haish..'), (7688, 142, 'Johore, Malaysia', '@sleepyysam I can''t wait to see you soon. Please cheer up baby. Just remember everything we said awhile ago okay. I love you so much. *hugs*'), (7689, 938, 'Johore, Malaysia', '@Kesterkjw LOL is it?'), (7690, 206, 'Singapore', '" Yg declines strong hard appearance cause he said he isnt a celebrity" THAT''S THE BOSS.'), (7691, 130, 'Plentong, Johor Bahru', '@SemsTria sape ekk! #AdaOrangTu lah kaaaannn XD siak ah gua main hashtag ni'), (7692, 1383, 'Johor Bahru, Johore', 'My ho sot liao . http://t.co/pBIbzQaa'), (7693, 113, 'Johor Bahru, Johore', 'When''s the next time that i could see you...'), (7694, 771, 'Johore, Malaysia', 'RT @syakilla_xx : stop seeking attetion . :))'), (7695, 1769, 'Plentong, Johor Bahru', '@azieraziezie alooooooo . aku daaa pakai tudung sampai bila-2 laaaa :)'), (7696, 736, 'Johore, Malaysia', '@Ndrewgoh95 F.U.C.K ADMIT IT :)'), (7697, 2145, 'Singapore', '@alisyahamran awesome ah babe! tht bitch name? D:'), (7698, 1507, 'Johor Bahru, Johore', '@helloiamyen oo nga e. pero super luma naman ng pic ko.'), (7699, 1383, 'Johor Bahru, Johore', 'Hp *'), (7700, 244, 'Johor Bahru, Johore', '@KyleHerms wat phone!!!'), (7701, 1651, 'Pulai, Johor Bahru', '@erichafitrih bukan selalu.'), (7702, 1247, 'Johore, Malaysia', '@S3R1zawa haha thank you for the words of encouragement .'), (7703, 1786, 'Johore, Malaysia', '@yizhonghere yeah. hahaha'), (7704, 2206, 'Johore, Malaysia', 'Kalau boleh, seribu kali kau nak msg aku. -.-'), (7705, 657, 'Johore, Malaysia', 'Kenapa ramai sangat org Johor mati akhir2 ini..#faktaBukanAuta'), (7706, 2392, 'Johore, Malaysia', 'Cake &amp; tea. Very civilised/indulgent night in @ Oleanas Residence http://t.co/4we4y6l8'), (7707, 2393, 'Johore, Malaysia', 'great ideas that need something more than thinking! ACTION! =D'), (7708, 117, 'Johore, Malaysia', '@paperdrizzle NO LA HAHAHHAHAH i believe is a person named Qi Shan? AHAHA'), (7709, 853, 'Johore, Malaysia', 'Ku De Ta the most FAB rooftop I have been so far, and I have been around ;-) at the 57th floor of the Marina Bay http://t.co/dT4OUcvb'), (7710, 2348, 'Tanjong Kupang, Johor Bahru', '@FarhanaJohari @noorfaraaida @fiza_ahmad tggu la bulan 6 nnti den balik,psl @AzlinaRosli bersalin nak tgk anak buah pure Melayu den.'), (7711, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims adek nak macam maneee ?'), (7712, 2394, 'Malaysia', 'I just became the mayor of Buy More Inter food on @foursquare! http://t.co/ulHJI6rK'), (7713, 2007, 'Singapore', 'badi bagor, abis jedutin kpala k tmbok ngaku rajin sholat @hendrikpurnama'), (7714, 1651, 'Pulai, Johor Bahru', 'The berdekak moment nak berahsia dengan aku tapi tak reti kaliissssss ~'), (7715, 3, 'Johor Bahru, Johore', '@shermainelun awwkay:)'), (7716, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs fir busy jadi cashier . Harini ada party dekat tutti frutti .'), (7717, 1060, 'Plentong, Johor Bahru', 'I can see it''s changed, lets see how far you can go and tricks me. Jangan merayu dekat aku bila semuanya dah terjawab nanti'), (7718, 2143, 'Singapore', 'Narcissism, starting to have that attitude. AH SHIT. that is not good.'), (7719, 2124, 'Singapore', '@syaifaaaaa Ouuhhhh. Hhhha :DD Sama lahh. Kelas 3. Hhhehhe :P'), (7720, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh no paiseh'), (7721, 994, 'Pulai, Johor Bahru', '@enalvin2 i listen to the lecturer but now I''m tweeting!'), (7722, 2206, 'Johore, Malaysia', 'Kasi orang hilang sabar pulak. Nabei.'), (7723, 482, 'Johor Bahru, Johore', 'I''m at Wellington Circle (Singapore) http://t.co/nzr8KvjY'), (7724, 413, 'Johore, Malaysia', '@fidzackaray here very open know hahah'), (7725, 2395, 'Johore, Malaysia', 'Dinner with boss and colls. (@ Thai Village Restaurant) http://t.co/H9YMe24B'), (7726, 2329, 'Johor Bahru, Johore', 'Suzy''s hair in a bun again, pretty! watched m countdown juz now'), (7727, 102, 'Singapore', '@afyzahh here''s a little song I wrote, you might want to sing it note for note, don''t worry.. be happy sis..'), (7728, 2396, 'Johor Bahru, Johore', 'finally reached~~~ (@ Punggol MRT/LRT Station (NE17/PTC)) http://t.co/s4v0ImTl'), (7729, 1856, 'Singapore', '@beastdwlove_ well, i think im not going.. :/'), (7730, 2369, 'Johor Bahru, Johore', 'I''m at Wonderland. ♥ http://t.co/NYh2Rzop'), (7731, 2166, 'Johore, Malaysia', 'all the lies...'), (7732, 388, 'Johore, Malaysia', 'Best Snowflakes I''ve ever eaten. http://t.co/0uHkjt2V'), (7733, 2397, 'Johor Bahru, Johore', 'Is it possible to embed #RSS feeds in PowerPoint slides? http://t.co/IZbZx6My'), (7734, 2398, 'Riau, Indonesia', 'entah kenapa mending ketemu sama pelajaran hari jumat daripada hari kamis --"'), (7735, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz the typo makes the sentence looks cuter *-*'), (7736, 1837, 'Singapore', '@BABYITSZELO SHOW ME ! LOL .'), (7737, 57, 'Johor Bahru, Johore', '@sodaloverxc damn. Haven''t asked.'), (7738, 2375, 'Singapore', 'Sometimes, the person who gives you unexplained happiness, will always be the reason for your unexplained sadness.'), (7739, 411, 'Johor Bahru, Johore', 'Are you that stupid? Seriously.'), (7740, 2399, 'Johore, Malaysia', 'Mac. (@ East Coast Park w/ 4 others) http://t.co/FpnJFCu8'), (7741, 40, 'Johor Bahru, Johore', '@_PRICILLAAA_ @jyeoj can buy there I think, if there are any more tickets!'), (7742, 2329, 'Johor Bahru, Johore', '@IHEARTSUZY thanks for sharing!'), (7743, 2400, 'Johor Bahru, Johore', 'I''m at Koufu (Singapore, Singapore) http://t.co/M81y0C7a'), (7744, 2034, 'Johore, Malaysia', '仕事が向いてる向いてないって、自分の守りたいものに影響されている気がしていて。つまりは守りに入っているってことな気がするーそれも悪くないけどー'), (7745, 1196, 'Kota Tinggi, Johore', 'Hambur ciduh lah jeung pirang western mh RT @IntAn_ImUtsExy: Uh etaa se''ep nanaonan wae meni Loba (cont) http://t.co/lKLmhXfG'), (7746, 40, 'Johor Bahru, Johore', '@_PRICILLAAA_ @jyeoj matinee confirm + chop have!'), (7747, 544, 'Johor Bahru, Johore', 'Tired.'), (7748, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz D: how can u be so bad to meh? :o'), (7749, 1435, 'Johor Bahru, Johore', 'Battery bar left 28% ^^ '), (7750, 2219, 'Singapore', 'I''m finally looking at @9reasonstolove ''s LIVE Tweets xD'), (7751, 2401, 'Johore, Malaysia', 'I''m at Ngee Ann City (Singapore, Singapore) w/ 3 others http://t.co/UMqGF9QQ'), (7752, 31, 'Johore, Malaysia', 'rawr!!! (at Arena @ Clarke Quay) [pic] — http://t.co/arsN7JSs'), (7753, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa kite2 la ni .pape t aq bgtw .aq x tw ag la join korng ke x .'), (7754, 170, 'Johore, Malaysia', 'Chicken Teriyaki Don @ Ichiban Boshi http://t.co/sWqjo4Ot'), (7755, 435, 'Johor Bahru, Johore', 'You know, you look really hot. You must be the reason for global warming.'), (7756, 1245, 'Johor Bahru, Johore', '@TrulyELFs what''s the photo cards???'), (7757, 1922, 'Johor Bahru, Johore', 'I''m at MBLAQ’s Sesame Player http://t.co/mpG5ufSm'), (7758, 2402, 'Johor Bahru, Johore', 'Imba ladygaga!! Cb! @YxNotSinful'), (7759, 244, 'Johor Bahru, Johore', '@birdcagewalk wat??? Not pain!?!'), (7760, 771, 'Johore, Malaysia', 'I''m so cute while you''re not . That''s so funny !'), (7761, 2386, 'Tebrau, Johor Bahru', '@MANkeciq i met the vp twice in my jc time.irritating filer #truestory'), (7762, 2206, 'Johore, Malaysia', 'CB!'), (7763, 2403, 'Johore, Malaysia', 'Tdy Is Gonna Hv A lot Of Crying n Slaping..Unriddle 2.'), (7764, 1349, 'Johore, Malaysia', '@sheslley @xing_shing @karlademoda @lkmariquit @rinabanana ma negosyo nlng ta!'), (7765, 488, 'Johor Bahru, Johore', 'I''m at Homed.  http://t.co/UBZ7zGbB'), (7766, 285, 'Singapore', '@7amakhChawi @hazimnadzrin @Orukazaki your motives are just wrong &gt;&lt;'), (7767, 40, 'Johor Bahru, Johore', '@krackedlips HEHEHE SO COOLZ'), (7768, 2358, 'Johore, Malaysia', 'I''m at Fragrance Building http://t.co/LeBpdNy8'), (7769, 508, 'Johore, Malaysia', 'I''m at Toa Payoh HDB Hub (Singapore, Singapore) w/ 3 others http://t.co/1AeDeWcM'), (7770, 422, 'Johor Bahru, Johore', '@khaicleverley23 Haha...! Okay then! Lucky you. :O'), (7771, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz durin concert lor! U sit infront la!'), (7772, 1452, 'Johore, Malaysia', 'I''m at Udders w/ @claudiayeo_ http://t.co/CQIOBJ8b'), (7773, 2086, 'Johor Bahru, Johore', '@motulight I love linkin park!!!'), (7774, 2404, 'Johor Bahru, Johore', 'I''m at S11 @ 450 AMK Ave 10 (Ang Mo Kio, Singapore) http://t.co/Q12kaoH3'), (7775, 2405, 'Malaysia', 'Zz kena limit http://t.co/8S89ClPf'), (7776, 488, 'Johor Bahru, Johore', 'I''m at Oinkoink''z cribbbb! (Singapore) http://t.co/ADccl3A4'), (7777, 972, 'Johor Bahru, Johore', 'Vincent''s #FIFAStreet player play like shit sia.'), (7778, 1856, 'Singapore', '15th March 2012 - i officially become NU''EST fan... :D'), (7779, 369, 'Johore, Malaysia', 'Haha talk much'), (7780, 411, 'Johor Bahru, Johore', 'I dream that. . . .'), (7781, 2406, 'Johore, Malaysia', '@arvind_david the other picture nicer this one no nice .'), (7782, 244, 'Johor Bahru, Johore', '@xmissjacy zzz. I got no reply email yet'), (7783, 2329, 'Johor Bahru, Johore', '@JJongCarissa hahas, nice the show! Cos got Jessica lol'), (7784, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini lepas ni aku nak joging gak la..makin berat je rase..huhu'), (7785, 2219, 'Singapore', 'Didn''t really expect that she existed in Twitter xD'), (7786, 2346, 'Plentong, Johor Bahru', 'just go :)'), (7787, 2369, 'Johor Bahru, Johore', 'I''m at Paradisë.❤ http://t.co/DzKKPCbo'), (7788, 2408, 'Johor Bahru, Johore', '#tweegram @ Shaw Cinema 2 http://t.co/EL4EbTX0'), (7789, 2408, 'Johor Bahru, Johore', '#tweegram @ Shaw Cinema 2 http://t.co/FAnNX3V1'), (7790, 2408, 'Johor Bahru, Johore', '#tweegram @ Shaw Cinema 2 http://t.co/d4TnPNwi'), (7791, 2039, 'Singapore', 'nanti diaorg ada perform pe.'), (7792, 206, 'Singapore', '@DioneKoh ;{D'), (7793, 544, 'Johor Bahru, Johore', 'I really miss you a lot now, what can I do now?'), (7794, 2206, 'Johore, Malaysia', 'Sebelum tanye aku , pakai logic ah.'), (7795, 1651, 'Pulai, Johor Bahru', '@erichafitrih takkkk.'), (7796, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz be honored. Awesome ppl spamming ur timeline *-*'), (7797, 2407, 'Plentong, Johor Bahru', '@raihansalleh tu baru sparuh...haha'), (7798, 2409, 'Johore, Malaysia', 'filetto di manzo, vikan illan kunniaksi (@ Limoncello Pizza, Grill and Bar) http://t.co/bYDRX50l'), (7799, 271, 'Johore, Malaysia', 'Hehe darling @zmpews! @ Ngee Ann City http://t.co/Quf5WfAm'), (7800, 736, 'Johore, Malaysia', '@Ndrewgoh95 okay la i believe u . When u free again . meet le the whole class like never meet up one zzzz'), (7801, 135, 'Johor Bahru, Johore', 'Fightinggg:D \n#SooHyun1stSolo #SooHyun1stSolo #SooHyun1stSolo #SooHyun1stSolo #SooHyun1stSolo #SooHyun1stSolo #SooHyun1stSolo'), (7802, 2329, 'Johor Bahru, Johore', '@varicklee STOP EMO-ING la'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (7803, 2410, 'Johor Bahru, Johore', 'Good Morning! (@ Marshie''s Lair) http://t.co/Y8ArQx2u'), (7804, 1961, 'Plentong, Johor Bahru', '@dayarazif nyirap dok'), (7805, 689, 'Johor Bahru, Johore', '@EuniceNsy I know . ☺'), (7806, 422, 'Johor Bahru, Johore', '@al_Mahbubaah keep on smiling kak. Smiling is a Sunnah. :))'), (7807, 1856, 'Singapore', '@beastdwlove_ i kinda feel its not safe.. :/'), (7808, 2411, 'Johor Bahru, Johore', 'Awww man, simply can''t take it. I''m damn chio and hot. Woo, chiobu_96'), (7809, 206, 'Singapore', '@bunnybaby1315 @DioneKoh xDDD their posts damn random de!'), (7810, 49, 'Johor Bahru, Johore', '@f_cukyou haha of cous la! Later face ugly\n=.= will got scar de leh my classmate last time ah siao poke all de face totally got like 18~19'), (7811, 193, 'Johore, Malaysia', 'transfer # 4 (@ Tanah Merah MRT Interchange (EW4)) http://t.co/TfsZlwsg'), (7812, 2412, 'Johore, Malaysia', '@ring_a_lala U really like the short guy?'), (7813, 64, 'Johore, Malaysia', 'sleep at 12 then wake up at u nooo'), (7814, 2413, 'Johor Bahru, Johore', 'Just ended the movie !! John Carter awesome haha!!'), (7815, 2414, 'Johor Bahru, Johore', 'I''m at Lot One Shoppers'' Mall (Singapore, Singapore) w/ 20 others http://t.co/scNAaF8t'), (7816, 1133, 'Pulai, Johor Bahru', 'Dnner sat (@ Restoran Mee Mee Seafood) http://t.co/6ytgXVUC'), (7817, 2415, 'Johore, Malaysia', 'I''m at Hot Tomato Express (Singapore, Singapore) http://t.co/MXusJcDf'), (7818, 2206, 'Johore, Malaysia', 'Hate chuuuuuuuu.'), (7819, 1060, 'Plentong, Johor Bahru', 'people won''t understand if they were not in other shoes ;)'), (7820, 1951, 'Johor Bahru, Johore', 'My focus is on you'), (7821, 180, 'Johor Bahru, Johore', '@TINAmontennah nape babe...?'), (7822, 267, 'Johore, Malaysia', 'Gustav Effiel built three towers, one in Paris (obviously), where are / were the other two?'), (7823, 49, 'Johor Bahru, Johore', '@f_cukyou now all close become\nUgly scars'), (7824, 411, 'Johor Bahru, Johore', 'Some people change their Attitude to you so fast. Just in a day.'), (7825, 2416, 'Johore, Malaysia', 'Food not that great although its very worth it with a groupon. Only $12 for $25. Pre order your deal now at groupon.sg http://t.co/DfFzek3E'), (7826, 2405, 'Malaysia', '@zimachia @rinieymostafa haha arhhhh you pun cina bukiy'), (7827, 762, 'Johore, Malaysia', '@_Jesusbeloved (;'), (7828, 138, 'Johore, Malaysia', '#jelly @jaehun_brows @Vantsoul and @iasterday got car fetch them home TT'), (7829, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz ._. Really no logic sia :x see first la, cut hair damn waste time and money sia. :('), (7830, 2417, 'Johore, Malaysia', '@blueblueberryys @xyleee_kfh oi me leh'), (7831, 2252, 'Johor Bahru, Johore', 'everything gonna be okey'), (7832, 2418, 'Johore, Malaysia', 'I''m at J.CO Donuts And Coffee [pic]: http://t.co/Lbfyv6Qd'), (7833, 2007, 'Singapore', 'biar dpt sendal baru RT @hendrikpurnama badi bagor ketemu aang anak alim langsung ikut sholat ke masjid.'), (7834, 1961, 'Plentong, Johor Bahru', '@AinaSyaqilah aq nk pkat tshirt je la.haha'), (7835, 117, 'Johore, Malaysia', '1week of holidays is NOT enough.'), (7836, 2419, 'Johor Bahru, Johore', '@GloriaYanns @zhuangg i need to download 6 softwares sia.'), (7837, 2420, 'Johore, Malaysia', 'At Singapore Pool @ MBS — http://t.co/sXvYcfFF'), (7838, 938, 'Johore, Malaysia', '@Kesterkjw audition suck :D because my keyboard skill suck xD'), (7839, 2206, 'Johore, Malaysia', 'Takmo balik lagi pon bagus'), (7840, 64, 'Johore, Malaysia', 'don''t have anything to wear tomorrow. nvm just grab something and go'), (7841, 2406, 'Johore, Malaysia', 'Fatty changed my twitter picture again -.-'), (7842, 2421, 'Johore, Malaysia', '@AshtonTJH @ZongSien @KelvinPeterPete I''m missing everyone...'), (7843, 435, 'Johor Bahru, Johore', 'You must be going to hell, because it''s a sin to look that good.'), (7844, 134, 'Johore, Malaysia', 'Good ah. After you wash it, throw it inside the rubbish bin.'), (7845, 544, 'Johor Bahru, Johore', '@PARANOIDLIES_ you okay?'), (7846, 2422, 'Johor Bahru, Johore', 'If only it would rain cash stat. #idowannabeinthishellhole'), (7847, 2423, 'Johor Bahru, Johore', 'I''m at Blk 118 Ang Mo Kio Ave 4 http://t.co/udDYheBt'), (7848, 2329, 'Johor Bahru, Johore', '@JJongCarissa :DD'), (7849, 2118, 'Singapore', 'Ya Allah, I forgot about You. Isyak now.'), (7850, 2424, 'Johore, Malaysia', 'I''m at LFI @ 36 Kaki Bukit Place http://t.co/0r27JeGx'), (7851, 2425, 'Johor Bahru, Johore', 'I''m at Pasir ris drive 6 http://t.co/5bAxcNwf'), (7852, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz ._. U number 1 in typing (Y)'), (7853, 2426, 'Johore, Malaysia', '@SuparMarn @TOP_Bigbanggg She reject him. Then leye come find me. Then I help him with Cleo xD in the end Cleo also never change her mind xD'), (7854, 2405, 'Malaysia', '@zimachia @rinieymostafa arrhhh you cina bukit haha'), (7855, 2427, 'Johore, Malaysia', 'Check in wrong  (@ EwF by Everything with Fries w/ @jonathanwweijun) http://t.co/qL5ycpTx'), (7856, 2428, 'Malaysia', '@MaggieMook มึงคะ กูปวดหัวจัง ทำไงดีวะ????? :''('), (7857, 2058, 'Johore, Malaysia', 'kenyang :)'), (7858, 206, 'Singapore', '♥ twitter mentions xD'), (7859, 2338, 'Johor Bahru, Johore', 'Damn, I wish you didn''t know Anything.'), (7860, 1769, 'Plentong, Johor Bahru', '@azieraziezie youtubeee ? tak paham sangad laaa . terkenyal-2 aku belit tudung akuuu . hisshhh .'), (7861, 134, 'Johore, Malaysia', 'Not hong bin la!'), (7862, 2206, 'Johore, Malaysia', '@CaraWesley no? :('), (7863, 467, 'Plentong, Johor Bahru', '@Shazleenatasha @__kHAIRULaZRIE Byee bye korang :)'), (7864, 2389, 'Johor Bahru, Johore', '@Nunacumel kkekekeke... upah ah...'), (7865, 138, 'Johore, Malaysia', 'Stupid movie scared everyone but damn fun hahahha. #2Lclassouting'), (7866, 2145, 'Singapore', '@alisyahamran okay can. but but but I tot your pon kena confiscate?o.o'), (7867, 156, 'Johore, Malaysia', '@limyuexiu awesome food looks awesome. WOW, FANTASTIC BABY!'), (7868, 206, 'Singapore', '@MyPhenomeniall xD'), (7869, 1651, 'Pulai, Johor Bahru', 'Takut? Langsung tak k??? Tak nampak ke aku nganjing tuhhh???'), (7870, 2429, 'Johor Bahru, Johore', 'I did it!! I ate noodle for less than an hour and finish everything!! :))) Weee!!~ http://t.co/l9BGXEnl'), (7871, 2419, 'Johor Bahru, Johore', '"@byuntae_min: @WooMyHeart_ AWESOME. BOOMSHAKALAKA DANCE DANCE DANCE DANCE DANCE~" WOW FANTASTIC BABY.'), (7872, 2372, 'Johor Bahru, Johore', 'RT @qihahchoitop: YG want his artist to shine more than him thats why he dun want to appear on variety show. YG family &amp;lt;33'), (7873, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa klau kejup myb aq join .lau nk lme2 x kot .tngok r cmne .'), (7874, 2118, 'Singapore', '@IhsanRuzaini YES!'), (7875, 2430, 'Johor Bahru, Johore', 'Star gazing~ @elubmermaid @PRlNCEss__ (@ Serangoon Garden Parade Square) http://t.co/aN9ANhuO'), (7876, 2425, 'Johor Bahru, Johore', 'I''m at block 454 pasir ris drive 6 http://t.co/F40sehxP'), (7877, 117, 'Johore, Malaysia', '@sara_B2ST looks may be decievings hehe'), (7878, 134, 'Johore, Malaysia', 'Anyhow accuse people!'), (7879, 2431, 'Pulai, Johor Bahru', '@hazyqsahar aku wakil rumah sukan je bang.rumah bendahara.ekeke'), (7880, 2432, 'Johor Bahru, Johore', 'I''m at Middle Rock Garden Bar [pic]: http://t.co/9HnP3b0e'), (7881, 2411, 'Johor Bahru, Johore', 'I love SianBalls. I want her to be my sister for my next life again. &lt;3'), (7882, 435, 'Johor Bahru, Johore', '@fallfellfallen go and eat your Maggie noodles!'), (7883, 509, 'Johor Bahru, Johore', 'I''m at Creatures Of The Night Show http://t.co/0aSShRuS'), (7884, 99, 'Johor Bahru, Johore', 'Aku rase kan bro ...lain kali kau call brader kau lagi satu bagos :)'), (7885, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz we want to see coz we care for u :p'), (7886, 2070, 'Riau, Indonesia', 'tetangga sebelah lagi akad nikah \\m/ @Poconggg , @radityadika kapan nih nyusuuul???'), (7887, 2433, 'Johor Bahru, Johore', '@NabilahNezyrah eh amcm?? Ill be here &gt; often. HAHA twitter better than fb ahhhh.'), (7888, 544, 'Johor Bahru, Johore', 'You never text me, I never text you = we''re not gonna talk.'), (7889, 2434, 'Johor Bahru, Johore', 'My brother is a monster when he''s angry.'), (7890, 2143, 'Singapore', 'Twitter don''t find problem with me okay. we''ve been friends since 2009 ah. stop lagging ah.'), (7891, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims hahahahaha . macam biase ? orang gila nak ? hihi XD insyallah akak carikan kawan akak yang single-2 tuuu .'), (7892, 1875, 'Johor Bahru, Johore', '@derppp_ If someone like me can make it, anybody can make it. But then again, I am that damn good (; Heheh.'), (7893, 2406, 'Johore, Malaysia', 'yeah baby cant wait for tmr \\m/'), (7894, 2372, 'Johor Bahru, Johore', 'can''t fucking wait for next week point of entry.'), (7895, 609, 'Johore, Malaysia', 'Ms. Angel Galo From PhIlippines... hahahhaha misss u! @ Singapore http://t.co/WtagbWgA'), (7896, 2435, 'Singapore', 'took like half of the day to finish tut 1 and 2. omfg. still got 4 more tutorials to go.'), (7897, 2436, 'Kota Tinggi, Johore', '@huixuanng just work for the sake of money'), (7898, 173, 'Johore, Malaysia', 'Hahaha they''re putting oil on Bryan''s hair!'), (7899, 2437, 'Johore, Malaysia', 'Someday, you''ll realize how much you cared about her and how amazing she was. But, she''ll already be with the guy who always knew.'), (7900, 2438, 'Johore, Malaysia', 'I''m at Katong Student Hostel (Singapore, Singapore) http://t.co/U69pWpCR'), (7901, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz D: cannot liddat la! Must let it down ma. I promise u won''t laugh :p'), (7902, 49, 'Johor Bahru, Johore', '@Fira00hFira zzzzzz got new word !!! #jiwhye = cb haha !!! Aiyo wad so funny =.= #youmadsis haha'), (7903, 117, 'Johore, Malaysia', '@paperdrizzle i oso never say you i said qi shan what , that fucking whore... HAHAHHAH lucky ur name is Shan Qi :)'), (7904, 1856, 'Singapore', '@SuHisTokkiOri yesyesyes.. at first, i tot he is a girl.. and i was like "wow. a girl plus 4guys..." then i read comments and found out'), (7905, 2439, 'Johore, Malaysia', 'Super nice charred grill pork chop (@ Spruce) [pic]: http://t.co/LIdH9xOh'), (7906, 1781, 'Johor Bahru, Johore', 'I''m at Bus Stop 44049 @ Opp Junction Ten http://t.co/1NmSq3FH'), (7907, 105, 'Johore, Malaysia', 'Penis. My favorite.'), (7908, 1769, 'Plentong, Johor Bahru', '@azieraziezie amboi baru nak mandi . hihi XD okayokayy bubye tc wsalam darl :)'), (7909, 1060, 'Plentong, Johor Bahru', 'i tried my best to be the best for you ; still you prefer other. Stop hide and seek game'), (7910, 1903, 'Kota Tinggi, Johore', '@adrenaaa hahaahahs ! Your head leh :) funny uh lyt ! Saturday I put my arm at your head'), (7911, 2039, 'Singapore', 'They won''t listen'), (7912, 2440, 'Johor Bahru, Johore', 'Idk why but in the band room my reaction is always " what just happened " o-o'), (7913, 551, 'Johor Bahru, Johore', '@MansoorAdabi Durgeswaran Jason S/O Desnamuty'), (7914, 2411, 'Johor Bahru, Johore', 'Siiisterr 4 lyfeee. &lt;3'), (7915, 142, 'Johore, Malaysia', '@sleepyysam heeehs Fly here and meeet me tonight please? I misss you baby. =''('), (7916, 435, 'Johor Bahru, Johore', 'Come live in my heart and pay no rent.'), (7917, 2007, 'Singapore', 'ee uci,kmana aja uci @ucyhadly'), (7918, 958, 'Johor Bahru, Johore', '@toffeemixed aiya too bad u Nv pass 21 .. Lol I dun even know I will use it anot -.- mayb just give ppl oso =.='), (7919, 1875, 'Johor Bahru, Johore', '@belindadrs Duaduanya dihitung buat CA2 ehh :x'), (7920, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz sexy legs *-* aiyo, then sit behind see what sia?'), (7921, 2419, 'Johor Bahru, Johore', '@GloriaYanns @zhuangg IKR. LE SIGH.'), (7922, 2441, 'Kota Tinggi, Johore', '@juliannehee NEVER TAKE WITH ME :@'), (7923, 544, 'Johor Bahru, Johore', 'Por lanpa la seriously.'), (7924, 2398, 'Riau, Indonesia', '*sujud syukur* RT @eLsaRiangga: kali ini kita tidak sejalan -_- RT @indriHR entah kenapa mending ketemu sama pelajaran hari jumat daripada h'), (7925, 206, 'Singapore', '@ChuaEden awesome ;{D'), (7926, 2442, 'Johore, Malaysia', '“@brycacatian: @giokalaw ah ok. gusto ko sana magtanong sa group kaya lang baka madami magpabili hahaha excess baggage! LOL” - korek!'), (7927, 2166, 'Johore, Malaysia', 'You would rather them than me.'), (7928, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz who uh? :O'), (7929, 139, 'Singapore', '@Zophia98 So popular sio....'), (7930, 551, 'Johor Bahru, Johore', '@Shaminthatfreak same'), (7931, 65, 'Singapore', 'hsfloewfiorewgnrw i really luv this women @katyperry'), (7932, 156, 'Johore, Malaysia', '@limyuexiu WOOOHOOOOOOOOOOOOO~ NANANANA'), (7933, 1781, 'Johore, Malaysia', 'I''m at SMRT Buses: Bus 960 (Singapore) http://t.co/82OmJYLB'), (7934, 196, 'Johore, Malaysia', '@PoChopper yeah.. long gone....'), (7935, 1815, 'Johor Bahru, Johore', 'I''m at bottle tree park :)'), (7936, 365, 'Johor Bahru, Johore', 'Someone help me pack my bag pls.'), (7937, 2443, 'Johore, Malaysia', '#night #tweegram  @ On my way to DREAMLAND http://t.co/Abq2ldnb'), (7938, 2437, 'Johore, Malaysia', 'My lips are the gun. My smile is the trigger. My kisses are the bullets. Label me a killer.'), (7939, 2007, 'Singapore', 'namanyajuga badi bagor RT @hendrikpurnama awabanya taaaiikkk lahhh.. -,-" sendal 10rb kali RT @buddisetiawan biar dpt sendal baru'), (7940, 1837, 'Singapore', '@BABYITSZELO WHAT !? I SHIPPED DAEHYUN AND YONGJAE ONE SIA'), (7941, 2206, 'Johore, Malaysia', '@CaraWesleyc miss you sia. Never reply my msg. :('), (7942, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz noproblemmmmmmm :D'), (7943, 130, 'Plentong, Johor Bahru', '@dukefreaks ni lagi kejadah nii T T'), (7944, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs tak tau , masa tu kiteorg ada tuition so fir je yang handle . Hebat kan dia ? Haha rajin gila'), (7945, 2411, 'Johor Bahru, Johore', 'Bahahahah, revenge.'), (7946, 1856, 'Singapore', '@SuHisTokkiOri "she" is actually guy and my mouth dropped ....'), (7947, 1435, 'Johor Bahru, Johore', 'Friday is coming. Holidays is ending . ):'), (7948, 1464, 'Johore, Malaysia', '@JAYYYSIAAH okay :('), (7949, 244, 'Johor Bahru, Johore', '@KyleHerms finally e switch! &lt;3'), (7950, 2329, 'Johor Bahru, Johore', '@IHEARTSUZY :D'), (7951, 2007, 'Singapore', 'masa sihhh ko masi di jakarta @reskaprima'), (7952, 76, 'Johor Bahru, Johore', '@KinjiTaisuke HengHeng ... Stop here... Dun be so emo. We will talk about this tmr. Dun think anything stupid!'), (7953, 1383, 'Johor Bahru, Johore', '@Xinx_xNi HEYYY YO , yes ?'), (7954, 2205, 'Tebrau, Johor Bahru', '@akiemalie motor? Eh bukan bukan! Haha it''s a game. Scramble words?'), (7955, 1194, 'Malaysia', 'เซ็งข่าาา นอยด์หลายเรื่อง ฟิคก็ไม่อัพ ไทม์ไลน์ก็เงียบ -3-'), (7956, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Ehhh sory sikit.Ada ehhhhh Tdi dh mkn dh.Jeles????? xD'), (7957, 2445, 'Johore, Malaysia', 'Dinnerrrrrrr @ Tang Tea House Hong Kong Cafe http://t.co/psbaiTFk'), (7958, 142, 'Johore, Malaysia', 'Sendiri datang minta tolong. Bila orang nak tolong tk berterima kasih pula. =''('), (7959, 2219, 'Singapore', '@9reasonstolove Whaaat? I thought you were an active user mah! And I did not see your tweets on my timeline before so yeah xD'), (7960, 49, 'Johor Bahru, Johore', '@f_cukyou de lip below 10 small one top lips 2 cheek 2 nose donnoe how many got 3 small one also =0'), (7961, 138, 'Johore, Malaysia', 'Bus finally arrive yay'), (7962, 206, 'Singapore', '@DioneKoh @bunnybaby1315 anyone like manga? snsd or jb? What sec sch u all in? Taller comment shorter like. what''s ya''all number? XD'), (7963, 2426, 'Johore, Malaysia', 'POWER AHAHAHHA.'), (7964, 494, 'Johor Bahru, Johore', 'Mencari kerja...haizz...mana la le dapat'), (7965, 657, 'Johore, Malaysia', '@hahazaahir haha..kerja apa?KFC McD Secrt resipi?'), (7966, 1526, 'Malaysia', '@wararat_amp ok จะถ่ายมาให้เยอะคร้าา^_^'), (7967, 72, 'Johor Bahru, Johore', '@doubleyouuem wenmin cool siol~ angels are extinct! :D u wanna be like maathavan?'), (7968, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh hahah of course must on stand by'), (7969, 2001, 'Johor Bahru, Johore', 'dinner-to-go (@ Mr Teh Tarik Eating House w/ 3 others) http://t.co/YJgbnFYO'), (7970, 941, 'Johor Bahru, Johore', '@barbiepwinzez You cannot grow shorter silly. Haha . (:'), (7971, 60, 'Singapore', '@iAttachedToKpop @InsyiraahGemok @popsywhoopsy yup kind off. finishing soon. :)'), (7972, 2039, 'Singapore', '@Baaasil_ gilaaa kau ni'), (7973, 49, 'Johor Bahru, Johore', '@Vcolizious zzzz no wonder'), (7974, 1688, 'Johor Bahru, Johore', 'Finally gonna have dinner!!!!! (@ Kungfu Paradise) http://t.co/7yehbA0e'), (7975, 435, 'Johor Bahru, Johore', 'You are a 9.999. You will be a perfect 10 if you are mine.'), (7976, 31, 'Johore, Malaysia', 'friends that keep me sane! @ jimmie''s crib http://t.co/jI9X7f1u'), (7977, 2433, 'Johor Bahru, Johore', '@iZULAIHA HAHAHA, FRIEND YOU KNOW I WORKING RIGHT??? See you in twits often ;)'), (7978, 244, 'Johor Bahru, Johore', 'BFF @KyleHerms juz make e switch! iPhone time ! Xoxo'), (7979, 2446, 'Johore, Malaysia', 'Shagged out. (at True Fitness Parkway) — http://t.co/kyny5jbS'), (7980, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz look at Peisha one *-*'), (7981, 1961, 'Plentong, Johor Bahru', '@dayarazif tgk dlu la.ngantok r mlm ni.ptg td men futsal'), (7982, 173, 'Johore, Malaysia', '@dylanloo hahahaha yup!'), (7983, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh oops sorry'), (7984, 2329, 'Johor Bahru, Johore', 'Made a lot of new friends on twitter :D kind of happy. :)'), (7985, 705, 'Pulai, Johor Bahru', 'I''m at Fais Tomyam http://t.co/iLQKUcft'), (7986, 1270, 'Johor Bahru, Johore', '@OMG_SANDAR DM please. I have connection problem with Kakao talk.'), (7987, 156, 'Johore, Malaysia', '@limyuexiu BOOM SHAKALAKA HAHA OK THIS HAS NO END'), (7988, 1651, 'Pulai, Johor Bahru', '@erichafitrih tak.'), (7989, 775, 'Johore, Malaysia', 'Amor Allah S.W.T Infinitus'), (7990, 1451, 'Johor Bahru, Johore', '@kohlem alrite then have a gd rest! N see ya in 2 weeks time :)'), (7991, 2447, 'Johore, Malaysia', 'Chillin~ &lt;[^_^&lt;][&gt;^_^]&gt; (@ NYDC) http://t.co/PWgkrGoP'), (7992, 2291, 'Johore, Malaysia', '@ShafinahIeenaaa HAHA ! Okay :)'), (7993, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz ahemahem'), (7994, 2143, 'Singapore', 'PIGPIGPIIIIIIIIIIIIIIIIIIIIIIIIG'), (7995, 2086, 'Johor Bahru, Johore', '@ZhouJin_ 你去完他生日再来阿~'), (7996, 716, 'Johor Bahru, Johore', '@tripodmonster Aww, don''t saad. ): Go get money fromm parents. ^-^'), (7997, 49, 'Johor Bahru, Johore', 'Tweet tweet tweet !!! Hahaha nth better to do spam tweet'), (7998, 244, 'Johor Bahru, Johore', '@birdcagewalk omg! Show me a pic when it''s not sore! Power sia!'), (7999, 1961, 'Plentong, Johor Bahru', '@azamizahi23 kaw knal die ke?'), (8000, 1011, 'Johor Bahru, Johore', 'Like what to do now'), (8001, 2407, 'Plentong, Johor Bahru', '@gadishanim huhu..mokma paling awal tunang..kita bile lagi cikct??huhu..org len ape cer??'), (8002, 2162, 'Johor Bahru, Johore', 'I''m at Yishun Bus Interchange (Singapore) w/ 3 others http://t.co/5qppAPmZ'), (8003, 1526, 'Malaysia', '@NrielZandramari ขอบคุณมั่กมากคร้าพี่สาว^_^'), (8004, 2093, 'Singapore', '@blackheartesJ OR IS THERE. OOOOOOOOOOOOOOOOHHHHHHHHHHHHHHHHHHH @NiallOfficial @Louis_Tomlinson @Harry_Styles @zaynmalik @Real_Liam_Payne'), (8005, 1349, 'Johore, Malaysia', '@xing_shing @sheslley @karlademoda @lkmariquit @rinabanana supot nada! ako gne level up supot defotah madugay dugay ni nga daan wala ko work'), (8006, 271, 'Johore, Malaysia', 'Baby D in the house yo! @ Ngee Ann City http://t.co/NY1mxaBG'), (8007, 2448, 'Johor Bahru, Johore', '"@FunnyEvil: Chris Brown hits her, Eminem lies to her, Drake can''t remember her name = The life of Rihanna." Lols!'), (8008, 2449, 'Johore, Malaysia', '闷死了!'), (8009, 99, 'Johor Bahru, Johore', 'Nenek go holiday..cucu pun nak ikot :('), (8010, 2450, 'Johore, Malaysia', 'Weeee climbing tml!!!'), (8011, 2451, 'Malaysia', '@kaner21 @carlossierra_87 així perfecte ;D'), (8012, 2329, 'Johor Bahru, Johore', '@varicklee er idk what to say. :P'), (8013, 2365, 'Indonesia', '@pjy1234 @taraeunjung1212 @b89530 @BoRam_0322 @QriPretty @RHY422 @sohotmelody 10 T-ara??tweet will be full if i want mention you all haha'), (8014, 2377, 'Johor Bahru, Johore', '@nurirfansmiles nothing wrong. I don''t have much beige coloured shirts. 2 to be exact. How siaaa. Wish I had more beige.'), (8015, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz D: cannot. Liddat my hair become like girl alr D:'), (8016, 551, 'Johor Bahru, Johore', '@Shaminthatfreak speed!'), (8017, 49, 'Johor Bahru, Johore', '@f_cukyou ya a lot scars now she show me today I scare tio'), (8018, 2411, 'Johor Bahru, Johore', 'I sing, I dance, everybody loves me.'), (8019, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan sesuke hati je cakap kite sombong. Kite rabun lah!'), (8020, 2162, 'Johor Bahru, Johore', 'I''m at North Point Shopping Mall (Singapore, Singapore) w/ 2 others http://t.co/2yfZbsUK'), (8021, 193, 'Johore, Malaysia', 'I just ousted Ryan L. as the mayor of Expo MRT Station (CG1/DT35) on @foursquare! http://t.co/WGJzDi2k'), (8022, 193, 'Johore, Malaysia', 'hop off (@ Expo MRT Station (CG1/DT35)) http://t.co/UzKgWYYW'), (8023, 2206, 'Johore, Malaysia', 'Starting to miss ayuuuuuu. ;('), (8024, 1526, 'Malaysia', '@NrielZandramari ขอบคุณอีกครั้งคร้า'), (8025, 1778, 'Johore, Malaysia', 'Bergerak ke dewan sri perdana kolej perdana !'), (8026, 2453, 'Johore, Malaysia', 'blog updated, http://t.co/JZuwYw3S'), (8027, 1115, 'Johor Bahru, Johore', 'Gmarket trustable??'), (8028, 411, 'Johor Bahru, Johore', 'I smile dumby at your text when we are texting together.'), (8029, 2454, 'Johor Bahru, Johore', 'There is 4 man wearin white jubah n turban enterin neighbour''s hse..Dey look suspicious n e moment dey enter,dey close e door..wah,scary ah!'), (8030, 285, 'Singapore', '@7amakhChawi either way ur motive should b proper whether u wanna b a doctor or a bodybuilder. Maybe a guy with muscles just hv a lil hustle'), (8031, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz awwwh :( we wanna see ma :B'), (8032, 2040, 'Plentong, Johor Bahru', 'I''m at Petronas Jalan Lingkaran Dalam http://t.co/1gljDKQa'), (8033, 2094, 'Johore, Malaysia', '"When you''re cultured, being middle class is enough" - love Shteyngart''s aphorisms'), (8034, 982, 'Johor Bahru, Johore', '@fernnny question mark on your head!today I do blur La I pack back dinner and then realise I forgot to bring Hsekey!!=['), (8035, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Dpt mkn takoyaki mybe :P'), (8036, 2205, 'Tebrau, Johor Bahru', 'Where''s the bus??'), (8037, 196, 'Johore, Malaysia', '@itzRegine your dp............ :D'), (8038, 2455, 'Johor Bahru, Johore', 'Jogging .'), (8039, 49, 'Johor Bahru, Johore', 'RT : @Fira00hFira: Hair please grow faster so i can curled it up nicely (;'), (8040, 2406, 'Johore, Malaysia', 'the show so sad , poor baby :('), (8041, 2110, 'Johore, Malaysia', '@sharon_cuneta12 remember Mega, as long as were learning on the Lord''s side,we will win coz God never loses a battle.'), (8042, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz EHH! THAT AWESOME LITTLE BOY AR???????'), (8043, 2456, 'Johore, Malaysia', 'Lepak session with @supremesebas @niliaaa @needalilfaith @bryanhihi (@ Shiraz @ Clarke Quay w/ @bryanhihi @niliaaa) http://t.co/28X30SSg'), (8044, 657, 'Johore, Malaysia', '@hahazaahir tula..time aku kecik..main dalam ladang sawit pun xada org nak culik..ni tengah org ramai kena culik..berengsek mereka..hahaha'), (8045, 2426, 'Johore, Malaysia', 'Tht awkward moment when Leye apologises to you infront of your friends wtffffff. *goosebumps*'), (8046, 206, 'Singapore', '@DioneKoh @bunnybaby1315 IKR AHHA.'), (8047, 1049, 'Johore, Malaysia', '@nylopolyn yan ba ang walang pera? Hahaha'), (8048, 2457, 'Kota Tinggi, Johore', 'today i at outside guaiguai eat hor fun and drink plain water^^ @paperheartzxc'), (8049, 2205, 'Tebrau, Johor Bahru', 'Thinking if I should go to school tomorrow?'), (8050, 2458, 'Johor Bahru, Johore', 'Just reached home:)'), (8051, 49, 'Johor Bahru, Johore', '@Vcolizious I thought u angry with me ~ now can tell me hehe'), (8052, 129, 'Plentong, Johor Bahru', 'Sedih plak tngok kisah adek Dirang kat #999 @tv3malaysia'), (8053, 2459, 'Singapore', 'masimulan na nga, para kahit isa meron... (0.o)'), (8054, 1266, 'Johore, Malaysia', '“Never look for someone who always place fun in the first place . One day they''ll neglect you for the fun they''ve been looking for.”'), (8055, 2070, 'Riau, Indonesia', 'eh, tiap singgah ke twitter, gak lupa buat say hay sama @BUDIdoremi \\m/'), (8056, 2458, 'Johor Bahru, Johore', '#TIRED'), (8057, 2460, 'Johore, Malaysia', 'I love you seems cheap now adays .'), (8058, 1951, 'Johor Bahru, Johore', 'I don''t like this indirect thingy... Can''t we just be straight forward to the point ?'), (8059, 2461, 'Plentong, Johor Bahru', 'Iive happily and think positive'), (8060, 2462, 'Johor Bahru, Johore', '我爱你!'), (8061, 2143, 'Singapore', 'Happy National Condom Day really? What next? Happy national pregnancy day? What the actual fug.'), (8062, 206, 'Singapore', '@bunnybaby1315 @DioneKoh want be my bf/gf? HAHAHA.'), (8063, 2463, 'Kota Tinggi, Johore', 'I''m at Lions Home For The Elders http://t.co/Z3fvSvJd'), (8064, 158, 'Malaysia', '@syaimaaaa hahaha kinda'), (8065, 2182, 'Kota Tinggi, Johore', '@LeeBinOnlyOne besties u go back to school ?'), (8066, 193, 'Johore, Malaysia', 'I''m at Changi City Point (Singapore) w/ 2 others http://t.co/0pIdDsjS'), (8067, 2162, 'Johor Bahru, Johore', 'I''m at Northpoint Shopping Centre w/ @lurverhapsody http://t.co/XjfM1au2'), (8068, 1698, 'Johore, Malaysia', 'Let''s see how everything goes tmrw. hopefully I''ll be fine.'), (8069, 1435, 'Johor Bahru, Johore', 'After @FLOR4LS1NS says Alex don''t look like Huangjunxiong. I now think that why people say he look like Huangjunxiong . :/'), (8070, 2464, 'Plentong, Johor Bahru', 'I''m at Mr Kombilicious http://t.co/WflkonCa'), (8071, 1717, 'Johore, Malaysia', '@chipmunkNICOLE you got watch one meh?!'), (8072, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz den I''ll laugh extra loud :p and say its to train her . :b no la, actually I very nice, sure won''t laugh!'), (8073, 2206, 'Johore, Malaysia', 'Missing Mariah.'), (8074, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan yang sejenis kan makwe dia kaan pun hot makaih kalah jejaka mahacho taaauu'), (8075, 106, 'Johor Bahru, Johore', 'Fever .'), (8076, 2455, 'Johor Bahru, Johore', '@Chir8n Bopitate la'), (8077, 2281, 'Johor Bahru, Johore', '@ButterJingers I think can use this letter as LOA! Ask Mr I?'), (8078, 2441, 'Kota Tinggi, Johore', '@juliannehee TOMORROW I MUST LOOK EXTRA GLAM :D'), (8079, 496, 'Singapore', '@SungminsELF hahas :p'), (8080, 173, 'Johore, Malaysia', 'Haha they started playing "why this kolaveri" while Bryan was getting his hair cut'), (8081, 2377, 'Johor Bahru, Johore', '@nurirfansmiles sports camp I''m in radiance or something.'), (8082, 411, 'Johor Bahru, Johore', 'Is tht even true?'), (8083, 49, 'Johor Bahru, Johore', '@f_cukyou yeah !!! A chao ah Lian shorter thn u I think !!! And she last time pretty pretty now like kns haha'), (8084, 196, 'Johore, Malaysia', '@itzRegine i thought she wasnt you...'), (8085, 435, 'Johor Bahru, Johore', 'If I were a stop light, I will turn red everytime you passed by, just so I could see you abit longer.'), (8086, 117, 'Johore, Malaysia', '@sara_B2ST you never knoww :&gt; haha'), (8087, 156, 'Johore, Malaysia', '@limyuexiu HAHA You baked that?'), (8088, 2465, 'Johor Bahru, Johore', 'I''m at Changi International Airport (SIN) w/ @armchairdude http://t.co/Cy40AN7k'), (8089, 1856, 'Singapore', '@SuHisTokkiOri hahaha!!! i was reading allkpop and saw the post about NU''EST new mv so i go watch it lo..'), (8090, 2196, 'Johor Bahru, Johore', 'Holiday is ending soon...'), (8091, 762, 'Johore, Malaysia', '@_Jesusbeloved is it the 9pm show? If yes i watch until eps. 11'), (8092, 941, 'Johor Bahru, Johore', '@barbiepwinzez Because people around you grow faster ? :3'), (8093, 603, 'Johore, Malaysia', 'I''m at Blk 1G Pinnacle@Duxtron (Singapore) http://t.co/VThya6pP'), (8094, 2466, 'Johore, Malaysia', '@danisaurrrr kelan yan?'), (8095, 2467, 'Riau, Indonesia', '...'), (8096, 2039, 'Singapore', 'bila dia takpe. haizzz'), (8097, 72, 'Johor Bahru, Johore', '@doubleyouuem sexy and I know it. Vanthamaa is maathavan wife? :p'), (8098, 4, 'Johor Bahru, Johore', 'I should wear makeup come here lorrrrrrrrrrr'), (8099, 2451, 'Malaysia', 'Aun hay gente buena en el mundo. Mi iPhone ha estado perdido en Malasia 24h y ahora vuelve a estar en mis manos!!!'), (8100, 129, 'Plentong, Johor Bahru', '"@Normfasz_NF: RT “@TheGirlNotes: ☑tweeting ☑eating ☑tweeting ☑sleeping ☐studying.”"'), (8101, 2468, 'Plentong, Johor Bahru', 'I''m at shilin city square (JB, Johor) http://t.co/9lE6LOVm'), (8102, 2469, 'Kota Tinggi, Johore', 'Ended up here thanks to draw something, might as well get my stuffs! (@ Jurong Point w/ 21 others) http://t.co/qTpl2qzA'), (8103, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboii . bagusss laaa jual mahal-2 sikit . murah-2 tak bagusss . hihi :)'), (8104, 496, 'Singapore', '@Jon_tyty True Story :X'), (8105, 859, 'Johor Bahru, Johore', '#Nowwatching chnl 8 unriddle2! :D'), (8106, 2419, 'Johor Bahru, Johore', '@GloriaYanns you are right le... But i halfway download alr. Go school also for what.'), (8107, 2206, 'Johore, Malaysia', 'Penipu lebih'), (8108, 2190, 'Johore, Malaysia', 'シンガポールの人道支援団体マーシーリリーフが周辺各国へ迅速な災害復旧支援をするのは、これもまた国防だからだろうね。まさにpay it forwardだ。\n\n\nとまだ酔っている頭で考える。'), (8109, 65, 'Singapore', 'Anyone have Whatsapp??? Im bored'), (8110, 117, 'Johore, Malaysia', '@paperdrizzle HAHHAHAHHA JUST KIDDINGGGGGGGG HHAHAH'), (8111, 1405, 'Johore, Malaysia', 'Maaaaa~ hi =P @xiaoshanshan_'), (8112, 2470, 'Johor Bahru, Johore', 'Delay!! tp enak bisa free internet.. Hoho (@ Terminal 1 w/ 17 others) http://t.co/MWMUFnWa'), (8113, 142, 'Johore, Malaysia', 'This boy @sleepyysam is becoming sweeter. After every problems,he will become more sweeter than usual and never did he change. &lt;3 ='')'), (8114, 2471, 'Johor Bahru, Johore', 'just won a pair of audio technica headphones!!'), (8115, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz eyes too power alr. *-* evolution'), (8116, 2472, 'Riau, Indonesia', 'I want to reach the world with my hands, I want to accomplish everything, until I managed to grab'), (8117, 2407, 'Plentong, Johor Bahru', '@gadishanim owh ya ka?semua masih mencari?haha.haiza bukan dah ada ke??kalo tak silap la..=)kak inah kawen awk p??'), (8118, 196, 'Johore, Malaysia', 'well. you feel happy. I feel dead.'), (8119, 580, 'Johor Bahru, Johore', 'CHOCO ROCKS!'), (8120, 2473, 'Johor Bahru, Johore', 'I''m at Homey! http://t.co/amK8BxG1'), (8121, 2451, 'Malaysia', 'Eternamente agradecida a Banana Guesthouse por mandarlo en furgoneta, a Iago por la compañía y a Ben por las traducciones al thai. Genios :)'), (8122, 1440, 'Johor Bahru, Johore', 'I shall concentrate even more on my hmk! #waittilltired'), (8123, 2452, 'Johore, Malaysia', '@GamirAlex ready ka na? To explore singapore and to be with us?'), (8124, 130, 'Plentong, Johor Bahru', '@dukefreaks okkaaayyyy aku kalah T____T'), (8125, 1961, 'Plentong, Johor Bahru', '@azamizahi23 ohh.die slalu gak men ftsal dgn aq.cmner kaw knal die kwn aq?'), (8126, 2356, 'Malaysia', '@patxy02patonga 555+ เหนื่อยใจ'), (8127, 2474, 'Johor Bahru, Johore', '@BerryAnatomy hahahahaha i pity Royce. So loyal to u.'), (8128, 2457, 'Kota Tinggi, Johore', 'idonlike you text me until like that:('), (8129, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz hairy legs *-* orang utans'), (8130, 244, 'Johor Bahru, Johore', '@KyleHerms hehe. Toy... Boy... Xoxo'), (8131, 2475, 'Johor Bahru, Johore', '@ohkayne i find you at vivo first.'), (8132, 2329, 'Johor Bahru, Johore', '@varicklee dun say here lehhhhhh I know I innocent girllll'), (8133, 2476, 'Pulai, Johor Bahru', 'Makan luar malam ni yeah thanks @cw_281 @heyShahzan'), (8134, 2477, 'Johore, Malaysia', '@Kayefattyhippo ear pierce??'), (8135, 2444, 'Plentong, Johor Bahru', '#PeopleIWantToMeet @AkimAhmad :D'), (8136, 244, 'Johor Bahru, Johore', '@birdcagewalk ok!'), (8137, 60, 'Singapore', '@iAttachedToKpop @InsyiraahGemok @popsywhoopsy Gennie you do alrd?'), (8138, 196, 'Johore, Malaysia', '@itzRegine well you found a way to make your nose not that flat. :D'), (8139, 49, 'Johor Bahru, Johore', '@f_cukyou ask Bernard I dk how ans hahahaha joking la pretty la my sister leh !! Haha!! April whn joining sch!!'), (8140, 130, 'Plentong, Johor Bahru', '@SemsTria bluexx! XD'), (8141, 2478, 'Johor Bahru, Johore', 'I''m at Terminal 3 (Singapore, Singapore) w/ 19 others http://t.co/RuaR6P5F'), (8142, 1856, 'Singapore', '@SuHisTokkiOri nope... :/ link, please? :D'), (8143, 1881, 'Pulai, Johor Bahru', 'Sejuknyaa'), (8144, 2479, 'Johore, Malaysia', 'SW CLASS CHALET!!! ❤❤❤ @merabel @exposedvibe @fatsperchoo @suiradira @ NSRCC, Safra Resort http://t.co/BfQU9Ps7'), (8145, 2039, 'Singapore', '#PeopleIWantToMeet Atoi Watkins. Party Buih ahh sakk pas The Oppressed :D'), (8146, 1994, 'Singapore', 'hais,maintain mcm gini je'), (8147, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY best best.... Rehat ckp2 k'), (8148, 99, 'Johor Bahru, Johore', 'Yess Sun goin TaiSon.. Wohoo'), (8149, 2458, 'Johor Bahru, Johore', '@adiiJack ouhok then hmm'), (8150, 657, 'Johore, Malaysia', '@hahazaahir oo..eh kata kwn aku kat KL kdai speed gaji mahal tau..sebulan boleh cecah 2k o more..katanya lah'), (8151, 206, 'Singapore', '@bunnybaby1315 @DioneKoh HAHAHA. but srly online dating site, but this site special, no need worry age problem, mostly range from 11-14 xD'), (8152, 889, 'Johore, Malaysia', 'Quick bite to eat before the flight. I think I just about know what''s what. http://t.co/hWQiwIzT'), (8153, 2480, 'Johor Bahru, Johore', '@ch95forevalways haha ^_^ unless you have a picture you want to show me ^.^'), (8154, 972, 'Johor Bahru, Johore', 'Will u be mine? :3'), (8155, 1856, 'Singapore', 'my mouth dropped after i found Ren is actually girl ... -.-'), (8156, 2398, 'Riau, Indonesia', 'Jauh di peta, dekat di timeline'), (8157, 2417, 'Johore, Malaysia', '@blueblueberryys yay :)'), (8158, 2481, 'Johore, Malaysia', 'Sounds like my partner for the camp is sweet. But I am still rookie.'), (8159, 331, 'Johor Bahru, Johore', 'people can only motivate you. but, its up to you push yourself to live your dreams.'), (8160, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz black dots nicer to see meh? :o'), (8161, 551, 'Johor Bahru, Johore', '@Shaminthatfreak desnamuty'), (8162, 2426, 'Johore, Malaysia', 'HUNGRYYYYYYYYYYYYYY.'), (8163, 2482, 'Singapore', 'ehh all the way busy.... cb'), (8164, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Ehh yelahhhhh :D Ada-2.Tdi baru je beli.Hihi'), (8165, 2281, 'Johor Bahru, Johore', '@ButterJingers Haha loan form! Wts!'), (8166, 2377, 'Johor Bahru, Johore', '@nurirfansmiles ohhhh. Ok! Reddians. Good!'), (8167, 2437, 'Johore, Malaysia', 'Let''s have a The Twilight Saga marathon! Well, that''ll be only me...'), (8168, 2007, 'Singapore', 'bg pit udah kerja d jakarta ci gmana lg kami dak tau alamat uci tu do @ucyhadly'), (8169, 1686, 'Johore, Malaysia', '@ErfanRahim aku ada agnes b punya tee. hehehehe:pppppp'), (8170, 2457, 'Kota Tinggi, Johore', 'giddy come again:('), (8171, 2483, 'Kota Tinggi, Johore', 'I''m at Boon Lay Blk 190 Mummy''s Place (Singapore) http://t.co/YkfKN4zr'), (8172, 2206, 'Johore, Malaysia', 'I hope that i will be with you again one day.'), (8173, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan dah buat salah reti habis say sorry :('), (8174, 2484, 'Johor Bahru, Johore', 'Sammy u can see any weird emotion?? \nLike Tis&gt;&gt; can see anything??'), (8175, 2455, 'Johor Bahru, Johore', '@Chir8n I wan swim across the straits of malacca and hopefully drown there'), (8176, 2485, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 29 others http://t.co/Rc7OrJNo'), (8177, 2482, 'Singapore', 'lagi teruk on Jay''s night sia'), (8178, 99, 'Johor Bahru, Johore', 'Ahh that hokkien mee with pork belly ...'), (8179, 2486, 'Johor Bahru, Johore', '@yaoweicanfly wad time u going tml ?'), (8180, 1024, 'Johor Bahru, Johore', '@KittennyScars but sometimes treat him dont so bad la cuz you really treat him till sieh fuck ma!'), (8181, 97, 'Pulai, Johor Bahru', '@NurHa_Hazierah dah we jadi gane doh?along jage dop? kak irah ingat nak balik mgu ni. tapi ade 2test :('), (8182, 848, 'Johore, Malaysia', 'I just ousted @emmaxzxz as the mayor of TMIS level 6 Singapore Shopping Centre on @foursquare! http://t.co/JWdklrKr'), (8183, 2487, 'Johore, Malaysia', '@julynherez who''s this?'), (8184, 2292, 'Johore, Malaysia', '#PeopleIWantToMeet @special1004 @Heedictator @ShinsFriends @shfly3424 @imsmi @AllRiseSilver @donghae861015 @GaemGyu @ryeong9 @imsmi'), (8185, 513, 'Johor Bahru, Johore', 'Fk this dylan !'), (8186, 2488, 'Johor Bahru, Johore', 'I''m at Bukit Gombak MRT Station (NS3) (Singapore, Singapore) w/ 3 others http://t.co/8GHmE75W'), (8187, 2489, 'Johore, Malaysia', 'This is quite irritating~ TT'), (8188, 2398, 'Riau, Indonesia', 'bagus tau nia :p RT @nia_imnida: kok jelek ya ._.v RT @indriHR @nia_imnida ini gimana?'), (8189, 1837, 'Singapore', '@BABYITSZELO They''re cute too ! KEKE'), (8190, 117, 'Johore, Malaysia', '@burntmittens DO i look less girly now?'), (8191, 551, 'Johor Bahru, Johore', '@MansoorAdabi andy'), (8192, 1856, 'Singapore', 'currently raping youtube replay button to listen to NU''EST .. D:'), (8193, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz how can u treat your fiends liddat sia? :('), (8194, 2490, 'Singapore', '@SiyingHeartsYou Ohhh. What colour ?'), (8195, 206, 'Singapore', '@ChuaEden TROLOLOL:B'), (8196, 2491, 'Johore, Malaysia', '@JULIATRQ we team 1 or 2?? Songting say team 1 went in finals.'), (8197, 1584, 'Johore, Malaysia', 'I''m at Far East Plaza (Singapore) w/ 16 others http://t.co/QZiW8fxI'), (8198, 2437, 'Johore, Malaysia', 'Let''s have a Twilight Saga marathon! Well, that''ll only be me...'), (8199, 681, 'Johor Bahru, Johore', 'I''m at Kopitiam (Singapore) http://t.co/KxVQo4Ru'), (8200, 1101, 'Johore, Malaysia', '@Afifjefri Ur welc , Aq punyee bl0g p0n biase2 je .'), (8201, 2492, 'Johor Bahru, Johore', 'WTF.Dr mngr mk sure u tk xtion dis blardy idiot.I do just as instruct.mind u if dis idiot gets awy freely i wd like to tndr my resignation'), (8202, 411, 'Johor Bahru, Johore', 'Heartness Brat.'), (8203, 1526, 'Malaysia', '@NrielZandramari :)'), (8204, 130, 'Plentong, Johor Bahru', '#AdaOrangTu kan payah benar say thanks. :/'), (8205, 1371, 'Johor Bahru, Johore', 'I''m at My dear home (Bukit Batok, Singapore) http://t.co/UmETVUPK'), (8206, 1930, 'Johore, Malaysia', '叫鸡 (at 星和海南雞飯 Uni Star) — http://t.co/Mkuo3Kpx'), (8207, 938, 'Johore, Malaysia', '@boblovebangs can follow me back? Thx :D'), (8208, 156, 'Johore, Malaysia', '@limyuexiu drove your BMW to buy? hahah'), (8209, 60, 'Singapore', '@iAttachedToKpop @InsyiraahGemok @popsywhoopsy Do you all still remember the 3 harm that we discussed?what''st the 3rd one ah?'), (8210, 1786, 'Johore, Malaysia', '@yizhonghere eh really sia! thanks!!'), (8211, 2482, 'Singapore', 'lagi teruk daripada Jay''s night.'), (8212, 2493, 'Johor Bahru, Johore', 'I''m at Bukit Panjang Plaza (Singapore, Singapore) w/ 14 others http://t.co/XCko5H0F'), (8213, 606, 'Johor Bahru, Johore', '@helloiamxinhui @sherlynwsm @aijoueunice sad!!! Baby wanna go tomorrow with me and maybe my mama?'), (8214, 2426, 'Johore, Malaysia', '#BestThingAboutBeingSingle , no need to worry about phone bill :D'), (8215, 2145, 'Singapore', '@alisyahamran hoho! eh dont need dm me liao. tell me at fb. my pon you know.. as usual~ lowbatt. standard la sia! :D'), (8216, 1651, 'Pulai, Johor Bahru', '@erichafitrih uuuu tkutnyaaa ~'), (8217, 2494, 'Johore, Malaysia', 'RT@NASA:Astronomers using NASA''s Hubble discover quasars acting as gravitational lenses, distorting images behind them! http://t.co/KJbWcXyk'), (8218, 1717, 'Johore, Malaysia', '@chipmunkNICOLE DANG GET LOST'), (8219, 2406, 'Johore, Malaysia', 'shit la so many marks everywhere :('), (8220, 1371, 'Johor Bahru, Johore', 'I''m at Number Twelve, Grimmauld Place http://t.co/gKkrSdAn'), (8221, 2460, 'Johore, Malaysia', '@Razi_Feeweet thats why hais what to do :/'), (8222, 2497, 'Johor Bahru, Johore', 'T.T (@ Alicia''s Bigbig Roomie^^) http://t.co/odri5rR9'), (8223, 941, 'Johor Bahru, Johore', 'The clothes I saw today reminds me of her . Huhu . Imy . :3'), (8224, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz I think ur talking about the wrong Wesley teo!'), (8225, 491, 'Johore, Malaysia', 'Catching up with rainbow gals over draw something. Bonding! Lol (@ Applebee''s) http://t.co/5i5op6Ap'), (8226, 2338, 'Johor Bahru, Johore', '@PinkFridayNuts jahaha. Surreal. Ahha, oh Gabriel , yes he did!'), (8227, 174, 'Kota Tinggi, Johore', 'I''m at Jurong West St 92 Blk 928 http://t.co/AAs1GMm7'), (8228, 1435, 'Johor Bahru, Johore', ''' I smell something '' dog ah you Huangjunxiong ! LOL'), (8229, 2455, 'Johor Bahru, Johore', '@Chir8n K'), (8230, 551, 'Johor Bahru, Johore', '#BestThingAboutBeingSingle nothing'), (8231, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Erm.........Tak belikan lah.Lupaaaaaaaaa :O'), (8232, 2498, 'Johor Bahru, Johore', 'I''m at AaRon''s Crib http://t.co/1wMhJnx8'), (8233, 49, 'Johor Bahru, Johore', '@f_cukyou nope got attendance !!! Better don skip sch in this business course ... And de timing sucks for it everyday 5! Pon will get letter'), (8234, 2460, 'Johore, Malaysia', 'Saying i love you its like saying hello now a days .'), (8235, 762, 'Johore, Malaysia', '@_Jesusbeloved Chey ps myself sia!!'), (8236, 1263, 'Plentong, Johor Bahru', '@AYZHUNpotato Erm my dad driving me to simei to collect my tee so dun I wun be joining u guyz'), (8237, 628, 'Johor Bahru, Johore', '@pinkmustachez WHY??'), (8238, 1856, 'Singapore', 'while watching NU''EST - Face mv for first time, i tot to myself, " wow~ cool, a girl plus 4guys... awesome" then'), (8239, 2259, 'Pulai, Johor Bahru', '@therantingcurse tomorrow midnight I think. I just finish cleaning up th house );'), (8240, 2499, 'Johor Bahru, Johore', 'I''m at Bus Stop 47571 (Blk 618) (Singapore, Singapore) http://t.co/OXmMb310'), (8241, 1961, 'Plentong, Johor Bahru', '@azamizahi23 ohh.die slalu gak cter asyik dtg ptn jek'), (8242, 941, 'Johor Bahru, Johore', '@xoxo_Nanaa Haha . Well you did too ! :3'), (8243, 1115, 'Johor Bahru, Johore', '@YIPPIE_ really? But ct order like two months alrdy still nvr come siaa.'), (8244, 2398, 'Riau, Indonesia', 'Kalo artis/public figure di RT, kalo bukan, di reply pun nggak.'), (8245, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz super nice uh! *-* look alr can drool :b'), (8246, 2329, 'Johor Bahru, Johore', '5300th tweet. X)'), (8247, 446, 'Singapore', '@parksoyeonjjang I hate it when some people think that anime is ''Hentai''.'), (8248, 49, 'Johor Bahru, Johore', '@Fira00hFira haha bye FIRA!!!! Haha'), (8249, 1686, 'Johore, Malaysia', '@ErfanRahim hahahhaa. siak je. hari tu aku nampak abeh amik je ah. hehehhehee. :pppp'), (8250, 2500, 'Johor Bahru, Johore', 'lady gaga should wear like normal humans on halloween, why not'), (8251, 1266, 'Johore, Malaysia', '@ChoonHockBleh @assortedbacon yea la epic until give Eugene aka sailor say I Steven lim LMAO. TELL YOU LE, EGG BEST YOU DON''T BELIEVE HAHA'), (8252, 206, 'Singapore', '@DioneKoh @bunnybaby1315 hahahaha arnd that age lah xD'), (8253, 2501, 'Johor Bahru, Johore', '@nervousmen later I go meet you.'), (8254, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa iloveshafiq hahaha'), (8255, 836, 'Johore, Malaysia', '@YunCaiKEN @WanHianKen ccccc shuai http://t.co/BDsamY19'), (8256, 2502, 'Malaysia', 'ผ่อนคลายๆ (@ สมิหลา ซีสปอร์ต | Samila Sea Sport Restaurant) http://t.co/YS5Ptbtw'), (8257, 1961, 'Plentong, Johor Bahru', 'terbang duit aq tgk cter John Carter.bosan!'), (8258, 130, 'Plentong, Johor Bahru', '@dukefreaks bak title!'), (8259, 2503, 'Johor Bahru, Johore', '@luvshow4ever 最近他們有跳嗎?'), (8260, 196, 'Johore, Malaysia', '@itzRegine hehehehe! :PPP'), (8261, 618, 'Johor Bahru, Johore', '9pm show :D'), (8262, 551, 'Johor Bahru, Johore', '@RollingTheDeeps sayong me huh'), (8263, 2403, 'Johore, Malaysia', '是狼:)) Unriddle 2.'), (8264, 1469, 'Johor Bahru, Johore', '@harharhaa u mean u just finish unloading all the logistics?????!!!!!'), (8265, 2504, 'Johore, Malaysia', 'I''m at Old Airport Road Market and Food Centre (Singapore) w/ 11 others http://t.co/myarjtji'), (8266, 142, 'Johore, Malaysia', '@sleepyysam I''ll see you in two days time. After that lepas segala rindu pat you boleh? ='')'), (8267, 1856, 'Singapore', 'i read allkpop comments then found out a "girl" is a guy , Ren.. -___-'), (8268, 657, 'Johore, Malaysia', '@ShakillaKhoriri Jom datang JB saya belanja..hahaha,minat punya pasal..'), (8269, 771, 'Johore, Malaysia', '@inakayamgoreng You were disturbing my delicious lunch what . Hahahaha !'), (8270, 689, 'Johor Bahru, Johore', '好朋友,只是朋友,还是朋友'), (8271, 65, 'Singapore', 'Anyone wants to play Chubby Bunny?'), (8272, 2124, 'Singapore', 'I AM HAPPY :))'), (8273, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz declaration of indianic love &lt;3'), (8274, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ haha yeah! Is the server up already?'), (8275, 2460, 'Johore, Malaysia', 'I acted as if it wasnt a big deal when really it was breaking my heart .'), (8276, 2491, 'Johore, Malaysia', 'Seriously we team 1 or 2?! LOL'), (8277, 513, 'Johor Bahru, Johore', 'Yr hatred ,'), (8278, 2505, 'Johor Bahru, Johore', 'At UOB Bank @ AMK Hub — http://t.co/2hyJJoGk'), (8279, 2252, 'Johor Bahru, Johore', 'err bosn ~~'), (8280, 1788, 'Johor Bahru, Johore', 'I''m at Hai Bin Prawning @punggol http://t.co/6QnRZerq'), (8281, 49, 'Johor Bahru, Johore', '@f_cukyou As in if ur % below 85'), (8282, 2059, 'Johor Bahru, Johore', '@Cherryluvzxc my friend de..'), (8283, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz see else where *-*'), (8284, 413, 'Johore, Malaysia', 'We will all die soon'), (8285, 771, 'Johore, Malaysia', 'Aku tertumpa kan coke ! Lol .'), (8286, 2398, 'Riau, Indonesia', 'kira2 tadi kaka gambarnya segede apa ya? RT @nia_imnida: ukurannya mau berapa nih? RT @indriHR bagus tau nia :p RT @nia_imnida: kok jelek ya'), (8287, 2259, 'Pulai, Johor Bahru', '@MeiZhen_BLAH drink honey lemon!'), (8288, 2506, 'Plentong, Johor Bahru', 'Indian exhibition. Should be interesting. (@ Expo @ Danga City Mall) http://t.co/HA7zbumY'), (8289, 2504, 'Johore, Malaysia', 'I''m at LAO Ban Soya Beancurd 老伴豆花 http://t.co/M2dkhcIO'), (8290, 2347, 'Johore, Malaysia', '@zixity tak nak aku! Siao. Tu that time pegi pon unplanned sia. Kau club pe?!'), (8291, 2507, 'Johore, Malaysia', '@alicialoveshym :B and i havent even started 1 :)'), (8292, 206, 'Singapore', 'ILY. ♥'), (8293, 1856, 'Singapore', '@SuHisTokkiOri thank you darling~^^'), (8294, 2509, 'Johor Bahru, Johore', '@Minsawesomeness turmeric in curry powder is beneficial for health.'), (8295, 685, 'Singapore', '@mggykills your so clever ah :)'), (8296, 156, 'Johore, Malaysia', '@limyuexiu damn! hahahah Why didn''t you drive it. I don''t dare to drive leh cause my parking sucxcx'), (8297, 1717, 'Johore, Malaysia', '@chipmunkNICOLE no i didnt ^^'), (8298, 2059, 'Johor Bahru, Johore', 'miss my childhood time.!'), (8299, 2308, 'Johore, Malaysia', '@BoonLikeNobody got cough ?! See doctor la aiyo! I think we pass to u one la cough ! HAHA'), (8300, 2507, 'Johore, Malaysia', '@alicialoveshym @benchtm @LohJiaHui17 RT le.'), (8301, 419, 'Johor Bahru, Johore', 'I''m at Sarah''s House. http://t.co/ymI7yaTj'), (8302, 1856, 'Singapore', 'BRB! restarting laptop !'), (8303, 2510, 'Johor Bahru, Johore', 'Firstly, me and anisa meet at interchange. We were shy. So, I tried asking her some questions while waiting for yana. Hehe!'), (8304, 551, 'Johor Bahru, Johore', '@Shaminthatfreak Tangevelu'), (8305, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz I say one of coz nice la *-*'), (8306, 2455, 'Johor Bahru, Johore', '@Chir8n LOL !'), (8307, 2511, 'Johor Bahru, Johore', 'I''m at Fitness First (Singapore, Singapore) w/ 2 others http://t.co/dv4Xmelq'), (8308, 331, 'Johor Bahru, Johore', '"@Thirahh i wondet how people could change drastically just like that. what exactly hit them hard?"'), (8309, 1875, 'Johor Bahru, Johore', '@derppp_ You''re talking to the guy who watches wrestling in almost every maths class ._.a'), (8310, 2512, 'Plentong, Johor Bahru', 'Aduiii ramainye.gaji ke? (@ BSN Taman Air Biru) http://t.co/NPGH5gb1'), (8311, 1435, 'Johor Bahru, Johore', 'Intending to give baby one packet of stickys. But since he like the another one instead of the one I wanted to gave him. I gave him both .'), (8312, 687, 'Johore, Malaysia', '@NabilahRugan @greenie_leena haha . Da lame tk mandi same2 . Its been years sia'), (8313, 2503, 'Johor Bahru, Johore', '@yrotsreH did u try to activate it? Mine is activated le~'), (8314, 1828, 'Johor Bahru, Johore', 'I''m at Bus Stop 78109 (Downtown East) (Singapore) http://t.co/oo24T4yy'), (8315, 689, 'Johor Bahru, Johore', 'I miss you only when in breathing .'), (8316, 2118, 'Singapore', 'I feel like I am getting closer to Him, I have not yet achieve much for myself and Him.'), (8317, 411, 'Johor Bahru, Johore', 'I don''t know you but i understand you.'), (8318, 2510, 'Johor Bahru, Johore', 'Then, we became crazy xD'), (8319, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims hihi bagus laaa . tahun depan pmr :)'), (8320, 138, 'Johore, Malaysia', '2L 2011 and 2L 2012 both class outing today :D #2Lclassouting'), (8321, 2329, 'Johor Bahru, Johore', '@varicklee dun close!!'), (8322, 689, 'Johor Bahru, Johore', 'Stereo love ~'), (8323, 1930, 'Johore, Malaysia', 'At 星和海南雞飯 Uni Star [pic] — http://t.co/hJ7H0zrM'), (8324, 2398, 'Riau, Indonesia', 'Saling sindir tanpa mention.'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (8325, 1526, 'Malaysia', '@wararat_amp ขอบคุณคร้าาาไปล่ะนะพี่แอม ง่วงหละ'), (8326, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz cannot meh?'), (8327, 1331, 'Johor Bahru, Johore', 'Having too much fun with a metal detector app I downloaded with my phone. Going around my home bring my phone near metal stuff lol &gt;.&lt;'), (8328, 513, 'Johor Bahru, Johore', '4872'), (8329, 790, 'Johor Bahru, Johore', '@A_chubbycheeks CHANNEL U!!'''), (8330, 551, 'Johor Bahru, Johore', '@ohmysunnyness cili padi,sedap'), (8331, 657, 'Johore, Malaysia', '@hahazaahir ok la tu..dari layan tweet mengarut aku je kan..hahaha,kata kwn aku la kwn dia keje kat speed KLCC ke mana ekh..lupa aku'), (8332, 2460, 'Johore, Malaysia', 'How many times you gotta hurt yourself till you finally realised its time to let go ?'), (8333, 1140, 'Johor Bahru, Johore', '@Jonathan5oh hahahaha. I lazy do sia seriously :( no moooodddd'), (8334, 173, 'Johore, Malaysia', '@dylanloo it''s freaking brilliant. President Nathan gets his hair cut there'), (8335, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa dak kaki patah .lalalala~~'), (8336, 852, 'Johor Bahru, Johore', 'Huang Jun Xiong don''t have the police look lehhhhhhh!'), (8337, 97, 'Pulai, Johor Bahru', 'kita nak tido. nanti kejut kite okey'), (8338, 1875, 'Johor Bahru, Johore', '@belindadrs Nanti kl perlu bisa kukirimin skillsnya'), (8339, 496, 'Singapore', '@SungminsELF sure ! but how to pass to you ? o.o'), (8340, 422, 'Johor Bahru, Johore', '@khaicleverley23 huh? Me? No la. Still in SG here. Haha.'), (8341, 2513, 'Johor Bahru, Johore', 'Reached home :D (@ Home Sweet Home ! ^^) http://t.co/CKOHZ2hv'), (8342, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Alaaaaa lupa lah.Haihhhh lainkali eh :P'), (8343, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz in the middle see what? :/'), (8344, 2500, 'Johor Bahru, Johore', 'instead of normal people looking like lady gaga on halloween, why not lady gaga follow us and just be normal #'), (8345, 1173, 'Plentong, Johor Bahru', 'baru lepas makan tapi kenapa lapar lagi? hmm daddy kata aida ni makin kuruslah Hish hish hish'), (8346, 2514, 'Pulai, Johor Bahru', 'Dinner. Lapaq niey. Nnt malam nk layan game #GGMU (@ Restoran Pinang Taman U (Ayam Penyek) w/ @irnain) http://t.co/bJnN2csQ'), (8347, 1961, 'Plentong, Johor Bahru', '@dayarazif tnye skrg la b4 aq tdo ni.haha'), (8348, 49, 'Johor Bahru, Johore', '@f_cukyou better be !! Teacher dere very gl some very good but I think ur course teach cui'), (8349, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa jum .bson ni ,'), (8350, 80, 'Johor Bahru, Johore', '@gric_95 hi awak...kekeke'), (8351, 1282, 'Johore, Malaysia', 'jumpa kawan lama (@ ClementiMall) http://t.co/0Q9jzosm'), (8352, 2515, 'Johore, Malaysia', 'Home. :) (@ Blk 101 Bedok North Ave 4) http://t.co/EPLtPTRZ'), (8353, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ I see. Who''s playing?'), (8354, 2403, 'Johore, Malaysia', 'UNRIDDLE 2 TRENDING!! OOHH!'), (8355, 1435, 'Johor Bahru, Johore', '@AndyLeeHY HAHA. Yalor ! Like dog !'), (8356, 972, 'Johor Bahru, Johore', '@Khylesnet fuck u lah.'), (8357, 553, 'Johor Bahru, Johore', '@Stefanus_Wong perhaps it was intentional? ;)'), (8358, 1959, 'Johor Bahru, Johore', '@WawaGilerh ask someone who is good at dnt not me cause I no need'), (8359, 551, 'Johor Bahru, Johore', '@RollingTheDeeps so if i play????u goin wat???whack me uh???'), (8360, 2452, 'Johore, Malaysia', '@GamirAlex patience is a virtue lang talaga :))'), (8361, 2516, 'Johore, Malaysia', 'Sticky date pudding with @cirqel and faizal! @ House of Robert Timms http://t.co/n4ivEhEi'), (8362, 2517, 'Johor Bahru, Johore', '@HaoToTweet4Fun idk sia.'), (8363, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz which Wesley teo? :o'), (8364, 1386, 'Johore, Malaysia', 'I''m at Esplanade - Theatres on the Bay w/ @meiyinftw http://t.co/X53HFOwW'), (8365, 2518, 'Johore, Malaysia', '^_^ food wine and good company http://t.co/NI9zD99a'), (8366, 2093, 'Singapore', '@blackheartesJ @niallofficial @louis_tomlinson @harry_styles @zaynmalik @real_liam_payne hahaha!'), (8367, 606, 'Johor Bahru, Johore', '@Charmiann should be bah if not wont no tai no Ji got free room de Mine is my dads friend card that''s why we go. My dad nb gamble de. Lol!'), (8368, 1469, 'Johor Bahru, Johore', '@harharhaa oh..i tot u all just finish...haha..so gonna zonk out?;)'), (8369, 1194, 'Malaysia', 'เข้าดงคลิป ไม่มีไรทำ แม่งงงง เบื่ออ ดูคลิปสองงพี่น้องดีกว่า เห้อออออ'), (8370, 2519, 'Johore, Malaysia', 'I''m at Blk 40 Telok Blangah Rise (Bukit Merah, Singapore) http://t.co/iVdPChbN'), (8371, 1961, 'Plentong, Johor Bahru', '@haseenaaunie oww yeah babiess.HAHA'), (8372, 2398, 'Riau, Indonesia', 'Delete tweet yang salah, malu ketauan begonya.'), (8373, 1837, 'Singapore', '@BABYITSZELO NAH MY WOOGYU LOL .'), (8374, 551, 'Johor Bahru, Johore', '@Shaminthatfreak bapak aku nyer worker'), (8375, 1686, 'Johore, Malaysia', '@dxnvlhvkxm sport b. dekat dalam isetannn.'), (8376, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz I''m just crapping *-*'), (8377, 1435, 'Johor Bahru, Johore', 'Such a good girlfriend I am &lt;: ~'), (8378, 1266, 'Johore, Malaysia', '@assortedbacon @choonhockbleh no uh. Never hong. If the guy really know how tc of his girl, other ppl no chance to hong.'), (8379, 2426, 'Johore, Malaysia', '@theKimberlySim Joyceeeeee ^^ Ask Jetaime~'), (8380, 551, 'Johor Bahru, Johore', '@Shaminthatfreak by'), (8381, 476, 'Johore, Malaysia', '@ian_suffian aku???'), (8382, 2020, 'Plentong, Johor Bahru', '@sayaPELANGY hehehe bagus2....'), (8383, 2520, 'Johore, Malaysia', 'Spend my day here . http://t.co/noHpF94d'), (8384, 2460, 'Johore, Malaysia', 'Many said i deserved better but if the better isnt you then i dont want it .'), (8385, 2521, 'Johor Bahru, Johore', 'I''m at Causeway Point (Singapore, Singapore) w/ 14 others http://t.co/fE3vmNh2'), (8386, 2482, 'Singapore', 'OMG!! PLEASE LA PEOPLE!! GIVE ME CHANCE!! :('), (8387, 13, 'Singapore', 'avicii is a bastard his music is a real earworm'), (8388, 2118, 'Singapore', '@mdnurhfz @MuhdFirman @chindixlovegood lol, Chachi tu budak NPCC.'), (8389, 2398, 'Riau, Indonesia', 'Di-unfollow karna nggak nge-foll-back.'), (8390, 25, 'Singapore', '@ian0396 You obsess with this girl alrdy ah...'), (8391, 859, 'Johor Bahru, Johore', '@CELINLEONG (: Gt watch unriddle2? :)'), (8392, 2398, 'Riau, Indonesia', 'Di-unfollow karna nggak nge-foll-back. [Like it? http://t.co/etyKdigi ]'), (8393, 1266, 'Johore, Malaysia', '@assortedbacon @choonhockbleh talking about hong zhabor, HONGSTER NEVER DIE, EUGENE CCB! LOLOL'), (8394, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg @SuparMarn IKRRRRRRRRRRRRR! Leye is everytime despo for stead one ._.'), (8395, 2522, 'Plentong, Johor Bahru', '@timfatimah tu laaa.. Ntah maner ilang'), (8396, 702, 'Johor Bahru, Johore', '@Babytiggerx disgusting* i once stepped onto one, and it''s arms stuck on the floor, lol!'), (8397, 1651, 'Pulai, Johor Bahru', '@erichafitrih euwwwwwwwwwwwwww. Geliiiii ~'), (8398, 2510, 'Johor Bahru, Johore', 'I get splashed by water. Hehe! It was fun btw xD I wanna go again pls :( http://t.co/afTPP04m'), (8399, 508, 'Johore, Malaysia', 'I''m at MOS Burger (Singapore, Singapore) http://t.co/3FSRIrL9'), (8400, 551, 'Johor Bahru, Johore', '@MansoorAdabi die tk kan angkat'), (8401, 687, 'Johore, Malaysia', '@ShafiqahRashid who ?'), (8402, 228, 'Johor Bahru, Johore', 'Bila nk sapedek!'), (8403, 2398, 'Riau, Indonesia', 'Lama nggak ngetweet bukan karena sibuk. Tapi karena nggak tau mau ngetweet apa.'), (8404, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz u go help her shave luh :p HAHA *-* girl leg got alot hair Erxin sia :o'), (8405, 535, 'Johor Bahru, Johore', 'shall plan a solo shopping hm, next month. enough splurging of money already.'), (8406, 2523, 'Johor Bahru, Johore', 'Hehe! I got selected for the freshmen camp! ☺'), (8407, 1435, 'Johor Bahru, Johore', '@AndyLeeHY . Pig where got smile dao like this !!'), (8408, 1154, 'Johore, Malaysia', 'I just ousted Peter F. as the mayor of Anderson''s of Denmark Ice Cream on @foursquare! http://t.co/DaP6B9Cn'), (8409, 2190, 'Johore, Malaysia', 'MRはシンガポール国内で募金を集めそれを迅速に被災地のためにつかう。\nその後口上は人種・国籍を問わないために\n\nfrom the hearts in Singaporeであって、from the hearts of Singaporeanとは言わないという。\n実に戦略的だ。'), (8410, 1784, 'Johor Bahru, Johore', 'Bad at skyrim ):'), (8411, 1369, 'Johore, Malaysia', '@bonccie hahhahahahahhahahahha adoi'), (8412, 1686, 'Johore, Malaysia', '@ErfanRahim ap sia yang kaya. lol. nanti satu hari aku ada duit. aku belanja kau satu baju. :)'), (8413, 2329, 'Johor Bahru, Johore', '@varicklee u forget bout me!!!'), (8414, 982, 'Johor Bahru, Johore', '@fernnny they just reach home.epic scene.carry porridge to another food court to eat..haha'), (8415, 2524, 'Plentong, Johor Bahru', 'dinner wif family... (@ Rawa Steambot) [pic]: http://t.co/JkpxhuDI'), (8416, 25, 'Singapore', 'Making my own dinner! First time!!'), (8417, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz o_o idk ma. Do I look like a girl? :/'), (8418, 2525, 'Johor Bahru, Johore', 'I''m at AMK Hub (Singapore) w/ 15 others http://t.co/Qjf6IVNU'), (8419, 2469, 'Kota Tinggi, Johore', 'I just ousted @zakirahjonas as the mayor of Fancl @ Jurong Point on @foursquare! http://t.co/CYkPKSKa'), (8420, 1956, 'Plentong, Johor Bahru', '@rikadiana_busri @ayubusri Sapa honey 2 ??'), (8421, 2426, 'Johore, Malaysia', 'OH FUUUUU, @PIGGGGLETS @WeRTallPeeple @WeRShortPeeple!! WE FORGOT TO TAKE PHOTO OF AVEA!'), (8422, 365, 'Johor Bahru, Johore', 'Wat clothes to bring ah? Sighs'), (8423, 1058, 'Johor Bahru, Johore', '@shawtypearl Like what, mind to share?'), (8424, 544, 'Johor Bahru, Johore', '#Siaoliao next time when I heard "dimple/pimple" I''ll laugh sia. @Evolruoyemllet_ thanks ah.'), (8425, 551, 'Johor Bahru, Johore', '@xXiao_Pangx @mansooradabi @mikailxplict05 love huang lei ah so hansem'), (8426, 606, 'Johor Bahru, Johore', 'Rhat conversation is making me LOL!'), (8427, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa hahaha ,tw xpe .hadiah dye ingt smpai ble2'), (8428, 2460, 'Johore, Malaysia', 'Taknak cakap lebih lebih lah nanti boleh jadi gado (:'), (8429, 445, 'Malaysia', '@maina_aloneชิสส~~'), (8430, 2526, 'Plentong, Johor Bahru', 'Makan seafood~ @nalluryq @emmelinemiley @this_is_prata and friends (@ Kimdo Restaurant (金都海鲜餐馆)) http://t.co/wNt7Uspg'), (8431, 2527, 'Johore, Malaysia', 'I''m at My awesome curb:) http://t.co/mdfr4Cv7'), (8432, 2528, 'Johore, Malaysia', '@Cayyseyy hahaha.... should hv call me to watch it but not w/ u... gd luck... is a nice movie... will u watch another time w/ your friends?'), (8433, 535, 'Johor Bahru, Johore', 'shopping alone has more 收获 than with friends. xD'), (8434, 2444, 'Plentong, Johor Bahru', 'To all 94''s,good luck okay for your SPM result.Okay I doakan korng semua :)'), (8435, 130, 'Plentong, Johor Bahru', '@dukefreaks yg remix ke yg ade tinnie tempah?'), (8436, 657, 'Johore, Malaysia', '@ZamerZahran @hahazaahir game GGMU ke?sorry la golek bz kerja la..suro mereka yg tidak ambil tahu je la tengok..hahaha'), (8437, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz I will spot u *-*'), (8438, 2529, 'Johore, Malaysia', 'I''m at Newton Hawker Centre http://t.co/3CF1nLb4'), (8439, 2426, 'Johore, Malaysia', 'FUUUUUUUUUU.'), (8440, 941, 'Johor Bahru, Johore', 'I find girls with glasses cute . And sexy . (:'), (8441, 1686, 'Johore, Malaysia', '@dxnvlhvkxm no lah.'), (8442, 2259, 'Pulai, Johor Bahru', '@therantingcurse okay(;'), (8443, 49, 'Johor Bahru, Johore', '@f_cukyou ya ya !! That time before I cut hair this hair de 1st day register they wan catch me and ask me cut hair or 5$ =.= thn I run away'), (8444, 771, 'Johore, Malaysia', 'Manager aku sewell . Tak tahan sia'), (8445, 2530, 'Johore, Malaysia', 'I''m at Marina Bay Link Mall (Singapore, Singapore) http://t.co/1OJnf49C'), (8446, 2350, 'Tanjong Kupang, Johor Bahru', 'Homey. (@ Kampung Paya Mengkuang) http://t.co/AF8chYYY'), (8447, 1875, 'Johor Bahru, Johore', '@derppp_ Yeah, or dailymotion. Puroresu, good shit. But not gonna watch in class anymore cuz I wanna focus.. Hahah Mdm Ng.'), (8448, 1656, 'Johor Bahru, Johore', '@BabyJoKyu thank you! Thank you! Big sis!! Hehehhe!'), (8449, 2503, 'Johor Bahru, Johore', '@yrotsreH I jus key in the password then go more services then I click on activate ATM card instead of activate debit card, then ok le~'), (8450, 513, 'Johor Bahru, Johore', 'Dead'), (8451, 496, 'Singapore', 'Nothing is impossible. The word itself says "I''m Possible!"'), (8452, 2481, 'Johore, Malaysia', '@EpsilonYeo KPKB. she give me smiley face. I give her also. XY can wait la.'), (8453, 2219, 'Singapore', 'I just realised that sweeping my hair to the left looks less messy xD'), (8454, 445, 'Malaysia', '@maina_alone เหมือนมากกกก'), (8455, 2333, 'Johore, Malaysia', '@jennifertehjw so many ! when you can !'), (8456, 771, 'Johore, Malaysia', '@tookitaway okay can :)'), (8457, 2510, 'Johor Bahru, Johore', 'I wanna go there again pls :&lt; soooo fun.'), (8458, 2531, 'Plentong, Johor Bahru', 'Shopping!! (@ The Zon) http://t.co/MmlQcjv4'), (8459, 2532, 'Johor Bahru, Johore', 'At khoo teck puat hospital naooo.'), (8460, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Elehh Isma tak ikut nak belikan buat apooooo?Hahaha'), (8461, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz :O PENGPENG TEO? :O HE SO AWESOME *-*'), (8462, 2460, 'Johore, Malaysia', 'Its better if i just shut and you do whats best for you ok ? *peace kat mata*'), (8463, 566, 'Johore, Malaysia', 'I''m at Circle Line MRT http://t.co/xeh4EchW'), (8464, 535, 'Johor Bahru, Johore', 'then again, what do i have to buy?'), (8465, 1462, 'Johore, Malaysia', 'Excited for later''s manutd leh :xxx'), (8466, 1174, 'Riau, Indonesia', 'The Segway tour is super duper fun! That''s us doing some major balancing. @ Palawan Beach, Sentosa http://t.co/tO4v2xkM'), (8467, 551, 'Johor Bahru, Johore', '@MansoorAdabi bespk ah,malam malam mane ade dentist'), (8468, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyEywan ap yg sedang belaku ??x tw x tw .'), (8469, 2533, 'Malaysia', '.......... (@ ร้านสบันงา(Saban-Nga Restaurant)) [pic]: http://t.co/VjVIlyUH'), (8470, 1101, 'Johore, Malaysia', '@Afifjefri Urm , ko try bukak pyzam . com .. Kat ctu bnyak background yg p0st dalam k0tak .'), (8471, 1266, 'Johore, Malaysia', '@ChoonHockBleh @assortedbacon NONO LOL. IT''S TRUEEEEE'), (8472, 2482, 'Singapore', 'OMG!!! TRIED MORE THAN 100.. DAFUG'), (8473, 1994, 'Singapore', 'http://t.co/wgU8nCOU'), (8474, 49, 'Johor Bahru, Johore', '@Vcolizious mango pudding haha'), (8475, 1435, 'Johor Bahru, Johore', 'Going malakka at 11 plus am tomorrow . Don''t think I can see baby the last time ...... ):'), (8476, 2477, 'Johore, Malaysia', '@Kayefattyhippo ginger , ohmygod are you sure you are going to do it by yourself!?!? it''s alittle been frightening..by yourself'), (8477, 1116, 'Johor Bahru, Johore', 'Lady GaGa was born this way.\nJustin Bieber was born to he somebody.\nI was born on my birthday :D'), (8478, 513, 'Johor Bahru, Johore', '@Jazelbellelknz semo Lai de !'), (8479, 206, 'Singapore', '#1YearAgo I was enjoying life in p6.'), (8480, 657, 'Johore, Malaysia', '@hahazaahir @syafiq_manutd07 lek la zahir nak fight dgn aku title king typo..hahaha'), (8481, 142, 'Johore, Malaysia', '@sleepyysam Be like me. Don''t ever change towards each other okay. I love you toooooo baby. ='')'), (8482, 771, 'Johore, Malaysia', '@inakayamgoreng kao bukan eh ? Oh . Lololol'), (8483, 2517, 'Johor Bahru, Johore', '@Poppyflossy 你还好吗 ?'), (8484, 1140, 'Johor Bahru, Johore', '@Jonathan5oh haha. Nothing luh just not in a mood. So many things to think about. Lol. #sadlife'), (8485, 106, 'Johor Bahru, Johore', '37.9'), (8486, 687, 'Johore, Malaysia', 'Kdg2 aku geli dgr kate2 kau . U hate fat bitch ? Oh well look into the mirror first . U use to be fat , bitch . Hahaha'), (8487, 2534, 'Malaysia', 'I''m at 1Shamelin Shopping Mall (Kuala Lumpur, WP Kuala Lumpur) http://t.co/76V0Evr1'), (8488, 2206, 'Johore, Malaysia', '#sincei''mbeinghonest i hate when people judge me whenever they wanna to.'), (8489, 2535, 'Johore, Malaysia', 'Tao huay queue is 5 shops long according to Kevin! (@ Old Airport Road Market and Food Centre w/ 11 others) http://t.co/tbV2H9fU'), (8490, 2536, 'Johore, Malaysia', 'I''m at O+ Victoria Entertainment@Mosque St http://t.co/1cFtwmX7'), (8491, 551, 'Johor Bahru, Johore', '@KohKohCruNchhh ok no prob'), (8492, 1837, 'Singapore', '@BABYITSZELO WOOGYU , MYUNGYEOL , YADONG , SUNGJONG WITH ME LOL .'), (8493, 228, 'Johor Bahru, Johore', '@raihanarusli who?'), (8494, 2118, 'Singapore', '@MuhdFirman @mdnurhfz @chindixlovegood TROLLOOLLLOL http://t.co/QEY7dckr'), (8495, 445, 'Malaysia', '@maina_alone เอร๊ยยยย เขินน้ะเว้ย!-()-'), (8496, 2537, 'Johor Bahru, Johore', 'Yummy!! Fish-head steam boat(: (@ Kenny Cafe Tampinese) http://t.co/3CGUwf1p'), (8497, 2402, 'Johor Bahru, Johore', '@EstelleSvana at fernvale?'), (8498, 206, 'Singapore', '#1YearAgo I was still single:P'), (8499, 2426, 'Johore, Malaysia', 'You''re online, but you''re not talking to me :X'), (8500, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs laa apesal taknak kerja sini dulu dengan afiq semua ?'), (8501, 600, 'Plentong, Johor Bahru', 'Dinner here (@ Restoran ZZ Sup Tulang) http://t.co/ecHoGGhy'), (8502, 1961, 'Plentong, Johor Bahru', '@haseenaaunie alrite babiess.HAHA'), (8503, 138, 'Johore, Malaysia', 'RT @trevina_pewpew: #2Lclassouting hahaha help to trend too yay ^^'), (8504, 2538, 'Johore, Malaysia', 'Oh hey dinner buddies! http://t.co/rFfsK9PA'), (8505, 2460, 'Johore, Malaysia', 'I wished you could turn back and take a closer look at us .'), (8506, 89, 'Johor Bahru, Johore', 'Ouch she actually bites D: RT @Parmesaancheez: "She doesn''t suck enough!" Seriously @jamesly123 maturity level 10 000. http://t.co/938Zegux'), (8507, 2193, 'Johor Bahru, Johore', '@richardperolina @airni28 @jasonhalago @jeddaumento @garybeyds pti c D''Antoni nasampal...'), (8508, 285, 'Singapore', 'These days its not enough just to say something, you''ve got to prove it too'), (8509, 2118, 'Singapore', 'I wonder who is the hell is Chachi, Aci mana they talk about?'), (8510, 2539, 'Singapore', '@lilnonibee chey chey da lupe nmpk?'), (8511, 1369, 'Johore, Malaysia', 'Test water pump di malam hari http://t.co/V7HfZrPI'), (8512, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg The ugly girl also dw him! Who want him sia xD'), (8513, 2202, 'Johore, Malaysia', 'Frogs legs w chicken essence @ Sin Huat Eating House http://t.co/2ODHwhMf'), (8514, 117, 'Johore, Malaysia', '@zomgitsnawar HAHAHA u gowith?'), (8515, 2540, 'Johor Bahru, Johore', 'Lets just stay here for as long as possible.. (@ Upper Seletar Reservoir ) http://t.co/CKxXh6nz'), (8516, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Busy buat ape enth.Keje ke?Tak kan?'), (8517, 1591, 'Johor Bahru, Johore', '@SARAtotheH where you check time table?'), (8518, 331, 'Johor Bahru, Johore', 'seniors graduating. :''( . they''re zhe best I''ve ever had. &lt;/3'), (8519, 2431, 'Pulai, Johor Bahru', '@hazyqsahar pentiru.pfftt.xpe,kena ada pemilihan wakil rumah sukan ah'), (8520, 1651, 'Pulai, Johor Bahru', '@erichafitrih apekahh?'), (8521, 156, 'Johore, Malaysia', '@limyuexiu my lao peh''s car manual I damn sad.'), (8522, 1266, 'Johore, Malaysia', '@assortedbacon @choonhockbleh nope! That one you ownself find out HAHAHAHAHA'), (8523, 551, 'Johor Bahru, Johore', '@Shaminthatfreak wanna be my chammak challo???'), (8524, 2202, 'Johore, Malaysia', 'Garlic shrimp. @ Sin Huat Eating House http://t.co/8adG6ld8'), (8525, 117, 'Johore, Malaysia', '@DionisQuek cheyy hahha'), (8526, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa shhhh .diam diam .haha'), (8527, 2330, 'Tebrau, Johor Bahru', 'Misses.'), (8528, 2477, 'Johore, Malaysia', 'today i''v seen the healthiest looking hair in the world , so beautiful silky thick and healthy'), (8529, 1693, 'Johore, Malaysia', 'I''m at Me Houseee!!!!! http://t.co/ErYqZ6ao'), (8530, 551, 'Johor Bahru, Johore', '@xXiao_Pangx huang lei follow me luh'), (8531, 2193, 'Johor Bahru, Johore', '@ygraine00 ngDuty n kyo..?'), (8532, 771, 'Johore, Malaysia', 'Terbalek kan coke ! Manager bising , Aku Ketawe , Dier tak sanggop , Dier suroh mop . Lol'), (8533, 371, 'Pulai, Johor Bahru', 'Pulang ke rumah setelah sekian lama (@ jalan pi 3/3, Taman Pulai Indah) http://t.co/GWOCinf4'), (8534, 1727, 'Johore, Malaysia', 'Dinner :) (@ People''s Park Complex) http://t.co/I1YOPTzB'), (8535, 1116, 'Johor Bahru, Johore', 'Lady GaGa was born this way.\n\nJustin Bieber was born to be somebody.\n\nI was born on my birthday :D'), (8536, 2541, 'Riau, Indonesia', '@agung_bright love u kebo :)'), (8537, 142, 'Johore, Malaysia', '@sleepyysam hahahahah you forever have secrets la baby. Your secrets all mcm shocking news gitu. Saturday jumpa bilang okay. Love kamu &lt;3'), (8538, 65, 'Singapore', 'TWITTER HANGED AGAIN-.-'), (8539, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims hihi sorry sorry :) pmr ? tade A pon dekk . just 2B :)'), (8540, 2330, 'Tebrau, Johor Bahru', 'Wish you were here.'), (8541, 2219, 'Singapore', '@XxslysoflyxX TROLOLOLOLOLOL! I forgot how to do already! xD'), (8542, 2542, 'Johore, Malaysia', 'just wanted to be friendly....'), (8543, 1462, 'Johore, Malaysia', 'Guangming is dead O_O'), (8544, 2500, 'Johor Bahru, Johore', 'why not use santan to eat cereal? afterall, its still milk right #wtf'), (8545, 2543, 'Johore, Malaysia', 'มาวันแรกก็จัดซะแล้ว 55555'), (8546, 10, 'Singapore', 'QN 7 now!'), (8547, 155, 'Johor Bahru, Johore', '╔╦╦\n╠╬╬╬╣\n╠╬╬╬╣OK! WHO ATE MY\n╠╬╬╬╣CHOCOLATE!?!?!!\n╚╩╩╩╝'), (8548, 2505, 'Johor Bahru, Johore', 'At Ang Mo Kio MRT Station (NS16) — http://t.co/6towR8CT'), (8549, 513, 'Johor Bahru, Johore', '@Jazelbellelknz Hao le !:)'), (8550, 2118, 'Singapore', 'I feel like lepaking at night right now. I feel like going to Mosque but semua tutup...'), (8551, 790, 'Johor Bahru, Johore', '@A_chubbycheeks HAHAHAHAAA IKR??? I TOLD MYSELF IM GNA WATCH IT ALL OVER AGAIN!!!'), (8552, 49, 'Johor Bahru, Johore', '@f_cukyou ya but u go sch ur teacher may catch .. See try let mah lo mine can abit. Abit only la lols'), (8553, 1961, 'Plentong, Johor Bahru', '@azamizahi23 die satu skola dgn bagong la tyme skola rendah'), (8554, 2512, 'Plentong, Johor Bahru', 'Slurpee satu.topup satu. (@ 7Eleven) http://t.co/iWPa4soy'), (8555, 2281, 'Johor Bahru, Johore', '@ButterJingers I think those top scorers and those highest ranking in each cca?'), (8556, 60, 'Singapore', '@popsywhoopsy you still remember the 3rd harm is what?'), (8557, 2256, 'Johore, Malaysia', '@StarsandDusts_ yeah, can never get sick of it :P'), (8558, 138, 'Johore, Malaysia', 'KOI queue long like shit'), (8559, 2206, 'Johore, Malaysia', '#sincei''mbeinghonest i hate Geography.'), (8560, 859, 'Johor Bahru, Johore', 'Dk Dylan rlly lost his memory anot. Think''s nt ba.'), (8561, 369, 'Johore, Malaysia', '@SherylAllyson he never tell me anything.'), (8562, 1686, 'Johore, Malaysia', '@dxnvlhvkxm pandaipandai ah kau guess. aku mals nak cakap.'), (8563, 771, 'Johore, Malaysia', 'What you waiting for ?'), (8564, 1266, 'Johore, Malaysia', '@likuhhein @assortedbacon @choonhockbleh LOLOLOL. COME, SALUTE + BOWWWW'), (8565, 65, 'Singapore', '@Widhiadarii idk, haha. katycat whud areu doin now? O_O'), (8566, 551, 'Johor Bahru, Johore', '@MansoorAdabi @mikailxplict05 tk pe bespk try,national dental care centre of outram park'), (8567, 702, 'Johor Bahru, Johore', '@Babytiggerx ahhahah! Feels nice doesnt it(: lol! Idk how long never see lizard &amp; cockroach at my house le.'), (8568, 2544, 'Johore, Malaysia', '@iotwse whyy?'), (8569, 2330, 'Tebrau, Johor Bahru', 'The pain is unbearable.'), (8570, 372, 'Johor Bahru, Johore', '@cha_lacap ayaw ko yung structure ng work.. Hahaha.. Wala kasing structure eh..'), (8571, 1554, 'Johore, Malaysia', 'Extra practice in #school tomorrow afternoon. Hols over. :('), (8572, 513, 'Johor Bahru, Johore', '@Jazelbellelknz 50bucks ty !:)'), (8573, 2545, 'Johor Bahru, Johore', 'Corridor at 622, nagpapahinga after jogging @ Ang Mo Kio Ave 9 Blk 620 Carpark http://t.co/LL0zzX7V'), (8574, 2460, 'Johore, Malaysia', 'People treated you like shit but you still care for them . #hatethisfeeling'), (8575, 1591, 'Johor Bahru, Johore', 'Fuck 291 bus la so long Liao still haven come. I wan watch unriddle!'), (8576, 1961, 'Plentong, Johor Bahru', '@dilaazie @haseenaaunie jgn brsangka buruk.hehe'), (8577, 2406, 'Johore, Malaysia', 'Jangjang :)'), (8578, 1349, 'Johore, Malaysia', '@xing_shing @sheslley @karlademoda @lkmariquit @rinabanana amo na gni supot nada! level up!!!'), (8579, 1466, 'Johore, Malaysia', 'Finally ipad received !!'), (8580, 1192, 'Johore, Malaysia', '@shanealv text me now!! WAnna talk abt tmr'), (8581, 1651, 'Pulai, Johor Bahru', '"@hazieqahhouda: Gilaa profile picture bbm wany!!!!!!!!!!!" Aku tahuu!!!!!!!'), (8582, 341, 'Johore, Malaysia', 'am so sleepy.'), (8583, 1108, 'Johore, Malaysia', 'GunZ is really fun. ;duh'), (8584, 1058, 'Johor Bahru, Johore', 'Dude, u look hot, just like William Hung. She bang! She bang!'), (8585, 2546, 'Johore, Malaysia', 'I''m at Blk 13 Marine Terrace http://t.co/yTp9m6SF'), (8586, 138, 'Johore, Malaysia', 'KOI too long , buy another bubble tea from another stall :3'), (8587, 1144, 'Johor Bahru, Johore', '@uMaDBr0 ok'), (8588, 961, 'Johor Bahru, Johore', 'judges showcase red bull bc one 2011 Sick! @sherwin0_0 @TIMOTHYBQ'), (8589, 513, 'Johor Bahru, Johore', '@Jazelbellelknz Yes ?:)'), (8590, 2547, 'Johore, Malaysia', 'Someone please tell me...how can I love chemistry?'), (8591, 260, 'Kota Tinggi, Johore', '@Baljit93 u nvr call me?'), (8592, 2509, 'Johor Bahru, Johore', '@jeslynLHJ news? Was watching tv and realized yoo-chun mum owned a gelato shop!! Telling sis suju shud open one too... Haha'), (8593, 2546, 'Johore, Malaysia', 'I''m at Rambu''s Crib http://t.co/0GI2ftkb'), (8594, 2094, 'Johore, Malaysia', '"All three had been made fatherless by the Great Patriotic War. All three had been raised by the men who had managed to avoid battle,...'), (8595, 1956, 'Plentong, Johor Bahru', 'Alhamdulillah, managed 2 shop at 1 go. Baru KR1M uols !!\n :)\n\nTotal: Rm 470 4 5 workers. Jimat huh !! http://t.co/atwS2igC'), (8596, 2094, 'Johore, Malaysia', '@ajmy get you! That RT makes you proper celeb that does :-)'), (8597, 771, 'Johore, Malaysia', 'RT @HarryHid: I know you somewhere out there somewhere far away. I want you back.'), (8598, 1440, 'Johor Bahru, Johore', 'Again... You''re making me feel worse.... Why do you even go online while you''re not even active?'), (8599, 1108, 'Johore, Malaysia', 'A little bit headache like that. :\\'), (8600, 1266, 'Johore, Malaysia', '@ChoonHockBleh @assortedbacon go la nobody stopping you also LOL'), (8601, 60, 'Singapore', '#nowplaying wind blow by gayoon.'), (8602, 25, 'Singapore', '@TetsuNeo hahaha next time shepherding i cook for you! :P'), (8603, 2094, 'Johore, Malaysia', 'Ôther than some Singaporeans; a few Russians &amp; possibly me, really very few people in this town have a true sense of style. Tristesse'), (8604, 2094, 'Johore, Malaysia', '"....the violent, dour second-tier men their mothers brought home out of brutal loneliness" - I''m in love with Shteyngart''s literary voice'), (8605, 2145, 'Singapore', '@alisyahamran Charging maam~ sure bo?'), (8606, 130, 'Plentong, Johor Bahru', 'Duke yayangs tu bukan lagu Noisia tu lagu Tinie Tempah. Malasnya nye aku mention kau. Penat melayan .___.'), (8607, 2549, 'Johor Bahru, Johore', 'Where''s my suited yellow bebe top! *crys* #bebe #leopardscarf @ Seletar Hills Estate http://t.co/KZrKMkkf'), (8608, 1769, 'Plentong, Johor Bahru', 'assalamualaikum new followers . jum tweet-2 . sifat sombong tiada dalam diri saya :)'), (8609, 551, 'Johor Bahru, Johore', '@ohmysunnyness of cpurse'), (8610, 1196, 'Johore, Malaysia', 'Bir hitam 6kis.. Roko 3 bungkus.. Cukup buat temani malam panjang ini.. http://t.co/Wl41yaOv'), (8611, 2454, 'Johor Bahru, Johore', '@naihpos Tu ler.. We happen to open our door at that time..n shai saw them looking at our hse 1 kind..'), (8612, 2550, 'Johore, Malaysia', 'I''m at Takashimaya Department Store (Singapore, Singapore) w/ 4 others http://t.co/iHr7FQdl'), (8613, 2551, 'Singapore', 'Be yourself and i promise people will enjoy it, and if they don''t FORGET THEM :P'), (8614, 1946, 'Johore, Malaysia', 'I''m at Udders (Singapore, Singapore) w/ 6 others http://t.co/cENGN4m3'), (8615, 2154, 'Johor Bahru, Johore', 'I''m at Shi Ting''s Castle :-) http://t.co/J8fVVqf7'), (8616, 25, 'Singapore', '@ian0396 what happen to her? :o'), (8617, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Merayap je keje.Cuba dduk rumah mcm anak dara sikit........Hahaha'), (8618, 2072, 'Kota Tinggi, Johore', '@chanel_branded lol, that time you all laugh until so loud. The swing not hot? Soccer fun'), (8619, 716, 'Johor Bahru, Johore', '@tripodmonster Whyy lehh? :O'), (8620, 2552, 'Johore, Malaysia', 'I''m at VivoCity (Singapore, Singapore) w/ 27 others http://t.co/EWcfq3y3'), (8621, 308, 'Johore, Malaysia', 'Eh why the indoor sports hall keep playing SNSD 2nd tour solo items de song?! Almost, lady marmalade and don''t stop the music'), (8622, 657, 'Johore, Malaysia', '@hahazaahir @syafiq_manutd07 sebab santau ko xcukup kuat nak sembuh kan penyakit berjangkit aku ni..hahaha,kongsi la dgn golok sekali..haha'), (8623, 506, 'Johore, Malaysia', 'I''m at Rochor Original Beancurd (梧槽豆花水) (Singapore, Singapore) w/ 2 others http://t.co/hg4tpBaM'), (8624, 1058, 'Johor Bahru, Johore', '@shawtypearl Yea sure, sat confirm?'), (8625, 898, 'Johore, Malaysia', 'I''m at The Gym At Orchard . http://t.co/VMbumdGq'), (8626, 1985, 'Johore, Malaysia', 'I''m at Crystal Jade Kitchen (Singapore) http://t.co/IMY3wEJd'), (8627, 2206, 'Johore, Malaysia', '#since''mbeinghonest i love you like i never loved before.'), (8628, 25, 'Singapore', '@TetsuNeo hahaha sure! (:'), (8629, 554, 'Johore, Malaysia', '@kellylilin Whhhh-at?! How are you evil?'), (8630, 2219, 'Singapore', '@XxslysoflyxX Need to ask @Josxeff before he transfers!'), (8631, 702, 'Johor Bahru, Johore', 'The more i watch Unriddle 2, i hope they got ressurection in it. Lol, so many people die liao!'), (8632, 130, 'Plentong, Johor Bahru', '@dukefreaks http://t.co/vbxrBwpN ni ka?'), (8633, 2177, 'Kota Tinggi, Johore', '@izyoboyDjP last tuesday ata un.hehe'), (8634, 513, 'Johor Bahru, Johore', '@Jazelbellelknz Eeee !! 25 la !!'), (8635, 228, 'Johor Bahru, Johore', '@raihanarusli @norshafiq_kawan LOL, okok. I will'), (8636, 2553, 'Johor Bahru, Johore', 'Crime fighting has a new vehicle. The tipper truck was so passé @ Jurong Junior College http://t.co/5eTblVFB'), (8637, 2475, 'Johor Bahru, Johore', '@ohkayne see you there then.'), (8638, 551, 'Johor Bahru, Johore', '@MansoorAdabi @mikailxplict05 try try je kgn tan ui\nmoi ang kat sudah'), (8639, 2347, 'Johore, Malaysia', '@zixity you tell the rest ahh. Or you can just go with me ^^ hahahhahahah'), (8640, 156, 'Johore, Malaysia', '@limyuexiu Hahahah forced to.'), (8641, 65, 'Singapore', 'Someone please Whatsapp Me. Thanks. Bored till death'), (8642, 2554, 'Johore, Malaysia', 'Dinner. :) (@ Umi Sushi @ Holland Village MRT) http://t.co/2QssqqBT'), (8643, 2177, 'Kota Tinggi, Johore', '@nixxxy secret!!hehe'), (8644, 1150, 'Johor Bahru, Johore', 'I''m at West Mall (Singapore, Singapore) w/ 9 others http://t.co/MssH5ipm'), (8645, 206, 'Singapore', '@DioneKoh @foreverrandom1D *extra* titanic?:D'), (8646, 513, 'Johor Bahru, Johore', '@Jazelbellelknz ask him for what?:)'), (8647, 2444, 'Plentong, Johor Bahru', 'Mcm ada harapan dngn Mr.Right je.Kau?Hahaha kalau aku suka kau pun kau mmng tkthu.K lahhh boii :P'), (8648, 859, 'Johor Bahru, Johore', '@Kerlynna So sweet of ur bf! (:'), (8649, 2555, 'Johor Bahru, Johore', '@bJiaYi yeah wtf , sorry couldn''t go out); I fainted . ):'), (8650, 790, 'Johor Bahru, Johore', '@A_chubbycheeks HAHAHAHAHAHAAA HOPE HE WILL WATCH!! HEHEHEE He''s busy studying... LOL'), (8651, 138, 'Johore, Malaysia', 'Sian la. The other shop no more pearl zz'), (8652, 2252, 'Johor Bahru, Johore', '@HeyEywan shafiq kn nan afifa liyana a.k.a epa .hahaha .kn @DayanggSyafiqa'), (8653, 2419, 'Johor Bahru, Johore', 'Haiyoooo so troublesome can. T.T'), (8654, 1646, 'Johor Bahru, Johore', 'I''m at Hougang Central Bus Interchange (Singapore, Singapore) w/ 2 others http://t.co/VidW3TcH'), (8655, 173, 'Johore, Malaysia', '@PDA_yan National! And the one in Yishun'), (8656, 2406, 'Johore, Malaysia', 'Bloody court order , eat my shit ! Sighs'), (8657, 3, 'Johor Bahru, Johore', '@Edwininja shiok eh?'), (8658, 2556, 'Johore, Malaysia', 'Nakikicharge ng laptop at cp. poor me (at Starbucks @ 313 Somerset) [pic] — http://t.co/H38kcW15'), (8659, 2557, 'Malaysia', '@PassPortSmily ไปคอนหรอ พี่พาส ?'), (8660, 551, 'Johor Bahru, Johore', '@Shaminthatfreak besok aku blanje kau'), (8661, 117, 'Johore, Malaysia', '@zomgitsnawar bojio. Hhhahahahah'), (8662, 2558, 'Johore, Malaysia', 'Faking a smile is easy even i can do it... http://t.co/pC0byLDz'), (8663, 1651, 'Pulai, Johor Bahru', '@hazieqahhouda hahahah gila sangat!!!'), (8664, 2559, 'Johore, Malaysia', '@msvaleriejoy are u ok?'), (8665, 186, 'Johore, Malaysia', 'Heartless.'), (8666, 1144, 'Johor Bahru, Johore', 'I hate metal calculation'), (8667, 2072, 'Kota Tinggi, Johore', 'HEAT lose to BULLS ....'), (8668, 1286, 'Johore, Malaysia', 'I''m at ION Orchard (Singapore, Singapore) w/ 16 others http://t.co/PMtFV4y0'), (8669, 69, 'Johore, Malaysia', 'So, what does this mean to you? • Climate Change affects everyone and everything. http://t.co/MVDRecuG'), (8670, 2560, 'Johor Bahru, Johore', '@JuzSomeGuy_ play the drawing game with me ley!!!!'), (8671, 1624, 'Johore, Malaysia', 'I''m at 81 Dickson Hotel http://t.co/rnVcOVI1'), (8672, 2552, 'Johore, Malaysia', 'I''m at Sky Park w/ @tiqtiqtiq http://t.co/YVVJpmPN'), (8673, 2561, 'Johor Bahru, Johore', 'Wohoo! My holidays coming! ^^ holidays full of activity. Busy man! ;)'), (8674, 2562, 'Johore, Malaysia', 'Left4dead!! (@ SAFRA Jurong) http://t.co/m2Dp2THq'), (8675, 2563, 'Plentong, Johor Bahru', 'Seekers kena rasuk. K seram bongok'), (8676, 1116, 'Johor Bahru, Johore', '@TeerapolNeuweg4 shut up'), (8677, 65, 'Singapore', 'Why are there so many one Directioners in Singapore. Why not katycats-_-'), (8678, 2503, 'Johor Bahru, Johore', '@yrotsreH oh ok~ cause I also try 2 times to activate debit but cannot, so I tried activate ATM card then ok le~maybe u try again ltr ba~'), (8679, 1651, 'Pulai, Johor Bahru', '@erichafitrih tidak kenapa kenapa...'), (8680, 138, 'Johore, Malaysia', 'Sua i drink water'), (8681, 2460, 'Johore, Malaysia', 'Just treat her right and she''ll treat you two times better .'), (8682, 49, 'Johor Bahru, Johore', '@Vcolizious lols !! I wanna try mango pudding'), (8683, 2532, 'Johor Bahru, Johore', '@Helmi_mokish because of Chee Koon! Tu pasal stress!?!?'), (8684, 1875, 'Johor Bahru, Johore', '@derppp_ My maths is okay. I just need to practice occasionally so I don''t forget the stuff. My maths teacher is fucking awesome'), (8685, 1846, 'Johore, Malaysia', '“@PINOY_QUOTES: Hindi porket sinabihang ka ng INGAT, eh concern na sayo? Di ba pwedeng alam niya na TANGA ka lang!”@Akosi_Emong @agila_28 :)'), (8686, 130, 'Plentong, Johor Bahru', 'Justin Bieber ni makin beso makin sedap pulak lelagu pehal? Kau nak suruh aku suka kau? Okkay dah suka~ Sikit je k?'), (8687, 1023, 'Johor Bahru, Johore', '@darrylpingg no , my life is cui'), (8688, 2323, 'Riau, Indonesia', '@akimalam_tvone kalo tanpa kekerasan mana ada artinya . Mike saja dirampas Polisi , Brimob menyerang Kantor HMI , Foto dibakar karena kecewa'), (8689, 2219, 'Singapore', '@XxslysoflyxX That''s the 60 minute warm down... We need a pre warm up, then a warm up, then a pre work out, then a work and finally...'), (8690, 1539, 'Johore, Malaysia', 'Haha okay lah :) RT @spellxsolar: @SuperKidJunior Can you pls stop calling me by my tweet name Mr Super kid Junior. Hahaha!'), (8691, 2564, 'Johor Bahru, Johore', '@moomoonie @zrnrhm @SamSwizzy8089 Ahhhhhhhhhhh meatballsssssss!'), (8692, 581, 'Johor Bahru, Johore', '@RattleUrbone_ yah need take bus.'), (8693, 2292, 'Johore, Malaysia', 'Zzzzz why twitter anyhow follow ppl for me.'), (8694, 1780, 'Johore, Malaysia', 'COOKIES AND CREAM ICE CREAM (@ NTUC FairPrice @ Dover) http://t.co/zQ7s59SP'), (8695, 2026, 'Johor Bahru, Johore', 'I''m at Marymount MRT Station (CC16) (Singapore, Singapore) http://t.co/sKLh3CwC'), (8696, 544, 'Johor Bahru, Johore', 'I don''t know which but I''m so tired today. Weird.'), (8697, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Bapak ahhhhh xD Hahahaha ayat takboleh go'), (8698, 2281, 'Johor Bahru, Johore', '@ButterJingers not sure, maybe? Haha'), (8699, 2006, 'Johor Bahru, Johore', 'Going home !'), (8700, 331, 'Johor Bahru, Johore', 'tired. ):'), (8701, 2565, 'Malaysia', '=0= (@ sc heritage hotel) http://t.co/iAKExNVM'), (8702, 2555, 'Johor Bahru, Johore', '@Wenxinzxczxczxc cheer up!);'), (8703, 1875, 'Johor Bahru, Johore', '@belindadrs Ya, cuz I''m a good Samaritan! Ah, tapi cuma ada sampe reliability kayaknya'), (8704, 196, 'Johore, Malaysia', '@ohhliveer @PoChopper i also wanna play'), (8705, 65, 'Singapore', 'I really really miss CDT . I &lt;3 @katyperry . Ur my life forever.!!!!!!!!!!'), (8706, 1435, 'Johor Bahru, Johore', 'Can''t bear to leave him.'), (8707, 2566, 'Kota Tinggi, Johore', 'Stomach pain'), (8708, 2567, 'Johor Bahru, Johore', '@gwelmo @xyleee_kfh revenge :) http://t.co/r4ztV4Sx'), (8709, 2568, 'Johore, Malaysia', 'I''m at Tanglin Halt Market (Commonwealth, Singapore) http://t.co/jqztcWx5'), (8710, 1173, 'Plentong, Johor Bahru', 'gosok baju sch ~~'), (8711, 2219, 'Singapore', '@XxslysoflyxX So true... He''ll look like Osama... With a whole lot of fats xD'), (8712, 2569, 'Johor Bahru, Johore', 'I''m at Causeway Point w/ @nurinaxzcs_ http://t.co/Zk3xb5Br'), (8713, 2118, 'Singapore', '@chindixlovegood @muhdfirman @mdnurhfz True enough, the hair is difference, the similarity is the eyes and smile....'), (8714, 2206, 'Johore, Malaysia', 'Hahahaha yay!'), (8715, 2503, 'Johor Bahru, Johore', '@yrotsreH it''s ok la~ take ur time~ if really cannot go bank ask~'), (8716, 621, 'Pulai, Johor Bahru', 'I''m at Rs Badminton Court http://t.co/90aJAGwF'), (8717, 2558, 'Johore, Malaysia', 'Bored... TTM!!! :P http://t.co/z1xPbYjv'), (8718, 2570, 'Johore, Malaysia', 'Forever a fan of Highlanders ;) (@ Highlander Bar &amp; Restaurant) http://t.co/M83jrASO'), (8719, 771, 'Johore, Malaysia', 'I wanna see your peacock !'), (8720, 657, 'Johore, Malaysia', '@hahazaahir @ZamerZahran Semangat bandar London la bro..hahaha..hidup London boleh jalan bandar Manchester..hahaha'), (8721, 2571, 'Johore, Malaysia', '@itsMe_cHickLet musta dockie?'), (8722, 2572, 'Johore, Malaysia', 'I at Bugis eating with Kellie, Julianne and trini :)'), (8723, 1194, 'Malaysia', 'ดีเหมือนกัน แม่ให้พิมพ์งานให้ เบื่อ เซ็งวันนี้ งือออออออออออออออ'), (8724, 2541, 'Riau, Indonesia', '@Rhyrien_emofag woyy'), (8725, 49, 'Johor Bahru, Johore', '@f_cukyou ermmmmmmmm idk ah ~ haha !! U better don mix with wrong ppl hor !! I think that course a lot guai guai de'), (8726, 2331, 'Johore, Malaysia', 'マンゴ・プディングゥー \nデザートなう! 器がオシャレになった http://t.co/k2937MOK'), (8727, 2259, 'Pulai, Johor Bahru', '@MeiZhen_BLAH YUPP!'), (8728, 2476, 'Pulai, Johor Bahru', '1st time mkn kat sini.. (@ Ateh Corner Taman Universiti) http://t.co/xQq7TxFd'), (8729, 2573, 'Johore, Malaysia', 'I went to see ''The Lady'' with my classmates! I didn''t know it was the film about Aung San Suu Kyi! アウンサンスーチーさんの映画って知らなかった!(^^; 感動でした!!!'), (8730, 544, 'Johor Bahru, Johore', '@Evolruoyemllet_ haha!!! Mainland! Lol, evil me.'), (8731, 551, 'Johor Bahru, Johore', '@MansoorAdabi @mikailxplict05 kok chuan'), (8732, 2118, 'Singapore', '@_Eqraq oh like that.......'), (8733, 1961, 'Plentong, Johor Bahru', 'skrg aq agak lampi -,-'), (8734, 657, 'Johore, Malaysia', 'ok..RT @NazurahMN: Kau tak penting pon dalam hidup aku .'), (8735, 65, 'Singapore', '@Widhiadarii HAHa. yeah. -_- Im bored-_-'), (8736, 2574, 'Riau, Indonesia', '@kaniaamaliaa kenpa ?'), (8737, 1711, 'Johor Bahru, Johore', 'Hrcfptyffytduana.$•!?^%'), (8738, 267, 'Johore, Malaysia', 'An Idiot Aboard on TLC again, should be called two fuckwits in an office'), (8739, 551, 'Johor Bahru, Johore', '@Shaminthatfreak band'), (8740, 2575, 'Johore, Malaysia', 'Super duper late! (@ La Nonna) http://t.co/kXXgBxlP'), (8741, 49, 'Johor Bahru, Johore', '@Vcolizious u treat ah ? Hahaha !! Kkays !! Find one say go try'), (8742, 1247, 'Johore, Malaysia', '@S3R1zawa omg no!! I can''t help it if\nI naturally sound sarcastic ):'), (8743, 554, 'Johore, Malaysia', '@Okuno_Mike @Liminny around 4-5+ in the evening .. gonna rain..'), (8744, 65, 'Singapore', '@isedro96 Yeah. U have Whatsapp?O.o'), (8745, 1711, 'Johor Bahru, Johore', 'Guc'), (8746, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims hihi aminamin . doakan akak eaaa :)'), (8747, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo so jack esok kau tk naik basikal arh'), (8748, 2503, 'Johor Bahru, Johore', 'Unriddle 2 - ing now^^'), (8749, 38, 'Johor Bahru, Johore', 'Thanks Samuel for shaving my leg and looks like damn shit now. Thanks a lot. =3='), (8750, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg Who like him sia! xDDD'), (8751, 2577, 'Johor Bahru, Johore', 'I''m at Joy''s residence  http://t.co/CHxcixF1'), (8752, 115, 'Johor Bahru, Johore', 'Bye bye nails &gt;: http://t.co/Fwnvn6HZ'), (8753, 26, 'Johore, Malaysia', '@intanladyana mama kenapa mama taknak reply tweet papa lagi? mama majok nan papa eh? mama da tk syg papa lagi eh? :('), (8754, 2460, 'Johore, Malaysia', 'Being there for someone cause you kno how it feels like when no one''s there for you .'), (8755, 2049, 'Johore, Malaysia', '@thirteenpapers @astr0trek18 Rofl~ haha!!! rem ah~ tml'), (8756, 252, 'Johor Bahru, Johore', 'I''m at White Sands Shopping Centre (Singapore, Singapore) w/ 4 others http://t.co/RhG7ta5k'), (8757, 1769, 'Plentong, Johor Bahru', '@syiemah hihi best laa jugek :)'), (8758, 5, 'Johore, Malaysia', 'RT " @Meerahsaywhaat ; I get irritated with ppl who reply me k . "'), (8759, 771, 'Johore, Malaysia', 'Actually kan , I tak mean to hurt people but sometimes its just on impulse . Lol .'), (8760, 2560, 'Johor Bahru, Johore', 'Rui en din mean it..:('), (8761, 2460, 'Johore, Malaysia', 'Yes im selfish i dont share my man . Its either me or her .'), (8762, 2578, 'Plentong, Johor Bahru', 'I''m at 彩虹小贩中心 http://t.co/bxiP0DXr'), (8763, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyEywan cite da lme .x baek ungkit balik .haa .lol .siot kw dayang kne kn aq .'), (8764, 2475, 'Johor Bahru, Johore', '@sandraTLC ice cream for supper tonight then?'), (8765, 1539, 'Johore, Malaysia', '@xoxonas Sorryyyyyyy! I''m so gonna be late    Lol! On the way now in the '), (8766, 2426, 'Johore, Malaysia', 'I die also dont want you uh -.-'), (8767, 269, 'Johore, Malaysia', 'if this is what you meant when u tell me to be strong, oh Allah, give me the strength...'), (8768, 1192, 'Johore, Malaysia', '@shanealv aww.. So sad. I heading kovan tmr. Thought of askin u as well'), (8769, 80, 'Johor Bahru, Johore', '@amyline95 grrr... hmm aku okey je..hahahahahhaha...yeah x phy blajo add math'), (8770, 513, 'Johor Bahru, Johore', 'Rui en calm down !'), (8771, 1686, 'Johore, Malaysia', '@ErfanRahim zzzzzzzz. hahhaaa. tengok lah. kalau aku ada duit. kalau tak satu hari bila aku dapat duit aku ajak kau kay? :)'), (8772, 961, 'Johor Bahru, Johore', '@keithngjihyuk is lucid dreaming scary?'), (8773, 130, 'Plentong, Johor Bahru', 'Tak sedap. Ade unsur dubstep. Tak suka. Trendy sangat! Tak suka. Panadol kejap! Tak suka lah!'), (8774, 1781, 'Johor Bahru, Johore', 'I''m at Pending LRT Station (BP8) (Singapore, Singapore) http://t.co/Qv55VAk9'), (8775, 117, 'Johore, Malaysia', '@zomgitsnawar why , cannot eh HAHA'), (8776, 2579, 'Plentong, Johor Bahru', 'I''m at Salsabila Shissa Lounge (Johor Bahru) http://t.co/je2JZ5yF'), (8777, 921, 'Johor Bahru, Johore', 'I''m at D-Xeshnon Crib http://t.co/9JghKbrD'), (8778, 2557, 'Malaysia', '@PassPortSmily อังกอร์คืออะหยัง ?'), (8779, 173, 'Johore, Malaysia', 'He likes it up his arse RT @NYQYQ: Omg the back of this boy''s shirt says "I suggest you take the stairs." Is this a sign.'), (8780, 2237, 'Johore, Malaysia', 'Da fug ! I and keigi totally forgot about\nThe movie we wanted to buy as we happily chatted'), (8781, 832, 'Johor Bahru, Johore', 'Today I late for 45 minutes man..'), (8782, 2237, 'Johore, Malaysia', 'while queuing in the\nEnd I used the time to say the show LOL'), (8783, 513, 'Johor Bahru, Johore', 'Wa chua tio I thought she really shot Dylan !'), (8784, 478, 'Johore, Malaysia', 'Humans are complicated. So am I.'), (8785, 2420, 'Johore, Malaysia', 'Fetch'' boss'' (at Ministry of Foreign Affairs) — http://t.co/wafheaVK'), (8786, 2564, 'Johor Bahru, Johore', '@jowenn the mashed potatoes! And chicken of course! Omg! Yummmmmmms!'), (8787, 117, 'Johore, Malaysia', '@dubstepunicorns @paperdrizzle i already died inside.'), (8788, 2193, 'Johor Bahru, Johore', '@Jeddaumento @richardperolina @airni28 @jasonhalago @garybeyds bring Phil..!!!'), (8789, 2171, 'Johore, Malaysia', '@ammarliomilo @zhxrxxf arh2 naik'), (8790, 206, 'Singapore', '@DioneKoh @foreverrandom1d xDDDD'), (8791, 2219, 'Singapore', '@XxslysoflyxX Double cheese burgers would drop out of the towel thingy xD'), (8792, 1959, 'Johor Bahru, Johore', 'You first said that You liked my cousin den later you say you like dun like super childish, Wake up your mind ! Dun playing wif his feelings'), (8793, 771, 'Johore, Malaysia', 'I nak beat customer nie sume lah ! Tady taknak datang !'), (8794, 1247, 'Johore, Malaysia', 'Kena jack. Mom delay so much until I have to come back tomorrow to do my brows . Fk maaaan.'), (8795, 2291, 'Johore, Malaysia', '@_Fangyo GO !'), (8796, 2580, 'Johor Bahru, Johore', 'We at singapore zoo @emirqis @ Singapore Zoo http://t.co/dGqRFoUH'), (8797, 142, 'Johore, Malaysia', '@sleepyysam I won''t ever baby. Never will. Hahahah Loving what hunn? =)'), (8798, 2252, 'Johor Bahru, Johore', '@HeyEywan @DayanggSyafiqa kw baek nan dye x kn la x tw dye nan epa ,haa'), (8799, 65, 'Singapore', 'RT if you luv @katyperry awesome smile (:'), (8800, 544, 'Johor Bahru, Johore', '*why'), (8801, 2481, 'Johore, Malaysia', '@EpsilonYeo See how lor.'), (8802, 1185, 'Johor Bahru, Johore', '@teddypot bilis! Hehe. magpareserve na tayong seats sa friday! Want to join us? @iamonboycott'), (8803, 130, 'Plentong, Johor Bahru', '@dukefreaks mari kedai jap!'), (8804, 2118, 'Singapore', 'Kata Rasulullah,malam jum’at itu ribuan malaikat turun kebumi untuk mengambil do’a-do’a nya orang mukmin untuk dihadapakan kepada Allah SWT'), (8805, 1781, 'Johor Bahru, Johore', 'I''m at Little Bee''s Hive (Bukit Panjang New town, Bukit Panjang) http://t.co/VZ67fiAY'), (8806, 850, 'Johor Bahru, Johore', '@Harrizontal so fast!!? Wtf? Ur ezlink card pic is passport pic? Hahahah.'), (8807, 2581, 'Johore, Malaysia', '@chrischansaura ang alin gah daw? ahaha..'), (8808, 1198, 'Johor Bahru, Johore', 'I''m at Caleb''s Home http://t.co/U7HzrdSZ'), (8809, 2582, 'Johore, Malaysia', '@YrUglyFace like shit'), (8810, 551, 'Johor Bahru, Johore', '@Shaminthatfreak kol'), (8811, 2555, 'Johor Bahru, Johore', 'Gotta start eating enough. Don''t wanna faint again ):'), (8812, 2583, 'Johor Bahru, Johore', '@Raainnboww @suzyzan11 i want yoo jin with jiyeon. Dunno why lololol'), (8813, 1106, 'Johor Bahru, Johore', 'http://t.co/NsArGk2y'), (8814, 130, 'Plentong, Johor Bahru', '@zulfahmiabidin bukaaannn! bukaaannn!!!'), (8815, 196, 'Johore, Malaysia', '@ohhliveer @PoChopper OPPPS! BYE! I JET PACK!'), (8816, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Dh lh malas nak gaduh.K menanglahhh Tahniahhh :D'), (8817, 1656, 'Johor Bahru, Johore', '@BabyJoKyu hahahaha! I upgraded my plan Liao! To iPhone plan!! Hehehe! Why like u super shock? Hahaha! But then I miss my china one!! Hehe'), (8818, 2495, 'Johor Bahru, Johore', '@backtofive who! Whr?!'), (8819, 1371, 'Johor Bahru, Johore', 'I''m at SHINee''s Dorm http://t.co/HADnkycK'), (8820, 1904, 'Plentong, Johor Bahru', '@ridzuan_dzakir Ah majuk majuk!'), (8821, 65, 'Singapore', '@isedro96 lol. wanna chat on Whatsapp?'), (8822, 2584, 'Singapore', 'kok bl d sms ?? RT @abaytesen Y aygun sipp! Gmpang tu... RT @siraden_wardana'), (8823, 2407, 'Plentong, Johor Bahru', 'alice in wonderland'), (8824, 487, 'Johore, Malaysia', '@SanJ_ya NICE SONG! NICE SINGERS TOO'), (8825, 2460, 'Johore, Malaysia', 'Dgn matair pon mengire menyampah aku . Takya matair suda lah .'), (8826, 1903, 'Kota Tinggi, Johore', '@adrenaaa Hahas ! Abit weird if I put there lol !'), (8827, 1930, 'Johore, Malaysia', '不搭leh (at 星和海南雞飯 Uni Star) [pic] — http://t.co/JyN1ipXG'), (8828, 26, 'Johore, Malaysia', 'aku tknk jaket bola la aku nk seluardalam bola! @JacketPromo @jacketdrove'), (8829, 2323, 'Riau, Indonesia', '@akimalam_tvone Kalau mahasiswa sdh turun ke jalan , jangan harap seragam coklat bisa membendung mereka . Koq anggota KBPPP setuju BBM naik'), (8830, 2219, 'Singapore', '@XxslysoflyxX It''s called Euro Training...'), (8831, 2118, 'Singapore', '@ShaShiza oh ok.....interesting...'), (8832, 2560, 'Johor Bahru, Johore', '@__DontBlink you''re thinking too much la!'), (8833, 2586, 'Indonesia', 'im indonesian'), (8834, 544, 'Johor Bahru, Johore', '@Evolruoyemllet_ you more evil la!'), (8835, 1651, 'Pulai, Johor Bahru', '@erichafitrih ape benda kauu?'), (8836, 2583, 'Johor Bahru, Johore', '@Raainnboww @suzyzan11 nxt week'), (8837, 331, 'Johor Bahru, Johore', 'shall put myself to sleep. with songs otp on.'), (8838, 1904, 'Plentong, Johor Bahru', '@syaminebellina Peh.. Apa pulak tak berani! Ila ni!'), (8839, 2587, 'Johore, Malaysia', '@PoniesAndApples HAHAHA JIAYOU:) ITS NOT THAT HARD'), (8840, 1420, 'Johore, Malaysia', 'Simply amazing....... @ Mosaic Music Festival http://t.co/QqWIPGTm'), (8841, 2582, 'Johore, Malaysia', 'OH GOD LEG ACHE'), (8842, 712, 'Plentong, Johor Bahru', 'I''m at Danga City Mall (Johor Bahru, Johor) w/ 3 others http://t.co/xeZjbRUB'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (8843, 1562, 'Johor Bahru, Johore', 'I''m at Ang Mo Kio MRT Station (NS16) (Singapore, Singapore) w/ 4 others http://t.co/F9p22aFS'), (8844, 2426, 'Johore, Malaysia', 'SUPER HUNGRY SHIT'), (8845, 1369, 'Johore, Malaysia', '@NRLHDH goodluck'), (8846, 1904, 'Plentong, Johor Bahru', '@FatinHsmi Cibuk ah, fatin kecik lagi hahaha'), (8847, 2588, 'Johor Bahru, Johore', '@amitrinklets I miss working with u guys!! @bouncetwinkle can''t wait to come back!'), (8848, 2500, 'Johor Bahru, Johore', 'toe nails grow slow, WHY NOT finger nails grow slow too? so dont need to cut often =.='), (8849, 26, 'Johore, Malaysia', 'tak main ah brg thailand! pandan city pasarborong ada buat pe! @Master_Jersey @michael_ac'), (8850, 1371, 'Johor Bahru, Johore', 'I''m at In My Room (Bukit Batok, Singapore) http://t.co/qAe0oog4'), (8851, 156, 'Johore, Malaysia', 'Gonna be hardworking and bring my camera out everyday. I need inspirations'), (8852, 1412, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 13 others http://t.co/vXKRzvG1'), (8853, 638, 'Johore, Malaysia', 'Swan Lake intermission with some bubbly :) (at Esplanade Lounge) [pic] — http://t.co/kAkycgYJ'), (8854, 10, 'Singapore', '6-10 mins per question. Wah.'), (8855, 2586, 'Indonesia', 'dari web. ada add location nya kan? tekan aja sesuka mu RT @adryanagloriani: AnggyaMegaayu ;;) Gi,ana bikinnya? :O'), (8856, 1247, 'Johore, Malaysia', 'What the fk you looking at banglas? I''m wearing berms &amp; a polo tee and I''ve tied my hair I look ugly so please stop looking -.-'), (8857, 768, 'Johor Bahru, Johore', '@poisonousEMS yung miguel?'), (8858, 1383, 'Johor Bahru, Johore', 'OHMYGAWSH .\nI''m #craving for seaweed fries right now ! &lt;3 !'), (8859, 478, 'Johore, Malaysia', '@Dav_aw LOL this is funny'), (8860, 551, 'Johor Bahru, Johore', '@Shaminthatfreak aku kol 9 baru setat hahah'), (8861, 2589, 'Johore, Malaysia', 'I''m at Kenny Rogers Roasters (Singapore, Singapore) http://t.co/hcay1obT'), (8862, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyEywan hahaha ,13hb .'), (8863, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs alaaa anak mak . Haha manja jeeee !!'), (8864, 2590, 'Johore, Malaysia', 'In that smile I know you''re tryin to hide that sadness'), (8865, 1656, 'Johor Bahru, Johore', '@BabyJoKyu and Yeap! I''m gg! Hahaha!'), (8866, 1961, 'Plentong, Johor Bahru', '@haseenaaunie @dilaazie bkn excited la ena.dh sewel.haha'), (8867, 130, 'Plentong, Johor Bahru', '@zulfahmiabidin no no no nooooo way!'), (8868, 2591, 'Indonesia', '@mohferry ANDILAU...Antara dilema&amp;galau http://t.co/nwS0J350'), (8869, 487, 'Johore, Malaysia', '@euxuanlin i can only do a little math and even little chem. Can''t do physics and econs so yeahhhhhh'), (8870, 2592, 'Johore, Malaysia', 'So its not just th fruit that has th prob! RT @mousified: freaking 3g becomes 0.3g once u enter a train'), (8871, 832, 'Johor Bahru, Johore', 'Today I late go home sia..die la..45 minutes..shag!!'), (8872, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo lps tu aku riding abeh kau tk naik basikal'), (8873, 173, 'Johore, Malaysia', 'Udders is so crowded. Must be because @KiyrthanHere is here'), (8874, 2593, 'Plentong, Johor Bahru', 'aku enda pandai main paintball ...kawan2 aku ckp sakit gila !! pandai biru2 tu badan .. Ohmygasss !!!'), (8875, 551, 'Johor Bahru, Johore', '@Shaminthatfreak you'), (8876, 2509, 'Johor Bahru, Johore', '@jeslynLHJ @Minsawesomeness @wordsfallthru a frd sent me an article this morn reporting fanatic elfs vs shawols,sones &amp; u-kisses!y Elfs!??'), (8877, 2451, 'Malaysia', '@xuankr I know :D'), (8878, 1988, 'Johore, Malaysia', 'Laptop cannot reboot meaning what ?'), (8879, 130, 'Plentong, Johor Bahru', 'kau datang kedai lah duku oi!'), (8880, 2594, 'Johore, Malaysia', 'I am trying to use a New program for video editing and hoping to update the intros and bring back some old series for the Jared1238 channel!'), (8881, 2586, 'Indonesia', 'udah lama gak kasih kabar ke anet'), (8882, 2219, 'Singapore', '@XxslysoflyxX And to finish it off, Twister Fries from his chest and armpits.'), (8883, 1040, 'Kota Tinggi, Johore', 'Kat dlm bilek sorg''sorg . Ish , boring nyer :/'), (8884, 2079, 'Johor Bahru, Johore', 'I''m at Nanyang Executive Centre http://t.co/py593GNw'), (8885, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg He forever with seniors de! xD'), (8886, 269, 'Johore, Malaysia', 'if this is what u meant when u told me the other day to be strong... oh Allah, give me the strength...'), (8887, 2403, 'Johore, Malaysia', 'I''m Sorry...hah...Unriddle 2.'), (8888, 1773, 'Johor Bahru, Johore', 'Waste my time only zzzz'), (8889, 2557, 'Malaysia', '@PassPortSmily อ่อออออ'), (8890, 551, 'Johor Bahru, Johore', '@yangteoraaa '), (8891, 1686, 'Johore, Malaysia', '@ErfanRahim hehehee. aku beli yagn murah lah deng. yang ada word agnes b je.'), (8892, 2582, 'Johore, Malaysia', '@iPunchDieYouhh lol I also dunno how spell.\nGo for?'), (8893, 1837, 'Singapore', '@BABYITSZELO SEMO MAH ! Wo bu she de leave Sungjong alone mah !'), (8894, 1632, 'Plentong, Johor Bahru', 'Aween''s treat ^^ (@ Bubur Sentosa) http://t.co/QVDW0Jda'), (8895, 65, 'Singapore', '@isedro96 It''s a chat-.-'), (8896, 551, 'Johor Bahru, Johore', '@MansoorAdabi @shaminthatfreak selbom'), (8897, 435, 'Johor Bahru, Johore', '@heartwinkle its time for you to go on a diet! Hahaha! You eat alot uh?'), (8898, 2595, 'Johore, Malaysia', 'Dinner while (@ Fork &amp; Spoon (Novena Square 2)) http://t.co/lDQP0hbM'), (8899, 771, 'Johore, Malaysia', 'I''m gonna try that jack Daniels chocolate lahhhhhh !'), (8900, 130, 'Plentong, Johor Bahru', 'Aku nak balik! Nak tatap muka @abilsuhaimi kat tibitiga!'), (8901, 2596, 'Johore, Malaysia', '@Boythunder913 Look BT, it reached 1000 already! It exceeded actually. (: http://t.co/d2h42TPF'), (8902, 2073, 'Johore, Malaysia', '@Debbie_Koh @candykqx @whattalkingme 20CM HORH'), (8903, 331, 'Johor Bahru, Johore', 'people treat you naisely. why izzit too hard to gain that from you too?'), (8904, 2597, 'Plentong, Johor Bahru', '@fiqjat security pon tido..ape ley wat'), (8905, 487, 'Johore, Malaysia', '@euxuanlin i got salopas or ebene gel. Like the bengay. You want?'), (8906, 2551, 'Singapore', 'ENDING is better than PENDING (Y)'), (8907, 1106, 'Johor Bahru, Johore', 'working tomorrow at sushi express !! money in to my pocket !! hoho'), (8908, 1812, 'Johor Bahru, Johore', '@WanFlizzow Mepek sak tk de makne sak...K larh bye...'), (8909, 2598, 'Johore, Malaysia', 'Interesting I got free Asahi black beer!'), (8910, 2426, 'Johore, Malaysia', 'Craving for subway... ooooo shit'), (8911, 1639, 'Johore, Malaysia', 'Drowsy :''('), (8912, 65, 'Singapore', '@Widhiadarii Ok. u hv whatsapp?'), (8913, 551, 'Johor Bahru, Johore', '@Shaminthatfreak @mansooradabi mahmud'), (8914, 413, 'Johore, Malaysia', 'Prepared for the consequences.'), (8915, 513, 'Johor Bahru, Johore', '“@Angshiting: RT @Jennifluffff Everyone has a limit. Not only you.”'), (8916, 537, 'Johor Bahru, Johore', 'I''m at Friends Learning Centre (FLC) (Ang Mo Kio, Singapore) http://t.co/PSrqQYhu'), (8917, 331, 'Johor Bahru, Johore', 'nightflight. #np'), (8918, 1698, 'Johore, Malaysia', 'Packing drama bagg.'), (8919, 551, 'Johor Bahru, Johore', '@Shaminthatfreak '), (8920, 221, 'Johor Bahru, Johore', 'Expectations'), (8921, 138, 'Johore, Malaysia', '@MarkersNg Siao arh dun have'), (8922, 1124, 'Johor Bahru, Johore', 'I''m at Home! http://t.co/7yDvDLfh'), (8923, 2599, 'Riau, Indonesia', 'mulai nih sinetronnya(¬_¬").....'), (8924, 1101, 'Johore, Malaysia', 'Telling a Truth and Making Someone Cried is Better than Telling a Lie and Making Someone Smile .. =,='), (8925, 2398, 'Riau, Indonesia', 'artis perumahan ya qaqa? wkwk RT @realswag69: aku aj yg artis masi sempet reply and RT kan ?? wkwkwkkw RT @indriHR Kalo artis/publi'), (8926, 1040, 'Kota Tinggi, Johore', '*numbersevenkatdagu* :7 aku boring lah . Ishhhhhhhh :/'), (8927, 2600, 'Johor Bahru, Johore', 'I''m at Zuzu''s Cribcrib http://t.co/lOwslD6G'), (8928, 1956, 'Plentong, Johor Bahru', 'Otw back home..'), (8929, 1462, 'Johore, Malaysia', '@xhungrydumpty i ss let guangming see HAHAHA.'), (8930, 1304, 'Johor Bahru, Johore', '~Home at last.. Need to rest my tired mind.. (@ LuvLiLady''s Crib..) http://t.co/AZSHkjqz'), (8931, 1769, 'Plentong, Johor Bahru', '@syiemah hihihi best laaaa . best sangad sangad . hahaha :p'), (8932, 1988, 'Johore, Malaysia', 'WHATSYOURFUCKINGPROBLEM.'), (8933, 2602, 'Johor Bahru, Johore', 'You took my love. &lt;3&lt;3'), (8934, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg Yeah, he forever alone tht''s why everytime go to seniors one xD'), (8935, 2603, 'Plentong, Johor Bahru', 'Ohh haa Shugha baru tengok bf itewwwwwww Hahahha. Pluss tweeting :)'), (8936, 2581, 'Johore, Malaysia', '“Hindi porket sinabihang ka ng INGAT, eh concern na sayo!\nDi ba pwedeng alam niya na TANGA ka lang!” &gt;_&lt;'), (8937, 685, 'Singapore', 'TGIF na yahooo sabado at linggo na wala na ulit duty ... 2 days lang naman :))'), (8938, 65, 'Singapore', '@isedro96 Ok'), (8939, 1401, 'Kota Tinggi, Johore', 'Oh no. I must win you that game!'), (8940, 2093, 'Singapore', '@blackheartesJ @niallofficial @louis_tomlinson @harry_styles @zaynmalik @real_liam_payne Zayn and Niall but the rest are awesome too :)'), (8941, 771, 'Johore, Malaysia', 'Giler eh ! Tak Leh angkat please !'), (8942, 2509, 'Johor Bahru, Johore', '@jeslynLHJ prefer ice cream to coffee.heez..dun really like h&amp;g actually...2 sweet!think kona beans wld b better.where is SD''s chix restaur'), (8943, 482, 'Johor Bahru, Johore', 'I''m at SLE 2 1/2 http://t.co/1h1NPwPW'), (8944, 2604, 'Johor Bahru, Johore', 'Worsen the injury. Increase the pain. Fcuk.'), (8945, 2580, 'Johor Bahru, Johore', '❤ #picstitch @ Singapore Zoo http://t.co/PpeG98xi'), (8946, 2605, 'Johor Bahru, Johore', 'Canon F1 flash dRive USB http://t.co/BTSHzc67'), (8947, 1462, 'Johore, Malaysia', 'Porridge !!!'), (8948, 2252, 'Johor Bahru, Johore', '@HeyEywan @DayanggSyafiqa hahaha .x gne pnye kwn .t kw balik sni tngok dye pkai kursi roda da ,dye x bole jln .haa'), (8949, 142, 'Johore, Malaysia', '@sleepyysam Wah banyak secrets eh? Tak sabar nya nak tahu semuanya. Alah bilang thru sms ke call ke cannot ke sayang? =)'), (8950, 551, 'Johor Bahru, Johore', '@mikailXplict05 shuddup luh micheal mak bin danial dennis mak'), (8951, 1268, 'Johor Bahru, Johore', 'I''m at Sungei Gedong Camp (Singapore, Singapore) http://t.co/wLxUfCBE'), (8952, 1683, 'Johor Bahru, Johore', 'NABEI MY EYE SWOLLEN NOW SO SMALL DIE LA WALAN.'), (8953, 2606, 'Johore, Malaysia', 'on the day i leave, im gonna do something crazy! confession!'), (8954, 2477, 'Johore, Malaysia', '@Kayefattyhippo ahahah ! okay just be carefull'), (8955, 2586, 'Indonesia', '@Netty_1D aneeetttt follow me back ya:)'), (8956, 2607, 'Johor Bahru, Johore', 'My daddy might be flying off to China next month.. :/'), (8957, 331, 'Johor Bahru, Johore', 'please don''t take kindess as an advantage for you to go against another person.'), (8958, 267, 'Johore, Malaysia', '@kj_nash not seen the show but read the book, recording the show, watch it and then make up my mind for definite'), (8959, 206, 'Singapore', 'imy ;''( ♥'), (8960, 2608, 'Johor Bahru, Johore', '@HudzCena kerjalah tomorrow, siang cannot'), (8961, 2423, 'Johor Bahru, Johore', 'I''m at Blk 105D, Edgefield Plains http://t.co/RMgcwWCM'), (8962, 1856, 'Singapore', 'RT @ThatsWhy26: OSIM = Oh Shit It''s Monday! Lol'), (8963, 2609, 'Plentong, Johor Bahru', 'Lama tak mkn kt sini... (@ Syafiq Tomyam) http://t.co/oLoTqc7A'), (8964, 331, 'Johor Bahru, Johore', 'mengantok.'), (8965, 2610, 'Johor Bahru, Johore', '@ Dani''s place now with bumpy'), (8966, 2611, 'Malaysia', '@aumcomza1 ทำไม ง่ายหรอก'), (8967, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboi amboi . hihi terima kasih adek comel :)'), (8968, 850, 'Johor Bahru, Johore', '@Harrizontal oh. Hahah'), (8969, 1247, 'Johore, Malaysia', 'Bite my lips when you kiss me #turnon'), (8970, 551, 'Johor Bahru, Johore', '@xXiao_Pangx @mansooradabi @shaminthatfreak k huang lei'), (8971, 2612, 'Johor Bahru, Johore', 'So tired lo '), (8972, 1853, 'Johore, Malaysia', '@DUMBASS_ZIYING hahah relax la:) ask for opportunity :) I get the uniform okay le :P'), (8973, 5, 'Johore, Malaysia', 'Boring''boring maen game ~'), (8974, 2500, 'Johor Bahru, Johore', '@YuyunDujoon WHY NOT u give me some lemakz, i want to be more chubbs'), (8975, 331, 'Johor Bahru, Johore', 'i like zhe flute solo.'), (8976, 2613, 'Kota Tinggi, Johore', 'I''m not sure on wats wrong with YouTube ...'), (8977, 494, 'Johor Bahru, Johore', 'Yeay!!!!aku happy yeay!'), (8978, 2584, 'Singapore', 'ada ehh :D RT @putrriputh emang ada lagu 7icon yang judulnya kayak gitu _wardana 7icon ne ,,, RT @putrriputh Jealous tingkat tinggi'), (8979, 2614, 'Johor Bahru, Johore', 'Was playing basketball, one of the girls damn hot! So I purposely let her shoot to win. Then, she came to me said Thanks and gave half-hug!!'), (8980, 2118, 'Singapore', 'I only have 50 - 60 people to invite for my majlis of blessing. I am still unsure who to invite. @LoveRasul @Hazrulium HELP.'), (8981, 2615, 'Johore, Malaysia', 'I''m at KINGDOM INVASION (School of Healing and Impartation) Singapore Expo Hall 1 w/ 7 others http://t.co/hiU8bdy8'), (8982, 1961, 'Plentong, Johor Bahru', '@haseenaaunie @dilaazie agak la.Ya Allah cpt kn la masa berlalu.aq dh x thn tnggu rsult.sob3'), (8983, 138, 'Johore, Malaysia', 'Leaving Clementi Mall now :D @quishterfur @topazore @Taintedroses_ End of #2Lclassouting. SUCCESS'), (8984, 2557, 'Malaisie', '@PPrimo_cUte @CuzzMiiw @tpalita @mild_mildmild @AAeeScallop พรุ่งนี้นะเออ น่าเกลียดโฮกกกกก ก :('), (8985, 2593, 'Plentong, Johor Bahru', 'lepas zumba makan !!! hahahaha ..'), (8986, 1405, 'Johore, Malaysia', 'I miss all my friends. Especially family members.. =\\'), (8987, 2017, 'Johor Bahru, Johore', 'Goaaal !'), (8988, 2607, 'Johor Bahru, Johore', '@deehasnolife no more photo?'), (8989, 2398, 'Riau, Indonesia', '@eLsaRiangga @nia_imnida bisa mms.in gibran gak? dia gak bisa onlen sekarang, aku ada foto buat mading bagus nih.'), (8990, 972, 'Johor Bahru, Johore', '@Khylesnet lol jkjk'), (8991, 2616, 'Johore, Malaysia', 'Going home...so tired (@ Farrer Park MRT Station (NE8) w/ 2 others) http://t.co/ffi6mtkp'), (8992, 2206, 'Johore, Malaysia', '@CaraWesley no la where got. HAHA'), (8993, 1716, 'Johore, Malaysia', 'It''s my birthday n im suppose to stay up late and party but why I''m I staying at home now?!?!'), (8994, 1875, 'Johor Bahru, Johore', '@belindadrs Yup. Oke, nanti ya.'), (8995, 2617, 'Johor Bahru, Johore', '“@Captain_Primus: Shall do english another time. Maths always comes first! :P” mr chng would be proud of u'), (8996, 2603, 'Plentong, Johor Bahru', 'Ni yang tambah Sayang ni Muehehehehhehe xD'), (8997, 2618, 'Johor Bahru, Johore', 'The baby is damn cute !'), (8998, 1508, 'Malaisie', 'อยากซื้อซาลาเปาทอดกลับบ้านซัก 10 ลูก คิดถึงความอ้วนแล้วพอดีกว่านะ &gt;_&lt; (@ โกอ้วน (Ko Ouan) w/ 4 others) http://t.co/llY77olf'), (8999, 2619, 'Johore, Malaysia', 'The Tigerlilies Duo live &amp; unplugged! @ Barossa @ Holland Village http://t.co/TExcW6vd'), (9000, 2586, 'Indonesia', 'cie belieber~ RT @xBieberBeadlesx RT THIS Dear haters, We know, we cant STOP u to talk against Justin bieber but we can make u EAT what you'), (9001, 1786, 'Johore, Malaysia', '@ReubenNeo_ u take ur testimonial alr?'), (9002, 606, 'Johor Bahru, Johore', '@Charmiann oh oh I see. But deposit can take back uh! Unless you drink the drinks or room service etc~'), (9003, 716, 'Johor Bahru, Johore', '@tripodmonster Hahah, samee. ): Scam ''em? For whaat ehh? :B'), (9004, 2594, 'Johore, Malaysia', 'I am planning to bring back the old with review show which has been idle ever since july last year I hope to do great reviews on products!'), (9005, 38, 'Johor Bahru, Johore', '@SupYoEee ahahahaha. Okay. Cock. Better not say, he following me on twitter O:'), (9006, 2587, 'Johore, Malaysia', '@PoniesAndApples OOO who is she! haha mine was on national education, so we focused on national service! i did with claire and valerie'), (9007, 2118, 'Singapore', 'Invite who helped me a lot during BLSS years?'), (9008, 2610, 'Johor Bahru, Johore', '@SWParaVibes @sticksxbricks aw hahaha! That competition feels like ages ago!'), (9009, 331, 'Johor Bahru, Johore', 'could just shut my eyes, anytime, from now. :('), (9010, 2620, 'Johor Bahru, Johore', 'Im at seng kang with my family!!!'), (9011, 1956, 'Plentong, Johor Bahru', 'This 5 workers twice in 1 month. 2 times at Giant &amp; Kipmart each.\n I need 2 collect protection Rm this month.\n :)'), (9012, 2583, 'Johor Bahru, Johore', '@Raainnboww @suzyzan11 no'), (9013, 2586, 'Indonesia', 'besok pagi ke ktm ._. haris pagi banget bangun nya.-.'), (9014, 2481, 'Johore, Malaysia', '@EpsilonYeo See how la.'), (9015, 2621, 'Plentong, Johor Bahru', 'Uptown Johor (@ Bazar Karat) http://t.co/fBEWnqFx'), (9016, 2414, 'Johor Bahru, Johore', 'I''m at Fajar LRT Station (BP10) (Singapore, Singapore) http://t.co/RSq04nQ3'), (9017, 2584, 'Singapore', 'okee ...@rsyakiela @BIGpantun @monochromedenim @siraden_wardana Yuk Follow @BIGpantun &amp; like fanspagenya @monochromedenim di http:/'), (9018, 2622, 'Johore, Malaysia', 'Juminten :D RT @santosa_imam86'), (9019, 138, 'Johore, Malaysia', '@Vantsoul Can prove those people that say it will fail wrong !'), (9020, 118, 'Johor Bahru, Johore', '@rohanitarohin ur bus your lasted so long? Not done yet?'), (9021, 768, 'Johor Bahru, Johore', '@twitniker whaa! Ganda na bro! #enjoy'), (9022, 138, 'Johore, Malaysia', 'RT @Vantsoul: Homed (: #2LClassOuting success !!!! Omg so happy though shagged (:'), (9023, 2292, 'Johore, Malaysia', 'omg i hate doing this for a really ugly person.'), (9024, 2347, 'Johore, Malaysia', '@AydelRaimy lol. Next time we come laaa. Hahhah'), (9025, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyEywan hahaha ,cool dayang .'), (9026, 1440, 'Johor Bahru, Johore', 'Let my heart speak louder than my head :-)'), (9027, 2596, 'Johore, Malaysia', '@kimberl_song Hey follow back? (;'), (9028, 2389, 'Johor Bahru, Johore', '@Nunacumel kebulur...'), (9029, 2308, 'Johore, Malaysia', '@Peizhao_ cannot la give up Liao la ! :('), (9030, 2623, 'Johor Bahru, Johore', 'Tired!'), (9031, 2624, 'Johor Bahru, Johore', 'Shopping (@ Northpoint Shopping Centre w/ 6 others) http://t.co/7865CT0U'), (9032, 2444, 'Plentong, Johor Bahru', '@Ismahavoc Sama-2 :)))))))))))))))))))'), (9033, 2625, 'Johore, Malaysia', 'yarlyy @Lertkillee http://t.co/eyIGQA3p'), (9034, 1956, 'Plentong, Johor Bahru', 'Starting from this month.\n :)'), (9035, 2414, 'Johor Bahru, Johore', 'I''m at Blk 451 Fajar Road http://t.co/B3kKBwuu'), (9036, 2611, 'Malaysia', 'RT @quote_inw: มนุษย์บางคนชอบแสดงออกถึงพฤติกรรมที่บ่งบอกให้เห็นอย่างชัดเจนว่าตอนเด็กๆผู้ปกครองไม่ค่อยมีเวลาอบรม.'), (9037, 1856, 'Singapore', 'woahwoah! who is that guy?! http://t.co/XbSX22Bl me like this kind of guy !'), (9038, 2613, 'Kota Tinggi, Johore', 'Oh yah.. Where''s my chocolate dat ur dat wanna give meh ? XD'), (9039, 2604, 'Johor Bahru, Johore', 'Movie was great today &lt;3'), (9040, 2551, 'Singapore', 'alhamdulillah all done. thnks god.'), (9041, 606, 'Johor Bahru, Johore', 'Seeing @helloiamxinhui updated her blog I also update mine le. Heh (:'), (9042, 2610, 'Johor Bahru, Johore', 'RT @YanaEsai: Was walking to Int wen we saw @SafiqKechykk ,@_DZ_Zoom_ ,@Irfan_Rivera &amp; @whatyoucunt_'), (9043, 1698, 'Johore, Malaysia', 'Medicine -&gt; bed -&gt; wake up at 7:00am'), (9044, 38, 'Johor Bahru, Johore', '5 words, i gave up on him (; #FREEDOM'), (9045, 2607, 'Johor Bahru, Johore', '@deehasnolife okay.. :)'), (9046, 2598, 'Johore, Malaysia', '@andrewmixo sort off'), (9047, 2611, 'Malaysia', 'RT @indsm: เดี๊ยวนี้ The1Card ใช้คะแนนสะสมแลกของรางวัลผ่าน App ได้แล้ว ผู้ที่มี App อยู่แล้ว กด Update ได้ที่ App store http://t.co/S3NHiNUa'), (9048, 2626, 'Johore, Malaysia', 'Singular @ Qi Wei @奇味 Food Court http://t.co/M1zaokyG'), (9049, 2610, 'Johor Bahru, Johore', '@YanaEsai ehehe hello! :3'), (9050, 551, 'Johor Bahru, Johore', 'Heavy Metal Task Force'), (9051, 142, 'Johore, Malaysia', '@sleepyysam heeeehs loving what eh? Can''t stop saying it eh? Sayang kamu &lt;3'), (9052, 1773, 'Johor Bahru, Johore', '@Yutinggzx NOT ME MEH'), (9053, 1786, 'Johore, Malaysia', '@ReubenNeo_ i thought u took ur testimonial w ari already. haha.'), (9054, 2627, 'Pulai, Johor Bahru', 'El desperado...'), (9055, 2305, 'Johor Bahru, Johore', '@SeanNehFly life goes on.'), (9056, 173, 'Johore, Malaysia', '@NYQYQ macs later?'), (9057, 2608, 'Johor Bahru, Johore', '@HudzCena cannot la, malam ah hahaha'), (9058, 2460, 'Johore, Malaysia', 'Takboleh terime aku cakap lainkali jgn bukak mulot lo !'), (9059, 1278, 'Johore, Malaysia', 'I''m at Shaw Plaza (Singapore) http://t.co/c37YNRDF'), (9060, 2330, 'Tebrau, Johor Bahru', 'I seriously wanna go camp T-T fuck. Damn pissed and superduper sad. Why now? Why people that don''t wanna go for the camp could? But not me?'), (9061, 2017, 'Johor Bahru, Johore', '@FiqqyFiq_ hougang vs home utd'), (9062, 138, 'Johore, Malaysia', '@Vantsoul @jaehun_brows @iasterday We still at clementi LOL'), (9063, 2583, 'Johor Bahru, Johore', '@geashcaroline eh bsk ikt nnton sma ank2 greja g? Haha'), (9064, 2586, 'Indonesia', 'aku gak kembar-_-'), (9065, 2560, 'Johor Bahru, Johore', '@__DontBlink yes u are!! Haha open up moreee:)'), (9066, 861, 'Johor Bahru, Johore', 'Swear to god, the Kway Tiao goreng Kerang at my fav place in Woodlands just keep tasting better. Shiok!'), (9067, 2628, 'Plentong, Johor Bahru', 'Waiting to get change . Brrrbrbbbb . Sucking without thinking'), (9068, 768, 'Johor Bahru, Johore', 'RT“@AnnaTantrum:One of the things I miss about being a Nursing student:Nursing inside jokes.Geeky to outsiders;intellectual laughtrip for us'), (9069, 2323, 'Riau, Indonesia', '@akimalam_tvone Kalo ga demo , mana ada perhatian pemerintah . Buktinya di Libya, Mesir, Sovyet dll . Jangan bodohi masyarakat pak Nasution'), (9070, 2573, 'Johore, Malaysia', '予告で気になったのは、ユアンのサーモンの話。サーモンとイエメンがどうとかってタイトルでした。絶対見よ。来月かな?アイアンレディも見たいんだけど、来週時間あるかな〜'), (9071, 2629, 'Johor Bahru, Johore', 'Gonna watch horror movie with bro n mummy soon (@ PekYee''s littlehouse.) http://t.co/PTUQQuNb'), (9072, 38, 'Johor Bahru, Johore', '@SupYoEee don''t expose!! )X'), (9073, 551, 'Johor Bahru, Johore', '@MR_6661 @kohkohcrunchhh chey no\nla jokesp busted sia me'), (9074, 2555, 'Johor Bahru, Johore', '5 more days to braces ^^!!!\nAfter the 2weeks of extractions , finally , journey to a set of straight,perfect teeth!!'), (9075, 2305, 'Johor Bahru, Johore', 'Sweat is salty._.'), (9076, 2584, 'Singapore', 'mna boleh marah'), (9077, 2574, 'Riau, Indonesia', 'hei @chiekawaii ,kapan lo balik ha???? kangen gueeee,,'), (9078, 2630, 'Johor Bahru, Johore', 'Nice!! “@blbouchard: Woohoo - Bubbly is live in the Philippines http://t.co/V1nUo9y3”'), (9079, 2631, 'Malaysia', 'ผึ่งแอร์ " (@ Robinson Had Yai (โรบินสัน หาดใหญ่)) http://t.co/aU1BNeIZ'), (9080, 2624, 'Johor Bahru, Johore', 'John Carter round 2 (@ Golden Village w/ 2 others) http://t.co/X4hYFwAt'), (9081, 1469, 'Johor Bahru, Johore', '@harharhaa wanna be my chammak challo...ooh oh..wanna be my chammak challo..ooh oh..:)hahahahaha...created from scratch..'), (9082, 2632, 'Johor Bahru, Johore', 'RT "@XinyanHeng: Empty wallet :''-("'), (9083, 2613, 'Kota Tinggi, Johore', 'Daffuq happened to rock ?'), (9084, 2586, 'Indonesia', 'kesepian-&gt; RT @adryanagloriani AKU nape mention diriku sendiri'), (9085, 2603, 'Plentong, Johor Bahru', 'Adik Nurul Nadhirah, Comel kot. Hmm Al Fatihah :''/'), (9086, 1610, 'Johor Bahru, Johore', 'Its not e matter of early or last min purchase.. Both hv advantage &amp; disadvantage. Early cn secure ur purchase &amp; dont tend to left out..'), (9087, 51, 'Johor Bahru, Johore', 'Man niari tak jumpe aku :/'), (9088, 2574, 'Riau, Indonesia', 'coo cweeet deeh,, hihihi @kaniaamaliaa naah gtu doong. jgn nakalnakal yaaw :'')'), (9089, 679, 'Johor Bahru, Johore', '@ZendenSaysHerro so fail!!'), (9090, 2503, 'Johor Bahru, Johore', 'Singapore flyer~~~ memories!!'), (9091, 76, 'Johor Bahru, Johore', 'Did I sit at the back row last Monday? Cannot hear the recording well =('), (9092, 138, 'Johore, Malaysia', '@Steel_Sentinel YOU SUPER LUCKY. DAMN SCARYA'), (9093, 10, 'Singapore', '9/10 correct. HAHAHA. That wrong question because idk how to solve + idk how to sub in the answers one by one.'), (9094, 2297, 'Riau, Indonesia', 'Sleep (@ Hard Rock Hotel) http://t.co/Khfx1MrM'), (9095, 98, 'Johor Bahru, Johore', '@N4MYS i didnt mean that!! D: im afraid youll just 4get yr bestf here who is still stuck in sec sch hais'), (9096, 130, 'Plentong, Johor Bahru', '@zulfahmiabidin biasa je cuma guna syampoo~'), (9097, 4, 'Johor Bahru, Johore', 'Laugh die me! Everyone was like joker!'), (9098, 2347, 'Johore, Malaysia', '@zixity cb. Hahahha abeh aku takde free entry?'), (9099, 228, 'Johor Bahru, Johore', '@AdliDanish @afiqharraz WOW, 4T1 sucks big time'), (9100, 2628, 'Plentong, Johor Bahru', 'Lucky to have you MOHD TAJUDDIN RAHIM'), (9101, 2585, 'Johore, Malaysia', 'Greeted by the kids as I stepped into my house today! I wish I could keep them here forever and ever and ever. \n#'), (9102, 513, 'Johor Bahru, Johore', '“@Roddnehh: RT @dailyteenwords #10factsaboutme I cheat and do teamwork on my test sometimes.”'), (9103, 38, 'Johor Bahru, Johore', '@SupYoEee BECAUSE MY HAIR GONE. /:'), (9104, 51, 'Johor Bahru, Johore', 'Where you?'), (9105, 861, 'Johor Bahru, Johore', '@LackadaisicalFa haha. Then like that Shah cannot serve the customers lah. Lol. Very bad siah me. :x lol'), (9106, 2555, 'Johor Bahru, Johore', '@bJiaYi idk, woke up &amp; than fainted while walking towards to washroom.):'), (9107, 487, 'Johore, Malaysia', '@euxuanlin kk i bring tmr. Apply liao damn shiok'), (9108, 2555, 'Johor Bahru, Johore', '@bJiaYi thanks(:!'), (9109, 2634, 'Johor Bahru, Johore', '@jnnybeans w r u my dear..'), (9110, 2586, 'Indonesia', 'kenapa pending pending._.'), (9111, 2509, 'Johor Bahru, Johore', '@jeslynLHJ @minsawesomeness @wordsfallthru go read yahoo sg news'), (9112, 2635, 'Johor Bahru, Johore', 'OMG DAMN FULL...DAMN SON... (@ Sakae Sushi) http://t.co/HUPZwpTB'), (9113, 687, 'Johore, Malaysia', 'I need mittens !'), (9114, 2636, 'Johore, Malaysia', 'My instr asked, " What''s your topspeed?" I replied," 90km/h??" He immediately gave me a stun looked.. Lol.'), (9115, 2252, 'Johor Bahru, Johore', '@HeyEywan x abes2 nan lol kw .haaa .'), (9116, 2610, 'Johor Bahru, Johore', 'RT @Irfan_Rivera: having fun playing this dumb fitness thingy at teck whye with @whatyoucunt_ and @_DZ_Zoom_'), (9117, 2637, 'Johor Bahru, Johore', 'Sooo cute the way Arjun smile...!!! #PavitraRishta'), (9118, 2563, 'Plentong, Johor Bahru', 'Babi siapa baka budak kecik tu.'), (9119, 2586, 'Indonesia', 'mana dwi? ._. katanya malam mau online'), (9120, 65, 'Singapore', '@isedro96 Whatsapp is on Phones,,'), (9121, 2638, 'Johor Bahru, Johore', '@TROLLINGREVOLTS heehehe!'), (9122, 1773, 'Johor Bahru, Johore', '@Yutinggzx CLOSE UR EYES NEXT TIME :P'), (9123, 2639, 'Singapore', '@GinaLeowHuiJie Ya, ialso dont really understand i am talking about. But just get annoy when this happen :((('), (9124, 2308, 'Johore, Malaysia', '@Peizhao_ why u give up! LOL. Mine is no choice must give up de la ! Kay!'), (9125, 551, 'Johor Bahru, Johore', '@Shaminthatfreak @xxiao_pangx @mansooradabi ya my brother from china'), (9126, 2006, 'Johor Bahru, Johore', 'Hmm bus uncle nice haha !'), (9127, 1748, 'Johore, Malaysia', 'I''m at Tanjong Ria (Singapore, Singapore) http://t.co/LjQ6PaB1'), (9128, 1411, 'Johore, Malaysia', '@ZelleZiao HELLO , dont get piss :/'), (9129, 2047, 'Singapore', 'Now left with mum~'), (9130, 2640, 'Singapore', '@Deepblueroses 1D? fuck off ;('), (9131, 2290, 'Plentong, Johor Bahru', 'At last! Tired! (@ Puteri Pan Pac Hotel Jb) http://t.co/Eb2bcsY3'), (9132, 2641, 'Plentong, Johor Bahru', 'I''m at Danga Flyover http://t.co/MOdpdMQx'), (9133, 433, 'Johore, Malaysia', '@ginoboi hahahahha!!!!'), (9134, 2206, 'Johore, Malaysia', '@CaraWesley sureeeeeeeee ^^'), (9135, 2642, 'Plentong, Johor Bahru', '@tinitweeny Thank youu . Goodluck jugaa :)'), (9136, 2643, 'Malaysia', 'I''m at ขวัญเรือน http://t.co/TWjotuPW'), (9137, 65, 'Singapore', '@Widhiadarii Ok, send ya my number in private msg'), (9138, 1769, 'Plentong, Johor Bahru', '#PeopleIWentMeet @Erni_Erlia'), (9139, 771, 'Johore, Malaysia', 'Eee ! I hate when people call themself abang or kakak with me .'), (9140, 2644, 'Johore, Malaysia', '@jeffbernardez nakakatawa itsura eh... Haha'), (9141, 106, 'Johor Bahru, Johore', '@Brynaaaaa thanks boss .'), (9142, 180, 'Johor Bahru, Johore', 'Need to update my mp3.. Itu mp3 da berzaman tak update.. Lagu semua lagu zaman gemilang.. Chey chey.. Can listen on my bus ride to work mon.'), (9143, 2145, 'Singapore', '@alisyahamran oh then too badd lorrhh~'), (9144, 883, 'Johore, Malaysia', 'I''m at Lucky Plaza w/ @mrslynncrawford http://t.co/loKXDsfr'), (9145, 1331, 'Johor Bahru, Johore', '@Siufungfunggggg yeah! I was skeptical too. But when I tried it I was shocked! It works! :D'), (9146, 1411, 'Johore, Malaysia', 'what have u expected from me?'), (9147, 2645, 'Johore, Malaysia', 'Ummmm choc ice I love it :3'), (9148, 2646, 'Johore, Malaysia', 'WOOOOOOOOOOO @THEKOXX @ILOVEMOSAIC ♥ http://t.co/3XuCmX4y'), (9149, 2460, 'Johore, Malaysia', 'Its not your fault for hurting me . Its mine thinking you wouldnt.'), (9150, 1610, 'Johor Bahru, Johore', 'Last min purchase, will jus endup disappointed or wont get wt u wan. Insyallah if we purchase early, we will go through 2gather..insyallah!'), (9151, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims hihi . daa daa . adek daa makan ?'), (9152, 2647, 'Johore, Malaysia', 'With Alicia at Bar Bar Black Sheep — http://t.co/MnGSxFvn'), (9153, 2648, 'Johor Bahru, Johore', 'I need a huge hole puncher. One that can punch through my mole concept notes.'), (9154, 1748, 'Johore, Malaysia', 'I''m at Tricia''s house *\\(^o^)/* (Singapore) http://t.co/gYG3OlQI'), (9155, 2649, 'Malaysia', 'I''m at Hat Yai International Airport (HDY) ท่าอากาศยานนานาชาติหาดใหญ่ w/ @pumpui_pp http://t.co/AjjpYpzO'), (9156, 1651, 'Pulai, Johor Bahru', 'Lyaa text akuuu!!! Hehe. Rindu k rindu :*'), (9157, 1106, 'Johor Bahru, Johore', ''), (9158, 2640, 'Singapore', '@Secretss_ @NinjaLikesCheez check his foursquare? lol'), (9159, 1110, 'Riau, Indonesia', 'resting (@ Hard Rock Hotel w/ 2 others) http://t.co/GvZKUEt4'), (9160, 2598, 'Johore, Malaysia', 'I''m at Spize River Valley (Singapore, Singapore) w/ 9 others http://t.co/6FYxpaJ4'), (9161, 718, 'Johor Bahru, Johore', '@JoannaTheEmoKia Hahaha why cannot uh :o'), (9162, 2398, 'Riau, Indonesia', '#perbedaanTwitterFacebook gak bakal deh ketemu foto anak alay terpampang di TL twitter.'), (9163, 790, 'Johor Bahru, Johore', '@A_chubbycheeks HAHAHHHA OKOKK!! OUR DATE OK???'), (9164, 2006, 'Plentong, Johor Bahru', 'I just want to lie on my bed ,with the aircon, wrap myself in the blanket n use my phone! Althought I don''t feel like sleeping early'), (9165, 2640, 'Singapore', '@n30phyte @notch umad? indonesia?'), (9166, 38, 'Johor Bahru, Johore', '那个人damnepicfailsial. @supyoeee'), (9167, 2557, 'Malaysia', 'กูเพิ่งรู้ คอน mbc 7 เม.ย. มี infinite - -'') ทำไงหละทีนี้ แอลลจ๋าาา ขอโทดดดด T^T'), (9168, 2651, 'Johor Bahru, Johore', 'Checkpoint. #woodlands #malaysia #marsiling #building http://t.co/ohix64kf'), (9169, 1828, 'Johor Bahru, Johore', 'I''m at 81 Loyang Rise ^^ http://t.co/XZy3fSh5'), (9170, 5, 'Johore, Malaysia', 'RT " @anatasyazz So lazy to study la. Wtv. "'), (9171, 2638, 'Johor Bahru, Johore', '@Insane_M0NK @InsanePuny Eh whattttttttt!'), (9172, 1784, 'Johor Bahru, Johore', 'Stress at skyrim like siao:/'), (9173, 1956, 'Plentong, Johor Bahru', 'Another 6 workers 1 month 3-5 times I''m visiting Giant/KIPMART. They have chef 2 cook 4 them where else another 5 DIY.\n ;)'), (9174, 2598, 'Johore, Malaysia', 'I''m at PappaMia (Singapore) w/ 2 others http://t.co/dXbE8Yag'), (9175, 2603, 'Plentong, Johor Bahru', 'Adik yang kat rumah semua tu jangan ahh keluar suka hati, Nowadays, banyak kes culik budak -.- Hmm.'), (9176, 2252, 'Johor Bahru, Johore', '@HeyEywan hahaha .msti cm pelik an .kaki dye patah r .'), (9177, 654, 'Johore, Malaysia', 'udah lupakan saja :)'), (9178, 2509, 'Johor Bahru, Johore', '@jeslynLHJ yup yup! Hopefully we hv chance to hv fun together!!'), (9179, 2440, 'Johor Bahru, Johore', '@GermaineLuvs1D @lustoversight yeah I''m not Going I can''t go to ecp'), (9180, 2638, 'Johor Bahru, Johore', ', home x'), (9181, 771, 'Johore, Malaysia', 'I love being single but at the same time I miss being attached but then to think again , I don''t want another heart break misery .'), (9182, 2406, 'Johore, Malaysia', 'My body clock is screwed .'), (9183, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz her leg very hairy meh? :p'), (9184, 2598, 'Johore, Malaysia', 'I''m at ABSS Bar @ River Valley (Kellock Road) http://t.co/TT1jNLHV'), (9185, 495, 'Pulai, Johor Bahru', '#KalauCrushAku macam @MarzuqiSyahmi ,confirm sayaa cepatcepat REJECT sebab he just my friend and EX-CLASSMATE..\n#SeriousNi XP'), (9186, 2444, 'Plentong, Johor Bahru', '@AZARYyaacob Keling ke ape woii?Nmpk nandek dia lahhh'), (9187, 1383, 'Johor Bahru, Johore', '@Aloysius_Ho HELLLLL YEAH .'), (9188, 2652, 'Johor Bahru, Johore', 'I''m at Tampines Mall/century Square http://t.co/vn5rgfNy'), (9189, 1837, 'Singapore', '@BABYITSZELO NONONONO .'), (9190, 1686, 'Johore, Malaysia', '@ErfanRahim aku beli dalam $80. mak aku dapat discount lah bro. original tak tahu lah pulak.'), (9191, 2327, 'Malaysia', 'รถป้ายแดงเยอะสัส อะ =='), (9192, 2653, 'Plentong, Johor Bahru', '@hanizahid kn ? rindu kot dkt dorg , hahaha x|'), (9193, 2593, 'Plentong, Johor Bahru', '@FelirGiselle u pena try ??? Enda sakit ka kena timbak that?'), (9194, 2654, 'Johore, Malaysia', 'My roommate who doesnt speak english keeps #cackling like a #witch wish i knew what it was about. #ModelProblems'), (9195, 771, 'Johore, Malaysia', 'Oh oh ! How bitchy of me .'), (9196, 2560, 'Johor Bahru, Johore', '@__dontblink cheer up!!'), (9197, 2642, 'Plentong, Johor Bahru', 'The moment ade Lelaki bangla/Indon tenung kita lain macam . Memang nak makan kaki ahh kann'), (9198, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz I''m a good boy *-*'), (9199, 1101, 'Johore, Malaysia', '@Afifjefri Kaw ngah cri background kea ?'), (9200, 768, 'Johor Bahru, Johore', 'RT“@MensHumor: Ladies, next time the doctor checks your boobs for any lumps, run your fingers through his hair.”--Lol @DrCrane8'), (9201, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz FACTS LA OMG'), (9202, 771, 'Johore, Malaysia', '@AchikMok EWEWWWWW !'), (9203, 2655, 'Sekupang, Kota Batam', 'Omg I just relise I charge my phone but u.didn''t on the switch...'), (9204, 2557, 'Malaysia', '@PPrimo_cUte @CuzzMiiw @tpalita @mild_mildmild @AAeeScallop ไม่ได้ๆ 5555 ขอทำใจ ในหลายๆเรื่อง TT ปล. กูเสียดายผมกูมาก อุส่าเกบไว้ 2 เดือน'), (9205, 1773, 'Johor Bahru, Johore', '@Yutinggzx I FOLLOW U EVERYWHR , U HAVE TO CLOSE UR EYES EVERYTIME'), (9206, 513, 'Johor Bahru, Johore', 'Hahaha !!'), (9207, 2072, 'Kota Tinggi, Johore', '@chanel_branded you should :) but im not good at kicking. The swing can only swing abit, then you all play until so rough lol'), (9208, 2496, 'Johore, Malaysia', 'Chillazz mode!! http://t.co/7HqLTT40'), (9209, 2460, 'Johore, Malaysia', 'Cemburu boleh tapi takmo sampai cemburu buta .'), (9210, 109, 'Johore, Malaysia', 'Daily cuppa (with @evo3shini, @MarshallOng, and 2 others at @SG_Starbucks) — http://t.co/5tjUh1aC'), (9211, 138, 'Johore, Malaysia', '@Vantsoul @jaehun_brows @iasterday The bus to clementi came very late TT. Karen was left alone at the bus stop LOL'), (9212, 2593, 'Plentong, Johor Bahru', '@AsyaariAbby haizz... tu la, kawan aku ckp pakai jaket tebal kunuk . ahha'), (9213, 285, 'Singapore', '@AnatiSimpson wait wait wait! you''re were skinny? O_o hahahahaha #DontTakeItSeriously :p'), (9214, 1616, 'Malaysia', 'ง่วงนอนโครต'), (9215, 433, 'Johore, Malaysia', '@queenammilada parang mga kilikili lang dito....heheeh'), (9216, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa @HeyEywan hahaha .x tw kw dayang ,'), (9217, 1362, 'Johore, Malaysia', 'Think I just saw @smoochsg model at UniSIM. If that''s really her, she''s so much prettier and slimmer IRL!'), (9218, 1819, 'Johore, Malaysia', 'I''m at Al Tazzaq Egyptian Restaurant http://t.co/hQRYHT9n'), (9219, 80, 'Johor Bahru, Johore', '@amyline95 da..esk dia hntar aku ngn fara'), (9220, 2145, 'Singapore', '@alisyahamran aisehh!! Att to who sial?!'), (9221, 2657, 'Johore, Malaysia', '@RunNeonTigerRun HAHAH . tmr you sing for us during co uh ! :D'), (9222, 142, 'Johore, Malaysia', '@sleepyysam Alah nak kene tungu Saturday seh. Lama nya. Msti banyak seh secrets you. Alah call I please? =)'), (9223, 2658, 'Johore, Malaysia', 'ERDINGER (@ White Dog Café) http://t.co/HSGwAF48'), (9224, 2330, 'Tebrau, Johor Bahru', '@musfirahyunnixo Will girlfriend^^'), (9225, 180, 'Johor Bahru, Johore', 'Walaopon skrg musim ipod, itouch tapi I tetap favourite my sony mp3.. Charge 3 min leh tahan for few days.. Serious..'), (9226, 2593, 'Plentong, Johor Bahru', '@faR33zaL matai.. lawan kamu ka ni ??? hahaha .. enda terer juga kamu tu .. wakkakakkaka !!!!!'), (9227, 139, 'Singapore', '@YKChua Really? :O'), (9228, 38, 'Johor Bahru, Johore', '@lynxsykr what your mum say? Me no understand Malay. And me is curious. :3'), (9229, 835, 'Johor Bahru, Johore', 'Homed:) (@ Ahma House! ) http://t.co/iqoNs2Wb'), (9230, 2659, 'Johore, Malaysia', 'I''m at Esplanade Riverside w/ 3 others http://t.co/1QjZqNOC'), (9231, 2292, 'Johore, Malaysia', 'race walking seems more tiring than race running hahahahaha.'), (9232, 72, 'Johor Bahru, Johore', '@doubleyouuem okok take off clothes. :D vanthamaa sounds indian'), (9233, 2657, 'Johore, Malaysia', '@RunNeonTigerRun ooh , guallin sing nice bo ?'), (9234, 1904, 'Plentong, Johor Bahru', '@ridzuan_dzakir Dah ah lantak ah aku merajuk!!'), (9235, 260, 'Kota Tinggi, Johore', 'HAvent touch my PS3'), (9236, 1786, 'Johore, Malaysia', 'Ur love ur love ur love is all i need~'), (9237, 117, 'Johore, Malaysia', '#PeopleIWantToMeet @saintandsinners'), (9238, 718, 'Johor Bahru, Johore', 'Wah 19 percent left ...'), (9239, 1784, 'Johor Bahru, Johore', '@BeingSyazwin LOL just created xD'), (9240, 2660, 'Johore, Malaysia', 'I''m at Hong Kong Kim Gary Restaurant w/ @bombasticle http://t.co/Hl9R6PQH'), (9241, 1956, 'Johor Bahru, Johore', 'Correction:\n\n7 workers.'), (9242, 1993, 'Kota Tinggi, Johore', 'If there is a delete button on me,i would gladly delete you in my life ,my memory cause you were nothing but a coward'), (9243, 2118, 'Singapore', 'Suddenly I thought of last Ramadhan, it was a memorable Ramadhan for me. I guessed I miss Ramadhan.'), (9244, 496, 'Singapore', '@SungminsELF sengkang?! T.T ~CATCH 3,2,1 ! &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;'), (9245, 2633, 'Johore, Malaysia', '@LheaM28 korek!! hehe'), (9246, 285, 'Singapore', 'I miss you~'), (9247, 1686, 'Johore, Malaysia', 'jengjengjengggggg'), (9248, 2586, 'Indonesia', 'hahahah thanks sist :p RT @Netty_1D: AnggyaMegaayu I followed u back :3'), (9249, 1904, 'Plentong, Johor Bahru', '@FatinHsmi Tak mumaiz hahahaha'), (9250, 2613, 'Kota Tinggi, Johore', '@ItsNabOkay .. Where''s mah chocolate??,'), (9251, 1856, 'Singapore', 'wait... NU''EST - Face lyrics got shit... O_O'), (9252, 65, 'Singapore', '@isedro96 Aweee then forget it. ):'), (9253, 2630, 'Johor Bahru, Johore', '@blbouchard knocked few off from the list today :)'), (9254, 433, 'Johore, Malaysia', '@queenammilada @vickai_0415 may Smart Aleck ba dyan?'), (9255, 2653, 'Plentong, Johor Bahru', 'aq bosan aq bosan aq bosa aq bosan aq bosan :['), (9256, 117, 'Johore, Malaysia', '#PeopleIWantToMeet @burntmittens bitch HAAHA jk'), (9257, 1194, 'Malaysia', 'เราคงต้องเห็นริทรองทรงตลอด 5 ปี'), (9258, 687, 'Johore, Malaysia', '@ShafiqahRashid @greenie_leena the name start with s ah ?'), (9259, 2661, 'Johore, Malaysia', '@taxznJuz haha nope didn''t see that. Send link?'), (9260, 260, 'Kota Tinggi, Johore', '@FT2NA96 fatttttt'), (9261, 1084, 'Johore, Malaysia', 'it''s going to be a bad bad day tomorrow..'), (9262, 173, 'Johore, Malaysia', '@NYQYQ I don''t mind studying la. Just for you. I can stay out till 2.'), (9263, 2460, 'Johore, Malaysia', 'Dont get yourself to a new relationship just to get over someone .'), (9264, 2648, 'Johor Bahru, Johore', '@F0urSeas0ns reply my sms.'), (9265, 2662, 'Johor Bahru, Johore', 'i''m (@ Blk 140 Basketball Court w/ @_shootingstar_) http://t.co/f4YMA9GU'), (9266, 553, 'Johor Bahru, Johore', 'Omg stoooop askinggg LOL "@BjornChong: @gideeeon will I ever hear it?!"'), (9267, 2398, 'Riau, Indonesia', 'TL gue ngandat. aarrrrgh'), (9268, 712, 'Plentong, Johor Bahru', 'I''m at Dcm Bowling (Johor Bahru, Johor) http://t.co/eA1nX3f3'), (9269, 1610, 'Johor Bahru, Johore', 'Well it depends.. Alhamdulilah, 2 down &amp; less to worry.. The start of e journey.. The excitement &amp; chaos begins!'), (9270, 1040, 'Kota Tinggi, Johore', 'Kirekan cool uhr gitu ? -''-'), (9271, 2586, 'Indonesia', 'itu kan aku :O RT @adryanagloriani http://t.co/lzxcdLmY…'), (9272, 1968, 'Johore, Malaysia', 'Late dinner (or early supper?) (@ Fong Seng Nasi Lemak) http://t.co/8daNE7ur'), (9273, 859, 'Johor Bahru, Johore', '@Thathegirl Heh ok. ^^ Tweetcaster gud to use ma?'), (9274, 99, 'Johor Bahru, Johore', '@Muz_zamil syed ade ajak kau keluar?'), (9275, 2006, 'Plentong, Johor Bahru', 'I believe friends gather together to give themselves a break from what they are currently hanging on to ..'), (9276, 544, 'Johor Bahru, Johore', '@Evolruoyemllet_ got! You say her smelly! Follow back! Hahaha.'), (9277, 1904, 'Plentong, Johor Bahru', 'Huda merajuk hahahaha'), (9278, 835, 'Johor Bahru, Johore', 'I just became the mayor of CHAI''s Bed!  on @foursquare! http://t.co/zyKQCooi'), (9279, 2663, 'Plentong, Johor Bahru', 'I''m at Kfc jusco permas jaya http://t.co/1gxW0H24'), (9280, 1956, 'Johor Bahru, Johore', 'Wah, protection Rm 4 12 workers.\n Heee~~~'), (9281, 2330, 'Tebrau, Johor Bahru', '@flywired Can''t go :| cause can''t walk straight yet.'), (9282, 38, 'Johor Bahru, Johore', 'Eeeks, he look so cute when he cries. :3 «- relating to a movie.'), (9283, 2509, 'Johor Bahru, Johore', '@wordsfallthru the report makes me feel that that journalist is against suju n elfs?y suju?bcoz of their huge global popularity?'), (9284, 449, 'Johor Bahru, Johore', 'I wish we were having practice now I miss talking to you.. It became a habit to update you baby &lt;3'), (9285, 2202, 'Johore, Malaysia', 'Black pepper crab ! @ Sin Huat Eating House http://t.co/No3aqXTT'), (9286, 2586, 'Indonesia', 'tv lah dek :p RT @syalsarama Jadinya apaan kak? RT AnggyaMegaayu: mak gak gaul kali bilang nya televisi-_- RT syalsarama Wess nyalain Televi'), (9287, 2584, 'Singapore', 'nap ndree ? RT @AndreMandor beda syarat beda pendapat !'), (9288, 2634, 'Johor Bahru, Johore', '@jnnybeans when I c this, I think of u.. http://t.co/hereCnTR'), (9289, 1784, 'Johor Bahru, Johore', 'And then my com resolution pro make me shock --" I WAS LIKE OMG THE DRAGON RUN RUN!'), (9290, 2610, 'Johor Bahru, Johore', '@SafiqKechykk get well soon syg xx'), (9291, 2086, 'Johor Bahru, Johore', '@ZhouJin_ 几点阿'), (9292, 1686, 'Johore, Malaysia', 'macam gerek gitu gigit kuku. hahaha.'), (9293, 2602, 'Johor Bahru, Johore', 'There''s just something about her that grabs my heart, and it makes me hurt inside to know that I can''t have her.'), (9294, 1769, 'Plentong, Johor Bahru', '@syafiqahabbas tade tade . haha adelaaaa :) kenapa ?'), (9295, 2460, 'Johore, Malaysia', 'For the first week you thought youve moved on but the truth is you didnt .'), (9296, 167, 'Plentong, Johor Bahru', 'Mak Teh''s. (@ Jalan Seruling) http://t.co/hvstuBsF'), (9297, 2476, 'Pulai, Johor Bahru', '#KenanganTadika ak x ingat ape2 haha..'), (9298, 38, 'Johor Bahru, Johore', '@lynxsykr HAHAHA. LOL. CUTE SIALZ.'), (9299, 513, 'Johor Bahru, Johore', '@Reichi_Lim Hahaha !! Joke Sia him !! I smell yr hatred !!'), (9300, 295, 'Johor Bahru, Johore', '#PelangiKasih now mmg 9.30. #AmukanPocong ltr at 10. @tv3malaysia yg ckp. ;)'), (9301, 2664, 'Johor Bahru, Johore', 'Date w/ mom. (@ McDonald''s) http://t.co/2a1qY7zQ'), (9302, 859, 'Johor Bahru, Johore', '@FadhliPatrick Wa so late!'), (9303, 65, 'Singapore', '@isedro96 It''s ok katycat(:'), (9304, 2375, 'Singapore', 'H.U.S.B.A.N.D = [H]e [U]nderstands [S]ituations [B]etter [A]nd [N]ever [D]isappears.'), (9305, 2008, 'Kota Tinggi, Johore', 'I''m at 228 Toa Payoh http://t.co/wZPlpDuI'), (9306, 1875, 'Johor Bahru, Johore', '@belindadrs Good Samaritan tu kyk good citizen gitu lo'), (9307, 1100, 'Johore, Malaysia', 'Long day out -- Gloria''s exhausted. (@ Zombie Safehouse) http://t.co/allytau3'), (9308, 1180, 'Johore, Malaysia', '@msrahrahxx I missed the launch !! Was celebrating my husband''s birthday'), (9309, 818, 'Johore, Malaysia', 'Ahhhh I wanna watch dh2 but don''t wanna see KSR face .'), (9310, 138, 'Johore, Malaysia', '@Vantsoul @jaehun_brows @iasterday Her father fetching her mah. So she over there alone .__.'), (9311, 1956, 'Johor Bahru, Johore', 'Need more workers so that more protection Rm.\n :-p'), (9312, 803, 'Johor Bahru, Johore', '@_Pocketz Justin bieber song nice meh ? :x'), (9313, 1832, 'Johor Bahru, Johore', 'RT @FeeThreeYaaNii: #PeopleIWantToMeet Lee Min Ho !'), (9314, 2642, 'Plentong, Johor Bahru', '@ndyrxoyy Nadingrang . comelnyaa nama baru kauu Haha'), (9315, 1194, 'Malaysia', 'นั่งพิมพ์ระเบียบการเช่าห้องพักของอพาร์ทเมนท์ พ่อแม่ขา ทำไมไม่จ้างให้ร้านพิมพ์ ให้ลูกพิมพ์ มันเยอะมาก =[]='), (9316, 448, 'Plentong, Johor Bahru', 'Siakap stim limau terbaik diJohor ada disini (@ Restoran Pak Soh Tomyam &amp; Seafood) http://t.co/dYRWUuaY'), (9317, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg WTF OMG SO TEMPTING *O*'), (9318, 496, 'Singapore', '@SungminsELF ahahaa , try again ? 3,2,1 Catchhh ! &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;'), (9319, 449, 'Johor Bahru, Johore', '@thiveebeanie I wish we were having practice now.. I miss talking to you.. It became a habit baby &lt;3'), (9320, 2653, 'Plentong, Johor Bahru', '@hanizahid hahahaa , jom jom . kita terbang k ;) tggu kjp lg kita sampai :D'), (9321, 2586, 'Indonesia', 'wah di re-tweet artis dari hungarya :O :3'), (9322, 1784, 'Johor Bahru, Johore', 'And then kor say forcing me to play COD tmrw cause need me be brave or else everything scared OMG I AM GOING TO FAIL'), (9323, 2644, 'Johore, Malaysia', '@mrtwothumbsup ako din kahit dito. Siya lang.'), (9324, 38, 'Johor Bahru, Johore', 'Liyana''s mummy so cute. AHAHAHA. XD @lynxsykr'), (9325, 569, 'Johore, Malaysia', 'annoying piece of shit. NO MEANS NO.'), (9326, 2665, 'Pulai, Johor Bahru', 'http://t.co/0R6xkri3 -- meow66 (@MaioMeow)'), (9327, 2661, 'Johore, Malaysia', '@taxznJuz haha kk'), (9328, 657, 'Johore, Malaysia', '@hahazaahir pastu mkn dapat yg mahal2,hahaha'), (9329, 1572, 'Johor Bahru, Johore', 'Kau Diam Sudah.'), (9330, 1383, 'Johor Bahru, Johore', '@Aloysius_Ho OMGGG. I want. !'), (9331, 2638, 'Johor Bahru, Johore', ', my dad suddenly said kp.'), (9332, 2563, 'Plentong, Johor Bahru', 'Nobody''s perfect............. http://t.co/cia2TF0X'), (9333, 1796, 'Johore, Malaysia', 'I''m at Ayam Penyet Ria (Level 1) (Singapore) w/ 4 others http://t.co/JCePCmxF'), (9334, 2257, 'Johor Bahru, Johore', 'Movie marathon!!!!'), (9335, 513, 'Johor Bahru, Johore', '@Reichi_Lim Ikr !! Funny Sia !!'), (9336, 687, 'Johore, Malaysia', '@ShafiqahRashid @greenie_leena hahaha . Da agak daaaa . When ur hols end ?'), (9337, 298, 'Johor Bahru, Johore', '37.7. Sick alr ):'), (9338, 1784, 'Johor Bahru, Johore', '@BeingSyazwin my brother buy hahas:)'), (9339, 1841, 'Johore, Malaysia', 'mabuhay ang mga OFW lalo na mga kasing edad ko! @tefaniadeleon @Mikkarobles @beainfluential! huhuhu'), (9340, 2666, 'Plentong, Johor Bahru', 'I''m at Taman Molek JB (Johor Bahru, Johor) http://t.co/7EDd4WLx'), (9341, 138, 'Johore, Malaysia', 'What the hell. Tomorrow i got chinese project? 4days in a row need go out so late'), (9342, 702, 'Johor Bahru, Johore', '@Babytiggerx lol why would i miss them sia!!'), (9343, 768, 'Johor Bahru, Johore', '@twitniker onaman! Hook na lahat! #walanghanggan'), (9344, 2586, 'Indonesia', 'itu yang difoto tumblr tadi :p RT @adryanagloriani: AnggyaMegaayu Kamu siapa??? Wkwk'), (9345, 94, 'Johore, Malaysia', '@Juper_Sunior I can''t even open the gmail doc sia, how doT_T'), (9346, 2667, 'Johor Bahru, Johore', 'I''m at Century Square (Singapore, Singapore) w/ 6 others http://t.co/IvXOkCo8'), (9347, 1604, 'Johore, Malaysia', '@AlgerRitoz @dweilun I want!'), (9348, 513, 'Johor Bahru, Johore', '“@SecretsKiller: RT @irdinamah: Why so cold~ ”'), (9349, 38, 'Johor Bahru, Johore', '@lynxsykr damn cute sial. Kiss her thousand times. XD'), (9350, 2557, 'Malaysia', 'Hey, boy makes me crazy อิ มา ซู กู go away #NP'), (9351, 482, 'Johor Bahru, Johore', 'I''m at Blk 302C Punggol Pl http://t.co/Km6AuySO'), (9352, 1956, 'Plentong, Johor Bahru', 'Janji Lepas Rm mkn @ ticket wayang.\n ;)'), (9353, 2586, 'Indonesia', 'besok model nya kak meli (y)'), (9354, 2668, 'Johore, Malaysia', 'Tinamad nmn @ McDonald''s - Aljunied crescent http://t.co/3OwFFEjj'), (9355, 138, 'Johore, Malaysia', 'Sian uhh.'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (9356, 513, 'Johor Bahru, Johore', '“@Angshiting: RT @LynnAVIE That awesome moment when you''re blasting music through your headphones and you can''t hear anything else.”'), (9357, 1837, 'Singapore', 'NOOOOOOOOOOOOO THE PPT JAM !'), (9358, 544, 'Johor Bahru, Johore', '@Evolruoyemllet_ haha, imagine if you faint on that time! Okay!'), (9359, 544, 'Johor Bahru, Johore', 'Sigh, I need to see you, I miss you. Fuckfuckfuck'), (9360, 49, 'Johor Bahru, Johore', '@Vcolizious day ! Fk why must iPhone be touch screen !! #jiwhye'), (9361, 2557, 'Malaysia', '@PPrimo_cUte @CuzzMiiw @tpalita @mild_mildmild @AAeeScallop ฮ่าๆๆๆ วันนี้ เจอเจ๊นงมั้งไหม๊ ?'), (9362, 64, 'Johore, Malaysia', '@MatchafiedHeart haha thanks. but it might just be more effective if you say that tomorrow'), (9363, 2669, 'Johor Bahru, Johore', '@samyHAMMY http://t.co/v7dLasqV'), (9364, 1904, 'Plentong, Johor Bahru', '@ridzuan_dzakir Smpai habis pmr ... Aiyook'), (9365, 357, 'Johor Bahru, Johore', 'Home~'), (9366, 138, 'Johore, Malaysia', 'Tomorrow need go Bukit Timah ... Zzzzzzz'), (9367, 2603, 'Plentong, Johor Bahru', '#GirlsWithNoAss Pakai baju kebaya tak nampak apa Hahahaha xD'), (9368, 1956, 'Johor Bahru, Johore', 'Seriously I''m so3 hungry..'), (9369, 2586, 'Indonesia', 'haaiiiaaooo.-.'), (9370, 2593, 'Plentong, Johor Bahru', 'My schedule ni, full with Zumba saja !!! esok zumba party , next week zumba performance, april lagi la!! berzumba sama RONAN KEATING !wow !'), (9371, 1350, 'Riau, Indonesia', 'serius deh, aku selalu gk bisa ngerjain dua hal dg bersamaan, misal: ngedit foto sambil nulis.'), (9372, 2509, 'Johor Bahru, Johore', '@wordsfallthru or they hv just been here for SS4SG?or he/she is anti-sj or k-pop?'), (9373, 150, 'Johor Bahru, Johore', 'For you loveeee! :) http://t.co/YmspKHkx'), (9374, 1837, 'Singapore', 'If I click close the program , everything gone nooooooooooooooooooo .'), (9375, 1843, 'Singapore', '@jojotanjuann i wish for that tooo!'), (9376, 2560, 'Johor Bahru, Johore', '@__DontBlink hahhahaha anything to let u stop crying lo okay lo:/ heheh ya lah I was really freaking out mah!:('), (9377, 513, 'Johor Bahru, Johore', '@Reichi_Lim same as me Los !:)'), (9378, 2162, 'Johor Bahru, Johore', 'I''m at Beancurd City  http://t.co/2SzsuxEJ'), (9379, 2670, 'Johore, Malaysia', '"Maybe it''s the way you walk ... like a dinosaur" ~chick'), (9380, 2671, 'Pulai, Johor Bahru', 'Having my dinnerr :) (@ Tasek Buatan - Pulai Indah) http://t.co/OVQQDACu'), (9381, 65, 'Singapore', '@isedro96 HAha.'), (9382, 2330, 'Tebrau, Johor Bahru', '@ann_karolyn thankyou boyfriend! &lt;3'), (9383, 2672, 'Malaysia', '@BAM_bamboo1 HI..~!!!'), (9384, 2406, 'Johore, Malaysia', '@arvind_david change picture :('), (9385, 2598, 'Johore, Malaysia', 'Fuck!!!! Starships again!!! Fucking 30th time I heard it this week on the radio!!!'), (9386, 298, 'Johor Bahru, Johore', 'Leg and hands so cold ):'), (9387, 768, 'Johor Bahru, Johore', '@poisonousEMS yung smart ba yung may tri call sa sun?.etc ang sinasabi mo?'), (9388, 94, 'Johore, Malaysia', 'The mc totally looks like a BAR GIRL YEAH&gt;.&lt; Scary guests everywhere..'), (9389, 228, 'Johor Bahru, Johore', '@amirarx hahah, i let you punch my arms. My face to precious, hahah'), (9390, 2162, 'Johor Bahru, Johore', 'I''m at Beancurd City (Singapore, Singapore) w/ 2 others http://t.co/cta76fhK'), (9391, 1101, 'Johore, Malaysia', '@Afifjefri Cari kt cni --&gt; http://t.co/VUOULjB6'), (9392, 1837, 'Singapore', 'Heng okay liao phew'), (9393, 1951, 'Johor Bahru, Johore', 'Don''t tell me something bad it''s gonna happen...'), (9394, 1875, 'Johor Bahru, Johore', '@belindadrs ¿?'), (9395, 2586, 'Indonesia', 'ines lagi menggalau di facebook'), (9396, 1904, 'Plentong, Johor Bahru', '@ridzuan_dzakir Peh lama tu weh hahahahaha'), (9397, 547, 'Johor Bahru, Johore', 'Aiseh, so flattered by her words! ^^ hahaha. http://t.co/PRr22YBu'), (9398, 2444, 'Plentong, Johor Bahru', '@AZARYyaacob Ohh dia buat apa?'), (9399, 2403, 'Johore, Malaysia', 'Elvin Ng Stop Smelling Somthing....'), (9400, 2257, 'Johor Bahru, Johore', '@NurAinAnakJs uat pe twuhh!??'), (9401, 1686, 'Johore, Malaysia', '@ErfanRahim mahal pe. hahaha. akutak nampak price tag. lol. tenga bayar terperanjat jap actually. hahaa. kk pape mention.'), (9402, 228, 'Johor Bahru, Johore', '@AfiqHarraz @adlidanish not bad'), (9403, 2674, 'Johore, Malaysia', 'am i not that open up? O.o'), (9404, 173, 'Johore, Malaysia', '@NYQYQ I will. But ican meet only at like 12.30'), (9405, 2563, 'Plentong, Johor Bahru', '@AmirahSophia Hy amiya!'), (9406, 2509, 'Johor Bahru, Johore', '@jeslynLHJ Does SD chix shop still exist?'), (9407, 2574, 'Riau, Indonesia', 'kangen waktu SD dulu,, rajin pergi ngaji, trus beljar irama,,'), (9408, 2675, 'Kota Tinggi, Johore', '@ucho03 @mariangela145 @krev @villegaswr @mvmm18 Aja!!!.. Vi la foto y solo voy a decir que: Yo no soy.. Claramente es Will por la mano..'), (9409, 702, 'Johor Bahru, Johore', 'Looking at the date &amp; knowing what tomorrow could possibly mean just kills me... Fuck this shit.'), (9410, 1956, 'Johor Bahru, Johore', 'Mama, \n\n What''s special on that dinner table ?? Otw back.\n :)'), (9411, 2676, 'Johor Bahru, Johore', 'So .. What''s sup ?'), (9412, 2677, 'Johor Bahru, Johore', 'Lazing around in my room. http://t.co/EbVezTkb'), (9413, 2678, 'Johore, Malaysia', 'I''m at Wine Connection @ Robertson Walk (Robertson Walk, Singapore) http://t.co/LRZeEd8H'), (9414, 1656, 'Johor Bahru, Johore', '@BabyJoKyu but that one have antenna and watch tv one eh!! Hehe!But I''m getting use to this I-phone..Quite a few things I learn how to use!'), (9415, 1428, 'Plentong, Johor Bahru', 'Bellyache ! Huarghhhzz'), (9416, 2669, 'Johor Bahru, Johore', 'I wore heels for less than 10mins and my ankle hurts. ): ankle please heal fasterrrrr.'), (9417, 1545, 'Johore, Malaysia', 'ZOMG just had the BEST EVER French Toast D'': i feel so happy and dirty (and now sleepy) at the same tiiiiime D'':'), (9418, 1584, 'Johore, Malaysia', 'I''m at Sbs Bus 105 http://t.co/zilmql1j'), (9419, 2676, 'Johor Bahru, Johore', 'Jyeah had a fun day today (;'), (9420, 2252, 'Johor Bahru, Johore', '@HeyEywan x cye suda .kw tngok r t dye balik sabtu ni cmne .kaki dye kne hempap pokok mse kem dlm hutan .'), (9421, 687, 'Johore, Malaysia', '@ShafiqahRashid @greenie_leena nyehaha . Tnye je . Maybe . Anyway , result exam latest ade ?'), (9422, 94, 'Johore, Malaysia', 'Ppl at VIP table add together already 1000++ yrs old LOL.'), (9423, 513, 'Johor Bahru, Johore', '@CaiYue95 Aww :)'), (9424, 2679, 'Johore, Malaysia', 'Still here AHHHHH (@ 71 Robinson) http://t.co/aHsWTysH'), (9425, 150, 'Johor Bahru, Johore', '&lt;3 @PiercingsnTats http://t.co/AcU2IByf'), (9426, 2603, 'Plentong, Johor Bahru', 'K Hajikoh K RT @iekaaaaa Ayahhhhhhhhhhh!!! ika nak topap *jerit dari bilik* Ibu cakap "Ayah kau kat KL lahh hajikohhh" Alaaaaa K ibu. K :'')'), (9427, 551, 'Johor Bahru, Johore', '#GirlsWithNoAss sux'), (9428, 2219, 'Singapore', '@seqingnicole I use the word ____ almost everyday and I don''t see you giving me tips on how to use it less frequently ._.'), (9429, 2642, 'Plentong, Johor Bahru', '@ndyrxoyy Susah nak nyebut lahh . Belajar cakap Terengganu ke ape ?'), (9430, 2602, 'Johor Bahru, Johore', '@XOXO_tricia17 STALKSTALK. ^^'), (9431, 1465, 'Johore, Malaysia', '@aliciamutheardy why don''t like him? Got see his YouTube vids anot? Super funny!'), (9432, 1651, 'Pulai, Johor Bahru', '@erichafitrih kenapa?'), (9433, 2206, 'Johore, Malaysia', '"@TheseDamnQuote: H.U.S.B.A.N.D = [H]e [U]nderstands [S]ituations [B]etter [A]nd [N]ever [D]isappears."'), (9434, 5, 'Johore, Malaysia', 'Did only my EL hwk .'), (9435, 2292, 'Johore, Malaysia', 'WTF MY MOM IS FUCKING RIDICULOUS CANNNN.'), (9436, 716, 'Johor Bahru, Johore', '@tripodmonster BOOKS? Sure not?! :p'), (9437, 2680, 'Singapore', '@atheista With tweeting, comes with great responsibility; with comments supported by facts. :)'), (9438, 2482, 'Singapore', 'ASAL SIVA''S NIGHT HARAPAN TIPIS NAK MAMPOS?'), (9439, 138, 'Johore, Malaysia', '@quishterfur Yeah'), (9440, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs sedihnyaaaa ! Haha ~ alaa tapi ada duit kan nak makan tutti ??'), (9441, 1060, 'Plentong, Johor Bahru', 'Having a great dinner with my family at home just now. So what''s next?'), (9442, 2681, 'Johor Bahru, Johore', 'I''m at Sengkang ClubFITT Gym (Singapore) w/ 2 others http://t.co/iQjY7F5r'), (9443, 2047, 'Singapore', 'Cant wait for this day to end. Cause tomorrow will be just so great~'), (9444, 2641, 'Plentong, Johor Bahru', 'I''m at Traffic Light Yahya Awal http://t.co/I1rT1lDX'), (9445, 1866, 'Johore, Malaysia', '@WhyteConfession no:)'), (9446, 1784, 'Johor Bahru, Johore', 'Shouldn''t have on loud speaker while playing it was blasting my whole room &gt;&lt; .____. I think I have lost my mind.'), (9447, 1258, 'Singapore', 'Ayos!!! :)))) http://t.co/NF4Am9NJ'), (9448, 142, 'Johore, Malaysia', '@sleepyysam Awwww *melts*'), (9449, 1084, 'Johore, Malaysia', '@ckhq (´・ω・`) sleep early and prepare for tomorrow がんばて❣'), (9450, 1545, 'Johore, Malaysia', '@janjizelle woochoooo fishing ka naman janji :p'), (9451, 94, 'Johore, Malaysia', '@YoGabehgabeh open already cannot load the document'), (9452, 2396, 'Johor Bahru, Johore', 'finally home~~~ (@ 603B Punggol Rd) http://t.co/HRbDQeEe'), (9453, 2406, 'Johore, Malaysia', 'Pink &amp; black nails ^^'), (9454, 2257, 'Johor Bahru, Johore', '@FanaJaffar wei da makan?? Haha'), (9455, 1060, 'Plentong, Johor Bahru', 'Smoking time!'), (9456, 2682, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang Sports &amp; Recreation Centre (Choa Chu Kang, Singapore) http://t.co/v6ByNHe0'), (9457, 513, 'Johor Bahru, Johore', 'New da bao !!'), (9458, 2683, 'Johor Bahru, Johore', 'mcm nak demam~ Allah~~ :('), (9459, 1686, 'Johore, Malaysia', '@ErfanRahim alright babyyyy. :D'), (9460, 2642, 'Plentong, Johor Bahru', '@Synsterwaqi Ehhh takutt ahh ! Haha'), (9461, 2219, 'Singapore', '@FatrisFirdani I feel you bro :'')'), (9462, 2638, 'Johor Bahru, Johore', ', hhehheh. Silly girl. @TROLLINGREVOLTS http://t.co/nIL48pTC'), (9463, 2217, 'Johor Bahru, Johore', 'I''m at Sakura International Buffet Restaurent (Singapore, Singapore) http://t.co/RVLIBTx6'), (9464, 963, 'Johor Bahru, Johore', 'I''m at Phyllis Batok的家 http://t.co/fHGnEHHL'), (9465, 2586, 'Indonesia', 'mana ada yaw-_- RT @xBieberBeadlesx ciee~ selenator--&gt; RT AnggyaMegaayu: cie belieber~ RT xBieberBeadlesx RT THIS Dear haters, We'), (9466, 298, 'Johor Bahru, Johore', '@IzzahAzman thanks :'') now coughing and flu like mad.'), (9467, 1562, 'Johor Bahru, Johore', 'I''m at 310B Anchorvale Road http://t.co/EgWOtgM1'), (9468, 2684, 'Johor Bahru, Johore', 'Body pump AND Core conditioning = heaven :) (@ Fitness First w/ 3 others) http://t.co/BNN7aoKX'), (9469, 487, 'Johore, Malaysia', 'ME WANNA CUT HAIR! The blonde or the black hair one? :) http://t.co/PUqfojkR http://t.co/VLx1uq7Q'), (9470, 1060, 'Plentong, Johor Bahru', '@nizammansor Parkinson'), (9471, 48, 'Johor Bahru, Johore', '@OlsenAwesome I will uh. I still gotta Takecare of grandpa man!'), (9472, 285, 'Singapore', '@Nabiha_Aimi No. No you''re not.'), (9473, 1769, 'Plentong, Johor Bahru', '@syafiqahabbas hihi okayokay . same same :)'), (9474, 2330, 'Tebrau, Johor Bahru', '@SyasyaUmar @Melody_Leong Thankyou ah leong and umar!(: hope so:('), (9475, 1784, 'Johor Bahru, Johore', 'And my brother say it was boring cause so fake LOL WHERE GOT D:'), (9476, 94, 'Johore, Malaysia', 'The waitress panic to much LOL. ''May I''-ing all the way~~'), (9477, 2638, 'Johor Bahru, Johore', '@DesireeFattypie @truckofpromises III thought is 0930?'), (9478, 2375, 'Singapore', 'i''d rather eat Haagen-Daz''s vanilla &amp; almonds stick bars than those Magnum''s popsicles.. ^_^'), (9479, 2653, 'Plentong, Johor Bahru', '@hanizahid okok , ea dh smpai :D sruh atiqah jemput kita sekarang :D jgn lupa bentang karpet merah k , lol'), (9480, 2685, 'Johore, Malaysia', 'Waiting for bus to Bedok Bus Interchange... (@ Bus Stop 84501 (Christ Church)) http://t.co/7Mj3xmCa'), (9481, 2686, 'Johor Bahru, Johore', 'I''m at 4m1 http://t.co/ceqP2s53'), (9482, 513, 'Johor Bahru, Johore', 'Hong chao bao ?!'), (9483, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims makan mee rebus . adek ?'), (9484, 2406, 'Johore, Malaysia', '@arvind_david I no know .'), (9485, 2687, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/fDXEdPVq'), (9486, 138, 'Johore, Malaysia', 'WALAO. SO MANY PPL AT THE MRT TO CCK LINE ZZZ'), (9487, 2503, 'Johor Bahru, Johore', '@yrotsreH yup~ I think so~ no choice have to go~'), (9488, 117, 'Johore, Malaysia', '@XaeEn Suree Followed back :)'), (9489, 2688, 'Kota Tinggi, Johore', 'I''m at 460 Corporation Road Parc Vista (Singapore) http://t.co/Z0eyTmil'), (9490, 1139, 'Johor Bahru, Johore', 'I''m at HOME SWEET HOME! ❤❤ http://t.co/NPtWkz5H'), (9491, 1656, 'Johor Bahru, Johore', '@driZzleEsha with god will! He will open his heart and mind to u! He will! :) don''t sad sad, I appreciate u a lot ley! Woots!!'), (9492, 65, 'Singapore', '@Widhiadarii Ok, I DM u already(='), (9493, 1247, 'Johore, Malaysia', 'I don''t deserve getting cheated on , I ain''t that ugly that you can''t just tell me the truth .'), (9494, 2689, 'Johore, Malaysia', 'Bride so pretty'), (9495, 2667, 'Johor Bahru, Johore', 'I''m at The Coffee Bean &amp; Tea Leaf (Singapore) http://t.co/zenDBsze'), (9496, 2413, 'Johor Bahru, Johore', 'Going to Fajar Mac to have my last dinner!!'), (9497, 2145, 'Singapore', '@alisyahamran aisseeehhh~!! alisyah siol!! pri?'), (9498, 2690, 'Johor Bahru, Johore', 'Sabi ko kay Nanay dalan ako ng tsinelas ung mga Spartan basta mura lang pangbahay, eto u @ Where The Hat Is http://t.co/XrjEF0m6'), (9499, 513, 'Johor Bahru, Johore', '@Reichi_Lim Why eh?:)'), (9500, 64, 'Johore, Malaysia', 'once Marie told me blackshot was all about shooting down the enemies which are black guys.'), (9501, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa alah cian nya...'), (9502, 425, 'Johor Bahru, Johore', 'I''m at Yishun MRT Station (NS13) (Singapore, Singapore) w/ 5 others http://t.co/3zRRAeb7'), (9503, 2691, 'Malaysia', '@iipapair กุก็คถ มึง &lt;3 วันไหนว่างๆ ไปเที่ยวกัน เเพรเฟริน @Feicefernz'), (9504, 1875, 'Johor Bahru, Johore', '@belindadrs Gpp'), (9505, 2692, 'Johor Bahru, Johore', '@jOoevil hmmm,supper? LOL (@ KFC) http://t.co/vrHyr7Gi'), (9506, 138, 'Johore, Malaysia', 'Super super crowded in my train'), (9507, 141, 'Johor Bahru, Johore', '@tinzliang ayy susyal. See soon ahh.. Pak yan!'), (9508, 2693, 'Johor Bahru, Johore', 'My perfume, yayness. http://t.co/wcVRxwYX'), (9509, 2563, 'Plentong, Johor Bahru', '@AmirahSophia Kita pelat R, thats why amiyah :P Heheh sehat sejahtera! Amira?'), (9510, 118, 'Johor Bahru, Johore', '@rohanitarohin palm nice! Must take photo : p'), (9511, 1108, 'Johore, Malaysia', 'What the hell are you doing?!'), (9512, 790, 'Johor Bahru, Johore', '@A_chubbycheeks HAHAHAHAAA OKOK!! BRING POPCORN OK??? HEHEHEHEE AND DRINKSSS!!!'), (9513, 64, 'Johore, Malaysia', 'and I believed her for one day until I asked my brother about it!!'), (9514, 5, 'Johore, Malaysia', 'Karaoke sendiri :pp'), (9515, 2006, 'Johor Bahru, Johore', 'Walao old ah lian on board !'), (9516, 2694, 'Malaysia', '@YAL_ELF = = ก๊ะห์ญัลลลลลลล !!! เอาไปเลยยยย อนุญาต เพราะเราไม่กรี๊ดฮีฮี 5555555 =P'), (9517, 1519, 'Johore, Malaysia', 'TWG TEA! :D http://t.co/tFj9LEAk'), (9518, 685, 'Singapore', '@mggykills uy hindi sya busy..madalas magtweet :)'), (9519, 374, 'Johore, Malaysia', 'I''m at Expo MRT Station (CG1/DT35) (Singapore) http://t.co/iBt2JRzn'), (9520, 1108, 'Johore, Malaysia', 'Just give up with me sua.'), (9521, 1861, 'Johor Bahru, Johore', 'i miss ystd already'), (9522, 2603, 'Plentong, Johor Bahru', '@ShukriHani Mensi je ahh. TL Shugha laju banget Mueheheehe xD'), (9523, 2695, 'Johor Bahru, Johore', 'shopping (@ FairPrice Xtra) http://t.co/QE6lLNdZ'), (9524, 2696, 'Johor Bahru, Johore', 'Last Ambulance night driving :) Finally booked out. (@ Tampines Bus Interchange w/ @alveriaserene) http://t.co/tN9pNmIr'), (9525, 2569, 'Johor Bahru, Johore', 'I''m at PALACE♥ http://t.co/7tX9hp63'), (9526, 2697, 'Johore, Malaysia', 'Ini app DrawSomething lagi in banget deh -_- Something banget lah'), (9527, 1108, 'Johore, Malaysia', 'Just give up on me sua.'), (9528, 771, 'Johore, Malaysia', 'Siallah ! Aku tertweet pakai account dier uh -.-'), (9529, 2584, 'Singapore', 'ooo RT @AndreMandor Gapaapa RT @siraden_wardana nap ndree ? RT @AndreMandor beda syarat beda pendapat !'), (9530, 513, 'Johor Bahru, Johore', 'Gan bao !'), (9531, 1873, 'Kota Tinggi, Johore', 'Azli belalang tk abes2..'), (9532, 2598, 'Johore, Malaysia', '@andrewmixo "Like"'), (9533, 2698, 'Johore, Malaysia', 'It''s always a nice feeling to stumble upon a little slice of home when you''re abroad...latest thing I saw were some Jill Bliss cards.'), (9534, 1951, 'Johor Bahru, Johore', 'I made it obvious that I like you too...'), (9535, 2330, 'Tebrau, Johor Bahru', '@aubreybuttowski 3times T-T I fracture my leg badly.'), (9536, 2206, 'Johore, Malaysia', 'Aku melebih'), (9537, 1280, 'Johor Bahru, Johore', 'I''m at  Shermin''s Study Room!  (Singapore) http://t.co/DQbPDNpk'), (9538, 2699, 'Johor Bahru, Johore', 'I''m at 44k Hillside Drive. http://t.co/lV5qFDFg'), (9539, 826, 'Johore, Malaysia', 'I''m at *SCAPE (Singapore, Singapore) w/ 5 others http://t.co/lSRIZYAl'), (9540, 2653, 'Plentong, Johor Bahru', 'knp kau perlu muncul dlm hidup aq ? :''['), (9541, 301, 'Johore, Malaysia', 'I''m at Marina Sq Foodcourt http://t.co/uasWkUno'), (9542, 2206, 'Johore, Malaysia', 'K goodnight.'), (9543, 2612, 'Johor Bahru, Johore', '@Dophdolphin hahas no diff la on ur body any thing also look short der la'), (9544, 5, 'Johore, Malaysia', '@ElmaSwag Aku baru buat EL nye , yg laen blom . Kau leader ? Aku scribe :))'), (9545, 2700, 'Johor Bahru, Johore', '今日 はじめてこれをチャレンジした!! けっこう面白いよ (⌒▽⌒) @ Downtown East http://t.co/JrNQGPTh'), (9546, 2219, 'Singapore', '@seqingnicole Lols to me it''s too late to stop le, everyone knows I''m rude. Even if they know me or not.'), (9547, 2574, 'Riau, Indonesia', '"the most painful is to love someone and never find the courage to let the person know how you feel.”'), (9548, 818, 'Johore, Malaysia', 'Charge my phone for 5 hours straight . hot like shit .'), (9549, 285, 'Singapore', '@Nabiha_Aimi you''re not fat and not so awesome :p'), (9550, 859, 'Johor Bahru, Johore', 'RomeoTan! :D'), (9551, 2701, 'Plentong, Johor Bahru', 'Sebelum bersekutu dengan DAP dan PKR, PAS menuduh UMNO sebagai kafir dan halal darahnya untuk diperangi.'), (9552, 2460, 'Johore, Malaysia', 'When you said you dont love me anymore , you lied .'), (9553, 2509, 'Johor Bahru, Johore', '@wordsfallthru yea..yes in fact it is common plus they r via social network plus young fans can b kinda extreme?lol..we can defend our idols'), (9554, 2638, 'Johor Bahru, Johore', '@TROLLINGREVOLTS http://t.co/bBTlNo5Z'), (9555, 2702, 'Johore, Malaysia', '@onetwothree_abc I help you :)'), (9556, 1737, 'Johore, Malaysia', 'I''m at Jacq''s Home (: (Singapore) http://t.co/WqKVq4CJ'), (9557, 19, 'Johor Bahru, Johore', 'Today onwards I won''t let anyone touches my Hp anymore. Only to those I trust can use my Hp!!!'), (9558, 1686, 'Johore, Malaysia', '@ErfanRahim hehehehheheehheheehe. aku ni kan manis. banyak sangat gula ah .'), (9559, 2703, 'Johor Bahru, Johore', 'Seaweed shaker fries is the best fries ever'), (9560, 2177, 'Kota Tinggi, Johore', '@nixxxy oo labs. surprise!!hehe'), (9561, 2583, 'Johor Bahru, Johore', '@geashcaroline oohh haha. Wess rajin bner haha. Ok deh'), (9562, 142, 'Johore, Malaysia', '@sleepyysam Okay la I will wait to see you during the weekends. Now go rest before work baby. Love kamu ='')'), (9563, 2555, 'Johor Bahru, Johore', '@bJiaYi haha yeah^^! #Todolist'), (9564, 513, 'Johor Bahru, Johore', '@Reichi_Lim Hahaha (Y) Gan bao la !:)'), (9565, 1759, 'Johor Bahru, Johore', 'my collection... #lanyards #colors @ Boy Next Door ... :) http://t.co/5KcXVGAp'), (9566, 2603, 'Plentong, Johor Bahru', 'Ececehh hihi xD RT @NinaaImanina Hahahaha, Aufa kena paksa gunting rambut. Kahkahkah *evil laugh* padan muka, tak handsome dah dia nanti ;p'), (9567, 2704, 'Johore, Malaysia', 'Let''s have a banquet @ The King Louis Grill &amp; Bar http://t.co/1wJiCgqp'), (9568, 64, 'Johore, Malaysia', '@MatchafiedHeart haha shanice the mastermind'), (9569, 771, 'Johore, Malaysia', 'Satu customer ni , Aku bilang 2 for 49 . Tros dier jalan -.-'), (9570, 2451, 'Malaysia', 'A punto de subir al bus de 10h q me llevará al barco de 4h q me dejará de vuelta en Koh Tao. Al fin :D'), (9571, 19, 'Johor Bahru, Johore', '@TimothyTYH lol'), (9572, 2477, 'Johore, Malaysia', 'hahah i am fail at flying kite!! i fly so high then always kena the string fly away , then the kite also fly away -.-'), (9573, 2705, 'Plentong, Johor Bahru', '@SharmiNazira @FatinHsmi ala kau ber#ayang"dgn fatin :O'), (9574, 2638, 'Johor Bahru, Johore', '@DesireeFattypie oh okay! Seeyou ;)'), (9575, 435, 'Johor Bahru, Johore', '@heartwinkle but you still look skinny. :O'), (9576, 2347, 'Johore, Malaysia', '@anaylsor hehehhee. Where you?'), (9577, 2612, 'Johor Bahru, Johore', '@3rosesforyou ur bro 1 yrs old play mahjong liao ar? Wahh not bad not bad got future'), (9578, 2319, 'Johor Bahru, Johore', 'I''m at With Sunny Lee Soon Kyu &lt;3 http://t.co/zQWRYasb'), (9579, 687, 'Johore, Malaysia', '@ShafiqahRashid @greenie_leena update me'), (9580, 861, 'Johor Bahru, Johore', '@LackadaisicalFa haha. You spaced out until where la... Lol'), (9581, 2330, 'Tebrau, Johor Bahru', '@Ahtinggg Play ice and water then fell:x hahahhah. Yeah. Fell jiu fracture my ankle! ):'), (9582, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo so jack esok kau tk ride'), (9583, 2322, 'Johore, Malaysia', '@jaimenicky Goodnight dn bebels ko mas miss kta ☺'), (9584, 2006, 'Johor Bahru, Johore', 'I''m sorry about today !! &gt;&lt; @immagummybearr'), (9585, 2706, 'Kota Tinggi, Johore', '@wahagagamua Ur boobs r too big! Gimme some:)'), (9586, 1173, 'Plentong, Johor Bahru', '@AqilaaAB @Rafidahfirdaus hye sorry kacau. kakak? hahahahahaha fidaa tuaa dah!!! lol'), (9587, 2653, 'Plentong, Johor Bahru', '@hanizahid yupp :D dh sedia kn belom ? cpt lh , dh panas ni kat luar . hahahaa lol *otak gile sbb bosan*'), (9588, 2678, 'Johore, Malaysia', 'I''m at UE Square (Singapore, Singapore) http://t.co/CgxGXic1'), (9589, 2641, 'Plentong, Johor Bahru', 'I''m at Hospital Sultana Aminah JB (Johor Bahru, Johor) http://t.co/WWNmQzGX'), (9590, 5, 'Johore, Malaysia', '@ElmaSwag Tu arhh psl :pp'), (9591, 138, 'Kota Tinggi, Johore', 'LOL #2Lclassouting so many tweets about it :3'), (9592, 826, 'Johore, Malaysia', 'NOT GOING TO EAT DURING SL CAMP (@ Sakae Sushi) http://t.co/fHp6toVs'), (9593, 2680, 'Singapore', '@joshPTRP_RPT I agree! Waste of people''s time taxes. The legislature should be doing more productive work. Damn this government.'), (9594, 2701, 'Plentong, Johor Bahru', 'Ketika itu PAS menggunakan ayat surah Al-Mumtahanah, ayat 9, yang melarang umat Islam menjadikan golongan kafir harbi sebagai rakan.'), (9595, 2319, 'Johor Bahru, Johore', 'I''m at Wif Taengoo &lt;3 http://t.co/kDw0j1u4'), (9596, 117, 'Johore, Malaysia', '@dubstepunicorns sorry la :('), (9597, 2406, 'Johore, Malaysia', 'Watching some ghost buster movie .'), (9598, 1060, 'Plentong, Johor Bahru', '@nizammansor slowly and smoothly'), (9599, 64, 'Johore, Malaysia', '@MatchafiedHeart cash with dad and he''s not home right now hehe :D'), (9600, 72, 'Johor Bahru, Johore', '@sheneedstrength LOL! So bad :/ must support u ma. Then cook and perfect it then u can cook a awesome meal for yourself :D'), (9601, 513, 'Johor Bahru, Johore', 'Geylang !'), (9602, 1084, 'Johore, Malaysia', '@ckhq ('''''' ´ω`) erm....i think you siao liao。。。don''t think too much, just sleep nor...'), (9603, 2509, 'Johor Bahru, Johore', '@wordsfallthru but nt to the extent to harsh criticism against other artistes n fans.. eLfs must show their generous poise..haha'), (9604, 128, 'Johore, Malaysia', 'HELLO IM BACKK'), (9605, 1784, 'Johor Bahru, Johore', 'I don''t know why I suddenly so scared of these games maybe too long no play last time play so much sia'), (9606, 2292, 'Johore, Malaysia', '@u_kisseli sup!'), (9607, 80, 'Johor Bahru, Johore', 'Im studying hard in the smart way .'), (9608, 2319, 'Johor Bahru, Johore', 'I''m at Wif Seohyun &lt;3 http://t.co/dtMcflji'), (9609, 138, 'Johor Bahru, Johore', '@quishterfur @vantsoul @jaehun_brows @iasterday '' Safe and sound '' :3'), (9610, 687, 'Johore, Malaysia', 'Oh boss . Bile kau nak bagi duet incentive ni'), (9611, 2707, 'Johore, Malaysia', 'you want your boyf so what you want me to do ? i dont give a fk seriously ! _l_'), (9612, 2586, 'Indonesia', 'facebook offline :/'), (9613, 2603, 'Plentong, Johor Bahru', 'Sakit hati ahh tengok Pelangi Kssih ni. Ishh.'), (9614, 280, 'Kota Tinggi, Johore', 'I''m at Boon Lay Bus Interchange (Singapore, Singapore) w/ 5 others http://t.co/3Pp7BZxK'), (9615, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz re read the convo la &gt;&lt;'), (9616, 80, 'Johor Bahru, Johore', '@gric_95 lol...'), (9617, 2277, 'Kota Tinggi, Johore', '@pcsyndrome @willllzzz the hell is fatboy ?!'), (9618, 2708, 'Johor Bahru, Johore', 'Lappy sucks ttm (@ HOME) http://t.co/SCCHddRW'), (9619, 2413, 'Johor Bahru, Johore', 'Psps is late dinner @ Fajar Mac haha!!'), (9620, 2346, 'Plentong, Johor Bahru', 'terima je lah didie oh :|'), (9621, 2319, 'Johor Bahru, Johore', 'I''m at Wif Kwon Yul Yuri &lt;3 http://t.co/abWZOXS4'), (9622, 106, 'Johor Bahru, Johore', '@AhXon idk how is it in sp . But for NYP the y470p specs is on par with the hp envy with a difference of 500.'), (9623, 2693, 'Johor Bahru, Johore', 'And then this shirt. Boleh masuk angin sia. http://t.co/6nsXs7Eg'), (9624, 803, 'Johor Bahru, Johore', '@WhyS_o_Serious camp can''t . Cramp can (:'), (9625, 4, 'Johor Bahru, Johore', 'Walau. My stomach haven recover. Still very pain'), (9626, 2365, 'Indonesia', '#7AraStaytogether @pjy1234 1'), (9627, 2330, 'Tebrau, Johor Bahru', '@zhikanqisclumsy Will, ah sim.'), (9628, 859, 'Johor Bahru, Johore', '@H4PPYPILLS Guangming. :)'), (9629, 138, 'Johor Bahru, Johore', 'Bukit batok station now'), (9630, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboi lagi sedapppppppppppppppppppppppppp ^_^'), (9631, 2709, 'Johor Bahru, Johore', 'baby hold on... we''ll get through it together.. @ sa puso mo ako  http://t.co/aWy3BsGM'), (9632, 1345, 'Johor Bahru, Johore', 'I MISS @MrsRayyan15 !! :('), (9633, 2413, 'Johor Bahru, Johore', '@HuilinHeartz psps late la!! Typo..'), (9634, 2219, 'Singapore', '@seqingnicole Yes, even if teachers don''t know me, people like Khidir and Timothy would introduce them to me.'), (9635, 206, 'Singapore', '@DioneKoh tornado? :D'), (9636, 1651, 'Pulai, Johor Bahru', '@erichafitrih ape?'), (9637, 2319, 'Johor Bahru, Johore', 'I''m at Wif Jessica Jung Soo Yeon &lt;3 http://t.co/msZmjTyE'), (9638, 1656, 'Johor Bahru, Johore', '@BabyJoKyu hahaha!! Yeah tt one sickening ah! The typing made my hand pain the whole day one! Type also send the wrong msg to ppl!'), (9639, 1856, 'Singapore', '@u_kisseli wassup ~'), (9640, 2329, 'Johor Bahru, Johore', '@wseokchu hahas ikr!!!!! I take this photo and go cheat seu wen LOL.'), (9641, 285, 'Singapore', '@AnatiSimpson hahaha thats what you think? tak nampak lgy whats underneath :p'), (9642, 1613, 'Johor Bahru, Johore', '@ImZacTan I sleep until 1 plus then wake up then 4 plus sleep again'), (9643, 1528, 'Singapore', '@ngweijin: HAHAHAH!!! why i never kena.'), (9644, 1173, 'Plentong, Johor Bahru', 'saya mahukan cake indulgence Secret Recipe!!! :-('), (9645, 2584, 'Singapore', 'nenek gaul :D'), (9646, 64, 'Johore, Malaysia', '@MatchafiedHeart nope. I don''t know what the topics are. you?'), (9647, 2710, 'Johor Bahru, Johore', 'Nakakangalay mg diamond dash! Db @bluemaverick123'), (9648, 2583, 'Johor Bahru, Johore', '@Lucialimmy fish eye and macro? Haha'), (9649, 138, 'Johor Bahru, Johore', 'Dog talking about me? @quishterfur: bleh 6% batt left. PHONE, Y U NO DRAIN BATT SLOW? k at least btr than my frens phones bwahaha'), (9650, 2711, 'Riau, Indonesia', 'Berhenti berharap'), (9651, 1007, 'Johor Bahru, Johore', 'My stuff is saved woohoo! Thank God! :D'), (9652, 1165, 'Johor Bahru, Johore', '@missakq baobei explain urself!! Who is the father/mother of the baby?!'), (9653, 1331, 'Johor Bahru, Johore', '@Siufungfunggggg its called Metal Detector by the company called "Smart tools"'), (9654, 1194, 'Malaysia', '@Madelineprae เรื่องเดิมๆ เห้ออออ'), (9655, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz NONONONONOO! Is Vanesse say u have hairy legs de. I think. Den I add on orang utan :p'), (9656, 958, 'Johor Bahru, Johore', '@Roseskisses hahahas see you there anot ma :)'), (9657, 2365, 'Indonesia', '#7AraStaytogether @pjy1234 2'), (9658, 644, 'Johore, Malaysia', 'I''m at Dhoby Ghaut Xchange (Singapore, Singapore) w/ 3 others http://t.co/PMKEnOVe'), (9659, 1993, 'Kota Tinggi, Johore', '@u_kisseli hello Eli^^'), (9660, 2705, 'Plentong, Johor Bahru', 'perghhh tengok cerita #HINDUSTUNT TAK BOLEH BLA SAMPAI PUKUL 1.30 PAGI woooooo'), (9661, 1266, 'Johore, Malaysia', '@ChoonHockBleh @assortedbacon @likuhhein WB CHOON HOCK. NICE NEW EGG HAHA. EUGENE, YU XIN LIKES YOU LA. THATS WHY SAY BB WHEN SEE YOUAHA'), (9662, 2593, 'Plentong, Johor Bahru', '@RozanAwie suda ko bincang sama c @AeRon_AzaiRie ka ??? haha'), (9663, 2586, 'Indonesia', 'akui aja kalau itu aku tadi-_- itu ava mu, kok foto aku x_x RT @adryanagloriani: AnggyaMegaayu Ih kok sksd ya, beda sama mukanya wk :p'), (9664, 38, 'Johor Bahru, Johore', 'Your hair grows 1cm - 2cm per month. #fact'), (9665, 206, 'Singapore', 'draw something ;3 MEH. VIPFORLIFE:D'), (9666, 935, 'Johor Bahru, Johore', '@Zongxiannn wth u drawin?!?!'), (9667, 2657, 'Johore, Malaysia', '@ahwenoiii HAHAHAHAH LAUGH DIE ME ! WHICH PART ?'), (9668, 2712, 'Pulai, Johor Bahru', 'Just nice !!'), (9669, 2644, 'Johore, Malaysia', '@iameleine0921 didn''t eat dinner how''s that!?! Hah!! XD'), (9670, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini jom..10 round..bleh tak??hahaha'), (9671, 2509, 'Johor Bahru, Johore', '@wordsfallthru in fact,that article is Against two other sm artistes.Do u find sm biased against the rest to suju??'), (9672, 2006, 'Pengerang, Kota Tinggi', '@JoeyRubberDucky jiayou! :)chill&gt;&lt;'), (9673, 2047, 'Singapore', 'Everything for tomorrow checked!!'), (9674, 2713, 'Johor Bahru, Johore', 'I''m at My Living Room #09-** (Singapore, Singapore) http://t.co/rkwPpuhw'), (9675, 2482, 'Singapore', 'SIVA NIGHT RABAK PE!!!! SUSAH SIA NAK BERDERING PON... YA ALLAH!!'), (9676, 2714, 'Plentong, Johor Bahru', '#1YearAgo im form 4'), (9677, 1165, 'Johor Bahru, Johore', 'Time for some rest. Long day ahead tomorrow. My days are getting shorter huh!'), (9678, 141, 'Johor Bahru, Johore', '@XOgenneXO @tinzliang miss u dolls.. Pak.. Aura lng kayomjan.. Chika nq dto :-)'), (9679, 2555, 'Johor Bahru, Johore', '@bJiaYi lol I see Efes tay in your twitter pic . Her yellow bag -.-'), (9680, 2118, 'Singapore', 'You ask someone how am I?'), (9681, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ you should watch this hehe http://t.co/kzICGlPG'), (9682, 671, 'Johor Bahru, Johore', 'I''m at 359 Admiralty Drive http://t.co/VFIvjG0b'), (9683, 2586, 'Indonesia', 'ngupil bareng mira RT @syalsarama Disekupang enak nya ngapain :/ sama Mira :/'), (9684, 2715, 'Johor Bahru, Johore', 'Lord, please wag niyo po akong iwalay kina Felicia at Richard. T.T'), (9685, 2716, 'Johor Bahru, Johore', '@alexlim_cs lols u act as tarepanda ar'), (9686, 38, 'Johor Bahru, Johore', '@lynxsykr wah sial, what a good mum.'), (9687, 2642, 'Plentong, Johor Bahru', '@ndyrxoyy Ouh Untunglahh . Btw , Goodluck 21 ni ehh .__.'), (9688, 1549, 'Johor Bahru, Johore', 'I''m at KFC (Singapore, Singapore) http://t.co/nmTCwWTW'), (9689, 310, 'Kota Tinggi, Johore', 'I''m at Jurong West St 64 Blk 668D http://t.co/3Tds5mUw'), (9690, 1847, 'Plentong, Johor Bahru', '@Dkamilaa @4ppleGreen apam balik laaa'), (9691, 2717, 'Johor Bahru, Johore', 'For girls weak point is love.'), (9692, 1784, 'Johor Bahru, Johore', 'My mum say I so noob LOLOL'), (9693, 2718, 'Johor Bahru, Johore', '@nikkchow pass nia lol'), (9694, 2644, 'Johore, Malaysia', '@zantiwanti what?'), (9695, 1173, 'Plentong, Johor Bahru', '@Rafidahfirdaus hahahaha betul lah!!!! :-D tkbole bayangkan kita panggil fida akak!! hehehehhe'), (9696, 1812, 'Johor Bahru, Johore', '@TasnimKun Asal tmr will be a fun day fr u ayam???'), (9697, 1430, 'Johor Bahru, Johore', 'Now my bro draw how i look like in the future with derpina.. Hahahha! http://t.co/iUCUvOJc'), (9698, 2715, 'Johor Bahru, Johore', '@u_kisseli Yow.'), (9699, 2705, 'Plentong, Johor Bahru', '@SaraEdrinaa pergh muka ganas and cute #takut'), (9700, 2586, 'Indonesia', 'besom pergi nya sama mama ines hahaha'), (9701, 1686, 'Johore, Malaysia', '@ErfanRahim zzzzzzzzzzzzzzzzzzzz. kk dah bye. ingast pape mentionzzzzzzz.'), (9702, 150, 'Johor Bahru, Johore', '@PiercingsnTats HEEHEE . Was doing this when you texted me just now!'), (9703, 2429, 'Johor Bahru, Johore', '@chiazhiting hahha!! No problem!! :))'), (9704, 733, 'Johore, Malaysia', '@petrinaheartxcz go poly lol if do moderately for a'), (9705, 2426, 'Johore, Malaysia', '@TOP_Bigbanggg Lazy and tired to go down xD'), (9706, 1194, 'Malaysia', 'สรุปเพิ่มรอบสอง ? ทำไมไม่ขยายสถานที่ หรือเปลี่ยนสถานที่'), (9707, 2719, 'Malaysia', '@Aom_methavee ค่าบบ '' ออม &gt;&lt;'), (9708, 2406, 'Johore, Malaysia', 'Why do I feel your irritated with me , sigh'), (9709, 2720, 'Johore, Malaysia', 'I''m here again. Hahaha. (@ East Coast Lagoon Food Village w/ @fictionbones) http://t.co/j1hT3ZhA'), (9710, 2346, 'Plentong, Johor Bahru', 'hey nigga ! haha'), (9711, 1959, 'Johor Bahru, Johore', '@ShuricanShaheel hey :) i wanna see you so badly missing you ryte now ):'), (9712, 2721, 'Johor Bahru, Johore', 'Tried.'), (9713, 2717, 'Johor Bahru, Johore', 'Love can make you betray your friends or even do something that you never imagine you will'), (9714, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 1'), (9715, 141, 'Johor Bahru, Johore', '@chubchaser27 hi friend :-)'), (9716, 1101, 'Johore, Malaysia', '@Afifjefri 0uh , 0k2 ..'), (9717, 2292, 'Johore, Malaysia', 'OMIGOD KYUHYUN Y U SO PERFECT.'), (9718, 2586, 'Indonesia', 'besok pergi nya sama mama ines hahaha'), (9719, 2705, 'Plentong, Johor Bahru', '@FatinHsmi @SharmiNazira yep aku jealous HAHAHA'), (9720, 2701, 'Plentong, Johor Bahru', 'Sedangkan mereka berkawan pula dgn golongan kafir harbi DAP yang menolak penubuhan negara Islam dan menentang dasar PAS sendiri iaitu hudud.'), (9721, 513, 'Johor Bahru, Johore', '@Reichi_Lim Hahah come ! Gannnnn baooooooo !!! ^^'), (9722, 2563, 'Plentong, Johor Bahru', '@AmirahSophia Pehh dh nk sklh! Result habis lahhhhhh T.T'), (9723, 861, 'Johor Bahru, Johore', 'RT “@TheFactsBook: Depression can make you smarter by improving recollection, critical thinking, and raising attention span.”'), (9724, 2721, 'Johor Bahru, Johore', 'Irritated'), (9725, 2599, 'Riau, Indonesia', 'jiwa RT @T3kaT3ki #SusunKata "roh"'), (9726, 2177, 'Kota Tinggi, Johore', '@nixxxy hahaha :p'), (9727, 2723, 'Johor Bahru, Johore', 'May hindi ako magets sa mga posts... Oh dear.. Sakit sa utak'), (9728, 5, 'Johore, Malaysia', 'Ketinggalan zaman pe dher ny -:pp'), (9729, 285, 'Singapore', '@Nabiha_Aimi *tersedak*'), (9730, 2593, 'Plentong, Johor Bahru', '@FelirGiselle Ok2 ... can wear jeans ka ? wahahahhaha'), (9731, 818, 'Johore, Malaysia', 'Oh great can''t on my phone zzz'), (9732, 2724, 'Johore, Malaysia', 'Dinner with &lt;3. :D'), (9733, 2329, 'Johor Bahru, Johore', '@wseokchu HAHAHA IDK TOMORROW I SHOW HER.I see what she will say AHAHAHAHA'), (9734, 1993, 'Kota Tinggi, Johore', 'RT @redbull: Life is short, so live your dream and share your passion.'), (9735, 2725, 'Johor Bahru, Johore', 'RT @JotcyXD Do crazy stuff just now! :p @ZierahIZN @tyqafreak'), (9736, 2151, 'Johore, Malaysia', 'Argh..why is it so hard to upload pictures !'), (9737, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 2'), (9738, 2653, 'Plentong, Johor Bahru', '@hanizahid hahaahaa , ye lh penat terbang kn ? lol x|'), (9739, 1853, 'Johore, Malaysia', '@XinHui_Unique make sure ah!! Haha'), (9740, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 3'), (9741, 494, 'Johor Bahru, Johore', '@FyyMabMr haha...aww~ thanks babe.u too'), (9742, 2219, 'Singapore', '@seqingnicole You see, when teachers don''t know me at all, they will reveal me.'), (9743, 2657, 'Johore, Malaysia', '@ahwenoiii eh which movie'), (9744, 1177, 'Johore, Malaysia', '@SherryFilauria hahahaha! You naughty girl forever! HAHAHAA BOJEL'), (9745, 2118, 'Singapore', '@Hazrulium @LoveRasul I thought Redarus ada tuition'), (9746, 141, 'Johor Bahru, Johore', '@tinzliang haha well... Magaling ka kasi jagpagalit.. Ayyaann'), (9747, 2586, 'Indonesia', 'ines alay ya :p'), (9748, 2719, 'Malaysia', '@BusEPclever ไม่เป้นไรค่าบ ^^'), (9749, 139, 'Singapore', '@Zophia98 Okie.'), (9750, 300, 'Johor Bahru, Johore', '@SmokinJoeDutch meng ape??'), (9751, 2726, 'Johore, Malaysia', 'I''m at 126 (搵到食) Eating House w/ @lsiying http://t.co/RR0kOVuI'), (9752, 2642, 'Plentong, Johor Bahru', '@AsheeqRazak Hahaha Goodluck .'), (9753, 1116, 'Johore, Malaysia', '@AvIsBlAcKaZaAr may I know who you are?'), (9754, 2727, 'Johore, Malaysia', 'At Le Noir — http://t.co/9bHsZGrc'), (9755, 2413, 'Johor Bahru, Johore', 'So hungry going to faint le la!!'), (9756, 1856, 'Singapore', '@u_kisseli do fantalk , please?? i wanna get a reply from you !'), (9757, 2426, 'Johore, Malaysia', 'WHY HE SO SWEET TO HIS GF PIANG EH'), (9758, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 4'), (9759, 441, 'Johore, Malaysia', 'Singapore flyer so beautiful ! (@ Esplanade Mall) http://t.co/xfvS92oD'), (9760, 2587, 'Johore, Malaysia', '@PoniesAndApples HAHAH who in the world is that! oo so chim! aiya can one la you. A2 KID.'), (9761, 771, 'Johore, Malaysia', '@inakayamgoreng I keep receiving your mentions and all . Lol'), (9762, 19, 'Johor Bahru, Johore', 'FU*K MY LIFE!!! I am not interested in any of ur FU*King GAY Shits! Understand! Don''t put me in ur GAY SHITS GROUP! Tats It u CROSS my LINE!'), (9763, 2552, 'Johore, Malaysia', 'This means war... Movie date.... (@ Golden Village w/ 2 others) http://t.co/2da03jE6'), (9764, 2728, 'Johor Bahru, Johore', 'I''m at subway compass point http://t.co/zlT6muE4'), (9765, 846, 'Johore, Malaysia', '@_AmyWeen paper'), (9766, 2006, 'Johore, Malaysia', '@JoeyRubberDucky np!'), (9767, 117, 'Johore, Malaysia', '#annoyed'), (9768, 2718, 'Johor Bahru, Johore', 'Noon ippt, jux now soccer, now run 2 bus stop jux coz I forgot take my slipper from friend car.. Seriously FML'), (9769, 2047, 'Singapore', '@captfabrejas Hahaha My dad ask me bring my old stick only;( But nvm, I will find a way to bring both!'), (9770, 2586, 'Indonesia', 'bb mu kenapa nad? RT @mariazuella: aaaa bb rusak, aku make hape senter gatau deh gmn ini. bentar lagi jempol jadi macho'), (9771, 2118, 'Singapore', '@MuhdFirman :( shhhhhhhh'), (9772, 138, 'Johor Bahru, Johore', '@darezerwee Going choa chu kang now :3'), (9773, 2603, 'Plentong, Johor Bahru', 'Kenapa takde? Shugha tak ehh? Hmm RT @ShukriHani Aku takde kawan mengadu, kawan gembira ramai. Hm'), (9774, 2707, 'Johore, Malaysia', 'i hate it when you act big ! --'''), (9775, 64, 'Johore, Malaysia', '@MatchafiedHeart nope. the twitter location thingy can''t detect Singapore. but you can still see where I am if you use iPhone twitter :)'), (9776, 2426, 'Johore, Malaysia', 'THE GF SO LUCKY TO HAVE HIM :('), (9777, 2719, 'Malaysia', '@TANAGRONSAK ค่าบ ^^'), (9778, 2729, 'Johor Bahru, Johore', '@doubletwist what is this'), (9779, 2730, 'Johor Bahru, Johore', 'I just became the mayor of Amelia''s on @foursquare! http://t.co/g5hFFB6f'), (9780, 2730, 'Johor Bahru, Johore', 'I''m at Amelia''s http://t.co/1VN0Fsgy'), (9781, 1517, 'Johor Bahru, Johore', '@pearlbobochacha all her country man go support her'), (9782, 1469, 'Johor Bahru, Johore', '@harharhaa nyeeeehhhhhh......'), (9783, 2406, 'Johore, Malaysia', 'Major moodswings :/'), (9784, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 5'), (9785, 2731, 'Johore, Malaysia', 'dinner with my girls... (at Arirang Korean Restaurant) — http://t.co/r7AnpVTJ'), (9786, 2329, 'Johor Bahru, Johore', 'Telepathy'), (9787, 206, 'Singapore', '#nowplaying spacebound heh &lt;3 ♥'), (9788, 1190, 'Johor Bahru, Johore', 'Tomorrow speech day rehearsal confirm damn long...'), (9789, 2732, 'Johore, Malaysia', 'Tin I''m gonna hav fever-.-"""" DAFUQ... http://t.co/QThCbglu'), (9790, 771, 'Johore, Malaysia', 'Nary aku sot siket .'), (9791, 117, 'Johore, Malaysia', '#PeopleIWantToMeet @mnhash'), (9792, 2642, 'Plentong, Johor Bahru', '@ndyrxoyy Aku tutup mukaa . Haha k Thanks :)'), (9793, 2693, 'Johor Bahru, Johore', 'I love my new twitcon muahaha.'), (9794, 1173, 'Plentong, Johor Bahru', 'lama tkdgar lagu perfect two heheheheehehe'), (9795, 2617, 'Johor Bahru, Johore', '@Captain_Primus somewhr over the rainbow'), (9796, 2426, 'Johore, Malaysia', 'THIS KIND OF GUYS GOING EXTINCT ALR WAHPIANG'), (9797, 2705, 'Plentong, Johor Bahru', 'KORANG TAKDA #GOSSIP ker yang nak dipertengah kan bosan nye hidup tanpa gossip liar'), (9798, 1024, 'Johor Bahru, Johore', '@KittennyScars but we should respect him as well what?'), (9799, 384, 'Indonesia', 'Ho do tidono ni rohaku\nCinta hian do au tu ho,\nSayang hian do au tu ho Hasian,\nMardongan pe hita Hasian\nNang pe so marrokkap au dohot ho'), (9800, 685, 'Singapore', '@mggykills baka may show ba kayo dito sa singapore? :D'), (9801, 64, 'Johore, Malaysia', '@MatchafiedHeart ohmygod I hate the process of logging into LMS. nevermind. I guess I''m never gonna do it. xD'), (9802, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 6'), (9803, 2733, 'Johor Bahru, Johore', 'I''m at Woody Pub Cafe http://t.co/mS4XguiR'), (9804, 2711, 'Riau, Indonesia', '4th sudah,,skarang smua berakhir,,slamat tinggal semua kenangan,,time to new life (semangat,gogo,gogog,gogog)'), (9805, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Untunglahkan Bf dia punya nama keluar kat TL under Tweet Dia. Mueheehe xD'), (9806, 1656, 'Johor Bahru, Johore', '@driZzleEsha Wow u clever ah! Nolah! I think I''m like that mey?? I''m sad now! I feel like crying out LOUD NOW!! I don''t use u want lah! ❤'), (9807, 2734, 'Johore, Malaysia', 'u know my name u know my past, but not my feeling deep inside me.'), (9808, 1517, 'Johor Bahru, Johore', '@pongyopongyo LOL! Hows ur midterm?'), (9809, 2735, 'Singapore', 'People really need to learn the art of taking a hint.'), (9810, 2329, 'Johor Bahru, Johore', '@wseokchu mr taxi taxi taxi~ u like Korean/japan version?'), (9811, 117, 'Johore, Malaysia', 'Da fug'), (9812, 2460, 'Johore, Malaysia', 'Why stop doing things it took to get her in the first place ?'), (9813, 2735, 'Singapore', 'Here''s a thought. Think.'), (9814, 2641, 'Immigration Checkpoint, Plentong', 'I''m at Singapore Woodlands Immigration &amp; Customs Checkpoint http://t.co/4QCzpozf'), (9815, 2330, 'Tebrau, Johor Bahru', '@flywired WILL DUDE(: Hope so! No thanks:P , I want the experience!'), (9816, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa mcj aq ap hw .aq lg r x tw .hahaha .'), (9817, 2118, 'Singapore', 'I miss potluck picnic.'), (9818, 2566, 'Kota Tinggi, Johore', 'Berak'), (9819, 1060, 'Plentong, Johor Bahru', '@awgezm paksa saya follow twitter dia supaya angka followers beliau bertambah. Zzzz...'), (9820, 629, 'Johore, Malaysia', 'I''m at Orchard Road (Singapore, Singapore) w/ 3 others http://t.co/lRjudGDR'), (9821, 2006, 'Kota Tinggi, Johore', '@Heebluebaby YOU DRIVE hahahahhehehehehehehhahahahahahhaHAHAHAHAHAHAHHAHAHAHHAHHAHAHAHAHHA OKAY... WHEN ?!'), (9822, 2736, 'Johor Bahru, Johore', '@dawnNIENIE @zSquiggles ;)'), (9823, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 7 Tiara'), (9824, 2047, 'Singapore', '@captfabrejas Hahaha yep!!!'), (9825, 2509, 'Johor Bahru, Johore', '@jeslynLHJ nvm... Just go kona beans,. Located at apgueong... Arghh i want gelato nw aft watching that on tv...'), (9826, 2737, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 4 others http://t.co/JVp4aXgG'), (9827, 1784, 'Johor Bahru, Johore', '@BeingSyazwin I have no idea what is that honestly LOL theres two version right the offline story one and online one?'), (9828, 861, 'Johore, Malaysia', '@nobodybutchew that is what I used on my new hires to describe about my company. The only constant thing here is change.'), (9829, 2329, 'Johor Bahru, Johore', '#7arastaytogether'), (9830, 1468, 'Johor Bahru, Johore', '@JeezyJoseph this is the part of me that your never gonna ever take away from me'), (9831, 285, 'Singapore', '@AnatiSimpson hahaha you''re expecting it to hit home but theres a barrier :p #50SaysYouWontGetIt'), (9832, 2738, 'Johore, Malaysia', 'I''m at Blk 135 Bedok Reservoir Rd http://t.co/a4X6Eb5s'), (9833, 142, 'Johore, Malaysia', '@sleepyysam Woah seriously? Break till 7am? Okay Let''s stay up late till tomorrow morning. Hahahahahahaah'), (9834, 2566, 'Kota Tinggi, Johore', '@khaleedazahirah iloveu'), (9835, 513, 'Johor Bahru, Johore', 'He is eating a lollipop whenever I see\nHim !'), (9836, 2451, 'Malaisie', 'Esas personas q necesitan a alguien para ser felices. Esa persona q una vez fui.'), (9837, 1024, 'Johor Bahru, Johore', '@KittennyScars we should respect him as well what? Sometimes we''re too disrespectful.'), (9838, 1784, 'Johor Bahru, Johore', '“@allkpop: SHINee’s ‘Sherlock’ comeback teaser on M! Countdown http://t.co/xy65OPDy Yet another clue at what Sherlock sounds like”'), (9839, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 8'), (9840, 836, 'Johore, Malaysia', '@WanHianKen @cyanrhapsody @yuncaiken @_huiwen oooo preparing wat to wear to come Csc? Lolol :('), (9841, 2292, 'Johore, Malaysia', 'I dont like the idea of having Kyu and Key working with someone from SNSD in a musical.'), (9842, 1517, 'Johor Bahru, Johore', '@yuxian9 yes after getting her poster'), (9843, 150, 'Johor Bahru, Johore', '@PiercingsnTats CANNOT AH BORED WHAT!!!! LOL'), (9844, 2712, 'Pulai, Johor Bahru', '@ShuekChian nx time ask xiao yi bring u all come here !!! Must try ^^'), (9845, 2252, 'Johor Bahru, Johore', 'x tw seh nk wtpe .'), (9846, 2603, 'Plentong, Johor Bahru', '@ShukriHani Kenapa pulak tak sudi wahai Nur Madu Najihah Mohd Isa Ehh salah Nur Hani Najihah Mohd Isa :)'), (9847, 1379, 'Johor Bahru, Johore', '#imstillinlove with myself. #always will be'), (9848, 2653, 'Plentong, Johor Bahru', 'The moment when kita tgh txt dgn seseorg then ad pulak org lain txt kita jugak , haaa kau kelam kabut tak tahu nak reply yg mne satu dulu x)'), (9849, 2403, 'Johore, Malaysia', 'Dylan U KILL Yr OWN DAD! PRO. Unriddle 2.'), (9850, 2617, 'Johor Bahru, Johore', '@Shulingstarzxc_ chinese got hw? :O'), (9851, 2739, 'Singapore', 'Anyone interested visualizing where your Frequent Flyer Points can take you? https://t.co/jUDVwgGP\n#krisflyer'), (9852, 2487, 'Johore, Malaysia', 'Ii'), (9853, 38, 'Johor Bahru, Johore', '@SupYoEee mehh? :3 i know.'), (9854, 1060, 'Plentong, Johor Bahru', '@nizammansor lustfully'), (9855, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 9'), (9856, 2740, 'Johor Bahru, Johore', 'At ayza''s restaurant'), (9857, 1528, 'Singapore', '- i want this RayBans. =] http://t.co/jMpmE1oZ'), (9858, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan helo!'), (9859, 2560, 'Johor Bahru, Johore', '@__DontBlink haha pleaseeee no more ghost show alr:(:(:('), (9860, 2732, 'Johore, Malaysia', 'Slp over seyhh^.&lt; http://t.co/s7W1Mw5E'), (9861, 129, 'Plentong, Johor Bahru', 'Hero #PelangiKasih meninggal? Mne boleh! @tv3malaysia'), (9862, 2741, 'Plentong, Johor Bahru', 'I don''t want the great p0wer, bc0z w great p0wer come great responsibilities..\nI juz want forgiveness'), (9863, 2742, 'Johor Bahru, Johore', 'Yaks. And dia mulai CaiMa-an. Jreng jreng jreng!'), (9864, 2743, 'Johore, Malaysia', 'haha I know you miss me xP “@swaggitbieber: Missing someone out there so badly now.”'), (9865, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo comfirn btol jack'), (9866, 498, 'Johor Bahru, Johore', '@love_parachute OFC ! Kidding , who ?'), (9867, 28, 'Johore, Malaysia', 'U think you very cool ah?'), (9868, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 10'), (9869, 2284, 'Johore, Malaysia', 'Full time Hg 1 - 2 home.. Good game hougang!'), (9870, 769, 'Singapore', 'lagi critain mslah ku di skolah sma @OsfredJefferson . #nangis'), (9871, 420, 'Johor Bahru, Johore', 'hahaha, now I just feel silly saying that in the first place... :) @taeyong @titbiz @pickyin'), (9872, 768, 'Johor Bahru, Johore', '@iloveandypotzki @ohohmario --akong mario na Lang bok! With N! Ayiii! #terimahkasih'), (9873, 2744, 'Johore, Malaysia', 'lol i guess this time is impossible.'), (9874, 2460, 'Johore, Malaysia', 'Banyak org tak sangke that we actually made this far .'), (9875, 1528, 'Singapore', '@Lervonn: how was it?'), (9876, 1786, 'Johore, Malaysia', '@Therisonlyoneme WOOT. WOLVESSSSSSS'), (9877, 720, 'Plentong, Johor Bahru', 'memang ba alif ba ya betul lah orang tu . sampai hati dia campak aku punya abang oyan dalam lautt !! #PelangiKasih'), (9878, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboi muak . bagi kita laaaa . hihi XD mcam mane nak delivery ? adek bagi alamat tak betul . hihi :p'), (9879, 2033, 'Johor Bahru, Johore', 'RT“@baliratih_PWK: http://t.co/RQCBvQzO @uutarguleta hii dear cobain yuk bali ratih produk.Cm 25rb,ad body (cont) http://t.co/lq8WiGQa”'), (9880, 2725, 'Johor Bahru, Johore', 'Supp paper:( daddy not angry! Lucky me:)'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (9881, 49, 'Johor Bahru, Johore', '@Vcolizious Ishhhhh blame touch screen !!!!'), (9882, 4, 'Johor Bahru, Johore', 'Headache headache, i need a good sleep!'), (9883, 2745, 'Johor Bahru, Johore', '@conjelline totoo ba yung nabalitaan ko bro? Hahhaa oo chef chefan na hahahaha'), (9884, 2151, 'Johore, Malaysia', 'At last!;)'), (9885, 1827, 'Johore, Malaysia', 'With the girls! (@ Sky Park w/ 2 others) http://t.co/ARpREt4H'), (9886, 64, 'Johore, Malaysia', '@MatchafiedHeart the only thing I did was cl SRP'), (9887, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 11'), (9888, 803, 'Johor Bahru, Johore', '@SMinzxc eat together la (: I''m hungry too'), (9889, 2118, 'Singapore', 'Lame joke, nak dengar'), (9890, 1528, 'Singapore', '@cookiesanddo @ngweijin: LOL! winner convert them instead! =D'), (9891, 460, 'Johore, Malaysia', '“@adelyneeee: I wonder where souls go after they die. I wonder how they feel, how they see things, how they understand.”'), (9892, 2329, 'Johor Bahru, Johore', '@varicklee what favor???,'), (9893, 141, 'Johor Bahru, Johore', 'Nq.. Indemand ang mga kapatid nating ISKO "skolar ng bayan" batid kong mahirap ang panahon pero laging taga UP ang binibiktima ah... #ingat'), (9894, 2482, 'Singapore', 'AKU MACAM NAK GIVE UP! HOW?'), (9895, 2705, 'Plentong, Johor Bahru', 'HAPPY NATIONAL CONDOM DAY \n....... WHAT THE HELL YOU'), (9896, 2746, 'Malaisie', '@bbellducky (:'), (9897, 2110, 'Johore, Malaysia', '@rajolaurel everyone now are getting gaga over Magnum! :-) wonderful event! Congratz Rajo &amp; Team!Cheers :-)'), (9898, 2747, 'Johor Bahru, Johore', 'Hungry after tennis...'), (9899, 772, 'Johor Bahru, Johore', 'Aku sudi menjadi Batu Nisan mu... “@mya_alena: "Andai esok aku menjadi tanah, sudikah engkau menjadi bunga menghiasi dadaku....?"”'), (9900, 2006, 'Pengerang, Kota Tinggi', '@Heebluebaby you learn driving hmm hahhaahhaahhahahahHAHAHAHAHAHAHAHAHAHAH'), (9901, 5, 'Johore, Malaysia', 'Cute arh ^^ "@_fakeAsmileee_ WEEEEEEE. &lt;33 http://t.co/TzDX5giD "'), (9902, 1637, 'Johor Bahru, Johore', 'Vanessa and Selena?! Ew.'), (9903, 2748, 'Johore, Malaysia', '@Magrate_Biroo I am everywhere ,Hahaa'), (9904, 2749, 'Riau, Indonesia', 'Allah, jangan biarkan aku bergantung dan masuk ke tempat yang bernama hati..... :('), (9905, 2509, 'Johor Bahru, Johore', '@jeslynLHJ @minsawesomeness u shud tell ur granny that he is in korea n u r gg there for studies n him or erm them??'), (9906, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 12'), (9907, 2604, 'Johor Bahru, Johore', '@Kennyzxcs yeaaaaa :) hahahahaha'), (9908, 138, 'Johor Bahru, Johore', '@jaehun_brows THE HORROR !!!'), (9909, 460, 'Johore, Malaysia', '“@jasmine_THF: RT @chasingdistance: Would you understand my silence?”'), (9910, 2219, 'Singapore', '@seqingnicole True... Well I use it so frequently that I don''t even notice that I used it.'), (9911, 1245, 'Johor Bahru, Johore', '@alastair97 she''s not!'), (9912, 861, 'Johore, Malaysia', '@LackadaisicalFa haha. You''re worse than me! Give the customer umbrella. :x LOLOLOL'), (9913, 803, 'Johor Bahru, Johore', '@loveskeepsgoing typo . East ? O:'), (9914, 513, 'Johor Bahru, Johore', 'Lag again ,'), (9915, 72, 'Johor Bahru, Johore', '@wherejoyfills WOOHOO! *-* I LOVE IT!'), (9916, 228, 'Johor Bahru, Johore', '@AfiqHarraz @adlidanish not bad to the score'), (9917, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 13'), (9918, 792, 'Johore, Malaysia', 'Packing ''Tulang Merah'' home for supper! Yum yum! (@ Deen Tiga Rasa @ Beach Rd) http://t.co/wAsBJkFd'), (9919, 2705, 'Plentong, Johor Bahru', '@FatinHsmi @SharmiNazira HEUHEUHEUHEU'), (9920, 768, 'Johor Bahru, Johore', '@poisonousEMS ah di ba yun! Haha #erase lols'), (9921, 172, 'Johore, Malaysia', 'I''m at River View Hotel (Singapore, Singapore) http://t.co/WdEpG4RE'), (9922, 1349, 'Johore, Malaysia', '@sheslley she alert sa fring ga sturya kmi kathy!!!'), (9923, 1749, 'Johor Bahru, Johore', 'I''m at goodview street soccer court w/ @nizambeyond @bazilzxs http://t.co/5jIktNhI'), (9924, 40, 'Johor Bahru, Johore', '@Jyeoj meh ):'), (9925, 720, 'Plentong, Johor Bahru', '@CikKatira betullah . kitatak pernah jumpa awak pun .'), (9926, 223, 'Pulai, Johor Bahru', 'I''m at Vivo@AEON Bukit Indah (Johor Bahru, Johor) http://t.co/D3SQDLMv'), (9927, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 14'), (9928, 1959, 'Johor Bahru, Johore', '@effieeeeeee @shuricanshaheel lol !!'), (9929, 2750, 'Plentong, Johor Bahru', 'Dinner :) (@ Tea Garden) http://t.co/0YxGQT7a'), (9930, 2751, 'Johor Bahru, Johore', 'Home! (@ Searangoon Garden) http://t.co/I4NKviFx'), (9931, 49, 'Johor Bahru, Johore', '@f_cukyou whr got !? U come see mine lols !! My whole class 9/10 paikia =.= imba hor ?'), (9932, 803, 'Johor Bahru, Johore', '@WhyS_o_Serious what''s so fun about camp . :x'), (9933, 494, 'Johor Bahru, Johore', 'Sometimes I need to let go first before things get out of control.'), (9934, 141, 'Johor Bahru, Johore', '@ilovekoreanbbq happybirthday again.. I wish i could send a birthday video for you.. Heheh &lt;3'), (9935, 2741, 'Plentong, Johor Bahru', '@NjwaLatif All the best..'), (9936, 128, 'Johore, Malaysia', '@seventhjanuary hahaha yes im online now'), (9937, 2460, 'Johore, Malaysia', 'Dont expect it to be like a fairytale hun .'), (9938, 223, 'Pulai, Johor Bahru', 'I''m at CROCS@AEON Bukit Indah (Johor Bahru, Johor) http://t.co/caKpJNPe'), (9939, 2752, 'Johore, Malaysia', 'PANICCCCC BUTTON @Evil_With_a_D'), (9940, 2586, 'Indonesia', 'gak ngajak ya, cuktaw-_- RT @syalsarama Ide cemerlang, tpi lg Makan bakso tusuk :p RT AnggyaMegaayu: ngupil bareng mira RT syalsarama Diseku'), (9941, 118, 'Johor Bahru, Johore', '@rohanitarohin ohh ok! V v v nice hor That place.'), (9942, 861, 'Kota Tinggi, Johore', 'HAHAHA RT “@LovinMyTeenLife: Teacher: "Why do I hear talking?" Me: "Because you have ears..? duhhhhh..."”'), (9943, 2753, 'Pulai, Johor Bahru', 'Tapau. (@ Restoran Idaman Sayang) http://t.co/BFxZPFBa'), (9944, 2754, 'Johor Bahru, Johore', '3 more days sch reopens . I''m missin'' that special someone and my darls there. Fasteerrahhh '), (9945, 267, 'Johore, Malaysia', '1000 Places to See before you Die, dumbed down tv, does someone speak english with a French accent need english subtitles? #TLC #justsaying'), (9946, 2406, 'Johore, Malaysia', 'Shall not text you wait you angry :('), (9947, 2755, 'Johore, Malaysia', 'I''m at 9 Old Toh Tuck Rd Kim Soon Lee (Singapore) http://t.co/CfToxecT'), (9948, 2756, 'Johor Bahru, Johore', 'I''m at NK Hairworks http://t.co/sFDtH4oM'), (9949, 1853, 'Johore, Malaysia', '@XinHui_Unique haha u always late de ah?:)'), (9950, 1349, 'Johore, Malaysia', '@KarlaDeModa @lkmariquit @tanyadqueen @rinabanana @sheslley @xing_shing lets fring it!!! alert!'), (9951, 2757, 'Johor Bahru, Johore', 'Not hungry, ordered pizza at 9pm anyway... Y I feel e regular ones looking like in personal size...'), (9952, 2758, 'Johore, Malaysia', '@beattyfac &lt;3 ^_^'), (9953, 1108, 'Johore, Malaysia', 'Whats the problem with you. You tell me.'), (9954, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 15'), (9955, 223, 'Pulai, Johor Bahru', 'I''m at 余仁生 Eu Yan Sang@AEON Bukit Indah (Johor Bahru, Johor) http://t.co/KkIr21w5'), (9956, 513, 'Johor Bahru, Johore', 'Advertisement waste my time !'), (9957, 1796, 'Johore, Malaysia', 'I''m at TANGS Orchard (Singapore, Singapore) w/ 5 others http://t.co/O2gdAD7x'), (9958, 2006, 'Pengerang, Kota Tinggi', 'Oh shit double tweet'), (9959, 2760, 'Johore, Malaysia', '$124 for oranges? @ Meidi-Ya Supermarket http://t.co/SyGeMf3v'), (9960, 48, 'Johor Bahru, Johore', '@OlsenAwesome yes we will!'), (9961, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 16'), (9962, 2761, 'Plentong, Johor Bahru', 'I''m at Idaman Senibong Apartments (Johor) http://t.co/3sQMBZeE'), (9963, 1784, 'Johor Bahru, Johore', 'I didn''t play skyrim cause it was mainstream Kay. I was curious #honest'), (9964, 2762, 'Malaysia', 'mention-mention (@ stand nongkrong) http://t.co/Oc45HG2d'), (9965, 2145, 'Singapore', '@alisyahamran name name name? Maybe my friend. XD'), (9966, 2151, 'Johore, Malaysia', 'Waiting foe the uploadingation.'), (9967, 2586, 'Indonesia', 'biasa aja tuh biasa aja~'), (9968, 2763, 'Johore, Malaysia', 'Super crowded. (@ McDonald''s w/ 5 others) [pic]: http://t.co/izaaDTeB'), (9969, 2764, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 13 others http://t.co/eSPC0qAN'), (9970, 2765, 'Singapore', '一个开始,一个结束。一个结束,一个开始。这样有完没完?'), (9971, 2118, 'Singapore', '@MuhdFirman said to @IsaBentonn; Android ada instagram juga, nama dia lain. I say what _________ . All laughed @chindixlovegood @ADIaiyad'), (9972, 5, 'Johore, Malaysia', '@ElmaSwag Ikr ! Bt i find it funny whn he gets angry . I confirm plus chop will laugh . Kau pun kan3 ? :b'), (9973, 1465, 'Johore, Malaysia', '@aliciamutheardy HAHA he joker mah! Nat Ho where got funny? Dee kosh ftw! :)'), (9974, 1856, 'Singapore', '@u_kisseli do you love pigeon or red bull? LOL'), (9975, 2151, 'Johore, Malaysia', 'For*'), (9976, 2584, 'Singapore', 'haha :D RT @Sistamonikaa kaka tuh tomboy, serem kaya cowo . tapi sttus fb galaauan smuaaa! ._.'), (9977, 2413, 'Johor Bahru, Johore', '@HuilinHeartz Wth so evil sia!! Tsk tsk!!'), (9978, 128, 'Johore, Malaysia', '@kyutegyu ..... Why ":B" huh'), (9979, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 17'), (9980, 49, 'Johor Bahru, Johore', '@f_cukyou now pass 2month Liao.. Can say got around 10 quarrels plus fights ^^'), (9981, 2725, 'Johor Bahru, Johore', '@YEWHUIIIIIzxc really ahh:( qmethod Lehh.'), (9982, 513, 'Johor Bahru, Johore', 'Back !'), (9983, 2450, 'Johor Bahru, Johore', 'My stomach got butterflies again!! FML!!'), (9984, 2033, 'Johor Bahru, Johore', 'Moga ngk di suruh nemenin melek lagi'), (9985, 1108, 'Johore, Malaysia', 'Get real bitch.'), (9986, 2603, 'Plentong, Johor Bahru', 'La baru cmpk dlm laut dah Mati? Selalu cerita Endon tak mati punn. Hilang ingtn je lebih. Mcm ceghita Randy Pangalila brlkon #CintaKirana xD'), (9987, 2460, 'Johore, Malaysia', 'I didnt say its gonna be easy but let me tell you this its gonna be worth it !'), (9988, 2766, 'Johore, Malaysia', 'Ayoko maggabi dhil hnd ako ang kasama mo'), (9989, 165, 'Johor Bahru, Johore', 'I''m at Dad''s blue Car http://t.co/UJ2sdL6U'), (9990, 803, 'Johor Bahru, Johore', 'Since you''ve gave up , I shall do it too . No point waiting .'), (9991, 2512, 'Plentong, Johor Bahru', 'Finally ;) (@ Perjiranan 9 - Taman Air Biru) http://t.co/XMpvhglv'), (9992, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 18'), (9993, 2767, 'Johore, Malaysia', 'I''m at Jalan Besar Stadium (Singapore, Singapore) w/ 8 others http://t.co/29TlApLV'), (9994, 1007, 'Johor Bahru, Johore', 'Looked up from my phone to see my bus drive past me and the driver gave me that "Oops I''m sorry but too bad" look. Argh.'), (9995, 2450, 'Johor Bahru, Johore', 'Taking pics using ipad3 is way too cool!!'), (9996, 1656, 'Johor Bahru, Johore', '@driZzleEsha how dare u say I fake! U want me kiss u a not? Weewit!I can''t help abt the last resort lah..The offer u have me!sorry for tt!'), (9997, 2653, 'Plentong, Johor Bahru', '@hanizahid hahaah bole lh , cube awk try . hahaha bosan lh awk :)'), (9998, 1349, 'Johore, Malaysia', '@KarlaDeModa @lkmariquit @rinabanana @sheslley @xing_shing @jryap28 but u can sleep anytime u want! eat whatever u want :)'), (9999, 2768, 'Malaysia', '@cuttOliptA เติมมันมาเลย์ลิตร 27 สบายกระเป๋ามานิดส์นึง'), (10000, 2530, 'Johore, Malaysia', 'I''m at Marina bay sand shopping mall (Singapore) http://t.co/nQVP775Z'), (10001, 860, 'Johor Bahru, Johore', '@thINNOCENTx3 samantha. Why you so vulgar. Lol'), (10002, 2006, 'Pengerang, Kota Tinggi', 'Argh Saturday have to work damn ..6:30 at sembawang wtf..'), (10003, 1452, 'Johor Bahru, Johore', 'I''m at Ngee Ann Sec Sch (义安中学) http://t.co/MufgGgIV'), (10004, 803, 'Johor Bahru, Johore', 'Shall sleep (:'), (10005, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz walao! Junior care for senior so much *-* where got bully sia? :o don''t bully me la :D'), (10006, 165, 'Johor Bahru, Johore', 'I''m at Blk 780 Lvl16 http://t.co/JorGrG9X'), (10007, 2291, 'Johore, Malaysia', '@_Fangyo JUST GO ! also lazy ~'), (10008, 2584, 'Singapore', 'emank mau kemana aulia ?? RT @Aulia_Damayanti Packing -__-'), (10009, 21, 'Johor Bahru, Johore', '"@alsha3rawy: إن الله تعالى قد علم محمد صلى الله عليه وسلم وامته ان يكونوا غير ماديين, بمعنى ألا تستغرقهم حياة النعمة"'), (10010, 768, 'Johor Bahru, Johore', 'Awesome Brian McKnight! #randomthoughts mga anak Nya ba yung kasama nya!? So talented as well'), (10011, 938, 'Johore, Malaysia', 'Stop making wrong accuses can? ._. I want freedom .'), (10012, 128, 'Johore, Malaysia', '@kyutegyu hahaha no la! Is a samsung droid phones have? ask claudia ! haha'), (10013, 2705, 'Plentong, Johor Bahru', '@FatinHsmi @SharmiNazira kau tak ada gossip ke ape ke ?__+'), (10014, 19, 'Johor Bahru, Johore', 'Can''t u guys understand I''m alrdy flexible enough to be slacking n talkin to u guys. Wat u guys wan!'), (10015, 769, 'Singapore', 'sedih.. trkadang aku mrsa aku tu sebagai teman buangan .'), (10016, 2725, 'Johor Bahru, Johore', 'Gonna make him wait.'), (10017, 129, 'Plentong, Johor Bahru', 'Haissh! Emotional btol tngok citer #PelangiKasih ni lah! Gerammm ngan #Zafrul!'), (10018, 1441, 'Pulai, Johor Bahru', 'Tepon abah, borak2 pasal kerete, bola, baju..haha..'), (10019, 165, 'Johor Bahru, Johore', 'I''m at Nightlife Home http://t.co/wzAnSebN'), (10020, 2769, 'Johor Bahru, Johore', '@njyjcy I might be going Korea end of this year!'), (10021, 503, 'Johor Bahru, Johore', '@MichAnthoney eh? I''m not in JB. Lol'), (10022, 142, 'Johore, Malaysia', '@sleepyysam Now tkde eyebag lagi seh. One night je please? =) Yesterday so many ''unpredictable'' face expressions. hahahahahahah'), (10023, 2758, 'Johore, Malaysia', 'Aku sayang Ifa!!!'), (10024, 293, 'Johore, Malaysia', 'Generation is a bomb!'), (10025, 1361, 'Johore, Malaysia', 'New favourite place! (@ Sauce w/ 4 others) http://t.co/XhAvh9KF'), (10026, 141, 'Johor Bahru, Johore', '@PENSHOPPE gwao nmn ni @ohohmario. ? Kahit anong angulo... #followPenshoppe #lovemario'), (10027, 1349, 'Johore, Malaysia', '@KarlaDeModa @xing_shing @lkmariquit @rinabanana @sheslley lets fring it mga iha!!!'), (10028, 38, 'Johor Bahru, Johore', '@SupYoEee orh okay. My "new laugh" like witch what.'), (10029, 790, 'Johor Bahru, Johore', 'Shall add strawberries to salad nxt time. Hmmm.. Try try. :)'), (10030, 117, 'Johore, Malaysia', 'for a moment i thought wawa naked HAHHAHAHAHAHAHHA'), (10031, 167, 'Plentong, Johor Bahru', 'I''m at Tutti Frutti Kebun Teh (Johor Bahru, Johor) http://t.co/PKv21Gxi'), (10032, 606, 'Johor Bahru, Johore', 'My Raffaello is finishing, can anyone help me to restock them? Please! http://t.co/CYJiUavB'), (10033, 446, 'Singapore', 'Time flies so fast! Gdnight.'), (10034, 769, 'Singapore', 'sudahberusahamenjadisahabatterbaik'), (10035, 2438, 'Johore, Malaysia', 'I''m at LC Food Centre Katong (Singapore, Singapore) http://t.co/Aos1IwW2'), (10036, 99, 'Johor Bahru, Johore', '@Muz_zamil hahaha'), (10037, 2760, 'Johore, Malaysia', 'Another box at $149. @ Meidi-Ya Supermarket http://t.co/5qqiABh4'), (10038, 620, 'Johor Bahru, Johore', 'Bedtime Story w MiaPetra: Yo Gabba Gabba! Be Careful, Friend! @ Hougang Ave 4 http://t.co/fwdh8xld'), (10039, 2611, 'Malaysia', '@aumcomza1 อื้อ'), (10040, 138, 'Johor Bahru, Johore', 'HAHAHAHA @Vantsoul: Haha I think 2L peeps are spamming ppl''s timeline with #2Lclassouting'), (10041, 2770, 'Plentong, Johor Bahru', 'Untungggg ade cazen yg pas dapat gaji blnje mkn (@ Tutti Frutti Kebun Teh) http://t.co/z16z04oQ'), (10042, 2771, 'Johor Bahru, Johore', 'Eating dinner with ah ma and ah gong at coffeeshop:)'), (10043, 1258, 'Singapore', '@jascurtissmith pssssst'), (10044, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Hahahha Lol yelahkann Hihihi. :)'), (10045, 2413, 'Johor Bahru, Johore', '@kenjiisbored lol?? Eh!!'), (10046, 80, 'Johor Bahru, Johore', 'damn..i hate u!!! bongoksss'), (10047, 2574, 'Riau, Indonesia', 'berasa gimana gitu ya @didwi pacarnya laptop bun RT @kaniaamaliaa ini dialog antara laptop dgn pemilik ny buun RT @Suci_TN coo cweeet deeh'), (10048, 2706, 'Kota Tinggi, Johore', '@wahagagamua hey! U r not elephant! They r not too small:3'), (10049, 267, 'Johore, Malaysia', 'Skin whitenning products, one word Why?'), (10050, 790, 'Johor Bahru, Johore', '@Sharkiez RT @UberFacts: Sharks have two penises, but they can only use one at a time.'), (10051, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 19'), (10052, 2772, 'Johor Bahru, Johore', 'Lol the mayor himself is missing. WHERE ARE YOU JEREMY?! (@ Mr.Prata w/ @pinkrule) http://t.co/bIWma55R'), (10053, 657, 'Johore, Malaysia', '@hahazaahir pe lg bertukar la kepada nandos..alah,xtau gak,keje nandos penat kot dari kdai cd tu..fikir2 kan la'), (10054, 1165, 'Johor Bahru, Johore', 'Note to self: must eat mr bean ice cream tml. :)'), (10055, 2773, 'Johor Bahru, Johore', '@AdamTCY aww no more 6am everyday Liao next week hahaha'), (10056, 1959, 'Johor Bahru, Johore', '@meganhiguain you got another camp arh?'), (10057, 28, 'Johore, Malaysia', 'Whenever I''m afraid, i will trust in you. PSLAM 56:3'), (10058, 2774, 'Kota Tinggi, Johore', '@Malbonnington Immense indeed. That''s what I call a vision!'), (10059, 2745, 'Johor Bahru, Johore', '@conjelline ibahin ko na lang ayokong itanong e hahahaha musta na kayo ni balot? Pero yan din nabalitaan ko hahahahhaha'), (10060, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan u realy frm philiphines??'), (10061, 1411, 'Johore, Malaysia', '@ZelleZiao :)'), (10062, 2292, 'Johore, Malaysia', 'What happen to jj why everyone asking her to cheer up!!!!!'), (10063, 1856, 'Singapore', '@u_kisseli Got kena sabo by your members on your birthday? :D Sorry for Singlish language~ XD'), (10064, 2775, 'Plentong, Johor Bahru', '@amirullasyraf ouhh'), (10065, 2776, 'Johor Bahru, Johore', '@NjwaLatif good luck dear and enjoy :-)'), (10066, 2777, 'Kota Tinggi, Johore', 'buat keje payah , tak buat kje p0wn payah jugak , h0w come u . err ~ http://t.co/WdlgwGWs'), (10067, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hehehhe. Terharukann? Papehal ceghita je dgn Shuga :) K Madu ;)'), (10068, 1637, 'Johor Bahru, Johore', '@nabilahsaid tooo awesume to be true;P'), (10069, 1468, 'Johor Bahru, Johore', '@YAPSHUANGYU how was it ???!'), (10070, 420, 'Johor Bahru, Johore', 'RT“@TODAYonline: Fire breaks out at Wisma Atria, witnesses claim blaze began in the shopping mall''s food court http://t.co/cNBYtsNR”'), (10071, 1635, 'Malaysia', '@mejimc ทักทายจ้า ♥'), (10072, 1705, 'Plentong, Johor Bahru', 'Wow, my dinner. Alhamdulillah !! I''m lovin'' it.\n\n- Lamb Chop.\n- Potato Salad.\n- Salad &amp; onions.\n- Apple with bla3. http://t.co/ZJL6s2IK'), (10073, 2642, 'Plentong, Johor Bahru', 'Ish jangan laa mention pasal result SPM . Naik darah tinggi akuu *pengsan* .___.'), (10074, 1178, 'Kota Tinggi, Johore', 'Hanging with the mayor! :) (@ Jurong West St 64 Blk 668D w/ @be_happyhoney) http://t.co/MSZCiJrC'), (10075, 2705, 'Plentong, Johor Bahru', 'please let me go -___________________-'), (10076, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 20'), (10077, 2006, 'Pengerang, Kota Tinggi', '@Heebluebaby kay good . Finally ! 要成家立业哈哈'), (10078, 2586, 'Indonesia', 'sumpah aku ngakak sendiri balas statu ines ngakak banget!'), (10079, 1060, 'Plentong, Johor Bahru', '@nizammansor lameness'), (10080, 1270, 'Johor Bahru, Johore', '@adalilin Omo.那蘇阿姨的下半生,我就不用操心了..'), (10081, 28, 'Johore, Malaysia', '@AngBenny got kick la :( I can''t answer most of them. Not even in textbook !'), (10082, 285, 'Singapore', '@Nabiha_Aimi hahahaha ok Nabiha. Ok. Ive got a show to do, byee :p'), (10083, 1993, 'Kota Tinggi, Johore', 'Am never lucky'), (10084, 193, 'Johore, Malaysia', 'Having delivery tonight just because there''s too much work. Argh. #DBS'), (10085, 1635, 'Malaysia', '@PeangAweez ช่ๆ อร่อยเด 55'), (10086, 1786, 'Johore, Malaysia', '@Therisonlyoneme chris kaman zai meh?'), (10087, 860, 'Johor Bahru, Johore', '@Lavouche like a blizzard.'), (10088, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha tahu takodd . hihi XD okay good cepad cepad daa nganga . arrrrrrrrrrrrrrrr :O'), (10089, 2617, 'Johor Bahru, Johore', '@Shulingstarzxc_ lol passage is on worksheet ??'), (10090, 1177, 'Johore, Malaysia', '@Janazxzxz I haven''t reached home you babycutietalliecrazygurl!!!! Will call u when I get homeh. Woohoo'), (10091, 2778, 'Johor Bahru, Johore', 'Another training tomorrow at 9AM. Baby gonna send me to work since it''s his off day. #BFF #BoyFriendForever'), (10092, 2779, 'Johor Bahru, Johore', '@_xoskeleton nope'), (10093, 2780, 'Johor Bahru, Johore', '@kjunkyu_ watched already! Now watchin ep 14 ^^'), (10094, 2760, 'Johore, Malaysia', '$168 - The highest price we saw. @ Meidi-Ya Supermarket http://t.co/rrPVDyiD'), (10095, 1349, 'Johore, Malaysia', '@KarlaDeModa hulam janai fring acct ky @jryap28 :)'), (10096, 2341, 'Johor Bahru, Johore', '@titserJOY part 2?! ahaha'), (10097, 2705, 'Plentong, Johor Bahru', 'kalau aku KEREK kau nak buat ape ahhhh ?????'), (10098, 1773, 'Johor Bahru, Johore', '@fayefeii U ARE THE PET , HE LIKE THE PET (YOU) A LOT'), (10099, 1853, 'Johore, Malaysia', '@XinHui_Unique hahaha ask people morning call lor :P'), (10100, 1435, 'Johor Bahru, Johore', '@Sshiminee @bikinidale @kellyleeeeee @prod1gyizme @xpentagon 我不可以lehy. ):'), (10101, 2781, 'Johore, Malaysia', 'Good to be back ^^ (@ Crescent Girls'' School) http://t.co/EPquBIlV'), (10102, 2782, 'Indonesia', 'alone again http://t.co/ikuGhIm2'), (10103, 193, 'Johore, Malaysia', 'pendiiiiiiiiiiing (@ DBS Asia Hub w/ @jabslim) http://t.co/3Cgsln8L'), (10104, 13, 'Singapore', 'this feels like the penultimate part of a story where all over the world, differences are resolved all the same way. http://t.co/Uz5o7q3Q'), (10105, 2413, 'Johor Bahru, Johore', '@HuilinHeartz really?? Ask her follow me Lei!! Haha..'), (10106, 21, 'Johor Bahru, Johore', 'Holiday dahabis. Besok-Sunday ? Camping kt skola. Hahai pbl bro'), (10107, 1856, 'Singapore', '@Dongho94 oppa, do @u_kisseli got sabo by you guys on his birthday?'), (10108, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini still kompiusss...haha..ntah2 3 round je'), (10109, 2783, 'Johore, Malaysia', 'awesome ULG at sentosa ended! Having dinner tgt!(: (@ VivoCity w/ 19 others) http://t.co/ujkFfxyH'), (10110, 2574, 'Riau, Indonesia', 'hujannya datang perlahan-perlahan yaa,, tapi mau lebaat ini,,'), (10111, 1245, 'Johor Bahru, Johore', '@alastair97 the boss let her work as cleaner or assistant etc instead~~~ LOL'), (10112, 2771, 'Johor Bahru, Johore', 'LOL! They are like talking to me whilei just eat.. Hahaa'), (10113, 1635, 'Malaysia', '@PuyZooZa__Za ฟอลกลับล่ะจ้ะ .'), (10114, 2586, 'Indonesia', 'amoy upload foto'), (10115, 1847, 'Plentong, Johor Bahru', '@elyshaIstishad haha tadi kau kena balik awal masa bowling.. dulu kau kena balik awal masa wayang... haha biasa ahh'), (10116, 1812, 'Johor Bahru, Johore', '@TasnimKun Kay...Pantat...'), (10117, 28, 'Johore, Malaysia', '@AngBenny u finish alr meh !'), (10118, 2758, 'Johore, Malaysia', '@iamnurulnadiah whyyyy'), (10119, 1786, 'Johore, Malaysia', 'Some guys look beautiful. In a good way. not gay way.'), (10120, 141, 'Johor Bahru, Johore', '@ohohmario look good in red.. Pls RT or mention.. Plssss'), (10121, 1993, 'Kota Tinggi, Johore', 'Eli never reply me&gt;&lt; even in this account.haish haish haish'), (10122, 1635, 'Malaysia', '@suwananTar1 ฟอลกลับล้ะจ้ะ'), (10123, 771, 'Johore, Malaysia', 'Best nye ! Leh pakai pape jeans aku nak !'), (10124, 129, 'Plentong, Johor Bahru', 'Lets bygones be bygones :)'), (10125, 1196, 'Kota Tinggi, Johore', 'I''m at Pulau Tekong BMTC 3 S Coy http://t.co/PmsfSxVK'), (10126, 952, 'Johore, Malaysia', 'Otw home. (@ Somerset MRT Station (NS23) w/ 3 others) http://t.co/dQwSwJnM'), (10127, 2677, 'Johor Bahru, Johore', 'Lazing around... As usual. (@ Blk 915 Tampines St 91) [pic]: http://t.co/04hiOFug'), (10128, 64, 'Johore, Malaysia', '@eternalbimbo_ I bring shit color and blue colour one ah.'), (10129, 1635, 'Malaysia', '@mejimc นัทจ้ะ - เธอล่ะ ?'), (10130, 2784, 'Johore, Malaysia', 'Fml! OT tmr! Due to new ipad launch!'), (10131, 13, 'Singapore', 'that was a failed description of the mental picture the track evokes for me. I tried!'), (10132, 64, 'Johore, Malaysia', 'yay sleep.'), (10133, 2365, 'Indonesia', 'Please help us to trend this #7AraStayTogether Thanks ^^'), (10134, 2419, 'Johor Bahru, Johore', 'Sheeeezzzzzz... Why download so slow'), (10135, 2785, 'Singapore', '今 チョ 眠い. Goodbam! Bbyong~'), (10136, 2705, 'Plentong, Johor Bahru', '@FatinHsmi bagus lh dia org ingat seorang PELAJAR CONTOH for clasS 2A'), (10137, 2460, 'Johore, Malaysia', 'Sometimes the strongest people in the morning are the ones that cried themselves to sleep.'), (10138, 2586, 'Indonesia', 'so many have followers! (:'), (10139, 2359, 'Johore, Malaysia', 'I''m at 128, Geylang East Central (Singapore, Singapore) http://t.co/FOc0pzNv'), (10140, 375, 'Riau, Indonesia', 'seeppp :) ntarr aku promote kok :) @WORLD_of_RISE'), (10141, 1997, 'Johor Bahru, Johore', 'I''m at Guorong Home (Sengkang) http://t.co/nBIXkpbW'), (10142, 2748, 'Johore, Malaysia', '@Magrate_Biroo Belanjaa ?'), (10143, 109, 'Johore, Malaysia', 'Yamapi = 脚麻痹! LOLOLOL'), (10144, 141, 'Johor Bahru, Johore', 'RT "@disneywords: Why is my reflection someone I don''t know? –Mulan"'), (10145, 720, 'Plentong, Johor Bahru', 'berkkk . dia ni buat suspen je .'), (10146, 771, 'Johore, Malaysia', 'But you never did . Hahahahaha ! Okay fiq ! Tu line tok kau .'), (10147, 2705, 'Plentong, Johor Bahru', '@FatinHsmi @SharmiNazira YEP'), (10148, 1856, 'Singapore', 'no chance to get @u_kisseli ''s reply.. T_T /sliently praying for his reply.../'), (10149, 1635, 'Malaysia', '@ammieboom ทักทายจ้ะ .'), (10150, 1784, 'Johor Bahru, Johore', '@BeingSyazwin I playing the story one but I barely did anything LOLOL'), (10151, 2118, 'Singapore', 'I have not lepak with @JuliaAzaini yet.'), (10152, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 21'), (10153, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan thtš cool having friends frm other country:-)'), (10154, 2070, 'Riau, Indonesia', 'bundaaaaaaaaaaaa ayolah ke disctarra beli 1hari yg cerah nya kak @BUDIdoremi ;((('), (10155, 2259, 'Pulai, Johor Bahru', 'Just finish eating dinner at some Cafe :B SHOOO FULL NOWW'), (10156, 2778, 'Johor Bahru, Johore', 'I''m so blessed that I got 3 off days this week.'), (10157, 2517, 'Johor Bahru, Johore', '@Poppyflossy you post things like so unhappy.'), (10158, 117, 'Johore, Malaysia', '@DreaamEATER once you''re home do the status thing....'), (10159, 1379, 'Johor Bahru, Johore', '@__duckey hello LOL. What did you draw? ^.^ looks like gums or teeth lol'), (10160, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 22'), (10161, 2219, 'Singapore', '@seqingnicole God... HOW TO STOP?!'), (10162, 2171, 'Johore, Malaysia', '@zhxrxxf @ammarliomilo larh..kk..paper picit'), (10163, 1194, 'Malaysia', 'แล้วกูจะได้ DVD มั้ย เหยดดดดดดดด'), (10164, 2786, 'Johor Bahru, Johore', 'Everytime im with you, I just want to see you reach home safely... Nothing more than that.'), (10165, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz Nahhh Peisha so nice, where will kill us~ we are nice ppl too *-*'), (10166, 2787, 'Johore, Malaysia', '@Tigerxanne no!'), (10167, 2788, 'Johore, Malaysia', 'I''m at Plaza Singapura (Singapore) w/ 16 others http://t.co/Kr9IkWfq'), (10168, 2563, 'Plentong, Johor Bahru', 'Kembaq Emy Rahman ni. Hahaha'), (10169, 2055, 'Johore, Malaysia', 'I dont feel good about tomorrow. :('), (10170, 487, 'Johore, Malaysia', '@veda_voldavolka no the black one won''t! Im thinking of cutting that. But the behind a bit longer. Cos too short wear skirt a bit weird HAHA'), (10171, 80, 'Johor Bahru, Johore', '@amyline95 @gric_95 ni hahh...hahaha.... abis la x bole nak kutuk2 dia lagi..hehe'), (10172, 2745, 'Johor Bahru, Johore', '@conjelline yoko idm gusto ko dito hahaha musta na kayo balot? Totoo ba na hindi na kayo ok? O ginagago lang ako nun? Hahahha'), (10173, 2236, 'Singapore', 'tmr must chiong do hmwk . if possible do all so sat. &amp; sun. can rest . hopee so ? lolol :p bt i think cmi la . so many siaa -.-'), (10174, 685, 'Singapore', '@mggykills bakit wala ka yata girlfriend? :)'), (10175, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 23'), (10176, 1856, 'Singapore', '@u_kisseli OPPA, got sabo by your members on your birthday??? :O'), (10177, 1720, 'Johor Bahru, Johore', '@MrGuoHui what time?'''), (10178, 771, 'Johore, Malaysia', 'I nak kulit foreskin I alek Leh ?'), (10179, 12, 'Johore, Malaysia', 'Oh yeah! &lt;3 Can tweet again. ;)'), (10180, 1379, 'Johor Bahru, Johore', '@sotongmehh SHUT UP ☺'), (10181, 772, 'Johor Bahru, Johore', 'Batu bata di atas tanah... Hahaha “@mya_alena: @AdikHasrida awwwwwww so sweetttt! Thank u! Kau jd batu nisan, Is jadi apa eh?”'), (10182, 2118, 'Singapore', '@MuhdFirman I know but I am not that young and handsome like you, senang nak dapat'), (10183, 2789, 'Johor Bahru, Johore', 'Y u no go hell ?'), (10184, 2790, 'Riau, Indonesia', 'kebaikan MU..\nkesetiaan MU..\ntiada tara nya..\n^^\n#semakincinta'), (10185, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz I care for u so much! Walao! U just now tell me to watch out D:'), (10186, 2277, 'Kota Tinggi, Johore', '@pcsyndrome @willllzzz very far .__.'), (10187, 2791, 'Johore, Malaysia', '@carrotdress hahahas(: he joker ma'), (10188, 720, 'Plentong, Johor Bahru', 'eleh naim daniel . ;p'), (10189, 38, 'Johor Bahru, Johore', '@SupYoEee orh okay.'), (10190, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 24'), (10191, 2792, 'Johore, Malaysia', 'Night cycling (Y) (@ East Coast Park) http://t.co/VrR6FCrE'), (10192, 2419, 'Johor Bahru, Johore', '#PeopleIWantToMeet my Ukiss oppars &lt;3'), (10193, 2730, 'Tebrau, Johor Bahru', 'Stupid or what when you get a very nice guy thm want to leave him? K cool.'), (10194, 1856, 'Singapore', '@u_kisseli ever got sabo-ed from your members on your birthday?? XD im dying to know~~ Kekekeke~!'), (10195, 2638, 'Johor Bahru, Johore', '@InsanePuny accidents do happen (;'), (10196, 2118, 'Singapore', '@ADIaiyad @MuhdFirman @IsaBentonn @chindixlovegood Instakilogram'), (10197, 815, 'Johore, Malaysia', 'I''m at EpiCentre (Apple Store) (Singapore, Singapore) http://t.co/YueKedI9'), (10198, 2780, 'Johor Bahru, Johore', 'Boo! Hahaha im boredd. http://t.co/tFvSlnTu'), (10199, 860, 'Johor Bahru, Johore', '@sutrixn lol then no more already.'), (10200, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @jryap28 @lkmariquit @rinabanana @sheslley kasal tani ni kathy! kaso wala na dayun!'), (10201, 2584, 'Singapore', 'RT Jga :D @AndreMandor RT @siraden_wardana ooo RT @AndreMandor Gapaapa RT @siraden_wardana nap ndree ?'), (10202, 2603, 'Plentong, Johor Bahru', '@ShukriHani Yeah Shugha ada Bebi dah ehh? Hihik. Haa betul ahh kenapa tak percaya? :)'), (10203, 2793, 'Malaysia', 'ใปว่ายน้ำ กลับมากินพิซซ่า คงจะผอมแหละ ^^'), (10204, 2794, 'Johor Bahru, Johore', 'I''m at Blk 632 Choa Chu Kang North 6 (Singapore) http://t.co/Jb6cPE5a'), (10205, 700, 'Johor Bahru, Johore', 'RT @AnnaZnl: Buat homework je ngantuk.'), (10206, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 25'), (10207, 1483, 'Johor Bahru, Johore', '널 사랑 하겠어 ❤'), (10208, 1194, 'Malaysia', 'ไม่คอนรอบสอง ไม่เอาคอนรอบสอง เปลี่ยนสถานที่โว้ย!'), (10209, 508, 'Johore, Malaysia', 'I''m at Toa Payoh Bus Interchange (Singapore) w/ 6 others http://t.co/Ej4QUhgT'), (10210, 1786, 'Johore, Malaysia', '@Therisonlyoneme WTF?! so ex for what.'), (10211, 700, 'Johor Bahru, Johore', '@katydara Idk leyyyy, just to be safe take another one lor'), (10212, 2795, 'Johor Bahru, Johore', 'ehwal islam today is super interestingg!!! #NowWatching'), (10213, 2796, 'Johore, Malaysia', 'NB,y u smoke bside me,damn smelly lehz'), (10214, 1993, 'Kota Tinggi, Johore', '#nowplaying Someday u-kiss i dont know why i love this song! i lurf its lyrics'), (10215, 2797, 'Johor Bahru, Johore', 'At airport @ Terminal 1 Departure Hall http://t.co/Arj1yjyY'), (10216, 2798, 'Johor Bahru, Johore', 'I''m at The Poo''s http://t.co/GkP4S9hg'), (10217, 1656, 'Johor Bahru, Johore', '@driZzleEsha it''s my I offer u lah! It''s the offer u have me.. So u rejecting me ahh? Oklohr! Can!! I''ve always been straight! U spoil me!'), (10218, 10, 'Singapore', 'Hope my throat heals ASAP. I wanna eat KFC.'), (10219, 2799, 'Riau, Indonesia', '@neeya_fitria gmana caranya kak? ajarin dunk.. ade mo nambah berat badan juga.. RT'), (10220, 768, 'Johor Bahru, Johore', '@iloveandypotzki @ohohmario xiexieni ah! #kasamanakodun :)'), (10221, 2574, 'Riau, Indonesia', '@didwi hah,,iya wii,bentar lagi nympe tuu,, hujannya malu-malu,,,'), (10222, 2779, 'Johor Bahru, Johore', '@_xoskeleton doesn''t seem like it'), (10223, 2800, 'Plentong, Johor Bahru', 'Wife sy yg makan, sy on diet! Wakakakakak (@ Restoran Nasi Kandar Shafina Johor) [pic]: http://t.co/zY9KHe9N'), (10224, 1108, 'Johore, Malaysia', 'I wonder if there''s'), (10225, 2801, 'Johore, Malaysia', 'I''m at Blk 246 Kim Keat Link (Singapore) http://t.co/gRZrz0Mx'), (10226, 2429, 'Johor Bahru, Johore', '@chiazhiting can''t :(( must wait till pay come in :)'), (10227, 2802, 'Johore, Malaysia', 'Solved two big problems at work today, one of them involving OCBC. Was tough to move on, but finally did. #doubleconfirm life is good!'), (10228, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan im frm singapore. :-)'), (10229, 2730, 'Tebrau, Johor Bahru', '"@IMANSHAHbucks: Why must you be so swag?"'), (10230, 2586, 'Indonesia', 'now you lose!!!! *bawa pistol*'), (10231, 744, 'Johore, Malaysia', 'I''m at *SCAPE Playspace http://t.co/s0rVDXtL'), (10232, 2653, 'Plentong, Johor Bahru', '@hanizahid tgh tggu korg bentang kn karpet merah lh :D nak masok ni , hahahaha lol x) tgh onl2 tweet2 je , awk ?'), (10233, 1856, 'Singapore', 'dying to know whether @u_kisseli got sabo by ukiss members on birthday anot... :( /kinda wish he got sabo.. LOL'), (10234, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 26'), (10235, 2803, 'Malaysia', '@Thamonwan_Aom คิดถึงออมเหมือนกันนน &gt;3&lt;'), (10236, 2804, 'Kota Tinggi, Johore', '@_gandalicious ayan mo nun pahinga ka hahaha'), (10237, 150, 'Johor Bahru, Johore', '@PiercingsnTats so fierce D: I already reaching home Liao la noob!'), (10238, 2040, 'Plentong, Johor Bahru', 'I just became the mayor of Sri Panglima C on @foursquare! http://t.co/l7t6z4x7'), (10239, 2040, 'Plentong, Johor Bahru', 'I''m at Sri Panglima C (Johor Baharu, Johor) http://t.co/AeFW8mK3'), (10240, 2805, 'Malaysia', '^_^ (@ น้ำเต้าหู้หน้ารพ.หาดใหญ่) http://t.co/dB9LzJvB'), (10241, 633, 'Johor Bahru, Johore', 'I''m at Dion''s Crib !  http://t.co/SI83lC4v'), (10242, 2806, 'Johor Bahru, Johore', 'I''m at SMRT Buses: Bus 187 w/ @althjt http://t.co/AKQUvyV9'), (10243, 1349, 'Johore, Malaysia', '@KarlaDeModa @jryap28 @lkmariquit @rinabanana @sheslley @xing_shing thats more i like gd! kng natamad ko saka lng ko babaw kg mag power nap!'), (10244, 860, 'Johor Bahru, Johore', '@Lavouche like 3,6.'), (10245, 2798, 'Johor Bahru, Johore', 'I''m at My Lovely Tortoise Shell (Singapore) http://t.co/8CyGCn1T'), (10246, 1786, 'Johore, Malaysia', 'We rock and we roll'), (10247, 375, 'Riau, Indonesia', 'heyy semua RISE yang kece2 :D go follow @WORLD_of_RISE , serulohh grupp nya asikk asikk :D yang nge follow aku doain ktemu @riostevadit :*'), (10248, 2804, 'Kota Tinggi, Johore', '@_gandalicious kain lang ng kain hahahaha'), (10249, 2231, 'Johore, Malaysia', 'Haha its weird when u get to an age where your parebts want to drink with u :P'), (10250, 2574, 'Riau, Indonesia', 'sabar ya dwiii,, :( @didwi @kaniaamaliaa'), (10251, 2118, 'Singapore', 'Even though I did not do my work as planned, but I wasted time with people I adored.'), (10252, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 27'), (10253, 1270, 'Johor Bahru, Johore', '@adalilin haha... 也是..'), (10254, 1993, 'Kota Tinggi, Johore', 'Sad want cry cz Eli never reply me:''('), (10255, 206, 'Singapore', 'seeing the album agn HAHAHA SPAZZ.'), (10256, 2330, 'Tebrau, Johor Bahru', 'When I need somebody he was there making me smile and now he''s gone I feel lost.'), (10257, 2758, 'Johore, Malaysia', '@iamnurulnadiah u mean u still using it?'), (10258, 2799, 'Riau, Indonesia', '@Neansy_Woman @mei13_ MAU AJALAH, ADE JUGA GA BAKALAN NYONTEK KOK..'), (10259, 2807, 'Johore, Malaysia', 'Dont envy my real natural lashes. Lol :P life''s quite boring with bf @ Buona Vista MRT Station (EW21/CC22) http://t.co/hfZuZnvt'), (10260, 2706, 'Kota Tinggi, Johore', 'Suddenly heart pain! Getting heart attack soon?! If I die young, bury me in satin, lay me down on a bed of roses...'), (10261, 860, 'Johor Bahru, Johore', 'Going homeeeeeee. Why so sian. Me wanna bathe. Feel so itchy.'), (10262, 1108, 'Johore, Malaysia', 'You exist. But do you live?'), (10263, 2702, 'Johore, Malaysia', '@onetwothree_abc LOL! I won''t, it shall be you that vomit blood!'), (10264, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 28'), (10265, 2808, 'Johor Bahru, Johore', 'Ehhhh ! Seram lah cite ni . Ya allah !! :( http://t.co/8qT4wDiH'), (10266, 2481, 'Johore, Malaysia', '@EpsilonYeo People got bf liao la. cannot'), (10267, 28, 'Johore, Malaysia', '@AngBenny I also! I do cause no choice must do..'), (10268, 2809, 'Malaysia', 'เรียนวิทย์กับสังคมจบแล้วไม่อยากเรียนอันอื่น!'), (10269, 2810, 'Plentong, Johor Bahru', '"@seth_harry: Game apa yg best tuk blackberry ek??"gameboy...'), (10270, 1194, 'Malaysia', 'ตอนนี้กูไม่ต้องการเหตุผล กูจะใช้อารมณ์555555555'), (10271, 2705, 'Plentong, Johor Bahru', 'shut up you!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'), (10272, 13, 'Singapore', 'if I were able to play Draw Something, I would attempt to draw conclusions. for srs.'), (10273, 285, 'Singapore', '@AnatiSimpson alalala it was a joke la ._.'), (10274, 2557, 'Malaysia', 'เมนชั่น เงียบไปไหน - -'')'), (10275, 2330, 'Tebrau, Johor Bahru', 'Everyone is beautiful.'), (10276, 1468, 'Johor Bahru, Johore', '@YAPSHUANGYU the guy cousin ah ?!!?! HAHAHHAH HOT LIFEGUARD WORRRR'), (10277, 1873, 'Kota Tinggi, Johore', '@ChikaaFeqaa cian sgt2.. :(\nHahahaha!!'), (10278, 115, 'Johor Bahru, Johore', '@SuperSammi HUNGER GAMES KJZUANSOAOSONEWNJAKAPPSI@/&amp;!''dolandkwouwopqsj{*_¥_ O_O'), (10279, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims humm nyumnyummm sedapnyaaaaaa &lt;3'), (10280, 293, 'Johore, Malaysia', '@vincentimbe btr than mine'), (10281, 482, 'Johor Bahru, Johore', 'I''m at Lentor Ave http://t.co/GgBKx1SL'), (10282, 2748, 'Johore, Malaysia', '@Magrate_Biroo sukaa benoo diaa --'' Insya~~~~~'), (10283, 2811, 'Johor Bahru, Johore', 'I''m at Blk 575 Woodlands Drive 16 http://t.co/8mviIQqM'), (10284, 768, 'Johor Bahru, Johore', 'RT“@Kristoff0428: Hahhaha! Freaky but genius!!! A celphone statue GB3 #atm http://t.co/CA08F1az”--astig! like like!'), (10285, 2701, 'Plentong, Johor Bahru', 'ayat 8 di surah Al-Mumtahanah yang menggariskan kita boleh berkawan dengan kafir zimmi yang tidak memerangi Islam!'), (10286, 138, 'Johor Bahru, Johore', 'What an epic night at harleem''s house hahahaha'), (10287, 138, 'Johor Bahru, Johore', 'Took so many photos of handsome Aaron :3'), (10288, 1991, 'Johore, Malaysia', '@DurgiB xx bby http://t.co/fPDF1K4c'), (10289, 98, 'Johor Bahru, Johore', 'Aku tbh dah malas nk main draw smth lol'), (10290, 1108, 'Johore, Malaysia', 'Cheers for the add?'), (10291, 2458, 'Johor Bahru, Johore', 'Assignment deadline is tomorrow !'), (10292, 28, 'Johore, Malaysia', '@angbenny Do u know what are the 4 actions which hilter did ? :('), (10293, 1993, 'Kota Tinggi, Johore', '@u_kisseli what''s your favourite dish?^^'), (10294, 1379, 'Johor Bahru, Johore', '@__duckey any idea? LOL. ^.^ http://t.co/OLavKPbq'), (10295, 2803, 'Malaysia', '@chanakarn_kook นิดนึง พรุ้งนี้เรามีนิยายเรื่องโปรดไปอ่านด้วยหละ 555'), (10296, 2812, 'Malaysia', '@toptapp_nc เปนไรคับบ พี่ท๊อปป T_T'), (10297, 138, 'Johor Bahru, Johore', 'Walking home now. Just bought bubbletea. @ngzhengqin decided take 307 so i guess im alone :('), (10298, 2458, 'Johor Bahru, Johore', '#STRESS'), (10299, 117, 'Johore, Malaysia', '@zomgitsnawar ikrrrrrrr'), (10300, 1493, 'Johor Bahru, Johore', 'Terrible hair day'), (10301, 1812, 'Johor Bahru, Johore', 'Macam nk cabut class ah besok...'), (10302, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Aip, cun lah sngt kannn. Hahahaaha. Nina pun cun ok. Beruntung Aufafafaffafafa xD Ehh hihihihi :)'), (10303, 115, 'Johor Bahru, Johore', 'My rectum hurts from pooping ._.'), (10304, 2813, 'Johor Bahru, Johore', 'Sunburn ~'), (10305, 2814, 'Malaysia', 'Melawat @dehaqpumpkin (@ Setiawangsa) http://t.co/DtXkR9ju'), (10306, 128, 'Johore, Malaysia', '@seventhjanuary HAHAHA YA! lol i online mah hahahaa :D'), (10307, 2815, 'Tebrau, Johor Bahru', '@Liping_ijeno hahahaa maintain a bit leh... You already very unglam Everytime Liao! Hahahaa'), (10308, 117, 'Johore, Malaysia', '@AllyXanderz @zomgitsnawar like stupid'), (10309, 2816, 'Johore, Malaysia', 'just ran for an hour. about to die but I feel good:-)'), (10310, 2706, 'Kota Tinggi, Johore', ':D http://t.co/Rp67QKBB'), (10311, 2550, 'Johor Bahru, Johore', '@smellslikeluv @biteeugenie because its a drama.'), (10312, 2458, 'Johor Bahru, Johore', '#SCARED AND NERVOUS'), (10313, 2787, 'Johore, Malaysia', 'my Floorball stick broke!!!!!!!!!!!! cb!!! only 1 months plus..'), (10314, 2334, 'Johor Bahru, Johore', 'I dont mind..'), (10315, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 29'), (10316, 2167, 'Malaysia', 'ออกกำลังกายกัน ^_^ (@ คอร์ตแบดมินตัน สปอร์ทคลับ) http://t.co/HxAvioYh'), (10317, 557, 'Plentong, Johor Bahru', '@min_98yi 谁?'), (10318, 142, 'Johore, Malaysia', '@sleepyysam Maimunah girlfriend baru kamu kan? =P Yela i je mcm dia. Sebab tu you sayang i mcmane you sayang dia. ='')'), (10319, 128, 'Johore, Malaysia', '@seventhjanuary i always wabted to talk to you'), (10320, 1349, 'Johore, Malaysia', '@rinabanana @karlademoda @sheslley @tanyadqueen @lkmariquit @xing_shing wala ah ga fring lng kmi kathy :) hidlaw lng gd level up!'), (10321, 1786, 'Johore, Malaysia', '@Therisonlyoneme HORNETS LEH. now so lousy! haha. they trade for who?'), (10322, 2809, 'Malaysia', 'เรียนวันนี้โคตรเบื่อ คิดถึงอ.กอฟ อ.มนตรี 5555'), (10323, 1993, 'Kota Tinggi, Johore', 'The past is the past is the past~~~~'), (10324, 1991, 'Johore, Malaysia', '@crazziefreak yesssssss'), (10325, 2817, 'Plentong, Johor Bahru', 'Di angkut utk tengok tenggiling. (@ kebayan autopart) http://t.co/eA3UgjWd'), (10326, 2458, 'Johor Bahru, Johore', 'Haishhh ...'), (10327, 2818, 'Johor Bahru, Johore', '@dionnecoronel d ako nakaonline ..'), (10328, 1773, 'Johor Bahru, Johore', '@fayefeii HE AIM FOR XMM LIKE U HAHA'), (10329, 771, 'Johore, Malaysia', 'But seriously ! Where''s my foreskin ?'), (10330, 2334, 'Johor Bahru, Johore', 'Meow meow'), (10331, 38, 'Johor Bahru, Johore', '@SupYoEee *cough laugh cough laugh* ahaha.'), (10332, 2819, 'Johore, Malaysia', 'I''m at LASALLE College of the Arts (Singapore, Singapore) http://t.co/OnCKt7F8'), (10333, 1108, 'Johore, Malaysia', 'White roses.'), (10334, 2771, 'Johor Bahru, Johore', 'Who going training tmr?:/ si @diontheonlyone nv go tmr.. #SianJiPua'), (10335, 138, 'Johor Bahru, Johore', '@jaehun_brows Derick got moreeee'), (10336, 1865, 'Indonesia', 'wes ngantuk ngene seh -,- ah gak asik wees'), (10337, 1465, 'Johore, Malaysia', '@aliciamutheardy HAHA. They''re going to be on a radio! You can''t see them leh. So good looking or not also no use. :p'), (10338, 2458, 'Johor Bahru, Johore', 'Tomorrow last day of school !'), (10339, 375, 'Riau, Indonesia', 'tidurrr zzzz'), (10340, 2820, 'Singapore', 'I just realize that i actually know him. I alway thought i only saw him once. Yet i knew him long ago .'), (10341, 5, 'Johore, Malaysia', '@_fakeAsmileee_ HAHA ! XD'), (10342, 2802, 'Johore, Malaysia', 'The one kid superstar Nickelodean ain''t got in its roster is @jungsungha ! Catch him on 26 May in the DBS auditorium! http://t.co/Wiv1XbXv'), (10343, 2758, 'Johore, Malaysia', '@iamnurulnadiah ouhhh i see.'), (10344, 1108, 'Johore, Malaysia', 'Stop laughing, you soab.'), (10345, 2330, 'Tebrau, Johor Bahru', '@musfirahyunnixo Cannot cause now idk why i cant walk straight.'), (10346, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 30'), (10347, 128, 'Johore, Malaysia', '@kyutegyu .... NOT FAIRR'), (10348, 150, 'Johor Bahru, Johore', '@PiercingsnTats of course good la my dad haven''t call me go home I already reaching home already eh!'), (10349, 2603, 'Plentong, Johor Bahru', '@ShukriHani Yeahh Ayang Madu :* Hahaha. Ohh Muhammad? Takde punn :)'), (10350, 1786, 'Johore, Malaysia', '@HidayatGD wtf!!!! i was talking about lee minho actually. haha'), (10351, 958, 'Johor Bahru, Johore', 'What a fruitful day ! Made my passport , went GYM , and work ;) whooo hoo ! ;)'), (10352, 2593, 'Plentong, Johor Bahru', '@Jayjay_Era mengamuk ! haha'), (10353, 2252, 'Johor Bahru, Johore', '@HeyEywan hahaha .kn,,dye tbe2 txt aq ari selasa dye ckp cmtu .tah btol ke x la tu .'), (10354, 60, 'Singapore', '@popsywhoopsy the orang asli one is under reflection part. i thought there is one more?'), (10355, 115, 'Johor Bahru, Johore', 'Yeahhhh... Hai... I''m weird... And awkward... Balls. xDDD'), (10356, 2517, 'Johor Bahru, Johore', '@Poppyflossy sure not ?! You and him okay not ?!'), (10357, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 31'), (10358, 2820, 'Singapore', '@MonsterrrFionaa Tomorrow you going? Knn, i just realise i actually know him. Suddenly i felt fucking sad.'), (10359, 138, 'Johor Bahru, Johore', 'Regret not taking more photos today TT.'), (10360, 2821, 'Johor Bahru, Johore', '@KylieGoingHyper HELLOO (:'), (10361, 2481, 'Johore, Malaysia', 'Anyone has camp cheers for kids? I deem mine as 95% unsuitable.'), (10362, 2327, 'Malaisie', '@nutnunoil โอ้ว == แล้วก่อนนอน เอาเป๋าตัง ออกจากเป๋ากางเกงยังละนั้น=+='), (10363, 2822, 'Singapore', '@ShahidzDeewani @shahidkapoor : v true...'), (10364, 5, 'Johore, Malaysia', '@ElmaSwag HAHAH , exactly !'), (10365, 2657, 'Johore, Malaysia', 'the death of me in mario . LOL http://t.co/2nn9N75z'), (10366, 2543, 'Johore, Malaysia', 'ปวดหัวเบาๆ'), (10367, 2745, 'Johor Bahru, Johore', '@conjelline totoo ba? O hindi hahaha'), (10368, 138, 'Johor Bahru, Johore', '@Vantsoul Why you like #forevereating LOL'), (10369, 1856, 'Singapore', '@u_kisseli hey, dont forget to log in your tumblr acc ! :D'), (10370, 1904, 'Plentong, Johor Bahru', '@ridzuan_dzakir Aku nk test ja hahaha'), (10371, 1173, 'Plentong, Johor Bahru', '@Rafidahfirdaus alaaaa kakak fida ni lawa sngatlah kita malu nk keluar dgn akak. jgn bash kita eh akak? :-( haahahahahahahaha'), (10372, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 32'), (10373, 2377, 'Johor Bahru, Johore', 'Just watched big bang''s documentary. They''ve grown a lot. Great great story.'), (10374, 128, 'Johore, Malaysia', '@kyutegyu .... HAHAAH BLEHH¡¡¡¡ NEH NI NEH NI POO POO¿¿ HAHAHA'), (10375, 2705, 'Plentong, Johor Bahru', 'trololololololololololo\nbored so please give me some rest &gt;"&lt;'), (10376, 2330, 'Tebrau, Johor Bahru', '@musfirahyunnixo Cant cause I can''t walk straight and I can''t bear with the pain while walking.'), (10377, 2823, 'Johor Bahru, Johore', '@sierrasiesta kenapa mbakny? #kepoisthenewcare'), (10378, 2586, 'Indonesia', '@DwiiFatmawaty followers mu menurun 60 lebih tuh we'), (10379, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar alaaaa sedih :''('), (10380, 1656, 'Johor Bahru, Johore', '@driZzleEsha hello! Mamak pandi! U the one who say u wanna be straight ley!now, no guys coming after me lah! Don''t spread rumours dangerous!'), (10381, 2657, 'Johore, Malaysia', '@ahwenoiii ): okaican LOL'), (10382, 1108, 'Johore, Malaysia', 'Hit the jackpot.'), (10383, 280, 'Johor Bahru, Johore', 'Heppy fun time (@ House) http://t.co/eitimDQT'), (10384, 2824, 'Johore, Malaysia', '@ChoonHockBleh simi ?'), (10385, 1856, 'Singapore', '@u_kisseli oh ya, dont leave your tumblr alone leh...'), (10386, 2706, 'Kota Tinggi, Johore', 'After e shoot, camwhore! http://t.co/niIbgxYk'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (10387, 861, 'Kota Tinggi, Johore', '@mynameisdilly haha. Funny la u. Lol'), (10388, 115, 'Johor Bahru, Johore', '@SuperSammi I GOT THE MOCKINGJAY PIN ZOMGGGG... How far are you in the book? (:'), (10389, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 33'), (10390, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 hahahah'), (10391, 2780, 'Johor Bahru, Johore', 'I need apples :(((('), (10392, 2603, 'Plentong, Johor Bahru', 'That terkejut moment bila tengah sedap sedap masukkan Salotep jadik gelang sampai ketat tetiba tak boleh keluar. Hahahhahaha xD'), (10393, 2825, 'Johore, Malaysia', 'I''m at Blk 8, Holland Ave http://t.co/lQoBDWXe'), (10394, 375, 'Riau, Indonesia', 'siapa lo siapa gue !'), (10395, 2482, 'Singapore', 'OMG!!! THANKS @LailaSykes :)'), (10396, 128, 'Johore, Malaysia', '@seventhjanuary okay hahah i log in but gtg soon. I want see hot guy on tv haha'), (10397, 2669, 'Johor Bahru, Johore', '@samyHAMMY sorry lah'), (10398, 1784, 'Johor Bahru, Johore', '@HuiXd last sentence I like hahah mission impossible!'), (10399, 2705, 'Plentong, Johor Bahru', '@FatinHsmi tak pe it okay just smile'), (10400, 375, 'Riau, Indonesia', 'night :) @goldisenna'), (10401, 2638, 'Johor Bahru, Johore', '@YUNXUANstitch heyhey! So how? (; whatsapp me '), (10402, 2826, 'Johor Bahru, Johore', '@MonsterrrFionaa what time uh?'), (10403, 1698, 'Johore, Malaysia', '@vajoojoo mahirah. Please.'), (10404, 938, 'Johore, Malaysia', '@Kesterkjw #Simi? Sorry lah .'), (10405, 1379, 'Johor Bahru, Johore', '@SooTae_Hearts LOL OMG I SUCK'), (10406, 138, 'Johor Bahru, Johore', '@jaehun_brows IS AARON !!!!'), (10407, 1287, 'Johor Bahru, Johore', 'I just ousted @sirpaul_19 as the mayor of Blk 525 Woodlands Drive 14 on @foursquare! http://t.co/esjXTA4C'), (10408, 2827, 'Kota Tinggi, Johore', '@jajamuh'), (10409, 1287, 'Johor Bahru, Johore', 'I''m at Blk 525 Woodlands Drive 14 http://t.co/C8CrCBxs'), (10410, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 34'), (10411, 239, 'Johor Bahru, Johore', 'I''m at JiaYi''s Crib! ☆ http://t.co/W9OWIhBB'), (10412, 2706, 'Kota Tinggi, Johore', 'Emmm... This looks old:( http://t.co/dwqhZ14Q'), (10413, 2330, 'Tebrau, Johor Bahru', '@zhikanqisclumsy hao la. :x will try not to LOL.'), (10414, 1635, 'Malaysia', '@mejimc ยดทดรจ . ^^'), (10415, 115, 'Johor Bahru, Johore', 'My poop is green... WTF??'), (10416, 2828, 'Johor Bahru, Johore', '@X_I_N_P_E_I @chunsiongwcs lol? I went there just to shoot 100 ball then go home.'), (10417, 1773, 'Johor Bahru, Johore', '@fayefeii GOOD WAT~'), (10418, 2829, 'Johore, Malaysia', 'I''m at Alikaim''s  (Singapore) http://t.co/2kGRS1D3'), (10419, 375, 'Riau, Indonesia', 'hehe , brapa nomer mu kakk ? @ainun_ramdhani'), (10420, 1847, 'Plentong, Johor Bahru', '@Dkamilaa @4ppleGreen cause it so-malaysia and I know it~'), (10421, 2730, 'Tebrau, Johor Bahru', '@sitihyperactive me me me! :bbb'), (10422, 1991, 'Johore, Malaysia', 'i look up to @crazziefreak for her fucking gutsssss.'), (10423, 1468, 'Johor Bahru, Johore', '@YAPSHUANGYU were there any HOT LIFEGUARDS ????! Later you drown in your drool'), (10424, 700, 'Johor Bahru, Johore', 'Really? :D hehehe RT @_nanazh1fxh: I think I saw Syareena!'), (10425, 513, 'Johor Bahru, Johore', '@Reichi_Lim u cook la !!:) okie ?^^'), (10426, 494, 'Johor Bahru, Johore', 'My heart is a stereo.Make me a radio.Tune me up when u feel low.'), (10427, 553, 'Johor Bahru, Johore', '@Stefanus_Wong who? What? Omg you have to tell me hahaha'), (10428, 2475, 'Johor Bahru, Johore', 'Ha with me?'), (10429, 2403, 'Johore, Malaysia', 'B.I.N.G.O.'), (10430, 2748, 'Johore, Malaysia', '@acapohlala macam/2 la acap nihh .Hahaa'), (10431, 173, 'Johore, Malaysia', '@NYQYQ okie dokie. Invite hot girls'), (10432, 138, 'Johor Bahru, Johore', 'Me , @quishterfur and Aaron are so zilan can'), (10433, 2145, 'Singapore', '@alisyahamran cheyy okay lo.'), (10434, 2830, 'Johore, Malaysia', 'Outing with family :) (@ Mustafa Centre w/ 7 others) http://t.co/qq9BP5ox'), (10435, 38, 'Johor Bahru, Johore', 'I''m effin'' cold.'), (10436, 2517, 'Johor Bahru, Johore', '@Poppyflossy oh alright (:'), (10437, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini aku tak yakin ko bleh buat 10 round..lain la aku.. 11 round pon mampu..lalala'), (10438, 375, 'Riau, Indonesia', 'saya mau kak RT @UPILmungiL'), (10439, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 35'), (10440, 2586, 'Indonesia', '@natalie2331 kak, followback :D'), (10441, 2831, 'Johor Bahru, Johore', '@__JaeB we buy now'), (10442, 2730, 'Tebrau, Johor Bahru', '"@Blackalogy: Parents= Never fail to give a ''K'' in text messages."'), (10443, 206, 'Singapore', '@bunnybaby1315 preordered :D'), (10444, 1847, 'Plentong, Johor Bahru', '@ShafinazIzhar haha'), (10445, 239, 'Johor Bahru, Johore', 'I''m at My Dream Land  (Singapore) http://t.co/uJiT4w0n'), (10446, 1435, 'Johor Bahru, Johore', '@Sshiminee @bikinidale @kellyleeeeee @prod1gyizme @xpentagon . Nope T_T. icantlogin.'), (10447, 2426, 'Johore, Malaysia', 'The fuuuu, if you and Cleo together ah, I WITH WEIHONG AH! :P'), (10448, 2072, 'Kota Tinggi, Johore', '@chanel_branded lol, okay\n the monkey game too little ppl play alr. After awhile then not fun. K bye. Need sleep'), (10449, 702, 'Johor Bahru, Johore', '@Babytiggerx ya lo! So boring liao!'), (10450, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 36'), (10451, 2743, 'Johore, Malaysia', '@frenchyy8D @swaggitbieber where got &gt;&lt;'), (10452, 1043, 'Johor Bahru, Johore', 'I''m at FairPrice Xpress (Singapore, Singapore) http://t.co/1rZpt6vb'), (10453, 2330, 'Tebrau, Johor Bahru', '@SyasyaUmar @aubreybuttowski Cant uh. Really wish I could.'), (10454, 2263, 'Johore, Malaysia', 'Going Public is sucha'' turnoff~  w/ @iamdayah @hikariazie.. (@ in bus,69) http://t.co/4AgBn7Tr'), (10455, 1190, 'Johor Bahru, Johore', 'Hypnosis is really amazing!'), (10456, 1217, 'Johor Bahru, Johore', 'With them &lt;3 (@ McDonald''s) http://t.co/mkU1HbpK'), (10457, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ I see. lol I thought Bryan wanted to sell his account or something?'), (10458, 2574, 'Riau, Indonesia', 'yuhuuuuu,, :D @Rankqa_Dh hujan yaaaaaa'), (10459, 1847, 'Plentong, Johor Bahru', '@KhairilAnwarr sian~~ pakai iPad!'), (10460, 1786, 'Johore, Malaysia', '@Therisonlyoneme siao. so rich meh'), (10461, 1255, 'Singapore', '@shielim aww it happened to me &lt;3 hahas'), (10462, 2743, 'Johore, Malaysia', '@swaggitbieber haha xP joking la &gt;&lt;'), (10463, 2560, 'Johor Bahru, Johore', 'Omg Dylan little boy so scary:/'), (10464, 771, 'Johore, Malaysia', 'I want my foreskin back !'), (10465, 2330, 'Tebrau, Johor Bahru', 'I wish I was prefect.'), (10466, 859, 'Johor Bahru, Johore', 'She''s so evil!! Push all de blame to Dylan as if she''s innocent lorh!! &gt;&lt;'), (10467, 1452, 'Johor Bahru, Johore', 'I''m at Blk 185 pasir ris st 12 7-Eleven (Singapore) http://t.co/pgqcfa78'), (10468, 2832, 'Singapore', '@agneslaura how''s today? :)'), (10469, 2787, 'Johore, Malaysia', 'I actually dont like people scold vulgerat me.. but cause ur my girll i diam!'), (10470, 2124, 'Singapore', 'Sakit hati :{'), (10471, 2657, 'Johore, Malaysia', '@xiangyyi so early LOL .'), (10472, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ hahaha!'), (10473, 2833, 'Johore, Malaysia', 'Home sweet home (at @www.twitter.com/wenitgo) — http://t.co/ZeDNTb6R'), (10474, 2834, 'Johore, Malaysia', 'All that familiarity cast in aloof inscrutability, severs me from reality.'), (10475, 138, 'Johor Bahru, Johore', '@darezerwee I ONLY TIO PEDO BY CHRIS CAN'), (10476, 1856, 'Singapore', '@u_kisseli ... hello?'), (10477, 2835, 'Malaysia', 'I''m at Wani Kauna Tomyam (Kuala Lumpur, Federal Territory of Kuala Lum) http://t.co/1ZL7t7Gm'), (10478, 2836, 'Johore, Malaysia', 'I''m at Ho Kee Pau 和记包 (Singapore) http://t.co/5DEOEarG'), (10479, 22, 'Johor Bahru, Johore', 'Walao eh Rachel ,next time shut up.mygod .dayum.'), (10480, 1024, 'Johor Bahru, Johore', '@KittennyScars he can be our father alr, so i think we should respect lor'), (10481, 494, 'Johor Bahru, Johore', 'U senang ckp I tk boring.I boring la my hp senyap :/'), (10482, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan so do u mind being my tweet buddy??'), (10483, 128, 'Johore, Malaysia', '@seventhjanuary HAAH okayy. Later i 11 oclock see how then i tweet sms you haha bb'), (10484, 1024, 'Johor Bahru, Johore', '@KittennyScars no tq!'), (10485, 2837, 'Johore, Malaysia', 'DAMNNN MY MACARONS TASTE LIKE MACARONS BUT DONT LOOK LIKE MACARONS HOWWWWWWWW'), (10486, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha . kan gylo kan ? haha . ngah tweet + dngar radio . adek ?'), (10487, 2705, 'Plentong, Johor Bahru', 'someone,someone,someone'), (10488, 1196, 'Kota Tinggi, Johore', 'I''m at Pulau Tekong BMTC 3 S Coy http://t.co/3e6nBJy0'), (10489, 2603, 'Plentong, Johor Bahru', '@NinaaImanina K Cun K. Huihh *stopkan jari yang goyang2 tu* Asal pulak tak cun. Certanya Aufa, Shugha cakap Nina Comel macam sapa? Hahahha.'), (10490, 2748, 'Johore, Malaysia', '@Magrate_Biroo gedik jeaa,Haaahaa'), (10491, 2838, 'Plentong, Johor Bahru', 'I''m at Istana Bukit Zaharah http://t.co/dNnDhoKw'), (10492, 716, 'Johor Bahru, Johore', '@tripodmonster Hahah! I wish your dream come truee! ^_^ Buy villa? For me right. :p'), (10493, 2831, 'Johor Bahru, Johore', '@Crastintage ITS ON DIGITAL PRE SALE BRO.. But 90 bucks :0'), (10494, 2454, 'Johor Bahru, Johore', '@naihpos Yes melayuu..'), (10495, 2827, 'Kota Tinggi, Johore', '“@ihatequotes: Good looks attracts the eyes. Personality attracts the heart.”'), (10496, 2566, 'Kota Tinggi, Johore', 'Yea faz kasi aku obat suro bwk alik!!!!'), (10497, 2839, 'Johor Bahru, Johore', 'I''m at Blk 979C Buangkok Crescent (Singapore) http://t.co/0qmo3nxK'), (10498, 1938, 'Johore, Malaysia', '@EminemTacoz later. i now watching tv.'), (10499, 2821, 'Johor Bahru, Johore', '@KylieGoingHyper :DD'), (10500, 110, 'Johore, Malaysia', '@RishabhKoradia7 ok!'), (10501, 138, 'Johor Bahru, Johore', 'I just saw a dustbin appear infront of me and i screamed ZZZ'), (10502, 648, 'Johore, Malaysia', 'Am at workk noww... Arghhh!!!'), (10503, 2840, 'Johore, Malaysia', '20pcs of mc nuggets!!! MADNESS (@ McDonald''s) http://t.co/Y5CSEhkN'), (10504, 2841, 'Johore, Malaysia', 'With Shanaz love (@ Spize River Valley w/ 10 others) http://t.co/EHtlaVZy'), (10505, 2685, 'Johore, Malaysia', 'Alighted and taking bus 9... (@ Bedok Temporary Bus Interchange w/ 3 others) http://t.co/Fp83dFYH'), (10506, 2832, 'Singapore', '@septemberoute @elenaleong_ http://t.co/MfVsr5MC jinyoung wrote the song!!!!! WOW!!!!'), (10507, 1938, 'Johore, Malaysia', '@Pasuuta can cover more area LOL'), (10508, 2842, 'Johor Bahru, Johore', '@Renee_RuiNi 97376701'), (10509, 2843, 'Johore, Malaysia', 'I''m at Raffles Town Club (Singapore, Singapore) w/ 2 others http://t.co/ISJP3anp'), (10510, 104, 'Johore, Malaysia', '@Sya_miza miza tgok telemovie kat tonton #KasihBumi'), (10511, 353, 'Johore, Malaysia', 'I''m at McDonald''s / McCafé (Singapore, Singapore) w/ 3 others http://t.co/OjeyPGX4'), (10512, 2844, 'Johor Bahru, Johore', '♫ soundtracking "Kiss n Tell" by @keshasuxx (@ Bishan North Zone 3 RC) http://t.co/s2FOkziq'), (10513, 2435, 'Singapore', 'interesting quote: " Procrastination is like a credit card: it''s a lot of fun until you get the bill." - christopher parker'), (10514, 1786, 'Johore, Malaysia', '@Therisonlyoneme true uh.'), (10515, 1991, 'Johore, Malaysia', '@crazziefreak IM HEREEEEEEE. CHILLLLLL XXXXXXX'), (10516, 1331, 'Johor Bahru, Johore', '@Jaaaaaaaaaay_ err okay'), (10517, 1748, 'Johore, Malaysia', 'I''m at Tricia''s Room ☆ (Singapore, Singapore) http://t.co/zNZki8w0'), (10518, 860, 'Johore, Malaysia', '@Lavouche ...in my ride.'), (10519, 1108, 'Johore, Malaysia', '@KevSicaJi_ LOL. Mr Bangbang? D:'), (10520, 2607, 'Johor Bahru, Johore', '"@deehasnolife: Super unglam!!! LOOOL!!! @mjiamin http://t.co/pEqf8DzC" hahahahaha! So "pwetty"'), (10521, 133, 'Johore, Malaysia', '社内接待乙…'), (10522, 2509, 'Johor Bahru, Johore', '@jeslynLHJ see see look look.... Wondering how is the price like...'), (10523, 2603, 'Plentong, Johor Bahru', 'Kalau muda punya ahh muda, Kalau tua punya ahh tua Haha #CeritaMelayu.'), (10524, 2705, 'Plentong, Johor Bahru', '@SaraEdrinaa relax babe'), (10525, 483, 'Johore, Malaysia', 'I''m at Eastwood Road (Singapore, Singapore) http://t.co/SUxuRhgy'), (10526, 1748, 'Johore, Malaysia', 'I''m at My Bed! (Singapore, Singapore) http://t.co/Y3Pyhnn5'), (10527, 1844, 'Johore, Malaysia', '@JanwinDaydream @BlurLikeSotong @_jenniferholics @janwindaydream @juzsomeguy_ wa ley how play maple liao. now maple so cock'), (10528, 2365, 'Indonesia', '@JBjypIndonesia Min...Tolong kita dong, trend ini --&gt; #7AraStayTogether thanks ya ^^'), (10529, 49, 'Johor Bahru, Johore', '@f_cukyou ya all easy make fren haha hope u get into my fren de class from\nJvs ! Name\nSiyee'), (10530, 1784, 'Johor Bahru, Johore', '@HuiXd your not alone hahah I did nothing too xD'), (10531, 2845, 'Johore, Malaysia', 'Barely visible. @ Pine Grove :&gt; http://t.co/8AJSa0sD'), (10532, 513, 'Johor Bahru, Johore', 'Show hand !!:)'), (10533, 566, 'Johor Bahru, Johore', 'I''m at Yishun MRT Station (NS13) (Singapore, Singapore) w/ 6 others http://t.co/5qREPBXr'), (10534, 1856, 'Singapore', 'JR - Junior Royal.... O_O'), (10535, 141, 'Johor Bahru, Johore', '@maelimchu im getting there.. So far improving ang responsenila daily.... Nweis uo nga ehh... Well see in d future again.,, u know'), (10536, 2846, 'Singapore', 'I literally lol-ed looking at this. HHAHA, darn hilarious ! "Am I dead ?! Am I dead ?!" xD http://t.co/sy6L6noz'), (10537, 2560, 'Johor Bahru, Johore', '@BlurLikeSotong @__dontblink hahah count me out please:/'), (10538, 1676, 'Johore, Malaysia', '@Haziq_F yes yes..'), (10539, 80, 'Johor Bahru, Johore', '@gric_95 hoii kau nak tweet ke nk skype dgn aq... da nak patah da tngn aq ni...'), (10540, 2509, 'Johor Bahru, Johore', '@Minsawesomeness @jeslynlhj him? Who? Half of kyu n half of min? Haha'), (10541, 1435, 'Johor Bahru, Johore', '@VernicePai YOU NO SAY •______•'), (10542, 2466, 'Johor Bahru, Johore', '@danisaurrrr ay :)) thanks'), (10543, 1345, 'Johor Bahru, Johore', 'Otp with @LysaaHere! ^^'), (10544, 2847, 'Tebrau, Johor Bahru', '@Faiezdeso snail'), (10545, 983, 'Singapore', 'Feeling inferior and stupid...'), (10546, 2803, 'Malaisie', '@chanakarn_kook 555 พรุ้งนี้ภาคบ่ายหนุกก !'), (10547, 2745, 'Johor Bahru, Johore', '@conjelline @isisfabrinsky sino ba yan?'), (10548, 2848, 'Johor Bahru, Johore', 'Watching tv (@ my awesome planet) http://t.co/YPGQcQQi'), (10549, 2820, 'Singapore', '@sealedinscarlet if i''m not wrong it''s 20-30 bucks'), (10550, 2849, 'Singapore', 'Mrt keep got problem , who dare to take sia .'), (10551, 2653, 'Plentong, Johor Bahru', '@hanizahid hahahaa lol x) ohh , tgh bernafas . kita curi lh nafas awk tu , bole ? :D'), (10552, 2850, 'Johore, Malaysia', '@11throses second one'), (10553, 2335, 'Johore, Malaysia', 'POM ON THE RADIO OH IT ENDED :('), (10554, 1847, 'Plentong, Johor Bahru', '@elyshaIstishad *hahah parents control!'), (10555, 2838, 'Johor Bahru, Johore', 'I''m at Cathay Cineplex (Singapore) w/ 6 others http://t.co/JzBgIkfG'), (10556, 716, 'Johor Bahru, Johore', '@JaylonJiAn @yongjiannn Hahah, yeaaah~ So tired x.x'), (10557, 720, 'Plentong, Johor Bahru', 'OMG ! Feewiiiiiiittttttttttt !! omeyynya omeynyaa abang kita @Amar_Asyraf dalam pelangi kasih .'), (10558, 138, 'Johor Bahru, Johore', '@darezerwee PRECISELY SIA. IM TRAUMATIZED'), (10559, 1108, 'Johore, Malaysia', 'Victory. :D'), (10560, 2403, 'Singapore', 'Bye Dylan. UNRIDDLE 2.'), (10561, 206, 'Singapore', '#nowplaying Pretty warrior (Y) ♥'), (10562, 2851, 'Johor Bahru, Johore', '@lilnaix tempt me.. ):'), (10563, 1825, 'Johor Bahru, Johore', '#showhand time!!'), (10564, 1349, 'Johore, Malaysia', '@KarlaDeModa sent u dm about the meds na :)'), (10565, 2852, 'Johore, Malaysia', 'I''m at The Shoppes at Marina Bay Sands (Singapore, Singapore) w/ 4 others http://t.co/a6aH5W33'), (10566, 860, 'Johore, Malaysia', '@Lavouche hehe'), (10567, 685, 'Singapore', '@mggykills sinong crush mong artista local ? :) crush lang naman koya share mo na :))'), (10568, 142, 'Johore, Malaysia', '@sleepyysam Tak baik ckp gitu sayang. Hish Okay la skrg kita take a break. Text me baby. I love you so much. *hugs*'), (10569, 2586, 'Indonesia', 'pakai penyedot kloset sana ahahaha xD RT @avidhidayat telinga kesumbat air T.T'), (10570, 1856, 'Singapore', '@u_kisseli ......... bye'), (10571, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 sweet~'), (10572, 206, 'Singapore', 'http://t.co/HBAyxHo9 damna wesome go listen ♥'), (10573, 2705, 'Plentong, Johor Bahru', 'puas mengata orang seronok kan aku tahu.. so you just SHUT UP'), (10574, 138, 'Johor Bahru, Johore', '@quishterfur @darezerwee OMG GO AWAY'), (10575, 2820, 'Singapore', '@MonsterrrFionaa Before that i saw him before le. I actually know him during Powerhouse. Communicated with him afew times.'), (10576, 1196, 'Johor Bahru, Johore', 'Kangeeeeennn.. http://t.co/ziOkcUh6'), (10577, 1466, 'Johore, Malaysia', 'Lol i crack!! http://t.co/Vev1NhZ2'), (10578, 504, 'Johor Bahru, Johore', '@anndcf tu peux faire. :D Bonne courage ma amie. XD'), (10579, 791, 'Johore, Malaysia', 'My girl finally back! :)'), (10580, 1528, 'Singapore', '- you''re adorable.'), (10581, 1938, 'Johore, Malaysia', 'I used some app to put these makeup stuff on my face unproffesionally. So fun :D http://t.co/KCa7ieVW'), (10582, 1349, 'Johore, Malaysia', '@xing_shing @karlademoda @jryap28 @lkmariquit @rinabanana @sheslley amo na ya! hahaha paugtasa paguid!'), (10583, 700, 'Johor Bahru, Johore', '@_nanazh1fxh Huh serious? hahahaha, okay okay :D'), (10584, 2705, 'Plentong, Johor Bahru', '@SaraEdrinaa layan ehhh'), (10585, 2748, 'Johore, Malaysia', '@acapohlala Haha :] sabar/2 muda cume skali .*tk memasal'), (10586, 553, 'Johor Bahru, Johore', '@Stefanus_Wong yeah sure!! :)'), (10587, 2771, 'Johor Bahru, Johore', '@diontheonlyone no lo, pleasee! I will miss u? Dream on! Hahaa. Kidding luhh! @deniseyapyap going?? Wa! Miracle! Hahaha'), (10588, 2853, 'Johore, Malaysia', 'Pre-farewell party.... (@ L''Angelus) http://t.co/3biwAM9Q'), (10589, 2854, 'Johore, Malaysia', 'I''m at I12 Katong (Singapore, Singapore) w/ 8 others http://t.co/ym6zuJ4p'), (10590, 138, 'Johor Bahru, Johore', '@Vantsoul Doesnt your house ever run out of food?'), (10591, 2745, 'Johor Bahru, Johore', '@conjelline bakit naman? As in hindi na talaga kayo nag uusap? Bakit? Hahahha kinulot ka? Haha joke bakit nga? :)'), (10592, 2365, 'Indonesia', '@DreamHighINDO Min tolong kita ya...trend ini #7AraStayTogether Please...thanks ^^'), (10593, 981, 'Riau, Indonesia', 'Udh 4 jam OL. Tp tetap aja sepi &gt;.&lt;'), (10594, 2855, 'Pulai, Johor Bahru', '@MonsterFiee hahahahah &gt;.&lt; . Laa sesema ke ?'), (10595, 2856, 'Johore, Malaysia', 'Tomo new ipad is launched..go get it'), (10596, 435, 'Johor Bahru, Johore', '@dangledaffodilz wlao. That''s as good as not giving me any! :('), (10597, 49, 'Johor Bahru, Johore', '@f_cukyou last Qiman class de ~ oh ya shit ! U all is open one more new class =.= u shld be with ur frens'), (10598, 2586, 'Indonesia', 'cukup tau dedek RT @syalsarama Yuk mari sini :p, btw cuktaw itu"ckptau" kn? Eak aku gehol RT AnggyaMegaayu: gak ngajak ya, cuktaw-_- RT syal'), (10599, 2820, 'Singapore', '@MonsterrrFionaa I remember saying i keep mistaken him as Ah cao and keep disturb him about it.'), (10600, 2407, 'Plentong, Johor Bahru', 'ramai betol YB2 yg emo mase berbahas kat parlimen..lost control..emosi sendiri takleh kawal,camana nak tadbir negara..ouchh'), (10601, 1847, 'Plentong, Johor Bahru', '@intanska @elyshaIstishad eh korang tgk crita tu??'), (10602, 12, 'Johore, Malaysia', '@u_kisseli Do you feel that you have enough sleep? :)'), (10603, 2748, 'Johore, Malaysia', '@Magrate_Biroo Hahaaaa .bile aunt kw balik ?'), (10604, 2603, 'Plentong, Johor Bahru', 'Alangkah Indah.. Jika dirimu sentiasa disisiku SayangKu....... :*'), (10605, 2211, 'Johor Bahru, Johore', 'June''s such a trooper! She didn''t know about the hills leading to Jalan... (w/ Juliana at CAFEELA RESTAURANT®©) [pic] — http://t.co/q9K29LTu'), (10606, 257, 'Johore, Malaysia', 'I''m at Marina Bay Floating Platform (Singapore) [pic]: http://t.co/9jbmPhHN'), (10607, 985, 'Plentong, Johor Bahru', 'Buat homework! Science note T.T'), (10608, 2839, 'Johor Bahru, Johore', 'Just posted a photo @ buangkok crescent 979c http://t.co/nUa0gtQ9'), (10609, 1786, 'Johore, Malaysia', '@Therisonlyoneme of course la. so many big trades'), (10610, 2857, 'Johor Bahru, Johore', 'Picking out our hotel! @zeeerahh @fatinjoe n raja! &lt;3 (@ Macdonald Tampines) http://t.co/FCFcVGTb'), (10611, 1959, 'Johor Bahru, Johore', '@ShuricanShaheel haha ohkays can you make it around 1:30 to 3'), (10612, 2858, 'Plentong, Johor Bahru', 'Tidur :) (@ Tmn Sri Stulang) http://t.co/AuxKXbq3'), (10613, 2859, 'Johor Bahru, Johore', '@lymeyyy nice dp :D'), (10614, 156, 'Johore, Malaysia', '@aniysh man tou = buns'), (10615, 513, 'Johor Bahru, Johore', '生命像一座迷宫'), (10616, 138, 'Johor Bahru, Johore', 'REACHED HOME. IM SAFE. MADE IT BACK LIKEABOSS'), (10617, 2860, 'Johore, Malaysia', 'Jagger bomb!'), (10618, 2826, 'Johor Bahru, Johore', 'Survey or 80bucks -.-'), (10619, 2861, 'Johor Bahru, Johore', 'I''m at Grace Assembly Of God II (Bukit Batok, Singapore) http://t.co/st8boFqm'), (10620, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini oraitt..aku tengok..=p'), (10621, 2705, 'Plentong, Johor Bahru', 'kesian OMAR dah mati sudah #pelangi kasih'), (10622, 12, 'Johore, Malaysia', 'Eli reply me! NOW! N.O.W'), (10623, 2862, 'Johor Bahru, Johore', 'I''m at the edge of my seat, one episode left til #FNL ends and I''m still craving for more'), (10624, 2787, 'Johore, Malaysia', 'hahaha!!alalalalala! nk majok..'), (10625, 1847, 'Plentong, Johor Bahru', '@elyshaIstishad jaga-jaga bila dengar kerusi berbunyi.. or mainan2'), (10626, 1938, 'Johore, Malaysia', 'SHOWHAND'), (10627, 1786, 'Johore, Malaysia', 'AHHAHAAHHAHA RT @HidayatGD: @NOTSAPAO Lee Min Hidayat la... HAHAHAH'), (10628, 2851, 'Johor Bahru, Johore', 'long time no had dindin with @JayEhAsFoo @MarvenTCL @madeinlove_ @Prashanshan @HongWeeLookNSee @Estrehtse @Actyike :D'), (10629, 2403, 'Singapore', 'Haha!! Rui En Wear Spec Agn&gt;...&lt; CUTE!! Unriddle 2.'), (10630, 529, 'Pengerang, Kota Tinggi', 'Im so tired todae!'), (10631, 2291, 'Johore, Malaysia', 'Holiday ? What''s that ?'), (10632, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hihi. Haa bihun sup :) Maduku? Ehh ada ''KU'' xD'), (10633, 544, 'Johor Bahru, Johore', 'Time to make new friends and forget those fuck up "friends" seriously.'), (10634, 2328, 'Johore, Malaysia', 'I''m at *SCAPE (Singapore, Singapore) w/ 5 others http://t.co/rVABDgDZ'), (10635, 2828, 'Johor Bahru, Johore', '@X_I_N_P_E_I @chunsiongwcs lol'), (10636, 1070, 'Johore, Malaysia', 'I''m at Boat Quay (Singapore, Singapore) http://t.co/zhOcSUbl'), (10637, 2610, 'Johor Bahru, Johore', '"I want you to mean it"'), (10638, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 37'), (10639, 12, 'Johore, Malaysia', 'I will be waiting for you :)'), (10640, 487, 'Johore, Malaysia', 'I rmb the last time this happen was damn shiok RT @autocorrects: That awkward moment when you make eye contact with someone multiple times.'), (10641, 2863, 'Johor Bahru, Johore', '@bibyfyraa tq awk sbb phm keadaan sy'), (10642, 2864, 'Johor Bahru, Johore', 'Tho it''s 10 at night, it''s still awesome to eat this. http://t.co/y9qAIhA4'), (10643, 2118, 'Singapore', 'Saw @NasuhaNsr just now at Gek Poh'), (10644, 1773, 'Johor Bahru, Johore', '@fayefeii NO , XMM JIU SHI XMM'), (10645, 1173, 'Plentong, Johor Bahru', 'i got crush on many boys. lantak ah nak brapa ramai nama pun crush bukan couple lalalalalalulululu'), (10646, 2223, 'Johor Bahru, Johore', 'I''m at Blk 146 Yishun Street 11 (Yishun, Singapore) http://t.co/rQ9v3D3P'), (10647, 529, 'Pengerang, Kota Tinggi', 'Goodnight :)'), (10648, 684, 'Johor Bahru, Johore', 'Fever went down but still not feeling good. Hungry la'), (10649, 34, 'Johor Bahru, Johore', 'Always want me to help you but you don''t feel grateful.'), (10650, 2705, 'Plentong, Johor Bahru', '@SharmiNazira wey kene buat ke/?'), (10651, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 hahhaah'), (10652, 2070, 'Riau, Indonesia', 'bundaaaaaaaaaaaa ayolah ke disctarra beli 1hari yg cerah nya kak @BUDIdoremi ;(((.'), (10653, 1255, 'Singapore', '@shielim oh yay!! ahhaha! so what did he confess ?;3'), (10654, 303, 'Kota Tinggi, Johore', '“@viatumblr: Never react emotionally to criticism. Analyze and correct yourself to determine whether it is justified. #viatumblr”'), (10655, 2865, 'Johore, Malaysia', '@kodo_32 先程counterでお目にかかった稲毛インターのものです。日曜日一緒に走ります、宜しくお願いします。ディスクでガンガン行って下さい。'), (10656, 2802, 'Johore, Malaysia', 'Maybe I''ll buy an ipad if I sell out @jungsungha ''s and @prestonreed ''s May concert. Just saying!!\nhttp://t.co/3IW1slXH'), (10657, 1465, 'Johore, Malaysia', '@aliciamutheardy NO! See fb the likes for dee kosh so much moreeee'), (10658, 1773, 'Johor Bahru, Johore', '@fayefeii U GROSS AS HIM HAHAHA'), (10659, 2701, 'Plentong, Johor Bahru', 'DAP menolak hudud sebagai agenda PR dalam buku jingga.'), (10660, 2132, 'Johore, Malaysia', '@salehasauki owhhh..x istiqamahh la g tue...hahha'), (10661, 138, 'Johor Bahru, Johore', 'Walao. I walk out of lift then see one guy over there my heart stopped beating sia. ZZZ'), (10662, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 38'), (10663, 1844, 'Johore, Malaysia', 'F99-PEH HAWK'), (10664, 2866, 'Johore, Malaysia', 'I''m at Tantric Bar &amp; May Wong''s Cafe (Singapore) http://t.co/BNe6YdUa'), (10665, 2450, 'Johor Bahru, Johore', 'Time for bed(:'), (10666, 1250, 'Singapore', '@Sharanyaaaaaa heya:) heard about ya shoppingg...:)'), (10667, 293, 'Johore, Malaysia', '@RahimiShahar LOL WTF'), (10668, 1784, 'Johor Bahru, Johore', '@BeingSyazwin the story mode one? Rando soldier counted :P ?'), (10669, 2795, 'Johor Bahru, Johore', '@filmfrmt @pineapplehippos hahaha!!aww, imiss the both of you too!!!studio was the best!!!'), (10670, 141, 'Johor Bahru, Johore', '@AspirantSG i think ur a food lover :-)'), (10671, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 39'), (10672, 158, 'Malaysia', '“@viatumblr: A gentleman makes commitments. A loser makes promises. #viatumblr”'), (10673, 1196, 'Johor Bahru, Johore', 'Masii harus tnggu smpe tnggl 15 bln dpan.. Aiiiiiiiihhh.. Klamaan tataaaaaaaa.. :((( http://t.co/975cpPSq'), (10674, 2257, 'Johor Bahru, Johore', '@SweetRebeccaFan hve u been to sgpre?'), (10675, 2543, 'Johore, Malaysia', '@IINKKK คือกูก็บ้าไม่แพ้มึงนะ 5555555555555555555555555'), (10676, 1945, 'Johor Bahru, Johore', '@sujeanmelissa Yes! Haha! May plano na naman ba?'), (10677, 2603, 'Plentong, Johor Bahru', 'Maaf saya tidak biasa jika tidak menggunakan nama saya sendiri :)'), (10678, 1773, 'Johor Bahru, Johore', '@NowBangs diam la !'), (10679, 138, 'Johor Bahru, Johore', 'Lucky i got twitter accompany me from Clementi back home'), (10680, 2867, 'Malaysia', 'http://t.co/W2ZnbAzN /// ฝ่าบาท ซูฮยอน นู๋ขอเปงมเหสีได้ม๊าาา อิอิ'), (10681, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 40'), (10682, 363, 'Johor Bahru, Johore', 'Troublesome-''-'), (10683, 2868, 'Johore, Malaysia', 'Gila bersama di rumah fathia @Clarameidali @AchaGitaVryn @Fathia_Jang and jihan'), (10684, 1786, 'Johore, Malaysia', 'RT @HidayatGD: Ooh pretty girl. Following:68 Followers:768 Haish #hasthiseverhappentoyou'), (10685, 1359, 'Johor Bahru, Johore', '@ArizDCruz today what day uh ? Sunday suppose to go where ah ? Keluar kan ? OH TAK EH'), (10686, 2118, 'Singapore', 'Not going to buy Polaroid Camera, too expensive. Maybe try holga'), (10687, 2584, 'Singapore', 'don''t you remember'), (10688, 1991, 'Johore, Malaysia', '@crazziefreak whatsappp! take yr time bby.'), (10689, 2574, 'Riau, Indonesia', 'banyak yang nggak saya kenaal,, =='''), (10690, 2669, 'Johor Bahru, Johore', 'Screw this shit'), (10691, 524, 'Johore, Malaysia', 'I''m at Bus Stop 01112 (Opp Bugis Junction) (Singapore) http://t.co/TCxhbPHQ'), (10692, 2869, 'Johore, Malaysia', 'I''m at Adib''s Cave http://t.co/ZlxhJh0b'), (10693, 1359, 'Johor Bahru, Johore', 'Home sweet home'), (10694, 2625, 'Johore, Malaysia', '@Lertkillee yes it is http://t.co/wVQMOsSv'), (10695, 2653, 'Plentong, Johor Bahru', '@hanizahid awk mati ? okok , kita tak ambik lh :D hihi ^^ ni korg lepak kat mne ? bilik ?'), (10696, 158, 'Malaysia', '“@syazwanizzaty: you''re not a judge but if you''re gonna judge me, well sentence me to another life”'), (10697, 482, 'Johor Bahru, Johore', 'I''m at SHELL Autoserv (Singapore) http://t.co/iCwWWK3p'), (10698, 1468, 'Johor Bahru, Johore', '@YAPSHUANGYU OMG I NEVER SEE OLD AUNTIE LIFEGUARDS before !?! WAA I''ll drool'), (10699, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims amboii sekali duaa . hihi XD macam-2 lagu kate radiooo . hihi :)'), (10700, 2870, 'Johor Bahru, Johore', 'i''m so speechless, dun noe wat to text her. damn'), (10701, 12, 'Johore, Malaysia', '@IHEARTSUZY No. Lol. I said I will be waiting for Eli to reply me. :)'), (10702, 150, 'Johor Bahru, Johore', '@PiercingsnTats haha okay I''m home sweetie. :)'), (10703, 880, 'Plentong, Johor Bahru', 'Cari makan. (@ Taman Air Biru, Pasir Gudang) http://t.co/Ok5IMYwn'), (10704, 1784, 'Johor Bahru, Johore', '@HuiXd I think tmrw bah must Chiong finish xD NEH IMPOSSIBLE ONE confirm a lot no do yet one xD'), (10705, 2758, 'Johore, Malaysia', '@AlexeyJohnson tapi yg tk best byk lagu aku tk pernah dgr hah'), (10706, 2043, 'Malaysia', 'I''m at คอร์ตแบดมินตัน สปอร์ทคลับ w/ @o0icezzzaa0o http://t.co/rcZHNCx1'), (10707, 104, 'Johore, Malaysia', '@Sya_miza bront nabila n lain x kenal'), (10708, 2586, 'Indonesia', 'nyok nyokkk!! RT @syalsarama Twitteran nyok we !'), (10709, 2330, 'Tebrau, Johor Bahru', '@zhikanqisclumsy Hahhaha won''t la. Curse me uh?! Horhor. I tell Benjamin korkor.'), (10710, 2771, 'Johor Bahru, Johore', '@diontheonlyone hahaa. Kidding laa. But maybe u not there den she wont go:) wan bet? :)'), (10711, 2871, 'Johore, Malaysia', 'Doing hw (@ Home&lt;3) http://t.co/VOzPLrqJ'), (10712, 1635, 'Malaysia', '@Mivly_nakal ฟอลกลับล่ะจ้ะ ♥'), (10713, 1773, 'Johor Bahru, Johore', '@sandyshy ask @ShawnSHAWNNNNN'), (10714, 2872, 'Johor Bahru, Johore', 'I''m at Woodlands Interchange http://t.co/8wiApm6N'), (10715, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 @intanska @adamblaze2 why?? to overdoing ker?'), (10716, 2846, 'Singapore', '@FFunFair hhaha ! Trying to put your heart at ease. hhe, just don''t think about it. It may turn out to be a surprise ? tibe tibe smpai. ^-^'), (10717, 2787, 'Johore, Malaysia', 'dahah! ade orgnk aku mati ah.. k dah good to know all of u kwn kwn..'), (10718, 1784, 'Johor Bahru, Johore', '@BeingSyazwin random*'), (10719, 2868, 'Johore, Malaysia', 'Sampe rumah lngsung tepar'), (10720, 1359, 'Johor Bahru, Johore', '@ArizDCruz (Y)'), (10721, 1286, 'Johore, Malaysia', 'With Tercero! (@ Coffee Club) https://t.co/pQ91EL2z'), (10722, 859, 'Johor Bahru, Johore', '@H4PPYPILLS :)'), (10723, 2586, 'Indonesia', 'minta sama om beta :D RT @avidhidayat sayang aja gak punya T.T RT AnggyaMegaayu pakai penyedot kloset sana ahahaha xD RT @avidhidayat teling'), (10724, 2705, 'Plentong, Johor Bahru', 'kenapa awak handsome sgt #ahmadfaizal'), (10725, 2850, 'Johore, Malaysia', '@xiuyuuu your henry ah ah huey'), (10726, 1773, 'Johor Bahru, Johore', '@NowBangs KITKAT UR ASSHOLE LA'), (10727, 2873, 'Johore, Malaysia', 'Istirahat malam. . . For a better adventure tomorrow. . . (@ Feel at Home Backpackers) https://t.co/B6xwoZMU'), (10728, 544, 'Johor Bahru, Johore', 'People say time for showhand, I shall say time for @ian_ianization!'), (10729, 2874, 'Johore, Malaysia', 'Bitin naman ang break time! Ok lang I can wait for 1 more hour and I''m outta here!'), (10730, 2875, 'Malaysia', 'I''m at ตลาดกรีนเวย์ ((Green Way Market : HDY || w/ @greenkub http://t.co/QIfSYBGe'), (10731, 191, 'Plentong, Johor Bahru', 'Hello :'')'), (10732, 537, 'Johor Bahru, Johore', 'I''m at Ang Mo Kio Central (Singapore, Singapore) w/ 2 others http://t.co/25mUCnI1'), (10733, 2876, 'Singapore', 'damm you http://t.co/DD9SZmRN - i need a mothers day card! grrrr'), (10734, 2603, 'Plentong, Johor Bahru', '#SayaTakBiasa sebelum tidur tak salam tangan Ibu :'')'), (10735, 1735, 'Johor Bahru, Johore', '@chrisyyyyyy No problem. See ya at work!'), (10736, 2042, 'Johore, Malaysia', '@DieDieFromSkool Missing makes u feel a little sad but we juz ccudnt forget'), (10737, 49, 'Johor Bahru, Johore', '@f_cukyou now is like got 3 class in ur course thn for April intake ppl. They will open one more class so u and ur frens shld be in 1 class'), (10738, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 41 ...Followers sorry gw ngespam!!!hihi'), (10739, 2877, 'Johor Bahru, Johore', 'Bkackshot gerek ah ~'), (10740, 2846, 'Singapore', '@labibaaah_ idk mine''s what gb sia. xD'), (10741, 12, 'Johore, Malaysia', 'I''m singing my blues~~'), (10742, 1266, 'Johore, Malaysia', '@likuhhein @choonhockbleh @assortedbacon HEIN YOU SLOW LOL'), (10743, 158, 'Malaysia', 'Some sisters bullshit her little sisters'' life.'), (10744, 2878, 'Johor Bahru, Johore', '@FoudreRouge WTF! Baek2 ltr abg misai nampak stim terus... Hehx'), (10745, 1609, 'Johor Bahru, Johore', 'Got my milk tea.. :)'), (10746, 2422, 'Johor Bahru, Johore', '@Ohjanny well at least ada leave.. unlike me =('), (10747, 2820, 'Singapore', 'God, like seriously stop taking my friends life away? You took away my close sister few years back. My friends too. and one more again.'), (10748, 2809, 'Malaysia', 'หน้าเอิดเกินไปแล้วพวกข้า 55555" http://t.co/jMp56bp8'), (10749, 2880, 'Singapore', 'draws, feedbacks, responses. And you''ll make the money #pojiQuotes @99designs'), (10750, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini arghhhhh..jgn pertikaikan aku..selasa ni aku trun..kompemmm'), (10751, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 42'), (10752, 850, 'Johor Bahru, Johore', 'Goode night http://t.co/ThyKQhrb'), (10753, 771, 'Johore, Malaysia', '@inakayamgoreng kayu je . Lol'), (10754, 1847, 'Plentong, Johor Bahru', '@elyshaIstishad control control control control control control'), (10755, 2881, 'Johor Bahru, Johore', 'I''m at Woodlands Waterfront (Singapore, Singapore) http://t.co/LdmlnhNU'), (10756, 300, 'Johor Bahru, Johore', '@rrraihan go go go go :p'), (10757, 138, 'Johor Bahru, Johore', 'Gonna go bathe now. Later time to think of what happen just now at #2Lclassouting :3'), (10758, 2603, 'Plentong, Johor Bahru', '@NinaaImanina *Shugha elak* Tanya lewwww Hahahhaaha xD'), (10759, 2847, 'Tebrau, Johor Bahru', 'Hahais faiez adyy'), (10760, 2482, 'Singapore', 'I FEEL SO POPULAR RIGHT NOW COS PEOPLE ARE GIVING ME SHOUT OUT... HEHEHE!'), (10761, 267, 'Johore, Malaysia', '@Candid_At_Best seem popular with Asian ladies!'), (10762, 2403, 'Singapore', 'Haha!! Rui En Wear Spec Agn&gt;...&lt; CUTE!! Unriddle 2.'), (10763, 2586, 'Indonesia', 'semoga aja kita semua diberikan kehidupan yang terbaik sama allah, aminnn :)'), (10764, 2882, 'Johore, Malaysia', 'I''m at Love''s http://t.co/svswNv6H'), (10765, 2883, 'Johor Bahru, Johore', 'Craving for crazy crepes! :('), (10766, 897, 'Johore, Malaysia', 'Why 229 so long!:('), (10767, 2884, 'Kota Tinggi, Johore', 'I swear you''re running around my mind the whole day ❤'), (10768, 771, 'Johore, Malaysia', '@qayyumsanchie Kay . My number 91224954 . Text me first Kay'), (10769, 138, 'Johor Bahru, Johore', '@darezerwee IM HOME AT LAST'), (10770, 628, 'Johor Bahru, Johore', '@Mir_minnji okie'), (10771, 2885, 'Riau, Indonesia', 'waktunya belajar lagi...'), (10772, 1543, 'Johor Bahru, Johore', 'Cool place. 6pm -3am. Closed on Mondays. (at Nasi Lemak Kukus) — http://t.co/MnZsybQ7'), (10773, 2820, 'Singapore', '@MonsterrrFionaa Yeah. I remember.'), (10774, 504, 'Johor Bahru, Johore', 'This little scene between the little puppy and Horatio is soooo cute! :D http://t.co/FEHmLanp'), (10775, 72, 'Johor Bahru, Johore', '@SACREDS1NS dhoby ghat'), (10776, 60, 'Singapore', '@popsywhoopsy HAHAHA. nevermind. i think mdm cheah should return us our situational writing first actually. All our plans is attached to it.'), (10777, 2847, 'Tebrau, Johor Bahru', '@Faiezdeso ikr!'), (10778, 860, 'Johore, Malaysia', '@Lavouche bram braratatata tatatatatata~'), (10779, 2586, 'Indonesia', 'dari tadi kalah teruss┌∩┐(◣_◢)┌∩┐'), (10780, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 43'), (10781, 771, 'Johore, Malaysia', 'I hot seh :( . Ergh !'), (10782, 232, 'Johore, Malaysia', 'I''m at Park Yoochun''s Dreamland~* http://t.co/yc1V5Muh'), (10783, 2426, 'Johore, Malaysia', '@Aslinexht WHATIFFFFFFFF! AHAHA'), (10784, 1784, 'Johor Bahru, Johore', '@BeingSyazwin I feel like a loser LOL XD tmrw bah today I am already killed by my noobness LOL'), (10785, 523, 'Malaysia', '@Doraemon_aii เดี๊ยวโทรไปป'), (10786, 1024, 'Johor Bahru, Johore', '@KittennyScars k la, mayb we''re thinking differently lor'), (10787, 2886, 'Pulai, Johor Bahru', '@IrahGiler happy larh.. Yerh.. Sambil hate adik kauh, kauh tlgtlg skit dgn maths akuh.. Boleh tk adik azirah??'), (10788, 2586, 'Indonesia', 'gaul sih, walau pun dipaksain banget'), (10789, 2887, 'Johore, Malaysia', 'I''m at people park''s centre (China town) http://t.co/e1ofzGJd'), (10790, 2758, 'Johore, Malaysia', '@AlexeyJohnson byk Kpop uhh-.-'), (10791, 19, 'Johor Bahru, Johore', '@joaaanjoan full than go find toilet n shit everything out... Hahahha...'), (10792, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 44'), (10793, 2403, 'Singapore', 'Haha!! Rui En Wear Specs Agn&gt;...&lt; CUTE!! Unriddle 2.'), (10794, 897, 'Johore, Malaysia', '@Blehtan how I know which singer you talking about!'), (10795, 2888, 'Malaysia', 'อายมาก (@ Tesco Lotus (เทสโก้ โลตัส) w/ 2 others) [pic]: http://t.co/28s6iByK'), (10796, 859, 'Johor Bahru, Johore', '#Nowwatching chnl u showhand! :)'), (10797, 2290, 'Plentong, Johor Bahru', 'Dinner ramai2, bayar sorang2... Hehehehe.. (@ Sekinchan Ikan Bakar (Johor Bahru)) http://t.co/1E6fmImS'), (10798, 1791, 'Johor Bahru, Johore', 'Nonononono . He''s angry at me ): .'), (10799, 1116, 'Johore, Malaysia', 'If only phone battery have a long life. Like 500%?'), (10800, 495, 'Pulai, Johor Bahru', '#KalauCrushAku tahuu akulah org yg crush kat DIA..\nAku tak mengharap DIA suka kat aku ponn..\n#SiapalahSaya :&amp;#39;)'), (10801, 771, 'Johore, Malaysia', '@inakayamgoreng aren''t we talking right now ?'), (10802, 2118, 'Singapore', '@NasuhaNsr around 6++ @MuhdFirman saw too. You was with little boy'), (10803, 303, 'Johor Bahru, Johore', '@xiaodan12 @decadentdecline then you still tell us you okay!'), (10804, 2889, 'Johore, Malaysia', 'I just ousted Saumil as the mayor of Nadaman@Shangri-La Hotel on @foursquare! http://t.co/JFVBEEhY'), (10805, 2890, 'Johore, Malaysia', '@Maahheessaann Happy Birthday MahesanXD'), (10806, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz @piggyoinkoinkz ok let''s go home Tgt :D'), (10807, 1009, 'Johor Bahru, Johore', 'I''m at Living Room ! http://t.co/chhxdPRO'), (10808, 2482, 'Singapore', '@OreoStereo WAS THAT U ON RADIO??? DAFUGGGG'), (10809, 2586, 'Indonesia', 'panas banget (╯_╰)'), (10810, 2787, 'Johore, Malaysia', 'try type gitu mcm'), (10811, 1815, 'Johor Bahru, Johore', '@baconstripperss @assortedbacon threesome fun!'), (10812, 2891, 'Singapore', 'OSIF\noh shit it''s friday :O'), (10813, 3, 'Johor Bahru, Johore', '@kimberly_chia YEAHHHHHHH!!!'), (10814, 700, 'Johor Bahru, Johore', 'Im just useless'), (10815, 2042, 'Johore, Malaysia', 'OMG I LEFT THE CAGE OPENED N MY HAMSTER RAN OUT!NO WONDER WHEN I WENT OUT MY DOG RANSACKED THROUGH THE SHOES N I FOUND OUT IT WASN''T THERE.'), (10816, 2653, 'Plentong, Johor Bahru', '@hanizahid ohh , hahahaa . cium kna Iris untuk kita :* thx :D'), (10817, 2892, 'Johore, Malaysia', '@CherieKwek wrong ans'), (10818, 2886, 'Pulai, Johor Bahru', '@IrahGiler I now.. U miss me rite ?? Hahahaha !! :D'), (10819, 72, 'Johor Bahru, Johore', '@himynameiskeely gws :)'), (10820, 2426, 'Johore, Malaysia', 'You everyth also say to seniors one lo -,-'), (10821, 2118, 'Singapore', '@MuhdFirman about generation Y'), (10822, 1784, 'Johor Bahru, Johore', '@HuiXd you too:) oh English ._. Canteen no nice food one lah LOL'), (10823, 1435, 'Johor Bahru, Johore', 'Sorry for leaving you.'), (10824, 2758, 'Johore, Malaysia', 'Da lama eh tk raving.'), (10825, 2330, 'Tebrau, Johor Bahru', '@aubreybuttowski @SyasyaUmar Hmm okay. Try my best! But will get killed my some people like my mama.'), (10826, 1060, 'Plentong, Johor Bahru', 'Dekat kolej saya ada kursus Budak Pavi?'), (10827, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 45'), (10828, 357, 'Johor Bahru, Johore', 'Since tmr is my stay home day...I shall do hw? Ahhh. Anyone wanna come over? Lol!'), (10829, 1773, 'Johor Bahru, Johore', '@NowBangs PS IDW SEE UR FACE. CHEH'), (10830, 2820, 'Singapore', '@MonsterrrFionaa @MeitingTMT @sealedinscarlet @KSiewXing @_Ahmei @AbsoDorkBuu @heffyflorella, If you can make it tomorrow 2pm @ Bugis.'), (10831, 2893, 'Johore, Malaysia', 'My teacher gave me a SCGS Math paper just now.'), (10832, 442, 'Johore, Malaysia', 'I''m at The Cathay (Singapore) w/ 2 others http://t.co/jELOHoQs'), (10833, 1116, 'Johore, Malaysia', 'Ahh competitions are coming!!'), (10834, 938, 'Johore, Malaysia', '@_KristineNicole never follow me 0-0 So bad T.T'), (10835, 2636, 'Johore, Malaysia', 'Playing Pokemon Ruby tomorrow. :S'), (10836, 1756, 'Johore, Malaysia', 'i got blueberry melts for freeeeee. yay !'), (10837, 19, 'Johor Bahru, Johore', '@PPenguinBoy petty or not... Suddenly u take some aunty photo.... Hahahahaha... Fake la....'), (10838, 1872, 'Johore, Malaysia', 'Angkrem slimutan .. (@ The Fullerton Hotel Singapore w/ 2 others) http://t.co/3ar9DGpA'), (10839, 2741, 'Plentong, Johor Bahru', '@Alysiayte jom r0men'), (10840, 72, 'Johor Bahru, Johore', '@frappeliciousQT OH! That place got alot board games *-*'), (10841, 2586, 'Indonesia', 'tobatobatobatobatobatobat'), (10842, 40, 'Johor Bahru, Johore', '@TinTan__ @jyeoj tin ah.. Even if Joey gets the ticket she will be sitting with whoever maryanne was going with?'), (10843, 2482, 'Singapore', '@LailaSykes OMG!!! ON MONDAY AKU KASI KAU HUG OK!! :)'), (10844, 2893, 'Johore, Malaysia', 'And it''s a murderer.'), (10845, 357, 'Johor Bahru, Johore', 'Throat very sore :/ sian.'), (10846, 12, 'Johore, Malaysia', '@IHEARTSUZY :P But sound like some song. Hmm.'), (10847, 700, 'Johor Bahru, Johore', 'You deserve better, yeah'), (10848, 1009, 'Johor Bahru, Johore', 'I''m at Tvvvvv. http://t.co/sxTi0nvb'), (10849, 2885, 'Riau, Indonesia', 'barakallahu fii umrik uni @nirina_zubir sukses slalu...'), (10850, 2603, 'Plentong, Johor Bahru', '@ShukriHani Ohh hihi. Jangan ahh Kekeasih gelap, Kita tak gelap ahh HAHAAHAHA xD Dah maju sekarang ada ''Ku'' :)'), (10851, 138, 'Johor Bahru, Johore', '@Vantsoul I dont dare go down my house the minimart. Scared :('), (10852, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa haha .aq buat sains sukan je .dak2 ni ckp bi ad gak keje .'), (10853, 1847, 'Plentong, Johor Bahru', '@TheLittleFatt hahaha layan skrillex jugak kau ni'), (10854, 1773, 'Johor Bahru, Johore', '@sandyshy @EleChipMe YA YA YA ! LOL'), (10855, 2748, 'Johore, Malaysia', '@acapohlala Haha :] ok laa acap maw mandi ,Lain kali twit/2 lg .Haha kirim salam Jessie J taww :] byee Hahaaa'), (10856, 2579, 'Plentong, Johor Bahru', 'I''m at Chicken Chop Hutan Bandar http://t.co/KLrKysVP'), (10857, 2832, 'Singapore', '@huiqi_1996 http://t.co/0SKCQsLL HERE''S THE LINK!!!!SUPER NICE!!!'), (10858, 1260, 'Johor Bahru, Johore', 'math hwaiting!!!!!!!!!!!!!!'), (10859, 2085, 'Plentong, Johor Bahru', 'I''m at Roost Juice+Bar (Johor Bahru, Johor) [pic]: http://t.co/Dq6pFHeC'), (10860, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs haha . Menipu sangat takde duit :p !'), (10861, 1292, 'Johor Bahru, Johore', 'Home at last... I''m freezing like mad'), (10862, 2893, 'Johore, Malaysia', 'Paper 1 and I can only do like 15% of the paper...'), (10863, 1993, 'Kota Tinggi, Johore', 'Ren is pretty for a boy:) me likey cz his skin is flawless'), (10864, 2334, 'Johor Bahru, Johore', 'Who knows what will happen next ?'), (10865, 1190, 'Johor Bahru, Johore', '@Heart__Breaks she damn zai sia'), (10866, 40, 'Johor Bahru, Johore', '@Jyeoj @krackedlips I think no more liao!!!'), (10867, 60, 'Singapore', '@popsywhoopsy hmm, i think we would just meet at geylang east library tmr and then go insyiraah house then we start to refresh our memory!'), (10868, 495, 'Pulai, Johor Bahru', '@evayezza ape yg SAYA tak tahu?'), (10869, 2894, 'Johor Bahru, Johore', 'Watching a movie before I sleep @ 4 Walls That Surrounds Me http://t.co/uk66qhwU'), (10870, 138, 'Johor Bahru, Johore', 'Okay charge phone and bathe'), (10871, 860, 'Johore, Malaysia', '@thINNOCENTx3 AIYA, he complaining next year de. Hahaha.'), (10872, 1791, 'Johor Bahru, Johore', '@_kissmyyyass Me ! I''m here for you (: .'), (10873, 1116, 'Johore, Malaysia', 'Gonna skip 4 days of lessons :/ :O'), (10874, 2118, 'Singapore', 'I could carry Amirul Daniel up to the ceiling. Either he is super light or I am strong. #lol'), (10875, 363, 'Johor Bahru, Johore', '@Moonotopia *whistles*'), (10876, 2651, 'Johor Bahru, Johore', 'Goodnight. :)'), (10877, 2252, 'Johor Bahru, Johore', '@shielaahashim cite tu merepek bole .hahaha'), (10878, 2745, 'Johor Bahru, Johore', '@conjelline totoo nga ba yun akala ko joke lang yun'), (10879, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 46'), (10880, 2257, 'Johor Bahru, Johore', '@mdnooradli helo my buddy!!!!'), (10881, 2426, 'Johore, Malaysia', 'YES SHINEE''S COMEBACK ON MARCH 19!!!! YAY LIKE FINALLY'), (10882, 1255, 'Singapore', '@shielim idk how to put it..but there is like a way to make them feel fraustrated then confess &gt;w&lt;'), (10883, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh cinema 4D LOL'), (10884, 2893, 'Johore, Malaysia', 'Imagine if it''s paper 2,I wouldn''t need to look at the paper lol'), (10885, 2895, 'Kota Tinggi, Johore', 'I''m at Eilleen''s Crib! (Singapore, 08-874) http://t.co/dbfN1BK6'), (10886, 1024, 'Johor Bahru, Johore', '@KittennyScars nooooo, got hair ))):'), (10887, 2639, 'Singapore', '@WayneTCW99 helicopter in a plastic bag? but i tot helicopter fly in the sky? why in plastic bag? LOL JKJK :DDD'), (10888, 2823, 'Johore, Malaysia', '@sierrasiesta sapa sapa sapa? Kenapa kenapa kenapa? Mari saya bantu haha'), (10889, 2896, 'Kota Tinggi, Johore', 'I''m at Blk 716, Bedok Reservoir Road http://t.co/7XHkvmgN'), (10890, 2482, 'Singapore', 'BESOK SAPE BAWAK RADIO????? AKU REQUEST SURUH ON RADIO913'), (10891, 72, 'Johor Bahru, Johore', '@sheneedstrength desserts quite cool! *-* bpghs home Econs no teach meh? :o good luck to u! :D'), (10892, 12, 'Johore, Malaysia', 'I''m a Hottest. &lt;3'), (10893, 2832, 'Singapore', '@septemberoute have you see this? : http://t.co/0SKCQsLL'), (10894, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx COOLSTORYBRO'), (10895, 2758, 'Johore, Malaysia', '@AlexeyJohnson aah tu yg tk best abe yg blh main asik lagu sama jer'), (10896, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 47'), (10897, 2897, 'Johor Bahru, Johore', 'I''m at Changi International Airport (SIN) (Singapore, Singapore) w/ 8 others http://t.co/0i9qgXFe'), (10898, 1816, 'Johore, Malaysia', '@KarmahnT I''m so sorry km :( I''m on study lockdown now :(( tuition and books are my date tmr...'), (10899, 2042, 'Johore, Malaysia', 'THEN MY GRANNY SAID SHE SAW A BLACK THING IN HER ROOM N SHE FOUND OUT IT WAS THE HAMSTER N SHE RETURNED TO US.'), (10900, 1266, 'Johore, Malaysia', '@likuhhein @choonhockbleh @assortedbacon I ALSO USING PHONE LOL NO EXCUSES'), (10901, 2898, 'Johore, Malaysia', 'I''m at Nabins (Singapore, Singapore) w/ 5 others http://t.co/IoJ5LTlf'), (10902, 191, 'Plentong, Johor Bahru', 'Cakaplah Fadhhh. Kita tak kisah ;)'), (10903, 12, 'Johore, Malaysia', 'I''m a BANA. &lt;3'), (10904, 1773, 'Johor Bahru, Johore', '@NowBangs UR PROBLEM LA'), (10905, 2403, 'Singapore', '#PeopleIWantToMeet RUI EN!!!!!!!!! ♥ U!!'), (10906, 2743, 'Johore, Malaysia', '@frenchyy8D @swaggitbieber no have la !!!!!!! &gt;&lt;'), (10907, 1847, 'Plentong, Johor Bahru', '@elyshaIstishad hahah~~ anyway aq suka cerita tu'), (10908, 852, 'Johor Bahru, Johore', 'My body has alot of problems!! HAIXZZZZ.'), (10909, 2889, 'Johore, Malaysia', 'Juz arrived back in my room! (@ Shangri-La Garden Wing Room 383) [pic]: http://t.co/29fnC28i'), (10910, 1685, 'Johor Bahru, Johore', 'I''m at Home Sweet Home ^^ http://t.co/zx71DTMZ'), (10911, 1993, 'Kota Tinggi, Johore', 'ARON AND BAEKHO MY BIAS FOR NU''EST'), (10912, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 48'), (10913, 1971, 'Johor Bahru, Johore', 'I''m at R8 http://t.co/eVaEsemq'), (10914, 1173, 'Plentong, Johor Bahru', 'alamak! lagu wish you were here pulak! alaaaaa tknk tacing tacing :''( hhiiiisssssshhhhhhhh'), (10915, 435, 'Johor Bahru, Johore', 'Hi, tell me about yourself, your name, your dreams, your ambitions. As well as your number.'), (10916, 2758, 'Johore, Malaysia', 'So sad that I cant perform my friday prayer tmrw:('), (10917, 2118, 'Singapore', '@NasuhaNsr @MuhdFirman he is not that fat la..hahah'), (10918, 2450, 'Johor Bahru, Johore', '@B_cookiemonster not feeling well.. Kk see you tomolo..'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (10919, 158, 'Malaysia', 'I just don''t know either me being so bad to her or she really just makes me go insane sometimes.'), (10920, 566, 'Johor Bahru, Johore', 'Waiting for lift (@ Blk 756 Yishun St 72 ("v")) http://t.co/G7fidfOG'), (10921, 49, 'Johor Bahru, Johore', '@f_cukyou ya so maybe only la haha !!'), (10922, 2868, 'Johore, Malaysia', '@indiraaisyaP "-_-'), (10923, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 49'), (10924, 2891, 'Singapore', '@bunnyrobots have? :O'), (10925, 141, 'Johor Bahru, Johore', '@tinzliang sama mo n ang cross legs at croosed eyes #junjun :-)'), (10926, 716, 'Johor Bahru, Johore', 'Should I go for a run tomorow. Hahah. But I''m afarid when I run half-way my sport shoes spoiled. Ahh.. x.x'), (10927, 2899, 'Johor Bahru, Johore', 'And for bday i plan to have a dozen of this. Probably the best indulgence ever without getting fat'), (10928, 1190, 'Johor Bahru, Johore', '#TheEpicMoment when I hit my own hand very hard while playing heart attack ...'), (10929, 1116, 'Johore, Malaysia', 'Meeting the same competitor gives me some stress.'), (10930, 2475, 'Johor Bahru, Johore', '@foreveralwaysz huh??'), (10931, 523, 'Malaysia', '@orioenjoy สู้ ๆ ค่ะ พี่สาว :)'), (10932, 2745, 'Johor Bahru, Johore', '@conjelline ah wala ng lovers noh? Hahahhahaha sabi sakin dahil sakin daw e hahahaha inuuto ako e hahaha'), (10933, 1784, 'Johor Bahru, Johore', '@HuiXd LOL liar sia, 3 years u never eat before but is not not nice it''s just average LOL'), (10934, 2574, 'Riau, Indonesia', '@olfaresha hmmm siapa ya???'), (10935, 159, 'Johore, Malaysia', '@orangeduke97 WA likedat right we all kidnapp her smuggle her into a deserted island ah! NO WAY will she see this 100%guarantee(:'), (10936, 2118, 'Singapore', '@Karl_In_Bandung was stalking me just now.....'), (10937, 104, 'Johore, Malaysia', '@Sya_miza nite2'), (10938, 606, 'Johor Bahru, Johore', 'Someone help! What''s this? http://t.co/vAbDokf8'), (10939, 12, 'Johore, Malaysia', 'SLRY!! Why UKiss member never reply to my tweet. ==" But others?!'), (10940, 2900, 'Plentong, Johor Bahru', 'Sorry Late twit, sebok tolong parent untuk psedian kahwin abang :) Sihat jer :D RT @SHYTeenagers17 "@dean_AmyEv Okay Okay , sihat tak ? :D"'), (10941, 1993, 'Kota Tinggi, Johore', 'Nowplaying Face NU''EST~~~~'), (10942, 523, 'Malaysia', '@SodsaiiZ ไปไป 55 แต่ไปวันพุธ'), (10943, 245, 'Johor Bahru, Johore', 'I''m at Syed Restaurant (Yishun) http://t.co/wWAjl9Cm'), (10944, 1791, 'Johor Bahru, Johore', 'He almost killed her by strangling her omg . LOL .'), (10945, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha apelaaa . bukan laaa banyak makan domino tuuu laa jadinyaa . lain kali jangan makan bagi akak . hihi :)'), (10946, 2042, 'Johore, Malaysia', 'I WAS RELIEVED N MY DOG ACTUALLY HELPED OUT THE MOST N I FEEL IRRESPONSIBLE N NOW I M CRYING.*SOBS*'), (10947, 80, 'Johor Bahru, Johore', '@gric_95 SKYPE'), (10948, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx THAT STORY LUKAS WOOF WOOF TOLD ME'), (10949, 2901, 'Johore, Malaysia', 'Muddy mud pie #dessert #sweet #coffee #chocolate #instasg #instacity #igsg #sgig #iphoneonly @ Coffee Club http://t.co/XQyL2ogs'), (10950, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 50'), (10951, 2902, 'Tebrau, Johor Bahru', 'Charging my phone for the third time now. ._.'), (10952, 2463, 'Johore, Malaysia', 'I''m at 顺忠坛 http://t.co/8P5rKO5z'), (10953, 1773, 'Johor Bahru, Johore', '@NowBangs NOTED'), (10954, 2602, 'Johor Bahru, Johore', 'Friendzone.'), (10955, 938, 'Johore, Malaysia', 'Seriously ._. This kester irritate me like fk ._.'), (10956, 2878, 'Johor Bahru, Johore', '@Syazfeera @foudrerouge Cik, saya dah janji nk kawin same hari ngan anak cik &amp; aini... Ktrg masi tgu abg misai lebat drg meminang'), (10957, 2752, 'Johor Bahru, Johore', '@Evil_With_a_D hahas. Nth much. :P I just reach 150% alr need LGS for ZT HAHAHHA. :P panic.'), (10958, 2758, 'Johore, Malaysia', '@AlexeyJohnson aah!Sampai aku tk terbuat hw tadi main tu game.'), (10959, 1791, 'Johor Bahru, Johore', '@_kissmyyyass Don''t cry . WHASTAPP !'), (10960, 2903, 'Johor Bahru, Johore', 'Yes I just got home ! Work today was bz yet relaxing'), (10961, 2072, 'Kota Tinggi, Johore', '@ashhlleeey why you becoming more ''Glenmond Lee'' (GL)?'), (10962, 1173, 'Plentong, Johor Bahru', '@khaicees hehehehehehehehe :D khai esok khai dtg netball pkul brapa? nak main gym dlu tak pagi tuu kat thistle? jom!! for free hehehe'), (10963, 2904, 'Johor Bahru, Johore', 'Watching Pocoyo with Kieron.'), (10964, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 *ozzy osborn: who the f collin morgan!'), (10965, 1756, 'Johore, Malaysia', 'di maccccccc (: http://t.co/ljXwowcx'), (10966, 2905, 'Malaysia', 'I''m at Hybrid House Food &amp; Drink (Hat Yai, Songkhla) http://t.co/ThTUaIWg'), (10967, 2906, 'Johore, Malaysia', '@alvinathaniel what?'), (10968, 158, 'Malaysia', 'I don''t insult her when she''s down but she insults me hurtly when I was feeling down. She said I''m ugly and my marks r ugly too.'), (10969, 1040, 'Kota Tinggi, Johore', 'My phone bill $88 . Abang $198 . Ishhhh . Banyak nyer &gt;&lt; . Ya''allah :/'), (10970, 12, 'Johore, Malaysia', 'I''m a Say A. &lt;3'), (10971, 1173, 'Plentong, Johor Bahru', '@RazaliIzzuddin laksamana doremi awak ~.~'), (10972, 2335, 'Johore, Malaysia', '@batrisyiatw RLY? I DIDNT HEAR UR NAME LOL'), (10973, 2230, 'Johor Bahru, Johore', 'Supper with myself only... (@ Cheng San Market and Food Center) http://t.co/ZFfAGU1Z'), (10974, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 51'), (10975, 2617, 'Johor Bahru, Johore', '@KIMJIOHH u sat got BBQ ? :O'), (10976, 2705, 'Plentong, Johor Bahru', '@SharmiNazira gasak aku tak buat'), (10977, 768, 'Johor Bahru, Johore', '@Kristoff0428 di ko nahalata nung una..till I zoom in the pic! Genius!'), (10978, 2252, 'Johor Bahru, Johore', 'bdekak seh aq tngok cite LAWAK KE DER ni .sakit perut aq .hahaha'), (10979, 141, 'Johor Bahru, Johore', '@tinzliang chika..u dont know? I dnt know too haha'), (10980, 2610, 'Johor Bahru, Johore', 'Wanna ciao soon, so tired naow '), (10981, 2118, 'Singapore', 'Should I care less or give a damn less, if that makes me happier?'), (10982, 12, 'Johore, Malaysia', 'I''m A Blackjack. &lt;3'), (10983, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx I dogtag, u dogface :D'), (10984, 2907, 'Johor Bahru, Johore', 'Makan :) (@ Kovan 212 coffeeshop) http://t.co/xLG6c87m'), (10985, 2908, 'Johor Bahru, Johore', '@JustinWWD @NinjaWithaGun i dun wan jio leh. What can u do? (: at home boring sia~ -.-'), (10986, 2603, 'Plentong, Johor Bahru', '#AmukanPocong dah start *tukar channel* Top Model Special #nw'), (10987, 1756, 'Johore, Malaysia', 'someone always merajuk with me :('), (10988, 435, 'Johor Bahru, Johore', '@heartwinkle haha! Are you trying to say looks can be deceiving? Hahaha!'), (10989, 859, 'Johor Bahru, Johore', '@CELINLEONG Hehehe. ;) U nw watching showhand rite?'), (10990, 2782, 'Indonesia', 'mana RT @arwan_widianto'), (10991, 938, 'Johore, Malaysia', 'Jealous :D . RT @ScarlettKaylene Thanks Mom!!!! Ma Bday Present! ^^ http://t.co/0i50H4bu'), (10992, 165, 'Johor Bahru, Johore', '@Rosesthatlive hmm i tink chen lao shi will be here. Nt sure if de costume is done. But we''ve seen de sample its blak color. :)'), (10993, 1773, 'Johor Bahru, Johore', '@NowBangs OK CAN'), (10994, 860, 'Johore, Malaysia', '@thINNOCENTx3 you very jialat la. IM just joking.'), (10995, 937, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 12 others http://t.co/5npW87Wj'), (10996, 1173, 'Plentong, Johor Bahru', '@Rafidahfirdaus hahaha tgok kakak marah :''( ngadu kat abanglaaa gini hahahahahaha fidaa fidaa'), (10997, 2868, 'Johore, Malaysia', 'Chatting gila bersama @indiraaisyaP @Clarameidali @AchaViryani'), (10998, 1185, 'Johor Bahru, Johore', '@kuh0l @_jeremyroy pagpasensyahan mo na. Slow eh. Hahahaha'), (10999, 2477, 'Johore, Malaysia', 'should i sleep early tonight ?'), (11000, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar sokaykaykaykay'), (11001, 716, 'Johor Bahru, Johore', '@tripodmonster No laa, kind to youu, the villa is for youu to livee then SGD$10,000,000 cheque for me okaays. ^_^'), (11002, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 52'), (11003, 158, 'Malaysia', 'Then, I was like okay fine. Someday I''m on the highest tower you will ever known'), (11004, 495, 'Pulai, Johor Bahru', '#KalauCrushAku tu crush ngan AKU jugekk,\nHAHA! Ni kes berat nihh!Janganlah CRUSH dgn akuu..\n*MALU LAHHH!*'), (11005, 2910, 'Johore, Malaysia', 'its 10:10, and i have another hour of homework to do, but i don''t want to start #procrastinationstation'), (11006, 1784, 'Johor Bahru, Johore', '@BeingSyazwin LOL BULLY TOWARDS SMAL ANIMAL XD'), (11007, 2118, 'Singapore', 'Maybe I care too much for others, I hardly recognize myself.'), (11008, 12, 'Johore, Malaysia', 'I''m A V.I.P. &lt;3'), (11009, 720, 'Plentong, Johor Bahru', '@CikKatira haha tu lahh . iolls pun rindu uolls jugak . hahahaha'), (11010, 897, 'Johore, Malaysia', '@colouredtears I just kena the model thing again this afternoon!-.-'), (11011, 1350, 'Riau, Indonesia', 'mslhnya org" ini seakan memaksaku utk mengerjakan semuanya secepat" nya RT @maxgheto Hahahahaha.RT"@rulirara: serius deh, aku selalu gk'), (11012, 2252, 'Johor Bahru, Johore', '@shielaahashim hahaa .aq tngok bpe kali je .'), (11013, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh choon hock de is hard boiled egg LOL'), (11014, 860, 'Johore, Malaysia', '@Lavouche I, I, love you like a love song, baby !'), (11015, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 53'), (11016, 2755, 'Johor Bahru, Johore', 'I''m at 118 Bukit Batok West Avenue 6 http://t.co/0gpZOozn'), (11017, 2828, 'Johor Bahru, Johore', '@X_I_N_P_E_I @chunsiongwcs ._. I mean'), (11018, 2911, 'Johore, Malaysia', '@4NDR0M3D4_ Hello!'), (11019, 3, 'Johor Bahru, Johore', 'Two ah long so cute WTH &lt;3 ;p'), (11020, 2330, 'Tebrau, Johor Bahru', 'Hate it when he gets angry.'), (11021, 847, 'Johore, Malaysia', 'I''m at Sky Park (Singapore) w/ 3 others http://t.co/wnQiM6RV'), (11022, 2555, 'Johor Bahru, Johore', '@bJiaYi hahaha. Yeah luh! That Yellow,orange lover .'), (11023, 2912, 'Johor Bahru, Johore', 'Watching the Stephen kings. (@ My Oppars'' Sofa ) http://t.co/jBQr5E6P'), (11024, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini sem lepas aku turun la dik..sem ni je blom stat ag.asik hujan je..=P'), (11025, 72, 'Johor Bahru, Johore', '@piggyoinkoinkz @chocoblitzzz D: so bad to me :( #ForeverAlone'), (11026, 117, 'Johore, Malaysia', 'My sister is skyping and otp with her fan crazing about Kpop what shinee what whatever shit i dont wish to know'), (11027, 772, 'Johor Bahru, Johore', 'Done with #Devdas! Now #AmukanPocong'), (11028, 2365, 'Indonesia', '"@JiYeonIndoFans #7AraStayTogether RT kalau kamu tidak setuju anggota t-ara diganti'), (11029, 2758, 'Johore, Malaysia', 'I miss you girl:('), (11030, 2550, 'Johor Bahru, Johore', 'Nothing is confirm. I shouldn''t wait!!! Simple thing like this. Sigh.'), (11031, 2913, 'Johor Bahru, Johore', 'with @meitingtmt ! (@ McDonald''s) http://t.co/QAgyUmkS'), (11032, 2070, 'Riau, Indonesia', 'bundaaaaaaaaaaaa ayolah ke disctarra beli 1hari yg cerah nya kak @BUDIdoremi ;(((('), (11033, 2743, 'Johore, Malaysia', '@swaggitbieber waaa &gt;&lt; like that la ~~'), (11034, 117, 'Johore, Malaysia', '*friend'), (11035, 1691, 'Johore, Malaysia', 'But , I will still try .. Coz I wan to let them noe tat I care for them :)'), (11036, 1784, 'Johor Bahru, Johore', '@HuiXd LOL really._o? Cool lol. It''s not nice anyway don''t eat better hahah lol'), (11037, 206, 'Singapore', '@bunnybaby1315 nice sia:D'), (11038, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx MY SPECS ONLY PAJIAO FOR U , SERIOUSLY EVERYBODY LOOKS OKAY , BUT HOW COME U GOT DOGFACE?!'), (11039, 435, 'Johor Bahru, Johore', 'Shall stop these lines for today. Haha!'), (11040, 2914, 'Johor Bahru, Johore', '“SOMETIMES being too nice is dangerous &amp; harmful to our heart. You have to show your mean side once in a while to avoid getting hurt.,!”'), (11041, 2745, 'Johor Bahru, Johore', '@conjelline hahhaa sigr mag dm ka na lang sakin hahahhahaha'), (11042, 2915, 'Johore, Malaysia', 'While he''s saving the world, I''m playing scramble :)'), (11043, 2916, 'Johore, Malaysia', 'Burp! @Merisngjingwen'), (11044, 60, 'Singapore', 'HAHAH. wtf. just remembered that i had an formspring account. and i went in just now with those really old questions.'), (11045, 2330, 'Tebrau, Johor Bahru', '@aubreybuttowski @SyasyaUmar But I can''t walk properly. Need rest my leg.'), (11046, 1773, 'Johor Bahru, Johore', '@NowBangs kcan.'), (11047, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 54'), (11048, 206, 'Singapore', 'shall stop my rnj video and listen to de mashups ♥'), (11049, 2083, 'Johor Bahru, Johore', 'I''m at Qimin''s Crib (Singapore) http://t.co/gc9wj5dP'), (11050, 2284, 'Johore, Malaysia', 'Testing for new ign. Cool ar? Aiden dè Neymar!'), (11051, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa hahaha .youtube pn ad la .'), (11052, 2230, 'Johor Bahru, Johore', 'Supper with myself only... (@ Cheng San Market and Food Center) http://t.co/zKGdFHdN'), (11053, 2917, 'Johor Bahru, Johore', 'At T3 macd airport...waiting for hongkong flight'), (11054, 2292, 'Johore, Malaysia', '@RaymondScrewYou HAHAHA omg so sensitive for what!'), (11055, 495, 'Pulai, Johor Bahru', '#SayaTakBiasa orang cakap DIA suka SAYA..\n#SeriousNi'), (11056, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 55'), (11057, 952, 'Johore, Malaysia', 'Finally Bedok.! (@ Bedok MRT Station (EW5) w/ 2 others) http://t.co/htzQ22Mi'), (11058, 342, 'Johore, Malaysia', 'Come fly to me i''ll show you what it''s like ... &lt;3'), (11059, 72, 'Johor Bahru, Johore', '@JingYingLeong my draw something cannot find thru fb. I need the specific username. Or u add a game. My username is wesleyteooo . Either 3'), (11060, 2918, 'Johor Bahru, Johore', 'Finally bck in singapore ! Yay!!'), (11061, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx gou lian~'), (11062, 494, 'Johor Bahru, Johore', '@SyafiqLee u yg tk msg i dulu'), (11063, 1266, 'Johore, Malaysia', '@likuhhein @choonhockbleh @assortedbacon HEIN NO EZCUZES ALSO LOL. IM ALSO USING 3G!'), (11064, 2803, 'Malaysia', '@chanakarn_kook เช้าเรียน เคมี บ่ายเรียน สังคม อยากจะบอก สังคมหนุก'), (11065, 72, 'Johor Bahru, Johore', '@JingYingLeong or 4 "o"s'), (11066, 768, 'Johor Bahru, Johore', 'Oh e ano ngayon Kung size 11 shu-es ko!? #lacoste @iamynnebor sayo kasya bunso! Lols http://t.co/veZ3yqzx'), (11067, 716, 'Johor Bahru, Johore', 'Or should I wear my sister''s sport shoes. But, the problem is laater also spoiled how. Ahhh.. x.x'), (11068, 1784, 'Johor Bahru, Johore', 'Okay I shall sleeeeep.'), (11069, 2919, 'Johor Bahru, Johore', '@nonakirana totally agree!'), (11070, 434, 'Johor Bahru, Johore', 'I just ousted YenYin Q. as the mayor of Kang Kar Mall (Hougang) on @foursquare! http://t.co/fl8hR3pr'), (11071, 434, 'Johor Bahru, Johore', 'I''m at Kang Kar Mall (Hougang) (Singapore, Singapore) http://t.co/ND0Vj4Ql'), (11072, 1914, 'Malaysia', 'I''m at Hat Yai Sport Club (Hat Yai, Songkhla) http://t.co/woIumVbe'), (11073, 2653, 'Plentong, Johor Bahru', '@hanizahid kan ? Ya Allah , rindu nak dokong die , hahaha . Iris comel die lain , tak mcm akak ngn abg die , hahahahaa lol x) *joke*'), (11074, 700, 'Johor Bahru, Johore', 'You''re better off without me baby'), (11075, 2920, 'Johore, Malaysia', 'I''m at Starbucks (Singapore, Singapore) w/ 2 others http://t.co/3KgmNuGl'), (11076, 2918, 'Johor Bahru, Johore', 'Eizaz text me a lot sia. Alermakk .. -____-'), (11077, 2921, 'Johor Bahru, Johore', 'Just ended training... ^^v (@ Blk 616 takraw court) http://t.co/ofTFbwdG'), (11078, 2921, 'Johor Bahru, Johore', 'I just became the mayor of Blk 616 takraw court on @foursquare! http://t.co/mqkvex6G'), (11079, 1190, 'Johor Bahru, Johore', '@Heart__Breaks ikr'), (11080, 2868, 'Johore, Malaysia', 'Sekarang jam 10:12 malem gw masih belom bisa tidur'), (11081, 206, 'Singapore', '@bunnybaby1315 yeahh the instrumental only ;3'), (11082, 491, 'Johore, Malaysia', 'More catching up over dessert (@ Coffee Club) http://t.co/ejo1zcZo'), (11083, 2070, 'Riau, Indonesia', 'bundaaaaaaaaaaaa ayolah ke disctarra beli 1hari yg cerah nya kak @BUDIdoremi ;((((('), (11084, 3, 'Johor Bahru, Johore', 'Waiting for Uri to be online xD @uggene'), (11085, 2922, 'Johor Bahru, Johore', 'I''m at 7-ELEVEN @ Blk 470 http://t.co/Uadz18Nx'), (11086, 628, 'Johor Bahru, Johore', 'I''m at Serangoon MRT Interchange (NE12/CC13) (Singapore, Singapore) w/ 2 others http://t.co/pewxjzM9'), (11087, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 56'), (11088, 938, 'Johore, Malaysia', '@ScarlettKaylene why laught? T.T Jealous also cannot meh?'), (11089, 2885, 'Riau, Indonesia', 'yang lagi senang makan rendang @uda_hkim'), (11090, 1846, 'Johore, Malaysia', '@agila_28 @akosi_emong hahahah kokonti lng pipimdutin eh'), (11091, 2017, 'Johor Bahru, Johore', '@FiqqyFiq_ the only premier league team in UCL !!'), (11092, 2335, 'Johore, Malaysia', '@batrisyiatw whuut *clap* whuut *clap* *bullet action*'), (11093, 2923, 'Singapore', '@sixBUTTERSCOTCH It''s a lot leh! You at where now?'), (11094, 2914, 'Johor Bahru, Johore', '“@MiHeart_Speaks: Strong is when your heart breaks but you''re still able to give out your smile and mean it.”'), (11095, 2924, 'Johore, Malaysia', 'Back to normal .(:'), (11096, 12, 'Johore, Malaysia', '@IHEARTSUZY Really. I shall listen to it to refresh my memory.'), (11097, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 57'), (11098, 759, 'Singapore', '@jamzxz I am sure... :) Got a feeling i''ll see you there during april too. haha'), (11099, 150, 'Johor Bahru, Johore', '@PiercingsnTats too early.. :/ on-ing computer now . ~'), (11100, 1735, 'Johor Bahru, Johore', 'Saw a rescue tender broke down on highway. Hoseh liao. Confirm tio stomp.'), (11101, 2509, 'Johor Bahru, Johore', '@wordsfallthru wats ots?i feel sm supports suju least among the rest of the artistes among their label.rem lsm labelled them as ''unwanted'''), (11102, 1825, 'Johor Bahru, Johore', 'I also want be rich one day .'), (11103, 158, 'Malaysia', '@Qishs bah okay!! Anyways, I haven''t try facetime b4.'), (11104, 435, 'Johor Bahru, Johore', 'Name me a place with good food and I will go there and eat tomorrow!'), (11105, 1195, 'Johore, Malaysia', 'No ppl one =_= (@ Rebel Boutique Club) http://t.co/qVyduAfx'), (11106, 2593, 'Plentong, Johor Bahru', 'Zumba family !! http://t.co/YV3wvlwm'), (11107, 2319, 'Johor Bahru, Johore', 'I''m at Wif Hyoyeon &lt;3 http://t.co/vCyt0fF4'), (11108, 1866, 'Johore, Malaysia', '@WhyteConfession eat my dinner :)'), (11109, 2691, 'Malaysia', '@iipapair @feicefernz เค้าไปเเถวจุติทุกวันค้าา'), (11110, 1816, 'Johore, Malaysia', '@Whitewallls haha totally!! :) I shall!'), (11111, 150, 'Johor Bahru, Johore', '@PiercingsnTats lappy I mean ~'), (11112, 191, 'Plentong, Johor Bahru', 'Tak nak tgk status Fb aku ke?'), (11113, 2252, 'Johor Bahru, Johore', '@DayanggSyafiqa t aq send link dye kt fb kw'), (11114, 1788, 'Johor Bahru, Johore', 'I''m at Punggol Billiards http://t.co/buGv7TyN'), (11115, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx U JUST NOW AT MY HSE GUAILAN ME ALL THE WAY TO BUSSTOP HAVEN SUAN ZHANG , U NOW WAN COMPLAIN UH?!'), (11116, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh can, hole in one Somemore &lt;3'), (11117, 2736, 'Johor Bahru, Johore', 'Bathe'), (11118, 1116, 'Johore, Malaysia', '@TQbVahdani1769M serve u right'), (11119, 2758, 'Johore, Malaysia', 'When I said I love you,I meant forever.'), (11120, 494, 'Johor Bahru, Johore', 'Sindir nmpk ABG...u menyakitkan hati ehk. ''Ini camp bukan chalet. :P'''), (11121, 1298, 'Johor Bahru, Johore', 'Lucky you don''t have twitter, because once you do.....you will see how much I want to rip your guts out. (◉‿◉)'), (11122, 2603, 'Plentong, Johor Bahru', '@NinaaImanina K k. K Nina tny, ''shura ckp nina comel mcm sapa ek'' haa bedal ahh. Sure tau pny :) Yg pnting letak nama shura sure dia tahu xD'), (11123, 159, 'Johore, Malaysia', 'Hmm. Surprisingly, I decided to put in the effort for you after all :)'), (11124, 1324, 'Johore, Malaysia', 'I''m at Tanglin Halt Rd http://t.co/hqTBHCd3'), (11125, 860, 'Johore, Malaysia', '@Lavouche I''m singing my blue u uu~'), (11126, 1791, 'Johor Bahru, Johore', 'I hate chemistry omg ):'), (11127, 2926, 'Tebrau, Johor Bahru', 'I wonder why we bother love when it never last .'), (11128, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx nice try :D'), (11129, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 58'), (11130, 2927, 'Johore, Malaysia', 'What is that???'), (11131, 2653, 'Plentong, Johor Bahru', 'Single is Better than Couple :) save duit nak beli topup :D'), (11132, 2607, 'Johor Bahru, Johore', '@deehasnolife I dun mind.. :) what do you think?'), (11133, 293, 'Johore, Malaysia', '@minjar1234 den fat again'), (11134, 2584, 'Singapore', 'art of me :/'), (11135, 1733, 'Malaysia', 'Pink hotel? Hahaha.. (@ Central Hatyai (เซ็นทรัล หาดใหญ่)) http://t.co/M7PPMuZg'), (11136, 2361, 'Johore, Malaysia', 'Keith makes sures that mummy is home before he goes to sleep :D (@ 128, Geylang East Central w/ @lexelledextjluv) http://t.co/JV0M1H4v'), (11137, 1172, 'Johor Bahru, Johore', 'Buying things wif mummehh and sisters (: (@ Prime Supermarket) http://t.co/ZumCOI3I'), (11138, 1773, 'Johor Bahru, Johore', '@NowBangs ofcoscan'), (11139, 2574, 'Riau, Indonesia', 'nggak terlalu rugiiii,, @kaniaamaliaa @didwi'), (11140, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 59'), (11141, 60, 'Singapore', '@popsywhoopsy YES YOU CAN HAHAHA! sing bob the builder song. HAHAHA!'), (11142, 1847, 'Plentong, Johor Bahru', '@kmrsyartl why? scary ah?'), (11143, 2928, 'Johore, Malaysia', 'Met @Mikio_Kazuki and @_stephanieJY! 오랜만에다~ (@ Tom N Toms Coffee) http://t.co/tVGyYsxg'), (11144, 3, 'Johor Bahru, Johore', '@ian_ianization *boys And girls! I''m not old enough to be a lady hor! Yaaarrr I''m watching xD'), (11145, 2063, 'Plentong, Johor Bahru', 'Stress2 ni terasa nk g karok la.lma xtest suara yg lunak memukau ni..haha'), (11146, 2118, 'Singapore', '@MuhdFirman @NasuhaNsr jibloch is a better word'), (11147, 2341, 'Johor Bahru, Johore', '@titserJOY you already. ahaha'), (11148, 363, 'Johor Bahru, Johore', '@Moonotopia HAHA LOSER :B'), (11149, 1794, 'Malaysia', '@NHathairat ต่อไหนจ้ะะ ?'), (11150, 968, 'Johore, Malaysia', 'WAI YOU SO LONG ONE ?! WTF.'), (11151, 2846, 'Singapore', '@labibaaah_ how sure are you ? hhaha. You d''know me,, once used, hard to get off. like drug addict. xD'), (11152, 938, 'Johore, Malaysia', 'Im still looking up .'), (11153, 2257, 'Johor Bahru, Johore', '@ICenaoi i sayang u !! Haha'), (11154, 495, 'Pulai, Johor Bahru', '@evayezza awak pergi situlahh!tak kne bebel!\n#BelieveMe ! XDD'), (11155, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 60'), (11156, 2782, 'Indonesia', 'smuanya ada yang tau gak obat anti gallau itu apaan sich,,,,, qlo ada yang tauu kasih tw yach,,,'), (11157, 1784, 'Johor Bahru, Johore', '@HuiXd jiayou with that HAHAHAH:)'), (11158, 2929, 'Johor Bahru, Johore', 'I''m at Blk 252 (Singapore, Singapore) http://t.co/TdQC2Tdl'), (11159, 2509, 'Johor Bahru, Johore', '@wordsfallthru n the sbs gayo last yr incident?elfs were nt informed then n elfs who were present then gt bullied by other fans...'), (11160, 2923, 'Singapore', '@Sopheeeyaa Boo.'), (11161, 938, 'Johore, Malaysia', 'Everyone want freedom .'), (11162, 1904, 'Plentong, Johor Bahru', '@syaminebellina Eh mine .....'), (11163, 12, 'Johore, Malaysia', '@StarFireIqah Cute sia you :)'), (11164, 544, 'Johor Bahru, Johore', 'You damn Cb sia.'), (11165, 2930, 'Johore, Malaysia', '@fcukyeah70s'), (11166, 2361, 'Johore, Malaysia', 'I''m at 128 Geylang east ave 1 http://t.co/8CfanvFh'), (11167, 2787, 'Johore, Malaysia', 'Mardiana Bte Rahmat'), (11168, 399, 'Johor Bahru, Johore', 'Thank you @Inspirationity and @eric__n for accompanying me tonight while I sit on my bed, like a lonely girl.'), (11169, 1298, 'Johor Bahru, Johore', 'Fucking bastard! First you say want to go gym, then later don''t want. You say want to watch movie instead then later say don''t want.FUCK YOU'), (11170, 1784, 'Johor Bahru, Johore', '@BeingSyazwin u are a evil monster xD'), (11171, 1060, 'Plentong, Johor Bahru', 'Penat ber photo shoot ; dapat contract dengan kiko cari model baru (casting day)'), (11172, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hahahhaha. Aloooo maduku jgn ahh begitu. Wahh macam lirik lagu dah xD'), (11173, 2292, 'Johore, Malaysia', '@RaymondScrewYou Then that is confirmed the truth.'), (11174, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx first ur KITKAT asshole la'), (11175, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh why leh :@'), (11176, 38, 'Johor Bahru, Johore', 'Sial la. Damn touching. ('':'), (11177, 700, 'Johor Bahru, Johore', '2 days straight didnt talk to him much and im dying here'), (11178, 435, 'Johor Bahru, Johore', '@LJunyi Mmm. Restaurant?'), (11179, 2931, 'Riau, Indonesia', '@meriscaocta stand up comedy dong de haha'), (11180, 2932, 'Singapore', '@dwylinda @anditenrionaa shery juga mau tapi belum aku tanyain @sishery jadi mau naik balon udara jg ga? atau @akuaii mau ikutan ?'), (11181, 2933, 'Johor Bahru, Johore', 'At my sweet toilet hahas'), (11182, 2934, 'Johor Bahru, Johore', '@Berenicetok What u draw for me? :)'), (11183, 2929, 'Johor Bahru, Johore', 'I''m at Blk 252 Chua Chu Kang Ave 2 (Singapore) http://t.co/dFLLjLrs'), (11184, 3, 'Johor Bahru, Johore', 'Wtf phone drop into toilet uh ? == no reply!!'), (11185, 1173, 'Plentong, Johor Bahru', '@khaicees haha alaaaa aida nk pegi gym!! haha tkpelahhh aida pegi gym khai pegi taman merdeka kcunn? hehe'), (11186, 2017, 'Johor Bahru, Johore', '@FiqqyFiq_ just watch and see :)'), (11187, 523, 'Malaysia', '@limited_Pookki3 เป็นไงมึงหล่อมั้ย ?'), (11188, 2787, 'Johore, Malaysia', 'Mardiana Bte Rahmat.'), (11189, 2929, 'Johor Bahru, Johore', 'I''m at TaeYang''s Heart 태양 (, ) http://t.co/uEnzZNlS'), (11190, 716, 'Johor Bahru, Johore', '@JaylonJiAn @yongjiannn Hahah! Today got traaining whole daay mahh. :p'), (11191, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 61'), (11192, 2935, 'Johor Bahru, Johore', 'Watching show hand.. Later gg tp sleep at 11pm sharp.. Sleepy.. After taking medicine.. :O :O'), (11193, 2936, 'Johore, Malaysia', '#moderncombatmode'), (11194, 2252, 'Johor Bahru, Johore', '@shielaahashim hahahaa ,ni pn aq ngah tngok ,mak aq bkk ,haha'), (11195, 2787, 'Johore, Malaysia', 'Mardiana Bte Rahmat~'), (11196, 2937, 'Johor Bahru, Johore', '“@AboutAquarius: #Aquarians are much more deep than you think. When you think you''ve seen it all, they have only shown you half of half”'), (11197, 1173, 'Plentong, Johor Bahru', '@SyahirAnuar koykoykoykoy hahaaha'), (11198, 629, 'Johore, Malaysia', 'On the way home (@ SBS Transit: Bus 14) http://t.co/y8vraTzy'), (11199, 968, 'Johore, Malaysia', 'EH I TRANSPARENT ONE AH?'), (11200, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Hahahhaha. ok ok. Tahu un certanya. Letak nama shugha xD Hahahhahahaha.'), (11201, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 62'), (11202, 342, 'Johore, Malaysia', 'Its perfectly legal to kill someone in your dreams,\nthats why i wake up with a smile everyday\n\n:)'), (11203, 158, 'Malaysia', '@Qishs i''ll wait'), (11204, 2929, 'Johor Bahru, Johore', 'I''m at Lalaland  (Shoo off) http://t.co/IwIpImCM'), (11205, 1116, 'Johore, Malaysia', 'Wow three biao yan fu in total for this year competition. All different colours~~~~~'), (11206, 2938, 'Johor Bahru, Johore', 'RT@tw4tttt: We like to sleep all day and party all night, this is how we like to live our life @WANisoverrated ;)'), (11207, 983, 'Singapore', '@UNAGI89 Well i''m not....but my parents are... AHHH..'), (11208, 2787, 'Johore, Malaysia', 'Mardiana Bte Rahmat..'), (11209, 2938, 'Johor Bahru, Johore', 'RT@tw4tttt: We like to sleep all day and party all night, this is how we like to live our life @WANisoverrated ;)'), (11210, 2932, 'Singapore', '@sobat_hartanto wah asik nih bisa ngobrol ngobrol buat ntar ulang tahun padi :)'), (11211, 159, 'Johore, Malaysia', '@teddyycherryy woah woah my mouth drop down. My eyes rolled out of it''s sockets'), (11212, 744, 'Johore, Malaysia', 'I''m at Marché (Singapore, Singapore) w/ 7 others http://t.co/RGJ32YjU'), (11213, 1060, 'Plentong, Johor Bahru', 'Okay model terhebat saya!'), (11214, 38, 'Johor Bahru, Johore', '@SupYoEee your sister?'), (11215, 2613, 'Kota Tinggi, Johore', '@ItsNabOkay sedihh.. Tmr see if I can meet u ..'), (11216, 889, 'Johor Bahru, Johore', 'After an awesome dinner, I''ll be sad to leave Singapore. Amazing place, can''t wait to come back. Look forward to editing my SLR pics too.'), (11217, 2912, 'Johor Bahru, Johore', 'I just became the mayor of My Oppars'' House ^^ on @foursquare! http://t.co/Z59habmO'), (11218, 2912, 'Johor Bahru, Johore', 'I''m at My Oppars'' House ^^ http://t.co/X7NGY2HE'), (11219, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx #Selfentertaining'), (11220, 2140, 'Malaysia', 'I''m at ร้านอาหารญี่ปุ่นกิริโกะ http://t.co/wLDqEQgG'), (11221, 303, 'Johor Bahru, Johore', '@xiaodan12 @decadentdecline take caree! :('), (11222, 1816, 'Johore, Malaysia', '@tessatyh hahah I know right!! I have to retweet it! XD'), (11223, 12, 'Johore, Malaysia', 'SM will release SHINee''s Sherlock in less than 1 hour?!'), (11224, 2930, 'Johore, Malaysia', 'lepak jiiii @fcukyeah70s'), (11225, 191, 'Plentong, Johor Bahru', '@NadraHalim Hahah tkd pape lahh :p'), (11226, 2939, 'Johor Bahru, Johore', '@AJBrenix @inday_regel @zuchie_25 what tym ka abot SG?'), (11227, 2932, 'Singapore', '@rama_sobat di Jakarta :) lumaya 2 jam perjalanan'), (11228, 1196, 'Johor Bahru, Johore', 'Mutu ngga ???RT @Poconggg: Masih di jalan nih. Cerita seremnya maleman yaak http://t.co/ALiIFWA5'), (11229, 716, 'Johor Bahru, Johore', '@tripodmonster Kaaycaan. :) x'), (11230, 2846, 'Singapore', 'Mum made this teh''O'' smells so good ! It''s strawberry flavored. &lt;3'), (11231, 968, 'Johore, Malaysia', 'SMLJ LEH'), (11232, 3, 'Johor Bahru, Johore', 'Became vulgar since I went to sec sch. Whoa.'), (11233, 2787, 'Johore, Malaysia', '5.Mardiana Bte Rahmat'), (11234, 2912, 'Johor Bahru, Johore', 'I''m at Blk 602 Choa Chu Kang St 62 http://t.co/DmyPpVt6'), (11235, 1993, 'Kota Tinggi, Johore', 'NU''EST SONG VERY NICE~~~http://t.co/kETk52Ri'), (11236, 2940, 'Riau, Indonesia', 'perasaan yang tertunda... kayak nahan p*p...\n&gt;.&lt;"'), (11237, 1672, 'Johore, Malaysia', 'I''m at Clementi Park Condominium (Clementi, Singapore) http://t.co/vjyovTm2'), (11238, 1791, 'Johor Bahru, Johore', 'Nononono . Idw do chem omg ):'), (11239, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims isnin lepas ? tadeeee . isnin nie adelaaa . kenapa kenapa ?'), (11240, 342, 'Johore, Malaysia', 'if you''re gonna be two-faced, at least make one of them prettY !!'), (11241, 435, 'Johor Bahru, Johore', 'Is there anything out there that could satisfy my hunger?'), (11242, 1451, 'Johor Bahru, Johore', '@IRISKK cause of mr saw ah?? :P'), (11243, 2787, 'Johore, Malaysia', '6.Mardiana Bte Rahmat'), (11244, 2941, 'Johore, Malaysia', '@hahnar hahah. And thanks ~ I knew it anyway ~'), (11245, 771, 'Johore, Malaysia', 'Minah ni stare I up down sebab I tengok jantan die . Hahaha .'), (11246, 247, 'Johore, Malaysia', 'Aiya, forget it. Gave up.'), (11247, 938, 'Johore, Malaysia', '@ScarlettKaylene also got boy one durhhhhhhhhhh . NVM :/'), (11248, 2583, 'Johor Bahru, Johore', '@geashcaroline haha ohh ok de. Anyway sabtu ikt gennext? Haha'), (11249, 1116, 'Johore, Malaysia', '@JIANIXD oH no XD'), (11250, 206, 'Singapore', '#nowplaying i remember &lt;3'), (11251, 2936, 'Johore, Malaysia', 'Im sorry if im not those kind of high class standard guy or rich guy but wtv it takes to have you , i will do it &lt;3'), (11252, 771, 'Johore, Malaysia', '@inakayamgoreng .'), (11253, 2118, 'Singapore', 'Nizam, don''t look at me much even though we have zam in our names.'), (11254, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 63 belom trending jg??'), (11255, 2787, 'Johore, Malaysia', '7.Mardiana Bte Rahmat'), (11256, 2426, 'Johore, Malaysia', '@Aslinexht yeap.'), (11257, 545, 'Johore, Malaysia', 'Fun day fun day. Loads of laughter. LOL.'), (11258, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. I will be waiting for you~~ Lol.'), (11259, 303, 'Johor Bahru, Johore', '@qianyingz I always thought your surname was Ho!'), (11260, 700, 'Johor Bahru, Johore', 'So heart broken when i saw your tweet'), (11261, 2859, 'Johor Bahru, Johore', 'I want to earn lots of cash in the holidays !!!!!!!'), (11262, 2787, 'Johore, Malaysia', '8.Mardiana Bte Rahmat'), (11263, 1084, 'Johor Bahru, Johore', '@ckhq lol. is it?? i think you spread your virus to komi. now she becoming like you.'), (11264, 2118, 'Singapore', 'One is enough'), (11265, 2942, 'Johore, Malaysia', 'Home is the place where, when you have to go there, They have to take you in.'), (11266, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 64'), (11267, 1196, 'Johor Bahru, Johore', 'Tata''y makin pnasaran.. Tapi ngga bsa ngpa2in dia.. Sma jg msti tnggu tnggal itu.. Heu.. http://t.co/f8AUf574'), (11268, 191, 'Plentong, Johor Bahru', 'Tweet goodnight? K goodnight! RT @Famiee: No goodnight text ? :''/'), (11269, 538, 'Johor Bahru, Johore', 'Its not a healthy relationship'), (11270, 2787, 'Johore, Malaysia', '9.Mardiana Bte Rahmat'), (11271, 2330, 'Tebrau, Johor Bahru', 'I starting to feel that I''m irritating you. Sorry.'), (11272, 2636, 'Johore, Malaysia', 'I''m disconected from the World. SO many people to catch up!!'), (11273, 2943, 'Johor Bahru, Johore', 'Staring at the sky @ AJ track #Awwyea'), (11274, 1266, 'Johore, Malaysia', 'Bow chicka wow wowwwwa'), (11275, 1686, 'Johore, Malaysia', '@YAHUIEM lets go! hehehee.'), (11276, 2944, 'Johor Bahru, Johore', 'Masih tak sabar ni ~ dslr ? Haish maybe cannon ah ~ tgk ah mcm mana ~ but tk akan dapatnyeerh'), (11277, 2694, 'Malaysia', '"ชัยไรค่ะ\nชัยวานเหรอ\n5555" เรียกพี่มะปรางว่าพี่ชัย 555555555555 #กล้า?'), (11278, 3, 'Johor Bahru, Johore', 'I &lt;3 Material Queen song, so nice&lt;3'), (11279, 399, 'Johor Bahru, Johore', '@Inspirationity @eric__n yeah that wonderful wonderful house that we''re gonna have.'), (11280, 2787, 'Johore, Malaysia', '10!!Mardiana Bte Rahmat'), (11281, 1528, 'Singapore', '@ngweijin: HAHAHA!! bitchhh'), (11282, 860, 'Johore, Malaysia', 'Got ugly and bulked teeth girl staring at me. STARING O.O _|_'), (11283, 2936, 'Johore, Malaysia', 'Only that you dont realise it .'), (11284, 2110, 'Johore, Malaysia', '@sharon_cuneta12 love you too Mega!take a big bunch of care! i''ll be at your side no matter what!Goodnight!cu again soon'), (11285, 700, 'Johor Bahru, Johore', 'She died chey idk ah no mood tonight :/ RT @fatinadhirahh: @afiqahyamin Why so emo tonight? :) cheer up! Where''s hyper afiqah?'), (11286, 495, 'Pulai, Johor Bahru', '@evayezza buku merah jangan lupa bawa,moga belum tamat tempohh!\nXDD'), (11287, 12, 'Johore, Malaysia', '@StarFireIqah Welcome :) Hehe.'), (11288, 2803, 'Malaysia', '@chanakarn_kook แต่หนุกนะ สังคมอ่ะ มันมว๊ากกก 55'), (11289, 2793, 'Malaysia', ':) ยิ้มค่อยๆ แค่เทอยิ้มค่อยๆ หัวใจก่ลอยไปแสนไกล !'), (11290, 1528, 'Singapore', '@goldenjayden: how much was it uh? and where?'), (11291, 2787, 'Johore, Malaysia', 'dah! so iwont get ur name wrong!'), (11292, 1284, 'Plentong, Johor Bahru', '@XuShanQing okay, i go junyong then! Haha :)'), (11293, 1024, 'Johor Bahru, Johore', '@KittennyScars dk you all la, i wanna go shit &amp;bathe now shavedjiggly!'), (11294, 1116, 'Johore, Malaysia', 'Iphone 5, surprise us with 500% battery ^^'), (11295, 2503, 'Johor Bahru, Johore', '@luvshow4ever 噢~不要聽了bubble pop而忘記我們要學的歌噢!'), (11296, 2850, 'Johor Bahru, Johore', '@11throses the brown one lor'), (11297, 2583, 'Johor Bahru, Johore', '@Vi3tSparTaN so true'), (11298, 12, 'Johore, Malaysia', 'Min tweeted! &lt;3'), (11299, 1528, 'Singapore', '@goldenjayden: i''m planning to buy. haven''t buy yet! =P'), (11300, 247, 'Johore, Malaysia', 'He''s way better looking than me y''know?'), (11301, 2787, 'Johore, Malaysia', '@Tigerxanne no!'), (11302, 2228, 'Johor Bahru, Johore', 'I''m at Joyce''s Lala Land &lt;3 http://t.co/MfbJOoc1'), (11303, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx UMAD?'), (11304, 1816, 'Johore, Malaysia', '@KarmahnT I''m so sorry km :(( if you were in the Eastwood vicinity I''ll go out side to the bus stop and hang with you all for awhile..'), (11305, 1791, 'Johor Bahru, Johore', 'Showhanddddd wheee ^^v .'), (11306, 2380, 'Johor Bahru, Johore', '@AdrianGohJW lol dun wan i shy'), (11307, 2202, 'Johore, Malaysia', 'Malaysian alot star durian @ Durians :) http://t.co/1A42YOhV'), (11308, 771, 'Johore, Malaysia', 'I nak mataer nan pompan Leh . For 5 days je . Tapy dier must everyday meet me biler balek time and hug me and kiss me and make me happy .'), (11309, 2603, 'Plentong, Johor Bahru', '@NinaaImanina No! Sangat Tidak. Jgn risau org yg comel mcm Nina tu mmg comelpun HHAHAHAHHAHAHA xD'), (11310, 399, 'Johor Bahru, Johore', 'Your scent still lingers.'), (11311, 461, 'Kota Tinggi, Johore', 'Great to be home... BUT FUCK!!! PULLED A MUSCLE!!! D: (@ Blk 685A Jurong West St 64) http://t.co/AHL6KXdR'), (11312, 2945, 'Plentong, Johor Bahru', 'makanan kucing aku da abes laaaa'), (11313, 2946, 'Johore, Malaysia', 'Going back home and watching detective Conan otw! Hehe'), (11314, 1024, 'Johor Bahru, Johore', '@KittennyScars hannar hannar, dont need post bigbig buey ps isit!'), (11315, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh LOL lose to egg leh cfm :@ ma!'), (11316, 2938, 'Johor Bahru, Johore', 'UniqloXUndercover tomorrow. Mehehehe'), (11317, 2832, 'Singapore', '@septemberoute haha&gt;&lt;'), (11318, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini hehe..yelaaa..pas ni hujan pon aku turun..joging pakai payung..haha..mggu ni joging dalam lab je..'), (11319, 1084, 'Johor Bahru, Johore', '少来烦我!!'), (11320, 2657, 'Johore, Malaysia', '@RunNeonTigerRun why ???"):'), (11321, 2294, 'Johor Bahru, Johore', 'I''m at Fountain @ Ang Mo Kio http://t.co/k4WPJvkd'), (11322, 460, 'Johore, Malaysia', '“@omnomnomszx: Note to self: Stay stronger for longer.”'), (11323, 1791, 'Johor Bahru, Johore', 'Hohoho . Me so excited to see Ian Fang on tv ^^ !'), (11324, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hihihihi. Ehh homework dah siap Madu?'), (11325, 2946, 'Johore, Malaysia', 'Anyone want supper yay'), (11326, 1816, 'Johore, Malaysia', 'D: can''t go Dg outing tmr either ;('), (11327, 544, 'Johor Bahru, Johore', '只要你回头,我们会在一起的。'), (11328, 1993, 'Kota Tinggi, Johore', '@sfinee ME! CANT WAIT YAY'), (11329, 829, 'Johor Bahru, Johore', '@AlphonseAng @jinkoi_ @sherilyn_tan u BOJIO wat sia?? U follow me go CSC eat how many times already ah??'), (11330, 2583, 'Johor Bahru, Johore', '@geashcaroline iya haha. I mean movie night haha! Lolol'), (11331, 2911, 'Johore, Malaysia', '@4NDR0M3D4_ Saw you ytd sio'), (11332, 720, 'Plentong, Johor Bahru', '#nw amukan pocong'), (11333, 2725, 'Johor Bahru, Johore', '@YEWHUIIIIIzxc alright! Thanks:) hopefully can pass.'), (11334, 2330, 'Tebrau, Johor Bahru', 'My leg is kinda keeping me awake.'), (11335, 2236, 'Singapore', 'tmr malay dance performance @ orchard ngee an city . Zzzz .'), (11336, 2320, 'Johore, Malaysia', '@YijieMEOW okay wat like that nit so bad wat!! But just try to practise very hard lor!'), (11337, 1177, 'Johor Bahru, Johore', '@SherryFilauria bojel parteyyyy! And touch @marrymemarlysha and ayu''s titik :p'), (11338, 5, 'Johore, Malaysia', 'It seem so quiet w/o music .'), (11339, 2510, 'Johor Bahru, Johore', 'Don''t worry, I''m friendly (: I don''t bite humans.'), (11340, 218, 'Johor Bahru, Johore', 'I''m at Cashew Park Condominium http://t.co/2q5Lxrpp'), (11341, 2944, 'Johor Bahru, Johore', '@FruitellaSufian eh ! Canon *'), (11342, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx why you so dog?! :('), (11343, 791, 'Johore, Malaysia', 'Eating for @KuanLeocadio on behalf. Your lao ban tau huey!'), (11344, 2947, 'Johore, Malaysia', 'Today marks my 1year working here in Sg! I''m so thankful and so blessed! Looking forward for more years to come..'), (11345, 2365, 'Indonesia', '@missA_min annyeong min annyeong annyeong???Im busy now,u know hihi Miss A fighting #7AraStayTogether'), (11346, 860, 'Johore, Malaysia', '@Lavouche twinkle twinkle little star, how I wonder what you are...'), (11347, 2948, 'Johor Bahru, Johore', 'I''m at AMK Hub (Singapore) w/ 12 others http://t.co/Kwo1kEGV'), (11348, 1266, 'Johore, Malaysia', '@likuhhein @assortedbacon @choonhockbleh AH SIA CLEMENTI WHERE'), (11349, 772, 'Johor Bahru, Johore', 'Tu lah sebab ada abg Iqi,aku beranikan diri tgk citer nie...haha! “@CJ_381: @AdikHasrida abg iqi pun ada laaa.. ku hengat ajehan jer ada :D”'), (11350, 2317, 'Johor Bahru, Johore', 'I''m at Singapore Changi Airport (Singapore) http://t.co/UYDfrkCQ'), (11351, 1108, 'Johore, Malaysia', '@KevSicaJi_ LMFAO. Hes cute. &gt;:D'), (11352, 13, 'Singapore', 'I want to know people who listen to hipster hindi-pop and k-pop music'), (11353, 12, 'Johore, Malaysia', '@IHEARTSUZY Yah. Omg. Bring me lots of memories &lt;3'), (11354, 3, 'Johor Bahru, Johore', '@Edwininja Yes Sir! Eddy ah you freak me out larr!&gt;&lt;'), (11355, 1593, 'Plentong, Johor Bahru', '@aziqenator teka la kami dimana? hihi'), (11356, 60, 'Singapore', 'http://t.co/iXbRUqte! yoseop is so cute just like when he was young!!!! @helloimys'), (11357, 1116, 'Johore, Malaysia', '@LandOfOrange what so gd about that? So many &gt;&lt; :p\nWhite with patterns -.-\nYellowish gold\nRed peach'), (11358, 2859, 'Johor Bahru, Johore', 'Time pass so fast, miss my clique members :( #1YearAgo'), (11359, 2827, 'Kota Tinggi, Johore', 'http://t.co/M9Nt6LR1'), (11360, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 65'), (11361, 544, 'Johor Bahru, Johore', 'I love it when you disturb me and care for me.'), (11362, 2949, 'Riau, Indonesia', 'Semangat farhan 7 halaman lagi semangat!!!!jangn sampai ngantuk malam ni.....gk blh !!!!!!!'), (11363, 138, 'Johor Bahru, Johore', '@Vantsoul Amaerican Haunting ... Me'), (11364, 771, 'Johore, Malaysia', 'Baby ! Sex me up bhy ! Cepat .'), (11365, 1668, 'Johore, Malaysia', 'finish watching skins season 1 episode 1&amp;2 the series becoming more horny sia.'), (11366, 2950, 'Johor Bahru, Johore', 'Polycom: Demonstration Operations Engineer ( #SingaporeJobs) http://t.co/WuIc14jf #IT #PolycomJobs #Job #Jobs #TweetMyJobs'), (11367, 2951, 'Plentong, Johor Bahru', 'I''m at Restoran Singgah Selalu Danga Bay http://t.co/3k4LUsRe'), (11368, 700, 'Johor Bahru, Johore', '@fatinadhirahh Huh? malas ah :p hehehe'), (11369, 1825, 'Johor Bahru, Johore', '@LynnnS2 nope'), (11370, 2118, 'Singapore', 'I have bestfriends named Muhd Nizam &amp; Sharulnizam during primary schools. We called ourselves zam3 bros. Lame but they were gangster, i nerd'), (11371, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx WAT WASTE TIME?! U DON''T EVEN DESERVE MY TIME LA PREASEEEE'), (11372, 206, 'Singapore', 'my arm hurts ouch:/'), (11373, 2725, 'Johor Bahru, Johore', 'Hopefully I''m happy with what I have decided.'), (11374, 938, 'Johore, Malaysia', '@ScarlettKaylene ~_~'), (11375, 2952, 'Johor Bahru, Johore', 'I''m at Greenwich V (Seletar, Singapore) w/ 2 others http://t.co/LiKzQdUf'), (11376, 1194, 'Malaysia', 'อารมณ์กูแบบว่าเหมือนจะไปคอนได้ ?'), (11377, 2953, 'Johor Bahru, Johore', 'I just became the mayor of Family''s crib on @foursquare! http://t.co/gj6reitE'), (11378, 2953, 'Johor Bahru, Johore', 'Watching my sibblings making a fool of themselves -.- (@ Family''s crib) http://t.co/PcJ34KQ6'), (11379, 2846, 'Singapore', 'MY GAAAWD, SO FUNNY CAN !! Oh louis. &lt;3 http://t.co/gr6c1Ch2'), (11380, 2403, 'Singapore', 'Lang Feng: I Smell Something, I Smell Your Fear.\nXiaoman: =.=\nUnriddle 2.'), (11381, 2010, 'Johore, Malaysia', 'Finally cut my hair.'), (11382, 1115, 'Johor Bahru, Johore', '@huimin98 here!'), (11383, 1847, 'Plentong, Johor Bahru', '@AhmadZafran kim suwee la'), (11384, 771, 'Johore, Malaysia', 'Sunday keje pakai lens ? Nak ! Ahh rimas . Tak ya !'), (11385, 2954, 'Johor Bahru, Johore', '@sillymallie haha! Banyak punye tourist.'), (11386, 544, 'Johor Bahru, Johore', '友情,爱情,亲情。'), (11387, 2955, 'Malaysia', '"@Sweetgirl_Nik: @DEKFILM จะไปทำงานภูเก็ตละ"ไปทำไม สงขลาไม่มีหรืองัย'), (11388, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 66'), (11389, 2956, 'Johor Bahru, Johore', 'SLEEPING TIME ! LET''S FORGET EVERYTHING FOR AWHILE (: (@ On my bed. &lt;3) http://t.co/rECQf56l'), (11390, 10, 'Singapore', '@ShafinahIeenaaa true.'), (11391, 1116, 'Johore, Malaysia', '@LandOfOrange Forever%'), (11392, 1686, 'Johore, Malaysia', '@YAHUIEM heeeee~ eh long time no talk with you alreadyyyyy. zzzzzz'), (11393, 2118, 'Singapore', '@MuhdFirman @NasuhaNsr Jiblotch means GEMUK'), (11394, 2063, 'Plentong, Johor Bahru', 'Tgk org pkai note,style semacam je,nyesal xangkat aritu.kakak digi durjana tu la recommend ak angkat bendalah ni!!!'), (11395, 2957, 'Johor Bahru, Johore', 'Came out to withdrawn money for tomorrow lesson, ended up I can''t resist temptation to buy my g... (at @SG_Starbucks) — http://t.co/6pLG89b2'), (11396, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx i siao you jelly?'), (11397, 2644, 'Johore, Malaysia', '@zantiwanti ma bakit po?? Wala po akong nabiling suka sa tindahan. XD'), (11398, 2878, 'Johor Bahru, Johore', '@Syazfeera @foudrerouge Bulu roma naek terus stim kodok!'), (11399, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 67'), (11400, 2583, 'Johor Bahru, Johore', '@geashcaroline haha jam brp si itu?'), (11401, 2832, 'Singapore', 'holidays are ending and my homework are not done and i am sick.... sigh....'), (11402, 860, 'Johor Bahru, Johore', '@Lavouche Hahahahah. EPIC'), (11403, 2958, 'Johor Bahru, Johore', 'I''m at Blk 925 Yishun Coffee Shop http://t.co/QsMgfNEP'), (11404, 1294, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) w/ 4 others http://t.co/YwXXsbhr'), (11405, 1581, 'Johore, Malaysia', 'sleepy'), (11406, 670, 'Pulai, Johor Bahru', '@keithstrife aHaahhahha!! For the sake of tutti frutti'), (11407, 897, 'Johore, Malaysia', '“@Yunjiaz: "@DalexQuote: If you truly love someone, accept their past and leave it there."”'), (11408, 2905, 'Malaysia', 'I''m at So Say (หาดใหญ่, จ.สงขลา) http://t.co/jCvNYAZq'), (11409, 771, 'Johore, Malaysia', '@KITTI3RAWR Jom baby &lt;3 ! Yay !'), (11410, 2335, 'Johore, Malaysia', '#PeopleIWantToMeet Katy Perry OBVIOUSLY'), (11411, 1266, 'Johore, Malaysia', '@assortedbacon @likuhhein @choonhockbleh LOL WHAT YOU TALKING?'), (11412, 2603, 'Plentong, Johor Bahru', '#SayaTakBiasa tak mandi satu hari. Walaupun mandi kadang kadang still kene mandi k Hahahha xD'), (11413, 1651, 'Pulai, Johor Bahru', '@erichafitrih try tny nanie!'), (11414, 897, 'Johore, Malaysia', '“@iTweetFacts: #BestThingAboutBeingSingle - No expectations = No disappointment.”'), (11415, 138, 'Johor Bahru, Johore', '@GoomBoozer YESYES'), (11416, 2949, 'Riau, Indonesia', 'Ada pengganggu ni .....bikin bad mood bikin tugas'), (11417, 1298, 'Johor Bahru, Johore', 'I don''t get angry.....oh heavens no. ^_^\nI get ideas on how to torture and/or kill instead.And that makes me happy.(◉‿◉)'), (11418, 1116, 'Johore, Malaysia', '@LandOfOrange yeah.'), (11419, 2509, 'Johor Bahru, Johore', '@wordsfallthru yea they r a friendly n kind lot! That is y we r so in love with them besides their performances rt?'), (11420, 2193, 'Johor Bahru, Johore', '@Jeddaumento @richardperolina @airni28 @jasonhalago @garybeyds van Gundy Leg hug..!'), (11421, 1294, 'Johor Bahru, Johore', 'I''m at Rivervale Plaza w/ @tanjunkai http://t.co/xbRvI6zK'), (11422, 2503, 'Johor Bahru, Johore', '@luvshow4ever ok~那就好~我還沒練成~完蛋了!'), (11423, 1140, 'Johor Bahru, Johore', '@Jonathan5oh hahaha. Later I disturb u. Lol it''s okay de :)'), (11424, 191, 'Plentong, Johor Bahru', '@effiralea Epi epi epiii! :D Heheh'), (11425, 2584, 'Singapore', '@satriadwi24 makasi abg satriaaa'), (11426, 2959, 'Johor Bahru, Johore', '@crantheberry bitch, where were you?4'), (11427, 657, 'Johore, Malaysia', '@NazurahMN mcm tu rupe nya nme die..baru tahu..tq kerna ilmu baru tu..hahaha*muka berkerut*'), (11428, 2923, 'Singapore', 'Natalie Tran finally uploaded a video after 1000years. http://t.co/ZFWaz7Ay'), (11429, 72, 'Johor Bahru, Johore', '“@JingYingLeong: LOL I NO LIT GROUP . WHATEVER JUST SAY I NO GROUP AND DON''T DO :D #win” smart ~ I''m doing that for my projects too *-*'), (11430, 2787, 'Johore, Malaysia', '@Tigerxanne type k!'), (11431, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 68'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (11432, 1538, 'Johore, Malaysia', 'I''m at Queen Street Blk 271 http://t.co/Ev30AnOU'), (11433, 1266, 'Johore, Malaysia', '@WILLLLZZZ @choonhockbleh BETCH FTW'), (11434, 13, 'Singapore', 'make that hipster hindi and korean music, because pop is mainstream. my bad'), (11435, 544, 'Johor Bahru, Johore', 'You promised me you''ll never leave me.'), (11436, 2435, 'Singapore', '@tlleow same :('), (11437, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 69'), (11438, 191, 'Plentong, Johor Bahru', 'Epiii merajuk lg takkk?'), (11439, 2832, 'Singapore', '@septemberoute not really but it seems their dance are quite nice:D'), (11440, 1369, 'Johore, Malaysia', '@ElwaFishy @muhdluqmanaziz @haziqmustaffa elwa .. Goodnight..'), (11441, 244, 'Johor Bahru, Johore', '@melvinryantan hi Melvin any hostel to recommend for London? I''m gg on 8aug to 26aug!'), (11442, 3, 'Johor Bahru, Johore', 'So 孝顺=)'), (11443, 2555, 'Johor Bahru, Johore', '@bJiaYi hahahahaha funny shit'), (11444, 2803, 'Malaysia', '@noonoofar ดีจ่ะ :)'), (11445, 2341, 'Johor Bahru, Johore', '@titserJOY hahaha. parang kinikikiti lang ah?!'), (11446, 1173, 'Plentong, Johor Bahru', '@khaicees mama manager katsituu hahah sooooo ada kesempatan katsituu! hehe jomlaaaa :3'), (11447, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa nga jalan nak balek ni . Mane awak pegi tadi?lamenye:/'), (11448, 983, 'Singapore', '@UNAGI89 You also what.... :) I''m not! Well i''m not spoiled..'), (11449, 1266, 'Johore, Malaysia', '@ShafinahIeenaaa CRAZY. AHA'), (11450, 1668, 'Johore, Malaysia', 'apparently each episode is 45 min and ive got alot of seasons to watch!! could keep me company over the holiday (;'), (11451, 864, 'Johore, Malaysia', 'Drinks with @kalezhengkai in utown http://t.co/Loj09UNz'), (11452, 847, 'Johore, Malaysia', 'I''m at HarbourFront Centre (Singapore) http://t.co/6pzWVqd1'), (11453, 2949, 'Riau, Indonesia', 'hcudnvjsdbvhsncdsvhn#error tingkat dewa :('), (11454, 1686, 'Johore, Malaysia', '@YAHUIEM you never text me already :('), (11455, 1791, 'Johor Bahru, Johore', 'Dance . BOMSHAKALAKA . I wanna Dan Dan Dan Dan Dance . Whoah , fantastic baby ~'), (11456, 2787, 'Johore, Malaysia', 'u dont believe i type i type somemore..'), (11457, 1773, 'Johor Bahru, Johore', '@NowBangs @lourdestanzx LOL BROKEN ENGLISH PEOPLE =GOOD ENGLISH , YOUMAD?!'), (11458, 2771, 'Johor Bahru, Johore', '@diontheonlyone hahaa.. Kloo;)'), (11459, 2725, 'Johor Bahru, Johore', 'this guy is so sweet!@ShamShuko he said I''m pretty but I''m fat:) thanks:)'), (11460, 2555, 'Johor Bahru, Johore', '@bJiaYi @YiJieRilakkuma yeah duh. Gaha omg we''re bullies'), (11461, 206, 'Singapore', 'Even if I close my eyes, I still see us.\nThere’s still a light there.\nI’ll deeply retain the times we had together.'), (11462, 138, 'Johor Bahru, Johore', 'Please 2L people dont argue please TT'), (11463, 228, 'Johor Bahru, Johore', 'Tk guna sia famliy ni mcm _|_'), (11464, 206, 'Singapore', 'Even if pain comes over time,\nThe promise I made for the rest of my life,\nI won’t ever forget that moment until the end.\nI Remember'), (11465, 2932, 'Singapore', '@rama_sobat iya maen maen lah ke jakarta :D'), (11466, 2923, 'Singapore', 'I &lt;3 uRT @Sopheeeyaa: NBCB LAST WARNING RT @Edriee: Your life that is. RT @Sopheeeyaa: BOOHOO LIFE SUCKS (N)(N) RT @Edriee: @Sopheeeyaa Boo.'), (11467, 771, 'Johore, Malaysia', 'Haos lah sial ! Cepat order Leh tak ?'), (11468, 700, 'Johor Bahru, Johore', 'Hahahaha so cute lah you makcik omg!! RT @yourstrulyrose: So wats up ppl.. let''s boogieee!!'), (11469, 1786, 'Johore, Malaysia', 'Hope u''re safe and sound.'), (11470, 1104, 'Johore, Malaysia', 'Will make a trip to bb tmrw i guess? Will pass crystal''s hist hmewrk.'), (11471, 495, 'Pulai, Johor Bahru', '@evayezza awak bawak buku sampul merah je! HAHA!\n#LawakHambar XP'), (11472, 2118, 'Singapore', 'I afraid my little monsters are going to use @MuhdFirman''s language, based on me being rold model for them. baikch'), (11473, 1115, 'Johor Bahru, Johore', '@huimin98 cca ! Euu?'), (11474, 815, 'Johore, Malaysia', 'I''m at Yoshinoya (Singapore, Singapore) http://t.co/rSjmnaMC'), (11475, 803, 'Johor Bahru, Johore', 'You like the game ?(:'), (11476, 1904, 'Plentong, Johor Bahru', '@syaminebellina Tak ade apalah. Bye ^.6'), (11477, 700, 'Johor Bahru, Johore', 'RT @glittercuntz: RT @satisfactionxc: Android phone have worst battery life than iphone #Facts'), (11478, 852, 'Johor Bahru, Johore', '50 rounds! (": @ITotKnow HHAHA!'), (11479, 2657, 'Johore, Malaysia', '@xiangyyi i bolui now . i need go do proj . whr shld i go ? ):'), (11480, 38, 'Johor Bahru, Johore', 'My hand shivering like shit can.'), (11481, 1140, 'Johor Bahru, Johore', 'You treated me like a stranger. Seriously I rather be the person u hate than a stranger._.'), (11482, 2583, 'Johor Bahru, Johore', 'I want to go and hunt pictures at le garden near my house'), (11483, 281, 'Malaysia', 'ขอบคุณน้อง pangpond @ http://t.co/qSpQPe3c ค่าา http://t.co/sjqcfD1E'), (11484, 838, 'Singapore', 'Finally, tmr I can be out of my homeeeeee~'), (11485, 2949, 'Riau, Indonesia', 'cjshichbashcbhascbacbhag #errortingkatdewa :('), (11486, 2960, 'Johore, Malaysia', '@Jakelvista hongkong ka diyan... Nasa singapore ako. Hahahah'), (11487, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 71'), (11488, 2931, 'Riau, Indonesia', 'Kapan ya Bisa gemuk wkwkwk'), (11489, 2118, 'Singapore', '@NasuhaNsr @MuhdFirman FIrman''s language'), (11490, 1451, 'Johor Bahru, Johore', '@IRISKK but u gt hand in mind anot??'), (11491, 941, 'Johor Bahru, Johore', '@xoxo_Nanaa But not need to look at me like I''m a weirdo whut . :3'), (11492, 244, 'Johor Bahru, Johore', '@jessymeow e Gucci is fake part is funny!'), (11493, 897, 'Johore, Malaysia', '@Blehtan LOL you want be good son? Hahaha'), (11494, 544, 'Johore, Malaysia', 'Wa, the ahma last time is Jessica liu, the difference very big ah.'), (11495, 2961, 'Johore, Malaysia', '@meildaaziz oh.'), (11496, 771, 'Johore, Malaysia', '@KITTI3RAWR hi cyber girlfriend :3 ! You look very pretty today .'), (11497, 2509, 'Johor Bahru, Johore', '@wordsfallthru yup!!but sm is taking most of their income!but i emphathize them.the feeling of not being appreciated by mgmt is just...'), (11498, 2918, 'Johor Bahru, Johore', 'So, who miss me? :P\nHAHAHAHAHA ! i miss abg.'), (11499, 2335, 'Johore, Malaysia', '❤'), (11500, 2932, 'Singapore', '@dwylinda @anditenrionaa @sishery tiket naik balon udaranya nya bisa dpke sampe bulan JUNI'), (11501, 1196, 'Johor Bahru, Johore', 'Bagus, drpda pecah lu punya to''ol.. RT @bachryans: ini tugas bikin pecah pikiran!! http://t.co/TDFdgYgx'), (11502, 3, 'Johor Bahru, Johore', 'Bro playing with gameboy, WTH'), (11503, 2555, 'Johor Bahru, Johore', 'Still can''t decide which phone I want.\niPhone 4S, Sony Experia S or Bb??? \nSUGGESTIONS PRIEST'), (11504, 2292, 'Johore, Malaysia', 'BAIBAI GOODNIGHT.'), (11505, 771, 'Johore, Malaysia', '@InsyirahKellner WHY !'), (11506, 733, 'Johore, Malaysia', '@petrinaheartxcz yeaaah lol'), (11507, 2962, 'Johore, Malaysia', 'ahhh!!! Toes aching like shit...'), (11508, 307, 'Johor Bahru, Johore', '@DhaniahFzra why! ):'), (11509, 1115, 'Johor Bahru, Johore', '@PigletLim_WJ @YIPPIE_ haha what your guys order? :&gt;'), (11510, 38, 'Johor Bahru, Johore', '@SupYoEee thenn? -curiousshit-'), (11511, 2963, 'Johore, Malaysia', 'Indah pada waktunya RT @HeyBaca: Akan datang kebahagiaan setelah kesedihan &amp; akan ada kesuksesan setelah kegagalan. Rencana Tuhan indah'), (11512, 2846, 'Singapore', 'OMGOMGOMGOMGOMGOMG !! JUNE NINE ?!! I FUCKING WANNA GO ! &lt;/3 PLEASEEEEEE !'), (11513, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 72'), (11514, 1668, 'Johore, Malaysia', '@hstyleslxve_ovx no im not lah.. apeerje sampai kesitu , but the series is about teenager life (:'), (11515, 2960, 'Johore, Malaysia', 'Sobrang sakit ng paa ko kakakalad #singapore'), (11516, 2964, 'Plentong, Johor Bahru', 'I''m at Kampung Bendahara (Johor Bahru) http://t.co/rOjkOcEl'), (11517, 173, 'Johore, Malaysia', '@NYQYQ yes I want those kind'), (11518, 2803, 'Malaysia', 'http://t.co/QHIr6qzP ชอบเวอร์นี้อ่ะ &gt;o&lt;"'), (11519, 2543, 'Johore, Malaysia', 'Location service มั่วสาส'), (11520, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 73'), (11521, 2918, 'Johor Bahru, Johore', 'Im still wasting time when im actually supposed to call 26th nw. :P'), (11522, 1116, 'Johore, Malaysia', '@LandOfOrange especially when one cost $90+ x.x\n\n$90 x 3 = $270!!'), (11523, 2938, 'Johor Bahru, Johore', '@iamwandy yezzzzzzzuuuuuuur'), (11524, 363, 'Johor Bahru, Johore', '@Moonotopia Jk :('), (11525, 206, 'Singapore', '@bunnybaby1315 MOI TOO CHEERS TO SOYA BEAN! ♥'), (11526, 1177, 'Johor Bahru, Johore', 'Flu is blocking a lot of my air pathway or whatever you call it'), (11527, 2931, 'Riau, Indonesia', '@YosefSanders @valeeennt ehm sef sef,gas terus ya di twitt, hahaha'), (11528, 1104, 'Johor Bahru, Johore', 'Gahhhhh :/ I smell trouble.'), (11529, 10, 'Singapore', '@Millieeeeeee 1 is 80+. 1 is 50+.'), (11530, 2803, 'Malaysia', '@noonoofar ชื่อแสตมป์จ้า แล้วนี่ชื่อไรเอ่ย ?'), (11531, 2965, 'Johor Bahru, Johore', 'Who wanna play bingo LOL ._. http://t.co/gXPgf2Wf'), (11532, 2966, 'Kota Tinggi, Johore', 'I''m back! :D (@ Budget Terminal w/ 2 others) http://t.co/BNyX1thm'), (11533, 206, 'Singapore', '@Achaximum @bunnybaby1315 *milk ;3'), (11534, 1196, 'Johor Bahru, Johore', 'Smakin PD dh gue jlan sma tataaaa.. Kawan yg pnya slera lbh tnggi dri gue adja, dia suka sma si tataaaa.. Hiks.. http://t.co/yiZkIxDa'), (11535, 12, 'Johore, Malaysia', '@IHEARTSUZY Dunno :( I try to see. Yearning Heart was my favo song :)'), (11536, 512, 'Johore, Malaysia', 'Goodbye USS!'), (11537, 539, 'Johor Bahru, Johore', 'I''m at Blk 171 Yishun Ave 7 (Singapore, Singapore) http://t.co/H3U5V8e8'), (11538, 460, 'Johore, Malaysia', '"@saffronsharpeee: The pain i feel now, would be nothing compared to the pain i feel later on."'), (11539, 2036, 'Malaysia', '@nongmildky ยังงงงงงงง หิวสาสสสสส &gt;&lt;'), (11540, 2846, 'Singapore', 'LMFAO coming to singapore ?? woah~ ! Champagne shower sia ! :P'), (11541, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 74'), (11542, 1177, 'Johor Bahru, Johore', 'Bladders being a bitch too'), (11543, 2657, 'Johore, Malaysia', '@xiangyyi but my friend also have cellobass outing O.o OMGG !! yougoingwhr?'), (11544, 2380, 'Johor Bahru, Johore', '@AdrianGohJW @violentgirl_ haha i average nia'), (11545, 2967, 'Plentong, Johor Bahru', '@theJimidz haaaaa nnt malam nnt fahmi mimpi ehh tp ili kena dtg mimpi fahmi'), (11546, 2118, 'Singapore', 'Bulanch Marchch, akan akhirch tak lamach lagich, saya belumch ready forch schoolch'), (11547, 1108, 'Johore, Malaysia', 'Don''t you know that you''re irritating?'), (11548, 307, 'Johor Bahru, Johore', 'Waste my time.'), (11549, 159, 'Johore, Malaysia', 'Why is it that whenever I wanna drink water in the car, there never seems to be any red lights!!'), (11550, 460, 'Johore, Malaysia', '“@iTweetss: Those moments when you''re so\nhappy you wish you could\nfreeze time and live in that\nmoment forever.♥”'), (11551, 1266, 'Johore, Malaysia', '@ShafinahIeenaaa LOL my phone can''t load the pic'), (11552, 2968, 'Johore, Malaysia', 'Just woke up:)'), (11553, 2509, 'Johor Bahru, Johore', '@wordsfallthru yea they respect sm bec'' that is where they started.they know their roots but it doesnt mean they need to b slaves for them'), (11554, 1653, 'Johor Bahru, Johore', 'I''m at Jillian''s home sweet home.  http://t.co/W3wD3vS4'), (11555, 1951, 'Johor Bahru, Johore', 'I don''t care about the past, I believe that you''ve changed. No one would want to be bad forever'), (11556, 2653, 'Plentong, Johor Bahru', '@hanizahid hahaha , tu la psl :)'), (11557, 2969, 'Johore, Malaysia', 'Made payment for hols!! April here I come!! *\\(^o^)/*'), (11558, 2970, 'Johore, Malaysia', 'The Lorax will start in... @ Suntec City Shopping Mall http://t.co/1DveCIEI'), (11559, 2971, 'Plentong, Johor Bahru', 'Hidup mesti kena jujur..'), (11560, 103, 'Johor Bahru, Johore', 'I am gong Crazy already!!!'), (11561, 1108, 'Johore, Malaysia', 'Fuck off, will you?'), (11562, 40, 'Johor Bahru, Johore', '@SarahhhhLin using phone how copy paste you tell me!! Then I have to go tweet deck find your tweet then quote..!!!'), (11563, 2972, 'Plentong, Johor Bahru', 'hangout at McD'), (11564, 2973, 'Johor Bahru, Johore', 'Made it back home safely.. @ $oulja''s Crib!!! http://t.co/DELKlCRB'), (11565, 539, 'Johor Bahru, Johore', 'I''m at My Crib-Toe-Nyte =D (Singapore) http://t.co/A9F6tSJ7'), (11566, 12, 'Johore, Malaysia', 'Why Khun so cute in 2PM Hottest Movie &lt;3'), (11567, 1686, 'Johore, Malaysia', '@YAHUIEM no for nowww.'), (11568, 307, 'Johor Bahru, Johore', 'I would rather go home and sleep la please. Wtf.'), (11569, 1451, 'Johor Bahru, Johore', '@IRISKK hahaha!!! Okok! Was afraid u didn''t hand in mine..since u were the last one to have it!'), (11570, 228, 'Johor Bahru, Johore', '@amirarx Hahah, I am like in 5 min. You go to sleep also la, noisy only. :p jkjkjk!'), (11571, 2969, 'Johore, Malaysia', '@audideyn Fainted. Next time wash it with hot water. Haha.'), (11572, 2974, 'Plentong, Johor Bahru', 'Memang ''blah'' la kat sini. (@ Restoran Singgah Selalu w/ 7 others) http://t.co/FiCI9sT2'), (11573, 2911, 'Johore, Malaysia', '@4NDR0M3D4_ U change number alr arh'), (11574, 218, 'Johor Bahru, Johore', 'Miss those times.'), (11575, 1116, 'Johore, Malaysia', 'If only iPhone battery lasts as long as iPad''s'), (11576, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @intanska for me, whenever i closed my eye, i always thinking about someone :p'), (11577, 1369, 'Johore, Malaysia', '@azwanjamil scissors paper stone?? Lai la? Kalah amek straw?'), (11578, 1651, 'Pulai, Johor Bahru', '@erichafitrih jap.'), (11579, 40, 'Johor Bahru, Johore', '@cheamycheechee best circle but stall should be fine too I think!'), (11580, 1951, 'Johor Bahru, Johore', 'I''ve loved you right now'), (11581, 149, 'Johore, Malaysia', 'that sounds bastard. just saying.'), (11582, 1060, 'Johore, Malaysia', '@nizammansor ngam ngam aku tengah dengar lagu @WhereisADTR ni. dan kamu kawan baik saya'), (11583, 2036, 'Malaysia', '@ipinkeros 55 ครับผม ๆ ทำไรอ่ะนั้น ?'), (11584, 28, 'Johore, Malaysia', '@AngBenny LOL!'), (11585, 2832, 'Singapore', '@septemberoute haha!!'), (11586, 244, 'Johor Bahru, Johore', '@melvinryantan ok. I will check\nIt out. Thx q! Can catch u for dinner! =)'), (11587, 1604, 'Johore, Malaysia', 'Yay! Heading to mac to get my shaky shaky fries! :D'), (11588, 117, 'Johore, Malaysia', '@ohmysofiaa @p1xiedust @effdorn @burntmittens charmeer coming? sorry hehe'), (11589, 5, 'Johore, Malaysia', 'True much :b "@Retwittings #S are facing a certain emotional crisis right now. "'), (11590, 847, 'Johore, Malaysia', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/NgSGfvNe'), (11591, 2321, 'Johore, Malaysia', 'I''m at Cathay Cineleisure Orchard (Singapore, Singapore) w/ 20 others http://t.co/amN26BU2'), (11592, 2968, 'Johore, Malaysia', 'Haiz got headache:/'), (11593, 910, 'Johor Bahru, Johore', 'I''m at lovely home :) http://t.co/TttjmVsq'), (11594, 2971, 'Plentong, Johor Bahru', 'Holiday hw langsung tak sentuh...APTB! XD'), (11595, 1847, 'Plentong, Johor Bahru', '@AhmadZafran aq saja perli doh~~ haha'), (11596, 1405, 'Johore, Malaysia', '@leefang_random Dream on =P'), (11597, 1949, 'Plentong, Johor Bahru', 'Dessert after dinner with shiqi (@ Tutti Frutti Permas Jaya) http://t.co/x5c3358V'), (11598, 103, 'Johor Bahru, Johore', '@UnwrittenNotes huh is it the 1 from our school'), (11599, 495, 'Pulai, Johor Bahru', '#SayaTakBiasa orang panggil aku AWAKSAYA..\n*Sorry ! Saya memang mcam ni*\n#Hypocrite #ThatsMe'), (11600, 2975, 'Plentong, Johor Bahru', 'Tenangkan minda (@ Restoran AK (Shisha)) http://t.co/vWElegtt'), (11601, 2976, 'Kota Tinggi, Johore', 'I''m at  Home © http://t.co/QTUUbbpT'), (11602, 2977, 'Kota Tinggi, Johore', 'I''m at Fitness Corner (Lakeside, Singapore) http://t.co/di7OH68O'), (11603, 40, 'Johor Bahru, Johore', '@krackedlips @oompoofish @abzhasabs @mintopally i anything haha'), (11604, 2503, 'Johor Bahru, Johore', '@5H3RM4IN3 rich ppl need work de meh?'), (11605, 771, 'Johore, Malaysia', 'Sedap nye dapat coke !'), (11606, 1950, 'Johore, Malaysia', '@Colettegeeky Why you wan skip .. the person.'), (11607, 12, 'Johore, Malaysia', 'Hyuna give me some clothes :)'), (11608, 1847, 'Plentong, Johor Bahru', '@AhmadZafran macam ba.'), (11609, 338, 'Johore, Malaysia', 'I''m at Spize Bedok (Singapore, Singapore) http://t.co/hFHAyVt0'), (11610, 539, 'Johor Bahru, Johore', 'I''m at •My Disastrous Mosh Pit!• (Singapore, Singapore) http://t.co/PNv6O9ec'), (11611, 2957, 'Johor Bahru, Johore', 'So green, so greennn (at @SG_Starbucks) [pic] — http://t.co/tPI2Wber'), (11612, 1194, 'Malaysia', 'พี่ไหมโดนมาก'), (11613, 2978, 'Johor Bahru, Johore', 'Omg i am late again !!!! arh !!!'), (11614, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims laaaaa . tegur laaaa . mase maulud tuu kan ? fifien langgar akak taw pastu ade budak jerit name die syifa . pastuuu ...'), (11615, 2979, 'Johore, Malaysia', 'RT "@iTweetss: Those moments when you''re so happy you wish you could freeze time and live in that moment forever.♥"'), (11616, 2923, 'Singapore', '@Tigahtiggy http://t.co/6Og1a3fq I applied for this just now. Go!'), (11617, 2980, 'Riau, Indonesia', '@ikaputri_lovers ikaa..iqbal ngajak reuni tau sabtu!gimana nih!aq ga di bolehin u?'), (11618, 482, 'Johor Bahru, Johore', 'I''m at *~CarPark~* (Singapore) http://t.co/bUoWqDNh'), (11619, 1951, 'Johor Bahru, Johore', 'Just take one step closer.. That''s all it Too change this right now'), (11620, 180, 'Johor Bahru, Johore', '@ikaliyana when I can datang &amp; visit Elis ni..?'), (11621, 2036, 'Malaysia', '@kiimiie9419 รีบนอนไปไหน ? =='), (11622, 1266, 'Johore, Malaysia', '@assortedbacon @likuhhein @choonhockbleh NO. YOU WALK YOUR MISS YANG HOME'), (11623, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 75'), (11624, 700, 'Johor Bahru, Johore', 'Channel 5 ghost story isit?'), (11625, 544, 'Johor Bahru, Johore', 'I wonder if you still remember those words I told you like how I remember yours.'), (11626, 2503, 'Johor Bahru, Johore', '@5H3RM4IN3 when I heard this news I super cannot tahan.. Till now still cannot!'), (11627, 115, 'Johor Bahru, Johore', '@SuperSammi he doesn''t even read o_o'), (11628, 569, 'Johore, Malaysia', '@itsyeefern NOT EVEN IF YOU THROW ME OFF A BUILDING (:'), (11629, 1369, 'Johore, Malaysia', 'Maseh nak pangil ran? RT “@ElwaFishy: @farhanamanokgo @muhdluqmanaziz @haziqmustaffa goodnight ran! ”'), (11630, 1816, 'Johore, Malaysia', '@KarmahnT can''t my dear :(( mom won''t allow it. I''ll meet you all for lunch or an ice cream at Eastwood center or sth? :))'), (11631, 2981, 'Singapore', '834L actually means somebody to me &gt;.&lt;'), (11632, 2509, 'Johor Bahru, Johore', '@wordsfallthru i can also understand it is hard to get out from them since they r the biggest entertainment agency in korea.'), (11633, 2982, 'Johor Bahru, Johore', 'I tweet lesser and lesser now! Hahaha!!'), (11634, 1108, 'Johore, Malaysia', 'Written in the stars.'), (11635, 2460, 'Johore, Malaysia', 'Tak reply da tidu lah tu nvm tunggu je lah'), (11636, 700, 'Johor Bahru, Johore', 'Hehehehe, okayokay sorry! :p RT @fatinadhirahh: @afiqahyamin alamak die ni eh. Hahahha, takmo emo boleh tak? -.-'), (11637, 1369, 'Johore, Malaysia', 'Wahh jadi2 dorg seme pangil aku ran eh...'), (11638, 2460, 'Johore, Malaysia', 'Bsk keje 12-10 :/'), (11639, 657, 'Johore, Malaysia', '@NazurahMN ye saya mengerti la awak oii..tapi milo panas xd ke?'), (11640, 2983, 'Johore, Malaysia', '@angelsherwin are the photos taken with the new camera much better than most 8mp on other phones?'), (11641, 476, 'Johore, Malaysia', 'Aaaaahhh bo amir iqram!!!'), (11642, 2979, 'Johore, Malaysia', 'I feel like cutting my hair to shoulder length eh. Shld i?'), (11643, 140, 'Plentong, Johor Bahru', '@yenyin33 haha i can recognize suju shinee snsd and 2ne1 only. Yep. Minho is from shinee. The tallest one (:'), (11644, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 76'), (11645, 2984, 'Johor Bahru, Johore', 'I just ousted @jrrockyrworld as the mayor of 12 Florence Road on @foursquare! http://t.co/wy2V0VZy'), (11646, 191, 'Plentong, Johor Bahru', 'Adnan Sempit 2 kelakarrr'), (11647, 1951, 'Johor Bahru, Johore', 'This is not high hopes.. It''s faith and what I believe in you'), (11648, 2985, 'Johor Bahru, Johore', 'I''m at Jamie''s Crib http://t.co/0CWOhnMX'), (11649, 142, 'Johore, Malaysia', 'My heart is reserved just for u .Those three words are only meant for u .I''m positive we''re meant for each other .I want to grow old with u.'), (11650, 2986, 'Singapore', '@viatumblr That awkward moment when you can''t spell ''awkward''.'), (11651, 2987, 'Johor Bahru, Johore', 'I''m at Grace''s Crib  (Singapore) http://t.co/sua6dUEr'), (11652, 681, 'Johor Bahru, Johore', 'I''m at Terminal 3 (Singapore, Singapore) w/ 15 others http://t.co/WXYmkoE2'), (11653, 1266, 'Johore, Malaysia', '@ShafinahIeenaaa shafinah old ma can''t blame her T__T'), (11654, 244, 'Johor Bahru, Johore', '@melvinryantan haha but Olympics end on 12aug!'), (11655, 5, 'Johore, Malaysia', 'CUTE ^^ " @ihearts_candies peace (Y) http://t.co/wkXIEIj2 "'), (11656, 1812, 'Johor Bahru, Johore', 'Kat sini kau bole jadi tige macam Taiko, Balachi atau Chambu...'), (11657, 544, 'Johor Bahru, Johore', 'I wonder if you miss me like how I miss you.'), (11658, 2543, 'Johore, Malaysia', '@Jannnuary กลับพรุ่งนี้ ตังหมดแล้ว 55555555555'), (11659, 2988, 'Johor Bahru, Johore', 'Dinner at sakura buangkok'), (11660, 195, 'Johore, Malaysia', 'I''m Home Sweet Home.... (@ 83 Strathmore Avenue) http://t.co/DiLXIQyH'), (11661, 2118, 'Singapore', 'I want to watch Kuda kepang performance. I miss the sound of Gamelan'), (11662, 1686, 'Johore, Malaysia', '@YAHUIEM loool. whattt you mean???? zzzz'), (11663, 2718, 'Johor Bahru, Johore', 'Had Maggie for dinner =)'), (11664, 1847, 'Plentong, Johor Bahru', '@AhmadZafran @4ppleGreen kat pasar seni kan ada~ kat atas :D'), (11665, 12, 'Johore, Malaysia', '@maravivianne Not Sherlock. Is highlight medley . :P'), (11666, 399, 'Johor Bahru, Johore', '@pinkshortcake_ @jieshiii HAHAHAHA WHY THE TWO OF YOU KEEP ARGUING ONE AH'), (11667, 2371, 'Johor Bahru, Johore', 'I''m at Dairy Farm Estate (Singapore) http://t.co/71R4rVru'), (11668, 2657, 'Johore, Malaysia', '@RandomLikeSarah @Retwittings OMG . sotrue ! O:'), (11669, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs miskin paling tak logic -,- errrr !! Orang kaya kannn'), (11670, 1194, 'Malaysia', '@wutteriesBB พี่ชินโทรไปค่ะ แล้วไม่มีตัวตน ติดต่อไม่ได้'), (11671, 2846, 'Singapore', '@HXluvS April nine, but haven''t been announced world wide yet. heee.'), (11672, 2989, 'Johore, Malaysia', 'Tmr is 16th of march! Result release eh!! Bitch please i dont give a shit, i just wanna dance.'), (11673, 544, 'Johor Bahru, Johore', 'I wonder if you want me like how I want you.'), (11674, 1266, 'Johore, Malaysia', '@assortedbacon @likuhhein @choonhockbleh THEN GO ASK HER. I not miss yang LOL'), (11675, 2990, 'Johore, Malaysia', 'Neon Merlion. #singapore #merlion @ Merlion Park - Singapore http://t.co/BXKuKmFS'), (11676, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa ish bukan nak blang saye tade . Saye ade tertunggu2 kan awak . Hmmm :) . Wyd ? Adit okay already?'), (11677, 2503, 'Johor Bahru, Johore', 'Resting now.. Thinking of how to complete my 11 lesson plans in these few days..:'), (11678, 2641, 'Plentong, Johor Bahru', 'I''m at Lobby @ Thistle Hotel http://t.co/jxPPfHjg'), (11679, 2991, 'Johor Bahru, Johore', 'I''m at 406 Hougang Ave 10 http://t.co/5ckwRX55'), (11680, 495, 'Pulai, Johor Bahru', '@evayezza huh! POYO jee~ XP'), (11681, 2961, 'Johore, Malaysia', 'nights ^^v http://t.co/HtNeRw2Y'), (11682, 117, 'Johore, Malaysia', 'Theres school tmr :('), (11683, 1716, 'Johore, Malaysia', '@Aummhigh yessss!! Buy !! Btw, when u coming back a?'), (11684, 2992, 'Johor Bahru, Johore', 'iPad pre-ordered arriving 23 Mar. Telco n apple selling 16 Mar. Hmm... #{+}^}^||?&amp;)?@$(;'), (11685, 76, 'Johor Bahru, Johore', '“@Y_U_NOOO: MATH, Y U NO SOLVE YOUR OWN PROBLEMS?”'), (11686, 941, 'Johor Bahru, Johore', '@xoxo_Nanaa Gimme a break . I''m super tired . Idk how you girls do it . :O'), (11687, 115, 'Johor Bahru, Johore', '“@Retwittings: #W have the determination, intuition, persistence, creativity &amp; analytical skills to land into high positions.”'), (11688, 768, 'Johor Bahru, Johore', 'RT“@Kristoff0428: @vamos_marion look at this: http://t.co/C6EQxy2O”--woah! Amazing!walang base na gnamit?o pinagdikitan?all phone?!'), (11689, 2993, 'Johore, Malaysia', 'Software Engineering Project is fun, but it is also killing me.'), (11690, 1245, 'Johor Bahru, Johore', '@alastair97 she likes sex with old man? LOL'), (11691, 2010, 'Johore, Malaysia', 'Normal school days starting soon.'), (11692, 140, 'Plentong, Johor Bahru', '@WanJinghoho its like a news channel. But they came out for like say, a minute only. The tv was on and i heard ''opera'' i ran to the tv man!'), (11693, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 77'), (11694, 1747, 'Johore, Malaysia', 'Karaoke time!! (@ K Box) http://t.co/bThuKfZ0'), (11695, 2607, 'Johor Bahru, Johore', '@deehasnolife Hahaha... Okay. :) I saw them..'), (11696, 12, 'Johore, Malaysia', '@IHEARTSUZY Haha. I like some only. :)'), (11697, 2849, 'Singapore', '@pissmylipz Haha yeah , bestfriend !'), (11698, 307, 'Johor Bahru, Johore', 'Don''t come running back to me again.'), (11699, 2986, 'Singapore', '@sashaibrahim Next week ?'), (11700, 5, 'Johore, Malaysia', 'Baek arh \\m/ " @anatasyazz I talkback to teachers. Problem? "'), (11701, 460, 'Johore, Malaysia', 'At times, I nearly make a decision I know I''ll regret for life...'), (11702, 2657, 'Johore, Malaysia', 'XINMSN , I GIVE UP . -.-'), (11703, 2076, 'Johor Bahru, Johore', 'Complicated mind zzz. Is that person really? Or i think too much? Haiz i think too much lah.. Lol.'), (11704, 1245, 'Johor Bahru, Johore', '@GLuozhixiangSY uh not really LOL haha tell you something on whatsapp XD'), (11705, 2460, 'Johore, Malaysia', 'I want the best for you thats all .'), (11706, 2945, 'Plentong, Johor Bahru', '@InazatikahAz ala kesiannye kau...cmne boleh hilang weh?'), (11707, 1373, 'Johor Bahru, Johore', '@MuhdHarizzzz @reesyaadlin coughh, eheeem.haha okaay aku sebok :&gt; tskk'), (11708, 2926, 'Tebrau, Johor Bahru', 'Why recently so cold ?!'), (11709, 2503, 'Johor Bahru, Johore', '@5H3RM4IN3 no choice cause we all busy ma, if not the chance will be ours!'), (11710, 1373, 'Johor Bahru, Johore', 'Hais im bored !'), (11711, 2994, 'Johore, Malaysia', '@ravendgaf Hi. Nothing much. you? Cheesy eh?'), (11712, 2657, 'Johore, Malaysia', '@RandomLikeSarah hahahah ! but no exercise ! Shhh ~ X:'), (11713, 2335, 'Johore, Malaysia', 'I LHVE MAH PROFILE ❤'), (11714, 2782, 'Indonesia', 'udhan dlu ahh nge-twitt nya'), (11715, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 78'), (11716, 140, 'Plentong, Johor Bahru', '@WanJinghoho @sarachuizijiun yes! Hahaha but no more concert for me this year lah. Need to save for ss5 :D or maybe shinee'), (11717, 1904, 'Plentong, Johor Bahru', 'Night xx'), (11718, 2995, 'Johore, Malaysia', 'Should i sleep now? im bored'), (11719, 2981, 'Singapore', '834L is my favorite Mark III'), (11720, 1865, 'Indonesia', 'ka @Aldi_VNT reply mention dumss :) say "HAY" or just RT bigbro @vickySKDZ aja mau ngemention :p'), (11721, 628, 'Johor Bahru, Johore', '@DEADD0LLS deleted, cock server lol sian'), (11722, 2543, 'Johore, Malaysia', '@IINKKK ตกใจก่อนอ่านในวงเล็บ 5555555555'), (11723, 76, 'Johor Bahru, Johore', 'Why so quiet =('), (11724, 2758, 'Johore, Malaysia', 'lol uh my mum,she watsapp me.Padahal dia kat dlm bilik.'), (11725, 2803, 'Malaysia', '@chanakarn_kook 555 นิยายไม่ใช่ของเราจ่ะ ;p'), (11726, 2503, 'Johor Bahru, Johore', '@5H3RM4IN3 yup!!!!! Super '), (11727, 512, 'Johore, Malaysia', 'Haiyoo. Penat tapi tk bleh tido'), (11728, 1645, 'Johore, Malaysia', 'I may be weak in certain things but im not giving up easily...'), (11729, 1370, 'Johor Bahru, Johore', '@MegatAD Salam dari Singapore :)'), (11730, 2986, 'Singapore', 'RT @fizRedstic: Just parted ways with girlgila HidayahJalil.'), (11731, 2996, 'Johore, Malaysia', 'Back from playing with my friend and tomorrow i will watch Unriddle 2 Episode 9 on xinmsn catchup!'), (11732, 628, 'Johor Bahru, Johore', 'I''m at Buangkok MRT Station (NE15) (Singapore) http://t.co/BKbHiGf9'), (11733, 1266, 'Johore, Malaysia', '@ShafinahIeenaaa SHAFINAH I HAD ENOUGH OF THIS FACE LOL'), (11734, 2994, 'Johore, Malaysia', 'mrt saga'), (11735, 2613, 'Kota Tinggi, Johore', '@MuzaffarRahman noisy at twitter ..:P'), (11736, 2940, 'Riau, Indonesia', 'kalo dah d rumah ada aja yg pngen d beli..'), (11737, 700, 'Johor Bahru, Johore', '@yourstrulyrose Hahahaha, you so cute sia seriously :D hahaha!'), (11738, 64, 'Johore, Malaysia', 'omg I just killed a cockroach haha'), (11739, 1786, 'Johore, Malaysia', 'Bimbos. -.-'), (11740, 365, 'Johor Bahru, Johore', 'Krabi krabi krabi!!! Yes jom anyone free lets go go go!!!'), (11741, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Hhhahaha. Hihi wait and see the answer yaa Mueheheeehe xD'), (11742, 2334, 'Johor Bahru, Johore', 'I.want.a.hug'), (11743, 1342, 'Johor Bahru, Johore', 'Sadly, my gf isn''t an intense foodie as I am :('), (11744, 660, 'Johore, Malaysia', 'Dessert time :D (@ Ah Chew Desserts 阿秋甜品 w/ 2 others) [pic]: http://t.co/YUxLdbXf'), (11745, 2341, 'Johor Bahru, Johore', '@titserJOY more energy mas happy! #enervon-c bwahaha'), (11746, 115, 'Johor Bahru, Johore', '@SuperSammi because it''s THE HUNGER GAMES ZOMMMGGG I finished the whole trilogy and I couldn''t stop crying Q.Q'), (11747, 2460, 'Johore, Malaysia', 'Ahbeh kalo nak harapkan keje part time sampai bila ? Kata nak naik pelamin kan ?'), (11748, 941, 'Johor Bahru, Johore', 'You rather crop your head then your boobs ? Tells a lot . (:'), (11749, 2846, 'Singapore', 'Greyson Chance also coming to Singapore, PIXIE LOTT as well. garr~'), (11750, 1266, 'Johore, Malaysia', '@assortedbacon @likuhhein @choonhockbleh NO YOU GO YOURSELF'), (11751, 2653, 'Plentong, Johor Bahru', '@WhatMiss betol ke betol ke betol ke ? :O'), (11752, 2997, 'Plentong, Johor Bahru', 'istirahat... (@ Pangsapuri Sri Pahlawan C) http://t.co/s5P3ZnxR'), (11753, 2060, 'Indonesia', 'Kne tumbuk ngan adek T.T'), (11754, 2607, 'Johor Bahru, Johore', '@deehasnolife yes of course.. So pouty..'), (11755, 2941, 'Johore, Malaysia', '@hahnar okay! See u! Watching man u match later?'), (11756, 140, 'Plentong, Johor Bahru', '@selvan_12 worst ever. I was like wadafug is this!??!!! Euww'), (11757, 40, 'Johor Bahru, Johore', '@cheamycheechee circle is $20 I think! $35 is stall..'), (11758, 1177, 'Johor Bahru, Johore', '“@Janazxzxz: @syidaabe awwwwww MUAXXXXXXXXX MUAXXXX MUAXXXX *kiss you violently now**”FAINTS(as drama as I am)'), (11759, 2603, 'Plentong, Johor Bahru', '@ShukriHani Huihh. Esok kan dah Jumaat? -.- Hihihihi.'), (11760, 495, 'Pulai, Johor Bahru', '#Seriously dari tdi tgok cte #AmukanPocong aku dok ketawaa jee dri tadi!\nHAHA! *Maaf ! Saya sangat #PoyoKan ?*\nXDD'), (11761, 685, 'Singapore', 'which one? RT @mggykills Still on that Gotye song hahaha...'), (11762, 566, 'Johor Bahru, Johore', 'I''m at JaCeLyN''s Tsl Home  http://t.co/DKBUUIU0'), (11763, 1686, 'Johore, Malaysia', '@YAHUIEM ohhh. hahahahahaa. sorry lorhhh. i still using the same number. but no phoneee. heheheh'), (11764, 2998, 'Johore, Malaysia', 'Headache '), (11765, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 79'), (11766, 1342, 'Johor Bahru, Johore', '@scrumpu_puss I hate the fact that I forgot to bring my ezlink out.'), (11767, 2403, 'Singapore', 'Elvin Ng Still Trending @_@'), (11768, 2900, 'Plentong, Johor Bahru', '#BestThingAboutBeingSingle spend a lot of time with best friends.. :)'), (11769, 1950, 'Johore, Malaysia', '@Colettegeeky i think i know who :D'), (11770, 810, 'Malaysia', 'ถึงบ้านซะที (@ HOME HS8GLR/E22TV) http://t.co/ciP9H6Fx'), (11771, 1645, 'Johore, Malaysia', 'I seriously hate people who look down on me..grrrr;/'), (11772, 2996, 'Johore, Malaysia', 'But tomorrow also cannot watch Episode 10 night because i go tuition and play boardgames! till 9 ....'), (11773, 2832, 'Singapore', '@septemberoute hey, @huiqi_1996 say she is going to scream at u tmr. hehe'), (11774, 1847, 'Plentong, Johor Bahru', '@AhmadZafran @4ppleGreen alahai nk solat smpai ke masjid jamek -__- solat kat CM suda laaa'), (11775, 790, 'Johor Bahru, Johore', '@Sharkiez HAHAHAHAHAAA BUT ONLY ONE IS FUNCTIONAL AT ONE POINT OF TIMEEE'), (11776, 1060, 'Johore, Malaysia', '#np if it means a lot to you @WhereisADTR'), (11777, 2989, 'Johore, Malaysia', '@lerzhiheng seriously yea. I almost forgot tmr is the date that they release our result! Hahas!'), (11778, 2667, 'Johor Bahru, Johore', 'I''m at Blk 895 Tampines St 81 http://t.co/Oc8aWNS0'), (11779, 2503, 'Johor Bahru, Johore', 'Sat de dance faint~~~&gt;&lt; need find way to master that step!!!!!! Argh! Why this time so stress de?!'), (11780, 13, 'Singapore', '@blamboskr idk that''s why i want to know someone who knows lol'), (11781, 1651, 'Pulai, Johor Bahru', '@erichafitrih okayyy :)'), (11782, 2846, 'Singapore', '@HXluvS hhahhaa, must grab the chance fast ! once announced my go sistic. hhaha'), (11783, 2932, 'Singapore', '@rama_sobat Jakarta selatan deket ko hehehe'), (11784, 2687, 'Johor Bahru, Johore', 'I just became the mayor of ♚ Shermine''s Crib on @foursquare! http://t.co/JnNLP7O5'), (11785, 2460, 'Johore, Malaysia', 'Aku tegur sbb aku kesah fhm ?'), (11786, 2687, 'Johor Bahru, Johore', 'I''m at ♚ Shermine''s Crib http://t.co/Cw9dtX7B'), (11787, 2474, 'Johore, Malaysia', 'Wish we could overnight.....@FaiFairuzy jgn malas do ur assignment!'), (11788, 2999, 'Johore, Malaysia', 'ello poppit.'), (11789, 494, 'Johor Bahru, Johore', 'Maintain ah pakai talkbox ehk'), (11790, 103, 'Johor Bahru, Johore', '@UnwrittenNotes lol'), (11791, 2603, 'Plentong, Johor Bahru', '#SayaTakBiasa tidur tak peluk Bear awak :'')'), (11792, 768, 'Johor Bahru, Johore', '@itsCahWen chos! Drama mo! Wako pa Lang dito!'), (11793, 64, 'Johore, Malaysia', 'instead of getting freaked out I got angry and on the hot water and sprayed the whole floor and finally boiled the cockroach to death muaha.'), (11794, 2961, 'Johore, Malaysia', '@meloveA7X uh hi'), (11795, 3001, 'Plentong, Johor Bahru', 'berazam nk kumpul duit nk beli #SamsungGalaxy minx2 dpt amin~'), (11796, 544, 'Johor Bahru, Johore', 'I love it when guys pull my fringe to my ear to see my clear face.'), (11797, 206, 'Singapore', '@bunnybaby1315 HEHE♥'), (11798, 3002, 'Johore, Malaysia', 'Kung fu on a turtle at a very #bizarre theme park @ Haw Par Villa http://t.co/twvYO81m'), (11799, 1177, 'Johor Bahru, Johore', '@nnaddhh hello my favorite small bitch. Miss you and love you small bitch baby❤❤❤'), (11800, 2758, 'Johore, Malaysia', 'Stakat suruh aku amek kan dia grenn tea -.- lol'), (11801, 983, 'Singapore', 'Just had a spiky haircut.... Or i think it was... :P'), (11802, 1101, 'Johore, Malaysia', '@Afifjefri aq tk tawu laa no. dy bape .. N .. Ade stu nombo ni .. selalu call aq .. n .. suaree p0n mcam Nafis .. Kdg2 Suaree Syful .'), (11803, 1190, 'Johor Bahru, Johore', '@EpikRoy @bearythoughts haha'), (11804, 1373, 'Johor Bahru, Johore', '@MuhdHarizzzz @reesyaadlin :))))'), (11805, 40, 'Johor Bahru, Johore', '@TinTan__ stall best!! I''m like saying like best get circle, if not I want stall ahha.'), (11806, 2986, 'Singapore', 'So nice ! :( RT @fizRedstic: HidayahJalil, na, Cali. RT @FunnySolo: California Lovin! http://t.co/KrBPQ7N9'), (11807, 2979, 'Johore, Malaysia', '@YANNNI_ astons better?! Ehh tml coming not? Afternoon only!!'), (11808, 2503, 'Johor Bahru, Johore', '@5H3RM4IN3 yup!!!!'), (11809, 244, 'Johor Bahru, Johore', '@melvinryantan ok means won''t get to meet u!'), (11810, 1194, 'Malaisie', 'พี่ริท ไม่ต้องเพิ่มรอบเหอะ ของดีมีครั้งเดียว ซึ้งทั้งคอน เปลี่ยนสถานที่ ระเบิดมูนสตาร์ก็ได้'), (11811, 1847, 'Plentong, Johor Bahru', '@Dkamilaa nnt kucing marah'), (11812, 3003, 'Plentong, Johor Bahru', 'Wooooott..!! Seems legit lol ;p RT @aryana_williams: #GirlsNameILike Darlina @arlynroslin'), (11813, 2900, 'Plentong, Johor Bahru', '#PeopleIWantToMeet @AmyLeeEV'), (11814, 2338, 'Johor Bahru, Johore', '@ZacPY HAHAHHAHA.'), (11815, 2555, 'Johor Bahru, Johore', '@YiJieRilakkuma @bjiayi EH SEMO):'), (11816, 1659, 'Johor Bahru, Johore', '“@maco_ortega: @bryskired wsup???”grabe after ten years ang reply haha musta'), (11817, 2603, 'Plentong, Johor Bahru', '@ShukriHani Huihh iyolah Maduku yang Montel :) Opss Hahhahaha xD Ehh Acap kerja ehh?'), (11818, 170, 'Johore, Malaysia', 'Tempura Ice-Cream w/Strawberry Sauce @ Ichiban Boshi http://t.co/oBo7PBAO'), (11819, 628, 'Johor Bahru, Johore', '@DEADD0LLS why leh'), (11820, 771, 'Johore, Malaysia', '@InsyirahKellner aww ! No problem :)'), (11821, 2945, 'Plentong, Johor Bahru', 'dah lame tak chatting ni. kekok pule rase nak taip laju2.'), (11822, 2543, 'Johore, Malaysia', '@Jannnuary เปล้า 5555 กูหลอก กลับวันอาทิตย์ 55555'), (11823, 1108, 'Johore, Malaysia', 'I''ve got the moves like jagger.'), (11824, 700, 'Johor Bahru, Johore', 'Oh, so my dad''s home'), (11825, 1659, 'Johor Bahru, Johore', '“@iamnelsonDM_: @bryskired #PeopleiWantToMeet”'), (11826, 2799, 'Riau, Indonesia', '@1khl45 huuuu, ketahuan hobynya esek-esek'), (11827, 2537, 'Johore, Malaysia', 'I just became the mayor of Home on @foursquare! http://t.co/vOxvL61e'), (11828, 2537, 'Johore, Malaysia', 'Tired max!! (@ Home) http://t.co/ioy7qvAQ'), (11829, 3004, 'Plentong, Johor Bahru', 'I''m at Salsabila Shisha Lounge (Johor Baru) http://t.co/eCXWryDq'), (11830, 1266, 'Johore, Malaysia', '@ChoonHockBleh @assortedbacon @likuhhein WANT SEE? I GOT PIC IT LOL'), (11831, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @AhmadZafran surau pun bolehhhh'), (11832, 2979, 'Johore, Malaysia', 'I''m like tired of my hair . Feel like cutting short LOL'), (11833, 138, 'Johor Bahru, Johore', '3G suddenly so slow ...'), (11834, 2555, 'Johor Bahru, Johore', '@inakhalifa haha u have isit? (:\nBut Sony is 12mp!!):'), (11835, 829, 'Johore, Malaysia', '#nowplaying Learn My Lesson - DAUGHTRY'), (11836, 3005, 'Johore, Malaysia', 'I''m at East Coast Park w/ 2 others http://t.co/Nc1JjWWf'), (11837, 170, 'Johore, Malaysia', 'Matcha Shiratama Ice-Cream @ Ichiban Boshi http://t.co/xTZWx3mz'), (11838, 3006, 'Johore, Malaysia', 'When did this start to turn ugly?'), (11839, 772, 'Johor Bahru, Johore', 'Ambik kau... Terperanjatkan bini kau ada pat luar &amp; dalam bilik.. #AmukanPocong'), (11840, 2060, 'Indonesia', 'Kau mmg sampah pon :P'), (11841, 12, 'Johore, Malaysia', '@IHEARTSUZY Min talking about lens...'), (11842, 399, 'Johor Bahru, Johore', '@Jieshiii @pinkshortcake_ I shudder ok.'), (11843, 2617, 'Johor Bahru, Johore', '@KIMJIOHH lol :P kk'), (11844, 275, 'Kota Tinggi, Johore', 'I''m at My Lil room ;  http://t.co/rPUw5UPb'), (11845, 141, 'Johor Bahru, Johore', '@AspirantSG ohh that interesting.. Help a lot.. I love to travel tho..'), (11846, 2923, 'Singapore', '@Tigahtiggy Suke hati lah, gurl.'), (11847, 2010, 'Johore, Malaysia', '9% left.'), (11848, 2961, 'Johore, Malaysia', 'just now at vivo &lt;3 http://t.co/k6dnyVzM'), (11849, 189, 'Johore, Malaysia', 'I''m at Bedok Temporary Bus Interchange w/ @zevontzw http://t.co/4bKDr4Iy'), (11850, 1971, 'Johor Bahru, Johore', 'I''m at Hougang MRT Station (NE14) (Singapore, Singapore) http://t.co/miYzzFYz'), (11851, 2945, 'Plentong, Johor Bahru', 'dah la aku taip lembab nak mampus. mmg tak boleh jadi kerani. haha'), (11852, 495, 'Pulai, Johor Bahru', 'We Are The B..B !\nthe one always want to be the A class.. XP'), (11853, 293, 'Johore, Malaysia', 'Sasuke in susanoo mode is so beast'), (11854, 2613, 'Kota Tinggi, Johore', '@MuzaffarRahman true.. True..'), (11855, 2555, 'Johor Bahru, Johore', '@Infectedpoison_ Obviously, Specific name !!'), (11856, 3003, 'Plentong, Johor Bahru', '@endaishak @hannanamIr esok tghari aku balik sa dah :(('), (11857, 700, 'Johor Bahru, Johore', 'Should i eat or skip, i dont feel well lah ya Allah'), (11858, 2118, 'Singapore', 'It was fun just nw, making a setting like a X-factor with me @chindixlovegood @MuhdFirman &amp; @IsaBentonn gv comments since we all r perfomers'), (11859, 80, 'Johor Bahru, Johore', 'damn'), (11860, 3007, 'Johor Bahru, Johore', 'Haiss. Rindu syakirah. Why your whatsapp expiredddd :''('), (11861, 513, 'Johor Bahru, Johore', '@Reichi_Lim Yea why?:)'), (11862, 2849, 'Singapore', '@pissmylipz How''s today ?'), (11863, 2850, 'Johor Bahru, Johore', 'Cb my ass like going cramp and I''m in the bus omg'), (11864, 3008, 'Plentong, Johor Bahru', 'Layannnnnnnnn (@ Disclaser Karaoke) http://t.co/7jMQBOJO'), (11865, 768, 'Johor Bahru, Johore', '“@gmanews: Lalaking naka-jackpot ng P14M sa lotto, inubos ang premyo sa loob ng tatlong buwan: http://t.co/MeQP8sBn”--did he invest it?!omg!'), (11866, 2758, 'Johore, Malaysia', 'Both of my eyes are swollen.Ouchhhh'), (11867, 1847, 'Plentong, Johor Bahru', '@intanska @4pplegreen haa retweet ahh~~ ngeh3'), (11868, 138, 'Johor Bahru, Johore', '@jaehun_brows ME TOO'), (11869, 99, 'Johor Bahru, Johore', '@acunVeilside @haziqdarls @nazzyfxckjack hahaha'), (11870, 1680, 'Johor Bahru, Johore', '@peilinglow shuts! Get lost man.'), (11871, 64, 'Johore, Malaysia', 'I''d better not find another species like you in my toilet again! geez and I was about to sleep argh'), (11872, 2653, 'Plentong, Johor Bahru', '@WhatMiss ohh , Alhamdulillah , kwn kita dh maju &gt;&lt;'), (11873, 1889, 'Johore, Malaysia', '@Chestarrrr so sweet of u!'), (11874, 363, 'Johor Bahru, Johore', '@Moonotopia Havnt due meh?!'), (11875, 140, 'Plentong, Johor Bahru', '@stephaniecuifen wow. Thats a lot of stuff.'), (11876, 1825, 'Johor Bahru, Johore', '@LynnnS2 no,'), (11877, 285, 'Singapore', '@AnatiSimpson laaa you nak bash I? HAHAHAHAHAHAHAHAHAHAHA'), (11878, 98, 'Johor Bahru, Johore', 'Girl, please say, no no no no no #np'), (11879, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 81'), (11880, 399, 'Johor Bahru, Johore', 'These two people arguing over who cooks better. Cute or what???? @Inspirationity @eric__n'), (11881, 94, 'Johore, Malaysia', 'Pure porn la~ HAHAHAHA. Never consider existence of KIDS Mehhhh:P'), (11882, 2320, 'Johore, Malaysia', '@Jelitang then lets meet on another day lor probably on the the weekends or when CA officially ends haha!:D'), (11883, 1373, 'Johor Bahru, Johore', '@linaosley i want my ice cream :)'), (11884, 1266, 'Johore, Malaysia', '@ShafinahIeenaaa no..? SHAFINAH ANYHOW DE'), (11885, 460, 'Johore, Malaysia', '“@Dustandsmoke: Something is definitely wrong if a girl stop being jealous.”'), (11886, 2986, 'Singapore', '@fizRedstic Dorang like lagi.'), (11887, 3, 'Johor Bahru, Johore', '#nowlistening 当我们正同在一起~'), (11888, 2961, 'Johore, Malaysia', '@Ryaan_8 suuuuuurp~'), (11889, 3009, 'Johore, Malaysia', '@17stones why indeed :('), (11890, 94, 'Johore, Malaysia', '@YoGabehgabeh I don''t know leii...'), (11891, 919, 'Johore, Malaysia', 'Two swans @ Singapore Botanic Gardens http://t.co/zdK5u37U'), (11892, 585, 'Johore, Malaysia', '我再想你'), (11893, 495, 'Pulai, Johor Bahru', '@evayezza takde2!\n#SeriousNi #TakTipuNi :D'), (11894, 1196, 'Johor Bahru, Johore', 'I''m at SOC Grounds http://t.co/8FXcQnLt'), (11895, 5, 'Johore, Malaysia', 'RT " @anatasyazz @MS_SHRAH iknowright \\m/ "'), (11896, 3010, 'Johor Bahru, Johore', 'Atty loves kinny bloody much ❤ http://t.co/gTQBAx5U'), (11897, 94, 'Johore, Malaysia', '@Juper_Sunior IKR... How..'), (11898, 2042, 'Johore, Malaysia', '@DieDieFromSkool ikr,we didnt cherish much of our time n now we regret'), (11899, 2525, 'Johor Bahru, Johore', 'I''m at Goodspeed Cyber Cafe (Singapore, Singapore) http://t.co/j1zjCvMC'), (11900, 1247, 'Johor Bahru, Johore', '@S3R1zawa no. My mother and Aunty fking delay until the shop close .'), (11901, 2110, 'Johore, Malaysia', '@Kehmemay @jojo_capuz and share your blessings na rin:-) right kehmie? hahaha!isasama niya daw tayo sa pagyaman niya lol'), (11902, 700, 'Johor Bahru, Johore', 'THIS RT @Atiqa_Z: You don''t be cheeky atau nak act cute with my boyfriend.'), (11903, 1194, 'Malaysia', '@Ry_Patchanit จะเพิ่มรอบ แต่ไม่คอนเฟริม สำรวจจำนวนก่อน แต่แบบต้นสังกัดเข้าใจป่ะ ! ทำไมไม่เปลี่ยนสถานที่ เพลีย'), (11904, 3011, 'Johor Bahru, Johore', 'If we weren''t tgt in the first place, maybe things would have been better.'), (11905, 399, 'Johor Bahru, Johore', '@Jieshiii @pinkshortcake_ me no sweet tooth ): you two killed me'), (11906, 2832, 'Singapore', '@septemberoute @huiqi_1996 U will see:P'), (11907, 1904, 'Plentong, Johor Bahru', 'I shouldn''t told them. Uhm'), (11908, 482, 'Johor Bahru, Johore', 'I''m at *~My LiViNg HaLl~* http://t.co/4vSqXH61'), (11909, 1266, 'Johore, Malaysia', 'RYU WILLZ WHAT CHALLENGE? UMADBRO?'), (11910, 2407, 'Plentong, Johor Bahru', '@gadishanim @admiralhafiz nak follow bolehh?? **mintak izin**=p'), (11911, 2989, 'Johore, Malaysia', '@DPdyan hahas! Actually it doesnt matter la ;)'), (11912, 141, 'Johor Bahru, Johore', '@tiniwiniwini haha.. Neaxcite eh lols.. Pwde din pla pinoy sumali.. :-)'), (11913, 1909, 'Johore, Malaysia', '@Scotchaholic sigh. Same here'), (11914, 2868, 'Johore, Malaysia', '@AchaGitaVryn hahahaha'), (11915, 772, 'Johor Bahru, Johore', 'Reason kiter samer.. Haha! “@watieysoong: Aku jrg nk layan slot seram ni sbb ada @IqramDinzlyHM and @azhanrani je aku lyn and mcm best je'), (11916, 3012, 'Johor Bahru, Johore', 'I''m at Mt''S hOuSe  http://t.co/EVupfc24'), (11917, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims pastu die fifien cakap sape tuu jerit-2 tuu ,sekali akk nmpak tanda name budak tuu syifa ,akak cakap laa syifa jerit . pastu'), (11918, 1196, 'Johor Bahru, Johore', 'Hahahaaaaa.. Si tata makin ngaco adja dh.. http://t.co/F357jUov'), (11919, 1342, 'Johor Bahru, Johore', '@scrumpu_puss :&lt;'), (11920, 138, 'Johor Bahru, Johore', 'Gonna call @quishterfur to talk about the awesome #2Lclassouting today while drinking my bubble tea :)'), (11921, 1173, 'Plentong, Johor Bahru', '@khaicees hahaha muscle tak ahh Turunkan babat dh ckup dah haha lol'), (11922, 569, 'Johore, Malaysia', '@itsyeefern I ALSO WANNA ADOPT YOU HAHAHAHAH (: ily too!!!'), (11923, 553, 'Johor Bahru, Johore', 'RT @iamaishyy: Its funny how I can barely function w/o you'), (11924, 941, 'Johor Bahru, Johore', '@xoxo_Nanaa Yes I will . ^^'), (11925, 1534, 'Plentong, Johor Bahru', '@nor_farahin xde lah.. Xnak ak'), (11926, 1060, 'Johore, Malaysia', '#myfavouriteband a7x? wey orang dengar lagu ni time form two lah. Dah RIP dah'), (11927, 3001, 'Plentong, Johor Bahru', '@belleainie mmg betol pon~~'), (11928, 1800, 'Johor Bahru, Johore', 'Huge hall.. Not very big actually.. @ Regent Multi-Purpose Hall http://t.co/vjLxOQsH'), (11929, 117, 'Johore, Malaysia', '@XaeEn @Xaeen yourself?'), (11930, 2989, 'Johore, Malaysia', '@lerzhiheng yup why worry so much. ;) just relax :)'), (11931, 2850, 'Johor Bahru, Johore', '@JadeRoseaholic it is super nice!!!! They use to have the milk favoured one but I think they discontinued it'), (11932, 1993, 'Kota Tinggi, Johore', 'RT @MinhoFacts: "Sherlock highlight medley with 7 songs and their image teasers will be in the video format." Excited? :D #SHINeeSHERLOCK'), (11933, 2018, 'Johor Bahru, Johore', 'Let''s see RT@cheesheng: I''ve decided to man the fuck up tonight and jog to Sembawang from Yishun and back. #BALLZ'), (11934, 2923, 'Singapore', '@sixBUTTERSCOTCH My dear, I''m done with part 3. Skipped MCQ. I''m at the next part.'), (11935, 1686, 'Johore, Malaysia', '@YAHUIEM my phone the other other lost. and i renewed my sim card lor. so now only no phone. where got step cute. you ahh!'), (11936, 2638, 'Johor Bahru, Johore', ', are you sure?'), (11937, 3014, 'Johor Bahru, Johore', 'Rings! Thank U Edha! @ Coff Hill http://t.co/TdGVlf5G'), (11938, 3015, 'Johore, Malaysia', 'We''re done.We''re officially over! \nThanks for being with me for 11 months plus. 080411 - 150312.'), (11939, 2555, 'Johor Bahru, Johore', 'I feel like making a cover, but I''m scared of being criticize ):'), (11940, 2653, 'Plentong, Johor Bahru', '@WhatMiss ok , aq mcm percaya tak percaya . :)'), (11941, 1951, 'Johor Bahru, Johore', 'I''m willing to take it seriously..'), (11942, 363, 'Johor Bahru, Johore', 'Borrow stuffs from me still so picky. Stfu go get your own luh'), (11943, 657, 'Johore, Malaysia', '@hahazaahir hahaha..tapi banci lagi power kena tahan maki..hahaha'), (11944, 3016, 'Johor Bahru, Johore', 'Money money'), (11945, 2377, 'Johor Bahru, Johore', 'Swimming suit... Hmmm...'), (11946, 1572, 'Johor Bahru, Johore', '@nikiakila @syfqsyzwn so Syafiq, would like to follow me to LBL tomorrow?'), (11947, 2460, 'Johore, Malaysia', 'My 3g sucks !!!!'), (11948, 2986, 'Singapore', 'The first thing I asked my mum when I reach home was ''Ibu, tomorrow go where ?'' Hahaha. I just reach home and want to go out again.'), (11949, 216, 'Malaysia', '@Fu_heartless หายยยยย'), (11950, 2923, 'Singapore', 'I AM BEAUTIFURRRRRR IN EVERY SINGLE WAY!'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (11951, 1247, 'Johor Bahru, Johore', 'Tinkie &amp; dinkie are my left &amp; right boobs name , HAHAHA!'), (11952, 150, 'Johor Bahru, Johore', '^.^ @PiercingsnTats http://t.co/ehLX1xUY'), (11953, 300, 'Johor Bahru, Johore', '@rrraihan oh, then don''t goooooo :D'), (11954, 1659, 'Johor Bahru, Johore', '“@iamnelsonDM_: @bryskired lol ☺”hehe soon enough'), (11955, 1749, 'Johor Bahru, Johore', 'I''m at Asssssruuul Criib Lah!! (Bukit Gombak) http://t.co/dYnRSMpN'), (11956, 2555, 'Johor Bahru, Johore', '@YiJieRilakkuma @bjiayi Kay. *Sian*\nTimetable still the same, damm it'), (11957, 13, 'Singapore', '@bambiswag oh man :''''''''''''''''''''''''('), (11958, 817, 'Johor Bahru, Johore', '@Iamhuiqi cum find mi at work..? Haha..!!'), (11959, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @AhmadZafran surau laaaaaa'), (11960, 585, 'Johore, Malaysia', 'Some people became prettier .while i''m here rotting as usual'), (11961, 791, 'Johore, Malaysia', 'Chapter 1'), (11962, 2961, 'Johore, Malaysia', 'i want thisssssssssssssssssss &lt;3-&lt;3 http://t.co/9ySyPpuo'), (11963, 941, 'Johor Bahru, Johore', 'Seumpama..... RAMA-RAMA . :3'), (11964, 94, 'Johore, Malaysia', '@sjborn2play crazy kayaker~'), (11965, 21, 'Johor Bahru, Johore', 'Kalau bob luqman bole hijrah... Aku....'), (11966, 3017, 'Johor Bahru, Johore', 'Tired@ (@ 83 Westwood Avenue) http://t.co/BisECBm3'), (11967, 460, 'Johore, Malaysia', '“@seety_: The love I have for you, it''s indescribable.”'), (11968, 1889, 'Johore, Malaysia', '@ChewHuiJunior Uno Nubero?'), (11969, 1686, 'Johore, Malaysia', 'Dan dah pandai pakai baju topman! hahahahaa'), (11970, 3018, 'Johor Bahru, Johore', 'I''m at Choa Chu Kang Bus Interchange (Singapore) http://t.co/WbHfHXQ5'), (11971, 2365, 'Indonesia', '#7AraStayTogether @pjy1234 @taraeunjung1212 @sohotmelody @QriPretty @RHY422 @b89530 @BoRam_0322 82'), (11972, 3015, 'Johore, Malaysia', 'I want to restart my life.'), (11973, 141, 'Johor Bahru, Johore', 'Eating caramel bar from Max''s &lt;3'), (11974, 1060, 'Johore, Malaysia', '#myfavouriteband - A Day to Remember @WhereisADTR'), (11975, 1847, 'Plentong, Johor Bahru', '@Dkamilaa kau rabbit ape tahu?'), (11976, 3, 'Johor Bahru, Johore', '@Rachel_Kimchia Yepp!'), (11977, 585, 'Kota Tinggi, Johore', 'Slept so much now I can''t sleep'), (11978, 2990, 'Johore, Malaysia', 'Meeting friends! (@ The Merlion w/ 3 others) http://t.co/aFUeBoTB'), (11979, 3019, 'Johor Bahru, Johore', 'Nom! @tiffypuff @garynkh (@ Xin Wang Hong Kong Cafe) http://t.co/fK7fKUFo'), (11980, 2118, 'Singapore', '@MuhdFirman @chindixlovegood @isabentonn ok what... @ADIaiyad as a host. pahala kasi comment yg bernas for them to learn and improve'), (11981, 1008, 'Johore, Malaysia', 'I''m at 703 West Coast Road http://t.co/EXjZZnUp'), (11982, 907, 'Johore, Malaysia', 'I''m at That House Names Thomas (Singapore, Singapore) http://t.co/ErQuCQ89'), (11983, 968, 'Johore, Malaysia', 'With Orni :3 (@ Blk 426 Clementi Ave 3) http://t.co/vHWCTmXF'), (11984, 2986, 'Singapore', '@fizRedstic Hahaha tapi ade reply jugak ah.'), (11985, 791, 'Johore, Malaysia', 'RT“@Neelieoh: “@seety_: The love I have for you, it''s indescribable.””'), (11986, 698, 'Johore, Malaysia', 'Just showered ~ (@ Hengshimin ''s Crib ❥) http://t.co/llfZa1kb'), (11987, 2927, 'Johore, Malaysia', 'What happen??'), (11988, 2850, 'Johor Bahru, Johore', 'RT @iwasbrittehney: I really need a getaway.'), (11989, 2231, 'Johore, Malaysia', 'Oops the drinks are going up my head .'), (11990, 771, 'Johore, Malaysia', '@InsyirahKellner Okay baby :)'), (11991, 2503, 'Johor Bahru, Johore', '@luvshow4ever 來不及~我的毛病比你多啊~><'), (11992, 2832, 'Singapore', '@septemberoute @huiqi_1996 she will scream her i think? hehe:P'), (11993, 1102, 'Plentong, Johor Bahru', 'I''m at Plaza Seni Jb http://t.co/4j67vorI'), (11994, 3020, 'Johor Bahru, Johore', 'I''m at Yong Soon Pte Ltd Foodpark http://t.co/SMSptYAc'), (11995, 3021, 'Johore, Malaysia', '@bdamasoiii lol talagang kay @dyansky napatingin eh noh'), (11996, 1686, 'Johore, Malaysia', '@YAHUIEM zzzz. forever lah you and remember. not step cute. already cute. ;pppp'), (11997, 1847, 'Plentong, Johor Bahru', '@fyeahitsmeisan hahahah'), (11998, 244, 'Johor Bahru, Johore', '@melvinryantan how do I get from airport to city area for London? Is there a bus to take'), (11999, 1028, 'Johore, Malaysia', 'At Holland Village MRT Station (CC21) — http://t.co/Ji93C3kk'), (12000, 117, 'Johore, Malaysia', '@zomgitsnawar go town aloneeee'), (12001, 1791, 'Johor Bahru, Johore', 'Yay ! @_kissmyyyass says we''re cute . Hahahah &gt;&lt; .'), (12002, 2934, 'Johor Bahru, Johore', '@Berenicetok nt sure :( circle then a strap? inside write p....'), (12003, 3015, 'Johore, Malaysia', 'I want to refresh my mind.\nI want to delete all my problems.'), (12004, 544, 'Johor Bahru, Johore', 'Dropped my phone twice today.'), (12005, 1196, 'Johor Bahru, Johore', 'Bini lu kasii terong adja bay.. Wkwkwkwk..RT @bachryans: kasian istri gua nanti hahah RT @Kingnugraha Kga bsa ngongke, mati lu..'), (12006, 1610, 'Johor Bahru, Johore', 'Cough medicine taken! Few mins off to sleep..Yan is otw to work now.. &amp; tmr is his 2nd interview. Insyallah.. I pray e best for my man &lt;3'), (12007, 772, 'Johor Bahru, Johore', 'Aiyoo... I missed today Episode lah... “@wallawaniey: Nasib la adikku inform Pelangi Kasih ditukar ke jam 9.30 td. Sy sempat tgk. Woot'), (12008, 363, 'Johor Bahru, Johore', 'Come on luh. It''s just a movie. You''re preparing for it as if it''s a grand ball.'), (12009, 2118, 'Singapore', '@TURTL3NECK ''s brother Rasul is one hell of the dancer. Super good'), (12010, 585, 'Kota Tinggi, Johore', 'The internet connection in my room sucks'), (12011, 3022, 'Plentong, Johor Bahru', 'I''m at Jet''s Bedroom http://t.co/SDsiv2Df'), (12012, 2603, 'Plentong, Johor Bahru', '@ienaa Nak jugak? Boleh boleh :) Marilah sama sama kita peluk. Tapi lain lain eh Hahhaha xD'), (12013, 399, 'Johor Bahru, Johore', '@Jieshiii @pinkshortcake_ omg u two are scary'), (12014, 2018, 'Johor Bahru, Johore', '@AhmadMurtadha @aminayub @izzoth haha! I need to maintain la!! Eh I can only take leave after my 3rd mth in stn :('), (12015, 3023, 'Johore, Malaysia', '"Life is too short to wake up in the morning with regrets. So, love the people who treat you right and forget about the ones who do not. -❤"'), (12016, 314, 'Johor Bahru, Johore', 'Giving in,i just took the first step.'), (12017, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @AhmadZafran ohh!! aq lupa korang nk solat jumaat esok!! seriously doh'), (12018, 1060, 'Johore, Malaysia', '#myfavouritelocalband - ohchentaku @xohchentakux'), (12019, 517, 'Johor Bahru, Johore', '@LULUcheesetofu pretty eh'), (12020, 2989, 'Johore, Malaysia', '@lerzhiheng yea same ;)'), (12021, 768, 'Johor Bahru, Johore', '@Kristoff0428 maybe there is! Ang nice ng form e! nways,still superb art!'), (12022, 40, 'Johor Bahru, Johore', '@SarahhhhLin if I can quote your tweet I can ah..'), (12023, 1380, 'Johore, Malaysia', 'I''m at On My Bed With Pillows &lt;3 http://t.co/8GZDPClf'), (12024, 2945, 'Plentong, Johor Bahru', '#PeopleIWantToMeet ----&gt; @adamlevine &lt;3'), (12025, 1645, 'Johore, Malaysia', 'Im happy when im riding but when come to injuries,it sucks;/'), (12026, 700, 'Johor Bahru, Johore', '@schafilschmeitz WHERE ARE YOU PLEASE TALK TO ME I NEED YOU AND IM SO SO SORRY :''('), (12027, 2994, 'Johore, Malaysia', 'S for Singaporeans? RT @Retwittings #S are facing a certain emotional crisis right now.'), (12028, 3024, 'Johore, Malaysia', 'Ok sleeping soon. (@ Homeeee ^.^ ) http://t.co/mg0U4QOB'), (12029, 1429, 'Kota Tinggi, Johore', 'Home (@ Jurong West Street 91 Blk 940) http://t.co/V9CnsnIQ'), (12030, 544, 'Johor Bahru, Johore', 'I pity my phone sia. I always like somehow "abused" it. &gt;&lt;'), (12031, 1716, 'Johore, Malaysia', '@Aummhigh &gt;&lt; mai ruuu wad u want to buy just buy 55'), (12032, 1190, 'Johor Bahru, Johore', '@Heart__Breaks Eh. Hi-5'), (12033, 3025, 'Johore, Malaysia', '@hoqirui done lol'), (12034, 2803, 'Malaysia', '@chanakarn_kook โว๊ะๆ 555 สะใจ'), (12035, 860, 'Johor Bahru, Johore', '@lellejo you irritating !'), (12036, 3026, 'Plentong, Johor Bahru', '#PeopleIWantToMeet za''ba =,='), (12037, 2231, 'Johore, Malaysia', 'Pls i cant have a hangover tmr'), (12038, 1645, 'Johore, Malaysia', 'No pain,no gain&lt;3'), (12039, 2994, 'Johore, Malaysia', 'RT @reshuloveschoco its so depressing when u walk into a shopping wall and u see smth super nice and u want to buy !!! but no money'), (12040, 449, 'Johor Bahru, Johore', '@thiveebeanie I miss you too baby :( routine to update you.. Hahaha'), (12041, 918, 'Johore, Malaysia', 'I''m at McDonald''s / McCafé (Singapore, Singapore) w/ 4 others http://t.co/sRbUd2Nq'), (12042, 2320, 'Johore, Malaysia', '@TheeHafiz wah good say! Also didn''t Knew U were into the art of live performances and concert! Keep it up bro!:)'), (12043, 1194, 'Malaysia', 'เห้อ หายใจเข้าลึกๆ หายใจออกยาวๆ - - #พยายาม'), (12044, 1904, 'Plentong, Johor Bahru', '#BestThingAboutBeingSingle You''re going to wait for someone'), (12045, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hihi. Ohh haa ok ok :) Cuti tak keluar ehh? Bukan Mama Madu dah bagi duit kew? Hahaha.'), (12046, 293, 'Johore, Malaysia', '@RahimiShahar we do tgt'), (12047, 791, 'Johore, Malaysia', '@jonlimjon @minlicous @anitaang wahahaha'), (12048, 2018, 'Johor Bahru, Johore', '@yuanjie_89 eh screw you la! Don''t have to rub it in right! Haha!'), (12049, 2013, 'Johor Bahru, Johore', '@nanallove haha you wanna work:)? I have a job next week actually for one whole week.'), (12050, 3027, 'Johor Bahru, Johore', 'Perfectly imbalanced!'), (12051, 1196, 'Johor Bahru, Johore', 'Si tata minta''y di gendong.. Jgnkan di gendong, di pangku jg mau taaaaaa.. Hahahaaaaa http://t.co/z8jxFefW'), (12052, 393, 'Plentong, Johor Bahru', 'Kasi ok ini sore (@ Suara O.K.) http://t.co/OrqDHNc4'), (12053, 803, 'Johor Bahru, Johore', 'I''m afraid .'), (12054, 72, 'Johor Bahru, Johore', '@xshirleylulu woah, so touching.'), (12055, 1108, 'Johore, Malaysia', 'Stop invading my life.'), (12056, 3028, 'Malaysia', 'ปวดตาาาาาา'), (12057, 3029, 'Johor Bahru, Johore', 'Home(: (@ HOMEEE! &lt;3) http://t.co/c1Ybz9nI'), (12058, 2076, 'Johor Bahru, Johore', 'Haiz i am so full rite now... How 2 sleep lol?!&gt;&lt;!'), (12059, 3030, 'Indonesia', 'Thu Mar 15 2012 14:31:35 GMT+0000 (UTC) - Modis Flood Map Server processed Tile: 120E010N Date: 2012-075'), (12060, 98, 'Johor Bahru, Johore', 'Sch ends at 1240 on mon?? But i have to see tpl''s face fr 45mins fr history shit. I hate history'), (12061, 1173, 'Plentong, Johor Bahru', '@khaicees haha tadi 3lebih dh balik Balik balik je collapse lol'), (12062, 25, 'Singapore', '@LIMLISHENGG @ian0396 HAHAHA DO IT! THEN HE SUFFER WITH US!'), (12063, 3031, 'Sekupang, Kota Batam', 'Going popular book fair tomorrow .'), (12064, 1847, 'Plentong, Johor Bahru', '#7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether'), (12065, 3032, 'Johor Bahru, Johore', 'No training want my life only ...'), (12066, 1060, 'Johore, Malaysia', '#np Have Faith in Me by @WhereisADTR . Motivational song pals'), (12067, 460, 'Johore, Malaysia', 'Eat/don''t eat?'), (12068, 2460, 'Johore, Malaysia', 'Aku type mcm compo ,kau reply aku one word . eh takpe aku suke .'), (12069, 13, 'Singapore', 'so good that they have to take notice.'), (12070, 3033, 'Johor Bahru, Johore', 'So fucking bored le !'), (12071, 1686, 'Johore, Malaysia', '@YAHUIEM grrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr! &gt;:('), (12072, 544, 'Johor Bahru, Johore', '不要呆在我看得到的地方,我不想看到你。'), (12073, 1177, 'Johor Bahru, Johore', '@marrymemarlysha @sherryfilauria yang si ayu and sherry jatuh like nangka busuk! Hehehehehe'), (12074, 2994, 'Johore, Malaysia', '@reshuloveschoco I have a worse problem. Buy on impulse, dont even touch it for a few years, find out it''s out of trend/too small. give away'), (12075, 791, 'Johore, Malaysia', '@jonlimjon http://t.co/q1HsdytY'), (12076, 1357, 'Johor Bahru, Johore', 'Vettai :)'), (12077, 2878, 'Johor Bahru, Johore', 'Abang is driving me peanuts with Ombak Rindu... Argh!!!!!!! #StopIt'), (12078, 3034, 'Johor Bahru, Johore', 'JUST SLACKING AT ZE LIVING ROOM LIKE A BOSS B) (@ Blk 926 Tampines ST 91) http://t.co/Me2faqm4'), (12079, 2118, 'Singapore', '@chickenzomba hi Muzainah'), (12080, 3035, 'Johor Bahru, Johore', 'I''m at Terminal 2 (Singapore, Singapore) w/ 11 others http://t.co/5GwohOQS'), (12081, 1847, 'Plentong, Johor Bahru', '@Dkamilaa kucing~'), (12082, 1769, 'Plentong, Johor Bahru', '@SyazrahHassims haha tahu tapee . pastu akak cakap syazrah hassims kan ? sekali fifien cakp mane mane ? akak cakp laa yang jerit tadi .'), (12083, 3, 'Johor Bahru, Johore', '@Rachel_Kimchia Yeap! Timeless love songs all so nice!'), (12084, 700, 'Johor Bahru, Johore', 'Take baby pram RT @Hariboboii: Suffering to walk , pain sia my leg :( .,'), (12085, 2961, 'Johore, Malaysia', 'with haidel at car ^^v http://t.co/PPkHksod'), (12086, 2948, 'Johor Bahru, Johore', 'I''m at KFC (Singapore, Singapore) http://t.co/tUVZ9esT'), (12087, 117, 'Johore, Malaysia', 'Everytime you wrap your hand around my fingers , how i''d put a smile on my heart.'), (12088, 310, 'Kota Tinggi, Johore', 'I''m at Ryan &amp; Wyne''s Crib @ Blk. 668D Jurong West St. 64 http://t.co/2PIuoNUU'), (12089, 2989, 'Johore, Malaysia', 'Need to keep on practicing!!!!!'), (12090, 1240, 'Singapore', 'dear boys. for saturday''s rowing session, be on time. i want to take you guys somewhere nice. /cc @mhmdlff @terrryterence @wesleyahpeh'), (12091, 1247, 'Johor Bahru, Johore', 'Sometimes I like em arrogant guys .'), (12092, 1266, 'Johore, Malaysia', '@assortedbacon @choonhockbleh @likuhhein EUGENE SONG BO! http://t.co/lFhRXmEs'), (12093, 25, 'Singapore', '2K12 now! Gonna complete my player mode!'), (12094, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz awwwwh :b'), (12095, 2017, 'Johor Bahru, Johore', 'tunjuk luhh advertisement projek skrip !!'), (12096, 141, 'Johor Bahru, Johore', '@xtianbautista hi kuya Favorite/crush k ng bestfriend q since elem.. Ur pretty known in Singapore.. Hehe i have a mag here w/ur pic #singtel'), (12097, 2832, 'Singapore', '@septemberoute @huiqi_1996 oh, i mean here on twitter. sorry!'), (12098, 3036, 'Johore, Malaysia', '@jamsoawesome @chef_nursejehsa @tjaykun ang bango dito shet. Fresh na fresh!'), (12099, 704, 'Johor Bahru, Johore', 'I''m at Serangoon Garden Estate (Singapore) http://t.co/nwcQ8z8m'), (12100, 3037, 'Johor Bahru, Johore', 'I''m at Al Aqsha Restaurant (Singapore, Singapore) http://t.co/KzNb5QDI'), (12101, 852, 'Johor Bahru, Johore', '@ITotKnow Ehhhhh. That time is who break ahhhhh??'), (12102, 628, 'Johor Bahru, Johore', 'I''m at Jun''s Crib http://t.co/MttYigIo'), (12103, 1247, 'Johor Bahru, Johore', '@JfPunk yeah ! Hahaha'), (12104, 544, 'Johor Bahru, Johore', '@Sh0rtermemories yeah, Haha. Only younger and older version.'), (12105, 2456, 'Johore, Malaysia', 'Why no one?! @niliaaa @needalilfaith @SupremeSebas (@ Rebel Boutique Club w/ 2 others) http://t.co/cqlw44he'), (12106, 244, 'Johor Bahru, Johore', '@melvinryantan okok thx for e info!'), (12107, 2706, 'Kota Tinggi, Johore', 'Gotta get a mobile broadband soon!'), (12108, 983, 'Singapore', 'Reading all the parliamentary debates... :D'), (12109, 3015, 'Johore, Malaysia', '“ No matter how much you hurt them, the people who are still with you at the end of the day, those are the one''s worth keeping.”'), (12110, 2832, 'Singapore', '@septemberoute WHY?'), (12111, 1247, 'Johor Bahru, Johore', '@Shinishona Hahahahah ! Yeahhh!'), (12112, 1593, 'Plentong, Johor Bahru', 'SwiftKey X has saved me 10,000 keystrokes! Check it out at http://t.co/nrTWfXzI ---&gt; Untungla switfkey nak safekan. Tengs. hahaha'), (12113, 890, 'Malaysia', '@Nnamfhhh 555^^ก็นั่นละ ฝันดีนา'), (12114, 2994, 'Johore, Malaysia', 'RT @Retwittings Retweet if you will turn very quiet when you''re upset.'), (12115, 182, 'Johor Bahru, Johore', 'I still cannot believe tat she still have a crush on me..'), (12116, 1716, 'Johore, Malaysia', '@Aummhigh S&amp;P'), (12117, 2732, 'Johore, Malaysia', 'BOOMSHAKALAKA'), (12118, 3038, 'Johore, Malaysia', 'Good evening everyone... Woohhhh!'), (12119, 1735, 'Johor Bahru, Johore', '@faithade For?? Text me. :)'), (12120, 890, 'Malaysia', '@TangMoaloha ไม่รู้ดิอทิบายไม่ถูก'), (12121, 3015, 'Johore, Malaysia', '“@GirlAdvices: Never lie to someone who trusts you, and never trust someone who lies to you.”'), (12122, 2285, 'Johore, Malaysia', 'I''m at Rebel Boutique Club w/ @supremesebas @rjellybeano http://t.co/GF81rDqi'), (12123, 3039, 'Johor Bahru, Johore', '#SayaTakBiasa hidup tanpe sarah my baby girl tapi tapi :('), (12124, 98, 'Johor Bahru, Johore', '@Holy_Papa bcos.... Monday i nvr come hahah'), (12125, 2574, 'Riau, Indonesia', '@olfaresha kenangan yang manaaa??? hahhaah'), (12126, 685, 'Singapore', '@mggykills hindi yata umaabot ang tweet ko sa pinas :(( goodnight miggy mag-goodmorning ka nalang sakin mamaya pag nabasa mo,can ? :))'), (12127, 2979, 'Johore, Malaysia', 'Wtf i looked back my pastwhatsapp status most of them is abt ilovemoney LOL. I''m crazy over money during Dec holiday LOL'), (12128, 2939, 'Johor Bahru, Johore', '@AJBrenix ahakz! alanganin man pud mouli ko wui pra kita ta unta, mahal na ang airticket bsta less than 1 month nalang'), (12129, 1816, 'Johore, Malaysia', '@KarmahnT wanna meet at Eastwood for lunch? If cant, its okay :) I don''t wanna trouble y''all'), (12130, 53, 'Johor Bahru, Johore', '@hy_eming ._. okay ?'), (12131, 3040, 'Malaysia', 'Pebe time . LoL (@ my bedfvckinroom) http://t.co/5E5CT3Ox'), (12132, 2861, 'Johore, Malaysia', 'I''m at Jurong East MRT Interchange (NS1/EW24) (Singapore, Singapore) w/ 3 others http://t.co/1ugOaIMw'), (12133, 1889, 'Kota Tinggi, Johore', '@peiyjinggg omg this tweet is infectious somehow also want to laugh after readg it but bcos i m in d train i just smiled to myself'), (12134, 25, 'Singapore', '@LIMLISHENGG @ian0396 wah! siaoliao!'), (12135, 1465, 'Johore, Malaysia', '@StarsandDusts_ @aliciamutheardy really ah? I forgot alr. HAHA. :('), (12136, 1686, 'Johore, Malaysia', '@YAHUIEM zzz. oka. whatever. up to to youuu. hahahaa'), (12137, 716, 'Singapore', '@JaylonJiAn @yongjiannn hahha, hopefully i caaan!~ Youuu too!'), (12138, 12, 'Johore, Malaysia', 'B1A4 poor thing. With strong group. Slry comeback at the wrong time. :('), (12139, 1950, 'Johore, Malaysia', '@dreamh_igh Why? you saw somethings? :D'), (12140, 138, 'Johor Bahru, Johore', '@jaehun_brows I dont dare leave my room. Outside my room so dark eeks'), (12141, 3041, 'Johor Bahru, Johore', '“@MentionTo: #MentionTo your friend who TALKS SO LOUD.” @MengFxdedScrmz'), (12142, 1102, 'Plentong, Johor Bahru', 'Byk brg baekk..ngeh3.. (@ Pasar Karat (Bazar JB) w/ 7 others) http://t.co/6mdTtnhd'), (12143, 2961, 'Johore, Malaysia', 'http://t.co/2KKdXUUw'), (12144, 2979, 'Johore, Malaysia', '@YANNNI_ rlly meh ?! i tot cheaper and bigger portion ?!'), (12145, 2967, 'Plentong, Johor Bahru', '@theJimidz haaaa jgn takutkan fahmi :( scary lah ili ni...'), (12146, 3042, 'Johore, Malaysia', '@the_mace wow, so much bad advice in a single article.'), (12147, 1865, 'Indonesia', 'aku nya sleeping beauty dulu yah :) dadah'), (12148, 2980, 'Riau, Indonesia', 'bukan nya lupa kawand lama :(\ntapii ga bisa :(\nkalo bisa jg aq pasti ikut! \nmalah aq berharap masih bisa sama kalian lagii :''( ♥IBSI :''('), (12149, 768, 'Johor Bahru, Johore', '@itsCahWen hellooow! May #TFC kami! Lels! Walang hanggan Lang ang wait namin! Haha'), (12150, 1816, 'Johore, Malaysia', '@zaikiawayne @bbobbstar @qracexdd sup people. I shall interrupt your conversation. \nHi.'), (12151, 2850, 'Johor Bahru, Johore', '@JadeRoseaholic next time if you Chance upon the pastel blue packaging one get it!!!!!!'), (12152, 4, 'Johor Bahru, Johore', '@KEN_CHK ya lo! 3 days never sleep well'), (12153, 141, 'Johor Bahru, Johore', '@xpichapay haha kaadict no? Aq unte lng.. Ung nuts sumasabit sa bakal haha'), (12154, 2603, 'Plentong, Johor Bahru', '@ShukriHani Ohh untungLOL Hhahaa. Haa kita? duduk di kediaman yang sunyi lagi besar ini. Hahahha.'), (12155, 790, 'Johor Bahru, Johore', 'I need a holiday.. A get away.'), (12156, 941, 'Johor Bahru, Johore', 'Pecit kaki nenek and story telling . :3'), (12157, 3043, 'Johore, Malaysia', 'Whooop. Not again -__- (@ Suntec Singapore International Convention &amp; Exhibition Centre) http://t.co/rDJhLQ8P'), (12158, 1201, 'Singapore', 'I''m off to bed now...aiiish =__='), (12159, 3044, 'Johore, Malaysia', 'dying ._.'), (12160, 2867, 'Malaysia', '"ความเหงา" ก็เหมือนกับ "เงา" อยู่กับตัวเรา "ตลอดเวลา" \n\nแต่มันจะ "แสดงตัว" ออกมา ใน "บางเวลา" เท่านั้นเอง'), (12161, 3045, 'Johore, Malaysia', 'Incredible performance tonight by @Tyondai Braxton at the Mosaic festival (@ MOSAIC Music Festival) http://t.co/lXhmdRGt'), (12162, 2972, 'Plentong, Johor Bahru', '@tskama sape yg langgar cermin'), (12163, 1196, 'Johor Bahru, Johore', 'Klo ngga, kasii gue adja.. Biar gue yg nafkahin.. Wkwkwkwkwk RT @bachryans: waah nafkah batin doi (cont) http://t.co/tGqrIvcm'), (12164, 3046, 'Plentong, Johor Bahru', 'mana laa si uda niii (@ ©Larkin Sentral©) http://t.co/wfcvUbYu'), (12165, 693, 'Plentong, Johor Bahru', 'I''m at titiwangsa apartment jalan padi malinja 1 (Johor Bahru, Johor) http://t.co/9nW5C1jk'), (12166, 494, 'Johor Bahru, Johore', 'Maintain ah korg ehk'), (12167, 1812, 'Johor Bahru, Johore', '@Cuifuhere U go where sia???'), (12168, 2503, 'Johor Bahru, Johore', '@luvshow4ever 哈哈!我想找妳們一起練,至少可以看出毛病!最近沒空,要趕教案!'), (12169, 803, 'Johor Bahru, Johore', '22th is coming , like I''m not frightened ..?'), (12170, 117, 'Johore, Malaysia', '@p1xiedust @ohmysofiaa @effdorn @burntmittens sorry i made plans like weeks befroe already for tomorrow :( So sorryyyy , sat :D?'), (12171, 2182, 'Johor Bahru, Johore', 'RT@Fira00hFira: Agree :-/: Android phone have worst battery life than iphone #Facts"'), (12172, 3001, 'Plentong, Johor Bahru', '@belleainie yeah...mmg pemalas huhuhu'), (12173, 3047, 'Pulai, Johor Bahru', '@nsazha nape teaa??? ye laaa. u kn damnn expensiveee. mana nak have dinner with low life mcm i. haha rupe pn tkde'), (12174, 53, 'Johor Bahru, Johore', '@KHRJason_99 @BlingerQianRu hahha.'), (12175, 3, 'Johor Bahru, Johore', '@Xubin_ @aloypang 8am... WUAHH. Sleeping like a pig&gt;&lt;'), (12176, 2118, 'Singapore', '@TURTL3NECK cakap kat dia, jgn humble pie, confident'), (12177, 117, 'Johore, Malaysia', '@burntmittens there''s school tomororw'), (12178, 2413, 'Johor Bahru, Johore', 'Now at bus stop waiting...'), (12179, 2603, 'Plentong, Johor Bahru', '@ienaa Hihihihihihi xD *kenyit mata*'), (12180, 544, 'Johor Bahru, Johore', 'Bro showed me his galaxy s2 and I''m like you wanna gimme ma. Then he on his flash. -.-"'), (12181, 2460, 'Johore, Malaysia', 'Kan da agak da kau takboleh terime (:'), (12182, 2867, 'Malaysia', 'อดีต !! เคยเป็น "คนสำคัญ"..\n\nปัจจุบัน !! กลายเป็น "คนที่เธอไม่สนใจ"..!#!~*'), (12183, 82, 'Malaysia', '@Namhompuc ไม่รู้ดิ แกไปป้ะล่ะ ลองถามพวกนู่นดู'), (12184, 1847, 'Plentong, Johor Bahru', '@Dkamilaa @4ppleGreen smelly princess... *seems legit'), (12185, 3048, 'Johor Bahru, Johore', '✨home sweet home✨ (@ Blk 109 Tamps St 11) http://t.co/9UYg8oBh'), (12186, 1686, 'Johore, Malaysia', '@YAHUIEM sooooo. how''s life sitting in front wiithout me huh? hehehee'), (12187, 173, 'Johore, Malaysia', '@dfrdz eh bro how was your match against HCI?'), (12188, 2574, 'Riau, Indonesia', 'uhuuyyy,, teeeeeeeeemmm :D @kaniaamaliaa @zordiey'), (12189, 2989, 'Johore, Malaysia', 'Sometimes I really think that kpop songs are not bad, brings up the mood.'), (12190, 2832, 'Singapore', '#1YearAgo I am still having FUN during the March holidays and now... Sigh...'), (12191, 2638, 'Johor Bahru, Johore', '@Insane_Phuture cause you must be good boy.'), (12192, 1993, 'Kota Tinggi, Johore', 'Cant wait! RT @sfinee: The Sherlock highlight medley will be the first-ever official preview of (cont) http://t.co/XspaXX1X'), (12193, 186, 'Johore, Malaysia', 'Damn this, damn you.'), (12194, 1686, 'Johore, Malaysia', '@AchyqSanSan asl????'), (12195, 1319, 'Malaysia', 'I''m at PI WATER (Hatyai, Songkhla) http://t.co/G3WKK9gh'), (12196, 244, 'Johor Bahru, Johore', '@jacseng @melvinryantan thx for e info! I havnt done any research yet but I think I will hav more qns to ask after doing research!'), (12197, 2979, 'Johore, Malaysia', 'Ss workshop test tml !! 830-1230 :('), (12198, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz wa! U liddat lor :( abandon me :('), (12199, 3049, 'Johore, Malaysia', 'Otw back home for class... Hungry:(( wanted macdonalds! But..On a 2nd thought my colleagues said I have lost a lil weight.So I''ll preservere'), (12200, 2867, 'Malaysia', 'บันทึกชื่อเทอไว้ใน "บัญชีดำ" \n\nบันทึก "ความระยำ" ของเทอไว้ในความรู้สึก!'), (12201, 941, 'Johor Bahru, Johore', 'Nenek gimme $20 for massaging her leg for 5 min . Yay me . :3'), (12202, 216, 'Malaysia', 'แม้วันนี้เธอจะไม่เห็นมัน แต่ผมเชื่อว่าเวลาจะพิสูจน์ ใจ-.,-'), (12203, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @spartanZ9774 #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether #7araStayTogether'), (12204, 2550, 'Johor Bahru, Johore', 'Buy daddy dinner. (@ Punggol Plaza) http://t.co/x8wkU4YU'), (12205, 1791, 'Johor Bahru, Johore', 'Don''t angry alr la wthhhhhhh . I say sorry alr leh ):'), (12206, 365, 'Johor Bahru, Johore', 'If u ppl wan me to stay n not being shorthanded den u better treat me right n not treating me bullyin me like shit.'), (12207, 2418, 'Johor Bahru, Johore', 'lol! why?“@Lindamaingoc: Sunrise, plz dont come too soon”'), (12208, 3049, 'Johore, Malaysia', 'I''ll make oats at home instead:))'), (12209, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini oraittt..selasa ni aku turun kol 6..segan la nak jog sorg2..huhu'), (12210, 117, 'Johore, Malaysia', 'I want to know that i made an impact in your life.'), (12211, 1791, 'Johor Bahru, Johore', 'REPLY ME OMG ):'), (12212, 2460, 'Johore, Malaysia', 'I hate vomiting :/'), (12213, 1847, 'Plentong, Johor Bahru', '@Dkamilaa nananana'), (12214, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 hahax misti salah mkn tadi... Lol'), (12215, 1716, 'Johore, Malaysia', '@Aummhigh no aow Thai snack. I don''t like cookies 55'), (12216, 2927, 'Johore, Malaysia', 'What the..... For the 5 times still the same'), (12217, 72, 'Johor Bahru, Johore', 'I actually got worried.'), (12218, 3050, 'Johore, Malaysia', '@ShabranJovi nak gi sentosa tak ajak!'), (12219, 2603, 'Plentong, Johor Bahru', '#PeopleIWantToMeet Too Maduku Montel Hahhaha. Ehh Madu je nama dia. Jgn pikir Madu lain -.-'), (12220, 82, 'Malaysia', 'แค่คำว่าอภัย ทำไมชั้นจะให้เธอไม่ได้'), (12221, 544, 'Johor Bahru, Johore', 'Tomorrow secondary school students will be saying "Oh No, it''s Friday tomorrow, noooooo, school again soon!"'), (12222, 2437, 'Johore, Malaysia', '#BestThingAboutBeingSingle You get to go crazy over these five guys. http://t.co/xXjtnpXe'), (12223, 2642, 'Plentong, Johor Bahru', '@MrFzul Well :D'), (12224, 1889, 'Johore, Malaysia', '@ChewHuiJunior something like dat. but i think its Italian not Latin'), (12225, 2832, 'Singapore', '@septemberoute WA, so good go USS!!!! YAYAYA&lt; IKR!!!!!!!!! So happy!!!!!!!'), (12226, 2867, 'Malaysia', 'บางครั้ง !! ก็กลัวว่า &gt; วันพรุ่งนี้.. "คนบางคน" จะเปลี่ยนไป..!#!~°'), (12227, 1194, 'Malaysia', 'กู เพลีย ค่ะ'), (12228, 1769, 'Plentong, Johor Bahru', '@NurhanaNadzirah nurhana nadzirah :)'), (12229, 3051, 'Johore, Malaysia', 'Ready, set, go! KL weekend here I go! (at Gold Coast Condo) [pic] — http://t.co/exouvF0q'), (12230, 2758, 'Johore, Malaysia', 'listening to 98.7 Fm and they say theres a doggie show.LOL!'), (12231, 141, 'Johor Bahru, Johore', '@AspirantSG hav u tried milk tea? Im a lover!! #milktea #tea'), (12232, 3052, 'Johor Bahru, Johore', '"jgn lupe,kau gi pegi casino,kau sebut name man toyol mesti kau menang"hahahahha'), (12233, 182, 'Johor Bahru, Johore', 'Wat to do? Wat to do? wat to do?!!'), (12234, 3015, 'Johore, Malaysia', '“@GirlAdvices: The worst thing you can do is fall for someone who will never love you the way you deserve to be loved.”'), (12235, 2803, 'Malaysia', '@chanakarn_kook ไอ่สั้นนน'), (12236, 365, 'Johor Bahru, Johore', 'I can leave whenever i want to better treat me right SSN'), (12237, 2900, 'Plentong, Johor Bahru', '#BestThingAboutBeingSingle dapat kurangkan dosa..'), (12238, 2407, 'Plentong, Johor Bahru', '@admiralhafiz @gadishanim wahhh..terus respond..terbaik la..=P'), (12239, 2642, 'Plentong, Johor Bahru', '@AfiqKary Haha betul ahh .'), (12240, 2460, 'Johore, Malaysia', 'What to do the smell of the liquid too strong sia . Grrr'), (12241, 1791, 'Johor Bahru, Johore', '@gabrielle_er NO LA SIAO I DONT HAVE LOL .'), (12242, 2867, 'Malaysia', '"ความเหงา" ไม่เคยทุเลาลง... มันยังคงหนักขึ้นทุกนาที'), (12243, 907, 'Johore, Malaysia', 'I''m at Hogwarts School Or Witchcraft And Wizardry http://t.co/lu5VZYG2'), (12244, 1950, 'Johore, Malaysia', '@dreamh_igh Oh... i thought you know you saw *somethings*'), (12245, 1937, 'Johore, Malaysia', 'ガンバレ~ “@tamazawarui: 一幕ダン。二幕で女性ひたすら頑張ってるナウ。疲れた。疲れた。疲れたっす。”'), (12246, 3053, 'Johor Bahru, Johore', '10hours more .... :( no food and drinks from 12am onwards until after surgery'), (12247, 3054, 'Johor Bahru, Johore', 'Perot macam nak meletop ah! Very full!! Burpppppp'), (12248, 2638, 'Johor Bahru, Johore', '@B0RN2D1E forgiven (;'), (12249, 3055, 'Johor Bahru, Johore', 'She doesn''t know anything and I get the blame for everything ? Fuck this shit .'), (12250, 3056, 'Kota Tinggi, Johore', 'I''m at Benjamin''s Home :) (Singapore) http://t.co/lBo2rJJy'), (12251, 544, 'Johor Bahru, Johore', 'And ite students will say "yessssssss, Friday already, three weeks holidays are here!"'), (12252, 98, 'Johor Bahru, Johore', '@Holy_Papa bt got go thru slides!!!'), (12253, 2967, 'Plentong, Johor Bahru', '@theJimidz haaa ili dress up biasa je..colour putih lagilah...nnt tegur2 ehh..'), (12254, 2252, 'Johor Bahru, Johore', '@yanahijannah dduk uma diam2'), (12255, 3057, 'Pulai, Johor Bahru', '@AfeeqaHazwani - awak minum? Ish..tak payah minum...kita byr air yg mrosakkn bdan sndiri nk buat apa. Tinggalkn &amp; tegur scara bhemah.'), (12256, 3058, 'Johor Bahru, Johore', 'I would love to try peanut butter shot... Lol..'), (12257, 2372, 'Johor Bahru, Johore', 'Wouldn''t it be nice if we were older,then we wouldn''t have to wait so long.'), (12258, 3059, 'Plentong, Johor Bahru', 'TV2 cerite best'), (12259, 82, 'Malaysia', 'ตอนนี้คลั่งทั้ง @Boy_Pakorn @hanongh @camelllllll #หนูผิดไหม TOT'), (12260, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 dah mkn obat?'), (12261, 1635, 'Malaysia', '@PuyZooZa__Za จ้ะจ้ะ .'), (12262, 3060, 'Johor Bahru, Johore', 'I''m at'), (12263, 2846, 'Singapore', '@HXluvS ya lor ! :(('), (12264, 189, 'Johore, Malaysia', 'I''m at ASJ BUS 17  http://t.co/HYV79Mfd'), (12265, 700, 'Johor Bahru, Johore', 'Kak Marina on Suria'), (12266, 1752, 'Johore, Malaysia', 'I''m at home sweet home Blk12 Eunos http://t.co/7sRCu5Y3'), (12267, 2878, 'Johor Bahru, Johore', '@FoudreRouge @syazfeera Ketawe takpe jgn stim kodok igt abg misai hitler... Lolx'), (12268, 1115, 'Johor Bahru, Johore', '@YIPPIE_ @PigletLim_WJ waa yours all so fast!! Weijie shirt leh? :)'), (12269, 2503, 'Johor Bahru, Johore', '@luvshow4ever 對lo~煩惱!!'), (12270, 2989, 'Johore, Malaysia', 'Okay I feel like shitting now.'), (12271, 2748, 'Johore, Malaysia', 'If you were thinking about someone while reading this, you''re definitely\nin Love.'), (12272, 1541, 'Johore, Malaysia', '#7AraStayTogether ! Boram!'), (12273, 2638, 'Johor Bahru, Johore', '@Insane_Phuture no. You still thinking whether to go tml.'), (12274, 1247, 'Johor Bahru, Johore', '@S3R1zawa goodnight (: rest well(:'), (12275, 3061, 'Johor Bahru, Johore', 'Having my late dinner! Nomnomnom.'), (12276, 1815, 'Johor Bahru, Johore', '@baconstripperss @assortedbacon LOL fun ma insert tgt'), (12277, 1185, 'Johor Bahru, Johore', '“@_jeremyroy: "ganda nung drawing niya ah siguro naka ipad yan" LOL @mariajeanina” #drawsomething'), (12278, 460, 'Johore, Malaysia', 'Strong from the outside but crying inside.'), (12279, 138, 'Johor Bahru, Johore', 'RT @forevershufflin: Wow. Fantastic baby.'), (12280, 1815, 'Johor Bahru, Johore', '@assortedbacon I watch Kelly?'), (12281, 3015, 'Johore, Malaysia', '“@autocorrects: Do you ever sit in class, look at people, and think about how disappointed their parents must be?”'), (12282, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa takpe its okay . Tired sgt2 :) . Hehe ! You bathe already ?'), (12283, 1812, 'Johor Bahru, Johore', 'I''m getting bored at home...Why can''t I have a girl who can entertain me in a positive way, Why Why???'), (12284, 1815, 'Johor Bahru, Johore', '@assortedbacon jelly?'), (12285, 2653, 'Plentong, Johor Bahru', '@WhatMiss hahahaa , aq dah agk dah , kau ingt aq tegak lh ea ? aq just buat2 tegak je wei , hahaha aq tak tegak mcm tiang lampu k'), (12286, 700, 'Johor Bahru, Johore', 'Hahahaha yeah true :D RT @Hariboboii: @afiqahyamin Tat is oni if I can fit in it ! &gt;&lt;'), (12287, 2960, 'Johore, Malaysia', '@iamCullen17 sobrang ganda ng Transformers!'), (12288, 897, 'Johore, Malaysia', '@Blehtan CRAZY! I speak Chinese at home okay!'), (12289, 2460, 'Johore, Malaysia', 'Aku period kau yg moody hahaha cute pe ?'), (12290, 1791, 'Johor Bahru, Johore', 'Hahahahah @Ian_ianization you look so cute on Showhand ! Hahahaha &gt;&lt; .'), (12291, 1752, 'Johore, Malaysia', 'I''m at My Own Bed. (Singapore) http://t.co/uGMEZico'), (12292, 2187, 'Plentong, Johor Bahru', 'Craving for some ice creamm!!'), (12293, 1349, 'Johore, Malaysia', '@rinabanana @xing_shing @lkmariquit ga fring kmi d ay lente nga lovelife!!'), (12294, 3062, 'Singapore', '"I''m a fool that cant live without you, I think letting you go is more severe than dying..." ~~ 지독하게(Severely)https://t.co/8ubTei2o'), (12295, 1645, 'Johore, Malaysia', 'How i wish i can turn back time...it will be perfect..'), (12296, 140, 'Plentong, Johor Bahru', '@stephaniecuifen i wanna go shopping too D:'), (12297, 2900, 'Plentong, Johor Bahru', '#BestThingAboutBeingSingle boleh save kredit :D'), (12298, 2994, 'Johore, Malaysia', '@yeonjunlin where do u work?'), (12299, 2642, 'Plentong, Johor Bahru', '#SayaTakBiasa lepaskan angin depan orang K . Eeeee tipu ! tipu ! tipu !'), (12300, 897, 'Johore, Malaysia', '@Blehtan HAHAHA. Your mother so cute!'), (12301, 2584, 'Singapore', 'gendong baby kami :) http://t.co/YPbbKrWP'), (12302, 141, 'Johor Bahru, Johore', 'This mollar bonds and ortho metals in my teeth won''t allow me to eat hard food!'), (12303, 1686, 'Johore, Malaysia', '@AchyqSanSan hashaha. standard ah. spidr peeee.'), (12304, 2460, 'Johore, Malaysia', 'Meant to be i guess lol !'), (12305, 1564, 'Johore, Malaysia', 'Cabbing home with @Maywen0614 @SheReE_YiNGYiNG . Hee #tsfc liao . ^^ .'), (12306, 51, 'Johor Bahru, Johore', '@ManMathers kat mbs eh?'), (12307, 1716, 'Johore, Malaysia', '@Aummhigh mee dii. I buy it every time. U go check. If mai mee kor aow Arai kor dai55'), (12308, 2867, 'Malaysia', 'ไม่ใช่ไม่ "เสียใจ" แต่ไม่อยากให้\n\nใครมา "สงสาร" หรือ "เห็นใจ"\n\nไม่อยากให้ใครรู้ว่า "อ่อนแอ" แค่นั้นเอง...!~*'), (12309, 2748, 'Johore, Malaysia', 'Have you ever wondered which hurts the most: saying something and wishing you had not, or saying nothing, and wishing you had?'), (12310, 3, 'Johor Bahru, Johore', '@AloyPang 你了解就好吗,好啦,我尽力啦,ok?你也知道很早哦!快点去睡觉啦,明天要这么早起床,GOGOGO,去 Sleep ugh:)'), (12311, 3063, 'Johor Bahru, Johore', '@Boilinggpointer bukan 24?'), (12312, 2574, 'Riau, Indonesia', '@olfaresha aaseeeekk,,hahahha ingat kok syaaang,, yang kakak lihat kamu boncngan sama blade tu y,,hahah *blade kan ya?'), (12313, 372, 'Johor Bahru, Johore', 'Ang ganda ganda naman ng mga teleserye! Hehe'), (12314, 2377, 'Johor Bahru, Johore', '@nurirfansmiles hahah. Thanks! Nasib Kau ader.'), (12315, 2989, 'Johore, Malaysia', '@cowgoesmoo703 its 17 march, Saturday ;)'), (12316, 369, 'Johore, Malaysia', '@SherylAllyson where is the place'), (12317, 3064, 'Johore, Malaysia', 'Buying beer \\o/ (@ Carrefour) http://t.co/3hWMth72'), (12318, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 tupac he is a famous rapper... But he die already...'), (12319, 2706, 'Kota Tinggi, Johore', 'Early day tmr:) gotta end e night early:) good bye cyber world!'), (12320, 2013, 'Johor Bahru, Johore', '@nanallove working at a new restaurant at raffles place:).'), (12321, 2867, 'Malaysia', 'บางอย่างที่ "ยอม" มากมาย..\nแต่ใช่ว่าจะ "ง่าย" ให้ใคร..~*@\nบางอย่างที่ "ยอม" ให้ไป..\nแต่ใช่ว่าจะ "ได้" ทุกคน..~*@'), (12322, 2932, 'Singapore', '@rama_sobat kelas 5 SD hahah'), (12323, 1791, 'Johor Bahru, Johore', 'Hahah smiling to himself tskkm naughty Ian .'), (12324, 791, 'Johore, Malaysia', '@KuanLeocadio somebodi thought you came so they buy for you.'), (12325, 3065, 'Johore, Malaysia', '@wendyagam foto yg mano?'), (12326, 790, 'Johor Bahru, Johore', 'How i wish i cld get away with u, to a far far away place. Tht only me and u knw how to go and get back..'), (12327, 3066, 'Johor Bahru, Johore', 'Thanks for the lovely pressie :p http://t.co/J17DuseP'), (12328, 2013, 'Johor Bahru, Johore', '@nanallove pay is 7 an hour'), (12329, 1337, 'Johor Bahru, Johore', 'Ouh shit my mom found my malboro menthol shit just got real.'), (12330, 2327, 'Malaysia', 'ส่งสัย สตูล คงเป็นได้แค่ฝัน'), (12331, 363, 'Johor Bahru, Johore', '@Moonotopia STOP TWEETING AND DO WORK!'), (12332, 2253, 'Pulai, Johor Bahru', '@Amir_Jacobs haha pergi sekolah jalan kaki miskin ? Err tu sbb rumah dekat , sebabtu lah kann jalan kaki .'), (12333, 173, 'Johore, Malaysia', '@EVANNIEBOOB IKEA IKEA IKEA IKEA'), (12334, 2118, 'Singapore', 'As usual, plan is always not been executed like I want to. I always get what I wanted. He knows I will plan better next time.'), (12335, 2960, 'Johore, Malaysia', '@Jakelvista sobrang ganda ng universal studios. Nag 2x ako sa transformers ride.. galeng'), (12336, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Hahahha. Chinese gitu. Dia cakap macam tuu? Hihii'), (12337, 1812, 'Johor Bahru, Johore', '@Mustafa_519 A serious eh???Kalau kau cabut aku pun cabut tau...'), (12338, 941, 'Johor Bahru, Johore', 'Nenek Ckp je takde duit , Tapi tolong update bank account dier , FUUUUUUUUU , more then 50k . :O'), (12339, 569, 'Johore, Malaysia', 'im so falling for you damnit.'), (12340, 890, 'Malaysia', '@Nnamfhhh อีกนาน555กลัวพี่ฟ้านอน ๆ'), (12341, 2932, 'Singapore', '@anditenrionaa bales bbm please'), (12342, 1369, 'Johore, Malaysia', '@NRLHDH ape yang da abes ni? Pasal apa?'), (12343, 627, 'Johor Bahru, Johore', 'Did sir just sended me a drawing on draw something lol..............................'), (12344, 3067, 'Johore, Malaysia', 'Updated twitter. Big like the face &gt;&lt; http://t.co/UxmUfjj1'), (12345, 5, 'Johore, Malaysia', 'Mataair kau tk lyn kau , kau dtg carik aku . #prangaibest'), (12346, 2603, 'Plentong, Johor Bahru', '@nurainazman Kakakkkk :)'), (12347, 2748, 'Johore, Malaysia', 'Meeting you was fate, becoming your friend was a choice, but falling in love with you was beyond my control.'), (12348, 60, 'Singapore', 'gotta wake up real early tmr.'), (12349, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 whising on a star'), (12350, 2900, 'Plentong, Johor Bahru', '#retro'), (12351, 3028, 'Malaysia', '“@Itsara_s: @Lekchin_twit ชิชะ มารหัวใจข้า ขอให้ฝันถึงเลขแต่ซื้อแล้วไม่ถูก 555”&gt;&gt;เออพรุ่งนี้ซื้อเลขอะไรดีวะ'), (12352, 2945, 'Plentong, Johor Bahru', 'ade org ajak teman beli topup. tapi aku tawu bukan sekadar membeli topup.'), (12353, 487, 'Johore, Malaysia', 'WHAT WHY THIS YEAR DAMN IT RT @supernicolee: "@HILLARYWONG: OH MY GOSH MAROON 5 IS COMING TO SG!!!!!!!!!! AHHHHHHHHHH"'), (12354, 716, 'Singapore', 'OHYEAAH BABY. SAW THAT?! I''VE DONE ALL MY MCONLINE HW. EXCEPT CHINESE. WHICH IS UNDER MY SUBJECTS AND ONE CHI COMPO X.X http://t.co/8XT9VZoY'), (12355, 1060, 'Johore, Malaysia', 'Thanks #Dunhill for lighten my night'), (12356, 720, 'Plentong, Johor Bahru', 'amboii diorang berdua . dua dua cakap bai kat aku . rupa rupanya diorang nak dating dalam talipon .haha'), (12357, 2118, 'Singapore', '@TURTL3NECK :) he is one of the better dancer, he deserve to be happy and laugh'), (12358, 3069, 'Malaysia', 'I''m at Lee Gardens Plaza (ลีการ์เด้นพลาซ่า) (Hat Yai, Songkhla) w/ 3 others http://t.co/eBsTTjL2'), (12359, 627, 'Johor Bahru, Johore', 'My phone died'), (12360, 720, 'Plentong, Johor Bahru', 'amboii diorang berdua . dua dua cakap bai kat aku . rupa rupanya diorang nak dating dalam talipon .haha [Like it? http://t.co/9tGHZgiV ]'), (12361, 2603, 'Plentong, Johor Bahru', 'Korang ada? Hahhahaha.In advance ok xD'), (12362, 1108, 'Johore, Malaysia', 'Happy colours.'), (12363, 3070, 'Riau, Indonesia', 'gak ada kerjaan'), (12364, 1825, 'Johor Bahru, Johore', 'I saw @Shanicekoh on tv! Show hand!'), (12365, 216, 'Malaysia', '@Preeyanutt เพ้ออหล่าวแล555'), (12366, 1875, 'Johor Bahru, Johore', '@derppp_ Alrighty~'), (12367, 1541, 'Johore, Malaysia', '@idkputwad so late?'), (12368, 716, 'Singapore', '@tripodmonster Blehhh^^ Doing homeworkk ahh? :B'), (12369, 3071, 'Johore, Malaysia', '@ClementBoredom ? Next Friday uh?'), (12370, 553, 'Johor Bahru, Johore', 'Oh geezuz! Hahah http://t.co/YKwBQaoc'), (12371, 2945, 'Plentong, Johor Bahru', '@HajarHaibara betul ape. ;)'), (12372, 2867, 'Malaysia', 'เวลามีแฟนอยาก "สันโดษ" เวลาโสดแระอยาก "สรรหา"'), (12373, 3070, 'Riau, Indonesia', 'bosen , dr maren ampe skrg d''rumahh trusssss'), (12374, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 little by little'), (12375, 1691, 'Johore, Malaysia', 'RT @MusicComesAlive: When u need me I always here for u no matter wad :))'), (12376, 2503, 'Johor Bahru, Johore', '@luvshow4ever 我比你煩~><算了,星期六找救兵!'), (12377, 1465, 'Johore, Malaysia', '@StarsandDusts_ @aliciamutheardy nope. SHIT IM STARTING TO HAVE AMNESIA! :O'), (12378, 3015, 'Johore, Malaysia', '@BeMy_SuperHero we just broke up . Hmmm lazy to say uh.Anws meet me soon lei.when you free?like after school like that.'), (12379, 1875, 'Johor Bahru, Johore', '#Nowwatching: Punk V. Joe 2'), (12380, 141, 'Johor Bahru, Johore', 'I have all this potential to be better than what I am .....'), (12381, 720, 'Plentong, Johor Bahru', '@IkaNabella wahhhhhhhhhhhhhhhhhhhhhhh! bakkmaii phone lamee . hahahhahahaha'), (12382, 2662, 'Johor Bahru, Johore', 'i''m (@ JiaQing''s Houseee) http://t.co/b4uXj6A1'), (12383, 2748, 'Johore, Malaysia', 'The spaces between your fingers were created so that another''s could fill them in.'), (12384, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @spartanZ9774 apa kena-mengena ngan merlin?!!'), (12385, 2676, 'Johor Bahru, Johore', 'Method Kau dah outdated lah -.-'), (12386, 2867, 'Malaysia', 'พ่อแม่นู๋..สอนมาดีเป็น "สุภาพสตรี" ห้ามใช้ "กำลัง"!!\n\nถ้า"สามี" ไม่เชื่อฟัง...พ่อแม่นู๋สั่ง..ให้ใช้ "ปืน"!!'), (12387, 805, 'Johore, Malaysia', 'Melawat. (@ Block 32 Balam Road) http://t.co/z8e0821F'), (12388, 700, 'Johor Bahru, Johore', 'Eh yeah good idea!! RT @Hariboboii: @afiqahyamin Haha nvrmin la , can still use supermarket trolley ^^ .'), (12389, 167, 'Pulai, Johor Bahru', 'I''m at Lagaria Laguna (Johor Bahru) http://t.co/EC1m2Wkq'), (12390, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 lovey dovey'), (12391, 2972, 'Plentong, Johor Bahru', '@tskama alooo.hahaha'), (12392, 790, 'Johor Bahru, Johore', 'I want a happy meal. Corn, nugget and milk please.'), (12393, 2989, 'Johore, Malaysia', '@cowgoesmoo703 @CutegirlsFTW @kaedream Joyce and the boyz and rough addicts too! ;)'), (12394, 2844, 'Johor Bahru, Johore', 'Cant take it le (@ Cookie Monster Crib) http://t.co/H1veeuKk'), (12395, 3069, 'Malaysia', 'I''m at Central Hatyai (เซ็นทรัล หาดใหญ่) (Hat Yai, Songkhla) w/ 2 others http://t.co/HsvZdKX6'), (12396, 106, 'Johor Bahru, Johore', 'Someone nurse me back to health please , no ?'), (12397, 2878, 'Johor Bahru, Johore', '@FoudreRouge @syazfeera Kirim salam pelok cium to abg misai lebat! #Goodnight'), (12398, 206, 'Singapore', 'guess i m really fat rofl.'), (12399, 1971, 'Johore, Malaysia', 'I''m at Boon Keng MRT Station (NE9) (Singapore, Singapore) http://t.co/AyBJxfRA'), (12400, 3072, 'Johor Bahru, Johore', 'Rice serum mask. Not that clear in the picture ahihihi @ Home @ Montreal Drive http://t.co/9UffXz0y'), (12401, 3073, 'Johore, Malaysia', 'I''m at Hotel Fort Canning (Singapore) [pic]: http://t.co/qQ79b66O'), (12402, 3074, 'Riau, Indonesia', 'Gambling!!'), (12403, 1816, 'Johore, Malaysia', '@melsmyname_meow dude! You''re so blessed :) you feeling better meow meow?'), (12404, 2603, 'Plentong, Johor Bahru', '@ShukriHani Nenek kita tak kuat nak bawak jalan jalan ahh xD'), (12405, 3062, 'Singapore', '"I''m a fool that cant live without you, I think letting you go is more severe than dying..." ~ 지독하게 (#FTIslandSeverely) http://t.co/xvWCgM8w'), (12406, 2676, 'Johor Bahru, Johore', 'Nabay uh . Battery low . Hp rosak baikbaikbaik .'), (12407, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini boleh la..mmg nak kuruskan mana yg gemok neh..hehe'), (12408, 1904, 'Plentong, Johor Bahru', '@FatinHsmi Cannot sleep'), (12409, 720, 'Plentong, Johor Bahru', '@realFARAWAHIDA saya kat sini kak ;]'), (12410, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 Cry cry'), (12411, 138, 'Johor Bahru, Johore', 'Hahahha derick poor thing RT @ngzhengqin: The camera man is never in the photos lol'), (12412, 1011, 'Johor Bahru, Johore', '@asdfghjade_TW I want the fairy tail necklace..unfair you get it'), (12413, 2900, 'Plentong, Johor Bahru', 'Ramai nyer org kat umah aku'), (12414, 2380, 'Johor Bahru, Johore', '@AdrianGohJW @violentgirl_ no :)'), (12415, 3075, 'Malaysia', '@PiccPig ขอบคุณค่ะ ^____^ ชื่ออะไรเอ่ยค่ะ? เราชื่อวินดี้นะค่ะ ยดทดรจ.นะค่ะ'), (12416, 3076, 'Johor Bahru, Johore', 'Good be back chating with you again.. I miss you..'), (12417, 1904, 'Plentong, Johor Bahru', 'Haih so sad. So ...'), (12418, 2327, 'Malaysia', '@careunz 5555 ดีเล 3 ชม ไปอยู่บ้านใครก่อนดีกว่ามั้ง == เดียวยุงสูบเลือด หมดตัว'), (12419, 98, 'Johor Bahru, Johore', '&amp; its been mths fr me RT @HAIFUS: I faced it everyday, ohhh myy gaawwdd “@Retwittings: #S are facing a certain emotional crisis right now.”'), (12420, 3077, 'Malaysia', 'http://t.co/YSw4ltyY! รุ่นพี่เราเอง เต้น ณ บัดนาว สุดยอดดดดดดดดด'), (12421, 3059, 'Plentong, Johor Bahru', '@anissazali89 cerite perang versi cina2x'), (12422, 160, 'Johor Bahru, Johore', 'I''m at PONTIANAK. FINGERING -AREA! (Singapore) http://t.co/9W3OaxMg'), (12423, 117, 'Johore, Malaysia', '@zomgitsnawar i going aloneeee'), (12424, 3078, 'Riau, Indonesia', '@AllRisesilver67 gamsahamnida^^'), (12425, 2939, 'Johor Bahru, Johore', '@inday_regel @zuchie_25 @ajbrenix ayaw! adto lang ta Melbourne, visit nya ta ni ice '), (12426, 2407, 'Plentong, Johor Bahru', '@admiralhafiz @gadishanim secara rasminya i dah follow u !!'), (12427, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 thats mean someone is thinking abt you babe...'), (12428, 117, 'Johore, Malaysia', 'bjorn hates me now'), (12429, 138, 'Johor Bahru, Johore', '@Vantsoul I think everyone using the same paper cups. Idk which one is mine i randomly take and drink HEHE'), (12430, 2676, 'Johor Bahru, Johore', 'Hp aku rosaaaaaaaak !! Nak hp baru pls :3'), (12431, 51, 'Johor Bahru, Johore', '@ManMathers tawu tapi rambut aku panjang . Kul rape nak gy?'), (12432, 1686, 'Johore, Malaysia', '@AchyqSanSan aku tak beli wheelset lerrr. by next week aku beli. eh besok boleh tolong aku bukak crank? kau pinjam ahmad punya crank opener'), (12433, 2867, 'Malaysia', 'เคยมั้ย?..ถึงหลับก็ยัง "คิดถึง" ใครบางคนได้...\n\nเพราะ "หัวใจ" มันไม่เคยหยุดทำงาน...'), (12434, 206, 'Singapore', 'sigh finding borders for the video &gt;.&lt; GREAT LOR EVERYTHING I DO HAIZ. &gt;&lt; !'), (12435, 3079, 'Johore, Malaysia', 'wah i cycle everyday can slim down already'), (12436, 2900, 'Plentong, Johor Bahru', 'Event : Rewang :) kecoh rumah :D'), (12437, 2994, 'Johore, Malaysia', 'So tired I''m gonna sleep by 11 or else I''m gonna faint tomorrow'), (12438, 160, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 9 others http://t.co/7JHL37Ne'); INSERT INTO `tweets` (`id`, `user`, `location`, `tweet`) VALUES (12439, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 bo peep bo peep'), (12440, 3080, 'Johor Bahru, Johore', 'I''m at Yishun MRT Station (NS13) (Singapore, Singapore) w/ 7 others http://t.co/dyk4oMjf'), (12441, 1847, 'Plentong, Johor Bahru', '@Dkamilaa aq rama-rama... kau lupa ke?? aq boleh elak..'), (12442, 2372, 'Johor Bahru, Johore', 'Because there''s nothing more beautiful than the way the ocean refuses to stop kissing the (cont) http://t.co/fzF7oq5h'), (12443, 1816, 'Johore, Malaysia', '@qracexDD @zaikiawayne @bbobbstar *waves* HIIIII :) whatcha talking abt??'), (12444, 1245, 'Johor Bahru, Johore', '@YanyingZheng the receipt that I transferred the money to the blogshop owner. :D + the $2 I owe her haha http://t.co/gmobdAUQ'), (12445, 3081, 'Johore, Malaysia', 'I''m at Blk 327, Clementi Ave 5 http://t.co/6TsNM9p9'), (12446, 1369, 'Johore, Malaysia', '@azwanjamil @NRLHDH baby lia sayang ku help me!!!'), (12447, 1111, 'Johore, Malaysia', 'I''m at Udders (Singapore, Singapore) w/ 8 others http://t.co/DE7DTswL'), (12448, 2503, 'Johor Bahru, Johore', '@luvshow4ever 我已經有個救兵人選了~哈哈!'), (12449, 1791, 'Johor Bahru, Johore', 'Fuck you . Don''t play with me feelings k .'), (12450, 138, 'Johor Bahru, Johore', '@GoomBoozer @ngzhengqin Sorry dont have'), (12451, 3082, 'Johore, Malaysia', '@.@ i need to gain weight ... At least ... 5kg ... The prize ... Totally .... Worth it ......'), (12452, 3083, 'Johore, Malaysia', 'Back in SG!! (@ HarbourFront Ferry Terminal w/ @tanhuokui) http://t.co/Y9kbIueb'), (12453, 2803, 'Malaysia', '@chanakarn_kook ตัวเองก็อวบ = ='''), (12454, 2217, 'Johor Bahru, Johore', 'I''m at McDonald''s (Singapore, Singapore) http://t.co/JfRSa1qm'), (12455, 160, 'Johor Bahru, Johore', 'I''m at Worker''s Party Zai Dui (Singapore) http://t.co/RNET3gtd'), (12456, 244, 'Johor Bahru, Johore', '@melvinryantan I will only be in London for 8 n 9 aug den I''m joining e topdeck tour on 10aug! Den back in lnd on23aug'), (12457, 3015, 'Johore, Malaysia', '@BeMy_SuperHero sengkang near my school siol.what time?'), (12458, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 cfrm2 salah mkn punye...'), (12459, 3058, 'Johor Bahru, Johore', '@missieightynine sry for being zero :( ima mr zero...! lol! dom angsty!'), (12460, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @Dkamilaa hhaha exactly'), (12461, 2967, 'Plentong, Johor Bahru', '@theJimidz haaaaaaaa baru kenal yg tu ili..hehehe kan kan ?'), (12462, 2162, 'Johor Bahru, Johore', 'I''m at Pending LRT Station (BP8) (Singapore, Singapore) http://t.co/3SzC5uzP'), (12463, 3084, 'Plentong, Johor Bahru', 'Dinner@banafe village'), (12464, 3078, 'Riau, Indonesia', 'RT @AllRisesilver67 http://t.co/TUVnWev4'), (12465, 1988, 'Johore, Malaysia', 'I''m insecure , don''t know what for.'), (12466, 2557, 'Malaysia', 'พ่อมึงเปนช่างแต่งหน้าหรอ - -'), (12467, 460, 'Johore, Malaysia', 'Never felt this sucky before, never!!'), (12468, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 roly poly'), (12469, 716, 'Singapore', 'As if I''ve done all of the MConline by todaay, hahah. Done it all by the past few daaays laa. Cheyy. :x'), (12470, 149, 'Johore, Malaysia', '@dottimeli nice seeing you guys today hope you guys had a fun date! next time come down to drink I make good margaritas. ;) @Pangyaoyi'), (12471, 656, 'Johor Bahru, Johore', 'Finally know my blood type after the donation:D http://t.co/d1f0kLoI'), (12472, 1172, 'Johor Bahru, Johore', 'Damn full and tired :/ (@  Durg''s Heaven ) http://t.co/1y9x7eug'), (12473, 98, 'Johor Bahru, Johore', '@Holy_Papa bt confirm need stay back!! I will nvr understand her lessons hahahah'), (12474, 216, 'Malaisie', '@Preeyanutt 5555555 เยอะเบอะพี่เจริญ'), (12475, 3085, 'Johore, Malaysia', 'Guess how many stitch i have ! http://t.co/ZufpD8fN'), (12476, 2849, 'Singapore', '@pissmylipz Just asking nia :P ! cannot meh ? Bestfriend care for bestfriend (:'), (12477, 2867, 'Malaisie', 'หาก “ความรัก” .. มันยากนัก! ที่จะ “เข้าใจ” …\n\nแล้วทำไม? .. “ไม่ทำความเข้าใจกัน” ก่อนที่จะ “รัก” !!! ..'), (12478, 304, 'Riau, Indonesia', 'My pottery! (with Lingo at Hard Rock Hotel Singapore) [pic] — http://t.co/iV1eOL8N'), (12479, 2561, 'Johor Bahru, Johore', 'My bro say i lazy. Only know how to play! Keep saying his worker which is same age as me "so hard working" tell him be ur brother luh! _|_'), (12480, 687, 'Johore, Malaysia', '@kittenswithguns @greenie_leena bloody balls laa'), (12481, 2603, 'Plentong, Johor Bahru', 'Harinih, abang market tak tweet. Dia sibuk main Badminton :) Hahahha. K Am K xD'), (12482, 2998, 'Johore, Malaysia', '@smellarmpit awww dont say that, although that''s like the best painkiller on earth. Hehehe  you headache too? Hehe'), (12483, 2152, 'Johore, Malaysia', 'I''m at Esplanade - Theatres on the Bay (Singapore, Singapore) w/ 13 others http://t.co/eQS1jpkF'), (12484, 772, 'Johor Bahru, Johore', 'Muahahha!! Swimming cap??? Siols lah! #AmukanPocong “@czarilyana: Namron jd tok moh siam ker?hok atas kepala tu awat ghupe swimming cap?”'), (12485, 160, 'Johor Bahru, Johore', 'I''m at norvan zai tui (Singapore) http://t.co/xPJSshJJ'), (12486, 2118, 'Singapore', '@syukrinadiamond yes, ihsan works at USS just now :)'), (12487, 1950, 'Johore, Malaysia', '@dreamh_igh Okay okay no see no see.. but scary - saw something you not suppose to see ma.'), (12488, 117, 'Johore, Malaysia', '@KaySeeEeyan17 ikr'), (12489, 1945, 'Johor Bahru, Johore', '@sujeanmelissa Sige keri lang. Haha! Nasa house lang ako'), (12490, 3058, 'Johor Bahru, Johore', '@enqixie yeah butter! drink with me next week yeah! hahaha! jio @AlvisYeo come oso! @Huiifenn working right..? :('), (12491, 1194, 'Malaysia', '@fahsrit ตกลงเรื่องคอนพี่ฟ้าไปได้มั้ย ท่าทีแม่เป็นไงบ้าง'), (12492, 1791, 'Johor Bahru, Johore', 'Shouldn''t make use of her . She deserves a little respect ya know . She''s human too .'), (12493, 716, 'Singapore', '@tripodmonster I left two Chi hw, ohyeaah baby. :p Start doing laa? (:'), (12494, 2557, 'Malaysia', 'เหนเดินไปเดินมา ดูหน้าตลอด อีตุ้ดถึก !'), (12495, 160, 'Johor Bahru, Johore', 'I''m at Hougang Mall (Singapore) w/ 9 others http://t.co/uIhTn8QN'), (12496, 2460, 'Johore, Malaysia', '@MakkauHashtag why frown ?'), (12497, 117, 'Johore, Malaysia', '@Fat_fishes sorry laaaaaaaaaaaaaaaaa'), (12498, 1335, 'Johore, Malaysia', 'Worst i''ve ever felt in a long time.'), (12499, 1196, 'Johor Bahru, Johore', 'Yaaaaa itu siii klo lo mau.. Gue cm kasii opsi dwnk ko..RT @bachryans: yeee enak ajeee kaga kaga (cont) http://t.co/0rdQwUHJ'), (12500, 2503, 'Johor Bahru, Johore', '@luvshow4ever bingo!哈哈~厲害!'), (12501, 687, 'Johore, Malaysia', '@kittenswithguns think of me ah ?'), (12502, 173, 'Johore, Malaysia', '@dylanloo escape velocity by chemical brothers'), (12503, 2950, 'Johor Bahru, Johore', 'Polycom: Human Resource Business Partner ( #SingaporeJobs) http://t.co/89YhzcuD #HR #PolycomJobs #Job #Jobs #TweetMyJobs'), (12504, 2676, 'Johor Bahru, Johore', 'Urgh'), (12505, 149, 'Johore, Malaysia', '@m_arvelousjac do it!'), (12506, 2959, 'Johor Bahru, Johore', 'Woah amir is such a bitch, haha.'), (12507, 117, 'Johore, Malaysia', 'I deserve all the hate i can get.'), (12508, 1686, 'Johore, Malaysia', '@AchyqSanSan besok pagi? amcm? aku nak pergi alywin nlepas tu gi transfer aku punya headset.'), (12509, 3086, 'Plentong, Johor Bahru', 'I''m at Modesto''s Easy Pizza (Johor Bahru, Johor) http://t.co/im3d7ldC'), (12510, 1337, 'Johor Bahru, Johore', 'Oi @thisisrauf'), (12511, 160, 'Johor Bahru, Johore', 'I just ousted @benjamintierra as the mayor of HalconBmx @ Hougang on @foursquare! http://t.co/ypZKefNh'), (12512, 160, 'Johor Bahru, Johore', 'I''m at HalconBmx @ Hougang (Hougang, Singapore) http://t.co/yAHyMqhK'), (12513, 285, 'Singapore', '@AnatiSimpson you could get all my ex''s, tapi ada 2 je dekat sini :P'), (12514, 3087, 'Johore, Malaysia', 'I''m at Blk 42 Chai Chee Street http://t.co/4oeckpsI'), (12515, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 Lies'), (12516, 613, 'Johore, Malaysia', 'Relax, chill, destress~ &lt;3sssss (@ Udders w/ 10 others) [pic]: http://t.co/upVQKxAy'), (12517, 2375, 'Singapore', '@lizzyyloo looks so yummy! =P'), (12518, 99, 'Johor Bahru, Johore', 'Going to watch VOD movie ...dad paying'), (12519, 1645, 'Johore, Malaysia', 'Time to get serious...'), (12520, 138, 'Johor Bahru, Johore', 'Ohnooooo. Going back Clementi meet up go Russell house do chinese project. Nvm can buy KOI xD'), (12521, 487, 'Johore, Malaysia', '@planetjedward LOVE THE JACKET :) And its good to see you guys without the trademark hair of yours! :)'), (12522, 2945, 'Plentong, Johor Bahru', 'see..bukan sekadar membeli topup. membeli tutti frutti sekali nampaknye. hoho'), (12523, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 @4pplegreen spread it!'), (12524, 1194, 'Malaysia', '@Ritz_TS6 เค้ารักพี่ริทนะ'), (12525, 1791, 'Johor Bahru, Johore', 'Her dad so sweet &lt;3 Play for her birthday song (:'), (12526, 2676, 'Johor Bahru, Johore', 'Mummy stalking me cheery kidding :p'), (12527, 2900, 'Plentong, Johor Bahru', 'Karya Dean The GREAT !! http://t.co/OKGYj6p5'), (12528, 2603, 'Plentong, Johor Bahru', '@ShukriHani Huihh siapakah pula yang ingin membawa motor tersebut? Hikhik xD'), (12529, 51, 'Johor Bahru, Johore', '@nanaSabrinaaa kesian eh saye . Hahaha. Betol ke ? Ask maseh bau masam? Eaten already?'), (12530, 3088, 'Johore, Malaysia', 'Your chinese makes no sense. :&gt;'), (12531, 2971, 'Johor Bahru, Johore', 'Judi adalah haram di dalam syarak islam..'), (12532, 1022, 'Johore, Malaysia', 'If I had de courage &amp; if I''m ready!!!!!'), (12533, 1370, 'Johor Bahru, Johore', 'Kan best kalau ada BFF . Teman kan kita seumur hidup . Memang best la :)'), (12534, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @Dkamilaa fine'), (12535, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 together'), (12536, 3089, 'Johore, Malaysia', 'Damn I bought wrong tys, but nevermind, it means more revision! :)'), (12537, 3090, 'Johor Bahru, Johore', 'Lost my new and favorite guitar pick hais.'), (12538, 720, 'Plentong, Johor Bahru', '@PutriSyafiqahh siapa nii?comell'), (12539, 3026, 'Plentong, Johor Bahru', '@izzaynAA haha .aku sangat terseksa ni .kerje budak u aku kena buat -,-'), (12540, 304, 'Riau, Indonesia', 'Lingo''s pottery (with Lingo at @rwsentosa) [pic] — http://t.co/xN2SGG57'), (12541, 1904, 'Plentong, Johor Bahru', 'Well, I''m doing fine.'), (12542, 1022, 'Johore, Malaysia', 'Prolly it will b soon!!!!'), (12543, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @spartanZ9774 i watch merlin to'), (12544, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 lol... Go and mkn lah or esle i go to ur place and give you obat to mkn then you know... Lol'), (12545, 51, 'Johor Bahru, Johore', '@ManMathers gg with who somemore ?'), (12546, 117, 'Johore, Malaysia', '@KaySeeEeyan17 haiss haha'), (12547, 2407, 'Plentong, Johor Bahru', '@admiralhafiz dah menegur pon neh...=))'), (12548, 369, 'Johore, Malaysia', '@SherylAllyson wth bro. U tell me the pit code but dunno the place.'), (12549, 3063, 'Johor Bahru, Johore', '@NazryZaini HAHAHAHAHAH!'), (12550, 772, 'Johor Bahru, Johore', 'Ah kau,anak kau tau bezakan mana haram dosa semua... Apa punya bapak.. Meniaga Lu... #AmukanPocong'), (12551, 1825, 'Johor Bahru, Johore', '@Shanicekoh ^^'), (12552, 1465, 'Johore, Malaysia', '@StarsandDusts_ @aliciamutheardy hmm if only I could :('), (12553, 1369, 'Johore, Malaysia', '@NRLHDH @azwanjamil karut laa #teamfarhan malas karut tdo k baby lia.. Can ar ?'), (12554, 2923, 'Singapore', 'Amen Fashion.'), (12555, 803, 'Johor Bahru, Johore', 'Don''t say it like I forced you .'), (12556, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz I jk with u only. LOL! U believe I will follow u meh?'), (12557, 2287, 'Plentong, Johor Bahru', 'Tempat karok paling terok..danga city mol'), (12558, 2694, 'Malaysia', 'A: โทรมาด้วยนะ B:ฉุกเฉินได้รึป่าว A:เรียกรถพยาบาลเหรอ? B: = = #555555555555555'), (12559, 2574, 'Riau, Indonesia', '@olfaresha iyaaa,,soalnya yang bawa ngebut banget wktu tuuuu,, hahhaha :P'), (12560, 1507, 'Johor Bahru, Johore', '@iamBaRBieyDoll hahaha. Talaga?'), (12561, 771, 'Johore, Malaysia', '@inakayamgoreng lol . Hi little one .'), (12562, 2611, 'Malaysia', '@aumcomza1 อาหยั๋ง'), (12563, 938, 'Johore, Malaysia', '@BANANAKILLERZ yes . Where we meet? What time? Thank :) See you tomorrow.'), (12564, 935, 'Johor Bahru, Johore', 'Seriously don feel like living anymore...'), (12565, 897, 'Johore, Malaysia', '@Blehtan HAHAHAHA. Why! You so bad!!!'), (12566, 1791, 'Johor Bahru, Johore', 'Kim appreciates it . Can tell ^^ .'), (12567, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @spartanZ9774 yg mana??'), (12568, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 superstar'), (12569, 149, 'Johore, Malaysia', 'call on me tell me everything you wanted to be'), (12570, 1950, 'Johore, Malaysia', '@dreamh_igh OKAY JIE~ I SHUT UP no have the thingy :D got me here only.'), (12571, 138, 'Johor Bahru, Johore', '@GoomBoozer Tmr 130'), (12572, 25, 'Singapore', '@pinkneonchains sure anot!'), (12573, 2584, 'Singapore', 'Saat nya lelet menerjang -,-'), (12574, 5, 'Johore, Malaysia', 'Korang ingat r/s ni blh buat maen''maen ? Hais ~'), (12575, 3091, 'Malaysia', 'ตายแระๆๆๆๆ'), (12576, 2603, 'Plentong, Johor Bahru', 'I Miss My Primary School Mates so much. :( Hmmm.'), (12577, 2939, 'Johor Bahru, Johore', '@inday_regel @zuchie_25 @ajbrenix wa nay libre Ron wui, much money biya ka'), (12578, 2980, 'Riau, Indonesia', '@ikaputri_lovers ih sii baliq tuh emang tau!!\nmasa'' kata nya yalah yg udh punya kawand baru kawan lma dilupai tw aq pop!\n*uuft :('), (12579, 2584, 'Singapore', 'RT gifarisaesac Syng kecantikan wajahmu disalah gunakan'), (12580, 1971, 'Johore, Malaysia', 'I''m at Buzz @ Boon Keng Station http://t.co/HMOR4fUs'), (12581, 487, 'Johore, Malaysia', '@supernicolee DOUBLE KILL. i love F1 and Maroon 5. But I''ve gotta study. Damn it'), (12582, 1108, 'Johore, Malaysia', '#nowplaying - scream'), (12583, 2676, 'Johor Bahru, Johore', 'Tak nak respect orang Tua Dari Kau ke pe ? Then expect aku respect Kau ? Jalan suah -.- (: :3 Amboii banyak nya faceface aku .'), (12584, 1651, 'Pulai, Johor Bahru', 'Aku dengan lyaa kalau dah luahkan perasaan. Mmg kekadang melewehhh ~'), (12585, 2745, 'Johor Bahru, Johore', 'Let''s play! :) @ Blk 135 Simei St 1 http://t.co/nXYa0Jt3'), (12586, 718, 'Johor Bahru, Johore', '@JoannaTheEmoKia OK GOOD :P'), (12587, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini aku tak leh dik..sebab sluar kesayangan aku dah tak leh nak pakai..setereh jadiknye'), (12588, 3079, 'Johore, Malaysia', '@PadelBlack :O'), (12589, 1280, 'Johor Bahru, Johore', 'I''m at Shermin''s Living Room! (Singapore) http://t.co/dbJfqMrY'), (12590, 2916, 'Johore, Malaysia', '@Merisngjingwen shouldn''t have offer you the tissue! Hmph!'), (12591, 1349, 'Johore, Malaysia', '@rinabanana @xing_shing @lkmariquit level up bla rinz! haba ng hair ng lola mo! tawa ko pakita nya ang mga presyus bags!'), (12592, 2748, 'Johore, Malaysia', 'Sometimes people put up walls, not to keep others out, but to see who cares enough to break them down.'), (12593, 20, 'Johore, Malaysia', '@Gary_Zenza i guess so. Anyway @MatinArshavin23 @AhmadHedzir are in'), (12594, 2547, 'Johore, Malaysia', '@mavislsm you ok?'), (12595, 1369, 'Johore, Malaysia', 'Lia i love you goodnight.. Muahhh &lt;3'), (12596, 897, 'Johore, Malaysia', '@shirlyntoh @blehtan HAHAHA. Shirlyn so violent!'), (12597, 718, 'Johor Bahru, Johore', '@RedColourRanger haha u cuttin meh ?!'), (12598, 1847, 'Plentong, Johor Bahru', '@4ppleGreen @spartanZ9774 @intanska lovely!'), (12599, 1812, 'Johor Bahru, Johore', '@Mustafa_519 serious eh, kalau gitu aku pun cabut last period ah...Aku nk jumpe cikgu aku kt skolah lain after tht aku lepak...'), (12600, 1856, 'Singapore', 'omg.. really whats wrong with my internet connection?! D: Cant open the twitlonger to read! OHSHIT'), (12601, 1541, 'Johore, Malaysia', '@naddcsy lol i dunno why but i lol at this'), (12602, 72, 'Johor Bahru, Johore', '@JingYingLeong pupil? Iris? Omg. All of this cannot put in the blanks sia'), (12603, 2803, 'Malaysia', '@chanakarn_kook ฉันอ๊วย อวบ แต่เธออ้วนนะ 55'), (12604, 1465, 'Johore, Malaysia', '@StarsandDusts_ @aliciamutheardy EHHH JEKYI''S IN MY CLASS NOW LEH! He in same sch as me. He not so bad liao leh!'), (12605, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 ma boo'), (12606, 1022, 'Johore, Malaysia', '就是开不了口........'), (12607, 3092, 'Johore, Malaysia', 'Having a great time with the boys.Usapang lalake lang. @ruizcarlo @ICEsaidit @iAMbugoy http://t.co/mQgOWI61'), (12608, 2287, 'Plentong, Johor Bahru', 'Rindu telah melekat dalam hatiku..walau awan lalu..rinduku tak berubah arah..'), (12609, 244, 'Johor Bahru, Johore', 'Hav to spend so much tis mth. Another 1.4k to airtix next wk n 1.3k to your end of mth. Oh my tian'), (12610, 2407, 'Plentong, Johor Bahru', '@admiralhafiz most welcome...=)'), (12611, 3015, 'Johore, Malaysia', '“I try to be strong. I try to move on. I want to give up but I just can''t let you go.”'), (12612, 98, 'Johor Bahru, Johore', '@Holy_Papa if it works, tell me. I wna consult him too'), (12613, 1816, 'Johore, Malaysia', '@bbobbstar @qracexdd @zaikiawayne HAHAH your convos are so funny!! XD okay okay go ahead I shan''t disturbXD'), (12614, 2867, 'Malaysia', '"เทอ" &gt;&gt; ไม่ใช่ "อากาศ" .. ขาดเทอชั้ลก็อยู่ได้ ~~*\n\nเทอก็แค่คนที่ "เคย" มีความหมายกว่าใครๆ\n\nไม่ได้เกี่ยวอะไรกับ "ระบบหายใจ" ของ ..ชั้ล!!!'), (12615, 2642, 'Plentong, Johor Bahru', '#AlasanResultTeruk Masa tengah exam tu aku kena ciritbirit duhh . Macamne nak focus kan . Kalau tak , result aku dah Straight A''s daa .'), (12616, 3058, 'Johor Bahru, Johore', '@missieightynine Huh? How come this shows that I can think.. But ima mr zero = can''t think ma? lol.'), (12617, 176, 'Johor Bahru, Johore', '@cherylgohxr awkward bcauz I don''t know what t say to ms neo! ;-p'), (12618, 2849, 'Singapore', '@BL00DYVAL3NTIN3 Gun or what ?'), (12619, 1369, 'Johore, Malaysia', 'RT “@syeikh: Shall nt attempt to shop anymore. Digits running low.”'), (12620, 363, 'Johor Bahru, Johore', 'Do I look like Aladdin to you? Or fairy godmother? I''m not here to grant your wishes.'), (12621, 3026, 'Plentong, Johor Bahru', 'Za''ba ,tolong siapkan kerja sastera mak aku yang aku kena buat ni T.T'), (12622, 138, 'Johor Bahru, Johore', '@ngzhengqin AHEMAHEMAHEM'), (12623, 1360, 'Johor Bahru, Johore', 'Someone claims to be smart.. Wow haha'), (12624, 2748, 'Johore, Malaysia', 'Someday your prince charming will come. Mine just took a wrong turn, got lost, and is too stubborn to ask for directions.'), (12625, 3093, 'Johore, Malaysia', '@dreytay iPhone 3gs'), (12626, 2574, 'Riau, Indonesia', '@NugrahaYudaP abaaaaaaaaaaang,, long time no seeeee !!! minta syukuran abang,,,'), (12627, 3094, 'Tebrau, Johor Bahru', 'Fun ''showcase'' performance. RETARDEDDISGUSTINGTIMEWITHMYBEAUTIFULGURRLS. (:'), (12628, 3085, 'Johore, Malaysia', '@AliahWilliams haha no ways :P'), (12629, 3036, 'Johore, Malaysia', '@jamsoawesome @chef_nursejehsa @tjaykun kelangan ka nila tawagan? Bakit daw?'), (12630, 2333, 'Johore, Malaysia', 'Now i know marking homework is not easy ..'), (12631, 1686, 'Johore, Malaysia', '@AchyqSanSan jumpa rumah aku pasang aku ounya crank dulu ah.'), (12632, 3095, 'Tebrau, Johor Bahru', '@BelleLeongg #7AraStayTogether alright;) who are they anyways?'), (12633, 2849, 'Singapore', '@pissmylipz Haha ! unlike you meh :p .'), (12634, 117, 'Johore, Malaysia', '@KaySeeEeyan17 sad life...'), (12635, 2900, 'Plentong, Johor Bahru', 'Kenapa jawapan Komsas "persoalan dengan tema" mcm sama jer, or aku yg tak pay attention :P'), (12636, 2613, 'Kota Tinggi, Johore', '@ItsNabOkay I don''t have ur number -.-'), (12637, 3096, 'Johor Bahru, Johore', '@HHYYIsBored admit what? Who? :O'), (12638, 1011, 'Johor Bahru, Johore', '@asdfghjade_TW hahah..no need lah...'), (12639, 3079, 'Johore, Malaysia', 'why am i fat'), (12640, 2372, 'Johor Bahru, Johore', 'i wanna go to miami beach and spend time w/ my love once. ❤'), (12641, 3097, 'Johore, Malaysia', 'i dont know why but it''s you.'), (12642, 1959, 'Johor Bahru, Johore', '@ShuricanShaheel i message you later you tmr mornin'' for now can i make it'), (12643, 2657, 'Johore, Malaysia', '@RandomLikeSarah okay ! :D'), (12644, 3015, 'Johore, Malaysia', '“ I hate when I miss someone &amp; can''t do anything about it.”'), (12645, 2676, 'Johor Bahru, Johore', 'Cb lah Kau ni (:'), (12646, 2407, 'Plentong, Johor Bahru', '@admiralhafiz uthm,batu pahat..awak??'), (12647, 1791, 'Johor Bahru, Johore', 'Now its adv . So . I''ll go check if you replied . - crossesfingerandhopeyoudid -'), (12648, 2657, 'Johore, Malaysia', '@huiyi__ hmm okaycan .'), (12649, 1847, 'Plentong, Johor Bahru', '@intanska @spartanZ9774 adam sorang jer yg x mature diaantara kita.. FACT'), (12650, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 like the first imet'), (12651, 25, 'Singapore', '@pinkneonchains hahahha if you go sleep now then wont ah! (:'), (12652, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hahhaha tak mungkin nenek saya, juga tak mungkin nenek saya Hahhahahaahah xD'), (12653, 2877, 'Johor Bahru, Johore', '@HaziqMatin yeahh ! Haha, mrpk sehh'), (12654, 852, 'Johor Bahru, Johore', '@ITotKnow TSKKKKK. Now must remember kay!!'), (12655, 3079, 'Johore, Malaysia', 'zof why u fat zof'), (12656, 2196, 'Johor Bahru, Johore', '@Plockygeeks Horny! :b'), (12657, 771, 'Johore, Malaysia', 'In the end you''ll find your best friend .'), (12658, 117, 'Johore, Malaysia', '@alyaroux why are you not'), (12659, 3079, 'Johore, Malaysia', 'what a fatty bombom'), (12660, 2867, 'Malaysia', 'ความหมายของคำว่า "อ.ด.ท.น." :\n(อ) = อีกไม่นาน\n(ด) = โดน\n(ท) = ทิ้ง\n(น) = แน่'), (12661, 20, 'Kota Tinggi, Johore', '@Gary_Zenza @MatinArshavin23 @AhmadHedzir sunday league la dey'), (12662, 1645, 'Johore, Malaysia', 'Ride! Ride! Ride!'), (12663, 1173, 'Plentong, Johor Bahru', '@khaicees alololo nasib aida blum ada pape injured tadi heheh Khai okay takni? rasa esok boleh main takni?'), (12664, 544, 'Johor Bahru, Johore', '@Sh0rtermemories why?'), (12665, 1009, 'Johor Bahru, Johore', 'I''m at Hongzhen''s Study Room ! http://t.co/upl2LE5h'), (12666, 3096, 'Johor Bahru, Johore', 'SUCK A FKED UP WORLD WE LIVE IN.'), (12667, 3, 'Johor Bahru, Johore', 'Bro keep teasing me ''bout yalun&gt;&lt;'), (12668, 3098, 'Malaysia', '#ทำไมต้องกลัว การเปลี่ยนแปลง '''), (12669, 2036, 'Malaysia', '@ipinkeros นอนเล่น 555555555 หิวข้าววววว กินข้าวแพพ ;D'), (12670, 2603, 'Plentong, Johor Bahru', '@NinaaImanina Hahhahha. Oklah kannn Hihiiihihiii xD'), (12671, 1706, 'Johor Bahru, Johore', 'I''m at Blk 110C Punggol Field http://t.co/HP21hkqY'), (12672, 3001, 'Plentong, Johor Bahru', '@FarahJumadi akak..bdk yg tue sethn dr ekin , yeo jin gu tu die dlm mv k.will i need you kn~ comel glerrrr die wat wink perghhh'), (12673, 460, 'Johore, Malaysia', 'I''m lost, I don''t know how should I feel, how should I react or what must I do?? :('), (12674, 897, 'Johore, Malaysia', '@Blehtan HAHAHA. Why not!'), (12675, 2748, 'Johore, Malaysia', 'Don''t say you love me unless you really mean it, because I might do something crazy like believe it.'), (12676, 140, 'Plentong, Johor Bahru', '@stephaniecuifen lucky you! Haha'), (12677, 3097, 'Johore, Malaysia', 'i wanna watch players.'), (12678, 932, 'Johor Bahru, Johore', 'Many unexpected things happen .\nSo be prepared to face one.'), (12679, 19, 'Johor Bahru, Johore', '@PPenguinBoy hahahahaha.... Ok'), (12680, 3079, 'Johore, Malaysia', 'zof you fatty go eat salad la'), (12681, 1581, 'Johore, Malaysia', 'Heh diamond screen protector'), (12682, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 eu perna dgr lagu take money? He is the singer...'), (12683, 51, 'Johor Bahru, Johore', '@ManMathers okaylah pon boleh .'), (12684, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 apple is a'), (12685, 3099, 'Johor Bahru, Johore', 'ada orang memang nak kena bunuh dengan aku -,-'), (12686, 2993, 'Johore, Malaysia', 'General Biology Lab Report: DONE! :)'), (12687, 932, 'Johor Bahru, Johore', 'I''m sorry I didn''t plan things well enough:('), (12688, 2335, 'Johore, Malaysia', 'omg is it first?'), (12689, 2225, 'Johore, Malaysia', 'Eating with my bros!! Mmmmmmmmmdaaaaaapppp!!! (@ Tekka Market) http://t.co/AGUEZx0y'), (12690, 2653, 'Plentong, Johor Bahru', 'aq taknak jd tiang lampu k -..-'), (12691, 771, 'Johore, Malaysia', 'In the bus 63 . So tired please my leg .'), (12692, 2407, 'Plentong, Johor Bahru', '@SadiqKhusyaini tak bleh..ada sentimental value..tanak beli baru..ngah pokaii...huhu..'), (12693, 685, 'Singapore', '@mggykills check out my kaadikan goodnight :)) http://t.co/ta6XT2f9'), (12694, 2867, 'Malaysia', 'ถึงสถานการณ์จะ "ติดลบ" แค่ไหน \n\nมองในแง่ "บวก" ไว้ ...แล้ว "กำลังใจ" จะมาเอง ...!!!'), (12695, 1115, 'Johor Bahru, Johore', '@heinzawwwwwww euu ok? Heart to heart talk this sau yeaq? :&gt;'), (12696, 72, 'Johor Bahru, Johore', '@ChocoBlitzzz wa. U good! :/ LOL! (Y) not bad'), (12697, 657, 'Johore, Malaysia', '@NazurahMN teman dah tahu..anda tu..haha'), (12698, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 ur parents lol...'), (12699, 138, 'Johor Bahru, Johore', '@ngzhengqin I KNOW WHO'), (12700, 2603, 'Plentong, Johor Bahru', '@iznyhaseri Hmm kan? Hmm :('), (12701, 3095, 'Tebrau, Johor Bahru', '@flyingundies wth! @JayWenSianBalls you naughty!;('), (12702, 216, 'Malaysia', '@Preeyanutt 5555 เมื่อวานไปงานบายเนียไม่เห็นเหาะเลย'), (12703, 932, 'Johor Bahru, Johore', 'So sorry.Made you took the trouble to ask them.'), (12704, 60, 'Singapore', 'i think apink''s eunji is so cute!!!'), (12705, 314, 'Johor Bahru, Johore', 'Diablo III out on my birthday,any kind souls ?'), (12706, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 @4pplegreen nk tukar apa?'), (12707, 716, 'Singapore', '@tripodmonster Then dont do okaays. :p So happy right, no need her two daays straight. ^_^ But sch re-opens,you must see her 3times a wk. :p'), (12708, 1196, 'Johor Bahru, Johore', 'Jih, itu udh paling ajib tuuuu.. Saling menguntungkan banget bay.. Lo sma gue sma2 nakfahin kan (cont) http://t.co/wwd4KpXz'), (12709, 2547, 'Johore, Malaysia', '@eveevelyn619 hey..go download viber!:))'), (12710, 3001, 'Plentong, Johor Bahru', '@Eiya98 x tukaw pn...hohohoh nk tukaw spe..junhyung ke?'), (12711, 3100, 'Johor Bahru, Johore', 'I''m at Bus 27A Towards Tampines http://t.co/FubyjQey'), (12712, 3101, 'Johor Bahru, Johore', 'Hungry again at this ungodly hour. No wonder I''m becoming fatter :('), (12713, 2867, 'Malaysia', 'อยาก มี รัก แท้ &gt; แต่ ยัง หลาย ใจ ♥ ♥ ♥\n\nแล้ว จะ อยาก มี ไป ทำ ไม &gt; เพราะ ถึง ได้ ไป...ก็ ดู แล ไม่ เป็น ?!?'), (12714, 771, 'Johore, Malaysia', 'Eww . Wrong mat -.-'), (12715, 2426, 'Johore, Malaysia', 'Mom is not at home yet -,-'), (12716, 1856, 'Singapore', '@beastdwlove nope, im not interested anymore... :/'), (12717, 2932, 'Singapore', '@rama_sobat Serius waktu kelas 5 SD itu padi baru 1 tahunan setelah ngeluarin album lain dunia, yang waktu itu lagu mahadewi lagi HIT bgt'), (12718, 98, 'Johor Bahru, Johore', '@Holy_Papa i want consult hist!!!! Ss dont need alr lah chey hahah'), (12719, 3015, 'Johore, Malaysia', 'That awkward moment when people think they''re funny, but they''re just annoying. '), (12720, 2603, 'Plentong, Johor Bahru', '@arifaisarjaafar Apa kau!'), (12721, 867, 'Johor Bahru, Johore', 'The awesome sea of pulau tinggi, im coming!'), (12722, 2236, 'Singapore', 'someone jst made my day (: okaycan , gtg ....'), (12723, 206, 'Singapore', '@msimpletontvk HEHEHEH. xDD'), (12724, 247, 'Johore, Malaysia', 'Okay, you go ahead and talk to whoever you''re talking to. I won''t disturb you. Bye.'), (12725, 309, 'Johore, Malaysia', 'Phone dying &gt;.&lt;'), (12726, 2426, 'Johore, Malaysia', 'Stop arguing with me priest -,-'), (12727, 309, 'Johore, Malaysia', 'NOOOOOOO'), (12728, 720, 'Plentong, Johor Bahru', 'goodnight sis @chelseaolivia92 ;]'), (12729, 1950, 'Johore, Malaysia', '@dreamh_igh NO Scared:D iamhere LOL'), (12730, 2275, 'Johore, Malaysia', 'Woohoo (@ Hooters) http://t.co/LNt6s0TI'), (12731, 5, 'Johore, Malaysia', 'I don`t feel so #foreveralone today .'), (12732, 487, 'Johore, Malaysia', '@supernicolee ikr !!!!'), (12733, 2372, 'Johor Bahru, Johore', 'Every girl deserves a guy that can make her heart forget it was broken.'), (12734, 115, 'Johor Bahru, Johore', 'My Mockingjay pin and my hero &lt;3 @Happyboi_95 http://t.co/emefrnBp'), (12735, 771, 'Johore, Malaysia', 'I wish I could strangle someone and break their neck without feeling guilty .'), (12736, 1465, 'Johore, Malaysia', '@StarsandDusts_ @aliciamutheardy he shld! I think. If he can rmbr me means he can rmbr all of us i guess'), (12737, 1108, 'Johore, Malaysia', 'He fell asleep. :)'), (12738, 206, 'Singapore', '@msimpletontvk LOLXD'), (12739, 1686, 'Johore, Malaysia', '@AchyqSanSan 9 ke 10??'), (12740, 3097, 'Johore, Malaysia', 'my dil goes mmmmmm. :P'), (12741, 2611, 'Malaysia', 'RT @pciousz: หากอยากให้อร่อย ต้องมั่น "ชิม" ชีวิตบ่อยๆ ขณะลงมือทำ - นิ้วกลม #PCz1'), (12742, 3103, 'Johor Bahru, Johore', 'With Meiyi Lim, Xin Yi Lim, Hwee Ling (@ Thasevi Food (Jalan Kayu Prata)) http://t.co/Ifd7gQ9C'), (12743, 3104, 'Johore, Malaysia', '@wei_ge why cannot follow??'), (12744, 2118, 'Singapore', '@LoveRasul @Hazrulium really? so apa plan ni skrang?'), (12745, 1572, 'Johor Bahru, Johore', '@nikiakila Syafiq nvr pick up my calls'), (12746, 460, 'Johore, Malaysia', 'Seems like there''s really nothing I can do.. I can''t change the fact or change anything which are meant to happen'), (12747, 2162, 'Johor Bahru, Johore', 'I''m at Fajar LRT Station (BP10) (Singapore, Singapore) http://t.co/jhxfKvqr'), (12748, 1847, 'Plentong, Johor Bahru', '@Dkamilaa talking about ninja~ it''s related to asian~ so aq pun ninja'), (12749, 1856, 'Singapore', 'RT @whatfangirlsdo: Every fangirl will experience PCD after a concert. *PCD = Post Concert Depression #whatfangirsldo'), (12750, 1379, 'Johor Bahru, Johore', 'Go and bath la dirty bastard. Haiz too lazg'), (12751, 1528, 'Singapore', '- i want to go to Medjugorje one day.'), (12752, 3079, 'Johore, Malaysia', 'i''m fat, so fat, whatta a fatty, fatz in ma body, yo yo fatz in ma body. hi this is my song.'), (12753, 3105, 'Kota Tinggi, Johore', 'tskkkk. mum has locked herself in the room, not literally of course...'), (12754, 138, 'Johor Bahru, Johore', '@ngzhengqin That person is ahemahem. Cannot say out coughcough'), (12755, 2657, 'Johore, Malaysia', 'RT @ahweii_ : You can count on me like 1,2,3. I''ll be there.'), (12756, 311, 'Plentong, Johor Bahru', 'I''m at Anjung Tokoh Restaurant http://t.co/urgbuJaR'), (12757, 1196, 'Kota Tinggi, Johore', 'I''m at Pulau Tekong (Pulau Tekong, Singapore) http://t.co/QHwiks8A'), (12758, 1528, 'Singapore', '@goldenjayden: help me ask eh! got discount for me? =]'), (12759, 1847, 'Plentong, Johor Bahru', '@spartanZ9774 @4ppleGreen yang mana satu? yg kawin ngan arthur ker?'), (12760, 1686, 'Johore, Malaysia', '@AchyqSanSan aduiii. kau tkle amik dari dia sekarang? atau suruh dia letak luar rumah dia?'), (12761, 3079, 'Johore, Malaysia', '@PadelBlack good, because i''m fat HAHAH'), (12762, 2348, 'Pulai, Johor Bahru', '@aenjohari @FarhanaJohari @noorfaraaida bukan ko ✗ lama lg kerja kat tmpt maksu ke?dah kerja boleh la beli dp canggih http://t.co/gUydVm4S'), (12763, 2561, 'Johor Bahru, Johore', 'Stay at home say i rot,lazy! I go out say i will learn bad, keep spending money! What you wan me to do luh?!?!'), (12764, 2948, 'Johor Bahru, Johore', 'I''m at Blk 647 Ang Mo Kio Avenue 6 (Singapore) http://t.co/Fje4qSHT'), (12765, 3105, 'Kota Tinggi, Johore', 'how to ask about tmr siaaaa.'), (12766, 2936, 'Johore, Malaysia', 'wooooo , da rank 36 .. ~ ahahaha #shioksendiri'), (12767, 1349, 'Johore, Malaysia', '@xing_shing @rinabanana @lkmariquit ay ga collect pa ang miga mo! ga hulat HERMES ang ihatag sa milyonaryo nga suitor!'), (12768, 3096, 'Johor Bahru, Johore', '@HHYYIsBored Wah. Scared me leh-,-'), (12769, 718, 'Johor Bahru, Johore', '#PeopleIWantToMeet Randy orton !'), (12770, 138, 'Johor Bahru, Johore', 'Who''s planning for the next #2Lclassouting ? HAHAHAHAHHA'), (12771, 2939, 'Johor Bahru, Johore', '@inday_regel @zuchie_25 @ajbrenix moonface rah lage naa, ryt @AJBrenix ? '), (12772, 3107, 'Johor Bahru, Johore', 'awww, you''re so fake.'), (12773, 173, 'Johore, Malaysia', '@EVANNIEBOOB MY BIRTHDAY WAS LAST WEEK HINT HINT'), (12774, 131, 'Johore, Malaysia', '@vampirelhe omg get well soon'), (12775, 3, 'Johor Bahru, Johore', '@skullhong Me no understand what you talking about eh? English&gt;&lt;'), (12776, 3097, 'Johore, Malaysia', '@DurgiB watched alr?'), (12777, 2877, 'Johor Bahru, Johore', 'Nelly, ask trisha to call me asap ^^ thank you (: @Surfingkids98'), (12778, 1376, 'Johore, Malaysia', '@aviantese ???? huhhhh?'), (12779, 2503, 'Johor Bahru, Johore', '@luvshow4ever 哈哈!也對啦~不過除了她,還有jem!!'), (12780, 720, 'Plentong, Johor Bahru', 'malam ni takde pulak orang twit #KalauCrushAku blablabla . hahaha'), (12781, 558, 'Johor Bahru, Johore', 'I''m at nex (Singapore, Singapore) w/ 18 others http://t.co/u8xJ1opr'), (12782, 2994, 'Johore, Malaysia', '@Heaterly i hate you. I have work till like 9+ for the weekends. Burnt. But got pay increase!'), (12783, 1451, 'Johor Bahru, Johore', 'I''m at Changi International Airport (SIN) (Singapore, Singapore) w/ 13 others http://t.co/zDR6WFzc'), (12784, 771, 'Johore, Malaysia', 'How the fuck did this idiots have money in the middle of the month to get the new iPad ? Lol .'), (12785, 98, 'Johor Bahru, Johore', '@Holy_Papa oi!!!!!! ):&lt; fine lah hahah'), (12786, 1503, 'Johor Bahru, Johore', '@iShotRomeo94 knp? Kan kalau mkn lagi sihat...'), (12787, 82, 'Malaysia', 'นั่งดูหนัง-ละคร-โฆษณา-เอ็มวี ครอบครัวฉัตรบริรักษ์ ย้อนหลัง'), (12788, 720, 'Plentong, Johor Bahru', 'malam ni takde pulak orang twit #KalauCrushAku blablabla . hahaha [Like it? http://t.co/r6I0eZpU ]'), (12789, 718, 'Johor Bahru, Johore', '5% great !'), (12790, 1506, 'Johore, Malaysia', 'CouchSurfing Singapore meetup. (@ Zsofi Tapas Bar) http://t.co/W3oazJ5Q'), (12791, 1816, 'Johore, Malaysia', '@qracexDD @zaikiawayne @bbobbstar LOL?? KAY. WASSUUPP'), (12792, 3108, 'Johor Bahru, Johore', '@bawangmerahw01 like who eh'), (12793, 3105, 'Kota Tinggi, Johore', 'omg. LMFAO coming to M''sia. hurry come to SG.'), (12794, 2584, 'Singapore', 'why ? RT @gadislingling Sok cakep !'), (12795, 2868, 'Johore, Malaysia', '@AchaGitaVryn kakak tau jawabanya okeh'), (12796, 5, 'Johore, Malaysia', 'Lapar arh . Nk gy dapur carik makanan :))'), (12797, 627, 'Johor Bahru, Johore', 'Need to go to school alone tmrw. Now i realize that all this while i''m a loner. Sad life i have there'), (12798, 3109, 'Johore, Malaysia', '@heypepey haha lagi na lang!!'), (12799, 1905, 'Johore, Malaysia', 'http://t.co/8VLmdAxq orang gila, pembunuh, penjahat kemanusiaan. This is why I prefer western culture. Open minded n gak kampungan'), (12800, 897, 'Johore, Malaysia', '@shirlyntoh @blehtan @ianleezx HAHAHAA. REALLY UH?! Never see him violent before eh.'), (12801, 2603, 'Plentong, Johor Bahru', '@ShukriHani Hhhhahahha lol salah I mean ak mungkin saya ahh satu lagi xD'), (12802, 2017, 'Johor Bahru, Johore', '#BestThingAboutBeingSingle Freedom ~'), (12803, 2803, 'Malaysia', '@chanakarn_kook tao !!'), (12804, 3061, 'Johor Bahru, Johore', 'Mmdappp mcspicy!!! Jemput people. http://t.co/3xzqPVwe'), (12805, 3085, 'Johore, Malaysia', '@AliahWilliams hehe :P'), (12806, 771, 'Johore, Malaysia', 'Love like this may come once .'), (12807, 51, 'Johor Bahru, Johore', '@ManMathers nanti paitau lagi . Hmmmmm:/'), (12808, 3110, 'Plentong, Johor Bahru', '@nurfatiny ccccccccccccccooooooommmmmmmmeeeelllllll'), (12809, 3095, 'Tebrau, Johor Bahru', '#7AraStayTogether must stay together! Not one more, not any less;)'), (12810, 2927, 'Johore, Malaysia', 'Who is that???'), (12811, 1847, 'Plentong, Johor Bahru', '@intanska hmmm adam adam'), (12812, 2867, 'Malaysia', '[ มาตามหา "รักแท้ ♥" กันดีกว่า! ]'), (12813, 3111, 'Johor Bahru, Johore', 'Need half more to go.'), (12814, 2574, 'Riau, Indonesia', '@olfaresha hahah,,ingat kamu kook,,sama2 masak kita kaaan,, :D'), (12815, 504, 'Johor Bahru, Johore', ':D Oh Wolfie and Eric. XD http://t.co/klTn6x3f'), (12816, 1465, 'Johore, Malaysia', '@JermaineROXXXXX ooolllaallaa who ah ;)'), (12817, 1503, 'Johor Bahru, Johore', '@JuetaVAIN hi'), (12818, 1369, 'Johore, Malaysia', 'RT “@amnrindr: Help.”'), (12819, 1196, 'Johor Bahru, Johore', 'Aaaaahhh sila''u... Martole tuuuu enak bay.. RT @bachryans: @Kingnugraha preeeeeetttttt banget hahaha http://t.co/dJc2pQl4'), (12820, 3, 'Johor Bahru, Johore', '@ian_ianization and @kimberly_chia very cute sia&lt;3'), (12821, 3026, 'Plentong, Johor Bahru', '@izzaynAA mak aku kena ajar esok .dia suruh aku yg taip .buat summary sendiri .dahlaa SASTERA !hate that &gt;&lt;'), (12822, 25, 'Singapore', '@pinkneonchains TURN OFF THE PHONE! HAHAH'), (12823, 3068, 'Indonesia', '#7AraStayTogether @pjy1234 im so bad'), (12824, 1686, 'Johore, Malaysia', '@AchyqSanSan hahaa. kau kan night rider. kk.'), (12825, 2948, 'Johor Bahru, Johore', 'Yay reach home  (@ ♡♥Home ♡♥) http://t.co/p7JOMw9i'), (12826, 2474, 'Johore, Malaysia', 'Funny how i rather hurt myself than seeing u hurt.'), (12827, 637, 'Singapore', '@Jaaagiii go and celebrate lah!!'), (12828, 778, 'Kota Tinggi, Johore', 'Some memories don''t just go away, no. They hang on.'), (12829, 2986, 'Singapore', 'When I bought these, the uncle said, ''You like a lot of bands''. Hahaha heck yes ! The Paramore one is for Lela. http://t.co/IefWYBYw'), (12830, 3112, 'Kota Tinggi, Johore', 'http://t.co/N9wAfYNr'), (12831, 3099, 'Johor Bahru, Johore', '@Syzmeen dah dah bru smpai ni. kenapa?'), (12832, 285, 'Singapore', '@AnatiSimpson 6 je :p'), (12833, 3113, 'Johor Bahru, Johore', 'I''m at Kian Eng''s Home http://t.co/AK5Kn5tI'), (12834, 3001, 'Plentong, Johor Bahru', '@FarahJumadi mmg comel glerr..ein berangan je die wink kat ekin..hehe x ske tengok bora'), (12835, 1190, 'Johor Bahru, Johore', '@imYONJUN my batch match got one guy called Zhi Yuan'), (12836, 2930, 'Johore, Malaysia', '@thatAfroboy pck amcm lu??'), (12837, 3079, 'Johore, Malaysia', 'sooooo can''t wait for school tomorrow. really really cant wait to wake up 7 in the morning. so eggcited'), (12838, 3114, 'Johore, Malaysia', 'HAHAHAHA TELURCITED ('':'), (12839, 771, 'Johore, Malaysia', 'I sleepy can ? Eh never check Facebook the whole day . Brb :)'), (12840, 716, 'Singapore', '@yongjiannn @JaylonJiAn Student Leadership&gt;&lt;'), (12841, 2196, 'Johor Bahru, Johore', '@Plockygeeks HAHA! You want Japanese butt right? I know who has it. Brandon!'), (12842, 3115, 'Johore, Malaysia', 'I''m at Horizon Towers (Singapore, Singapore) http://t.co/5vooNmQp'), (12843, 1882, 'Johore, Malaysia', 'I want to see the world together with you(:'), (12844, 2939, 'Johor Bahru, Johore', '@Zuchie_25 @ajbrenix @inday_regel di nako kaabot ni @AJBrenix , uli ko sa July 1st &amp; 2nd week '), (12845, 2474, 'Johore, Malaysia', 'It''s just a phase i''m going through.'), (12846, 3112, 'Kota Tinggi, Johore', 'http://t.co/b9JjcwqV'), (12847, 494, 'Johor Bahru, Johore', 'Kekek sia talkbox ngan nie 2 @farrahtyga @Nabilahyani'), (12848, 98, 'Johor Bahru, Johore', 'I love u jaystomp xx'), (12849, 1369, 'Johore, Malaysia', 'hahhahaha @azwanjamil wan help me please RT “@NRLHDH: HAHAHAHAHHA Farhan masih ah nk RT tweet sendiri?”'), (12850, 3116, 'Singapore', 'wanna sleep'), (12851, 2932, 'Singapore', '@rama_sobat sudah - kelupaan tadi'), (12852, 206, 'Singapore', '@msimpletontvk taetop = cuteness overload! :3'), (12853, 3117, 'Johore, Malaysia', 'Rise above it.'), (12854, 2372, 'Johor Bahru, Johore', 'Tell her every night before she goes to sleep just exactly how much she means to you.'), (12855, 2063, 'Plentong, Johor Bahru', '@nazmiafiq @LeeAmin_ yeke fiq?aduh bru smngat.obvious gle ke calarnya tu?'), (12856, 1115, 'Johor Bahru, Johore', '@HamburgerBAOBAO wanxuan! Where euu fly wrhhh'), (12857, 1116, 'Johor Bahru, Johore', 'You will get a free ride in a police car if you shoplift in this shop. Hmm.. Sounds good.'), (12858, 1465, 'Johore, Malaysia', '@aliciamutheardy @starsanddusts_ HAHA DEN HURRY GO MAKE AN OUTING! AFTER MYE TOO LONG ALR! :p'), (12859, 98, 'Johor Bahru, Johore', '@Holy_Papa good! :P'), (12860, 2867, 'Malaysia', 'ชั้ล !! ไม่ได้ตอแหล &gt; แค่ไม่แคร์สื่อ ..'), (12861, 1373, 'Johor Bahru, Johore', 'Having fake relationship ? Kirekn cool ah tu -___- tskkkk'), (12862, 2444, 'Plentong, Johor Bahru', '@EzHaNHaKeEm Kau kene botak jugak ke?Kesiannyaaaaaaa :P'), (12863, 37, 'Johore, Malaysia', '@hazmicurtin_ @HxziqRodriguez Had so fcuking fun skating with you guys ! Many of us had a big achievement today !! 360flippin'' banksTObank !'), (12864, 3111, 'Johor Bahru, Johore', 'Oh yeah!'), (12865, 2603, 'Plentong, Johor Bahru', '@iznyhaseri Yeahh tapi tak lah satu skolah kannn? Lagipun nak gossip pun dah tak tahu mcm mana nak cerita kann? -.- hiihi'), (12866, 3112, 'Kota Tinggi, Johore', 'http://t.co/8J8wRYxq'), (12867, 3118, 'Tebrau, Johor Bahru', '@PrinceSamuelz u brought a new phone adlr,nv wait for me!!Hahas!since U got galaxy s2 ,u must go play draw something ok!!!'), (12868, 1541, 'Johore, Malaysia', '#7AraStayTogether soyeon ! Jiyeon! Boram so cute!'), (12869, 25, 'Singapore', '@ThatRottenApple Chill la... alrdy say sec 1 kid ....'), (12870, 2923, 'Singapore', '@sixBUTTERSCOTCH Not much?! I died doing it.'), (12871, 569, 'Johore, Malaysia', 'FML IM SRSLY FALLING FOR YOU HAHAHAH SHIAT'), (12872, 3097, 'Johore, Malaysia', 'omg was walking at bugis street and suddenly this afgan man started talking to me _|_ was with \n@shrnnkr'), (12873, 58, 'Malaysia', '@Bverzlyy @patt2534 เอิ่มมมมมม !'), (12874, 1195, 'Johore, Malaysia', 'Nice strawberry beer! (@ Beer Market) http://t.co/fbaATi0t'), (12875, 206, 'Singapore', '@msimpletontvk BUTTER AND DIGESTIVE BISCUITS :D &lt;3'), (12876, 2967, 'Plentong, Johor Bahru', '@theJimidz hahahahah really ? fahmi 170cm kot..woooo..tak boleh bayangkan..how ur majlis ?'), (12877, 487, 'Johore, Malaysia', '我想就这样牵着你的手不放开\n爱能不能够简简单单没而伤害'), (12878, 1528, 'Singapore', '@xKENKENCANx: no.'), (12879, 2867, 'Malaysia', 'ชั้ล !! ไม่ได้จับปลาสองมือ &gt; ก็แค่มันเลือกไม่ได้ ..'), (12880, 768, 'Johor Bahru, Johore', '@DrCrane8 haha! Mag self breast exam na Lang!'), (12881, 803, 'Johor Bahru, Johore', 'I''m eating now -.- fuck'), (12882, 2980, 'Riau, Indonesia', '@ikaputri_lovers yayay !! -___-"'), (12883, 569, 'Johore, Malaysia', '@forgotblueberry I AM IN LOVE'), (12884, 3013, 'Kota Tinggi, Johore', 'Do all librains give in to other''s likes that they completely forget theirs?'), (12885, 1349, 'Johore, Malaysia', '@rinabanana @xing_shing @lkmariquit huo my ara!! gn pakita bala from thailand and hongkong!! hmmm!'), (12886, 2939, 'Johor Bahru, Johore', '@inday_regel @zuchie_25 @ajbrenix weh? manila jud? if I know nakasakay naka '), (12887, 2657, 'Johore, Malaysia', 'I dun like xinmsn ! laggg like *&amp;()*^)*%@^%'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(8) NOT NULL auto_increment, `username` varchar(128) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3119 ; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`) VALUES (1, 'DavidDongYuNan'), (2, 'IamSharkyz'), (3, 'stitchyrach_'), (4, 'LimHoney'), (5, 'MS_SHRAH'), (6, 'vieeechan'), (7, 'Sheehmint'), (8, 'keamberley'), (9, 'haikalprettyboy'), (10, 'ImNearlyFifteen'), (11, 'playpaperplanes'), (12, 'LimJiaQi2298'), (13, 'aparonomasiac'), (14, 'KenS_thought'), (15, '_YanLixD'), (16, 'AnnnaLindsay'), (17, 'farhan_fitri'), (18, 'WildMonkeys_'), (19, 'shirokhai'), (20, 'wirarev'), (21, 'elfaiiz'), (22, 'redcheezy'), (23, 'chomhyunism'), (24, 'dearpororo_'), (25, 'LepakAhhhhh'), (26, 'HaikalHidayat'), (27, 'Fidz619'), (28, 'CLOWEEEEEEEEEE'), (29, 'changelou'), (30, 'jeeneemacalinao'), (31, 'jimmie_morales'), (32, 'DJBlinded'), (33, 'raihanaonly'), (34, 'MinnetteeeTyvm'), (35, 'Aiiroro'), (36, 'LreyuzakiKevin'), (37, '_hfque'), (38, 'uricayee'), (39, 'YayaPayne'), (40, 'JazelTWY'), (41, 'afzalrumaizei'), (42, 'BLINK_STARINDO'), (43, 'BiyyShortt'), (44, 'atiqahloveLMFAO'), (45, 'ElaineTieng'), (46, 'Tinea_Pedis'), (47, 'immagummybearr'), (48, 'MurphyTYH'), (49, 'FattyFatSeng'), (50, 'fcukyeaherwany'), (51, 'Sam_Hayley17'), (52, 'AHLINGX'), (53, 'JYlessthanTHREE'), (54, 'NoviYCN'), (55, 'HTiennn'), (56, 'Eeraaahhh'), (57, 'ChingYeePinkz'), (58, 'Bverzlyy'), (59, 'eggyeo'), (60, 'WEIQINGZ'), (61, 'veradesu'), (62, 'ForeverChronic'), (63, 'RADIYAHBEGUM'), (64, 'eat_adakimasu'), (65, 'katycat_amelia'), (66, 'Linnsalleh'), (67, 'ClarenceSim53XY'), (68, 'IlfaAzlyani'), (69, 'ludviknan'), (70, 'Genieshanu'), (71, 'Siencong'), (72, 'Wesleyteooo'), (73, 'JoanneNytBieber'), (74, 'nicholas_shinee'), (75, 'limgallen'), (76, '_shweyaung_'), (77, 'bustyournuts'), (78, 'JunJieDaddy'), (79, 'fazyla_zyla'), (80, 'alfianatasha'), (81, 'Mockery_Fuckery'), (82, 'pngpk26'), (83, 'r6ystaarr'), (84, 'shanshan1810'), (85, 'Fauzi_Sepet'), (86, 'tuahfadlee'), (87, 'siyingxyz'), (88, 'Ezatwahab'), (89, 'jamesly123'), (90, 'abrahamsjames'), (91, 'x3Rai'), (92, 'Riofafa'), (93, 'xdxlxy'), (94, 'Mickxzy'), (95, 'ImanHeng'), (96, 'happyguy98'), (97, 'syahirahmuda'), (98, 'hyuneffect'), (99, 'BoboBlingBling'), (100, 'senweelee'), (101, 'Supaporn_aom'), (102, 'Shaffiq_Nasron'), (103, 'samuel_gunalan'), (104, 'leen1262'), (105, 'SunnyYeeSee'), (106, 'HeyyoItsWAC'), (107, 'jeremyteapot'), (108, 'DerickTetsuya'), (109, 'ennirrinne'), (110, 'joke_the_great'), (111, 'DCYM_'), (112, 'NuChaRy_PY'), (113, 'dare_yeo'), (114, 'spaycyindy'), (115, 'Winonicorn'), (116, 'tritamaraa'), (117, 'AllyXanderz'), (118, 'tedditan'), (119, 'GeorgieeBoy96'), (120, 'wendydcruz'), (121, 'jonlxh'), (122, 'Natty_Fjt'), (123, 'ZEOGIO'), (124, 'nurilovestobet'), (125, 'GoWhiny'), (126, 'xxunwei'), (127, 'EuniceMimi'), (128, 'RisingSilver'), (129, 'ayulabdullah'), (130, 'Heyy_Summer'), (131, 'endlesscookie'), (132, 'CryofMelancholy'), (133, 'sakanayaK'), (134, 'HeyItsAzizzat'), (135, 'zoomDArocket'), (136, 'ItsMeRszy'), (137, 'tmarcus68'), (138, 'LenerDee'), (139, 'Sleepy_Piggy'), (140, 'FelindaLeaf'), (141, 'giancarlochua'), (142, 'DhiaDurriah'), (143, 'Areenah'), (144, 'MyNameIsFazz'), (145, 'rajmanisharma1'), (146, '_sarahmalik'), (147, 'syafiiklil'), (148, 'aikobanana'), (149, 'mangofroyo'), (150, 'LayminTaemin_'), (151, 'prie0802'), (152, 'mierlemurr'), (153, 'zikry_ahmaad'), (154, 'Firezal'), (155, 'celesthatezzyou'), (156, 'dylankkap'), (157, 'Lowisal'), (158, 'domhermandayda'), (159, 'ShiYingggg'), (160, 'NorvannLOLS'), (161, 'GCZuli'), (162, 'shah_husaini'), (163, 'Ckytveryshiny'), (164, 'iziizzati'), (165, 'Bryonyxoxovines'), (166, 'SyafiqahSubucty'), (167, 'WafiAmran'), (168, 'hoqirui'), (169, 'Meow_Rolf_Oink'), (170, 'Lownut'), (171, 'Nununu_08'), (172, 'mansur227225'), (173, 'Kumarwood'), (174, 'nxdz'), (175, 'MissYanXing'), (176, '18TH_century'), (177, 'yangbunny'), (178, 'EvansBassOxh'), (179, 'YervanYang'), (180, 'InaaLoves'), (181, 'braidedroses'), (182, 'RedaAzraei'), (183, 'YessicaMEP'), (184, 'alicianielle'), (185, 'Ahdyla'), (186, 'brendafizzy'), (187, 'crazylilgurlX'), (188, 'NatashaRenalz'), (189, 'Adelinetyl'), (190, 'lindadadada'), (191, 'HaneyBarney'), (192, 'ekanoorezan'), (193, 'martian09'), (194, 'twistaaaan'), (195, 'AaronElla23'), (196, 'mr_niceguy95'), (197, 'MuhammadBushra'), (198, 'sslybyy'), (199, 'go_ryan_go'), (200, 'frostytales'), (201, '_bbbiqi'), (202, '_SHEILAxoxo_'), (203, 'JeffreyCQY'), (204, 'MsAcidBurn'), (205, 'TanteNyinyir'), (206, 'Achaximum'), (207, 'GAMERAGAMES'), (208, 'HoyJemBoy'), (209, 'lauwsh'), (210, 'msjoannee'), (211, 'eiimaaaa_'), (212, 'tinysen91'), (213, 'Affiq_Artisme'), (214, 'BrandonIsLiam'), (215, 'HAWWITH_2'), (216, 'jeedsnong'), (217, 'fongmaymay'), (218, 'TAzSLACKER'), (219, 'gerald_tmx'), (220, 'AmiraStarvampz'), (221, 'Lonelyboy1995'), (222, 'lovelikekozue'), (223, 'LucusLer'), (224, 'djeuNkTweet'), (225, 'ElyaAzura'), (226, 'theadventuRYZt'), (227, 'goddielocks'), (228, 'Norshafiq_'), (229, 'azyintl'), (230, 'UliEstheria'), (231, 'farizj'), (232, 'deadhammiie'), (233, 'FeLyLoveD'), (234, 'juleskyim'), (235, 'HuiQing25'), (236, 'NarniaUnicorn'), (237, 'socialboysBOYKA'), (238, 'FadhTrwh'), (239, 'gummystars'), (240, 'yanteen_'), (241, 'ItsyBitsySp1der'), (242, 'JamesOnTilt'), (243, 'AdaApaDgnDauz'), (244, 'Jessicaxes_Lee'), (245, 'MatthewSeanWH'), (246, 'XENAGIAM'), (247, 'CatchNoBalls'), (248, 'RockyHWK'), (249, 'chui_thing'), (250, 'amirshaw'), (251, 'ChrisNichVinFoo'), (252, 'AhJonAh'), (253, 'sxgarlips'), (254, 'iamLPolaris'), (255, 'almalexisesh'), (256, 'faialves'), (257, 'missylauu'), (258, 'iBieberGal'), (259, 'miingarmiing'), (260, 'leofausi'), (261, 'Candice_huihui'), (262, 'ibanez_sun'), (263, 'SLavigneZHao'), (264, 'anggitarizki'), (265, 'Wwindrian'), (266, 'MisharyDarwish'), (267, 'AskSirStamford'), (268, 'F4LL3NANGXLS'), (269, 'khadijahaljaru'), (270, 'Tama_Taipi'), (271, 'ahshiqs'), (272, 'siti_nadiah'), (273, 'mrjoelchua'), (274, 'TravisEMP'), (275, 'frappeliciousQT'), (276, 'S3XDRUGZVODK4'), (277, 'azrul1996'), (278, 'yangz1990'), (279, 'juliachia'), (280, 'casiachew'), (281, '8_frame'), (282, 'nadiwah'), (283, 'nineofthirteen'), (284, 'RoxieUdan'), (285, 'RizalZirca'), (286, '93Acik'), (287, 'MiraahOhMiraah'), (288, 'dirtratz91'), (289, 'XINYUx'), (290, 'FlyingVMNT'), (291, 'kumpoge'), (292, 'y04chs405'), (293, 'angustancj'), (294, 'Berlinda_lolly'), (295, 'LiyanaPradipta'), (296, 'MarkM_Seiei'), (297, 'clementclchai'), (298, 'kyc12398'), (299, 'FakrulAirul'), (300, 'smudgedkisses'), (301, 'Jill_Lie'), (302, 'agrimsingh'), (303, '_xiaofei'), (304, 'njkrut'), (305, 'Netteftw'), (306, 'MelvynFranco'), (307, 'GermaineCs'), (308, 'rubeccawyx'), (309, 'leonhoi'), (310, 'be_happyhoney'), (311, 'FahmiNorddin'), (312, 'okl1970'), (313, 'jimieyas'), (314, 'shiyuannnnn'), (315, 'AndrewCMK'), (316, 'webmetricsguru'), (317, 'MrBrian69'), (318, 'MielSteveO'), (319, 'Devotedzxc'), (320, 'AidahIshidah_'), (321, 'moko_40dgs'), (322, 'ChervinaT'), (323, 'JasmineSooVin'), (324, 'ansyakieerahh'), (325, 'atiqaaaaaah'), (326, 'tkgii'), (327, '_srwti_'), (328, 'XDtim0tee'), (329, 'yadri_alwi77'), (330, 'iZacchMatt'), (331, 'hxjeje'), (332, 'Madeliciaaa'), (333, 'PrimasLoveFTI'), (334, 'TwoScenarios'), (335, 'sintacute90'), (336, 'princessFieza'), (337, 'NurseAnnaBanana'), (338, 'Asphyxiated_'), (339, 'ah_kidd'), (340, 'SitiLurvsHa_Ha'), (341, 'MObliopa'), (342, 'airil_91'), (343, 'AmandaCYY'), (344, 'xiiaoqiing'), (345, 'kireydesune'), (346, 'taleeey'), (347, 'melissalye'), (348, 'hazrinshhh'), (349, 'NaomiThirteen'), (350, 'BOWEE_'), (351, 'himynameisadli'), (352, 'JericoWarr'), (353, 'ribbonrocket'), (354, 'isvetserrano'), (355, 'IAM_JEANNe'), (356, 'michaeldickens8'), (357, 'dummy_buttmunch'), (358, 'pollyow'), (359, 'frenziedhearts'), (360, 'DadandMomsZin'), (361, 'respublica85'), (362, 'fernchayanit'), (363, 'xuansaymyname'), (364, 'yellowbokeh'), (365, 'fiqaism'), (366, 'Alonelwalk'), (367, 'azizulhaizum'), (368, 'mdandybk'), (369, 'jjianwwen'), (370, 'beila_syahirah'), (371, '_syidan'), (372, 'IamShineChavez'), (373, 'SpadeOfHades'), (374, 'BLOOwhiteSKIES'), (375, 'Ikemai_Stevadit'), (376, 'nubu515'), (377, 'LaineMKamal'), (378, 'delboywilson'), (379, 'Izharaaa'), (380, 'jienilicious'), (381, 'nabilah_hashim'), (382, 'melody_low'), (383, 'WalaoKat'), (384, 'EndeBatak'), (385, 'ronaelaineq'), (386, 'nurafza87'), (387, 'cmmak'), (388, 'DearestBenson'), (389, 'Raychua731'), (390, 'Pixi3Dust_'), (391, 'Jerbel12'), (392, 'superbtastic'), (393, 'MSNizzammm'), (394, 'd0uxarmour'), (395, 'Miichellewong'), (396, 'bittersweet1998'), (397, 'kellieroland'), (398, 'Ami_Noor'), (399, 'floppyearred'), (400, 'cikzaa'), (401, 'ZHUANMEI'), (402, 'JiayuLau'), (403, 'Sugarcoatkiss'), (404, 'Joeycries'), (405, 'CoryBorjun'), (406, 'krystalisticx'), (407, 'ros3bull3tbang'), (408, 'waitonyou'), (409, 'joel_cokeaholic'), (410, 'congoslave'), (411, 'WhyYouDamnCute_'), (412, 'NERDarmyboy'), (413, 'thickskinben'), (414, 'miszbam'), (415, 'pairuuz'), (416, 'BonDih'), (417, 'vinheckenbucker'), (418, 'yaong95'), (419, 'swaggergyu'), (420, 'kvijaynathan'), (421, 'KIMB3LLY'), (422, 'ItsAlwaysAmmar'), (423, 'fchristono'), (424, 'mohammedsalamat'), (425, 'Simple_Faizul'), (426, 'ChangMinizer_'), (427, 'Careeenlong'), (428, 'Dinzxc'), (429, 'angeluvsyou'), (430, 'NyanAliceNyan'), (431, 'shiminkoh'), (432, 'mdisa_yana'), (433, 'cintaur'), (434, 'DLitefulSG'), (435, 'SelrahcEel'), (436, 'junetwentyone'), (437, 'HonGGHonGG'), (438, 'Ins3cure_L0v3'), (439, 'Jeff_k97'), (440, 'SandraSupreme'), (441, 'Kennyzxcs'), (442, 'BrownChowcolate'), (443, 'Fatinlicious'), (444, 'LoveTalkSmiley'), (445, 'MeeyaBiebz'), (446, 'ZidOFish'), (447, 'jianghulangzi'), (448, 'Amran_Syah'), (449, 'AriesInTransyl'), (450, 'heffyflorella'), (451, 'MinMinPhyo'), (452, 'SotongAndy'), (453, 'tame_bunny'), (454, 'dianeluvsme'), (455, 'FUCKlNGDOPE'), (456, 'FIONAchy'), (457, 'ludwigyves'), (458, 'ngzhengqin'), (459, 'MynBouken'), (460, 'Neelieoh'), (461, 'shareefaptt'), (462, 'fioneberries'), (463, 'christminmin'), (464, 'charan1281'), (465, 'hazman_9'), (466, 'nadies84'), (467, 'AmalinaMudzafar'), (468, 'Maisieeeeeee'), (469, 'aeru88'), (470, 'Fifie_cutiepie'), (471, 'vincentkhoo225'), (472, 'AcapIbrahim'), (473, 'izuanmrais'), (474, 'ChongWilliam'), (475, 'Priscikwa'), (476, 'hemohemoho'), (477, 'junxianb'), (478, 'ffioneh'), (479, 'JShiqing'), (480, 'KokoMinty'), (481, 'Imsafu'), (482, 'Mummy_Noi'), (483, 'vaneeesssaaa'), (484, 'syakaeysmallboy'), (485, 'Chemist_Sim'), (486, 'mhdfaaaiz'), (487, 'jiaxinnjudd'), (488, 'H4PPYPILLS'), (489, '_chokyu'), (490, 'NorainiAris'), (491, 'xrispoh'), (492, 'StinkieStinky'), (493, 'Jykissthetree'), (494, 'ayieprangai'), (495, 'sayangecah'), (496, 'bionicles50'), (497, 'bilaaddnan'), (498, 'NoehtatLuvSuju'), (499, 'TheJeeHan'), (500, 'paparadzi'), (501, 'mariahfisher'), (502, 'junieparker'), (503, 'nixnil'), (504, 'iHammond_'), (505, 'glitzsmiles'), (506, 'xoxokiat'), (507, 'Paaavaaa'), (508, 'James4247'), (509, 'GaryyytheSNAIL'), (510, 'haroobom'), (511, 'fatboyfarid'), (512, 'ZafriSunny'), (513, 'TIMEEisMONEYYY'), (514, 'TiqahSwift15'), (515, 'ddiittaayeye'), (516, 'plwh888'), (517, 'wenditwy'), (518, 'StiffkneeLoh'), (519, 'asficatuchee'), (520, 'loveyvettez'), (521, 'gozaliabi'), (522, 'bunkbunk_mooks'), (523, 'CookieVsoy'), (524, 'karentoh03'), (525, 'yifengforever'), (526, 'MikaReyes10'), (527, 'tanyanning'), (528, 'Huiling_Vamps'), (529, 'Priscillasrm'), (530, 'gotomax'), (531, 'Priscywoo'), (532, 'helloheadgehog'), (533, 'EchoOutIce'), (534, 'GerlFarnellAlba'), (535, 'SMALLFISH__'), (536, 'Xiaowen_Ooi'), (537, 'MEOWVIN8'), (538, 'theinkha'), (539, 'WanieSyzwni'), (540, 'FundWatchApp'), (541, 'IamNOGY'), (542, 'TopRyeong'), (543, 'Garion_gr'), (544, 'SMURF_SOME'), (545, 'NizarStyles'), (546, 'chamhui'), (547, 'Junyi_Flowerboy'), (548, 'mattw0ng'), (549, 'boveey'), (550, 'dstarecoil'), (551, 'MR_6661'), (552, 'lynnerd0babe'), (553, 'gideeeon'), (554, 'KennethShaun'), (555, 'amyzxc'), (556, 'Syafyq'), (557, 'Jorry1701'), (558, 'Mount_Mark'), (559, 'wushuboi96'), (560, 'jia_jin'), (561, 'kc_ng'), (562, 'cunt_core'), (563, 'shidababe145'), (564, 'alanzj'), (565, 'nshfyyah'), (566, 'Jaacceelyn'), (567, 'putriadeew'), (568, 'paperwirestudio'), (569, 'minnmichaelhwei'), (570, 'eeralala'), (571, 'IsyaBrooks'), (572, 'akutakfemes'), (573, 'nfffffdlah'), (574, 'SEXDRUGZNHOUSE'), (575, 'YANNNI_'), (576, 'cherlicopter'), (577, 'lamchekyeow'), (578, 'wiznikhalifa'), (579, 'BellaLuvDiamond'), (580, 'SharmaineAnnesk'), (581, 'Selesire'), (582, 'thelast_embrace'), (583, 'babie9948'), (584, 'pzj20012'), (585, 'Jiaxuanseem'), (586, 'sabsyaz'), (587, 'IzuRaAeSook'), (588, 'amyang1995'), (589, 'twjian525'), (590, 'smagdali'), (591, 'kimdagreatest'), (592, 'Weeeeloon'), (593, 'kaixin_jinae'), (594, 'Realsangte'), (595, 'slippingsanity'), (596, 'alexkiefer_'), (597, 'nadiahamalinaaa'), (598, 'tohhhhliyi'), (599, 'ShinSiTiJiyoNg'), (600, 'VientoAwin'), (601, 'Kappadonna'), (602, 'craziyaya'), (603, 'ABCDubstep'), (604, 'tiantiiann'), (605, 'throughmyhearrt'), (606, 'thmummygals'), (607, '_curseofcurves'), (608, 'Bamitssammie'), (609, 'jelixjelix'), (610, 'ANISradzuan'), (611, 'Antotsang'), (612, 'jariyayahyahh'), (613, 'joeyhariko'), (614, 'blackheartesJ'), (615, 'myranengasca'), (616, 'asrizalanuar'), (617, 'nabilarazef'), (618, 'rah1606'), (619, 'amiedinello'), (620, 'justbeingarlyn'), (621, 'miravuks'), (622, 'shimhyunseonq'), (623, 'HanaHalilintar'), (624, 'JAZELiAM'), (625, 'AphelionJeremy'), (626, 'kportscher'), (627, 'roliepolierinny'), (628, 'nthwasworth'), (629, 'munishadvani'), (630, 'SooZarr'), (631, 'nufa204'), (632, 'Meeeelly'), (633, 'ValentiaXabiere'), (634, 'FLUFFYUNIC0RN'), (635, 'Farhankicap'), (636, 'HaniKumar'), (637, 'BilguunBebu'), (638, 'shawnthepok'), (639, 'zuanmingw'), (640, 'goldentrey'), (641, '_drownthecity'), (642, 'the_trackers'), (643, 'JustHaveSwag'), (644, 'YaLQ'), (645, 'murasakimushy'), (646, 'chungiii'), (647, 'rommelpatulot'), (648, 'LepakOneKorner'), (649, 'seventimestwo'), (650, 'PTE_Fatterick'), (651, 'HEYminchin'), (652, 'lelysaAF'), (653, 'Kimpuh'), (654, 'SandoVict'), (655, 'TIFFpaddle'), (656, 'sheisjiahui'), (657, 'toyZone_jr'), (658, 'mknace'), (659, 'uzaidi'), (660, 'Soedeny'), (661, 'wanatiqah'), (662, 'COLOURFULZEBRAS'), (663, 'noraasri'), (664, 'NHazeeq'), (665, 'sherlynler'), (666, 'BiasedThoughts'), (667, 'SitiNurhayati14'), (668, 'raphsays'), (669, '097353261'), (670, 'yuwenyvonne'), (671, 'imMeWeiJie'), (672, 'xuewen_me'), (673, 'TienJunnnnnnn'), (674, 'arifainsbl'), (675, '3sin1'), (676, 'acylationk'), (677, 'withyourlovexx'), (678, 'artyfakt'), (679, 'juiceyfin'), (680, 'cigaretteheartx'), (681, 'yanmi19'), (682, 'AnndreaStarr'), (683, 'doitbytheballs'), (684, 'shaneboyyy'), (685, 'shetongnurse'), (686, 'ShirliaSymphony'), (687, 'greenie_leena'), (688, 'nrlfthh'), (689, 'swearandcursed'), (690, 'LovayeRebec'), (691, 'ZhenJingKimchi_'), (692, 'Xiiangxiang'), (693, 'Zalina4143'), (694, 'kairin'), (695, 'reivad'), (696, 'ma_shi_'), (697, 'KiddRob0t'), (698, 'MINMlN'), (699, 'eyeslikepeanuts'), (700, 'afiqahyamin'), (701, 'Happymasks_'), (702, 'WeisongJi'), (703, 'YAHUIEM'), (704, 'CobyAng'), (705, 'dao_qi'), (706, 'helme3'), (707, 'SyafiqHammady'), (708, 'Batbadman'), (709, 'bljhftw'), (710, 'SS9_Monk'), (711, 'afi_stoffer'), (712, 'johanariffs'), (713, 'Acewong8818'), (714, 'lohyingying'), (715, 'Janice_rocks'), (716, 'MSXIUHUI'), (717, 'halimlatiff'), (718, 'WsonGuaiLanKia'), (719, 'Amy100788'), (720, 'AinaLyana'), (721, 'SantanicHeartsx'), (722, 'WhatMiss'), (723, 'mhazarmrislan'), (724, '9316_RyeoRa'), (725, 'vivalaserge'), (726, 'Man_SaLvaTiON'), (727, 'shasha17n'), (728, 'MindychuaMindee'), (729, 'DanialFuntard'), (730, 'psampaiobh'), (731, 'Vj_Extazy'), (732, 'TylerWangJiling'), (733, 'wTone_'), (734, 'BieberOnMyiPod_'), (735, 'HooJiongSheng'), (736, 'brandonming'), (737, 'sarahstrummer'), (738, 'Gerlyngerlyn'), (739, 'humchimpeng'), (740, 'unlockEIS'), (741, 'N0WMD'), (742, 'fiqahsmurfyou'), (743, 'Remus_Teo'), (744, 'kelvinhadinata'), (745, 'JkDolph'), (746, 'HJunyuan'), (747, 'khairulnz'), (748, 'Jason_Stanly'), (749, 'clovergirl106'), (750, 'wanaldo'), (751, 'g0rjez'), (752, 'WonkishTofu'), (753, 'lepak_icey'), (754, 'iiamdada'), (755, 'ilovetoroll'), (756, 'egoisticlife'), (757, 'AaronZKR'), (758, 'hellyeahvin'), (759, 'AntFredVass'), (760, 'DianaBonBon'), (761, 'BeNasSkiCKeR'), (762, 'avrilamanda7'), (763, 'officialTINNO'), (764, 'glamourbeetch'), (765, 'ayu_haris'), (766, 'KeeganLZJ'), (767, 'ohmysexyy'), (768, 'vamos_marion'), (769, 'ciitra_vaniila'), (770, 'palakshana'), (771, 'Imlikearocket'), (772, 'AdikHasrida'), (773, 'SUPERADRIANME'), (774, 'georgeseah'), (775, 'Arif_dr_traffic'), (776, 'ouhmygawd'), (777, 'requiem84'), (778, 'hottyian'), (779, 'Olliedes'), (780, 'himigmarci'), (781, 'DwayneNg1'), (782, 'ciyahyuri19'), (783, 'A4Aaron'), (784, 'KlinsmannMCW'), (785, '1DHalo'), (786, 'NathanPareja'), (787, 'SylviaTandean'), (788, 'agusthins'), (789, 'franciszdenise'), (790, 'hyperfreak_'), (791, 'mryikai'), (792, 'myajacob'), (793, 'LehaWINzahir'), (794, 'Napeerapat'), (795, 'AdrianLee'), (796, 'chopininoffsky'), (797, 'rizasungkar'), (798, 'LJMjoel'), (799, 'sexyunited95'), (800, 'flyhigh_monkey'), (801, 'Albert_Hans'), (802, 'SulaimanJive'), (803, 'AdenCBP'), (804, 'dumasderauly'), (805, 'VanMidnight'), (806, 'Gabe_sundramer'), (807, 'iGrumpyGirl'), (808, 'Alivia_19'), (809, 'Reno_Fariz'), (810, 'HS8GLR'), (811, 'emmettseow'), (812, 'dewixjx'), (813, 'vic_wong'), (814, 'IHeartSunny'), (815, 'Fusionistx64'), (816, 'Elmots'), (817, 'siao_ho'), (818, 'LAzyBONes09'), (819, 'Ashtarowth'), (820, 'dsesaria'), (821, 'adla_aulia'), (822, 'DanAbong'), (823, 'PR3TTYBITCH'), (824, 'aliciahuiling'), (825, 'FactsOfMeanGirl'), (826, 'meowzxz'), (827, 'itsmezulkifli'), (828, 'Drankdrunkdoll'), (829, 'BenjaminBan'), (830, 'glenvale'), (831, 'xiiinyiiii'), (832, 'limkevin4'), (833, 'shrf_n'), (834, 'CoreeDsilva'), (835, 'Airnaaah_'), (836, 'koibito_rain'), (837, 'trapwithintruth'), (838, 'JeepTaparak'), (839, 'ymanr'), (840, 'kammylele'), (841, '26_Nic'), (842, 'Jiagenn'), (843, 'nanamameen'), (844, 'Blasphemyyy'), (845, 'salang2004'), (846, 'SunshineSuriana'), (847, 'Anson_Lambo'), (848, 'LoveFuckLust'), (849, 'Itsnic'), (850, 'Dear_Yui'), (851, 'JoelCjww'), (852, 'AhyingHehe'), (853, 'carlosmelia'), (854, 'ChongJiaMingx33'), (855, 'NicolasMas'), (856, 'kennethtay86'), (857, 'NicholasNe0'), (858, 'NazmiMajdi'), (859, 'Xanthe_Lee'), (860, 'Syuomi'), (861, 'dwarfiq'), (862, 'Kiankunn'), (863, 'AzharJb'), (864, 'DavidhoeTC'), (865, 'ila_alda'), (866, 'soshigurl'), (867, 'RebelliousNerd'), (868, '_Jingsheng_'), (869, 'wiko84'), (870, 'Hdyhrszxc'), (871, 'ribbonandlaces'), (872, 'ChuwiSam'), (873, 'anameizing'), (874, '_nurhdyh'), (875, 'isalihin'), (876, 'FerlinnnnnnChia'), (877, 'mandamusicgal'), (878, 'EncikNazrul'), (879, 'yanies14'), (880, 'zikrulaminn'), (881, 'EldonChew'), (882, 'hamja_m'), (883, 'fatboygang'), (884, 'felicechoww'), (885, 'snowychick2005'), (886, 'KayCluelessChan'), (887, 'engkwan'), (888, 'EMtan'), (889, 'DanFreemanPhoto'), (890, 'Beawwie_maki'), (891, 'deraj_05'), (892, 'TsukiJelly'), (893, 'vinodkecho'), (894, 'SyihanAzmi'), (895, 'JustinBrownne'), (896, 'JustNialler'), (897, 'jeanisabella'), (898, 'nicolim10'), (899, 'WhoMerah'), (900, 'Syahfyy_'), (901, 'AnnieSusanto'), (902, 'moremorekaching'), (903, 'intoxicidepink'), (904, 'pohui'), (905, 'nnaziraa'), (906, 'jingkai17'), (907, 'SIR_TWEETS_ALO7'), (908, 'fadcine'), (909, 'melissamok'), (910, 'justiceteo'), (911, 'YICHEW'), (912, 'SaifuloffIcial'), (913, 'pixelatedlovee'), (914, 'Amardoherty'), (915, 'witchfreak'), (916, 'walkingtarts'), (917, 'vegemary'), (918, 'JWNY'), (919, 'craigjustintan'), (920, 'Dwenzers'), (921, 'xeshnon'), (922, 'OnceUponATim3'), (923, 'adlinaanis'), (924, '_audreyisms'), (925, 'sobiseuteu_'), (926, 'MrAhWei'), (927, 'LJ_LC'), (928, 'MiiRaaSan'), (929, 'imthegreenking'), (930, 'ErwynnSempoi'), (931, 'ahlipz'), (932, 'yixianggggg'), (933, 'KarrieLullaby'), (934, 'YesungMad'), (935, 'JcJo0'), (936, 'alzw87'), (937, 'vaomgsw'), (938, 'LikeANinjaZXC'), (939, 'LisaHeartsyouu'), (940, 'kshsharon'), (941, 'AFIQzayany'), (942, 'mardiahzahrin'), (943, 'gelatinoallegro'), (944, 'AmyIV'), (945, 'LaiLA_Hee'), (946, 'shryyfaaah'), (947, 'zzatinordin'), (948, 'Secretofheartz'), (949, 'imchubbee'), (950, 'DeeWJSK'), (951, 'yenxuyang'), (952, 'TsukiyomiHearts'), (953, 'Bernadnad'), (954, 'VerVerBlurBlur'), (955, 'Dintaifunggurl'), (956, 'joshuainnuendo'), (957, 'lolypoopp'), (958, 'choon1990'), (959, 'WitonoLouis'), (960, 'chloe_dapandah'), (961, 'ukegentleman'), (962, 'JeromeChan'), (963, '_PhyllisTan'), (964, 'GlennLibradilla'), (965, 'Changtheungkoon'), (966, 'ponytailx'), (967, 'supersura'), (968, 'AhbiLovesWQ'), (969, '91Katrina'), (970, 'RhnRaihan'), (971, 'Smileyyfacee_'), (972, 'MohammedNaif97'), (973, 'kluxorious'), (974, 'Vanessalxy'), (975, 'SarahAqilahJ'), (976, 'iflyhighhigh'), (977, 'HELLOAMANDA_'), (978, 'Ellyzachcy'), (979, 'z261311'), (980, 'fadlyelly'), (981, 'ira_noevieta'), (982, 'BennyChanTF'), (983, 'Jontok196a'), (984, 'nanarinaa'), (985, 'SharmiNazira'), (986, 'zhelin89'), (987, 'pythontan'), (988, 'angelicaelaines'), (989, 'juliet_koh'), (990, 'Ricsonkoo'), (991, 'FarhanahKhan'), (992, 'junjie995'), (993, 'CHItotheRAG'), (994, 'SinChern'), (995, 'bourne_ball'), (996, 'adrianlhk'), (997, 'nurulshaazlynn'), (998, 'JezzelMikhail'), (999, 'Hyukeys'), (1000, 'puinoons'), (1001, 'morbidintel'), (1002, 'deanbeswick'), (1003, 'miijj'), (1004, 'Shigehisa'), (1005, 'theslogreviews'), (1006, 'master__O'), (1007, 'brain_blood'), (1008, 'Huixuanzx'), (1009, 'Flyhighhhhh'), (1010, 'billysoh'), (1011, 'khaiurlshah'), (1012, 'Moh_Aditya_W'), (1013, 'adhisap'), (1014, 'kaayaAIA'), (1015, 'FIRSTJOEsmile'), (1016, 'aman469'), (1017, 'AnnSyvill'), (1018, 'zaskiazaza'), (1019, 'IrfanDesyadi'), (1020, 'SyazaaYS'), (1021, 'EugeneYongxz'), (1022, 'ElviraPeach'), (1023, 'kiankokk'), (1024, 'OheZosephine'), (1025, 'pspkpspk'), (1026, 'Locketzlies_'), (1027, 'makkyrawrss'), (1028, 'imrnw'), (1029, 'jjinster'), (1030, 'fatehfrenzy'), (1031, 'takoyakiyuri'), (1032, 'ohayimfaris'), (1033, 'iAmPacoh'), (1034, 'mhagruiz'), (1035, 'Pudding_Bebe'), (1036, 'stephanemonfort'), (1037, 'dawnleeeee'), (1038, 'D_Dxy'), (1039, '3zLe3n'), (1040, 'EqaaRawrr'), (1041, 'K13RN'), (1042, 'klerinet'), (1043, 'Ohara76'), (1044, 'kamalbagus'), (1045, 'Dogseatrice'), (1046, 'paperkittyz'), (1047, 'mugunthkumar'), (1048, 'gautami'), (1049, 'jdmdward'), (1050, 'MaomaoIglesias'), (1051, 'briancajulis'), (1052, 'daphnepocupine'), (1053, 'sansian'), (1054, 'UmairahNizam'), (1055, 'ShutingXo'), (1056, 'ErniFifiboon'), (1057, 'authmn'), (1058, 'SufiansRahman'), (1059, 'inayri_run'), (1060, 'solbrn'), (1061, 'azdani'), (1062, 'Man12529'), (1063, 'slinglee'), (1064, 'glorioushit'), (1065, 'yola_84'), (1066, 'UniqueisAwwsome'), (1067, 'musherniem'), (1068, 'IsaacNg_'), (1069, 'BigB3n'), (1070, 'munkeedi'), (1071, 'zue_nordin'), (1072, 'Tri_wwl'), (1073, 'Gibson_Liow'), (1074, 'jojo_alicia'), (1075, 'WOW_ONES'), (1076, 'renshirosawa'), (1077, 'ttppcuppycake'), (1078, '_FELLY'), (1079, 'smuconlaw'), (1080, 'HAHAHASOOFUNNY'), (1081, 'jeremiah_MIA'), (1082, 'gregFSJ93'), (1083, 'MuhdHykal'), (1084, 'jaleesaagain'), (1085, 'thegurl95'), (1086, 'theloserashley'), (1087, 'haqeelsamsuri'), (1088, 'FahmiOwL'), (1089, 'xing_fu82'), (1090, 'annuncia123'), (1091, 'J0SEPH_XD'), (1092, 'muhd_nasrulhaq'), (1093, 'Clefttheboychin'), (1094, 'Ckevin69'), (1095, 'JingshunLi'), (1096, 'Chyhobbs'), (1097, '_chocoholic'), (1098, 'zainireidenbach'), (1099, 'SagiJoeyi'), (1100, 'P0nyL0rd'), (1101, 'Syahirah_KhAi'), (1102, 'takiyoakimo'), (1103, 'sillyding93'), (1104, 'anksbtu'), (1105, 'kitein38'), (1106, 'joycejoycehuihu'), (1107, 'asdfghjkllogic'), (1108, 'crosspinky'), (1109, 'gamerz'), (1110, 'louizeeeeee'), (1111, 'valerietxy'), (1112, 'KamalTheStrange'), (1113, 'Geoffreeeey'), (1114, 'ngurah1241'), (1115, 'yanwu02242011'), (1116, 'Ep98_'), (1117, 'Andrewzxc'), (1118, 'happyhianjing'), (1119, 'lordpai'), (1120, 'NasiGorengBabi'), (1121, 'Amirulism'), (1122, 'KhafizohIndah'), (1123, 'miyagi'), (1124, 'naomi_eee'), (1125, 'cha2holic'), (1126, 'IANTANNNN'), (1127, 'RidzwanIsTorres'), (1128, 'FadhliWooddy'), (1129, 'unicornswags'), (1130, 'AfiqahAhmed'), (1131, 'beckyiloveyou'), (1132, 'zaxecandy'), (1133, 'mat_Jepa'), (1134, 'muhdNaza96'), (1135, 'MeiTingxD'), (1136, 'mameaw_kitty'), (1137, 'yvettepp11'), (1138, 'nicholasrandomz'), (1139, 'Bennssoonn'), (1140, 'BLUSHITe'), (1141, 'Davny27'), (1142, 'JiayingMabel'), (1143, 'SehaHaris'), (1144, 'Johan95_rocket'), (1145, 'kimjonqhyun'), (1146, 'clem1611'), (1147, 'JoeySalvatrucha'), (1148, 'mrlaoben'), (1149, 'Beebot86Yanna'), (1150, 'amiir_h'), (1151, 'bubblelicious_g'), (1152, 'WordsLikeBullet'), (1153, 'lxcid'), (1154, 'Momofied'), (1155, 'glittersparksx'), (1156, '_whitewishes'), (1157, 'a1jacky'), (1158, 'EspressoTears'), (1159, 'suhchyuan'), (1160, 'Stainedtrust'), (1161, 'madeinweakness'), (1162, 'clintonsimz'), (1163, 'Xiaokais'), (1164, 'smukherjee78'), (1165, 'Valerieong89'), (1166, 'MissKoshka'), (1167, 'skyenation'), (1168, 'RIBB0ZSTICKS'), (1169, 'crazygrape'), (1170, 'agnesdotcom'), (1171, 'Effeyier'), (1172, 'Durga_Dorita'), (1173, 'aidaahoo'), (1174, 'Chewsoowei'), (1175, 'EUGENIALOVESYOU'), (1176, 'feffrey'), (1177, 'syidaabe'), (1178, 'eleapot'), (1179, 'Dellalalili'), (1180, 'melissakuan'), (1181, 'lping84'), (1182, 'janeliewjw'), (1183, 'archer86'), (1184, 'AlvinLikeitLOUD'), (1185, 'mariajeanina'), (1186, 'xoSamanthaaa'), (1187, 'MissKeslyn'), (1188, 'i_peepo'), (1189, 'sugardrapes'), (1190, 'Lonerific'), (1191, 'Mhmdazri'), (1192, 'freddygates92'), (1193, 'ishtefh'), (1194, 'iiNammz'), (1195, 'Mari0nett3'), (1196, 'Kingnugraha'), (1197, 'yajirushii'), (1198, '3xt_Caleb'), (1199, 'sugar_fc'), (1200, 'smallcaps'), (1201, 'dealwithYANYAN'), (1202, '0oHappyGirlo0'), (1203, 'LalaSuzaay'), (1204, 'KennethCloudd'), (1205, 'ar1c'), (1206, 'lamida'), (1207, 'dragoniteandme'), (1208, 'quesarrasera'), (1209, 'sukhontarat'), (1210, 'angelsmil3'), (1211, 'KhaiTwitch'), (1212, 'V4GIN4WOLF'), (1213, 'NiLLa_suSan'), (1214, 'pacifique_fiq'), (1215, 'di0ry'), (1216, 'xiaoyulvkimchi'), (1217, 'Radhifakh'), (1218, 'SuperBearPaw'), (1219, 'shzyxo'), (1220, 'PeixinZXC'), (1221, 'mohd_sarifuddin'), (1222, 'Sharonplng'), (1223, 'ZhaoLucas'), (1224, 'xxxNurLiyana'), (1225, 'AlveriaSerene'), (1226, 'sojohn'), (1227, 'RaurauBaby'), (1228, 'IHeartTaeyeonn'), (1229, 'Nur_funtweet'), (1230, 'arvw30'), (1231, 'PriscillaLoo'), (1232, 'leedasarah'), (1233, 'pitchaonly'), (1234, 'sourabhs'), (1235, 'NadiahTW1D'), (1236, 'MAzmiYahaya'), (1237, 'ChingCrestfall'), (1238, 'deliriumfolk'), (1239, 'missmandyylyn'), (1240, 'mdzulkar9'), (1241, 'ray_kita'), (1242, 'LSLMichelle'), (1243, 'ThrowPieAway97'), (1244, 'Edmundiced'), (1245, 'Jiaminer'), (1246, 'tanwljoycelyn'), (1247, 'KokoCaur'), (1248, 'davvidlim'), (1249, 'HazLevine'), (1250, 'NuttyShwethy'), (1251, 'fiqfiqfiq'), (1252, 'SpaceBread'), (1253, 'Ootkarsh'), (1254, 'mhike_pogi'), (1255, 'Shiyunx'), (1256, 'Technie'), (1257, 'sonnamshinn'), (1258, 'claretalfonso'), (1259, 'jaminejaymee'), (1260, 'ALive_22_02_12'), (1261, 'meishen92'), (1262, 'ohmysofiaa'), (1263, 'EeeerickK'), (1264, 'glitterbabyg'), (1265, 'eddysjj'), (1266, 'VonFreeze'), (1267, 'DiCarlito'), (1268, 'JWLimWeiLiong'), (1269, 'beiyandao'), (1270, '2addicted2ne1'), (1271, 'Saniz07'), (1272, 'K3nT_95'), (1273, 'elfnonthawat'), (1274, 'ayul_jb'), (1275, 'CCLeOnE'), (1276, 'Arhyou'), (1277, 'SherdaleGWT'), (1278, 'royceisprince'), (1279, 'Edw009'), (1280, 'HappyxMoments'), (1281, 'Kajonyot_non'), (1282, 'gunturmh'), (1283, 'halimngah'), (1284, 'LanceVuitton'), (1285, 'coffeeatyosi'), (1286, 'TheSamSan'), (1287, 'missjoccie'), (1288, 'unicorntart'), (1289, 'clarenceljy'), (1290, 'FariD_KeciK'), (1291, 'JUDAaAaAaAaAaAS'), (1292, 'darlingyeo'), (1293, 'decruz'), (1294, 'xJ3abyVim'), (1295, 'junaidiubin'), (1296, 'VanillaMinuet'), (1297, 'Aprilkhor'), (1298, 'Eddy17Teh'), (1299, 'zulkiflim'), (1300, 'wildwater100'), (1301, 'ilovelambos'), (1302, 'AdamShermann'), (1303, 'l2Dea'), (1304, 'Liani_Luvlilady'), (1305, 'maryglennperez'), (1306, 'ZETTYARDILA'), (1307, 'rashidahkamali'), (1308, 'udhaya89'), (1309, 'Letsinvade'), (1310, 'kelliewong_'), (1311, 'ColinPaige'), (1312, 'AzzmiLMohammaD'), (1313, 'ReminiscentLove'), (1314, 'edwlouis'), (1315, 'ITSACOCOTHING_'), (1316, 'leesoonho'), (1317, 'iGAN007'), (1318, 'izanvanst'), (1319, 'drchatwan'), (1320, 'JerahmeelZackyC'), (1321, 'prefix2suffix'), (1322, 'pokwewanzul'), (1323, 'trailingdestiny'), (1324, 'pratiwiindahh'), (1325, 'drpaulolding'), (1326, 'nicthegeek'), (1327, 'Redrhino06'), (1328, 'MustaqimRahmad'), (1329, 'iambell'), (1330, 'lilant97'), (1331, 'geode858'), (1332, 'lynalagens'), (1333, 'fadzcallen'), (1334, 'smexxy10'), (1335, 'shane27chua'), (1336, 'hkmsqre'), (1337, 'MynameishTfq'), (1338, 'rohithn'), (1339, 'GagaBurnsCar'), (1340, 'mingbeitaan'), (1341, 'Pheefully'), (1342, 'valliangoh'), (1343, 'thousandmilez'), (1344, 'Guf_Gizz'), (1345, 'Wenxin_0803'), (1346, 'tyna_syaza'), (1347, 'shakir_ryder'), (1348, 'ReenaJumarudin'), (1349, 'tinkergui'), (1350, 'rulirara'), (1351, 'evanlimje'), (1352, 'Engorgio'), (1353, 'Adibb_Ali'), (1354, 'fitrah_zaini'), (1355, 'babyworm'), (1356, 'uberkylie'), (1357, 'littlekeshh'), (1358, 'DarrylAhBoi'), (1359, 'emma_dcullens'), (1360, 'Syairie'), (1361, 'lynsah'), (1362, 'noispollution'), (1363, 'IstianaLovesU'), (1364, 'stellaLJY'), (1365, 'lEe_Emma87'), (1366, 'Rhere07'), (1367, 'DemianChan_IRON'), (1368, 'ainzandd'), (1369, 'farhanamanokgo'), (1370, 'factorshootme'), (1371, 'leepabojoon'), (1372, 'FaizalEgon'), (1373, 'FakhrulImam1'), (1374, 'anoirnan'), (1375, 'jeffcheong'), (1376, 'edwina_TW'), (1377, 'aaronayx'), (1378, 'saw_starstruck'), (1379, '5foot3inches'), (1380, 'xSharifahh'), (1381, 'meeniebeanie'), (1382, 'eltsen08'), (1383, 'x_ItsJasmine_x'), (1384, 'KagariY'), (1385, 'bli_tooth'), (1386, 'TynIsLove'), (1387, 'IMOUSTACHEYOU_'), (1388, 'Spencercurrylim'), (1389, 'annateosuper'), (1390, 'ingraleat'), (1391, 'th1rte3nth'), (1392, 'vienena'), (1393, 'marklim'), (1394, 'jinhuit95'), (1395, 'berber08'), (1396, 'NurShazAireen'), (1397, 'paintlightnings'), (1398, 'mdaliman'), (1399, 'nicholas3351'), (1400, 'mryaozxc'), (1401, 'nnnewnew'), (1402, 'glynisjoelle'), (1403, 'andrewabogado'), (1404, 'F0otballer'), (1405, 'Yiling_Emily'), (1406, 'shango_1'), (1407, 'syida_onn'), (1408, 'ebuala'), (1409, 'AlwaysBeng'), (1410, 'Yay1014'), (1411, 'Ljoeftw'), (1412, 'CottonKandies'), (1413, 'nicolelch'), (1414, 'mamat555'), (1415, 'Samie_Tan'), (1416, 'RiriehyDollie'), (1417, 'zymzba'), (1418, 'MINGHEEE'), (1419, 'myh3artsong'), (1420, 'totallyguan'), (1421, 'yoosoob'), (1422, 'Syadio'), (1423, 'auralight'), (1424, 'Jonnyyyyyyyy'), (1425, 'cootie_kate'), (1426, 'Albert_teo'), (1427, 'FarinaFuaz'), (1428, 'aizulhazriq'), (1429, 'Muhd_Shariff'), (1430, 'natasshalydia'), (1431, 'wongxuyi'), (1432, 'panky_associate'), (1433, 'arsewan'), (1434, 'patrickpang'), (1435, 'SiEn_Rawrdieyou'), (1436, 'runloisrun'), (1437, 'yuyuhideto'), (1438, 'troublem4k3r'), (1439, 'meera_yusof'), (1440, 'jeannelxoxo'), (1441, 'RasydanM'), (1442, 'chaojiecow'), (1443, 'dukerobin'), (1444, 'Casandrafml'), (1445, 'MikiHeartxzYou'), (1446, 'bullshitkid'), (1447, 'TINGANGEL_'), (1448, 'AngelSolo'), (1449, 'NaVe89'), (1450, 'AloyRomantic'), (1451, 'shah5N2'), (1452, 'Alexus_Savier'), (1453, 'REMYAFRO'), (1454, 'DarkblueAd'), (1455, 'SBS9114Y'), (1456, 'Xxkabb'), (1457, 'ellebeier'), (1458, 'NeverJudge_can'), (1459, 'JerrywTom'), (1460, 'Amiruuul'), (1461, 'i4harold'), (1462, 'ClintooonXD'), (1463, 'RastaManAikal'), (1464, '_MADREV_'), (1465, 'quekyongxiang'), (1466, 'syafiqpanda'), (1467, 'yeoljong'), (1468, 'norman166'), (1469, 'Naz_Zan11'), (1470, 'ichooza'), (1471, 'decruz307'), (1472, 'Ernestongch'), (1473, 'josephinelian'), (1474, 'Muqtasid987'), (1475, 'l1m1nr1c3'), (1476, 'ivannquekk'), (1477, 'Jasper_Pytherus'), (1478, 'ain12'), (1479, 'Imlwj5'), (1480, 'melicacy'), (1481, 'mynameisowj'), (1482, 'zacvvee'), (1483, 'AIJINNN_CRYCRY'), (1484, 'metabaron'), (1485, 'MarcusSimmmm'), (1486, 'danialramli'), (1487, 'Yogi_JI'), (1488, 'thewsinew'), (1489, 'Arif_Nasir'), (1490, 'allesterloo'), (1491, 'pingzzzzzzzzzzz'), (1492, 'SkyAreBlues'), (1493, 'amcwong'), (1494, 'aqlhnsdhln'), (1495, 'audreac'), (1496, 'Rinimalole'), (1497, 'MaedaKimiyama'), (1498, 'HeartsHearttss'), (1499, 'SharonnMinzxc'), (1500, 'thegirlsinsane'), (1501, 'helmisupreme'), (1502, 'weewu'), (1503, 'roslansafar'), (1504, 'DominoFrikitona'), (1505, 'EdwardLow25'), (1506, 'hyperren'), (1507, 'check_jam'), (1508, 'GobKittipos'), (1509, 'Amirachik'), (1510, 'RonaldControlU'), (1511, 'tatmeng'), (1512, 'pilosopo4950'), (1513, 'murderouspig'), (1514, 'RuyDee'), (1515, 'xhRules'), (1516, 'fenfuin'), (1517, 'wei317'), (1518, 'onizukayoichi'), (1519, 'claudiachew'), (1520, 'jac_phua'), (1521, 'Greenkub'), (1522, 'atikaaffendi'), (1523, 'yasminlatief'), (1524, 'JsBalibay'), (1525, 'mervtakira'), (1526, 'Na_Boice'), (1527, 'rlabian'), (1528, 'theLEONvincent'), (1529, 'ninachua'), (1530, 'EindraChuu'), (1531, 'jolenesng'), (1532, 'heyymissB'), (1533, 'RevolveDaryl'), (1534, 'Ajam_Azam'), (1535, 'SinnnYiii'), (1536, 'aarbani'), (1537, 'apinkyaffair'), (1538, 'SHINYPIGGY'), (1539, 'SuperKidJunior'), (1540, 'Silentbear_'), (1541, 'nicky3sunny'), (1542, 'JH_Sotong'), (1543, 'AyuneRyandi'), (1544, 'Sex_OnThBeach'), (1545, 'falqita'), (1546, '_indiies'), (1547, 'FeeSY_'), (1548, 'SANGEAMSRI'), (1549, 'rachelgpng'), (1550, 'vind_j'), (1551, 'WriterJennaChan'), (1552, 'samsamishere'), (1553, 'fiorachy'), (1554, 'loujiuen'), (1555, 'hikariazie'), (1556, 'Bahyimann'), (1557, 'Jocelyntang_ml'), (1558, 'ScrimpyMallard5'), (1559, 'Nanasquarepants'), (1560, 'lingomingo'), (1561, 'alainlicious'), (1562, 'ZulfiqarJ'), (1563, 'jiaoface1995'), (1564, 'Khunnifiedx'), (1565, 'PurpleEsther'), (1566, 'JingPoh'), (1567, 'Fandigeek'), (1568, 'jetgoh'), (1569, 'Ezal75'), (1570, 'Albertching'), (1571, 'ILYForeverLuhUh'), (1572, 'FatFvck'), (1573, 'acupofgie'), (1574, 'alexcheahtz'), (1575, 'ikekitamasataka'), (1576, 'Isaiah_The_Boss'), (1577, 'Izraqseth'), (1578, 'FirahEvalina'), (1579, 'tyasratu'), (1580, 'dorkyyoong'), (1581, 'mirikuku'), (1582, 'zhaolutwiter'), (1583, 'mj_casper24'), (1584, 'Tanglehearts'), (1585, 'ZulfadhliNayla'), (1586, 'atypicalhuiyi'), (1587, 'SitiNurAzlinSNA'), (1588, 'iemasingle87'), (1589, 'JuzMe_1982'), (1590, 'josiewangsie'), (1591, 'XavierSkyAce'), (1592, 'RedColourRanger'), (1593, 'madmalbaikhatie'), (1594, 'dionlyhz'), (1595, 'thomo_the_lost'), (1596, 'AmHilfiger'), (1597, 'jtzx'), (1598, 'mohdyazidzaidi'), (1599, 'Aehmhee'), (1600, 'VanillaButtons'), (1601, 'RolfKeyran'), (1602, 'San_belieber'), (1603, 'RyanMatthewLow'), (1604, 'Junkai_'), (1605, 'VerverGtw'), (1606, 'emporortan'), (1607, 'wanthai41'), (1608, 'Kr1SAw_27'), (1609, 'NuRuLSyAhILA'), (1610, 'JazaLfiyan'), (1611, 'arm_rd'), (1612, 'ultra_slacker'), (1613, 'Hengxunli'), (1614, 'klliu'), (1615, 'RTJX'), (1616, 'BreezeKik'), (1617, 'syaaafiqah'), (1618, 'peiishann'), (1619, 'SherylherSly'), (1620, 'sephiro_aries'), (1621, 'NajwaaaSfh'), (1622, 'yeozhongying'), (1623, 'cheesyhearts'), (1624, 'bogisssp'), (1625, 'anmjoven'), (1626, 'malxc'), (1627, 'TalkactiveYum'), (1628, 'WirShaLee'), (1629, 'afrynt'), (1630, 'peiyiliangg'), (1631, 'SKsaid'), (1632, 'malinaahmad'), (1633, 'Rismayunisa'), (1634, 'DicksonTham'), (1635, 'Nnut_tn'), (1636, 'Arie_E7'), (1637, 'TheMlkyWay'), (1638, 'Myraxx'), (1639, 'efaashortness'), (1640, 'meowtress'), (1641, 'JoelSoong'), (1642, 'LorEvangelista'), (1643, 'theycallmejamez'), (1644, 'faridrosmi'), (1645, 'DhafinHashim'), (1646, 'Jigglesmeoww'), (1647, 'N_GLaa'), (1648, 'Chuuunyang'), (1649, 'Tsukiyoruutari'), (1650, 'Ismilenotfrown'), (1651, 'fadhlinrashid'), (1652, 'Jayrambomambo'), (1653, 'jilliansher'), (1654, 'Lyrajoanna'), (1655, 'ah_min_uh'), (1656, 'OuhItsSERI'), (1657, 'sornsanova'), (1658, 'jonitarose'), (1659, 'bryskired'), (1660, 'makeupjunkyy'), (1661, 'CocainelipsXo'), (1662, 'PandoraKissesss'), (1663, 'ye3n'), (1664, 'aidenxiao'), (1665, 'darklancer17'), (1666, 'R1111YAN'), (1667, 'nazerwinn'), (1668, 'irlazar'), (1669, 'SJB_Steambun'), (1670, 'NaNie_KechiQueZ'), (1671, 'tjjkkk'), (1672, 'smexyypawx'), (1673, 'JOONBOSS'), (1674, 'felixker'), (1675, 'ThiruMrChindian'), (1676, 'NazrulNazari'), (1677, 'Gerrrmaine'), (1678, 'airulblurblur'), (1679, 'franciskenz'), (1680, 'Low_Serena'), (1681, 'L1n_H0_MEMORIES'), (1682, 'randyaruben'), (1683, 'Daryl_LJK'), (1684, 'Livideyez'), (1685, 'Firr_Sone'), (1686, 'BobTheMampats'), (1687, 'mudWHO'), (1688, 'shertimus'), (1689, 'jayjbtan'), (1690, 'danushdanz97'), (1691, 'yunhanlovesblue'), (1692, 'pinchyshoes'), (1693, 'YAAAAAAZZZZ'), (1694, 'VampieLust'), (1695, 'Jimmy_the_Clown'), (1696, 'LinaGofus'), (1697, 'HEARTYOUzxc'), (1698, 'aishaahhTRAD'), (1699, 'nikkorotarla'), (1700, 'weipingtoh'), (1701, 'HidhirHranica'), (1702, 'HowardJang'), (1703, 'celinachung'), (1704, 'stevectl'), (1705, 'AHH0880'), (1706, 'ShermanTheElite'), (1707, 'eileenyumikoyap'), (1708, 'tingliong'), (1709, 'evelynwxteo'), (1710, 'LovelleDebra'), (1711, 'giemarasigan'), (1712, 'ZubeidaaNoor'), (1713, 'styra'), (1714, 'guanasai'), (1715, 'nurkhairiahali'), (1716, 'hong_supatra'), (1717, 'BOBBYLEEJY'), (1718, 'OlsenAwesome'), (1719, 'WorldwithShades'), (1720, 'lyanayanayana'), (1721, 'CzaHernaez'), (1722, 'XiaoJason07'), (1723, 'junyijude'), (1724, 'ninewstt'), (1725, 'Txiuxiu'), (1726, 'min0k0'), (1727, 'NeLLyLoVeLy4'), (1728, 'Imsomebodyy'), (1729, 'NicholasYap3'), (1730, 'Pearlynzhuzhu'), (1731, 'HownanTristan'), (1732, 'arifwardani'), (1733, 'zjchan88'), (1734, 'SoendaNieZz'), (1735, 'TanGordonLucas'), (1736, 'Youkizzmyass'), (1737, 'jacqqqq'), (1738, 'hidayahsofia'), (1739, 'wenwen_wu'), (1740, 'CalvinGlambert'), (1741, 'SaikuronMelvin'), (1742, 'graffitikai'), (1743, 'doodle_caduceus'), (1744, 'shah_only'), (1745, 'azwnstfler'), (1746, 'xian_wei'), (1747, 'xoxuer'), (1748, 'kyvhyun'), (1749, 'Acerul'), (1750, 'derpchoi'), (1751, 'KashDollarMoney'), (1752, 'whatshit_isthis'), (1753, 'MangoJuices_'), (1754, 'CranioFeticcio'), (1755, 'HadiDelRey'), (1756, 'ilahsanti'), (1757, 'whatthePRATA'), (1758, 'nyanianyan'), (1759, 'Achld'), (1760, 'ezagnanjar'), (1761, 'lowieoliveros'), (1762, 'rousymarsh'), (1763, '_SashaElly'), (1764, 'GohJianCheng'), (1765, 'Theismailsalim'), (1766, 'O115_'), (1767, 'ballarmeen'), (1768, 'JeremyPhyo'), (1769, 'fyza_laferra'), (1770, 'NicoleMLucas'), (1771, 'MTMY24'), (1772, 'angelsibal'), (1773, 'iEdenzxc'), (1774, 'andrii_wijaya'), (1775, 'EricNgChewTong'), (1776, 'shikinhidris'), (1777, 'AloysiusTWC'), (1778, 'iamSmallRon'), (1779, 'DeadFuzzyWuzzy'), (1780, 'IIF_JSEL'), (1781, 'Kristin_BeeBee'), (1782, 'EddisonWeejoon'), (1783, 'GlamourpussLife'), (1784, 'JosephineeeRAWR'), (1785, 'shige81matsu'), (1786, 'NOTSAPAO'), (1787, 'adriancabral'), (1788, 'CosyMossie'), (1789, 'sheSays'), (1790, 'tonyfook'), (1791, 'Ima_Lovin_You_'), (1792, 'flymetodeemoon'), (1793, 'IrfanOomsk'), (1794, 'ingtuon'), (1795, 'heartwinkle'), (1796, 'Tan_E_shin'), (1797, 'RafiAhmadd'), (1798, 'vanessa_neo'), (1799, 'Edrickiwi'), (1800, 'iHurricanee'), (1801, 'theTASIA'), (1802, 'bryanhihi'), (1803, 'NFNK1120'), (1804, 'raeindrakmal'), (1805, 'miss_joanna1'), (1806, 'uroz'), (1807, 'AloysiusWng'), (1808, 'kuekj'), (1809, 'faridachaniago'), (1810, 'mambo71'), (1811, 'clarecxq'), (1812, 'WayneIrfan'), (1813, 'udomtech'), (1814, 'RezossReza'), (1815, 'ximmatic'), (1816, 'CharisGrace95'), (1817, 'nathan_seah'), (1818, 'seoyeonn96'), (1819, 'Gogoffer'), (1820, 'Etonee97'), (1821, 'elle_legaspi'), (1822, 'ChewHuiJunior'), (1823, 'sekshihanoona'), (1824, 'AmmarCorona'), (1825, 'tearsflowdowns'), (1826, 'rozieta_raffar'), (1827, 'qyblingtastic'), (1828, 'yvettesweets'), (1829, 'irwinhans'), (1830, 'AdyndaYana'), (1831, 'rae2888'), (1832, 'ikatykaa'), (1833, 'gnohcjc'), (1834, 'LYS_Louis'), (1835, 'dax_chng'), (1836, 'Dokrak_P'), (1837, 'namuhyunnn'), (1838, 'hudymario'), (1839, 'Fabri_ribeiro'), (1840, 'y0ngguks'), (1841, 'greenyJhen'), (1842, 'FeezaBob'), (1843, 'PearlLyn'), (1844, 'RapRocksMyLife'), (1845, 'joabbieeee'), (1846, 'dapaindotcom'), (1847, 'shouqiaieman'), (1848, 'UnleashTheCat'), (1849, 'GabBabe'), (1850, 'minicloudie'), (1851, 'amazaynharry'), (1852, 'Talent_Rx'), (1853, 'Wwweisheng'), (1854, 'mira_syida'), (1855, 'mouth46'), (1856, 'KJH_SG'), (1857, 'stefanieexz'), (1858, 'JennyTMQ'), (1859, 'SA_MANT_HAHAHAH'), (1860, 'genajane'), (1861, 'Shaikyshaik017'), (1862, 'CarringtonCat'), (1863, 'toothsculptor'), (1864, 'DanceItOutx'), (1865, 'safira_moo'), (1866, 'Daryl_Chin'), (1867, 'azim_k810'), (1868, 'erectionary'), (1869, 'cindynah'), (1870, 'HongRage'), (1871, 'purwatih'), (1872, 'YulianusLadung'), (1873, 'kechikTadayoshi'), (1874, 'MissA_Nana'), (1875, 'GabbaGabbaRiz'), (1876, 'stickpjw'), (1877, 'tickhin'), (1878, 'SUNGZ_HYE'), (1879, 'joriesnsd'), (1880, 'shashathoishi'), (1881, 'JeLLyYuSoF'), (1882, 'JeroemyNg'), (1883, 'ShUkRihandsome'), (1884, 'jiaweisaysyo'), (1885, '1D_HSLTLPNHZM_'), (1886, 'KaizerTan'), (1887, 'evil_kun'), (1888, 'EILEENTOMLINSON'), (1889, 'N4VY_SE4L_TE4M6'), (1890, 'yuejie1994'), (1891, 'jeconiahtan'), (1892, 'Yip_LewChing'), (1893, 'nicooeatsyouup'), (1894, 'eeniamrahc'), (1895, 'mrsfriendly123'), (1896, 'edowk'), (1897, 'AkGLanPgm'), (1898, 'carlosh1975'), (1899, 'ANGWEIJIE'), (1900, 'mfckd'), (1901, 'ExquisiteAbyss'), (1902, 'MichelleBites'), (1903, 'Thiangjuu'), (1904, 'nsyhlla'), (1905, 'JohanMikael'), (1906, 'ishiiyumi85'), (1907, 'ahmerul'), (1908, 'SeerahR'), (1909, 'khatteemithi'), (1910, 'HannySudirman'), (1911, 'looiqihui'), (1912, 'scottsyndrome'), (1913, 'izzanniznadia'), (1914, 'BimmyLin'), (1915, 'tuckysweetcorn'), (1916, 'sue_zela'), (1917, 'liyana18'), (1918, 'IndigoEvey'), (1919, 'shchua2212'), (1920, 'RarahChuB'), (1921, 'Vettaaaaa'), (1922, 'AqhRoo'), (1923, 'janellalee'), (1924, 'yq_lovelove'), (1925, 'ChoiNora_'), (1926, 'MarkLvl9000'), (1927, 'Zhongyi1515'), (1928, 'machiskyblade'), (1929, 'Vbm_Lyaaulya'), (1930, 'DionysusYeo'), (1931, 'AshyraForm4'), (1932, 'iqqivr'), (1933, 'GaviNNNivaG'), (1934, 'isang08'), (1935, 'Deda_GJB'), (1936, 'DanDanZuraidi'), (1937, 'helloasiasing'), (1938, 'CyberHarpieLady'), (1939, 'gohmichellesp'), (1940, 'AZARYyaacob'), (1941, 'YKLee13'), (1942, 'Syirahsinatra'), (1943, 'nehpyh'), (1944, 'GANLILING'), (1945, 'drazenbatalla'), (1946, 'x3AnnieY'), (1947, 'koolgerl95'), (1948, 'pigsflyidie'), (1949, 'Roywang93'), (1950, 'ZhenXuanlow'), (1951, 'RitsuKou'), (1952, 'chuayongsheng1'), (1953, 'smittenkittenxz'), (1954, 'DylanTian'), (1955, 'PunkifiedAngel'), (1956, 'AHH0880_2'), (1957, 'kiddyrei'), (1958, 'stcltan'), (1959, 'SankyMonkey'), (1960, 'Emporio_Kacang'), (1961, 'HafizuJusni'), (1962, 'sabaw_ng_balot'), (1963, 'arieternity'), (1964, 'dhaniasorfinaTW'), (1965, 'AlanPang8'), (1966, 'optimike'), (1967, 'king140196'), (1968, 'IndraPr'), (1969, 'DjRattle'), (1970, 'fui91'), (1971, 'drakesoaringup'), (1972, 'SyafiqahAina'), (1973, 'PocoyoKiddo'), (1974, 'moggylicious'), (1975, 'ramthekumar'), (1976, 'robiaatul_'), (1977, 'ChuaWeiJunCWJ'), (1978, 'mheg_asia'), (1979, 'JasmineEng'), (1980, 'HUIYIxD'), (1981, 'whimsypoo'), (1982, 'puta'), (1983, 'tokisaba'), (1984, 'ewyeo'), (1985, 'leoyaik'), (1986, 'pinkypotatohead'), (1987, 'PangYanisa'), (1988, 'Meemeeemomo'), (1989, 'omarazizmr'), (1990, 'omfgitzSIDEKA'), (1991, 'shwetaarai'), (1992, 'theotheoo'), (1993, 'zeeSherlock'), (1994, 'pinkbarbzz'), (1995, 'atiqah90'), (1996, 'bonjbond'), (1997, 'GuorongTang'), (1998, 'sharniewarnie'), (1999, 'babatmonster'), (2000, 'SupSHINeJunior'), (2001, 'eli_AR'), (2002, 'Iwanriduan'), (2003, 'junesap'), (2004, 'KhairulAlonso'), (2005, 'phaying'), (2006, 'Cursedetragedy'), (2007, 'buddisetiawan'), (2008, 'eeyoreling'), (2009, 'azharhjibrahim'), (2010, 'ShaunSeeJunYong'), (2011, 'WendyChoa'), (2012, 'jore888'), (2013, 'Natboi'), (2014, 'mohaziv'), (2015, 'IvanDarbi'), (2016, 'aLi_CalgX'), (2017, 'Dinurelfi'), (2018, 'HuzainieTsunami'), (2019, '5itr3'), (2020, 'BesorSokmo'), (2021, 'MayankKochhar'), (2022, 'extenbrian12'), (2023, 'Silverlark2'), (2024, 'Si_Xuan'), (2025, 'fermutuc'), (2026, 'veldax3'), (2027, 'aeh_sunantha'), (2028, 'borpee'), (2029, 'FLYING_PANDAAAA'), (2030, 'oDmLuBGeR'), (2031, 'subaudible'), (2032, 'sallyeatsworld'), (2033, 'uutarguleta'), (2034, 'TakashiChi_ba'), (2035, 'heyycurl'), (2036, 'uefa16599'), (2037, 'JoJo_OngXD'), (2038, 'JEEERYL'), (2039, 'EychaByrdie'), (2040, 'izuddinz'), (2041, 'ainispotlight'), (2042, 'eileenepiczxc'), (2043, 'BuNNy_LaZy'), (2044, 'jocelynrozes'), (2045, 'carlingdoodling'), (2046, 'GabeQC'), (2047, 'Nubbyt'), (2048, 'TIG_Asia'), (2049, 'mystif_c'), (2050, 'Psujitto'), (2051, 'hazelheen'), (2052, 'baaazil'), (2053, 'YeahItsJoanneC'), (2054, 'rizjudiqilcama'), (2055, 'dunnkenpinlac'), (2056, 'KevinJosh10'), (2057, 'zephen99'), (2058, 'FarahHeartMusic'), (2059, 'icsy95'), (2060, 'Saya_Hensem'), (2061, 'gleekiamyo'), (2062, 'supersuf'), (2063, 'fazrulazreen'), (2064, 'SabrinanaRetard'), (2065, 'intanmaria80'), (2066, '_AmirulAzman'), (2067, 'AloysiusSotLiao'), (2068, 'ginfangs'), (2069, 'AlvinJoonKiat'), (2070, 'awawbib'), (2071, 'cheriechua'), (2072, 'gLeNmOnD1997'), (2073, 'ryantanzw'), (2074, 'buymeadrinkapp'), (2075, 'Zeliaaaaa'), (2076, 'linggurl21759'), (2077, 'axia_so2'), (2078, 'jingsdlumanta'), (2079, 'helloimbxgbxy'), (2080, 'letishaletteluv'), (2081, 'JaJaJackIsANerd'), (2082, 'Firepomfret'), (2083, 'MrsDino__'), (2084, 'iAleth'), (2085, 'bbgerek'), (2086, 'shan_kaichen'), (2087, 'Winchestersftw'), (2088, 'H0NEYSECRETS'), (2089, 'levasko'), (2090, 'f0reverMDA'), (2091, 'showstopper120'), (2092, 'Leonardk0h'), (2093, 'edmunddwong'), (2094, 'redexile'), (2095, 'Ghina_2608'), (2096, 'daybreakkisses'), (2097, 'skinnybonny'), (2098, 'Alvin_Ter'), (2099, 'noradilla'), (2100, 'Kukuchickenn'), (2101, 'SJRick1005'), (2102, 'crazeboy'), (2103, 'shamil871a'), (2104, 'roshan0301'), (2105, 'ahtiong73'), (2106, 'thursdayletters'), (2107, 'sicktae'), (2108, 'Khairin_Nadia'), (2109, 'Riondude'), (2110, 'jayzbreaker'), (2111, 'GloriasRainbow'), (2112, 'tiwii_syuhada'), (2113, 'nfornatty'), (2114, 'OLIchng'), (2115, 'WyldeDaisy'), (2116, 'HahaHaziqBonch'), (2117, 'ajekgonjol'), (2118, 'a_leeDC'), (2119, 'Wess_Lee'), (2120, 'james_quan'), (2121, 'jingwen11'), (2122, 'ahxion'), (2123, 'AineysL'), (2124, 'FaraAsfarinna'), (2125, 'lweichiang'), (2126, 'ohaizoee'), (2127, 'FlexibleSkele'), (2128, 'feardaooz'), (2129, 'JeslinAkaMym'), (2130, 'RJPHIPPS'), (2131, 'woodenbatz'), (2132, 'arezieymia'), (2133, 'vansmo'), (2134, 'Maggyths'), (2135, 'saurahsayuti'), (2136, 'theweedhead'), (2137, 'AshIssac'), (2138, 'toliver410'), (2139, 'guan9'), (2140, 'ploy_galz'), (2141, 'tlwx'), (2142, 'Ayumontel'), (2143, 'GaemDyan'), (2144, 'VhanezaT'), (2145, 'Lidya_Aryanti'), (2146, 'Prawnloves'), (2147, 'WeiLi_95'), (2148, 'heyniesa'), (2149, 'miiazpongsing'), (2150, 'kopikosonggirl'), (2151, 'XStarStrucKedX'), (2152, 'JonStroboPop'), (2153, 'DTrain'), (2154, 'Angshiting'), (2155, 'nooiiza'), (2156, 'Terrencekt'), (2157, 'Emisaputri'), (2158, 'DeminHearts'), (2159, 'dDphilo_712'), (2160, 'iAwesome_Freak'), (2161, 'anahrafnia'), (2162, 'XueyinYourMum'), (2163, 'mutirachmayanti'), (2164, 'ConeliusGoh'), (2165, 'CynthiaTyc'), (2166, 'RchyOh'), (2167, 'o0icezzzaa0o'), (2168, 'x_xShaReN'), (2169, 'GayMagnets'), (2170, 'snorlaxishafiz'), (2171, 'WANCICAK2'), (2172, 'FATLOCKER'), (2173, 'AhtAt89'), (2174, 'JaOwKun'), (2175, '_helmz'), (2176, 'suisman70'), (2177, 'SASHness'), (2178, 'matleetour89'), (2179, 'ShiRrEeChEe'), (2180, 'hilarygio'), (2181, 'katdiazyeo'), (2182, 'Aseriess'), (2183, 'sim4nee'), (2184, 'ichineseboy96'), (2185, 'FartoolMfWic'), (2186, 'loadinglucas'), (2187, 'priyankalaxmii'), (2188, 'Zaiahbelle'), (2189, 'Rouselle'), (2190, 'rock_h'), (2191, 'inakayamgoreng'), (2192, 'TheSimsZy'), (2193, 'YsmaelPascual'), (2194, 'mrbranch'), (2195, 'mr_daniel_lee'), (2196, 'danialAngryBird'), (2197, 'victoriaaatwl'), (2198, 'AnaRahman94'), (2199, 'Arie_Enggost'), (2200, 'wakzailan'), (2201, 'VanessaVaune'), (2202, 'russelwongphoto'), (2203, 'charissarhanie'), (2204, 'penarikbecatua'), (2205, 'bibahbisol'), (2206, 'Norhafizahsham'), (2207, 'alex_presto'), (2208, 'akazharmj'), (2209, 'GaryAhNeo'), (2210, 'TriyaArfianie'), (2211, 'heyzahir'), (2212, 'Dudermeister'), (2213, 'mizziemelon'), (2214, 'atiemazlan'), (2215, 'ignorantcow'), (2216, 'grenish'), (2217, 'FirdausFirddy'), (2218, 'GwennieBiebs'), (2219, 'Erid_Adam'), (2220, 'akosibenedict'), (2221, 'frizzylady'), (2222, 'namakuMoK_'), (2223, 'sebby'), (2224, 'Sapphirehole'), (2225, 'Alif_Pom'), (2226, 'Arus_na'), (2227, 'Jindatecktonik'), (2228, 'Heartbroken__xo'), (2229, 'TheFakeFatShady'), (2230, 'NAMEISJUSTINC'), (2231, 'HeartsPumpin_g'), (2232, 'Mr_AhHao'), (2233, '_elrfxd'), (2234, 'DalvinLee'), (2235, 'mymytoh'), (2236, '_BloomingRoses_'), (2237, 'KavielTEO'), (2238, 'ShermaineAkys'), (2239, 'iluvamythis'), (2240, 'mingalarbar'), (2241, 'paperheartzxc'), (2242, 'Ohmyrenee'), (2243, 'BonCalma'), (2244, 'nirujah'), (2245, 'leslieweewee'), (2246, 'BAP_FANCLUB'), (2247, 'azwinidris'), (2248, 'AhCHIUU'), (2249, 'KavenYap'), (2250, 'TiffanyNatal'), (2251, 'Yasel2_Wu'), (2252, 'shadasuhada'), (2253, 'imannatashaMJ'), (2254, 'izamryan'), (2255, 'Natalieemonster'), (2256, 'JeremyWasbeer'), (2257, 'JummieM'), (2258, 'hongzang1993'), (2259, 'Vanessahannn'), (2260, 'DikeBeeM'), (2261, 'cnk_amorevole'), (2262, 'oddy_ESP'), (2263, 'khaiRoslan'), (2264, 'longenhui'), (2265, 'Chong_Yang'), (2266, 'FirdauShahidan'), (2267, 'Cheetah_Jim'), (2268, 'thadTJdawson'), (2269, 'netfuentes'), (2270, 'NatashaAveiro'), (2271, 'Janchayz'), (2272, 'ZOO_Foo'), (2273, 'azmuth_'), (2274, 'armanique'), (2275, 'ajeeeet'), (2276, 'wiwininie'), (2277, 'MotherFlyyy'), (2278, 'SaltyJac'), (2279, 'marouen19'), (2280, 'agung_suryaa'), (2281, 'hermungoh'), (2282, 'MardMN'), (2283, 'SinFilled00'), (2284, 'aideneymar'), (2285, 'niliaaa'), (2286, 'irmazi'), (2287, 'rafiqahismail'), (2288, 'Sabyehappiz'), (2289, 'NYFFFFYRA'), (2290, 'Integra31'), (2291, 'JohnSaysMayer'), (2292, 'FeeohnahCho'), (2293, 'xueyirocks'), (2294, 'NicoChristopher'), (2295, 'DarlaEntertain'), (2296, 'azriiii'), (2297, 'rinoa1984'), (2298, 'HannanHuzaifi'), (2299, 'deefot'), (2300, 'nasuhalqadri'), (2301, 'raashido'), (2302, 'AlexeyJohnson'), (2303, 'Yohan_Goh'), (2304, 'XiaoYu_SCREAM'), (2305, 'JohnRIOTS'), (2306, 'IrNain'), (2307, 'abigailsoo'), (2308, 'PeiiYU'), (2309, 'Jeanniezx'), (2310, 'elcapone'), (2311, 'fanotnot'), (2312, 'IreneWHQ'), (2313, 'callme_XY'), (2314, 'aammyy_321'), (2315, 'Clementower'), (2316, 'lennihan'), (2317, 'jornnyjones'), (2318, 'yjasmin38'), (2319, 'ImYooNaDeeR'), (2320, 'Bassmarko'), (2321, 'M4NGK4LI'), (2322, 'heartymits'), (2323, 'Johnsteven69'), (2324, 'dickyDEKE'), (2325, 'jasonzliu'), (2326, 'Nurul890Saya'), (2327, 'chalermkiat4'), (2328, 'Andreanietta'), (2329, 'Adorablemadness'), (2330, 'Xiuqinghere_x3'), (2331, 'laid_back_days'), (2332, 'farahforshort'), (2333, 'mattczy'), (2334, 'Wohengao'), (2335, 'KatyLizSS'), (2336, 'BryanCsiol'), (2337, 'Iamthetomatos'), (2338, 'FABERLYNSTAR'), (2339, 'adiffmusic'), (2340, 'PriestLah'), (2341, 'BenjRodrigo'), (2342, 'rosmanhaziqah'), (2343, 'DarkBS'), (2344, 'marshymellowbun'), (2345, 'AlanWongWL'), (2346, 'DidieOh'), (2347, 'sitieatworld'), (2348, 'farahney'), (2349, 'inspirit3103'), (2350, 'HaidiMohd'), (2351, 'faidamn'), (2352, 'Guo_Weii'), (2353, 'YYBmage'), (2354, 'Simcheeeky'), (2355, 'DontPressOnThis'), (2356, 'Khadedaiwang'), (2357, 'wanduu'), (2358, 'KAALdino'), (2359, 'lexelledextjluv'), (2360, 'isyaemika'), (2361, 'pheobetan'), (2362, 'monkeyqool'), (2363, 'groovygenie'), (2364, 'ismantanuri'), (2365, 'Pjy1234holic'), (2366, 'HAAKKIIM'), (2367, 'ShawnNeedsMilk'), (2368, 'Nashriq23'), (2369, 'Destinycriesxo'), (2370, 'Jeslynhahaha'), (2371, 'oboeyyy'), (2372, 'YEZFTN'), (2373, 'samsoon123'), (2374, 'Novri95'), (2375, 'zsachi'), (2376, 'ohmydarling_'), (2377, 'Kimahgri'), (2378, 'Tsytyyty'), (2379, 'HOTTESTAHMA'), (2380, 'shannonlck'), (2381, 'RanjHudgens'), (2382, 'spincrass'), (2383, 'BluSe_YulCa'), (2384, 'Hidaayaah'), (2385, 'myrightnotyours'), (2386, 'Harismojo'), (2387, 'JXchicharito'), (2388, 'glitteringchaos'), (2389, 'D93Nightmare'), (2390, 'silviazhuo'), (2391, 'C4LLYCHUA'), (2392, '_lincu_'), (2393, 'edwardLooi'), (2394, 'Manat_Matwiset'), (2395, 'qqladyqq'), (2396, 'vampbuff'), (2397, 'MacNewsJunkie'), (2398, 'indriHR'), (2399, 'SYNCMYXOXO_'), (2400, 'xiia0hei'), (2401, 'Tiarahotmess'), (2402, 'Imperturbable93'), (2403, 'ReaymRui'), (2404, 'jeneunicr'), (2405, 'Mohzameir'), (2406, 'bimbolurbs'), (2407, 'insp_ghah'), (2408, '50pasento'), (2409, 'hiisty'), (2410, 'jAyEeNa'), (2411, 'flyingundies'), (2412, 'YukiWang1993'), (2413, 'LoveLifeDK'), (2414, 'eveybunny'), (2415, 'KIIHUWKUBF'), (2416, 'onemanatatime'), (2417, 'imaunicornnn'), (2418, 'Merloyy'), (2419, 'WooMyHeart_'), (2420, 'Jason_ZircaTan'), (2421, 'Qingyqing'), (2422, 'adleene'), (2423, 'YeoHuiYu'), (2424, 'mademoisellezee'), (2425, 'sufiansupari'), (2426, 'toastoflove'), (2427, 'KinlongF'), (2428, 'faiii_z'), (2429, 'jas90'), (2430, 'LovePlaySwag'), (2431, 'bbaakk'), (2432, 'gordonleekl'), (2433, 'bexxong'), (2434, 'hongchun95'), (2435, 'cerynd'), (2436, 'tiredlim'), (2437, 'ITheMageling'), (2438, 'tiffyteffy'), (2439, 'mieluvspink'), (2440, 'MarieMooooo'), (2441, 'C_H_A_R_L_E_N_E'), (2442, 'giokalaw'), (2443, 'Mazzsiah'), (2444, 'IzlynIlyana'), (2445, 'aymarn'), (2446, 'Bernard_tan'), (2447, 'TheGreatKiki'), (2448, 'EnShawn'), (2449, 'DoublEeeeee'), (2450, 'Zentonik89'), (2451, 'neusallen'), (2452, 'MarYan122309'), (2453, 'Neronurihsan'), (2454, 'Jamilah_Ilah'), (2455, 'Prioritie'), (2456, 'Rjellybeano'), (2457, 'ahwang96'), (2458, 'NurulAtyqah95'), (2459, 'whatever_goes22'), (2460, 'iissexay'), (2461, 'SnowingInSummer'), (2462, 'Swaggyloads'), (2463, 'melpig'), (2464, 'cescfarkhan4'), (2465, 'rajeshsound'), (2466, 'mayimaen'), (2467, 'allifanaddilla'), (2468, 'EricaDeZucca'), (2469, 'GutsyKlutzy'), (2470, 'pancevanbuncis'), (2471, 'NujnaH'), (2472, 'nabillazhafirah'), (2473, 'iTsMe_Lynn'), (2474, 'RedzStarKiss'), (2475, 'burrowunder'), (2476, 'akmal89'), (2477, 'adventurerocker'), (2478, 'henrychu_'), (2479, 'lhmnimiuh'), (2480, 'vikneshstarfish'), (2481, 'itsandrewwwww'), (2482, 'MunirahSeev'), (2483, 'xiangxiangxD'), (2484, 'kohruiheng1999'), (2485, 'AugustineLai'), (2486, 'junxiang98'), (2487, 'babyruthina'), (2488, '_Pedobearr'), (2489, 'Pan2dakayy'), (2490, 'idkwhyust4lkmeh'), (2491, 'CELINLEONG'), (2492, 'Peyjal76'), (2493, 'hazirahnaomi'), (2494, 'jumarko_fermion'), (2495, 'yleeyufang'), (2496, 'chloe_yumi'), (2497, 'aliciaEighteen'), (2498, 'Aaron_Llm'), (2499, 'daleyang'), (2500, 'julhaelmi'), (2501, 'DirectJoey'), (2502, 'monchai1202'), (2503, 'jy_luo'), (2504, 'sengkenneth'), (2505, 'shigilee'), (2506, 'arliyalaw'), (2507, 'Jiemin0309'), (2508, 'AlisonHengZL'), (2509, 'NutsAboutChocPa'); INSERT INTO `users` (`id`, `username`) VALUES (2510, 'AmalinaLoveHim'), (2511, 'kekemuch'), (2512, 'telingabulat'), (2513, 'TweetOrdinary'), (2514, 'AusTuAus'), (2515, 'them_me'), (2516, 'selenezhang'), (2517, 'Donlimjunxian'), (2518, 'christabel_lf'), (2519, 'KerrineChan'), (2520, 'MsJeremiah'), (2521, 'seamus_low_23'), (2522, 'miss_zela'), (2523, 'heartsinline'), (2524, 'beehaziz'), (2525, 'GRaphLee'), (2526, 'vankeilau'), (2527, 'causeits_me'), (2528, 'JoeWongCH'), (2529, 'ElGranNicholas'), (2530, 'VAMPIREB0NES'), (2531, 'Deqnoor'), (2532, 'Lee_ShazzyD'), (2533, 'Mhee_United'), (2534, 'Arielloi'), (2535, 'MloclamTAY'), (2536, 'reniieetan'), (2537, 'emelineejoy'), (2538, 'aisyahj'), (2539, 'smse89'), (2540, 'DayahRawr'), (2541, 'myera_suryadi'), (2542, 'Oohk_Gnid_Nauy'), (2543, 'erkerkk'), (2544, 'teemoty'), (2545, 'rjgeron'), (2546, 'Joshua_rambu'), (2547, 'DongXinru'), (2548, 'MinaNgiew'), (2549, 'MariasgX'), (2550, 'JaemsChua'), (2551, 'darla_hani'), (2552, 'sufiyantonio'), (2553, 'norizwanzakaria'), (2554, 'SharonUrMother'), (2555, 'Oliviaxash'), (2556, 'brandwhorejeffy'), (2557, 'FLaLone_Z'), (2558, 'JoyceBlingbling'), (2559, 'ivy_vee_s'), (2560, 'justwithinme'), (2561, 'AndersonChuaa'), (2562, 'Jonugrho'), (2563, 'aiffaAA'), (2564, 'RiriiNasir'), (2565, 'jasada12'), (2566, 'musjubz'), (2567, 'omnicolenom'), (2568, '5D3T4'), (2569, 'SHEEKYNN'), (2570, 'brenberryblast'), (2571, 'kayanne305'), (2572, 'GorillaOctopus'), (2573, 'Junko__I'), (2574, 'Suci_TN'), (2575, 'IrfanRinaldi'), (2576, 'owltweets'), (2577, 'PinkCarrots_'), (2578, 'wlmkkf9876'), (2579, 'Manxyzdd'), (2580, 'safurahman'), (2581, 'sophiagheelove'), (2582, 'Jacktalktoomuch'), (2583, 'EdwinChristoph'), (2584, 'siraden_wardana'), (2585, 'm_onicagabriel'), (2586, 'AnggyaMegaayu'), (2587, 'domting'), (2588, 'junekue'), (2589, 'CharlesNeo'), (2590, 'karnnnnnnnnna'), (2591, 'dlondonk'), (2592, 'huiling6c'), (2593, 'RizalChubz'), (2594, 'Perry1238'), (2595, 'ajirokhadi'), (2596, 'winnie_smileyme'), (2597, 'Arvineyla'), (2598, 'KiyoshiIkeda'), (2599, 'HafizGlamor'), (2600, 'zuzufarro'), (2601, 'HornyRobott'), (2602, 'AqashahM'), (2603, 'AshuraJaafar'), (2604, 'ShiLeeBohoseh'), (2605, 'ne0forCe'), (2606, 'Greeniie07'), (2607, 'MJiaMin'), (2608, 'hafiza85'), (2609, 'dessperado'), (2610, 'whatyoucunt_'), (2611, 'i_tonkla'), (2612, 'jeremy_k14'), (2613, 'KhairiLuth'), (2614, 'ilmudan'), (2615, 'kennethcyc'), (2616, 'randomgs'), (2617, 'ezCr8zy'), (2618, 'aish_1996'), (2619, 'thefallez'), (2620, 'LeonardBoyInRed'), (2621, 'AieN_AtirA'), (2622, 'Bunga1988'), (2623, 'Kinvie'), (2624, 'animorphs_84'), (2625, 'Mark_momo'), (2626, 'wongrenhao'), (2627, 'milapetmilfer'), (2628, 'shafiraabdul'), (2629, 'pekyee_w'), (2630, 'rajat_garg'), (2631, 'newchana0_o'), (2632, 'candy_ta'), (2633, 'chad41988'), (2634, 'Jimboveg'), (2635, 'lailaiong'), (2636, 'shengyangg'), (2637, 'cherry_naz'), (2638, 'TROLLINGROSES'), (2639, 'candycane_xoxo'), (2640, 'zhongfu'), (2641, 'pharyza'), (2642, 'IzynHzwniH'), (2643, 'wahinh'), (2644, 'vonichiwa'), (2645, 'frost252'), (2646, 'rrrrrai'), (2647, 'hunternield'), (2648, 'liewjingyee'), (2649, 'pa_triloga'), (2650, 'uddinboii'), (2651, 'iheartsix06'), (2652, 'ImBoxerBoi'), (2653, 'sitinurazleen'), (2654, 'rae_hight'), (2655, 'cassandraKAIZHI'), (2656, 'Louiselasp'), (2657, 'eating_omnomnom'), (2658, 'gavinweisheng'), (2659, 'crystalizelove'), (2660, 'tingghellohello'), (2661, 'rockieshocks'), (2662, 'Kwa_Jia_Qing'), (2663, 'BethanyLPV'), (2664, '33Z4Ni3'), (2665, 'MaioMeow'), (2666, 'kitkit0218'), (2667, 'Steph_masticate'), (2668, 'altrex_22'), (2669, 'Claaaaaaaaaa'), (2670, 'medschneverends'), (2671, 'FareenNuralisa'), (2672, 'YINLOVEEUNHYUK_'), (2673, 'angkatLing'), (2674, 'MistRants'), (2675, 'RafaelMorrell'), (2676, 'YanaDeCruz'), (2677, 'dannnial'), (2678, 'Dufeier'), (2679, 'RainbowCheung'), (2680, 'kikokicks'), (2681, 'Egoisticme'), (2682, '5ince1993'), (2683, 'AihaaSulaiha'), (2684, 'LGtitular'), (2685, 'FelixCFC'), (2686, 'P_uckMyLife'), (2687, 'Happydrugs_'), (2688, 'muffyvan'), (2689, 'paulineloott'), (2690, 'spog19'), (2691, 'Hruanwern'), (2692, 'lovingangal'), (2693, 'PAWSOFFURRIES'), (2694, 'LailaTahe'), (2695, 'zhyifei'), (2696, 'KasonSee'), (2697, 'kiki_rizki'), (2698, 'dinosaurjane'), (2699, 'Jianheelicious'), (2700, 'rorgile90870'), (2701, 'FairuzAzrie'), (2702, 'plusaheart'), (2703, 'Xinnnnyyi'), (2704, 'raiedrahman'), (2705, 'sa_sahira'), (2706, 'JiiRakSaa'), (2707, 'STRAWBERYY_98'), (2708, 'durralumin_'), (2709, 'jawongbayawak'), (2710, 'iamkarlo28'), (2711, 'PaklurahAlingga'), (2712, '860719zack'), (2713, 'BheibhyXing'), (2714, 'namibeatz'), (2715, 'rejvalencia'), (2716, 'nanafish20'), (2717, 'J_canyouheartat'), (2718, 'SylvestKai'), (2719, 'PenguiinJ'), (2720, 'xuannn_'), (2721, 'dan_ialll'), (2722, 'Dyanastasia'), (2723, 'emvclemente'), (2724, 'ParaneoX'), (2725, 'tyqafreak'), (2726, 'cheecheryl'), (2727, 'anjaninadya'), (2728, 'caesiumboyy'), (2729, 'sivasayanth'), (2730, 'Aml_Ltf'), (2731, 'chilipadicha'), (2732, 'starlightnites'), (2733, 'EffyDeLis'), (2734, 'pengpeng17'), (2735, 'dieanners'), (2736, 'teoweijie'), (2737, 'MDNAlfian'), (2738, 'kate_yeo'), (2739, 'flocations'), (2740, 'vdkarewired'), (2741, 'AziziJoe_7'), (2742, 'meinschwarzkie'), (2743, 'CTinLiang'), (2744, 'jayehwhyanee'), (2745, 'darwinAmorfe'), (2746, 'ZinNatwara'), (2747, 'shilielin'), (2748, 'Peterusit96'), (2749, 'hand_put3'), (2750, 'davedanielR'), (2751, 'AngelReneeWu'), (2752, 'EwwWhatsThat'), (2753, 'faiixs'), (2754, 'NadhirahSiti'), (2755, '2jamal'), (2756, 'MYNAMEISLIKETAT'), (2757, 'leafy1128'), (2758, 'AkmalHkim'), (2759, 'Dypsneaa'), (2760, 'Paul_Dan'), (2761, 'haylieyg'), (2762, 'akbar_cracks'), (2763, 'shenheng'), (2764, 'chloeanggg'), (2765, 'sherylxy'), (2766, 'fatimadistor'), (2767, 'FiyPerry'), (2768, 'kayjaja'), (2769, '_Lynetteezx'), (2770, 'ZieyLIEW'), (2771, 'joleneisbombom'), (2772, 'akulapar'), (2773, 'yuguozx'), (2774, 'adplanner'), (2775, 'muhammadkhaliff'), (2776, 'starnitemoon'), (2777, 'ne0petak'), (2778, 'ieakhalidah'), (2779, 'ParodyTrix'), (2780, 'AnaleighAllison'), (2781, 'melcheong'), (2782, 'arya_rangga21'), (2783, 'XiandaHae'), (2784, 'jaspertan83'), (2785, 'dildul12'), (2786, 'bennluhh'), (2787, 'sharilBARTMAN'), (2788, 'joannestrn'), (2789, 'NShahrizah'), (2790, 'sianturinova'), (2791, 'XiUwEnYeO'), (2792, 'JonAhJon'), (2793, 'fahfak'), (2794, 'bunnyseung'), (2795, 'amirahaziz'), (2796, 'kelfoong'), (2797, 'MdDanialRahmat'), (2798, 'pat_clare'), (2799, 'adealfathazmi'), (2800, 'fairuz_nieza'), (2801, 'Ian_Gan'), (2802, 'hmtong44'), (2803, 'SC_stamp'), (2804, 'ohAntoni'), (2805, 'ruri_yumi'), (2806, 'Stitch4food'), (2807, 'skat3rgalz'), (2808, 'fitriyahmalik'), (2809, 'pongaksorn'), (2810, 'azrilmazwan'), (2811, 'qurratuA_'), (2812, 'plug1230'), (2813, 'ahkel_kltg'), (2814, 'yanarosli'), (2815, 'yvettehuili'), (2816, 'yvelynseow13'), (2817, 'hermymohamad'), (2818, 'buhaycoke'), (2819, 'ImranAjmain'), (2820, 'xiiaomei'), (2821, 'directioner1212'), (2822, 'NikhilChodankar'), (2823, 'EdwardIDHAR'), (2824, 'ihaznonose'), (2825, 'Jialatx'), (2826, 'Sheepception'), (2827, 'gandaJoey'), (2828, 'ChunsiongWcs'), (2829, 'jjinchaniel_'), (2830, 'aliphlm'), (2831, 'ChineseMrPeanut'), (2832, '17MarchhamJS'), (2833, 'iOnirock'), (2834, 'stupendity'), (2835, 'rimmymohamad'), (2836, 'ShaneTanLK'), (2837, 'glitterdisast3r'), (2838, 'Lil_Erica'), (2839, 'kefinx'), (2840, 'Dennnyy'), (2841, 'jolin_500'), (2842, 'DarrenTTM'), (2843, 'mohanvikram'), (2844, 'mingweiloves'), (2845, 'brainopera'), (2846, 'nrlzfrhz'), (2847, 'Farhanah_Sykes'), (2848, 'nigel98soh'), (2849, 'thelomography'), (2850, 'Destructedminds'), (2851, 'apathykid'), (2852, 'OscarLeeTheWave'), (2853, 'benjamingauthey'), (2854, 'irfann_nnafri'), (2855, 'MifdzalDaneal'), (2856, 'khalito27'), (2857, 'khaiEbest'), (2858, 'MohamadHairee'), (2859, 'fallenpig'), (2860, 'kongtinjoong'), (2861, 'rewindpleasee'), (2862, 'katdbrat'), (2863, 'generalridz'), (2864, 'Junwean'), (2865, 'ironman19470622'), (2866, 'Adriancjf'), (2867, 'llwsJai_MT'), (2868, 'Fe_Ayu'), (2869, 'DirtyGh3ttoKid'), (2870, 'madGILER'), (2871, 'lysluvyuh'), (2872, 'PeiLingloveee'), (2873, 'dzetcube'), (2874, 'maehosana'), (2875, 'Asahi_boy'), (2876, 'neilxclark'), (2877, 'intanraihanna'), (2878, 'SahilaRos'), (2879, 'khairulDam'), (2880, 'auzhee'), (2881, 'dreamh_igh'), (2882, 'lynnYLY'), (2883, 'Erivy29'), (2884, 'DixonLoveyDovey'), (2885, 'mimy_sy'), (2886, 'MimiPeotyet'), (2887, 'febrianachandra'), (2888, 'noodiw'), (2889, 'mica_schoofa17'), (2890, 'SeriAndani'), (2891, 'natashaaalimm'), (2892, 'SohJulia'), (2893, 'PeeDeeFlow'), (2894, 'adibsickyhead'), (2895, 'EilleenSmile'), (2896, 'Jasonnah'), (2897, 'Michelderijk'), (2898, 'Beviewee'), (2899, 'scribbleher'), (2900, 'dean_AmyEv'), (2901, 'kamalersyad'), (2902, '_4MIER4_'), (2903, 'PHATMIC'), (2904, 'sherrendezvous'), (2905, 'bank4salueng'), (2906, 'CasperHenry'), (2907, 'AwesomeEdmund'), (2908, 'HongYang95'), (2909, 'GreenChoColateK'), (2910, 'SirineBenjaafar'), (2911, 'Abnerlazyboy'), (2912, 'ELFISH_tine'), (2913, 'JoannaTipsy'), (2914, 'brianjustME'), (2915, 'lokeylin'), (2916, 'SeanTooKaiWen'), (2917, 'hayatimathslink'), (2918, 'LouisDumbo'), (2919, 'SimplyIanz'), (2920, 'jencalalung'), (2921, 'bornleppo'), (2922, 'nurinbrooks'), (2923, 'Edriee'), (2924, 'JiaweiKoh'), (2925, 'AloneCX'), (2926, 'LilMonkeyJavier'), (2927, 'dorabase92'), (2928, 'lyddish'), (2929, 'MentionToMyHand'), (2930, 'firkravitz'), (2931, 'Devito099'), (2932, 'Dhe_herdy'), (2933, 'XiaoXinn'), (2934, 'Simin97'), (2935, 'kilakiller08'), (2936, 'Isyham'), (2937, 'julian_obispo'), (2938, 'WANisoverrated'), (2939, 'd_mariette'), (2940, 'rico_ropii'), (2941, 'RayCunnilingusU'), (2942, 'music_dope'), (2943, 'WeiJi4n'), (2944, 'Muhamad_Zharif'), (2945, 'LiyanaNoh'), (2946, 'LuckyToSnort'), (2947, 'rsovejera'), (2948, 'JlanWel'), (2949, 'Farhan_allen'), (2950, 'PolycomJobs'), (2951, 'k2nnywch'), (2952, 'SereneSalvatore'), (2953, 'Ily_KaliesyaR'), (2954, 'HaagenHanz88'), (2955, 'DEKFILM'), (2956, 'loveyouzxc'), (2957, 'yytstephy'), (2958, '_SHUHUI'), (2959, 'ARNSHQ'), (2960, 'jerictravis'), (2961, 'NanaaSimpson'), (2962, 'Rach_beth'), (2963, 'lesykho'), (2964, 'nizamzuhry'), (2965, 'Lzhisen'), (2966, 'CindyLXY_llious'), (2967, 'zulfahamnie'), (2968, 'Zharfire'), (2969, 'twoicecubes33'), (2970, 'wiwie2k'), (2971, 'AimantitotMr'), (2972, 'Ad_qim'), (2973, 'zahin156'), (2974, 'danialasyraff'), (2975, 'FAM_OYABUN'), (2976, 'shortyshortie'), (2977, 'nozalib'), (2978, 'sheamusteo'), (2979, 'colouredjar'), (2980, 'poppyopy99'), (2981, 'UrsTrulySMB138Y'), (2982, 'Eugenecmj'), (2983, 'neekchan'), (2984, 'WeiJinboo'), (2985, 'Liketoplayalot'), (2986, 'HidayahJalil'), (2987, 'graceforealz'), (2988, 'oohemily1'), (2989, 'TrevTham'), (2990, 'chubblesterol'), (2991, 'rachelannelaw'), (2992, 'kohller'), (2993, 'francispang'), (2994, 'nauxed'), (2995, 'Letitiachuaa'), (2996, 'YoHereIam'), (2997, 'mazzito'), (2998, 'ileneeeomq'), (2999, 'seventysandz'), (3000, 'Saymynamealways'), (3001, 'EkinGK98'), (3002, 'Jota_Be_eSe'), (3003, 'arlynroslin'), (3004, 'castiel75'), (3005, 'eirfan'), (3006, 'thenextportman'), (3007, 'AiniSufani'), (3008, 'kherolnuar'), (3009, 'ahhhchristine'), (3010, 'chachabebey'), (3011, '_Yitong'), (3012, 'fievelleveif'), (3013, 'AlvinTeoT'), (3014, 'dwirosse2104'), (3015, 'FeiraYourstruly'), (3016, 'boonyang90'), (3017, 'JieSiMeN'), (3018, 'Sangjuu'), (3019, 'daphtxt'), (3020, 'MattJustinLee'), (3021, 'cholled'), (3022, 'amiruljatmi'), (3023, 'angel23lov3'), (3024, 'DIRTYFOXCUNTS'), (3025, 'Sankajay1'), (3026, 'ainnasyaheera_'), (3027, 'benyeotk'), (3028, 'gatesmile0101'), (3029, 'carmenlovexsxs'), (3030, 'MODIS_GeoBliki'), (3031, 'WilfredBoomBang'), (3032, 'jaddechong'), (3033, 'blood_aidil'), (3034, 'starfilled_'), (3035, 'teocimit'), (3036, 'geloramos'), (3037, 'KokTiong'), (3038, 'iam_superjake69'), (3039, 'zattyyyy'), (3040, 'RHaltirVOC'), (3041, 'MengFxdedScrmz'), (3042, 'muhuk'), (3043, 'vivienhang'), (3044, 'CeciYohanzz'), (3045, 'johnmendon'), (3046, 'OcPoji'), (3047, 'xradicalartx'), (3048, 'henry1995'), (3049, 'Fickrahc'), (3050, 'ClintonSim'), (3051, 'rpbaltazar'), (3052, 'adhanrjab'), (3053, 'DNWH'), (3054, 'Hasyirhershey'), (3055, 'Jonasohplease'), (3056, 'benjaminneo'), (3057, 'fidzNasir'), (3058, 'Zonggda'), (3059, 'fadzrrran'), (3060, 'GwendolynnS'), (3061, 'Ayeenjaszlemars'), (3062, 'psloveblue'), (3063, 'wOotShanShanLa'), (3064, 'Martynetz'), (3065, 'WhitErapbiT'), (3066, 'melodymy'), (3067, 'SamBixd'), (3068, 'KpopperLovatic'), (3069, 'dino_ear'), (3070, 'yvonniesofyani'), (3071, 'JasonCONTAGIOUS'), (3072, 'tintinong'), (3073, 'sidleeks'), (3074, 'missycaicai'), (3075, 'CarrottiezW'), (3076, 'HeyyaCrazyStarz'), (3077, 'mona_woow'), (3078, '_MonkeyFishy_'), (3079, 'alyaroux'), (3080, 'piinqpiinq'), (3081, 'Philipakahenry'), (3082, 'free_man77'), (3083, 'wngclnceline'), (3084, 'hisyam122'), (3085, 'HoYingChewYouUp'), (3086, 'Dj_Vincent1219'), (3087, 'KolistarSIHUI'), (3088, 'haaiyoo'), (3089, 'QuekJunwei'), (3090, 'IraArmani'), (3091, 'Js_Jsmina'), (3092, 'hillary_busadre'), (3093, 'OrangIce'), (3094, 'cottonhowww'), (3095, 'pikavicks_'), (3096, 'ShennaMusicLuva'), (3097, 'AnaEna143'), (3098, 'Niinqx'), (3099, 'Chaaaaaaaq'), (3100, 'BotakOng'), (3101, 'doudouberry'), (3102, 'shykamon'), (3103, 'twelvefeetunder'), (3104, 'ahling07'), (3105, 'SuppaaKidd'), (3106, 'SuerrwinHabibie'), (3107, 'cassandrachau'), (3108, 'HadiKotyk'), (3109, 'marvaalicious'), (3110, 'khai_rockstar'), (3111, 'Danial_Styles'), (3112, 'SGDeviLFisH'), (3113, 'T_KianEng'), (3114, 'sitinurponti'), (3115, 'mariaagathaj'), (3116, 'apiradeej'), (3117, 'awshennn'), (3118, 'ContagiousJo'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE PROCEDURE [display].[pDel_rm_story] AS TRUNCATE TABLE [display].[rm_story]
ALTER TABLE "EAADMIN"."ALERT_UNLICENSED_SW" ADD COLUMN "OPENED_REASON" varchar(255); ALTER TABLE "TRAILSPD_CC"."ALERT_UNLICENSED_SW" ADD COLUMN "OPENED_REASON" varchar(255); ALTER TABLE "TRAILSPD_CD"."ALERT_UNLICENSED_SW" ADD COLUMN "OPENED_REASON" varchar(255); ALTER TABLE "EAADMIN"."ALERT_UNLICENSED_SW_H" ADD COLUMN "OPENED_REASON" varchar(255); ALTER TABLE "TRAILSPD_CC"."ALERT_UNLICENSED_SW_H" ADD COLUMN "OPENED_REASON" varchar(255); ALTER TABLE "TRAILSPD_CD"."ALERT_UNLICENSED_SW_H" ADD COLUMN "OPENED_REASON" varchar(255); REORG TABLE EAADMIN.ALERT_UNLICENSED_SW; REORG TABLE EAADMIN.ALERT_UNLICENSED_SW_H; REORG TABLE TRAILSPD_CD.ALERT_UNLICENSED_SW; REORG TABLE TRAILSPD_CC.ALERT_UNLICENSED_SW; REORG TABLE TRAILSPD_CD.ALERT_UNLICENSED_SW_H; REORG TABLE TRAILSPD_CC.ALERT_UNLICENSED_SW_H; RUNSTATS ON TABLE EAADMIN.ALERT_UNLICENSED_SW ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ; RUNSTATS ON TABLE TRAILSPD_CD.ALERT_UNLICENSED_SW ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ; RUNSTATS ON TABLE TRAILSPD_CC.ALERT_UNLICENSED_SW ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ; RUNSTATS ON TABLE EAADMIN.ALERT_UNLICENSED_SW_H ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ; RUNSTATS ON TABLE TRAILSPD_CD.ALERT_UNLICENSED_SW_H ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ; RUNSTATS ON TABLE TRAILSPD_CC.ALERT_UNLICENSED_SW_H ON ALL COLUMNS WITH DISTRIBUTION ON ALL COLUMNS AND DETAILED INDEXES ALL ALLOW WRITE ACCESS UTIL_IMPACT_PRIORITY 50 ;
SET REFERENTIAL_INTEGRITY FALSE TRUNCATE TABLE TYPE TRUNCATE TABLE UNIT TRUNCATE TABLE SENSOR TRUNCATE TABLE DEVICE TRUNCATE TABLE READING SET REFERENTIAL_INTEGRITY true
CREATE SEQUENCE S1; CREATE TABLE T1 ( A integer DEFAULT NEXTVAL('s1'), B int, PRIMARY KEY (A) ); INSERT INTO T1(B) VALUES (5), (7); INSERT INTO T1 (B) VALUES (8); SELECT * FROM T1;
-- Use a nested query to: Retrieve the names of all employees (first, and last name) who work in the department that has the employee with the highest salary among all employees. -- Example format) -- (first name, last name) --find the department of the person with the highest salary --don't need actual department, -- use m to find highest salaried employee, find his department. /* SELECT E.Fname, E.Lname FROM ( SELECT E.Fname, E.Lname, E.salary, E.dno M.Fname, M.Lname, MAX(M.salary), M.dno FROM EMPLOYEE AS E, EMPLOYEE AS M, WHERE E.dno = M.dno ) AS tblSalaryDep; */ SELECT Fname, Lname FROM EMPLOYEE WHERE Dno = (SELECT Dno FROM EMPLOYEE WHERE salary = (SELECT max(salary) FROM EMPLOYEE));
-- -- PostgreSQL database dump -- -- Dumped from database version 12.4 -- Dumped by pg_dump version 12.0 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; ALTER TABLE IF EXISTS ONLY public.tok_emp_proj DROP CONSTRAINT IF EXISTS tok_emp_proj_fk_1; ALTER TABLE IF EXISTS ONLY public.tok_emp_proj DROP CONSTRAINT IF EXISTS tok_emp_proj_fk; ALTER TABLE IF EXISTS ONLY public.tasks DROP CONSTRAINT IF EXISTS tasks_fk2; ALTER TABLE IF EXISTS ONLY public.tasks DROP CONSTRAINT IF EXISTS tasks_fk1; ALTER TABLE IF EXISTS ONLY public.tasks DROP CONSTRAINT IF EXISTS tasks_fk; ALTER TABLE IF EXISTS ONLY public.tok_emp_proj DROP CONSTRAINT IF EXISTS tok_emp_proj_pk; ALTER TABLE IF EXISTS ONLY public.tasks DROP CONSTRAINT IF EXISTS tasks_pk; ALTER TABLE IF EXISTS ONLY public.status DROP CONSTRAINT IF EXISTS status_pk; ALTER TABLE IF EXISTS ONLY public.projects DROP CONSTRAINT IF EXISTS projects_pk; ALTER TABLE IF EXISTS ONLY public.employees DROP CONSTRAINT IF EXISTS employees_pk; DROP TABLE IF EXISTS public.users; DROP TABLE IF EXISTS public.tok_emp_proj; DROP TABLE IF EXISTS public.tasks; DROP TABLE IF EXISTS public.status; DROP TABLE IF EXISTS public.projects; DROP TABLE IF EXISTS public.employees; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: employees; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.employees ( id integer NOT NULL, lastname character varying(50) NOT NULL, firstname character varying(50) NOT NULL, middlename character varying(50) NOT NULL, "position" character varying(50) NOT NULL, email character varying(50) ); ALTER TABLE public.employees OWNER TO postgres; -- -- Name: employees_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.employees ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.employees_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: projects; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.projects ( id integer NOT NULL, project_name character varying(50) NOT NULL, description text NOT NULL ); ALTER TABLE public.projects OWNER TO postgres; -- -- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.projects ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.projects_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: status; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.status ( id integer NOT NULL, status_name character varying(50) NOT NULL ); ALTER TABLE public.status OWNER TO postgres; -- -- Name: status_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.status ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.status_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: tasks; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tasks ( id integer NOT NULL, task_name character varying(50) NOT NULL, description text NOT NULL, notes text, status_id integer NOT NULL, importance character varying(50), employee_id integer, planh character varying(50), facth character varying(50), project_id integer NOT NULL ); ALTER TABLE public.tasks OWNER TO postgres; -- -- Name: tasks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.tasks ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.tasks_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: tok_emp_proj; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tok_emp_proj ( id integer NOT NULL, emp_id integer NOT NULL, proj_id integer NOT NULL ); ALTER TABLE public.tok_emp_proj OWNER TO postgres; -- -- Name: tok_emp_proj_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.tok_emp_proj ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.tok_emp_proj_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: users; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.users ( email character varying(50) NOT NULL, password character varying NOT NULL ); ALTER TABLE public.users OWNER TO postgres; -- -- Data for Name: employees; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.employees (id, lastname, firstname, middlename, "position", email) FROM stdin; 1 Марченков Максим Евгеньевич Админ max@gmail.com 2 Андреев Андрей Андреевич Программист andrei@gmai.com 3 Иванов Иван Иванович Раб q@q.q 4 Эльдаров Эльдар Эльдарович Рядовой w@w.w 5 Петров Петр Петрович Уборщик petr@gmail.com 6 Сидоров Сидор Сидорович Программист sidor@gmail.com \. -- -- Data for Name: projects; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.projects (id, project_name, description) FROM stdin; 1 Новый проект Тестовый, для проверки test 3 Task Manager Создание приложения выполняющего функции менеджера задач.\n 4 ntcn cnh \. -- -- Data for Name: status; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.status (id, status_name) FROM stdin; 1 Бэклог 2 Новая 4 Повторно назначена 5 В работе 6 Согласование 7 Завершена 3 Назначена \. -- -- Data for Name: tasks; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tasks (id, task_name, description, notes, status_id, importance, employee_id, planh, facth, project_id) FROM stdin; 6 11 1 3 Очень срочно 2 1 3 new1 asdasd 3 Срочно 2 1 10 22 вв 7 Срочно 1 88 88 1 11 Написать спецификацию Спецификация проекта включающая:\n1.Цель\n2.Описание\n3.Функциональные возможности 7 Очень срочно 1 2 1 3 12 Сделать схему БД Схема в соответствии со спецификацией 3 Срочно 5 3 13 Создать БД Использовать схему БД. 3 Срочно 4 3 14 тест тест \N 2 \N \N \N \N 3 7 ii rr 3 Не срочно 2 1 9 www www 5 Срочно 1 6 1 15 вап впва Замечаю\n\nЯ тоже. Эльдар.\n\nПеределай, ничего не работает!!! 4 Очень срочно 4 1 \. -- -- Data for Name: tok_emp_proj; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tok_emp_proj (id, emp_id, proj_id) FROM stdin; 1 1 1 2 2 1 4 4 3 5 5 3 9 4 4 10 1 3 \. -- -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.users (email, password) FROM stdin; w@w.w 202cb962ac59075b964b07152d234b70 max@gmail.com 21232f297a57a5a743894a0e4a801fc3 q@q.q 202cb962ac59075b964b07152d234b70 sidor@gmail.com 7815696ecbf1c96e6894b779456d330e \. -- -- Name: employees_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.employees_id_seq', 9, true); -- -- Name: projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.projects_id_seq', 4, true); -- -- Name: status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.status_id_seq', 7, true); -- -- Name: tasks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.tasks_id_seq', 16, true); -- -- Name: tok_emp_proj_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.tok_emp_proj_id_seq', 10, true); -- -- Name: employees employees_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.employees ADD CONSTRAINT employees_pk PRIMARY KEY (id); -- -- Name: projects projects_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projects ADD CONSTRAINT projects_pk PRIMARY KEY (id); -- -- Name: status status_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.status ADD CONSTRAINT status_pk PRIMARY KEY (id); -- -- Name: tasks tasks_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tasks ADD CONSTRAINT tasks_pk PRIMARY KEY (id); -- -- Name: tok_emp_proj tok_emp_proj_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tok_emp_proj ADD CONSTRAINT tok_emp_proj_pk PRIMARY KEY (id); -- -- Name: tasks tasks_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tasks ADD CONSTRAINT tasks_fk FOREIGN KEY (project_id) REFERENCES public.projects(id); -- -- Name: tasks tasks_fk1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tasks ADD CONSTRAINT tasks_fk1 FOREIGN KEY (employee_id) REFERENCES public.employees(id); -- -- Name: tasks tasks_fk2; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tasks ADD CONSTRAINT tasks_fk2 FOREIGN KEY (status_id) REFERENCES public.status(id); -- -- Name: tok_emp_proj tok_emp_proj_fk; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tok_emp_proj ADD CONSTRAINT tok_emp_proj_fk FOREIGN KEY (emp_id) REFERENCES public.employees(id); -- -- Name: tok_emp_proj tok_emp_proj_fk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tok_emp_proj ADD CONSTRAINT tok_emp_proj_fk_1 FOREIGN KEY (proj_id) REFERENCES public.projects(id); -- -- PostgreSQL database dump complete --
-- -------------------------------------------------------- -- 호스트: 192.169.0.201 -- 서버 버전: 10.2.13-MariaDB-10.2.13+maria~xenial-log - mariadb.org binary distribution -- 서버 OS: debian-linux-gnu -- HeidiSQL 버전: 9.4.0.5125 -- -------------------------------------------------------- -- 테이블 데이터 security.account:~1 rows (대략적) 내보내기 DELETE FROM `account`; /*!40000 ALTER TABLE `account` DISABLE KEYS */; INSERT INTO `account` (`id`, `address1`, `address2`, `email`, `enable`, `hp`, `password`, `post`, `tel`, `user_id`, `username`) VALUES (1, '광주광역시 동구 문화전당로23번길8-2', '해성기획', 'mslee3847@nate.com', 1, '010-9302-1029', '$2a$10$qqCl/NupYFIbSXzuiyvdFO7CWALxyRY.JGAu7MWC4p3qiwc8q2Kg6', '61487', '062-236-3860', 'admin', '이명신'), (2, '광주광역시 북구 우산동 611-4', '1층', 'mslee3847@nate.com', 1, '010-9302-1029', '$2a$10$PxDC9gsei5Wikcl8ma7W..RhjkaR9UNKb6pbS.pdCCddTMHKZgTmO', '500-080', '062-262-6764', 'lms1029', '이명신'); -- 테이블 데이터 security.role:~4 rows (대략적) 내보내기 DELETE FROM `role`; /*!40000 ALTER TABLE `role` DISABLE KEYS */; INSERT INTO `role` (`id`, `description`, `name`) VALUES (1, '관리자', 'ROLE_ADMIN'), (2, '관리자 보안', 'ROLE_SUPER'), (3, '사용자', 'ROLE_USER'), (4, '임시접근자', 'ROLE_TEMP'); -- 테이블 데이터 security.account_roles:~1 rows (대략적) 내보내기 DELETE FROM `account_roles`; /*!40000 ALTER TABLE `account_roles` DISABLE KEYS */; INSERT INTO `account_roles` (`account_id`, `roles_id`) VALUES(1, 1), (2, 3);
-- 查询所有最高售出价格的销售员 select * from Sales1082 s group by s.seller_id having sum(s.price) = ( select sum(price) from Sales1082 group by seller_id order by sum(price) desc limit 1 ) create table Product1082 ( product_id int, product_name varchar(10), unit_price int, primary key (product_id) ); create table Sales1082 ( seller_id int, product_id int, buyer_id int, sale_date date, quantity int, price int ); insert into Product1082 values (1, 'S8', 1000), (2, 'G4', 800), (3, 'iPhone', 1400); insert into Sales1082 values (1,1,1,'2019-01-21',2,2000), (1,2,2,'2019-02-17',1,800), (2,2,3,'2019-06-02',1,800), (3,3,3,'2019-05-13',2,2800);
-------------------------------------------------------- -- Archivo creado - mi�rcoles-febrero-01-2017 -------------------------------------------------------- -------------------------------------------------------- -- DDL for Package PK_GPY_POLITICA -------------------------------------------------------- CREATE OR REPLACE PACKAGE "PK_GPY_POLITICA" IS /**************************************************************************** DESCRIPCION : Paquete encargado de la administraci�n funcional del : pre registro de politicas asociadas un proyecto existente. REALIZADO POR : Fernando Mondrag�n Amaya FECHA CREACION : 21/12/2016 FECHA MODIFICA : 21/12/2016 MODIFICADO POR : DESCRIPCION CAMBIO: ******************************************************************************/ NOMBRE_PAQUETE CONSTANT VARCHAR2(100) := 'PK_GPY_POLITICA'; TYPE CURSOR_SALIDA IS REF CURSOR; ---- PROCEDURE Pr_RegistrarPolitica( p_A007IDPROYECTO IN GPYT_T007_Proy_Politica.A007IDPROYECTO%TYPE, p_A003NIVEL1 IN GPYT_T003_POLITICA.A003NIVEL1%TYPE, p_A003NOMNIVEL1 IN GPYT_T003_POLITICA.A003NOMNIVEL1%TYPE, p_A003NIVEL2 IN GPYT_T003_POLITICA.A003NIVEL2%TYPE, p_A003NOMNIVEL2 IN GPYT_T003_POLITICA.A003NOMNIVEL2%TYPE, p_A003NIVEL3 IN GPYT_T003_POLITICA.A003NIVEL3%TYPE, p_A003NOMNIVEL3 IN GPYT_T003_POLITICA.A003NOMNIVEL3%TYPE, p_A003NOMNIVEL4 IN GPYT_T003_POLITICA.A003NOMNIVEL4%TYPE, P_A026CODIGO IN GPYT_T026_ARCHIVO.A026CODIGO%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); ---- PROCEDURE Pr_EliminarPolitica( p_A007CODIGO IN GPYT_T007_Proy_Politica.A007CODIGO%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); ---- PROCEDURE Pr_ListarPoliticasProyecto( p_A007IDPROYECTO IN GPYT_T007_Proy_Politica.A007IDPROYECTO%TYPE, p_IdUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); ---- PROCEDURE Pr_RegistrarArchivoPolitica( p_A026DESCRPCNARCHIV IN GPYT_T026_ARCHIVO.A026DESCRPCNARCHIV%TYPE, p_A026NOMARCHIVO IN GPYT_T026_ARCHIVO.A026NOMARCHIVO%TYPE, p_A026HASHARCHIVO IN GPYT_T026_ARCHIVO.A026HASHARCHIVO%TYPE, p_IdUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); END PK_GPY_POLITICA; /************************************************************************ FIN creaci�n del HEADER del package PK_GPY_POLITICA ************************************************************************/ /
CREATE TABLE [actual].[cmdb_ci_spkg] ( [po_number_value] NVARCHAR(MAX) NULL, [mac_address_value] NVARCHAR(MAX) NULL, [vendor_value] NVARCHAR(MAX) NULL, [checked_in_value] NVARCHAR(MAX) NULL, [supported_by_valu] NVARCHAR(MAX) NULL, [sys_created_on_value] DATETIME NULL, [checked_out_value] NVARCHAR(MAX) NULL, [discovery_source_value] NVARCHAR(MAX) NULL, [serial_number_value] NVARCHAR(MAX) NULL, [first_discovered_value] NVARCHAR(MAX) NULL, [sys_class_name_value] NVARCHAR(MAX) NULL, [last_discovered_value] NVARCHAR(MAX) NULL, [cost_cc_value] NVARCHAR(MAX) NULL, [invoice_number_value] NVARCHAR(MAX) NULL, [correlation_id_value] NVARCHAR(MAX) NULL, [owned_by_value] NVARCHAR(MAX) NULL, [package_name_value] NVARCHAR(MAX) NULL, [assigned_value] NVARCHAR(MAX) NULL, [cost_value] NVARCHAR(MAX) NULL, [asset_tag_value] NVARCHAR(MAX) NULL, [company_value] NVARCHAR(MAX) NULL, [gl_account_value] NVARCHAR(MAX) NULL, [dns_domain_value] NVARCHAR(MAX) NULL, [comments_value] NVARCHAR(MAX) NULL, [sys_domain_path_value] NVARCHAR(MAX) NULL, [due_in_value] NVARCHAR(MAX) NULL, [short_description_value] NVARCHAR(MAX) NULL, [model_number_value] NVARCHAR(MAX) NULL, [justification_value] NVARCHAR(MAX) NULL, [sys_tags_value] NVARCHAR(MAX) NULL, [sys_mod_count_value] INT NULL, [location_value] NVARCHAR(MAX) NULL, [warranty_expiration_value] NVARCHAR(MAX) NULL, [sys_created_by_value] NVARCHAR(MAX) NULL, [sys_updated_on_value] DATETIME NULL, [install_status_value] INT NULL, [cost_center_value] NVARCHAR(MAX) NULL, [fqdn_value] NVARCHAR(MAX) NULL, [category_value] NVARCHAR(MAX) NULL, [monitor_value] NVARCHAR(MAX) NULL, [due_value] NVARCHAR(MAX) NULL, [sys_updated_by_value] NVARCHAR(MAX) NULL, [sys_id_value] NVARCHAR(MAX) NULL, [managed_by_value] NVARCHAR(MAX) NULL, [asset_value] NVARCHAR(MAX) NULL, [purchase_date_value] NVARCHAR(MAX) NULL, [ip_address_value] NVARCHAR(MAX) NULL, [attributes_value] NVARCHAR(MAX) NULL, [operational_status_value] INT NULL, [skip_sync_value] NVARCHAR(MAX) NULL, [support_group_value] NVARCHAR(MAX) NULL, [maintenance_schedule_value] NVARCHAR(MAX) NULL, [department_value] NVARCHAR(MAX) NULL, [lease_id_value] NVARCHAR(MAX) NULL, [subcategory_value] NVARCHAR(MAX) NULL, [key_value] NVARCHAR(MAX) NULL, [msft_sms_id_value] INT NULL, [manufacturer_value] NVARCHAR(MAX) NULL, [part_of_value"] NVARCHAR(MAX) NULL, [delivery_date_value] NVARCHAR(MAX) NULL, [version_value] NVARCHAR(MAX) NULL, [install_date_value] NVARCHAR(MAX) NULL, [assigned_to_value] NVARCHAR(MAX) NULL, [order_date_value] NVARCHAR(MAX) NULL, [can_print_value] NVARCHAR(MAX) NULL, [license_count_value] INT NULL, [license_available_value] INT NULL, [sys_domain_value] NVARCHAR(MAX) NULL, [fault_count_value] INT NULL, [start_date_value] NVARCHAR(MAX) NULL, [assignment_group_value] NVARCHAR(MAX) NULL, [unverified_value] NVARCHAR(MAX) NULL, [model_id_value] NVARCHAR(MAX) NULL, [change_control_value] NVARCHAR(MAX) NULL, [install_count_value] INT NULL, [schedule_value] NVARCHAR(MAX) NULL, [name_value] NVARCHAR(MAX) NULL )